diff --git a/.next/BUILD_ID b/.next/BUILD_ID new file mode 100644 index 0000000..87ca64c --- /dev/null +++ b/.next/BUILD_ID @@ -0,0 +1 @@ +czNRbRzpspOb1FVBoan7W \ No newline at end of file diff --git a/.next/app-path-routes-manifest.json b/.next/app-path-routes-manifest.json new file mode 100644 index 0000000..4914ed3 --- /dev/null +++ b/.next/app-path-routes-manifest.json @@ -0,0 +1,22 @@ +{ + "/_global-error/page": "/_global-error", + "/_not-found/page": "/_not-found", + "/about-us/page": "/about-us", + "/air-freight/page": "/air-freight", + "/blog/[slug]/page": "/blog/[slug]", + "/blog/page": "/blog", + "/contact/page": "/contact", + "/cookie-policy/page": "/cookie-policy", + "/doormile-wings/page": "/doormile-wings", + "/empowerment/page": "/empowerment", + "/express/page": "/express", + "/favicon.ico/route": "/favicon.ico", + "/how-it-works/page": "/how-it-works", + "/icon.png/route": "/icon.png", + "/miletruth/page": "/miletruth", + "/page": "/", + "/privacy-policy/page": "/privacy-policy", + "/sitemap.xml/route": "/sitemap.xml", + "/solutions/page": "/solutions", + "/terms-of-service/page": "/terms-of-service" +} \ No newline at end of file diff --git a/.next/build-manifest.json b/.next/build-manifest.json new file mode 100644 index 0000000..97a1465 --- /dev/null +++ b/.next/build-manifest.json @@ -0,0 +1,22 @@ +{ + "pages": { + "/_app": [] + }, + "devFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [ + "static/czNRbRzpspOb1FVBoan7W/_buildManifest.js", + "static/czNRbRzpspOb1FVBoan7W/_ssgManifest.js", + "static/czNRbRzpspOb1FVBoan7W/_clientMiddlewareManifest.js" + ], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ] +} \ No newline at end of file diff --git a/.next/build/chunks/[root-of-the-server]__0d-m0h0._.js b/.next/build/chunks/[root-of-the-server]__0d-m0h0._.js new file mode 100644 index 0000000..2173d15 --- /dev/null +++ b/.next/build/chunks/[root-of-the-server]__0d-m0h0._.js @@ -0,0 +1,206 @@ +module.exports = [ +"[externals]/path [external] (path, cjs)", ((__turbopack_context__, module, exports) => { + +const mod = __turbopack_context__.x("path", () => require("path")); + +module.exports = mod; +}), +"[externals]/url [external] (url, cjs)", ((__turbopack_context__, module, exports) => { + +const mod = __turbopack_context__.x("url", () => require("url")); + +module.exports = mod; +}), +"[externals]/fs [external] (fs, cjs)", ((__turbopack_context__, module, exports) => { + +const mod = __turbopack_context__.x("fs", () => require("fs")); + +module.exports = mod; +}), +"[project]/postcss.config.mjs [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +__turbopack_context__.s([ + "default", + ()=>__TURBOPACK__default__export__ +]); +const config = { + plugins: { + "@tailwindcss/postcss": {} + } +}; +const __TURBOPACK__default__export__ = config; +}), +"[turbopack-node]/transforms/transforms.ts [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +/** + * Shared utilities for our 2 transform implementations. + */ __turbopack_context__.s([ + "fromPath", + ()=>fromPath, + "getReadEnvVariables", + ()=>getReadEnvVariables, + "toPath", + ()=>toPath +]); +var __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/path [external] (path, cjs)"); +; +const contextDir = process.cwd(); +const toPath = (file)=>{ + const relPath = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["relative"])(contextDir, file); + if ((0, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["isAbsolute"])(relPath)) { + throw new Error(`Cannot depend on path (${file}) outside of root directory (${contextDir})`); + } + return __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"] !== '/' ? relPath.replaceAll(__TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"], '/') : relPath; +}; +const fromPath = (path)=>{ + return (0, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["join"])(/* turbopackIgnore: true */ contextDir, __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"] !== '/' ? path.replaceAll('/', __TURBOPACK__imported__module__$5b$externals$5d2f$path__$5b$external$5d$__$28$path$2c$__cjs$29$__["sep"]) : path); +}; +// Patch process.env to track which env vars are read +const originalEnv = process.env; +const readEnvVars = new Set(); +process.env = new Proxy(originalEnv, { + get (target, prop) { + if (typeof prop === 'string') { + // We register the env var as dependency on the + // current transform and all future transforms + // since the env var might be cached in module scope + // and influence them all + readEnvVars.add(prop); + } + return Reflect.get(target, prop); + }, + set (target, prop, value) { + return Reflect.set(target, prop, value); + } +}); +function getReadEnvVariables() { + return Array.from(readEnvVars); +} +}), +"[turbopack-node]/transforms/postcss.ts { CONFIG => \"[project]/postcss.config.mjs [postcss] (ecmascript)\" } [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +__turbopack_context__.s([ + "default", + ()=>transform, + "init", + ()=>init +]); +// @ts-ignore +var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$postcss$2f$lib$2f$postcss$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/postcss/lib/postcss.mjs [postcss] (ecmascript)"); +// @ts-ignore +var __TURBOPACK__imported__module__$5b$project$5d2f$postcss$2e$config$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/postcss.config.mjs [postcss] (ecmascript)"); +var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/transforms/transforms.ts [postcss] (ecmascript)"); +; +; +; +let processor; +const init = async (ipc)=>{ + let config = __TURBOPACK__imported__module__$5b$project$5d2f$postcss$2e$config$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__["default"]; + if (typeof config === 'function') { + config = await config({ + env: 'development' + }); + } + if (typeof config === 'undefined') { + throw new Error('PostCSS config is undefined (make sure to export an function or object from config file)'); + } + let plugins; + if (Array.isArray(config.plugins)) { + plugins = config.plugins.map((plugin)=>{ + if (Array.isArray(plugin)) { + return plugin; + } else if (typeof plugin === 'string') { + return [ + plugin, + {} + ]; + } else { + return plugin; + } + }); + } else if (typeof config.plugins === 'object') { + plugins = Object.entries(config.plugins).filter(([, options])=>options); + } else { + plugins = []; + } + const loadedPlugins = plugins.map((plugin)=>{ + if (Array.isArray(plugin)) { + const [arg, options] = plugin; + let pluginFactory = arg; + if (typeof pluginFactory === 'string') { + pluginFactory = require(/* turbopackIgnore: true */ pluginFactory); + } + if (pluginFactory.default) { + pluginFactory = pluginFactory.default; + } + return pluginFactory(options); + } + return plugin; + }); + processor = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$postcss$2f$lib$2f$postcss$2e$mjs__$5b$postcss$5d$__$28$ecmascript$29$__["default"])(loadedPlugins); +}; +async function transform(ipc, cssContent, name, sourceMap) { + const { css, map, messages } = await processor.process(cssContent, { + from: name, + to: name, + map: sourceMap ? { + inline: false, + annotation: false + } : undefined + }); + const assets = []; + const filePaths = []; + const buildFilePaths = []; + const directories = []; + for (const msg of messages){ + switch(msg.type){ + case 'asset': + assets.push({ + file: msg.file, + content: msg.content, + sourceMap: !sourceMap ? undefined : typeof msg.sourceMap === 'string' ? msg.sourceMap : JSON.stringify(msg.sourceMap) + }); + break; + case 'dependency': + case 'missing-dependency': + filePaths.push((0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.file)); + break; + case 'build-dependency': + buildFilePaths.push((0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.file)); + break; + case 'dir-dependency': + directories.push([ + (0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.dir), + msg.glob + ]); + break; + case 'context-dependency': + directories.push([ + (0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["toPath"])(msg.dir), + '**' + ]); + break; + default: + break; + } + } + ipc.sendInfo({ + type: 'dependencies', + filePaths, + directories, + buildFilePaths, + envVariables: (0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$transforms$2f$transforms$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["getReadEnvVariables"])() + }); + return { + css, + map: sourceMap ? JSON.stringify(map) : undefined, + assets + }; +} +}), +]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__0d-m0h0._.js.map \ No newline at end of file diff --git a/.next/build/chunks/[root-of-the-server]__0d-m0h0._.js.map b/.next/build/chunks/[root-of-the-server]__0d-m0h0._.js.map new file mode 100644 index 0000000..6bd02b4 --- /dev/null +++ b/.next/build/chunks/[root-of-the-server]__0d-m0h0._.js.map @@ -0,0 +1,8 @@ +{ + "version": 3, + "sources": [], + "sections": [ + {"offset": {"line": 22, "column": 0}, "map": {"version":3,"sources":["turbopack:///[project]/postcss.config.mjs"],"sourcesContent":["const config = {\n plugins: {\n \"@tailwindcss/postcss\": {},\n },\n};\n\nexport default config;\n"],"names":["config","plugins"],"mappings":";;;;AAAA,MAAMA,SAAS;IACbC,SAAS;QACP,wBAAwB,CAAC;IAC3B;AACF;uCAEeD"}}, + {"offset": {"line": 36, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/transforms/transforms.ts"],"sourcesContent":["/**\n * Shared utilities for our 2 transform implementations.\n */\n\nimport type { Channel as Ipc } from '../types'\nimport { relative, isAbsolute, join, sep } from 'path'\nimport { type StructuredError } from '../error'\nimport { type StackFrame } from '../compiled/stacktrace-parser'\n\nexport type IpcInfoMessage =\n | {\n type: 'dependencies'\n envVariables?: string[]\n directories?: Array<[string, string]>\n filePaths?: string[]\n buildFilePaths?: string[]\n }\n | {\n type: 'emittedError'\n severity: 'warning' | 'error'\n error: StructuredError\n }\n | {\n type: 'log'\n logs: Array<{\n time: number\n logType: string\n args: any[]\n trace?: StackFrame[]\n }>\n }\n\nexport type IpcRequestMessage =\n | {\n type: 'resolve'\n options: any\n lookupPath: string\n request: string\n }\n | {\n type: 'trackFileRead'\n file: string\n }\n\nexport type TransformIpc = Ipc\n\nconst contextDir = process.cwd()\nexport const toPath = (file: string) => {\n const relPath = relative(contextDir, file)\n if (isAbsolute(relPath)) {\n throw new Error(\n `Cannot depend on path (${file}) outside of root directory (${contextDir})`\n )\n }\n return sep !== '/' ? relPath.replaceAll(sep, '/') : relPath\n}\nexport const fromPath = (path: string) => {\n return join(\n /* turbopackIgnore: true */ contextDir,\n sep !== '/' ? path.replaceAll('/', sep) : path\n )\n}\n\n// Patch process.env to track which env vars are read\nconst originalEnv = process.env\nconst readEnvVars = new Set()\nprocess.env = new Proxy(originalEnv, {\n get(target, prop) {\n if (typeof prop === 'string') {\n // We register the env var as dependency on the\n // current transform and all future transforms\n // since the env var might be cached in module scope\n // and influence them all\n readEnvVars.add(prop)\n }\n return Reflect.get(target, prop)\n },\n set(target, prop, value) {\n return Reflect.set(target, prop, value)\n },\n})\n\nexport function getReadEnvVariables(): string[] {\n return Array.from(readEnvVars)\n}\n"],"names":["contextDir","process","cwd","toPath","file","relPath","Error","replaceAll","fromPath","path","originalEnv","env","readEnvVars","Set","Proxy","get","target","prop","add","Reflect","set","value","getReadEnvVariables","Array","from"],"mappings":"AAAA;;CAEC;;;;;;;;AAGD;;AAyCA,MAAMA,aAAaC,QAAQC,GAAG;AACvB,MAAMC,SAAS,CAACC;IACrB,MAAMC,UAAU,IAAA,6GAAQ,EAACL,YAAYI;IACrC,IAAI,IAAA,+GAAU,EAACC,UAAU;QACvB,MAAM,IAAIC,MACR,CAAC,uBAAuB,EAAEF,KAAK,6BAA6B,EAAEJ,WAAW,CAAC,CAAC;IAE/E;IACA,OAAO,wGAAG,KAAK,MAAMK,QAAQE,UAAU,CAAC,wGAAG,EAAE,OAAOF;AACtD;AACO,MAAMG,WAAW,CAACC;IACvB,OAAO,IAAA,yGAAI,EACT,yBAAyB,GAAGT,YAC5B,wGAAG,KAAK,MAAMS,KAAKF,UAAU,CAAC,KAAK,wGAAG,IAAIE;AAE9C;AAEA,qDAAqD;AACrD,MAAMC,cAAcT,QAAQU,GAAG;AAC/B,MAAMC,cAAc,IAAIC;AACxBZ,QAAQU,GAAG,GAAG,IAAIG,MAAMJ,aAAa;IACnCK,KAAIC,MAAM,EAAEC,IAAI;QACd,IAAI,OAAOA,SAAS,UAAU;YAC5B,+CAA+C;YAC/C,8CAA8C;YAC9C,oDAAoD;YACpD,yBAAyB;YACzBL,YAAYM,GAAG,CAACD;QAClB;QACA,OAAOE,QAAQJ,GAAG,CAACC,QAAQC;IAC7B;IACAG,KAAIJ,MAAM,EAAEC,IAAI,EAAEI,KAAK;QACrB,OAAOF,QAAQC,GAAG,CAACJ,QAAQC,MAAMI;IACnC;AACF;AAEO,SAASC;IACd,OAAOC,MAAMC,IAAI,CAACZ;AACpB"}}, + {"offset": {"line": 84, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/transforms/postcss.ts"],"sourcesContent":["declare const __turbopack_external_require__: (\n id: string,\n thunk: () => any,\n esm?: boolean\n) => any\n\nimport type { Processor } from 'postcss'\n\n// @ts-ignore\nimport postcss from '@vercel/turbopack/postcss'\n// @ts-ignore\nimport importedConfig from 'CONFIG'\nimport { getReadEnvVariables, toPath, type TransformIpc } from './transforms'\n\nlet processor: Processor | undefined\n\nexport const init = async (ipc: TransformIpc) => {\n let config = importedConfig\n if (typeof config === 'function') {\n config = await config({ env: 'development' })\n }\n if (typeof config === 'undefined') {\n throw new Error(\n 'PostCSS config is undefined (make sure to export an function or object from config file)'\n )\n }\n let plugins: any[]\n if (Array.isArray(config.plugins)) {\n plugins = config.plugins.map((plugin: [string, any] | string | any) => {\n if (Array.isArray(plugin)) {\n return plugin\n } else if (typeof plugin === 'string') {\n return [plugin, {}]\n } else {\n return plugin\n }\n })\n } else if (typeof config.plugins === 'object') {\n plugins = Object.entries(config.plugins).filter(([, options]) => options)\n } else {\n plugins = []\n }\n const loadedPlugins = plugins.map((plugin) => {\n if (Array.isArray(plugin)) {\n const [arg, options] = plugin\n let pluginFactory = arg\n\n if (typeof pluginFactory === 'string') {\n pluginFactory = require(/* turbopackIgnore: true */ pluginFactory)\n }\n\n if (pluginFactory.default) {\n pluginFactory = pluginFactory.default\n }\n\n return pluginFactory(options)\n }\n return plugin\n })\n\n processor = postcss(loadedPlugins)\n}\n\nexport default async function transform(\n ipc: TransformIpc,\n cssContent: string,\n name: string,\n sourceMap: boolean\n) {\n const { css, map, messages } = await processor!.process(cssContent, {\n from: name,\n to: name,\n map: sourceMap\n ? {\n inline: false,\n annotation: false,\n }\n : undefined,\n })\n\n const assets = []\n const filePaths: string[] = []\n const buildFilePaths: string[] = []\n const directories: Array<[string, string]> = []\n\n for (const msg of messages) {\n switch (msg.type) {\n case 'asset':\n assets.push({\n file: msg.file,\n content: msg.content,\n sourceMap: !sourceMap\n ? undefined\n : typeof msg.sourceMap === 'string'\n ? msg.sourceMap\n : JSON.stringify(msg.sourceMap),\n // There is also an info field, which we currently ignore\n })\n break\n case 'dependency':\n case 'missing-dependency':\n filePaths.push(toPath(msg.file))\n break\n case 'build-dependency':\n buildFilePaths.push(toPath(msg.file))\n break\n case 'dir-dependency':\n directories.push([toPath(msg.dir), msg.glob])\n break\n case 'context-dependency':\n directories.push([toPath(msg.dir), '**'])\n break\n default:\n // TODO: do we need to do anything here?\n break\n }\n }\n ipc.sendInfo({\n type: 'dependencies',\n filePaths,\n directories,\n buildFilePaths,\n envVariables: getReadEnvVariables(),\n })\n return {\n css,\n map: sourceMap ? JSON.stringify(map) : undefined,\n assets,\n }\n}\n"],"names":["processor","init","ipc","config","env","Error","plugins","Array","isArray","map","plugin","Object","entries","filter","options","loadedPlugins","arg","pluginFactory","require","default","transform","cssContent","name","sourceMap","css","messages","process","from","to","inline","annotation","undefined","assets","filePaths","buildFilePaths","directories","msg","type","push","file","content","JSON","stringify","dir","glob","sendInfo","envVariables"],"mappings":"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"}}] +} \ No newline at end of file diff --git a/.next/build/chunks/[root-of-the-server]__0ubbtyl._.js b/.next/build/chunks/[root-of-the-server]__0ubbtyl._.js new file mode 100644 index 0000000..6e2a045 --- /dev/null +++ b/.next/build/chunks/[root-of-the-server]__0ubbtyl._.js @@ -0,0 +1,500 @@ +module.exports = [ +"[turbopack-node]/child_process/globals.ts [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => { + +// @ts-ignore +process.turbopack = {}; +}), +"[externals]/node:net [external] (node:net, cjs)", ((__turbopack_context__, module, exports) => { + +const mod = __turbopack_context__.x("node:net", () => require("node:net")); + +module.exports = mod; +}), +"[externals]/node:stream [external] (node:stream, cjs)", ((__turbopack_context__, module, exports) => { + +const mod = __turbopack_context__.x("node:stream", () => require("node:stream")); + +module.exports = mod; +}), +"[turbopack-node]/compiled/stacktrace-parser/index.js [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +__turbopack_context__.s([ + "parse", + ()=>parse +]); +if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/compiled/stacktrace-parser") + "/"; +var n = ""; +function parse(e) { + var r = e.split("\n"); + return r.reduce(function(e, r) { + var n = parseChrome(r) || parseWinjs(r) || parseGecko(r) || parseNode(r) || parseJSC(r); + if (n) { + e.push(n); + } + return e; + }, []); +} +var a = /^\s*at (.*?) ?\(((?:file|https?|blob|chrome-extension|native|eval|webpack||\/|[a-z]:\\|\\\\).*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i; +var l = /\((\S*)(?::(\d+))(?::(\d+))\)/; +function parseChrome(e) { + var r = a.exec(e); + if (!r) { + return null; + } + var u = r[2] && r[2].indexOf("native") === 0; + var t = r[2] && r[2].indexOf("eval") === 0; + var i = l.exec(r[2]); + if (t && i != null) { + r[2] = i[1]; + r[3] = i[2]; + r[4] = i[3]; + } + return { + file: !u ? r[2] : null, + methodName: r[1] || n, + arguments: u ? [ + r[2] + ] : [], + lineNumber: r[3] ? +r[3] : null, + column: r[4] ? +r[4] : null + }; +} +var u = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:file|ms-appx|https?|webpack|blob):.*?):(\d+)(?::(\d+))?\)?\s*$/i; +function parseWinjs(e) { + var r = u.exec(e); + if (!r) { + return null; + } + return { + file: r[2], + methodName: r[1] || n, + arguments: [], + lineNumber: +r[3], + column: r[4] ? +r[4] : null + }; +} +var t = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|webpack|resource|\[native).*?|[^@]*bundle)(?::(\d+))?(?::(\d+))?\s*$/i; +var i = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i; +function parseGecko(e) { + var r = t.exec(e); + if (!r) { + return null; + } + var a = r[3] && r[3].indexOf(" > eval") > -1; + var l = i.exec(r[3]); + if (a && l != null) { + r[3] = l[1]; + r[4] = l[2]; + r[5] = null; + } + return { + file: r[3], + methodName: r[1] || n, + arguments: r[2] ? r[2].split(",") : [], + lineNumber: r[4] ? +r[4] : null, + column: r[5] ? +r[5] : null + }; +} +var s = /^\s*(?:([^@]*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i; +function parseJSC(e) { + var r = s.exec(e); + if (!r) { + return null; + } + return { + file: r[3], + methodName: r[1] || n, + arguments: [], + lineNumber: +r[4], + column: r[5] ? +r[5] : null + }; +} +var o = /^\s*at (?:((?:\[object object\])?[^\\/]+(?: \[as \S+\])?) )?\(?(.*?):(\d+)(?::(\d+))?\)?\s*$/i; +function parseNode(e) { + var r = o.exec(e); + if (!r) { + return null; + } + return { + file: r[2], + methodName: r[1] || n, + arguments: [], + lineNumber: +r[3], + column: r[4] ? +r[4] : null + }; +} +}), +"[turbopack-node]/error.ts [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +__turbopack_context__.s([ + "default", + ()=>isError, + "getProperError", + ()=>getProperError, + "structuredError", + ()=>structuredError +]); +var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$compiled$2f$stacktrace$2d$parser$2f$index$2e$js__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/compiled/stacktrace-parser/index.js [postcss] (ecmascript)"); +; +function isError(err) { + return typeof err === 'object' && err !== null && 'name' in err && 'message' in err; +} +function getProperError(err) { + if (isError(err)) { + return err; + } + if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable + ; + return new Error(isPlainObject(err) ? JSON.stringify(err) : err + ''); +} +function getObjectClassLabel(value) { + return Object.prototype.toString.call(value); +} +function isPlainObject(value) { + if (getObjectClassLabel(value) !== '[object Object]') { + return false; + } + const prototype = Object.getPrototypeOf(value); + /** + * this used to be previously: + * + * `return prototype === null || prototype === Object.prototype` + * + * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail. + * + * It was changed to the current implementation since it's resilient to serialization. + */ return prototype === null || prototype.hasOwnProperty('isPrototypeOf'); +} +function structuredError(e) { + e = getProperError(e); + return { + name: e.name, + message: e.message, + stack: typeof e.stack === 'string' ? (0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$compiled$2f$stacktrace$2d$parser$2f$index$2e$js__$5b$postcss$5d$__$28$ecmascript$29$__["parse"])(e.stack) : [], + cause: e.cause ? structuredError(getProperError(e.cause)) : undefined + }; +} +}), +"[turbopack-node]/child_process/index.ts [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +__turbopack_context__.s([ + "IPC", + ()=>IPC +]); +var __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$net__$5b$external$5d$__$28$node$3a$net$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/node:net [external] (node:net, cjs)"); +var __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$stream__$5b$external$5d$__$28$node$3a$stream$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/node:stream [external] (node:stream, cjs)"); +var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$error$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/error.ts [postcss] (ecmascript)"); +; +; +; +function createIpc(port) { + const socket = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$net__$5b$external$5d$__$28$node$3a$net$2c$__cjs$29$__["createConnection"])({ + port, + host: '127.0.0.1' + }); + /** + * A writable stream that writes to the socket. + * We don't write directly to the socket because we need to + * handle backpressure and wait for the socket to be drained + * before writing more data. + */ const socketWritable = new __TURBOPACK__imported__module__$5b$externals$5d2f$node$3a$stream__$5b$external$5d$__$28$node$3a$stream$2c$__cjs$29$__["Writable"]({ + write (chunk, _enc, cb) { + if (socket.write(chunk)) { + cb(); + } else { + socket.once('drain', cb); + } + }, + final (cb) { + socket.end(cb); + } + }); + const packetQueue = []; + const recvPromiseResolveQueue = []; + function pushPacket(packet) { + const recvPromiseResolve = recvPromiseResolveQueue.shift(); + if (recvPromiseResolve != null) { + recvPromiseResolve(JSON.parse(packet.toString('utf8'))); + } else { + packetQueue.push(packet); + } + } + let state = { + type: 'waiting' + }; + let buffer = Buffer.alloc(0); + socket.once('connect', ()=>{ + socket.setNoDelay(true); + socket.on('data', (chunk)=>{ + buffer = Buffer.concat([ + buffer, + chunk + ]); + loop: while(true){ + switch(state.type){ + case 'waiting': + { + if (buffer.length >= 4) { + const length = buffer.readUInt32BE(0); + buffer = buffer.subarray(4); + state = { + type: 'packet', + length + }; + } else { + break loop; + } + break; + } + case 'packet': + { + if (buffer.length >= state.length) { + const packet = buffer.subarray(0, state.length); + buffer = buffer.subarray(state.length); + state = { + type: 'waiting' + }; + pushPacket(packet); + } else { + break loop; + } + break; + } + default: + invariant(state, (state)=>`Unknown state type: ${state?.type}`); + } + } + }); + }); + // When the socket is closed, this process is no longer needed. + // This might happen e. g. when parent process is killed or + // node.js pool is garbage collected. + socket.once('close', ()=>{ + process.exit(0); + }); + // TODO(lukesandberg): some of the messages being sent are very large and contain lots + // of redundant information. Consider adding gzip compression to our stream. + function doSend(message) { + return new Promise((resolve, reject)=>{ + // Reserve 4 bytes for our length prefix, we will over-write after encoding. + const packet = Buffer.from('0000' + message, 'utf8'); + packet.writeUInt32BE(packet.length - 4, 0); + socketWritable.write(packet, (err)=>{ + process.stderr.write(`TURBOPACK_OUTPUT_D\n`); + process.stdout.write(`TURBOPACK_OUTPUT_D\n`); + if (err != null) { + reject(err); + } else { + resolve(); + } + }); + }); + } + function send(message) { + return doSend(JSON.stringify(message)); + } + function sendReady() { + return doSend(''); + } + return { + async recv () { + const packet = packetQueue.shift(); + if (packet != null) { + return JSON.parse(packet.toString('utf8')); + } + const result = await new Promise((resolve)=>{ + recvPromiseResolveQueue.push((result)=>{ + resolve(result); + }); + }); + return result; + }, + send (message) { + return send(message); + }, + sendReady, + async sendError (error) { + let failed = false; + try { + await send({ + type: 'error', + ...(0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$error$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["structuredError"])(error) + }); + } catch (err) { + // There's nothing we can do about errors that happen after this point, we can't tell anyone + // about them. + console.error('failed to send error back to rust:', err); + failed = true; + } + await new Promise((res)=>socket.end(()=>res())); + process.exit(failed ? 1 : 0); + } + }; +} +const PORT = process.argv[2]; +const IPC = createIpc(parseInt(PORT, 10)); +process.on('uncaughtException', (err)=>{ + IPC.sendError(err); +}); +process.on('unhandledRejection', (reason)=>{ + IPC.sendError(reason instanceof Error ? reason : new Error(String(reason))); +}); +const improveConsole = (name, stream, addStack)=>{ + // @ts-ignore + const original = console[name]; + // @ts-ignore + const stdio = process[stream]; + // @ts-ignore + console[name] = (...args)=>{ + stdio.write(`TURBOPACK_OUTPUT_B\n`); + original(...args); + if (addStack) { + const stack = new Error().stack?.replace(/^.+\n.+\n/, '') + '\n'; + stdio.write('TURBOPACK_OUTPUT_S\n'); + stdio.write(stack); + } + stdio.write('TURBOPACK_OUTPUT_E\n'); + }; +}; +improveConsole('error', 'stderr', true); +improveConsole('warn', 'stderr', true); +improveConsole('count', 'stdout', true); +improveConsole('trace', 'stderr', false); +improveConsole('log', 'stdout', true); +improveConsole('group', 'stdout', true); +improveConsole('groupCollapsed', 'stdout', true); +improveConsole('table', 'stdout', true); +improveConsole('debug', 'stdout', true); +improveConsole('info', 'stdout', true); +improveConsole('dir', 'stdout', true); +improveConsole('dirxml', 'stdout', true); +improveConsole('timeEnd', 'stdout', true); +improveConsole('timeLog', 'stdout', true); +improveConsole('timeStamp', 'stdout', true); +improveConsole('assert', 'stderr', true); +/** + * Utility function to ensure all variants of an enum are handled. + */ function invariant(never, computeMessage) { + throw new Error(`Invariant: ${computeMessage(never)}`); +} +}), +"[turbopack-node]/child_process/evaluate.ts [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +__turbopack_context__.s([ + "run", + ()=>run +]); +var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$child_process$2f$index$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/child_process/index.ts [postcss] (ecmascript)"); +; +const ipc = __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$child_process$2f$index$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["IPC"]; +const queue = []; +const run = async (moduleFactory)=>{ + let nextId = 1; + const requests = new Map(); + const internalIpc = { + sendInfo: (message)=>ipc.send({ + type: 'info', + data: message + }), + sendRequest: (message)=>{ + const id = nextId++; + let resolve, reject; + const promise = new Promise((res, rej)=>{ + resolve = res; + reject = rej; + }); + requests.set(id, { + resolve, + reject + }); + return ipc.send({ + type: 'request', + id, + data: message + }).then(()=>promise); + }, + sendError: (error)=>{ + return ipc.sendError(error); + } + }; + // Initialize module and send ready message + let getValue; + try { + const module = await moduleFactory(); + if (typeof module.init === 'function') { + await module.init(); + } + getValue = module.default; + await ipc.sendReady(); + } catch (err) { + await ipc.sendReady(); + await ipc.sendError(err); + } + // Queue handling + let isRunning = false; + const run = async ()=>{ + while(queue.length > 0){ + const args = queue.shift(); + try { + const value = await getValue(internalIpc, ...args); + await ipc.send({ + type: 'end', + data: value === undefined ? undefined : JSON.stringify(value, null, 2), + duration: 0 + }); + } catch (e) { + await ipc.sendError(e); + } + } + isRunning = false; + }; + // Communication handling + while(true){ + const msg = await ipc.recv(); + switch(msg.type){ + case 'evaluate': + { + queue.push(msg.args); + if (!isRunning) { + isRunning = true; + run(); + } + break; + } + case 'result': + { + const request = requests.get(msg.id); + if (request) { + requests.delete(msg.id); + if (msg.error) { + request.reject(new Error(msg.error)); + } else { + request.resolve(msg.data); + } + } + break; + } + default: + { + console.error('unexpected message type', msg.type); + process.exit(1); + } + } + } +}; +}), +"[turbopack-node]/child_process/evaluate.ts/evaluate.js { INNER => \"[turbopack-node]/transforms/postcss.ts { CONFIG => \\\"[project]/postcss.config.mjs [postcss] (ecmascript)\\\" } [postcss] (ecmascript)\", RUNTIME => \"[turbopack-node]/child_process/evaluate.ts [postcss] (ecmascript)\" } [postcss] (ecmascript)", ((__turbopack_context__) => { +"use strict"; + +__turbopack_context__.s([]); +var __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$child_process$2f$evaluate$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[turbopack-node]/child_process/evaluate.ts [postcss] (ecmascript)"); +; +(0, __TURBOPACK__imported__module__$5b$turbopack$2d$node$5d2f$child_process$2f$evaluate$2e$ts__$5b$postcss$5d$__$28$ecmascript$29$__["run"])(()=>__turbopack_context__.A('[turbopack-node]/transforms/postcss.ts { CONFIG => "[project]/postcss.config.mjs [postcss] (ecmascript)" } [postcss] (ecmascript, async loader)')); +}), +]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__0ubbtyl._.js.map \ No newline at end of file diff --git a/.next/build/chunks/[root-of-the-server]__0ubbtyl._.js.map b/.next/build/chunks/[root-of-the-server]__0ubbtyl._.js.map new file mode 100644 index 0000000..faadccf --- /dev/null +++ b/.next/build/chunks/[root-of-the-server]__0ubbtyl._.js.map @@ -0,0 +1,11 @@ +{ + "version": 3, + "sources": [], + "sections": [ + {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/child_process/globals.ts"],"sourcesContent":["// @ts-ignore\nprocess.turbopack = {}\n"],"names":["process","turbopack"],"mappings":"AAAA,aAAa;AACbA,QAAQC,SAAS,GAAG,CAAC"}}, + {"offset": {"line": 21, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/compiled/stacktrace-parser/index.js"],"sourcesContent":["if (typeof __nccwpck_require__ !== \"undefined\")\n __nccwpck_require__.ab = __dirname + \"/\";\n\nvar n = \"\";\nexport function parse(e) {\n var r = e.split(\"\\n\");\n return r.reduce(function (e, r) {\n var n =\n parseChrome(r) ||\n parseWinjs(r) ||\n parseGecko(r) ||\n parseNode(r) ||\n parseJSC(r);\n if (n) {\n e.push(n);\n }\n return e;\n }, []);\n}\nvar a =\n /^\\s*at (.*?) ?\\(((?:file|https?|blob|chrome-extension|native|eval|webpack||\\/|[a-z]:\\\\|\\\\\\\\).*?)(?::(\\d+))?(?::(\\d+))?\\)?\\s*$/i;\nvar l = /\\((\\S*)(?::(\\d+))(?::(\\d+))\\)/;\nfunction parseChrome(e) {\n var r = a.exec(e);\n if (!r) {\n return null;\n }\n var u = r[2] && r[2].indexOf(\"native\") === 0;\n var t = r[2] && r[2].indexOf(\"eval\") === 0;\n var i = l.exec(r[2]);\n if (t && i != null) {\n r[2] = i[1];\n r[3] = i[2];\n r[4] = i[3];\n }\n return {\n file: !u ? r[2] : null,\n methodName: r[1] || n,\n arguments: u ? [r[2]] : [],\n lineNumber: r[3] ? +r[3] : null,\n column: r[4] ? +r[4] : null,\n };\n}\nvar u =\n /^\\s*at (?:((?:\\[object object\\])?.+) )?\\(?((?:file|ms-appx|https?|webpack|blob):.*?):(\\d+)(?::(\\d+))?\\)?\\s*$/i;\nfunction parseWinjs(e) {\n var r = u.exec(e);\n if (!r) {\n return null;\n }\n return {\n file: r[2],\n methodName: r[1] || n,\n arguments: [],\n lineNumber: +r[3],\n column: r[4] ? +r[4] : null,\n };\n}\nvar t =\n /^\\s*(.*?)(?:\\((.*?)\\))?(?:^|@)((?:file|https?|blob|chrome|webpack|resource|\\[native).*?|[^@]*bundle)(?::(\\d+))?(?::(\\d+))?\\s*$/i;\nvar i = /(\\S+) line (\\d+)(?: > eval line \\d+)* > eval/i;\nfunction parseGecko(e) {\n var r = t.exec(e);\n if (!r) {\n return null;\n }\n var a = r[3] && r[3].indexOf(\" > eval\") > -1;\n var l = i.exec(r[3]);\n if (a && l != null) {\n r[3] = l[1];\n r[4] = l[2];\n r[5] = null;\n }\n return {\n file: r[3],\n methodName: r[1] || n,\n arguments: r[2] ? r[2].split(\",\") : [],\n lineNumber: r[4] ? +r[4] : null,\n column: r[5] ? +r[5] : null,\n };\n}\nvar s = /^\\s*(?:([^@]*)(?:\\((.*?)\\))?@)?(\\S.*?):(\\d+)(?::(\\d+))?\\s*$/i;\nfunction parseJSC(e) {\n var r = s.exec(e);\n if (!r) {\n return null;\n }\n return {\n file: r[3],\n methodName: r[1] || n,\n arguments: [],\n lineNumber: +r[4],\n column: r[5] ? +r[5] : null,\n };\n}\nvar o =\n /^\\s*at (?:((?:\\[object object\\])?[^\\\\/]+(?: \\[as \\S+\\])?) )?\\(?(.*?):(\\d+)(?::(\\d+))?\\)?\\s*$/i;\nfunction parseNode(e) {\n var r = o.exec(e);\n if (!r) {\n return null;\n }\n return {\n file: r[2],\n methodName: r[1] || n,\n arguments: [],\n lineNumber: +r[3],\n column: r[4] ? +r[4] : null,\n };\n}\n"],"names":["__nccwpck_require__","ab","n","parse","e","r","split","reduce","parseChrome","parseWinjs","parseGecko","parseNode","parseJSC","push","a","l","exec","u","indexOf","t","i","file","methodName","arguments","lineNumber","column","s","o"],"mappings":"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"}}, + {"offset": {"line": 130, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/error.ts"],"sourcesContent":["import type { StackFrame } from './compiled/stacktrace-parser'\nimport { parse as parseStackTrace } from './compiled/stacktrace-parser'\n\n// merged from next.js\n// https://github.com/vercel/next.js/blob/e657741b9908cf0044aaef959c0c4defb19ed6d8/packages/next/src/lib/is-error.ts\n// https://github.com/vercel/next.js/blob/e657741b9908cf0044aaef959c0c4defb19ed6d8/packages/next/src/shared/lib/is-plain-object.ts\n\nexport default function isError(err: unknown): err is Error {\n return (\n typeof err === 'object' && err !== null && 'name' in err && 'message' in err\n )\n}\n\nexport function getProperError(err: unknown): Error {\n if (isError(err)) {\n return err\n }\n\n if (process.env.NODE_ENV === 'development') {\n // Provide a better error message for cases where `throw undefined`\n // is called in development\n if (typeof err === 'undefined') {\n return new Error('`undefined` was thrown instead of a real error')\n }\n\n if (err === null) {\n return new Error('`null` was thrown instead of a real error')\n }\n }\n\n return new Error(isPlainObject(err) ? JSON.stringify(err) : err + '')\n}\n\nfunction getObjectClassLabel(value: any): string {\n return Object.prototype.toString.call(value)\n}\n\nfunction isPlainObject(value: any): boolean {\n if (getObjectClassLabel(value) !== '[object Object]') {\n return false\n }\n\n const prototype = Object.getPrototypeOf(value)\n\n /**\n * this used to be previously:\n *\n * `return prototype === null || prototype === Object.prototype`\n *\n * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail.\n *\n * It was changed to the current implementation since it's resilient to serialization.\n */\n return prototype === null || prototype.hasOwnProperty('isPrototypeOf')\n}\n\nexport type StructuredError = {\n name: string\n message: string\n stack: StackFrame[]\n cause: StructuredError | undefined\n}\n\nexport function structuredError(e: Error | string): StructuredError {\n e = getProperError(e)\n\n return {\n name: e.name,\n message: e.message,\n stack: typeof e.stack === 'string' ? parseStackTrace(e.stack) : [],\n cause: e.cause ? structuredError(getProperError(e.cause)) : undefined,\n }\n}\n"],"names":["isError","err","getProperError","Error","isPlainObject","JSON","stringify","getObjectClassLabel","value","Object","prototype","toString","call","getPrototypeOf","hasOwnProperty","structuredError","e","name","message","stack","cause","undefined"],"mappings":";;;;;;;;AACA;;AAMe,SAASA,QAAQC,GAAY;IAC1C,OACE,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,UAAUA,OAAO,aAAaA;AAE7E;AAEO,SAASC,eAAeD,GAAY;IACzC,IAAID,QAAQC,MAAM;QAChB,OAAOA;IACT;IAEA;;IAYA,OAAO,IAAIE,MAAMC,cAAcH,OAAOI,KAAKC,SAAS,CAACL,OAAOA,MAAM;AACpE;AAEA,SAASM,oBAAoBC,KAAU;IACrC,OAAOC,OAAOC,SAAS,CAACC,QAAQ,CAACC,IAAI,CAACJ;AACxC;AAEA,SAASJ,cAAcI,KAAU;IAC/B,IAAID,oBAAoBC,WAAW,mBAAmB;QACpD,OAAO;IACT;IAEA,MAAME,YAAYD,OAAOI,cAAc,CAACL;IAExC;;;;;;;;GAQC,GACD,OAAOE,cAAc,QAAQA,UAAUI,cAAc,CAAC;AACxD;AASO,SAASC,gBAAgBC,CAAiB;IAC/CA,IAAId,eAAec;IAEnB,OAAO;QACLC,MAAMD,EAAEC,IAAI;QACZC,SAASF,EAAEE,OAAO;QAClBC,OAAO,OAAOH,EAAEG,KAAK,KAAK,WAAW,IAAA,yJAAe,EAACH,EAAEG,KAAK,IAAI,EAAE;QAClEC,OAAOJ,EAAEI,KAAK,GAAGL,gBAAgBb,eAAec,EAAEI,KAAK,KAAKC;IAC9D;AACF"}}, + {"offset": {"line": 182, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/child_process/index.ts"],"sourcesContent":["import { createConnection } from 'node:net'\nimport { Writable } from 'node:stream'\nimport { structuredError } from '../error'\n\ntype State =\n | {\n type: 'waiting'\n }\n | {\n type: 'packet'\n length: number\n }\n\nexport type Ipc = {\n recv(): Promise\n send(message: TOutgoing): Promise\n sendError(error: Error | string): Promise\n sendReady(): Promise\n}\n\nfunction createIpc(\n port: number\n): Ipc {\n const socket = createConnection({\n port,\n host: '127.0.0.1',\n })\n\n /**\n * A writable stream that writes to the socket.\n * We don't write directly to the socket because we need to\n * handle backpressure and wait for the socket to be drained\n * before writing more data.\n */\n const socketWritable = new Writable({\n write(chunk, _enc, cb) {\n if (socket.write(chunk)) {\n cb()\n } else {\n socket.once('drain', cb)\n }\n },\n final(cb) {\n socket.end(cb)\n },\n })\n\n const packetQueue: Buffer[] = []\n const recvPromiseResolveQueue: Array<(message: TIncoming) => void> = []\n\n function pushPacket(packet: Buffer) {\n const recvPromiseResolve = recvPromiseResolveQueue.shift()\n if (recvPromiseResolve != null) {\n recvPromiseResolve(JSON.parse(packet.toString('utf8')) as TIncoming)\n } else {\n packetQueue.push(packet)\n }\n }\n\n let state: State = { type: 'waiting' }\n let buffer: Buffer = Buffer.alloc(0)\n socket.once('connect', () => {\n socket.setNoDelay(true)\n socket.on('data', (chunk) => {\n buffer = Buffer.concat([buffer, chunk])\n\n loop: while (true) {\n switch (state.type) {\n case 'waiting': {\n if (buffer.length >= 4) {\n const length = buffer.readUInt32BE(0)\n buffer = buffer.subarray(4)\n state = { type: 'packet', length }\n } else {\n break loop\n }\n break\n }\n case 'packet': {\n if (buffer.length >= state.length) {\n const packet = buffer.subarray(0, state.length)\n buffer = buffer.subarray(state.length)\n state = { type: 'waiting' }\n pushPacket(packet)\n } else {\n break loop\n }\n break\n }\n default:\n invariant(state, (state) => `Unknown state type: ${state?.type}`)\n }\n }\n })\n })\n // When the socket is closed, this process is no longer needed.\n // This might happen e. g. when parent process is killed or\n // node.js pool is garbage collected.\n socket.once('close', () => {\n process.exit(0)\n })\n\n // TODO(lukesandberg): some of the messages being sent are very large and contain lots\n // of redundant information. Consider adding gzip compression to our stream.\n function doSend(message: string): Promise {\n return new Promise((resolve, reject) => {\n // Reserve 4 bytes for our length prefix, we will over-write after encoding.\n const packet = Buffer.from('0000' + message, 'utf8')\n packet.writeUInt32BE(packet.length - 4, 0)\n socketWritable.write(packet, (err) => {\n process.stderr.write(`TURBOPACK_OUTPUT_D\\n`)\n process.stdout.write(`TURBOPACK_OUTPUT_D\\n`)\n if (err != null) {\n reject(err)\n } else {\n resolve()\n }\n })\n })\n }\n\n function send(message: any): Promise {\n return doSend(JSON.stringify(message))\n }\n function sendReady(): Promise {\n return doSend('')\n }\n\n return {\n async recv() {\n const packet = packetQueue.shift()\n if (packet != null) {\n return JSON.parse(packet.toString('utf8')) as TIncoming\n }\n\n const result = await new Promise((resolve) => {\n recvPromiseResolveQueue.push((result) => {\n resolve(result)\n })\n })\n\n return result\n },\n\n send(message: TOutgoing) {\n return send(message)\n },\n\n sendReady,\n\n async sendError(error: Error): Promise {\n let failed = false\n try {\n await send({\n type: 'error',\n ...structuredError(error),\n })\n } catch (err) {\n // There's nothing we can do about errors that happen after this point, we can't tell anyone\n // about them.\n console.error('failed to send error back to rust:', err)\n failed = true\n }\n await new Promise((res) => socket.end(() => res()))\n process.exit(failed ? 1 : 0)\n },\n }\n}\n\nconst PORT = process.argv[2]\n\nexport const IPC = createIpc(parseInt(PORT, 10))\n\nprocess.on('uncaughtException', (err) => {\n IPC.sendError(err)\n})\n\nprocess.on('unhandledRejection', (reason) => {\n IPC.sendError(reason instanceof Error ? reason : new Error(String(reason)))\n})\n\nconst improveConsole = (name: string, stream: string, addStack: boolean) => {\n // @ts-ignore\n const original = console[name]\n // @ts-ignore\n const stdio = process[stream]\n // @ts-ignore\n console[name] = (...args: any[]) => {\n stdio.write(`TURBOPACK_OUTPUT_B\\n`)\n original(...args)\n if (addStack) {\n const stack = new Error().stack?.replace(/^.+\\n.+\\n/, '') + '\\n'\n stdio.write('TURBOPACK_OUTPUT_S\\n')\n stdio.write(stack)\n }\n stdio.write('TURBOPACK_OUTPUT_E\\n')\n }\n}\n\nimproveConsole('error', 'stderr', true)\nimproveConsole('warn', 'stderr', true)\nimproveConsole('count', 'stdout', true)\nimproveConsole('trace', 'stderr', false)\nimproveConsole('log', 'stdout', true)\nimproveConsole('group', 'stdout', true)\nimproveConsole('groupCollapsed', 'stdout', true)\nimproveConsole('table', 'stdout', true)\nimproveConsole('debug', 'stdout', true)\nimproveConsole('info', 'stdout', true)\nimproveConsole('dir', 'stdout', true)\nimproveConsole('dirxml', 'stdout', true)\nimproveConsole('timeEnd', 'stdout', true)\nimproveConsole('timeLog', 'stdout', true)\nimproveConsole('timeStamp', 'stdout', true)\nimproveConsole('assert', 'stderr', true)\n\n/**\n * Utility function to ensure all variants of an enum are handled.\n */\nfunction invariant(never: never, computeMessage: (arg: any) => string): never {\n throw new Error(`Invariant: ${computeMessage(never)}`)\n}\n"],"names":["createIpc","port","socket","host","socketWritable","write","chunk","_enc","cb","once","final","end","packetQueue","recvPromiseResolveQueue","pushPacket","packet","recvPromiseResolve","shift","JSON","parse","toString","push","state","type","buffer","Buffer","alloc","setNoDelay","on","concat","loop","length","readUInt32BE","subarray","invariant","process","exit","doSend","message","Promise","resolve","reject","from","writeUInt32BE","err","stderr","stdout","send","stringify","sendReady","recv","result","sendError","error","failed","console","res","PORT","argv","IPC","parseInt","reason","Error","String","improveConsole","name","stream","addStack","original","stdio","args","stack","replace","never","computeMessage"],"mappings":"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"}}, + {"offset": {"line": 386, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/child_process/evaluate.ts"],"sourcesContent":["import { IPC } from './index'\nimport type { Ipc as GenericIpc } from './index'\n\nimport type { Channel as Ipc } from '../types'\n\ntype IpcIncomingMessage =\n | {\n type: 'evaluate'\n args: string[]\n }\n | {\n type: 'result'\n id: number\n error: string | null\n data: any | null\n }\n\ntype IpcOutgoingMessage =\n | {\n type: 'end'\n data: string | undefined\n duration: number\n }\n | {\n type: 'info'\n data: any\n }\n | {\n type: 'request'\n id: number\n data: any\n }\n\nconst ipc = IPC as GenericIpc\n\nconst queue: string[][] = []\n\nexport const run = async (\n moduleFactory: () => Promise<{\n init?: () => Promise\n default: (ipc: Ipc, ...deserializedArgs: any[]) => any\n }>\n) => {\n let nextId = 1\n const requests = new Map()\n const internalIpc = {\n sendInfo: (message: any) =>\n ipc.send({\n type: 'info',\n data: message,\n }),\n sendRequest: (message: any) => {\n const id = nextId++\n let resolve, reject\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n requests.set(id, { resolve, reject })\n return ipc\n .send({ type: 'request', id, data: message })\n .then(() => promise)\n },\n sendError: (error: Error) => {\n return ipc.sendError(error)\n },\n }\n\n // Initialize module and send ready message\n let getValue: (ipc: Ipc, ...deserializedArgs: any[]) => any\n try {\n const module = await moduleFactory()\n if (typeof module.init === 'function') {\n await module.init()\n }\n getValue = module.default\n await ipc.sendReady()\n } catch (err) {\n await ipc.sendReady()\n await ipc.sendError(err as Error)\n }\n\n // Queue handling\n let isRunning = false\n const run = async () => {\n while (queue.length > 0) {\n const args = queue.shift()!\n try {\n const value = await getValue(internalIpc, ...args)\n await ipc.send({\n type: 'end',\n data:\n value === undefined ? undefined : JSON.stringify(value, null, 2),\n duration: 0,\n })\n } catch (e) {\n await ipc.sendError(e as Error)\n }\n }\n isRunning = false\n }\n\n // Communication handling\n while (true) {\n const msg = await ipc.recv()\n\n switch (msg.type) {\n case 'evaluate': {\n queue.push(msg.args)\n if (!isRunning) {\n isRunning = true\n run()\n }\n break\n }\n case 'result': {\n const request = requests.get(msg.id)\n if (request) {\n requests.delete(msg.id)\n if (msg.error) {\n request.reject(new Error(msg.error))\n } else {\n request.resolve(msg.data)\n }\n }\n break\n }\n default: {\n console.error('unexpected message type', (msg as any).type)\n process.exit(1)\n }\n }\n }\n}\n\nexport type { IpcIncomingMessage, IpcOutgoingMessage }\n"],"names":["ipc","queue","run","moduleFactory","nextId","requests","Map","internalIpc","sendInfo","message","send","type","data","sendRequest","id","resolve","reject","promise","Promise","res","rej","set","then","sendError","error","getValue","module","init","default","sendReady","err","isRunning","length","args","shift","value","undefined","JSON","stringify","duration","e","msg","recv","push","request","get","delete","Error","console","process","exit"],"mappings":";;;;AAAA;;AAiCA,MAAMA,MAAM,oIAAG;AAEf,MAAMC,QAAoB,EAAE;AAErB,MAAMC,MAAM,OACjBC;IAKA,IAAIC,SAAS;IACb,MAAMC,WAAW,IAAIC;IACrB,MAAMC,cAAc;QAClBC,UAAU,CAACC,UACTT,IAAIU,IAAI,CAAC;gBACPC,MAAM;gBACNC,MAAMH;YACR;QACFI,aAAa,CAACJ;YACZ,MAAMK,KAAKV;YACX,IAAIW,SAASC;YACb,MAAMC,UAAU,IAAIC,QAAQ,CAACC,KAAKC;gBAChCL,UAAUI;gBACVH,SAASI;YACX;YACAf,SAASgB,GAAG,CAACP,IAAI;gBAAEC;gBAASC;YAAO;YACnC,OAAOhB,IACJU,IAAI,CAAC;gBAAEC,MAAM;gBAAWG;gBAAIF,MAAMH;YAAQ,GAC1Ca,IAAI,CAAC,IAAML;QAChB;QACAM,WAAW,CAACC;YACV,OAAOxB,IAAIuB,SAAS,CAACC;QACvB;IACF;IAEA,2CAA2C;IAC3C,IAAIC;IACJ,IAAI;QACF,MAAMC,SAAS,MAAMvB;QACrB,IAAI,OAAOuB,OAAOC,IAAI,KAAK,YAAY;YACrC,MAAMD,OAAOC,IAAI;QACnB;QACAF,WAAWC,OAAOE,OAAO;QACzB,MAAM5B,IAAI6B,SAAS;IACrB,EAAE,OAAOC,KAAK;QACZ,MAAM9B,IAAI6B,SAAS;QACnB,MAAM7B,IAAIuB,SAAS,CAACO;IACtB;IAEA,iBAAiB;IACjB,IAAIC,YAAY;IAChB,MAAM7B,MAAM;QACV,MAAOD,MAAM+B,MAAM,GAAG,EAAG;YACvB,MAAMC,OAAOhC,MAAMiC,KAAK;YACxB,IAAI;gBACF,MAAMC,QAAQ,MAAMV,SAASlB,gBAAgB0B;gBAC7C,MAAMjC,IAAIU,IAAI,CAAC;oBACbC,MAAM;oBACNC,MACEuB,UAAUC,YAAYA,YAAYC,KAAKC,SAAS,CAACH,OAAO,MAAM;oBAChEI,UAAU;gBACZ;YACF,EAAE,OAAOC,GAAG;gBACV,MAAMxC,IAAIuB,SAAS,CAACiB;YACtB;QACF;QACAT,YAAY;IACd;IAEA,yBAAyB;IACzB,MAAO,KAAM;QACX,MAAMU,MAAM,MAAMzC,IAAI0C,IAAI;QAE1B,OAAQD,IAAI9B,IAAI;YACd,KAAK;gBAAY;oBACfV,MAAM0C,IAAI,CAACF,IAAIR,IAAI;oBACnB,IAAI,CAACF,WAAW;wBACdA,YAAY;wBACZ7B;oBACF;oBACA;gBACF;YACA,KAAK;gBAAU;oBACb,MAAM0C,UAAUvC,SAASwC,GAAG,CAACJ,IAAI3B,EAAE;oBACnC,IAAI8B,SAAS;wBACXvC,SAASyC,MAAM,CAACL,IAAI3B,EAAE;wBACtB,IAAI2B,IAAIjB,KAAK,EAAE;4BACboB,QAAQ5B,MAAM,CAAC,IAAI+B,MAAMN,IAAIjB,KAAK;wBACpC,OAAO;4BACLoB,QAAQ7B,OAAO,CAAC0B,IAAI7B,IAAI;wBAC1B;oBACF;oBACA;gBACF;YACA;gBAAS;oBACPoC,QAAQxB,KAAK,CAAC,2BAA2B,AAACiB,IAAY9B,IAAI;oBAC1DsC,QAAQC,IAAI,CAAC;gBACf;QACF;IACF;AACF"}}, + {"offset": {"line": 492, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack-node]/child_process/evaluate.ts/evaluate.js"],"sourcesContent":["import { run } from 'RUNTIME'; run(() => import('INNER'))"],"names":[],"mappings":";AAAA;;AAA+B,IAAA,uIAAG,EAAC"}}] +} \ No newline at end of file diff --git a/.next/build/chunks/[turbopack-node]_transforms_postcss_ts_06e.r3r._.js b/.next/build/chunks/[turbopack-node]_transforms_postcss_ts_06e.r3r._.js new file mode 100644 index 0000000..e34da84 --- /dev/null +++ b/.next/build/chunks/[turbopack-node]_transforms_postcss_ts_06e.r3r._.js @@ -0,0 +1,13 @@ +module.exports = [ +"[turbopack-node]/transforms/postcss.ts { CONFIG => \"[project]/postcss.config.mjs [postcss] (ecmascript)\" } [postcss] (ecmascript, async loader)", ((__turbopack_context__) => { + +__turbopack_context__.v((parentImport) => { + return Promise.all([ + "chunks/node_modules_13sb.px._.js", + "chunks/[root-of-the-server]__0d-m0h0._.js" +].map((chunk) => __turbopack_context__.l(chunk))).then(() => { + return parentImport("[turbopack-node]/transforms/postcss.ts { CONFIG => \"[project]/postcss.config.mjs [postcss] (ecmascript)\" } [postcss] (ecmascript)"); + }); +}); +}), +]; \ No newline at end of file diff --git a/.next/build/chunks/[turbopack-node]_transforms_postcss_ts_06e.r3r._.js.map b/.next/build/chunks/[turbopack-node]_transforms_postcss_ts_06e.r3r._.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/build/chunks/[turbopack-node]_transforms_postcss_ts_06e.r3r._.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/build/chunks/[turbopack]_runtime.js b/.next/build/chunks/[turbopack]_runtime.js new file mode 100644 index 0000000..a85eb41 --- /dev/null +++ b/.next/build/chunks/[turbopack]_runtime.js @@ -0,0 +1,890 @@ +const RUNTIME_PUBLIC_PATH = "chunks/[turbopack]_runtime.js"; +const RELATIVE_ROOT_PATH = ".."; +const ASSET_PREFIX = "/"; +const WORKER_FORWARDED_GLOBALS = []; +/** + * This file contains runtime types and functions that are shared between all + * TurboPack ECMAScript runtimes. + * + * It will be prepended to the runtime code of each runtime. + */ /* eslint-disable @typescript-eslint/no-unused-vars */ /// +/** + * Describes why a module was instantiated. + * Shared between browser and Node.js runtimes. + */ var SourceType = /*#__PURE__*/ function(SourceType) { + /** + * The module was instantiated because it was included in an evaluated chunk's + * runtime. + * SourceData is a ChunkPath. + */ SourceType[SourceType["Runtime"] = 0] = "Runtime"; + /** + * The module was instantiated because a parent module imported it. + * SourceData is a ModuleId. + */ SourceType[SourceType["Parent"] = 1] = "Parent"; + /** + * The module was instantiated because it was included in a chunk's hot module + * update. + * SourceData is an array of ModuleIds or undefined. + */ SourceType[SourceType["Update"] = 2] = "Update"; + return SourceType; +}(SourceType || {}); +/** + * Flag indicating which module object type to create when a module is merged. Set to `true` + * by each runtime that uses ModuleWithDirection (browser dev-base.ts, nodejs dev-base.ts, + * nodejs build-base.ts). Browser production (build-base.ts) leaves it as `false` since it + * uses plain Module objects. + */ let createModuleWithDirectionFlag = false; +const REEXPORTED_OBJECTS = new WeakMap(); +/** + * Constructs the `__turbopack_context__` object for a module. + */ function Context(module, exports) { + this.m = module; + // We need to store this here instead of accessing it from the module object to: + // 1. Make it available to factories directly, since we rewrite `this` to + // `__turbopack_context__.e` in CJS modules. + // 2. Support async modules which rewrite `module.exports` to a promise, so we + // can still access the original exports object from functions like + // `esmExport` + // Ideally we could find a new approach for async modules and drop this property altogether. + this.e = exports; +} +const contextPrototype = Context.prototype; +const hasOwnProperty = Object.prototype.hasOwnProperty; +const toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag; +function defineProp(obj, name, options) { + if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options); +} +function getOverwrittenModule(moduleCache, id) { + let module = moduleCache[id]; + if (!module) { + if (createModuleWithDirectionFlag) { + // set in development modes for hmr support + module = createModuleWithDirection(id); + } else { + module = createModuleObject(id); + } + moduleCache[id] = module; + } + return module; +} +/** + * Creates the module object. Only done here to ensure all module objects have the same shape. + */ function createModuleObject(id) { + return { + exports: {}, + error: undefined, + id, + namespaceObject: undefined + }; +} +function createModuleWithDirection(id) { + return { + exports: {}, + error: undefined, + id, + namespaceObject: undefined, + parents: [], + children: [] + }; +} +const BindingTag_Value = 0; +/** + * Adds the getters to the exports object. + */ function esm(exports, bindings) { + defineProp(exports, '__esModule', { + value: true + }); + if (toStringTag) defineProp(exports, toStringTag, { + value: 'Module' + }); + let i = 0; + while(i < bindings.length){ + const propName = bindings[i++]; + const tagOrFunction = bindings[i++]; + if (typeof tagOrFunction === 'number') { + if (tagOrFunction === BindingTag_Value) { + defineProp(exports, propName, { + value: bindings[i++], + enumerable: true, + writable: false + }); + } else { + throw new Error(`unexpected tag: ${tagOrFunction}`); + } + } else { + const getterFn = tagOrFunction; + if (typeof bindings[i] === 'function') { + const setterFn = bindings[i++]; + defineProp(exports, propName, { + get: getterFn, + set: setterFn, + enumerable: true + }); + } else { + defineProp(exports, propName, { + get: getterFn, + enumerable: true + }); + } + } + } + Object.seal(exports); +} +/** + * Makes the module an ESM with exports + */ function esmExport(bindings, id) { + let module; + let exports; + if (id != null) { + module = getOverwrittenModule(this.c, id); + exports = module.exports; + } else { + module = this.m; + exports = this.e; + } + module.namespaceObject = exports; + esm(exports, bindings); +} +contextPrototype.s = esmExport; +function ensureDynamicExports(module, exports) { + let reexportedObjects = REEXPORTED_OBJECTS.get(module); + if (!reexportedObjects) { + REEXPORTED_OBJECTS.set(module, reexportedObjects = []); + module.exports = module.namespaceObject = new Proxy(exports, { + get (target, prop) { + if (hasOwnProperty.call(target, prop) || prop === 'default' || prop === '__esModule') { + return Reflect.get(target, prop); + } + for (const obj of reexportedObjects){ + const value = Reflect.get(obj, prop); + if (value !== undefined) return value; + } + return undefined; + }, + ownKeys (target) { + const keys = Reflect.ownKeys(target); + for (const obj of reexportedObjects){ + for (const key of Reflect.ownKeys(obj)){ + if (key !== 'default' && !keys.includes(key)) keys.push(key); + } + } + return keys; + } + }); + } + return reexportedObjects; +} +/** + * Dynamically exports properties from an object + */ function dynamicExport(object, id) { + let module; + let exports; + if (id != null) { + module = getOverwrittenModule(this.c, id); + exports = module.exports; + } else { + module = this.m; + exports = this.e; + } + const reexportedObjects = ensureDynamicExports(module, exports); + if (typeof object === 'object' && object !== null) { + reexportedObjects.push(object); + } +} +contextPrototype.j = dynamicExport; +function exportValue(value, id) { + let module; + if (id != null) { + module = getOverwrittenModule(this.c, id); + } else { + module = this.m; + } + module.exports = value; +} +contextPrototype.v = exportValue; +function exportNamespace(namespace, id) { + let module; + if (id != null) { + module = getOverwrittenModule(this.c, id); + } else { + module = this.m; + } + module.exports = module.namespaceObject = namespace; +} +contextPrototype.n = exportNamespace; +function createGetter(obj, key) { + return ()=>obj[key]; +} +/** + * @returns prototype of the object + */ const getProto = Object.getPrototypeOf ? (obj)=>Object.getPrototypeOf(obj) : (obj)=>obj.__proto__; +/** Prototypes that are not expanded for exports */ const LEAF_PROTOTYPES = [ + null, + getProto({}), + getProto([]), + getProto(getProto) +]; +/** + * @param raw + * @param ns + * @param allowExportDefault + * * `false`: will have the raw module as default export + * * `true`: will have the default property as default export + */ function interopEsm(raw, ns, allowExportDefault) { + const bindings = []; + let defaultLocation = -1; + for(let current = raw; (typeof current === 'object' || typeof current === 'function') && !LEAF_PROTOTYPES.includes(current); current = getProto(current)){ + for (const key of Object.getOwnPropertyNames(current)){ + bindings.push(key, createGetter(raw, key)); + if (defaultLocation === -1 && key === 'default') { + defaultLocation = bindings.length - 1; + } + } + } + // this is not really correct + // we should set the `default` getter if the imported module is a `.cjs file` + if (!(allowExportDefault && defaultLocation >= 0)) { + // Replace the binding with one for the namespace itself in order to preserve iteration order. + if (defaultLocation >= 0) { + // Replace the getter with the value + bindings.splice(defaultLocation, 1, BindingTag_Value, raw); + } else { + bindings.push('default', BindingTag_Value, raw); + } + } + esm(ns, bindings); + return ns; +} +function createNS(raw) { + if (typeof raw === 'function') { + return function(...args) { + return raw.apply(this, args); + }; + } else { + return Object.create(null); + } +} +function esmImport(id) { + const module = getOrInstantiateModuleFromParent(id, this.m); + // any ES module has to have `module.namespaceObject` defined. + if (module.namespaceObject) return module.namespaceObject; + // only ESM can be an async module, so we don't need to worry about exports being a promise here. + const raw = module.exports; + return module.namespaceObject = interopEsm(raw, createNS(raw), raw && raw.__esModule); +} +contextPrototype.i = esmImport; +function asyncLoader(moduleId) { + const loader = this.r(moduleId); + return loader(esmImport.bind(this)); +} +contextPrototype.A = asyncLoader; +// Add a simple runtime require so that environments without one can still pass +// `typeof require` CommonJS checks so that exports are correctly registered. +const runtimeRequire = // @ts-ignore +typeof require === 'function' ? require : function require1() { + throw new Error('Unexpected use of runtime require'); +}; +contextPrototype.t = runtimeRequire; +function commonJsRequire(id) { + return getOrInstantiateModuleFromParent(id, this.m).exports; +} +contextPrototype.r = commonJsRequire; +/** + * Remove fragments and query parameters since they are never part of the context map keys + * + * This matches how we parse patterns at resolving time. Arguably we should only do this for + * strings passed to `import` but the resolve does it for `import` and `require` and so we do + * here as well. + */ function parseRequest(request) { + // Per the URI spec fragments can contain `?` characters, so we should trim it off first + // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5 + const hashIndex = request.indexOf('#'); + if (hashIndex !== -1) { + request = request.substring(0, hashIndex); + } + const queryIndex = request.indexOf('?'); + if (queryIndex !== -1) { + request = request.substring(0, queryIndex); + } + return request; +} +/** + * `require.context` and require/import expression runtime. + */ function moduleContext(map) { + function moduleContext(id) { + id = parseRequest(id); + if (hasOwnProperty.call(map, id)) { + return map[id].module(); + } + const e = new Error(`Cannot find module '${id}'`); + e.code = 'MODULE_NOT_FOUND'; + throw e; + } + moduleContext.keys = ()=>{ + return Object.keys(map); + }; + moduleContext.resolve = (id)=>{ + id = parseRequest(id); + if (hasOwnProperty.call(map, id)) { + return map[id].id(); + } + const e = new Error(`Cannot find module '${id}'`); + e.code = 'MODULE_NOT_FOUND'; + throw e; + }; + moduleContext.import = async (id)=>{ + return await moduleContext(id); + }; + return moduleContext; +} +contextPrototype.f = moduleContext; +/** + * Returns the path of a chunk defined by its data. + */ function getChunkPath(chunkData) { + return typeof chunkData === 'string' ? chunkData : chunkData.path; +} +function isPromise(maybePromise) { + return maybePromise != null && typeof maybePromise === 'object' && 'then' in maybePromise && typeof maybePromise.then === 'function'; +} +function isAsyncModuleExt(obj) { + return turbopackQueues in obj; +} +function createPromise() { + let resolve; + let reject; + const promise = new Promise((res, rej)=>{ + reject = rej; + resolve = res; + }); + return { + promise, + resolve: resolve, + reject: reject + }; +} +// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map. +// The CompressedModuleFactories format is +// - 1 or more module ids +// - a module factory function +// So walking this is a little complex but the flat structure is also fast to +// traverse, we can use `typeof` operators to distinguish the two cases. +function installCompressedModuleFactories(chunkModules, offset, moduleFactories, newModuleId) { + let i = offset; + while(i < chunkModules.length){ + let end = i + 1; + // Find our factory function + while(end < chunkModules.length && typeof chunkModules[end] !== 'function'){ + end++; + } + if (end === chunkModules.length) { + throw new Error('malformed chunk format, expected a factory function'); + } + // Install the factory for each module ID that doesn't already have one. + // When some IDs in this group already have a factory, reuse that existing + // group factory for the missing IDs to keep all IDs in the group consistent. + // Otherwise, install the factory from this chunk. + const moduleFactoryFn = chunkModules[end]; + let existingGroupFactory = undefined; + for(let j = i; j < end; j++){ + const id = chunkModules[j]; + const existingFactory = moduleFactories.get(id); + if (existingFactory) { + existingGroupFactory = existingFactory; + break; + } + } + const factoryToInstall = existingGroupFactory ?? moduleFactoryFn; + let didInstallFactory = false; + for(let j = i; j < end; j++){ + const id = chunkModules[j]; + if (!moduleFactories.has(id)) { + if (!didInstallFactory) { + if (factoryToInstall === moduleFactoryFn) { + applyModuleFactoryName(moduleFactoryFn); + } + didInstallFactory = true; + } + moduleFactories.set(id, factoryToInstall); + newModuleId?.(id); + } + } + i = end + 1; // end is pointing at the last factory advance to the next id or the end of the array. + } +} +// everything below is adapted from webpack +// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13 +const turbopackQueues = Symbol('turbopack queues'); +const turbopackExports = Symbol('turbopack exports'); +const turbopackError = Symbol('turbopack error'); +function resolveQueue(queue) { + if (queue && queue.status !== 1) { + queue.status = 1; + queue.forEach((fn)=>fn.queueCount--); + queue.forEach((fn)=>fn.queueCount-- ? fn.queueCount++ : fn()); + } +} +function wrapDeps(deps) { + return deps.map((dep)=>{ + if (dep !== null && typeof dep === 'object') { + if (isAsyncModuleExt(dep)) return dep; + if (isPromise(dep)) { + const queue = Object.assign([], { + status: 0 + }); + const obj = { + [turbopackExports]: {}, + [turbopackQueues]: (fn)=>fn(queue) + }; + dep.then((res)=>{ + obj[turbopackExports] = res; + resolveQueue(queue); + }, (err)=>{ + obj[turbopackError] = err; + resolveQueue(queue); + }); + return obj; + } + } + return { + [turbopackExports]: dep, + [turbopackQueues]: ()=>{} + }; + }); +} +function asyncModule(body, hasAwait) { + const module = this.m; + const queue = hasAwait ? Object.assign([], { + status: -1 + }) : undefined; + const depQueues = new Set(); + const { resolve, reject, promise: rawPromise } = createPromise(); + const promise = Object.assign(rawPromise, { + [turbopackExports]: module.exports, + [turbopackQueues]: (fn)=>{ + queue && fn(queue); + depQueues.forEach(fn); + promise['catch'](()=>{}); + } + }); + const attributes = { + get () { + return promise; + }, + set (v) { + // Calling `esmExport` leads to this. + if (v !== promise) { + promise[turbopackExports] = v; + } + } + }; + Object.defineProperty(module, 'exports', attributes); + Object.defineProperty(module, 'namespaceObject', attributes); + function handleAsyncDependencies(deps) { + const currentDeps = wrapDeps(deps); + const getResult = ()=>currentDeps.map((d)=>{ + if (d[turbopackError]) throw d[turbopackError]; + return d[turbopackExports]; + }); + const { promise, resolve } = createPromise(); + const fn = Object.assign(()=>resolve(getResult), { + queueCount: 0 + }); + function fnQueue(q) { + if (q !== queue && !depQueues.has(q)) { + depQueues.add(q); + if (q && q.status === 0) { + fn.queueCount++; + q.push(fn); + } + } + } + currentDeps.map((dep)=>dep[turbopackQueues](fnQueue)); + return fn.queueCount ? promise : getResult(); + } + function asyncResult(err) { + if (err) { + reject(promise[turbopackError] = err); + } else { + resolve(promise[turbopackExports]); + } + resolveQueue(queue); + } + body(handleAsyncDependencies, asyncResult); + if (queue && queue.status === -1) { + queue.status = 0; + } +} +contextPrototype.a = asyncModule; +/** + * A pseudo "fake" URL object to resolve to its relative path. + * + * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this + * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid + * hydration mismatch. + * + * This is based on webpack's existing implementation: + * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js + */ const relativeURL = function relativeURL(inputUrl) { + const realUrl = new URL(inputUrl, 'x:/'); + const values = {}; + for(const key in realUrl)values[key] = realUrl[key]; + values.href = inputUrl; + values.pathname = inputUrl.replace(/[?#].*/, ''); + values.origin = values.protocol = ''; + values.toString = values.toJSON = (..._args)=>inputUrl; + for(const key in values)Object.defineProperty(this, key, { + enumerable: true, + configurable: true, + value: values[key] + }); +}; +relativeURL.prototype = URL.prototype; +contextPrototype.U = relativeURL; +/** + * Utility function to ensure all variants of an enum are handled. + */ function invariant(never, computeMessage) { + throw new Error(`Invariant: ${computeMessage(never)}`); +} +/** + * Constructs an error message for when a module factory is not available. + */ function factoryNotAvailableMessage(moduleId, sourceType, sourceData) { + let instantiationReason; + switch(sourceType){ + case 0: + instantiationReason = `as a runtime entry of chunk ${sourceData}`; + break; + case 1: + instantiationReason = `because it was required from module ${sourceData}`; + break; + case 2: + instantiationReason = 'because of an HMR update'; + break; + default: + invariant(sourceType, (sourceType)=>`Unknown source type: ${sourceType}`); + } + return `Module ${moduleId} was instantiated ${instantiationReason}, but the module factory is not available.`; +} +/** + * A stub function to make `require` available but non-functional in ESM. + */ function requireStub(_moduleId) { + throw new Error('dynamic usage of require is not supported'); +} +contextPrototype.z = requireStub; +// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable. +contextPrototype.g = globalThis; +function applyModuleFactoryName(factory) { + // Give the module factory a nice name to improve stack traces. + Object.defineProperty(factory, 'name', { + value: 'module evaluation' + }); +} +/// +/// A 'base' utilities to support runtime can have externals. +/// Currently this is for node.js / edge runtime both. +/// If a fn requires node.js specific behavior, it should be placed in `node-external-utils` instead. +async function externalImport(id) { + let raw; + try { + raw = await import(id); + } catch (err) { + // TODO(alexkirsz) This can happen when a client-side module tries to load + // an external module we don't provide a shim for (e.g. querystring, url). + // For now, we fail semi-silently, but in the future this should be a + // compilation error. + throw new Error(`Failed to load external module ${id}: ${err}`); + } + if (raw && raw.__esModule && raw.default && 'default' in raw.default) { + return interopEsm(raw.default, createNS(raw), true); + } + return raw; +} +contextPrototype.y = externalImport; +function externalRequire(id, thunk, esm = false) { + let raw; + try { + raw = thunk(); + } catch (err) { + // TODO(alexkirsz) This can happen when a client-side module tries to load + // an external module we don't provide a shim for (e.g. querystring, url). + // For now, we fail semi-silently, but in the future this should be a + // compilation error. + throw new Error(`Failed to load external module ${id}: ${err}`); + } + if (!esm || raw.__esModule) { + return raw; + } + return interopEsm(raw, createNS(raw), true); +} +externalRequire.resolve = (id, options)=>{ + return require.resolve(id, options); +}; +contextPrototype.x = externalRequire; +/* eslint-disable @typescript-eslint/no-unused-vars */ const path = require('path'); +const relativePathToRuntimeRoot = path.relative(RUNTIME_PUBLIC_PATH, '.'); +// Compute the relative path to the `distDir`. +const relativePathToDistRoot = path.join(relativePathToRuntimeRoot, RELATIVE_ROOT_PATH); +const RUNTIME_ROOT = path.resolve(__filename, relativePathToRuntimeRoot); +// Compute the absolute path to the root, by stripping distDir from the absolute path to this file. +const ABSOLUTE_ROOT = path.resolve(__filename, relativePathToDistRoot); +/** + * Returns an absolute path to the given module path. + * Module path should be relative, either path to a file or a directory. + * + * This fn allows to calculate an absolute path for some global static values, such as + * `__dirname` or `import.meta.url` that Turbopack will not embeds in compile time. + * See ImportMetaBinding::code_generation for the usage. + */ function resolveAbsolutePath(modulePath) { + if (modulePath) { + return path.join(ABSOLUTE_ROOT, modulePath); + } + return ABSOLUTE_ROOT; +} +Context.prototype.P = resolveAbsolutePath; +/* eslint-disable @typescript-eslint/no-unused-vars */ /// +function readWebAssemblyAsResponse(path) { + const { createReadStream } = require('fs'); + const { Readable } = require('stream'); + const stream = createReadStream(path); + // @ts-ignore unfortunately there's a slight type mismatch with the stream. + return new Response(Readable.toWeb(stream), { + headers: { + 'content-type': 'application/wasm' + } + }); +} +async function compileWebAssemblyFromPath(path) { + const response = readWebAssemblyAsResponse(path); + return await WebAssembly.compileStreaming(response); +} +async function instantiateWebAssemblyFromPath(path, importsObj) { + const response = readWebAssemblyAsResponse(path); + const { instance } = await WebAssembly.instantiateStreaming(response, importsObj); + return instance.exports; +} +/* eslint-disable @typescript-eslint/no-unused-vars */ /// +/// +/// +/// +/// +/** + * Base Node.js runtime shared between production and development. + * Contains chunk loading, module caching, and other non-HMR functionality. + */ process.env.TURBOPACK = '1'; +const url = require('url'); +const moduleFactories = new Map(); +const moduleCache = Object.create(null); +/** + * Returns an absolute path to the given module's id. + */ function resolvePathFromModule(moduleId) { + const exported = this.r(moduleId); + const exportedPath = exported?.default ?? exported; + if (typeof exportedPath !== 'string') { + return exported; + } + const strippedAssetPrefix = exportedPath.slice(ASSET_PREFIX.length); + const resolved = path.resolve(RUNTIME_ROOT, strippedAssetPrefix); + return url.pathToFileURL(resolved).href; +} +/** + * Exports a URL value. No suffix is added in Node.js runtime. + */ function exportUrl(urlValue, id) { + exportValue.call(this, urlValue, id); +} +function loadRuntimeChunk(sourcePath, chunkData) { + if (typeof chunkData === 'string') { + loadRuntimeChunkPath(sourcePath, chunkData); + } else { + loadRuntimeChunkPath(sourcePath, chunkData.path); + } +} +const loadedChunks = new Set(); +const unsupportedLoadChunk = Promise.resolve(undefined); +const loadedChunk = Promise.resolve(undefined); +const chunkCache = new Map(); +function clearChunkCache() { + chunkCache.clear(); + loadedChunks.clear(); +} +function loadRuntimeChunkPath(sourcePath, chunkPath) { + if (!isJs(chunkPath)) { + // We only support loading JS chunks in Node.js. + // This branch can be hit when trying to load a CSS chunk. + return; + } + if (loadedChunks.has(chunkPath)) { + return; + } + try { + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + const chunkModules = require(resolved); + installCompressedModuleFactories(chunkModules, 0, moduleFactories); + loadedChunks.add(chunkPath); + } catch (cause) { + let errorMessage = `Failed to load chunk ${chunkPath}`; + if (sourcePath) { + errorMessage += ` from runtime for chunk ${sourcePath}`; + } + const error = new Error(errorMessage, { + cause + }); + error.name = 'ChunkLoadError'; + throw error; + } +} +function loadChunkAsync(chunkData) { + const chunkPath = typeof chunkData === 'string' ? chunkData : chunkData.path; + if (!isJs(chunkPath)) { + // We only support loading JS chunks in Node.js. + // This branch can be hit when trying to load a CSS chunk. + return unsupportedLoadChunk; + } + let entry = chunkCache.get(chunkPath); + if (entry === undefined) { + try { + // resolve to an absolute path to simplify `require` handling + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + // TODO: consider switching to `import()` to enable concurrent chunk loading and async file io + // However this is incompatible with hot reloading (since `import` doesn't use the require cache) + const chunkModules = require(resolved); + installCompressedModuleFactories(chunkModules, 0, moduleFactories); + entry = loadedChunk; + } catch (cause) { + const errorMessage = `Failed to load chunk ${chunkPath} from module ${this.m.id}`; + const error = new Error(errorMessage, { + cause + }); + error.name = 'ChunkLoadError'; + // Cache the failure promise, future requests will also get this same rejection + entry = Promise.reject(error); + } + chunkCache.set(chunkPath, entry); + } + // TODO: Return an instrumented Promise that React can use instead of relying on referential equality. + return entry; +} +contextPrototype.l = loadChunkAsync; +function loadChunkAsyncByUrl(chunkUrl) { + const path1 = url.fileURLToPath(new URL(chunkUrl, RUNTIME_ROOT)); + return loadChunkAsync.call(this, path1); +} +contextPrototype.L = loadChunkAsyncByUrl; +function loadWebAssembly(chunkPath, _edgeModule, imports) { + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + return instantiateWebAssemblyFromPath(resolved, imports); +} +contextPrototype.w = loadWebAssembly; +function loadWebAssemblyModule(chunkPath, _edgeModule) { + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + return compileWebAssemblyFromPath(resolved); +} +contextPrototype.u = loadWebAssemblyModule; +/** + * Creates a Node.js worker thread by instantiating the given WorkerConstructor + * with the appropriate path and options, including forwarded globals. + * + * @param WorkerConstructor The Worker constructor from worker_threads + * @param workerPath Path to the worker entry chunk + * @param workerOptions options to pass to the Worker constructor (optional) + */ function createWorker(WorkerConstructor, workerPath, workerOptions) { + // Build the forwarded globals object + const forwardedGlobals = {}; + for (const name of WORKER_FORWARDED_GLOBALS){ + forwardedGlobals[name] = globalThis[name]; + } + // Merge workerData with forwarded globals + const existingWorkerData = workerOptions?.workerData || {}; + const options = { + ...workerOptions, + workerData: { + ...typeof existingWorkerData === 'object' ? existingWorkerData : {}, + __turbopack_globals__: forwardedGlobals + } + }; + return new WorkerConstructor(workerPath, options); +} +const regexJsUrl = /\.js(?:\?[^#]*)?(?:#.*)?$/; +/** + * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment. + */ function isJs(chunkUrlOrPath) { + return regexJsUrl.test(chunkUrlOrPath); +} +/* eslint-disable @typescript-eslint/no-unused-vars */ /// +/** + * Production Node.js runtime. + * Uses ModuleWithDirection and simple module instantiation without HMR support. + */ // moduleCache and moduleFactories are declared in runtime-base.ts +// this is read in runtime-utils.ts so it creates a module with direction for hmr +createModuleWithDirectionFlag = true; +const nodeContextPrototype = Context.prototype; +nodeContextPrototype.q = exportUrl; +nodeContextPrototype.M = moduleFactories; +// Cast moduleCache to ModuleWithDirection for production mode +nodeContextPrototype.c = moduleCache; +nodeContextPrototype.R = resolvePathFromModule; +nodeContextPrototype.b = createWorker; +nodeContextPrototype.C = clearChunkCache; +function instantiateModule(id, sourceType, sourceData) { + const moduleFactory = moduleFactories.get(id); + if (typeof moduleFactory !== 'function') { + // This can happen if modules incorrectly handle HMR disposes/updates, + // e.g. when they keep a `setTimeout` around which still executes old code + // and contains e.g. a `require("something")` call. + throw new Error(factoryNotAvailableMessage(id, sourceType, sourceData)); + } + const module1 = createModuleWithDirection(id); + const exports = module1.exports; + moduleCache[id] = module1; + const context = new Context(module1, exports); + // NOTE(alexkirsz) This can fail when the module encounters a runtime error. + try { + moduleFactory(context, module1, exports); + } catch (error) { + module1.error = error; + throw error; + } + ; + module1.loaded = true; + if (module1.namespaceObject && module1.exports !== module1.namespaceObject) { + // in case of a circular dependency: cjs1 -> esm2 -> cjs1 + interopEsm(module1.exports, module1.namespaceObject); + } + return module1; +} +/** + * Retrieves a module from the cache, or instantiate it if it is not cached. + */ // @ts-ignore +function getOrInstantiateModuleFromParent(id, sourceModule) { + const module1 = moduleCache[id]; + if (module1) { + if (module1.error) { + throw module1.error; + } + return module1; + } + return instantiateModule(id, SourceType.Parent, sourceModule.id); +} +/** + * Instantiates a runtime module. + */ function instantiateRuntimeModule(chunkPath, moduleId) { + return instantiateModule(moduleId, SourceType.Runtime, chunkPath); +} +/** + * Retrieves a module from the cache, or instantiate it as a runtime module if it is not cached. + */ // @ts-ignore TypeScript doesn't separate this module space from the browser runtime +function getOrInstantiateRuntimeModule(chunkPath, moduleId) { + const module1 = moduleCache[moduleId]; + if (module1) { + if (module1.error) { + throw module1.error; + } + return module1; + } + return instantiateRuntimeModule(chunkPath, moduleId); +} +module.exports = (sourcePath)=>({ + m: (id)=>getOrInstantiateRuntimeModule(sourcePath, id), + c: (chunkData)=>loadRuntimeChunk(sourcePath, chunkData) + }); + + +//# sourceMappingURL=%5Bturbopack%5D_runtime.js.map \ No newline at end of file diff --git a/.next/build/chunks/[turbopack]_runtime.js.map b/.next/build/chunks/[turbopack]_runtime.js.map new file mode 100644 index 0000000..19883e6 --- /dev/null +++ b/.next/build/chunks/[turbopack]_runtime.js.map @@ -0,0 +1,11 @@ +{ + "version": 3, + "sources": [], + "sections": [ + {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared/runtime/runtime-utils.ts"],"sourcesContent":["/**\n * This file contains runtime types and functions that are shared between all\n * TurboPack ECMAScript runtimes.\n *\n * It will be prepended to the runtime code of each runtime.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\ntype EsmNamespaceObject = Record\n\n/**\n * Describes why a module was instantiated.\n * Shared between browser and Node.js runtimes.\n */\nenum SourceType {\n /**\n * The module was instantiated because it was included in an evaluated chunk's\n * runtime.\n * SourceData is a ChunkPath.\n */\n Runtime = 0,\n /**\n * The module was instantiated because a parent module imported it.\n * SourceData is a ModuleId.\n */\n Parent = 1,\n /**\n * The module was instantiated because it was included in a chunk's hot module\n * update.\n * SourceData is an array of ModuleIds or undefined.\n */\n Update = 2,\n}\n\ntype SourceData = ChunkPath | ModuleId | ModuleId[] | undefined\n\n// @ts-ignore Defined in `dev-base.ts`\ndeclare function getOrInstantiateModuleFromParent(\n id: ModuleId,\n sourceModule: M\n): M\n\n// @ts-ignore Defined in `hmr-runtime.ts` (dev mode only)\ndeclare let devModuleCache: Record | undefined\n\n/**\n * Flag indicating which module object type to create when a module is merged. Set to `true`\n * by each runtime that uses ModuleWithDirection (browser dev-base.ts, nodejs dev-base.ts,\n * nodejs build-base.ts). Browser production (build-base.ts) leaves it as `false` since it\n * uses plain Module objects.\n */\nlet createModuleWithDirectionFlag = false\n\nconst REEXPORTED_OBJECTS = new WeakMap()\n\n/**\n * Constructs the `__turbopack_context__` object for a module.\n */\nfunction Context(\n this: TurbopackBaseContext,\n module: Module,\n exports: Exports\n) {\n this.m = module\n // We need to store this here instead of accessing it from the module object to:\n // 1. Make it available to factories directly, since we rewrite `this` to\n // `__turbopack_context__.e` in CJS modules.\n // 2. Support async modules which rewrite `module.exports` to a promise, so we\n // can still access the original exports object from functions like\n // `esmExport`\n // Ideally we could find a new approach for async modules and drop this property altogether.\n this.e = exports\n}\nconst contextPrototype = Context.prototype as TurbopackBaseContext\n\ntype ModuleContextMap = Record\n\ninterface ModuleContextEntry {\n id: () => ModuleId\n module: () => any\n}\n\ninterface ModuleContext {\n // require call\n (moduleId: string): Exports | EsmNamespaceObject\n\n // async import call\n import(moduleId: string): Promise\n\n keys(): ModuleId[]\n\n resolve(moduleId: string): ModuleId\n}\n\ntype GetOrInstantiateModuleFromParent = (\n moduleId: M['id'],\n parentModule: M\n) => M\n\ndeclare function getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): Module\n\nconst hasOwnProperty = Object.prototype.hasOwnProperty\nconst toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag\n\nfunction defineProp(\n obj: any,\n name: PropertyKey,\n options: PropertyDescriptor & ThisType\n) {\n if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options)\n}\n\nfunction getOverwrittenModule(\n moduleCache: ModuleCache,\n id: ModuleId\n): Module {\n let module = moduleCache[id]\n if (!module) {\n if (createModuleWithDirectionFlag) {\n // set in development modes for hmr support\n module = createModuleWithDirection(id)\n } else {\n module = createModuleObject(id)\n }\n moduleCache[id] = module\n }\n return module\n}\n\n/**\n * Creates the module object. Only done here to ensure all module objects have the same shape.\n */\nfunction createModuleObject(id: ModuleId): Module {\n return {\n exports: {},\n error: undefined,\n id,\n namespaceObject: undefined,\n }\n}\n\nfunction createModuleWithDirection(id: ModuleId): ModuleWithDirection {\n return {\n exports: {},\n error: undefined,\n id,\n namespaceObject: undefined,\n parents: [],\n children: [],\n }\n}\n\ntype BindingTag = 0\nconst BindingTag_Value = 0 as BindingTag\n\n// an arbitrary sequence of bindings as\n// - a prop name\n// - BindingTag_Value, a value to be bound directly, or\n// - 1 or 2 functions to bind as getters and sdetters\ntype EsmBindings = Array<\n string | BindingTag | (() => unknown) | ((v: unknown) => void) | unknown\n>\n\n/**\n * Adds the getters to the exports object.\n */\nfunction esm(exports: Exports, bindings: EsmBindings) {\n defineProp(exports, '__esModule', { value: true })\n if (toStringTag) defineProp(exports, toStringTag, { value: 'Module' })\n let i = 0\n while (i < bindings.length) {\n const propName = bindings[i++] as string\n const tagOrFunction = bindings[i++]\n if (typeof tagOrFunction === 'number') {\n if (tagOrFunction === BindingTag_Value) {\n defineProp(exports, propName, {\n value: bindings[i++],\n enumerable: true,\n writable: false,\n })\n } else {\n throw new Error(`unexpected tag: ${tagOrFunction}`)\n }\n } else {\n const getterFn = tagOrFunction as () => unknown\n if (typeof bindings[i] === 'function') {\n const setterFn = bindings[i++] as (v: unknown) => void\n defineProp(exports, propName, {\n get: getterFn,\n set: setterFn,\n enumerable: true,\n })\n } else {\n defineProp(exports, propName, {\n get: getterFn,\n enumerable: true,\n })\n }\n }\n }\n Object.seal(exports)\n}\n\n/**\n * Makes the module an ESM with exports\n */\nfunction esmExport(\n this: TurbopackBaseContext,\n bindings: EsmBindings,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Module['exports']\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n module.namespaceObject = exports\n esm(exports, bindings)\n}\ncontextPrototype.s = esmExport\n\ntype ReexportedObjects = Record[]\nfunction ensureDynamicExports(\n module: Module,\n exports: Exports\n): ReexportedObjects {\n let reexportedObjects: ReexportedObjects | undefined =\n REEXPORTED_OBJECTS.get(module)\n\n if (!reexportedObjects) {\n REEXPORTED_OBJECTS.set(module, (reexportedObjects = []))\n module.exports = module.namespaceObject = new Proxy(exports, {\n get(target, prop) {\n if (\n hasOwnProperty.call(target, prop) ||\n prop === 'default' ||\n prop === '__esModule'\n ) {\n return Reflect.get(target, prop)\n }\n for (const obj of reexportedObjects!) {\n const value = Reflect.get(obj, prop)\n if (value !== undefined) return value\n }\n return undefined\n },\n ownKeys(target) {\n const keys = Reflect.ownKeys(target)\n for (const obj of reexportedObjects!) {\n for (const key of Reflect.ownKeys(obj)) {\n if (key !== 'default' && !keys.includes(key)) keys.push(key)\n }\n }\n return keys\n },\n })\n }\n return reexportedObjects\n}\n\n/**\n * Dynamically exports properties from an object\n */\nfunction dynamicExport(\n this: TurbopackBaseContext,\n object: Record,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Exports\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n const reexportedObjects = ensureDynamicExports(module, exports)\n\n if (typeof object === 'object' && object !== null) {\n reexportedObjects.push(object)\n }\n}\ncontextPrototype.j = dynamicExport\n\nfunction exportValue(\n this: TurbopackBaseContext,\n value: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = value\n}\ncontextPrototype.v = exportValue\n\nfunction exportNamespace(\n this: TurbopackBaseContext,\n namespace: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = module.namespaceObject = namespace\n}\ncontextPrototype.n = exportNamespace\n\nfunction createGetter(obj: Record, key: string | symbol) {\n return () => obj[key]\n}\n\n/**\n * @returns prototype of the object\n */\nconst getProto: (obj: any) => any = Object.getPrototypeOf\n ? (obj) => Object.getPrototypeOf(obj)\n : (obj) => obj.__proto__\n\n/** Prototypes that are not expanded for exports */\nconst LEAF_PROTOTYPES = [null, getProto({}), getProto([]), getProto(getProto)]\n\n/**\n * @param raw\n * @param ns\n * @param allowExportDefault\n * * `false`: will have the raw module as default export\n * * `true`: will have the default property as default export\n */\nfunction interopEsm(\n raw: Exports,\n ns: EsmNamespaceObject,\n allowExportDefault?: boolean\n) {\n const bindings: EsmBindings = []\n let defaultLocation = -1\n for (\n let current = raw;\n (typeof current === 'object' || typeof current === 'function') &&\n !LEAF_PROTOTYPES.includes(current);\n current = getProto(current)\n ) {\n for (const key of Object.getOwnPropertyNames(current)) {\n bindings.push(key, createGetter(raw, key))\n if (defaultLocation === -1 && key === 'default') {\n defaultLocation = bindings.length - 1\n }\n }\n }\n\n // this is not really correct\n // we should set the `default` getter if the imported module is a `.cjs file`\n if (!(allowExportDefault && defaultLocation >= 0)) {\n // Replace the binding with one for the namespace itself in order to preserve iteration order.\n if (defaultLocation >= 0) {\n // Replace the getter with the value\n bindings.splice(defaultLocation, 1, BindingTag_Value, raw)\n } else {\n bindings.push('default', BindingTag_Value, raw)\n }\n }\n\n esm(ns, bindings)\n return ns\n}\n\nfunction createNS(raw: Module['exports']): EsmNamespaceObject {\n if (typeof raw === 'function') {\n return function (this: any, ...args: any[]) {\n return raw.apply(this, args)\n }\n } else {\n return Object.create(null)\n }\n}\n\nfunction esmImport(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exclude {\n const module = getOrInstantiateModuleFromParent(id, this.m)\n\n // any ES module has to have `module.namespaceObject` defined.\n if (module.namespaceObject) return module.namespaceObject\n\n // only ESM can be an async module, so we don't need to worry about exports being a promise here.\n const raw = module.exports\n return (module.namespaceObject = interopEsm(\n raw,\n createNS(raw),\n raw && (raw as any).__esModule\n ))\n}\ncontextPrototype.i = esmImport\n\nfunction asyncLoader(\n this: TurbopackBaseContext,\n moduleId: ModuleId\n): Promise {\n const loader = this.r(moduleId) as (\n importFunction: EsmImport\n ) => Promise\n return loader(esmImport.bind(this))\n}\ncontextPrototype.A = asyncLoader\n\n// Add a simple runtime require so that environments without one can still pass\n// `typeof require` CommonJS checks so that exports are correctly registered.\nconst runtimeRequire =\n // @ts-ignore\n typeof require === 'function'\n ? // @ts-ignore\n require\n : function require() {\n throw new Error('Unexpected use of runtime require')\n }\ncontextPrototype.t = runtimeRequire\n\nfunction commonJsRequire(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exports {\n return getOrInstantiateModuleFromParent(id, this.m).exports\n}\ncontextPrototype.r = commonJsRequire\n\n/**\n * Remove fragments and query parameters since they are never part of the context map keys\n *\n * This matches how we parse patterns at resolving time. Arguably we should only do this for\n * strings passed to `import` but the resolve does it for `import` and `require` and so we do\n * here as well.\n */\nfunction parseRequest(request: string): string {\n // Per the URI spec fragments can contain `?` characters, so we should trim it off first\n // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5\n const hashIndex = request.indexOf('#')\n if (hashIndex !== -1) {\n request = request.substring(0, hashIndex)\n }\n\n const queryIndex = request.indexOf('?')\n if (queryIndex !== -1) {\n request = request.substring(0, queryIndex)\n }\n\n return request\n}\n/**\n * `require.context` and require/import expression runtime.\n */\nfunction moduleContext(map: ModuleContextMap): ModuleContext {\n function moduleContext(id: string): Exports {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].module()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.keys = (): string[] => {\n return Object.keys(map)\n }\n\n moduleContext.resolve = (id: string): ModuleId => {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].id()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.import = async (id: string) => {\n return await (moduleContext(id) as Promise)\n }\n\n return moduleContext\n}\ncontextPrototype.f = moduleContext\n\n/**\n * Returns the path of a chunk defined by its data.\n */\nfunction getChunkPath(chunkData: ChunkData): ChunkPath {\n return typeof chunkData === 'string' ? chunkData : chunkData.path\n}\n\nfunction isPromise(maybePromise: any): maybePromise is Promise {\n return (\n maybePromise != null &&\n typeof maybePromise === 'object' &&\n 'then' in maybePromise &&\n typeof maybePromise.then === 'function'\n )\n}\n\nfunction isAsyncModuleExt(obj: T): obj is AsyncModuleExt & T {\n return turbopackQueues in obj\n}\n\nfunction createPromise() {\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason?: any) => void\n\n const promise = new Promise((res, rej) => {\n reject = rej\n resolve = res\n })\n\n return {\n promise,\n resolve: resolve!,\n reject: reject!,\n }\n}\n\n// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map.\n// The CompressedModuleFactories format is\n// - 1 or more module ids\n// - a module factory function\n// So walking this is a little complex but the flat structure is also fast to\n// traverse, we can use `typeof` operators to distinguish the two cases.\nfunction installCompressedModuleFactories(\n chunkModules: CompressedModuleFactories,\n offset: number,\n moduleFactories: ModuleFactories,\n newModuleId?: (id: ModuleId) => void\n) {\n let i = offset\n while (i < chunkModules.length) {\n let end = i + 1\n // Find our factory function\n while (\n end < chunkModules.length &&\n typeof chunkModules[end] !== 'function'\n ) {\n end++\n }\n if (end === chunkModules.length) {\n throw new Error('malformed chunk format, expected a factory function')\n }\n\n // Install the factory for each module ID that doesn't already have one.\n // When some IDs in this group already have a factory, reuse that existing\n // group factory for the missing IDs to keep all IDs in the group consistent.\n // Otherwise, install the factory from this chunk.\n const moduleFactoryFn = chunkModules[end] as Function\n let existingGroupFactory: Function | undefined = undefined\n for (let j = i; j < end; j++) {\n const id = chunkModules[j] as ModuleId\n const existingFactory = moduleFactories.get(id)\n if (existingFactory) {\n existingGroupFactory = existingFactory\n break\n }\n }\n const factoryToInstall = existingGroupFactory ?? moduleFactoryFn\n\n let didInstallFactory = false\n for (let j = i; j < end; j++) {\n const id = chunkModules[j] as ModuleId\n if (!moduleFactories.has(id)) {\n if (!didInstallFactory) {\n if (factoryToInstall === moduleFactoryFn) {\n applyModuleFactoryName(moduleFactoryFn)\n }\n didInstallFactory = true\n }\n moduleFactories.set(id, factoryToInstall)\n newModuleId?.(id)\n }\n }\n i = end + 1 // end is pointing at the last factory advance to the next id or the end of the array.\n }\n}\n\n// everything below is adapted from webpack\n// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13\n\nconst turbopackQueues = Symbol('turbopack queues')\nconst turbopackExports = Symbol('turbopack exports')\nconst turbopackError = Symbol('turbopack error')\n\nconst enum QueueStatus {\n Unknown = -1,\n Unresolved = 0,\n Resolved = 1,\n}\n\ntype AsyncQueueFn = (() => void) & { queueCount: number }\ntype AsyncQueue = AsyncQueueFn[] & {\n status: QueueStatus\n}\n\nfunction resolveQueue(queue?: AsyncQueue) {\n if (queue && queue.status !== QueueStatus.Resolved) {\n queue.status = QueueStatus.Resolved\n queue.forEach((fn) => fn.queueCount--)\n queue.forEach((fn) => (fn.queueCount-- ? fn.queueCount++ : fn()))\n }\n}\n\ntype Dep = Exports | AsyncModulePromise | Promise\n\ntype AsyncModuleExt = {\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => void\n [turbopackExports]: Exports\n [turbopackError]?: any\n}\n\ntype AsyncModulePromise = Promise & AsyncModuleExt\n\nfunction wrapDeps(deps: Dep[]): AsyncModuleExt[] {\n return deps.map((dep): AsyncModuleExt => {\n if (dep !== null && typeof dep === 'object') {\n if (isAsyncModuleExt(dep)) return dep\n if (isPromise(dep)) {\n const queue: AsyncQueue = Object.assign([], {\n status: QueueStatus.Unresolved,\n })\n\n const obj: AsyncModuleExt = {\n [turbopackExports]: {},\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => fn(queue),\n }\n\n dep.then(\n (res) => {\n obj[turbopackExports] = res\n resolveQueue(queue)\n },\n (err) => {\n obj[turbopackError] = err\n resolveQueue(queue)\n }\n )\n\n return obj\n }\n }\n\n return {\n [turbopackExports]: dep,\n [turbopackQueues]: () => {},\n }\n })\n}\n\nfunction asyncModule(\n this: TurbopackBaseContext,\n body: (\n handleAsyncDependencies: (\n deps: Dep[]\n ) => Exports[] | Promise<() => Exports[]>,\n asyncResult: (err?: any) => void\n ) => void,\n hasAwait: boolean\n) {\n const module = this.m\n const queue: AsyncQueue | undefined = hasAwait\n ? Object.assign([], { status: QueueStatus.Unknown })\n : undefined\n\n const depQueues: Set = new Set()\n\n const { resolve, reject, promise: rawPromise } = createPromise()\n\n const promise: AsyncModulePromise = Object.assign(rawPromise, {\n [turbopackExports]: module.exports,\n [turbopackQueues]: (fn) => {\n queue && fn(queue)\n depQueues.forEach(fn)\n promise['catch'](() => {})\n },\n } satisfies AsyncModuleExt)\n\n const attributes: PropertyDescriptor = {\n get(): any {\n return promise\n },\n set(v: any) {\n // Calling `esmExport` leads to this.\n if (v !== promise) {\n promise[turbopackExports] = v\n }\n },\n }\n\n Object.defineProperty(module, 'exports', attributes)\n Object.defineProperty(module, 'namespaceObject', attributes)\n\n function handleAsyncDependencies(deps: Dep[]) {\n const currentDeps = wrapDeps(deps)\n\n const getResult = () =>\n currentDeps.map((d) => {\n if (d[turbopackError]) throw d[turbopackError]\n return d[turbopackExports]\n })\n\n const { promise, resolve } = createPromise<() => Exports[]>()\n\n const fn: AsyncQueueFn = Object.assign(() => resolve(getResult), {\n queueCount: 0,\n })\n\n function fnQueue(q: AsyncQueue) {\n if (q !== queue && !depQueues.has(q)) {\n depQueues.add(q)\n if (q && q.status === QueueStatus.Unresolved) {\n fn.queueCount++\n q.push(fn)\n }\n }\n }\n\n currentDeps.map((dep) => dep[turbopackQueues](fnQueue))\n\n return fn.queueCount ? promise : getResult()\n }\n\n function asyncResult(err?: any) {\n if (err) {\n reject((promise[turbopackError] = err))\n } else {\n resolve(promise[turbopackExports])\n }\n\n resolveQueue(queue)\n }\n\n body(handleAsyncDependencies, asyncResult)\n\n if (queue && queue.status === QueueStatus.Unknown) {\n queue.status = QueueStatus.Unresolved\n }\n}\ncontextPrototype.a = asyncModule\n\n/**\n * A pseudo \"fake\" URL object to resolve to its relative path.\n *\n * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this\n * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid\n * hydration mismatch.\n *\n * This is based on webpack's existing implementation:\n * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js\n */\nconst relativeURL = function relativeURL(this: any, inputUrl: string) {\n const realUrl = new URL(inputUrl, 'x:/')\n const values: Record = {}\n for (const key in realUrl) values[key] = (realUrl as any)[key]\n values.href = inputUrl\n values.pathname = inputUrl.replace(/[?#].*/, '')\n values.origin = values.protocol = ''\n values.toString = values.toJSON = (..._args: Array) => inputUrl\n for (const key in values)\n Object.defineProperty(this, key, {\n enumerable: true,\n configurable: true,\n value: values[key],\n })\n}\nrelativeURL.prototype = URL.prototype\ncontextPrototype.U = relativeURL\n\n/**\n * Utility function to ensure all variants of an enum are handled.\n */\nfunction invariant(never: never, computeMessage: (arg: any) => string): never {\n throw new Error(`Invariant: ${computeMessage(never)}`)\n}\n\n/**\n * Constructs an error message for when a module factory is not available.\n */\nfunction factoryNotAvailableMessage(\n moduleId: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): string {\n let instantiationReason: string\n switch (sourceType) {\n case SourceType.Runtime:\n instantiationReason = `as a runtime entry of chunk ${sourceData}`\n break\n case SourceType.Parent:\n instantiationReason = `because it was required from module ${sourceData}`\n break\n case SourceType.Update:\n instantiationReason = 'because of an HMR update'\n break\n default:\n invariant(\n sourceType,\n (sourceType) => `Unknown source type: ${sourceType}`\n )\n }\n return `Module ${moduleId} was instantiated ${instantiationReason}, but the module factory is not available.`\n}\n\n/**\n * A stub function to make `require` available but non-functional in ESM.\n */\nfunction requireStub(_moduleId: ModuleId): never {\n throw new Error('dynamic usage of require is not supported')\n}\ncontextPrototype.z = requireStub\n\n// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable.\ncontextPrototype.g = globalThis\n\ntype ContextConstructor = {\n new (module: Module, exports: Exports): TurbopackBaseContext\n}\n\nfunction applyModuleFactoryName(factory: Function) {\n // Give the module factory a nice name to improve stack traces.\n Object.defineProperty(factory, 'name', {\n value: 'module evaluation',\n })\n}\n"],"names":["SourceType","createModuleWithDirectionFlag","REEXPORTED_OBJECTS","WeakMap","Context","module","exports","m","e","contextPrototype","prototype","hasOwnProperty","Object","toStringTag","Symbol","defineProp","obj","name","options","call","defineProperty","getOverwrittenModule","moduleCache","id","createModuleWithDirection","createModuleObject","error","undefined","namespaceObject","parents","children","BindingTag_Value","esm","bindings","value","i","length","propName","tagOrFunction","enumerable","writable","Error","getterFn","setterFn","get","set","seal","esmExport","c","s","ensureDynamicExports","reexportedObjects","Proxy","target","prop","Reflect","ownKeys","keys","key","includes","push","dynamicExport","object","j","exportValue","v","exportNamespace","namespace","n","createGetter","getProto","getPrototypeOf","__proto__","LEAF_PROTOTYPES","interopEsm","raw","ns","allowExportDefault","defaultLocation","current","getOwnPropertyNames","splice","createNS","args","apply","create","esmImport","getOrInstantiateModuleFromParent","__esModule","asyncLoader","moduleId","loader","r","bind","A","runtimeRequire","require","require1","t","commonJsRequire","parseRequest","request","hashIndex","indexOf","substring","queryIndex","moduleContext","map","code","resolve","import","f","getChunkPath","chunkData","path","isPromise","maybePromise","then","isAsyncModuleExt","turbopackQueues","createPromise","reject","promise","Promise","res","rej","installCompressedModuleFactories","chunkModules","offset","moduleFactories","newModuleId","end","moduleFactoryFn","existingGroupFactory","existingFactory","factoryToInstall","didInstallFactory","has","applyModuleFactoryName","turbopackExports","turbopackError","resolveQueue","queue","status","forEach","fn","queueCount","wrapDeps","deps","dep","assign","err","asyncModule","body","hasAwait","depQueues","Set","rawPromise","attributes","handleAsyncDependencies","currentDeps","getResult","d","fnQueue","q","add","asyncResult","a","relativeURL","inputUrl","realUrl","URL","values","href","pathname","replace","origin","protocol","toString","toJSON","_args","configurable","U","invariant","never","computeMessage","factoryNotAvailableMessage","sourceType","sourceData","instantiationReason","requireStub","_moduleId","z","g","globalThis","factory"],"mappings":"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","ignoreList":[0]}}, + {"offset": {"line": 580, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/base-externals-utils.ts"],"sourcesContent":["/// \n\n/// A 'base' utilities to support runtime can have externals.\n/// Currently this is for node.js / edge runtime both.\n/// If a fn requires node.js specific behavior, it should be placed in `node-external-utils` instead.\n\nasync function externalImport(id: DependencySpecifier) {\n let raw\n try {\n raw = await import(id)\n } catch (err) {\n // TODO(alexkirsz) This can happen when a client-side module tries to load\n // an external module we don't provide a shim for (e.g. querystring, url).\n // For now, we fail semi-silently, but in the future this should be a\n // compilation error.\n throw new Error(`Failed to load external module ${id}: ${err}`)\n }\n\n if (raw && raw.__esModule && raw.default && 'default' in raw.default) {\n return interopEsm(raw.default, createNS(raw), true)\n }\n\n return raw\n}\ncontextPrototype.y = externalImport\n\nfunction externalRequire(\n id: ModuleId,\n thunk: () => any,\n esm: boolean = false\n): Exports | EsmNamespaceObject {\n let raw\n try {\n raw = thunk()\n } catch (err) {\n // TODO(alexkirsz) This can happen when a client-side module tries to load\n // an external module we don't provide a shim for (e.g. querystring, url).\n // For now, we fail semi-silently, but in the future this should be a\n // compilation error.\n throw new Error(`Failed to load external module ${id}: ${err}`)\n }\n\n if (!esm || raw.__esModule) {\n return raw\n }\n\n return interopEsm(raw, createNS(raw), true)\n}\n\nexternalRequire.resolve = (\n id: string,\n options?: {\n paths?: string[]\n }\n) => {\n return require.resolve(id, options)\n}\ncontextPrototype.x = externalRequire\n"],"names":["externalImport","id","raw","err","Error","__esModule","default","interopEsm","createNS","contextPrototype","y","externalRequire","thunk","esm","resolve","options","require","x"],"mappings":"AAAA,2DAA2D;AAE3D,6DAA6D;AAC7D,sDAAsD;AACtD,qGAAqG;AAErG,eAAeA,eAAeC,EAAuB;IACnD,IAAIC;IACJ,IAAI;QACFA,MAAM,MAAM,MAAM,CAACD;IACrB,EAAE,OAAOE,KAAK;QACZ,0EAA0E;QAC1E,0EAA0E;QAC1E,qEAAqE;QACrE,qBAAqB;QACrB,MAAM,IAAIC,MAAM,CAAC,+BAA+B,EAAEH,GAAG,EAAE,EAAEE,KAAK;IAChE;IAEA,IAAID,OAAOA,IAAIG,UAAU,IAAIH,IAAII,OAAO,IAAI,aAAaJ,IAAII,OAAO,EAAE;QACpE,OAAOC,WAAWL,IAAII,OAAO,EAAEE,SAASN,MAAM;IAChD;IAEA,OAAOA;AACT;AACAO,iBAAiBC,CAAC,GAAGV;AAErB,SAASW,gBACPV,EAAY,EACZW,KAAgB,EAChBC,MAAe,KAAK;IAEpB,IAAIX;IACJ,IAAI;QACFA,MAAMU;IACR,EAAE,OAAOT,KAAK;QACZ,0EAA0E;QAC1E,0EAA0E;QAC1E,qEAAqE;QACrE,qBAAqB;QACrB,MAAM,IAAIC,MAAM,CAAC,+BAA+B,EAAEH,GAAG,EAAE,EAAEE,KAAK;IAChE;IAEA,IAAI,CAACU,OAAOX,IAAIG,UAAU,EAAE;QAC1B,OAAOH;IACT;IAEA,OAAOK,WAAWL,KAAKM,SAASN,MAAM;AACxC;AAEAS,gBAAgBG,OAAO,GAAG,CACxBb,IACAc;IAIA,OAAOC,QAAQF,OAAO,CAACb,IAAIc;AAC7B;AACAN,iBAAiBQ,CAAC,GAAGN","ignoreList":[0]}}, + {"offset": {"line": 621, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/node-externals-utils.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\ndeclare var RUNTIME_PUBLIC_PATH: string\ndeclare var RELATIVE_ROOT_PATH: string\ndeclare var ASSET_PREFIX: string\n\nconst path = require('path')\n\nconst relativePathToRuntimeRoot = path.relative(RUNTIME_PUBLIC_PATH, '.')\n// Compute the relative path to the `distDir`.\nconst relativePathToDistRoot = path.join(\n relativePathToRuntimeRoot,\n RELATIVE_ROOT_PATH\n)\nconst RUNTIME_ROOT = path.resolve(__filename, relativePathToRuntimeRoot)\n// Compute the absolute path to the root, by stripping distDir from the absolute path to this file.\nconst ABSOLUTE_ROOT = path.resolve(__filename, relativePathToDistRoot)\n\n/**\n * Returns an absolute path to the given module path.\n * Module path should be relative, either path to a file or a directory.\n *\n * This fn allows to calculate an absolute path for some global static values, such as\n * `__dirname` or `import.meta.url` that Turbopack will not embeds in compile time.\n * See ImportMetaBinding::code_generation for the usage.\n */\nfunction resolveAbsolutePath(modulePath?: string): string {\n if (modulePath) {\n return path.join(ABSOLUTE_ROOT, modulePath)\n }\n return ABSOLUTE_ROOT\n}\nContext.prototype.P = resolveAbsolutePath\n"],"names":["path","require","relativePathToRuntimeRoot","relative","RUNTIME_PUBLIC_PATH","relativePathToDistRoot","join","RELATIVE_ROOT_PATH","RUNTIME_ROOT","resolve","__filename","ABSOLUTE_ROOT","resolveAbsolutePath","modulePath","Context","prototype","P"],"mappings":"AAAA,oDAAoD,GAMpD,MAAMA,OAAOC,QAAQ;AAErB,MAAMC,4BAA4BF,KAAKG,QAAQ,CAACC,qBAAqB;AACrE,8CAA8C;AAC9C,MAAMC,yBAAyBL,KAAKM,IAAI,CACtCJ,2BACAK;AAEF,MAAMC,eAAeR,KAAKS,OAAO,CAACC,YAAYR;AAC9C,mGAAmG;AACnG,MAAMS,gBAAgBX,KAAKS,OAAO,CAACC,YAAYL;AAE/C;;;;;;;CAOC,GACD,SAASO,oBAAoBC,UAAmB;IAC9C,IAAIA,YAAY;QACd,OAAOb,KAAKM,IAAI,CAACK,eAAeE;IAClC;IACA,OAAOF;AACT;AACAG,QAAQC,SAAS,CAACC,CAAC,GAAGJ","ignoreList":[0]}}, + {"offset": {"line": 642, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/node-wasm-utils.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\nfunction readWebAssemblyAsResponse(path: string) {\n const { createReadStream } = require('fs') as typeof import('fs')\n const { Readable } = require('stream') as typeof import('stream')\n\n const stream = createReadStream(path)\n\n // @ts-ignore unfortunately there's a slight type mismatch with the stream.\n return new Response(Readable.toWeb(stream), {\n headers: {\n 'content-type': 'application/wasm',\n },\n })\n}\n\nasync function compileWebAssemblyFromPath(\n path: string\n): Promise {\n const response = readWebAssemblyAsResponse(path)\n\n return await WebAssembly.compileStreaming(response)\n}\n\nasync function instantiateWebAssemblyFromPath(\n path: string,\n importsObj: WebAssembly.Imports\n): Promise {\n const response = readWebAssemblyAsResponse(path)\n\n const { instance } = await WebAssembly.instantiateStreaming(\n response,\n importsObj\n )\n\n return instance.exports\n}\n"],"names":["readWebAssemblyAsResponse","path","createReadStream","require","Readable","stream","Response","toWeb","headers","compileWebAssemblyFromPath","response","WebAssembly","compileStreaming","instantiateWebAssemblyFromPath","importsObj","instance","instantiateStreaming","exports"],"mappings":"AAAA,oDAAoD,GAEpD,2DAA2D;AAE3D,SAASA,0BAA0BC,IAAY;IAC7C,MAAM,EAAEC,gBAAgB,EAAE,GAAGC,QAAQ;IACrC,MAAM,EAAEC,QAAQ,EAAE,GAAGD,QAAQ;IAE7B,MAAME,SAASH,iBAAiBD;IAEhC,2EAA2E;IAC3E,OAAO,IAAIK,SAASF,SAASG,KAAK,CAACF,SAAS;QAC1CG,SAAS;YACP,gBAAgB;QAClB;IACF;AACF;AAEA,eAAeC,2BACbR,IAAY;IAEZ,MAAMS,WAAWV,0BAA0BC;IAE3C,OAAO,MAAMU,YAAYC,gBAAgB,CAACF;AAC5C;AAEA,eAAeG,+BACbZ,IAAY,EACZa,UAA+B;IAE/B,MAAMJ,WAAWV,0BAA0BC;IAE3C,MAAM,EAAEc,QAAQ,EAAE,GAAG,MAAMJ,YAAYK,oBAAoB,CACzDN,UACAI;IAGF,OAAOC,SAASE,OAAO;AACzB","ignoreList":[0]}}, + {"offset": {"line": 663, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/nodejs/runtime/runtime-base.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n/// \n/// \n/// \n/// \n\n/**\n * Base Node.js runtime shared between production and development.\n * Contains chunk loading, module caching, and other non-HMR functionality.\n */\n\nprocess.env.TURBOPACK = '1'\n\nconst url = require('url') as typeof import('url')\n\nconst moduleFactories: ModuleFactories = new Map()\nconst moduleCache: ModuleCache = Object.create(null)\n\n/**\n * Returns an absolute path to the given module's id.\n */\nfunction resolvePathFromModule(\n this: TurbopackBaseContext,\n moduleId: string\n): string {\n const exported = this.r(moduleId)\n const exportedPath = exported?.default ?? exported\n if (typeof exportedPath !== 'string') {\n return exported as any\n }\n\n const strippedAssetPrefix = exportedPath.slice(ASSET_PREFIX.length)\n const resolved = path.resolve(RUNTIME_ROOT, strippedAssetPrefix)\n\n return url.pathToFileURL(resolved).href\n}\n\n/**\n * Exports a URL value. No suffix is added in Node.js runtime.\n */\nfunction exportUrl(\n this: TurbopackBaseContext,\n urlValue: string,\n id: ModuleId | undefined\n) {\n exportValue.call(this, urlValue, id)\n}\n\nfunction loadRuntimeChunk(sourcePath: ChunkPath, chunkData: ChunkData): void {\n if (typeof chunkData === 'string') {\n loadRuntimeChunkPath(sourcePath, chunkData)\n } else {\n loadRuntimeChunkPath(sourcePath, chunkData.path)\n }\n}\n\nconst loadedChunks = new Set()\nconst unsupportedLoadChunk = Promise.resolve(undefined)\nconst loadedChunk: Promise = Promise.resolve(undefined)\nconst chunkCache = new Map>()\n\nfunction clearChunkCache() {\n chunkCache.clear()\n loadedChunks.clear()\n}\n\nfunction loadRuntimeChunkPath(\n sourcePath: ChunkPath,\n chunkPath: ChunkPath\n): void {\n if (!isJs(chunkPath)) {\n // We only support loading JS chunks in Node.js.\n // This branch can be hit when trying to load a CSS chunk.\n return\n }\n\n if (loadedChunks.has(chunkPath)) {\n return\n }\n\n try {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n const chunkModules: CompressedModuleFactories = require(resolved)\n installCompressedModuleFactories(chunkModules, 0, moduleFactories)\n loadedChunks.add(chunkPath)\n } catch (cause) {\n let errorMessage = `Failed to load chunk ${chunkPath}`\n\n if (sourcePath) {\n errorMessage += ` from runtime for chunk ${sourcePath}`\n }\n\n const error = new Error(errorMessage, { cause })\n error.name = 'ChunkLoadError'\n throw error\n }\n}\n\nfunction loadChunkAsync(\n this: TurbopackBaseContext,\n chunkData: ChunkData\n): Promise {\n const chunkPath = typeof chunkData === 'string' ? chunkData : chunkData.path\n if (!isJs(chunkPath)) {\n // We only support loading JS chunks in Node.js.\n // This branch can be hit when trying to load a CSS chunk.\n return unsupportedLoadChunk\n }\n\n let entry = chunkCache.get(chunkPath)\n if (entry === undefined) {\n try {\n // resolve to an absolute path to simplify `require` handling\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n // TODO: consider switching to `import()` to enable concurrent chunk loading and async file io\n // However this is incompatible with hot reloading (since `import` doesn't use the require cache)\n const chunkModules: CompressedModuleFactories = require(resolved)\n installCompressedModuleFactories(chunkModules, 0, moduleFactories)\n entry = loadedChunk\n } catch (cause) {\n const errorMessage = `Failed to load chunk ${chunkPath} from module ${this.m.id}`\n const error = new Error(errorMessage, { cause })\n error.name = 'ChunkLoadError'\n\n // Cache the failure promise, future requests will also get this same rejection\n entry = Promise.reject(error)\n }\n chunkCache.set(chunkPath, entry)\n }\n // TODO: Return an instrumented Promise that React can use instead of relying on referential equality.\n return entry\n}\ncontextPrototype.l = loadChunkAsync\n\nfunction loadChunkAsyncByUrl(\n this: TurbopackBaseContext,\n chunkUrl: string\n) {\n const path = url.fileURLToPath(new URL(chunkUrl, RUNTIME_ROOT)) as ChunkPath\n return loadChunkAsync.call(this, path)\n}\ncontextPrototype.L = loadChunkAsyncByUrl\n\nfunction loadWebAssembly(\n chunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module,\n imports: WebAssembly.Imports\n) {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n\n return instantiateWebAssemblyFromPath(resolved, imports)\n}\ncontextPrototype.w = loadWebAssembly\n\nfunction loadWebAssemblyModule(\n chunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module\n) {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n\n return compileWebAssemblyFromPath(resolved)\n}\ncontextPrototype.u = loadWebAssemblyModule\n\n/**\n * Creates a Node.js worker thread by instantiating the given WorkerConstructor\n * with the appropriate path and options, including forwarded globals.\n *\n * @param WorkerConstructor The Worker constructor from worker_threads\n * @param workerPath Path to the worker entry chunk\n * @param workerOptions options to pass to the Worker constructor (optional)\n */\nfunction createWorker(\n WorkerConstructor: { new (path: string, options?: object): unknown },\n workerPath: string,\n workerOptions?: { workerData?: unknown; [key: string]: unknown }\n): unknown {\n // Build the forwarded globals object\n const forwardedGlobals: Record = {}\n for (const name of WORKER_FORWARDED_GLOBALS) {\n forwardedGlobals[name] = (globalThis as Record)[name]\n }\n\n // Merge workerData with forwarded globals\n const existingWorkerData = workerOptions?.workerData || {}\n const options = {\n ...workerOptions,\n workerData: {\n ...(typeof existingWorkerData === 'object' ? existingWorkerData : {}),\n __turbopack_globals__: forwardedGlobals,\n },\n }\n\n return new WorkerConstructor(workerPath, options)\n}\n\nconst regexJsUrl = /\\.js(?:\\?[^#]*)?(?:#.*)?$/\n/**\n * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment.\n */\nfunction isJs(chunkUrlOrPath: ChunkUrl | ChunkPath): boolean {\n return regexJsUrl.test(chunkUrlOrPath)\n}\n"],"names":["process","env","TURBOPACK","url","require","moduleFactories","Map","moduleCache","Object","create","resolvePathFromModule","moduleId","exported","r","exportedPath","default","strippedAssetPrefix","slice","ASSET_PREFIX","length","resolved","path","resolve","RUNTIME_ROOT","pathToFileURL","href","exportUrl","urlValue","id","exportValue","call","loadRuntimeChunk","sourcePath","chunkData","loadRuntimeChunkPath","loadedChunks","Set","unsupportedLoadChunk","Promise","undefined","loadedChunk","chunkCache","clearChunkCache","clear","chunkPath","isJs","has","chunkModules","installCompressedModuleFactories","add","cause","errorMessage","error","Error","name","loadChunkAsync","entry","get","m","reject","set","contextPrototype","l","loadChunkAsyncByUrl","chunkUrl","path1","fileURLToPath","URL","L","loadWebAssembly","_edgeModule","imports","instantiateWebAssemblyFromPath","w","loadWebAssemblyModule","compileWebAssemblyFromPath","u","createWorker","WorkerConstructor","workerPath","workerOptions","forwardedGlobals","WORKER_FORWARDED_GLOBALS","globalThis","existingWorkerData","workerData","options","__turbopack_globals__","regexJsUrl","chunkUrlOrPath","test"],"mappings":"AAAA,oDAAoD,GAEpD,8DAA8D;AAC9D,kEAAkE;AAClE,kEAAkE;AAClE,6DAA6D;AAC7D,8CAA8C;AAE9C;;;CAGC,GAEDA,QAAQC,GAAG,CAACC,SAAS,GAAG;AAExB,MAAMC,MAAMC,QAAQ;AAEpB,MAAMC,kBAAmC,IAAIC;AAC7C,MAAMC,cAAmCC,OAAOC,MAAM,CAAC;AAEvD;;CAEC,GACD,SAASC,sBAEPC,QAAgB;IAEhB,MAAMC,WAAW,IAAI,CAACC,CAAC,CAACF;IACxB,MAAMG,eAAeF,UAAUG,WAAWH;IAC1C,IAAI,OAAOE,iBAAiB,UAAU;QACpC,OAAOF;IACT;IAEA,MAAMI,sBAAsBF,aAAaG,KAAK,CAACC,aAAaC,MAAM;IAClE,MAAMC,WAAWC,KAAKC,OAAO,CAACC,cAAcP;IAE5C,OAAOb,IAAIqB,aAAa,CAACJ,UAAUK,IAAI;AACzC;AAEA;;CAEC,GACD,SAASC,UAEPC,QAAgB,EAChBC,EAAwB;IAExBC,YAAYC,IAAI,CAAC,IAAI,EAAEH,UAAUC;AACnC;AAEA,SAASG,iBAAiBC,UAAqB,EAAEC,SAAoB;IACnE,IAAI,OAAOA,cAAc,UAAU;QACjCC,qBAAqBF,YAAYC;IACnC,OAAO;QACLC,qBAAqBF,YAAYC,UAAUZ,IAAI;IACjD;AACF;AAEA,MAAMc,eAAe,IAAIC;AACzB,MAAMC,uBAAuBC,QAAQhB,OAAO,CAACiB;AAC7C,MAAMC,cAA6BF,QAAQhB,OAAO,CAACiB;AACnD,MAAME,aAAa,IAAInC;AAEvB,SAASoC;IACPD,WAAWE,KAAK;IAChBR,aAAaQ,KAAK;AACpB;AAEA,SAAST,qBACPF,UAAqB,EACrBY,SAAoB;IAEpB,IAAI,CAACC,KAAKD,YAAY;QACpB,gDAAgD;QAChD,0DAA0D;QAC1D;IACF;IAEA,IAAIT,aAAaW,GAAG,CAACF,YAAY;QAC/B;IACF;IAEA,IAAI;QACF,MAAMxB,WAAWC,KAAKC,OAAO,CAACC,cAAcqB;QAC5C,MAAMG,eAA0C3C,QAAQgB;QACxD4B,iCAAiCD,cAAc,GAAG1C;QAClD8B,aAAac,GAAG,CAACL;IACnB,EAAE,OAAOM,OAAO;QACd,IAAIC,eAAe,CAAC,qBAAqB,EAAEP,WAAW;QAEtD,IAAIZ,YAAY;YACdmB,gBAAgB,CAAC,wBAAwB,EAAEnB,YAAY;QACzD;QAEA,MAAMoB,QAAQ,IAAIC,MAAMF,cAAc;YAAED;QAAM;QAC9CE,MAAME,IAAI,GAAG;QACb,MAAMF;IACR;AACF;AAEA,SAASG,eAEPtB,SAAoB;IAEpB,MAAMW,YAAY,OAAOX,cAAc,WAAWA,YAAYA,UAAUZ,IAAI;IAC5E,IAAI,CAACwB,KAAKD,YAAY;QACpB,gDAAgD;QAChD,0DAA0D;QAC1D,OAAOP;IACT;IAEA,IAAImB,QAAQf,WAAWgB,GAAG,CAACb;IAC3B,IAAIY,UAAUjB,WAAW;QACvB,IAAI;YACF,6DAA6D;YAC7D,MAAMnB,WAAWC,KAAKC,OAAO,CAACC,cAAcqB;YAC5C,8FAA8F;YAC9F,iGAAiG;YACjG,MAAMG,eAA0C3C,QAAQgB;YACxD4B,iCAAiCD,cAAc,GAAG1C;YAClDmD,QAAQhB;QACV,EAAE,OAAOU,OAAO;YACd,MAAMC,eAAe,CAAC,qBAAqB,EAAEP,UAAU,aAAa,EAAE,IAAI,CAACc,CAAC,CAAC9B,EAAE,EAAE;YACjF,MAAMwB,QAAQ,IAAIC,MAAMF,cAAc;gBAAED;YAAM;YAC9CE,MAAME,IAAI,GAAG;YAEb,+EAA+E;YAC/EE,QAAQlB,QAAQqB,MAAM,CAACP;QACzB;QACAX,WAAWmB,GAAG,CAAChB,WAAWY;IAC5B;IACA,sGAAsG;IACtG,OAAOA;AACT;AACAK,iBAAiBC,CAAC,GAAGP;AAErB,SAASQ,oBAEPC,QAAgB;IAEhB,MAAMC,QAAO9D,IAAI+D,aAAa,CAAC,IAAIC,IAAIH,UAAUzC;IACjD,OAAOgC,eAAezB,IAAI,CAAC,IAAI,EAAEmC;AACnC;AACAJ,iBAAiBO,CAAC,GAAGL;AAErB,SAASM,gBACPzB,SAAoB,EACpB0B,WAAqC,EACrCC,OAA4B;IAE5B,MAAMnD,WAAWC,KAAKC,OAAO,CAACC,cAAcqB;IAE5C,OAAO4B,+BAA+BpD,UAAUmD;AAClD;AACAV,iBAAiBY,CAAC,GAAGJ;AAErB,SAASK,sBACP9B,SAAoB,EACpB0B,WAAqC;IAErC,MAAMlD,WAAWC,KAAKC,OAAO,CAACC,cAAcqB;IAE5C,OAAO+B,2BAA2BvD;AACpC;AACAyC,iBAAiBe,CAAC,GAAGF;AAErB;;;;;;;CAOC,GACD,SAASG,aACPC,iBAAoE,EACpEC,UAAkB,EAClBC,aAAgE;IAEhE,qCAAqC;IACrC,MAAMC,mBAA4C,CAAC;IACnD,KAAK,MAAM3B,QAAQ4B,yBAA0B;QAC3CD,gBAAgB,CAAC3B,KAAK,GAAG,AAAC6B,UAAsC,CAAC7B,KAAK;IACxE;IAEA,0CAA0C;IAC1C,MAAM8B,qBAAqBJ,eAAeK,cAAc,CAAC;IACzD,MAAMC,UAAU;QACd,GAAGN,aAAa;QAChBK,YAAY;YACV,GAAI,OAAOD,uBAAuB,WAAWA,qBAAqB,CAAC,CAAC;YACpEG,uBAAuBN;QACzB;IACF;IAEA,OAAO,IAAIH,kBAAkBC,YAAYO;AAC3C;AAEA,MAAME,aAAa;AACnB;;CAEC,GACD,SAAS3C,KAAK4C,cAAoC;IAChD,OAAOD,WAAWE,IAAI,CAACD;AACzB","ignoreList":[0]}}, + {"offset": {"line": 810, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/nodejs/runtime/build-base.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\n/**\n * Production Node.js runtime.\n * Uses ModuleWithDirection and simple module instantiation without HMR support.\n */\n\n// moduleCache and moduleFactories are declared in runtime-base.ts\n\n// this is read in runtime-utils.ts so it creates a module with direction for hmr\ncreateModuleWithDirectionFlag = true\n\ninterface TurbopackNodeBuildContext\n extends TurbopackBaseContext {\n R: ResolvePathFromModule\n x: ExternalRequire\n y: ExternalImport\n C: typeof clearChunkCache\n}\n\nconst nodeContextPrototype = Context.prototype as TurbopackNodeBuildContext\n\nnodeContextPrototype.q = exportUrl\nnodeContextPrototype.M = moduleFactories\n// Cast moduleCache to ModuleWithDirection for production mode\nnodeContextPrototype.c = moduleCache as ModuleCache\nnodeContextPrototype.R = resolvePathFromModule\nnodeContextPrototype.b = createWorker\nnodeContextPrototype.C = clearChunkCache\n\nfunction instantiateModule(\n id: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): ModuleWithDirection {\n const moduleFactory = moduleFactories.get(id)\n if (typeof moduleFactory !== 'function') {\n // This can happen if modules incorrectly handle HMR disposes/updates,\n // e.g. when they keep a `setTimeout` around which still executes old code\n // and contains e.g. a `require(\"something\")` call.\n throw new Error(factoryNotAvailableMessage(id, sourceType, sourceData))\n }\n\n const module: ModuleWithDirection = createModuleWithDirection(id)\n const exports = module.exports\n moduleCache[id] = module\n\n const context =\n new (Context as any as ContextConstructor)(\n module,\n exports\n )\n // NOTE(alexkirsz) This can fail when the module encounters a runtime error.\n try {\n moduleFactory(context, module, exports)\n } catch (error) {\n module.error = error as any\n throw error\n }\n\n ;(module as any).loaded = true\n if (module.namespaceObject && module.exports !== module.namespaceObject) {\n // in case of a circular dependency: cjs1 -> esm2 -> cjs1\n interopEsm(module.exports, module.namespaceObject)\n }\n\n return module\n}\n\n/**\n * Retrieves a module from the cache, or instantiate it if it is not cached.\n */\n// @ts-ignore\nfunction getOrInstantiateModuleFromParent(\n id: ModuleId,\n sourceModule: ModuleWithDirection\n): ModuleWithDirection {\n const module = moduleCache[id]\n\n if (module) {\n if (module.error) {\n throw module.error\n }\n\n return module\n }\n\n return instantiateModule(id, SourceType.Parent, sourceModule.id)\n}\n\n/**\n * Instantiates a runtime module.\n */\nfunction instantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): ModuleWithDirection {\n return instantiateModule(moduleId, SourceType.Runtime, chunkPath)\n}\n\n/**\n * Retrieves a module from the cache, or instantiate it as a runtime module if it is not cached.\n */\n// @ts-ignore TypeScript doesn't separate this module space from the browser runtime\nfunction getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): ModuleWithDirection {\n const module = moduleCache[moduleId]\n\n if (module) {\n if (module.error) {\n throw module.error\n }\n return module\n }\n\n return instantiateRuntimeModule(chunkPath, moduleId)\n}\n\nmodule.exports = (sourcePath: ChunkPath) => ({\n m: (id: ModuleId) => getOrInstantiateRuntimeModule(sourcePath, id),\n c: (chunkData: ChunkData) => loadRuntimeChunk(sourcePath, chunkData),\n})\n"],"names":["createModuleWithDirectionFlag","nodeContextPrototype","Context","prototype","q","exportUrl","M","moduleFactories","c","moduleCache","R","resolvePathFromModule","b","createWorker","C","clearChunkCache","instantiateModule","id","sourceType","sourceData","moduleFactory","get","Error","factoryNotAvailableMessage","module1","createModuleWithDirection","exports","context","error","loaded","namespaceObject","interopEsm","getOrInstantiateModuleFromParent","sourceModule","SourceType","Parent","instantiateRuntimeModule","chunkPath","moduleId","Runtime","getOrInstantiateRuntimeModule","module","sourcePath","m","chunkData","loadRuntimeChunk"],"mappings":"AAAA,oDAAoD,GAEpD,0CAA0C;AAE1C;;;CAGC,GAED,kEAAkE;AAElE,iFAAiF;AACjFA,gCAAgC;AAUhC,MAAMC,uBAAuBC,QAAQC,SAAS;AAE9CF,qBAAqBG,CAAC,GAAGC;AACzBJ,qBAAqBK,CAAC,GAAGC;AACzB,8DAA8D;AAC9DN,qBAAqBO,CAAC,GAAGC;AACzBR,qBAAqBS,CAAC,GAAGC;AACzBV,qBAAqBW,CAAC,GAAGC;AACzBZ,qBAAqBa,CAAC,GAAGC;AAEzB,SAASC,kBACPC,EAAY,EACZC,UAAsB,EACtBC,UAAsB;IAEtB,MAAMC,gBAAgBb,gBAAgBc,GAAG,CAACJ;IAC1C,IAAI,OAAOG,kBAAkB,YAAY;QACvC,sEAAsE;QACtE,0EAA0E;QAC1E,mDAAmD;QACnD,MAAM,IAAIE,MAAMC,2BAA2BN,IAAIC,YAAYC;IAC7D;IAEA,MAAMK,UAA8BC,0BAA0BR;IAC9D,MAAMS,UAAUF,QAAOE,OAAO;IAC9BjB,WAAW,CAACQ,GAAG,GAAGO;IAElB,MAAMG,UACJ,IAAKzB,QACHsB,SACAE;IAEJ,4EAA4E;IAC5E,IAAI;QACFN,cAAcO,SAASH,SAAQE;IACjC,EAAE,OAAOE,OAAO;QACdJ,QAAOI,KAAK,GAAGA;QACf,MAAMA;IACR;;IAEEJ,QAAeK,MAAM,GAAG;IAC1B,IAAIL,QAAOM,eAAe,IAAIN,QAAOE,OAAO,KAAKF,QAAOM,eAAe,EAAE;QACvE,yDAAyD;QACzDC,WAAWP,QAAOE,OAAO,EAAEF,QAAOM,eAAe;IACnD;IAEA,OAAON;AACT;AAEA;;CAEC,GACD,aAAa;AACb,SAASQ,iCACPf,EAAY,EACZgB,YAAiC;IAEjC,MAAMT,UAASf,WAAW,CAACQ,GAAG;IAE9B,IAAIO,SAAQ;QACV,IAAIA,QAAOI,KAAK,EAAE;YAChB,MAAMJ,QAAOI,KAAK;QACpB;QAEA,OAAOJ;IACT;IAEA,OAAOR,kBAAkBC,IAAIiB,WAAWC,MAAM,EAAEF,aAAahB,EAAE;AACjE;AAEA;;CAEC,GACD,SAASmB,yBACPC,SAAoB,EACpBC,QAAkB;IAElB,OAAOtB,kBAAkBsB,UAAUJ,WAAWK,OAAO,EAAEF;AACzD;AAEA;;CAEC,GACD,oFAAoF;AACpF,SAASG,8BACPH,SAAoB,EACpBC,QAAkB;IAElB,MAAMd,UAASf,WAAW,CAAC6B,SAAS;IAEpC,IAAId,SAAQ;QACV,IAAIA,QAAOI,KAAK,EAAE;YAChB,MAAMJ,QAAOI,KAAK;QACpB;QACA,OAAOJ;IACT;IAEA,OAAOY,yBAAyBC,WAAWC;AAC7C;AAEAG,OAAOf,OAAO,GAAG,CAACgB,aAA0B,CAAC;QAC3CC,GAAG,CAAC1B,KAAiBuB,8BAA8BE,YAAYzB;QAC/DT,GAAG,CAACoC,YAAyBC,iBAAiBH,YAAYE;IAC5D,CAAC","ignoreList":[0]}}] +} \ No newline at end of file diff --git a/.next/build/chunks/node_modules_13sb.px._.js b/.next/build/chunks/node_modules_13sb.px._.js new file mode 100644 index 0000000..b12159f --- /dev/null +++ b/.next/build/chunks/node_modules_13sb.px._.js @@ -0,0 +1,6824 @@ +module.exports = [ +"[project]/node_modules/picocolors/picocolors.js [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => { + +let p = process || {}, argv = p.argv || [], env = p.env || {}; +let isColorSupported = !(!!env.NO_COLOR || argv.includes("--no-color")) && (!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || (p.stdout || {}).isTTY && env.TERM !== "dumb" || !!env.CI); +let formatter = (open, close, replace = open)=>(input)=>{ + let string = "" + input, index = string.indexOf(close, open.length); + return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close; + }; +let replaceClose = (string, close, replace, index)=>{ + let result = "", cursor = 0; + do { + result += string.substring(cursor, index) + replace; + cursor = index + close.length; + index = string.indexOf(close, cursor); + }while (~index) + return result + string.substring(cursor); +}; +let createColors = (enabled = isColorSupported)=>{ + let f = enabled ? formatter : ()=>String; + return { + isColorSupported: enabled, + reset: f("\x1b[0m", "\x1b[0m"), + bold: f("\x1b[1m", "\x1b[22m", "\x1b[22m\x1b[1m"), + dim: f("\x1b[2m", "\x1b[22m", "\x1b[22m\x1b[2m"), + italic: f("\x1b[3m", "\x1b[23m"), + underline: f("\x1b[4m", "\x1b[24m"), + inverse: f("\x1b[7m", "\x1b[27m"), + hidden: f("\x1b[8m", "\x1b[28m"), + strikethrough: f("\x1b[9m", "\x1b[29m"), + black: f("\x1b[30m", "\x1b[39m"), + red: f("\x1b[31m", "\x1b[39m"), + green: f("\x1b[32m", "\x1b[39m"), + yellow: f("\x1b[33m", "\x1b[39m"), + blue: f("\x1b[34m", "\x1b[39m"), + magenta: f("\x1b[35m", "\x1b[39m"), + cyan: f("\x1b[36m", "\x1b[39m"), + white: f("\x1b[37m", "\x1b[39m"), + gray: f("\x1b[90m", "\x1b[39m"), + bgBlack: f("\x1b[40m", "\x1b[49m"), + bgRed: f("\x1b[41m", "\x1b[49m"), + bgGreen: f("\x1b[42m", "\x1b[49m"), + bgYellow: f("\x1b[43m", "\x1b[49m"), + bgBlue: f("\x1b[44m", "\x1b[49m"), + bgMagenta: f("\x1b[45m", "\x1b[49m"), + bgCyan: f("\x1b[46m", "\x1b[49m"), + bgWhite: f("\x1b[47m", "\x1b[49m"), + blackBright: f("\x1b[90m", "\x1b[39m"), + redBright: f("\x1b[91m", "\x1b[39m"), + greenBright: f("\x1b[92m", "\x1b[39m"), + yellowBright: f("\x1b[93m", "\x1b[39m"), + blueBright: f("\x1b[94m", "\x1b[39m"), + magentaBright: f("\x1b[95m", "\x1b[39m"), + cyanBright: f("\x1b[96m", "\x1b[39m"), + whiteBright: f("\x1b[97m", "\x1b[39m"), + bgBlackBright: f("\x1b[100m", "\x1b[49m"), + bgRedBright: f("\x1b[101m", "\x1b[49m"), + bgGreenBright: f("\x1b[102m", "\x1b[49m"), + bgYellowBright: f("\x1b[103m", "\x1b[49m"), + bgBlueBright: f("\x1b[104m", "\x1b[49m"), + bgMagentaBright: f("\x1b[105m", "\x1b[49m"), + bgCyanBright: f("\x1b[106m", "\x1b[49m"), + bgWhiteBright: f("\x1b[107m", "\x1b[49m") + }; +}; +module.exports = createColors(); +module.exports.createColors = createColors; +}), +"[project]/node_modules/postcss/lib/tokenize.js [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => { +"use strict"; + +const SINGLE_QUOTE = "'".charCodeAt(0); +const DOUBLE_QUOTE = '"'.charCodeAt(0); +const BACKSLASH = '\\'.charCodeAt(0); +const SLASH = '/'.charCodeAt(0); +const NEWLINE = '\n'.charCodeAt(0); +const SPACE = ' '.charCodeAt(0); +const FEED = '\f'.charCodeAt(0); +const TAB = '\t'.charCodeAt(0); +const CR = '\r'.charCodeAt(0); +const OPEN_SQUARE = '['.charCodeAt(0); +const CLOSE_SQUARE = ']'.charCodeAt(0); +const OPEN_PARENTHESES = '('.charCodeAt(0); +const CLOSE_PARENTHESES = ')'.charCodeAt(0); +const OPEN_CURLY = '{'.charCodeAt(0); +const CLOSE_CURLY = '}'.charCodeAt(0); +const SEMICOLON = ';'.charCodeAt(0); +const ASTERISK = '*'.charCodeAt(0); +const COLON = ':'.charCodeAt(0); +const AT = '@'.charCodeAt(0); +const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g; +const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g; +const RE_BAD_BRACKET = /.[\r\n"'(/\\]/; +const RE_HEX_ESCAPE = /[\da-f]/i; +module.exports = function tokenizer(input, options = {}) { + let css = input.css.valueOf(); + let ignore = options.ignoreErrors; + let code, content, escape, next, quote; + let currentToken, escaped, escapePos, n, prev; + let length = css.length; + let pos = 0; + let buffer = []; + let returned = []; + let lastBadParen = -1; + function position() { + return pos; + } + function unclosed(what) { + throw input.error('Unclosed ' + what, pos); + } + function endOfFile() { + return returned.length === 0 && pos >= length; + } + function nextToken(opts) { + if (returned.length) return returned.pop(); + if (pos >= length) return; + let ignoreUnclosed = opts ? opts.ignoreUnclosed : false; + code = css.charCodeAt(pos); + switch(code){ + case NEWLINE: + case SPACE: + case TAB: + case CR: + case FEED: + { + next = pos; + do { + next += 1; + code = css.charCodeAt(next); + }while (code === SPACE || code === NEWLINE || code === TAB || code === CR || code === FEED) + currentToken = [ + 'space', + css.slice(pos, next) + ]; + pos = next - 1; + break; + } + case OPEN_SQUARE: + case CLOSE_SQUARE: + case OPEN_CURLY: + case CLOSE_CURLY: + case COLON: + case SEMICOLON: + case CLOSE_PARENTHESES: + { + let controlChar = String.fromCharCode(code); + currentToken = [ + controlChar, + controlChar, + pos + ]; + break; + } + case OPEN_PARENTHESES: + { + prev = buffer.length ? buffer.pop()[1] : ''; + n = css.charCodeAt(pos + 1); + if (prev === 'url' && n !== SINGLE_QUOTE && n !== DOUBLE_QUOTE && n !== SPACE && n !== NEWLINE && n !== TAB && n !== FEED && n !== CR) { + next = pos; + do { + escaped = false; + next = css.indexOf(')', next + 1); + if (next === -1) { + if (ignore || ignoreUnclosed) { + next = pos; + break; + } else { + unclosed('bracket'); + } + } + escapePos = next; + while(css.charCodeAt(escapePos - 1) === BACKSLASH){ + escapePos -= 1; + escaped = !escaped; + } + }while (escaped) + currentToken = [ + 'brackets', + css.slice(pos, next + 1), + pos, + next + ]; + pos = next; + } else if (pos <= lastBadParen) { + currentToken = [ + '(', + '(', + pos + ]; + } else { + next = css.indexOf(')', pos + 1); + content = css.slice(pos, next + 1); + if (next === -1 || RE_BAD_BRACKET.test(content)) { + lastBadParen = next === -1 ? length : next; + currentToken = [ + '(', + '(', + pos + ]; + } else { + currentToken = [ + 'brackets', + content, + pos, + next + ]; + pos = next; + } + } + break; + } + case SINGLE_QUOTE: + case DOUBLE_QUOTE: + { + quote = code === SINGLE_QUOTE ? "'" : '"'; + next = pos; + do { + escaped = false; + next = css.indexOf(quote, next + 1); + if (next === -1) { + if (ignore || ignoreUnclosed) { + next = pos + 1; + break; + } else { + unclosed('string'); + } + } + escapePos = next; + while(css.charCodeAt(escapePos - 1) === BACKSLASH){ + escapePos -= 1; + escaped = !escaped; + } + }while (escaped) + currentToken = [ + 'string', + css.slice(pos, next + 1), + pos, + next + ]; + pos = next; + break; + } + case AT: + { + RE_AT_END.lastIndex = pos + 1; + RE_AT_END.test(css); + if (RE_AT_END.lastIndex === 0) { + next = css.length - 1; + } else { + next = RE_AT_END.lastIndex - 2; + } + currentToken = [ + 'at-word', + css.slice(pos, next + 1), + pos, + next + ]; + pos = next; + break; + } + case BACKSLASH: + { + next = pos; + escape = true; + while(css.charCodeAt(next + 1) === BACKSLASH){ + next += 1; + escape = !escape; + } + code = css.charCodeAt(next + 1); + if (escape && code !== SLASH && code !== SPACE && code !== NEWLINE && code !== TAB && code !== CR && code !== FEED) { + next += 1; + if (RE_HEX_ESCAPE.test(css.charAt(next))) { + while(RE_HEX_ESCAPE.test(css.charAt(next + 1))){ + next += 1; + } + if (css.charCodeAt(next + 1) === SPACE) { + next += 1; + } + } + } + currentToken = [ + 'word', + css.slice(pos, next + 1), + pos, + next + ]; + pos = next; + break; + } + default: + { + if (code === SLASH && css.charCodeAt(pos + 1) === ASTERISK) { + next = css.indexOf('*/', pos + 2) + 1; + if (next === 0) { + if (ignore || ignoreUnclosed) { + next = css.length; + } else { + unclosed('comment'); + } + } + currentToken = [ + 'comment', + css.slice(pos, next + 1), + pos, + next + ]; + pos = next; + } else { + RE_WORD_END.lastIndex = pos + 1; + RE_WORD_END.test(css); + if (RE_WORD_END.lastIndex === 0) { + next = css.length - 1; + } else { + next = RE_WORD_END.lastIndex - 2; + } + currentToken = [ + 'word', + css.slice(pos, next + 1), + pos, + next + ]; + buffer.push(currentToken); + pos = next; + } + break; + } + } + pos++; + return currentToken; + } + function back(token) { + returned.push(token); + } + return { + back, + endOfFile, + nextToken, + position + }; +}; +}), +"[project]/node_modules/postcss/lib/terminal-highlight.js [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => { +"use strict"; + +let pico = __turbopack_context__.r("[project]/node_modules/picocolors/picocolors.js [postcss] (ecmascript)"); +let tokenizer = __turbopack_context__.r("[project]/node_modules/postcss/lib/tokenize.js [postcss] (ecmascript)"); +let Input; +function registerInput(dependant) { + Input = dependant; +} +const HIGHLIGHT_THEME = { + ';': pico.yellow, + ':': pico.yellow, + '(': pico.cyan, + ')': pico.cyan, + '[': pico.yellow, + ']': pico.yellow, + '{': pico.yellow, + '}': pico.yellow, + 'at-word': pico.cyan, + 'brackets': pico.cyan, + 'call': pico.cyan, + 'class': pico.yellow, + 'comment': pico.gray, + 'hash': pico.magenta, + 'string': pico.green +}; +function getTokenType([type, value], processor) { + if (type === 'word') { + if (value[0] === '.') { + return 'class'; + } + if (value[0] === '#') { + return 'hash'; + } + } + if (!processor.endOfFile()) { + let next = processor.nextToken(); + processor.back(next); + if (next[0] === 'brackets' || next[0] === '(') return 'call'; + } + return type; +} +function terminalHighlight(css) { + let processor = tokenizer(new Input(css), { + ignoreErrors: true + }); + let result = ''; + while(!processor.endOfFile()){ + let token = processor.nextToken(); + let color = HIGHLIGHT_THEME[getTokenType(token, processor)]; + if (color) { + result += token[1].split(/\r?\n/).map((i)=>color(i)).join('\n'); + } else { + result += token[1]; + } + } + return result; +} +terminalHighlight.registerInput = registerInput; +module.exports = terminalHighlight; +}), +"[project]/node_modules/postcss/lib/css-syntax-error.js [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => { +"use strict"; + +let pico = __turbopack_context__.r("[project]/node_modules/picocolors/picocolors.js [postcss] (ecmascript)"); +let terminalHighlight = __turbopack_context__.r("[project]/node_modules/postcss/lib/terminal-highlight.js [postcss] (ecmascript)"); +class CssSyntaxError extends Error { + constructor(message, line, column, source, file, plugin){ + super(message); + this.name = 'CssSyntaxError'; + this.reason = message; + if (file) { + this.file = file; + } + if (source) { + this.source = source; + } + if (plugin) { + this.plugin = plugin; + } + if (typeof line !== 'undefined' && typeof column !== 'undefined') { + if (typeof line === 'number') { + this.line = line; + this.column = column; + } else { + this.line = line.line; + this.column = line.column; + this.endLine = column.line; + this.endColumn = column.column; + } + } + this.setMessage(); + if (Error.captureStackTrace) { + Error.captureStackTrace(this, CssSyntaxError); + } + } + setMessage() { + this.message = this.plugin ? this.plugin + ': ' : ''; + this.message += this.file ? this.file : ''; + if (typeof this.line !== 'undefined') { + this.message += ':' + this.line + ':' + this.column; + } + this.message += ': ' + this.reason; + } + showSourceCode(color) { + if (!this.source) return ''; + let css = this.source; + if (color == null) color = pico.isColorSupported; + let aside = (text)=>text; + let mark = (text)=>text; + let highlight = (text)=>text; + if (color) { + let { bold, gray, red } = pico.createColors(true); + mark = (text)=>bold(red(text)); + aside = (text)=>gray(text); + if (terminalHighlight) { + highlight = (text)=>terminalHighlight(text); + } + } + let lines = css.split(/\r?\n/); + let start = Math.max(this.line - 3, 0); + let end = Math.min(this.line + 2, lines.length); + let maxWidth = String(end).length; + return lines.slice(start, end).map((line, index)=>{ + let number = start + 1 + index; + let gutter = ' ' + (' ' + number).slice(-maxWidth) + ' | '; + if (number === this.line) { + if (line.length > 160) { + let padding = 20; + let subLineStart = Math.max(0, this.column - padding); + let subLineEnd = Math.max(this.column + padding, this.endColumn + padding); + let subLine = line.slice(subLineStart, subLineEnd); + let spacing = aside(gutter.replace(/\d/g, ' ')) + line.slice(0, Math.min(this.column - 1, padding - 1)).replace(/[^\t]/g, ' '); + return mark('>') + aside(gutter) + highlight(subLine) + '\n ' + spacing + mark('^'); + } + let spacing = aside(gutter.replace(/\d/g, ' ')) + line.slice(0, this.column - 1).replace(/[^\t]/g, ' '); + return mark('>') + aside(gutter) + highlight(line) + '\n ' + spacing + mark('^'); + } + return ' ' + aside(gutter) + highlight(line); + }).join('\n'); + } + toString() { + let code = this.showSourceCode(); + if (code) { + code = '\n\n' + code + '\n'; + } + return this.name + ': ' + this.message + code; + } +} +module.exports = CssSyntaxError; +CssSyntaxError.default = CssSyntaxError; +}), +"[project]/node_modules/postcss/lib/stringifier.js [postcss] (ecmascript)", ((__turbopack_context__, module, exports) => { +"use strict"; + +// Escapes sequences that could break out of an HTML

This page couldn’t load

A server error occurred. Reload to try again.

\ No newline at end of file diff --git a/.next/server/app/_global-error.meta b/.next/server/app/_global-error.meta new file mode 100644 index 0000000..8700303 --- /dev/null +++ b/.next/server/app/_global-error.meta @@ -0,0 +1,15 @@ +{ + "status": 500, + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/_global-error/layout,_N_T_/_global-error/page,_N_T_/_global-error" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/__PAGE__", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/.next/server/app/_global-error.rsc b/.next/server/app/_global-error.rsc new file mode 100644 index 0000000..387dfb1 --- /dev/null +++ b/.next/server/app/_global-error.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] +3:I[37457,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] +4:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +5:"$Sreact.suspense" +8:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] +a:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +c:I[68027,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] +0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +d:[] +7:"$Wd" +9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +e:I[27201,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +6:null +b:[["$","link","0",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","$Le","1",{}]] diff --git a/.next/server/app/_global-error.segments/__PAGE__.segment.rsc b/.next/server/app/_global-error.segments/__PAGE__.segment.rsc new file mode 100644 index 0000000..3cf8bdf --- /dev/null +++ b/.next/server/app/_global-error.segments/__PAGE__.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +3:"$Sreact.suspense" +0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} +4:null diff --git a/.next/server/app/_global-error.segments/_full.segment.rsc b/.next/server/app/_global-error.segments/_full.segment.rsc new file mode 100644 index 0000000..387dfb1 --- /dev/null +++ b/.next/server/app/_global-error.segments/_full.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] +3:I[37457,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] +4:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +5:"$Sreact.suspense" +8:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] +a:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +c:I[68027,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] +0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +d:[] +7:"$Wd" +9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +e:I[27201,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +6:null +b:[["$","link","0",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","$Le","1",{}]] diff --git a/.next/server/app/_global-error.segments/_head.segment.rsc b/.next/server/app/_global-error.segments/_head.segment.rsc new file mode 100644 index 0000000..3cf1a33 --- /dev/null +++ b/.next/server/app/_global-error.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","link","0",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","$L5","1",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/_global-error.segments/_index.segment.rsc b/.next/server/app/_global-error.segments/_index.segment.rsc new file mode 100644 index 0000000..4aebd53 --- /dev/null +++ b/.next/server/app/_global-error.segments/_index.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] +3:I[37457,["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/_global-error.segments/_tree.segment.rsc b/.next/server/app/_global-error.segments/_tree.segment.rsc new file mode 100644 index 0000000..36aa82a --- /dev/null +++ b/.next/server/app/_global-error.segments/_tree.segment.rsc @@ -0,0 +1 @@ +0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/_global-error/page.js b/.next/server/app/_global-error/page.js new file mode 100644 index 0000000..f0a4a7d --- /dev/null +++ b/.next/server/app/_global-error/page.js @@ -0,0 +1,10 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_global-error/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0j0clw_._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_03-z2qq.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js") +R.m(91654) +module.exports=R.m(91654).exports diff --git a/.next/server/app/_global-error/page.js.map b/.next/server/app/_global-error/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/_global-error/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/_global-error/page.js.nft.json b/.next/server/app/_global-error/page.js.nft.json new file mode 100644 index 0000000..44f330d --- /dev/null +++ b/.next/server/app/_global-error/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0j0clw_._.js","../../chunks/ssr/[root-of-the-server]__1103g-m._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_03-z2qq.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/_global-error/page/app-paths-manifest.json b/.next/server/app/_global-error/page/app-paths-manifest.json new file mode 100644 index 0000000..0b587b9 --- /dev/null +++ b/.next/server/app/_global-error/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/_global-error/page": "app/_global-error/page.js" +} \ No newline at end of file diff --git a/.next/server/app/_global-error/page/build-manifest.json b/.next/server/app/_global-error/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/_global-error/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/_global-error/page/next-font-manifest.json b/.next/server/app/_global-error/page/next-font-manifest.json new file mode 100644 index 0000000..e0cc400 --- /dev/null +++ b/.next/server/app/_global-error/page/next-font-manifest.json @@ -0,0 +1,6 @@ +{ + "pages": {}, + "app": {}, + "appUsingSizeAdjust": false, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/_global-error/page/react-loadable-manifest.json b/.next/server/app/_global-error/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/_global-error/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/_global-error/page/server-reference-manifest.json b/.next/server/app/_global-error/page/server-reference-manifest.json new file mode 100644 index 0000000..27a92af --- /dev/null +++ b/.next/server/app/_global-error/page/server-reference-manifest.json @@ -0,0 +1,4 @@ +{ + "node": {}, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/_global-error/page_client-reference-manifest.js b/.next/server/app/_global-error/page_client-reference-manifest.js new file mode 100644 index 0000000..d01d0e1 --- /dev/null +++ b/.next/server/app/_global-error/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/_global-error/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/01xlw8hd842-c.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__1103g-m._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/node_modules/next/dist/client/components/builtin/global-error":[]},"entryJSFiles":{"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/01xlw8hd842-c.js","static/chunks/0d3shmwh5_nmn.js"]}}; + diff --git a/.next/server/app/_not-found.html b/.next/server/app/_not-found.html new file mode 100644 index 0000000..3998f55 --- /dev/null +++ b/.next/server/app/_not-found.html @@ -0,0 +1,680 @@ +404: This page could not be found.Doormile — Delivering Trust. Beyond Boundaries

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

404

This page could not be found.

\ No newline at end of file diff --git a/.next/server/app/_not-found.meta b/.next/server/app/_not-found.meta new file mode 100644 index 0000000..731903e --- /dev/null +++ b/.next/server/app/_not-found.meta @@ -0,0 +1,16 @@ +{ + "status": 404, + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/_not-found/layout,_N_T_/_not-found/page,_N_T_/_not-found" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/_not-found/__PAGE__", + "/_not-found", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/.next/server/app/_not-found.rsc b/.next/server/app/_not-found.rsc new file mode 100644 index 0000000..70c2890 --- /dev/null +++ b/.next/server/app/_not-found.rsc @@ -0,0 +1,26 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +d:"$Sreact.suspense" +10:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +12:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +14:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,null]},null,false,"$@f"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +15:[] +f:"$W15" +11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +16:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +e:null +13:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L16","7",{}]] diff --git a/.next/server/app/_not-found.segments/_full.segment.rsc b/.next/server/app/_not-found.segments/_full.segment.rsc new file mode 100644 index 0000000..70c2890 --- /dev/null +++ b/.next/server/app/_not-found.segments/_full.segment.rsc @@ -0,0 +1,26 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +d:"$Sreact.suspense" +10:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +12:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +14:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,null]},null,false,"$@f"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +15:[] +f:"$W15" +11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +16:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +e:null +13:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L16","7",{}]] diff --git a/build/_not-found/__next._head.txt b/.next/server/app/_not-found.segments/_head.segment.rsc similarity index 61% rename from build/_not-found/__next._head.txt rename to .next/server/app/_not-found.segments/_head.segment.rsc index c09c4ed..8a5b769 100644 --- a/build/_not-found/__next._head.txt +++ b/.next/server/app/_not-found.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/_not-found.segments/_index.segment.rsc b/.next/server/app/_not-found.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/_not-found.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/_not-found.segments/_not-found.segment.rsc b/.next/server/app/_not-found.segments/_not-found.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/_not-found.segments/_not-found.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/_not-found/__next._not-found.__PAGE__.txt b/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc similarity index 79% rename from build/_not-found/__next._not-found.__PAGE__.txt rename to .next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc index 3aad019..c3128d8 100644 --- a/build/_not-found/__next._not-found.__PAGE__.txt +++ b/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc @@ -1,5 +1,5 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 3:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 4:null diff --git a/build/_not-found/__next._tree.txt b/.next/server/app/_not-found.segments/_tree.segment.rsc similarity index 70% rename from build/_not-found/__next._tree.txt rename to .next/server/app/_not-found.segments/_tree.segment.rsc index 9976e64..bae10a0 100644 --- a/build/_not-found/__next._tree.txt +++ b/.next/server/app/_not-found.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"/_not-found","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"/_not-found","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/_not-found/page.js b/.next/server/app/_not-found/page.js new file mode 100644 index 0000000..72512ff --- /dev/null +++ b/.next/server/app/_not-found/page.js @@ -0,0 +1,14 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_not-found/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0gpipiq._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0yjki14.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(73673) +module.exports=R.m(73673).exports diff --git a/.next/server/app/_not-found/page.js.map b/.next/server/app/_not-found/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/_not-found/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/_not-found/page.js.nft.json b/.next/server/app/_not-found/page.js.nft.json new file mode 100644 index 0000000..184159b --- /dev/null +++ b/.next/server/app/_not-found/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0gpipiq._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0yjki14.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/_not-found/page/app-paths-manifest.json b/.next/server/app/_not-found/page/app-paths-manifest.json new file mode 100644 index 0000000..523c2ec --- /dev/null +++ b/.next/server/app/_not-found/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/_not-found/page": "app/_not-found/page.js" +} \ No newline at end of file diff --git a/.next/server/app/_not-found/page/build-manifest.json b/.next/server/app/_not-found/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/_not-found/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/_not-found/page/next-font-manifest.json b/.next/server/app/_not-found/page/next-font-manifest.json new file mode 100644 index 0000000..1e714ce --- /dev/null +++ b/.next/server/app/_not-found/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/_not-found/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/_not-found/page/react-loadable-manifest.json b/.next/server/app/_not-found/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/_not-found/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/_not-found/page/server-reference-manifest.json b/.next/server/app/_not-found/page/server-reference-manifest.json new file mode 100644 index 0000000..8b19750 --- /dev/null +++ b/.next/server/app/_not-found/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/_not-found/page": { + "moduleId": 75341, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/_not-found/page_client-reference-manifest.js b/.next/server/app/_not-found/page_client-reference-manifest.js new file mode 100644 index 0000000..4858de2 --- /dev/null +++ b/.next/server/app/_not-found/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"]}}; + diff --git a/build/about-us.html b/.next/server/app/about-us.html similarity index 54% rename from build/about-us.html rename to .next/server/app/about-us.html index 51184c6..0248634 100644 --- a/build/about-us.html +++ b/.next/server/app/about-us.html @@ -1,4 +1,4 @@ -About Us – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

The Operators Building
Doormile

/ Doormile Approach /


The Doormile Way

Smarter, Faster, Connected Logistics

We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,
every delivery is faster, reliable, and fully transparent.

Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution.

End-to-End Protection

End-to-end visibility ensures every shipment stays secure and on schedule.

Proactive delay prevention

Real-time monitoring helps prevent delays before they impact deliveries.

Single owner, single promise

One unified system manages the entire delivery process seamlessly.

Dynamic AI-driven adjustments

AI-powered routing adapts instantly to improve speed and efficiency.

The Operators Building
Doormile

/ Doormile Approach /


The Doormile Way

Smarter, Faster, Connected Logistics

We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,
every delivery is faster, reliable, and fully transparent.

Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution.

End-to-End Protection

End-to-end visibility ensures every shipment stays secure and on schedule.

Proactive delay prevention

Real-time monitoring helps prevent delays before they impact deliveries.

Single owner, single promise

One unified system manages the entire delivery process seamlessly.

Dynamic AI-driven adjustments

AI-powered routing adapts instantly to improve speed and efficiency.

/ Built for Electric Vehicles /
Logistics Built for EV Vehicles
EV Logistics

Operational Visibility

Real-time tracking and centralized control provide complete visibility across every shipment, vehicle, and delivery milestone.

Intelligent Routing

AI-powered route optimization reduces travel time, improves delivery accuracy, and maximizes fleet utilization.

EV-First Logistics

Purpose-built workflows for electric fleets improve battery efficiency, charging management, and sustainable operations.

Scalable Network

Flexible logistics infrastructure supports growth across cities, regions, and high-volume delivery operations without disruption.

/ DoorMile wins/

WHERE DOORMILE WINS

A side-by-side technical capabilities comparison showing how operational fleet ownership and dynamic AI planning disrupt basic aggregators.

CapabilityDoormileAggregatorsLocal CouriersSoftware Platforms
Owned fleet control✓ YesNoYesNo
Dynamic routing & dispatch✓ AdvancedBasicNoAdvanced
EV-aware planning✓ YesNoNoNo
Documentation & proof trail✓ YesPartialNoYes
Real-time tracking✓ YesYesNoYes
Verified handling✓ YesPartialNoNo
Hyperlocal learning✓ YesNoNoNo
SLA accountability✓ HighLowMediumLow
/ Built for Electric Vehicles /
Logistics Built for EV Vehicles
EV Logistics

Operational Visibility

Real-time tracking and centralized control provide complete visibility across every shipment, vehicle, and delivery milestone.

Intelligent Routing

AI-powered route optimization reduces travel time, improves delivery accuracy, and maximizes fleet utilization.

EV-First Logistics

Purpose-built workflows for electric fleets improve battery efficiency, charging management, and sustainable operations.

Scalable Network

Flexible logistics infrastructure supports growth across cities, regions, and high-volume delivery operations without disruption.

/ DoorMile wins/

WHERE DOORMILE WINS

A side-by-side technical capabilities comparison showing how operational fleet ownership and dynamic AI planning disrupt basic aggregators.

CapabilityDoormileAggregatorsLocal CouriersSoftware Platforms
Owned fleet control✓ YesNoYesNo
Dynamic routing & dispatch✓ AdvancedBasicNoAdvanced
EV-aware planning✓ YesNoNoNo
Documentation & proof trail✓ YesPartialNoYes
Real-time tracking✓ YesYesNoYes
Verified handling✓ YesPartialNoNo
Hyperlocal learning✓ YesNoNoNo
SLA accountability✓ HighLowMediumLow
/Team /

Meet crew

Ratan Kumar
Ratan Kumar
COO & Operational Specialist
Aravinth
Aravinth
CFO & Finance Specialist
Fazul Ilahi
Fazul Ilahi
CTO & Technology Specialist
Suriya Kumar
Suriya Kumar
Engineering Head & AI Specialist
/Team /

Meet crew

Ratan Kumar
Ratan Kumar
COO & Operational Specialist
Aravinth
Aravinth
CFO & Finance Specialist
Fazul Ilahi
Fazul Ilahi
CTO & Technology Specialist
Suriya Kumar
Suriya Kumar
Engineering Head & AI Specialist
\ No newline at end of file + \ No newline at end of file diff --git a/.next/server/app/about-us.meta b/.next/server/app/about-us.meta new file mode 100644 index 0000000..3d40f45 --- /dev/null +++ b/.next/server/app/about-us.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/about-us/layout,_N_T_/about-us/page,_N_T_/about-us" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/about-us/__PAGE__", + "/about-us", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/about-us.txt b/.next/server/app/about-us.rsc similarity index 61% rename from build/about-us.txt rename to .next/server/app/about-us.rsc index 79e2396..258b679 100644 --- a/build/about-us.txt +++ b/.next/server/app/about-us.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -19:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -20,16 +20,16 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/about-bg.webp","image"] -0:{"P":null,"c":["","about-us"],"q":"","i":false,"f":[[["",{"children":["about-us",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"about","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/about-bg.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .about-us-hero-content {\n width: 100% !important;\n text-align: center !important;\n color: #fff !important;\n padding: 0 15px !important;\n z-index: 2;\n display: flex !important;\n flex-direction: column !important;\n justify-content: center !important;\n align-items: center !important;\n height: 100% !important;\n }\n\n .about-us-hero-title {\n margin: 0 !important;\n font-family: \"Manrope\", Sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.1 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n color: #ffffff !important;\n text-align: center !important;\n }\n "}}],"$Lc"],"$Ld","$Le","$Lf","$L10","$L11","$L12"]}]}]}]}],["$L13","$L14","$L15"],"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1b:I[24911,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -1c:I[61867,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -1d:I[47580,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -1e:I[2012,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -21:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],""] -22:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["","about-us"],"q":"","i":false,"f":[[["",{"children":["about-us",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"about","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .about-us-hero-content {\n width: 100% !important;\n text-align: center !important;\n color: #fff !important;\n padding: 0 15px !important;\n z-index: 2;\n display: flex !important;\n flex-direction: column !important;\n justify-content: center !important;\n align-items: center !important;\n height: 100% !important;\n }\n\n .about-us-hero-title {\n margin: 0 !important;\n font-family: \"Manrope\", Sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.1 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n color: #ffffff !important;\n text-align: center !important;\n }\n "}}],"$Lc"],"$Ld","$Le","$Lf","$L10","$L11","$L12"]}]}]}]}],["$L13","$L14","$L15"],"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1b:I[24911,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +1c:I[61867,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +1d:I[47580,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +1e:I[2012,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +21:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],""] +22:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 23:"$Sreact.suspense" -26:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -28:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +26:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +28:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] c:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url('/images/about-bg.webp')","--hero-overlay":"linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.92) 60%, rgba(0, 0, 0, 0.98) 100%)"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"about-us-hero-content","children":["$","h3",null,{"className":"about-us-hero-title","children":["The Operators Building ",["$","br",null,{}]," ",["$","span",null,{"style":{"color":"#C01227"},"children":"Doormile"}]]}]}]}]}] d:["$","$L1b",null,{}] e:["$","$L1c",null,{}] @@ -155,19 +155,19 @@ f:["$","$L1d",null,{}] 11:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1f"}}],"$L20"] 12:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n @media (max-width: 768px) {\n .we-container {\n margin-top: 40px !important;\n margin-bottom: 40px !important;\n padding: 0 10px !important;\n }\n .we-cta {\n padding: 48px 20px !important;\n border-radius: 22px !important;\n }\n .we-cta-title {\n font-size: clamp(28px, 6vw, 38px) !important;\n line-height: 1.25 !important;\n margin-bottom: 16px !important;\n }\n .we-cta-sub {\n font-size: 15px !important;\n line-height: 1.5 !important;\n margin-bottom: 24px !important;\n }\n }\n "}}],["$","div",null,{"className":"we-container","children":["$","div",null,{"className":"we-cta reveal","children":["$","div",null,{"className":"we-cta-inner","children":[["$","h2",null,{"className":"we-cta-title","children":["Ready to Start",["$","br",null,{}],["$","em",null,{"children":"Your Journey?"}]]}],["$","p",null,{"className":"we-cta-sub","children":["Join our Women Entrepreneurship program and become part of ",["$","br",null,{}],"India's fastest-growing logistics network."]}],["$","div",null,{"className":"we-cta-btns","children":["$","$L21",null,{"href":"/contact","className":"btn-we-primary","style":{"textDecoration":"none"},"children":["Apply Now",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","style":{"marginLeft":"8px","display":"inline-block","verticalAlign":"middle"},"children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]}]]}]}]}]] 13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0v290txaarww5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -14:["$","script","script-0",{"src":"/_next/static/chunks/0dt55bg8oa_k~.js","async":true,"nonce":"$undefined"}] +14:["$","script","script-0",{"src":"/_next/static/chunks/0iz6a6sot7a-u.js","async":true,"nonce":"$undefined"}] 15:["$","script","script-1",{"src":"/_next/static/chunks/0nzz4x75f.ixz.js","async":true,"nonce":"$undefined"}] 16:["$","$L22",null,{"children":["$","$23",null,{"name":"Next.MetadataOutlet","children":"$@24"}]}] 25:[] 17:"$W25" 18:["$","$1","h",{"children":[null,["$","$L26",null,{"children":"$L27"}],["$","div",null,{"hidden":true,"children":["$","$L28",null,{"children":["$","$23",null,{"name":"Next.Metadata","children":"$L29"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -2a:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"Image"] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +2a:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"Image"] 20:["$","div",null,{"className":"elementor-element elementor-element-c2c601a e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"c2c601a","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-3306a27 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3306a27","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-7afb238 elementor-widget elementor-widget-logico_heading","data-id":"7afb238","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/Team /"}]}]}],["$","div",null,{"style":{"alignSelf":"flex-start","width":"100%"},"className":"elementor-element elementor-element-c46350e elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"c46350e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","style":{"textAlign":"left"},"children":"Meet crew"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-ac909e5 elementor-widget elementor-widget-logico_team_listing","data-id":"ac909e5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_team_listing.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-team-listing-widget","children":["$","div",null,{"className":"archive-listing","children":["$","div",null,{"className":"archive-listing-wrapper team-listing-wrapper team-grid-listing columns-4","children":[["$","div","0",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$L2a",null,{"src":"/images/Investor.webp","alt":"Ratan Kumar","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Ratan Kumar"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"COO & Operational Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}],["$","div","1",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$L2a",null,{"src":"/images/Aravinth.webp","alt":"Aravinth","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Aravinth"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"CFO & Finance Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}],["$","div","2",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":"$L2b"}]}],"$L2c"]}]}],"$L2d"]}]}]}]}]}]]}]}]}] 2b:["$","$L2a",null,{"src":"/images/Fazul.webp","alt":"Fazul Ilahi","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}] 2c:["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Fazul Ilahi"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"CTO & Technology Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}] 2d:["$","div","3",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$L2a",null,{"src":"/images/Suriya.webp","alt":"Suriya Kumar","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Suriya Kumar"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"Engineering Head & AI Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}] 27:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -2e:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +2e:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 24:null 29:[["$","title","0",{"children":"About Us – Doormile"}],["$","meta","1",{"name":"description","content":"Meet the best crew and operators behind Doormile. Explore our roadmap, competitive edge, and operational excellence in EV and last-mile logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L2e","7",{}]] diff --git a/build/about-us/__next._full.txt b/.next/server/app/about-us.segments/_full.segment.rsc similarity index 61% rename from build/about-us/__next._full.txt rename to .next/server/app/about-us.segments/_full.segment.rsc index 79e2396..258b679 100644 --- a/build/about-us/__next._full.txt +++ b/.next/server/app/about-us.segments/_full.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -19:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -20,16 +20,16 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/about-bg.webp","image"] -0:{"P":null,"c":["","about-us"],"q":"","i":false,"f":[[["",{"children":["about-us",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"about","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/about-bg.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .about-us-hero-content {\n width: 100% !important;\n text-align: center !important;\n color: #fff !important;\n padding: 0 15px !important;\n z-index: 2;\n display: flex !important;\n flex-direction: column !important;\n justify-content: center !important;\n align-items: center !important;\n height: 100% !important;\n }\n\n .about-us-hero-title {\n margin: 0 !important;\n font-family: \"Manrope\", Sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.1 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n color: #ffffff !important;\n text-align: center !important;\n }\n "}}],"$Lc"],"$Ld","$Le","$Lf","$L10","$L11","$L12"]}]}]}]}],["$L13","$L14","$L15"],"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1b:I[24911,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -1c:I[61867,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -1d:I[47580,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -1e:I[2012,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -21:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],""] -22:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["","about-us"],"q":"","i":false,"f":[[["",{"children":["about-us",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"about","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .about-us-hero-content {\n width: 100% !important;\n text-align: center !important;\n color: #fff !important;\n padding: 0 15px !important;\n z-index: 2;\n display: flex !important;\n flex-direction: column !important;\n justify-content: center !important;\n align-items: center !important;\n height: 100% !important;\n }\n\n .about-us-hero-title {\n margin: 0 !important;\n font-family: \"Manrope\", Sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.1 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n color: #ffffff !important;\n text-align: center !important;\n }\n "}}],"$Lc"],"$Ld","$Le","$Lf","$L10","$L11","$L12"]}]}]}]}],["$L13","$L14","$L15"],"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1b:I[24911,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +1c:I[61867,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +1d:I[47580,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +1e:I[2012,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +21:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],""] +22:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 23:"$Sreact.suspense" -26:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -28:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +26:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +28:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] c:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url('/images/about-bg.webp')","--hero-overlay":"linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.92) 60%, rgba(0, 0, 0, 0.98) 100%)"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"about-us-hero-content","children":["$","h3",null,{"className":"about-us-hero-title","children":["The Operators Building ",["$","br",null,{}]," ",["$","span",null,{"style":{"color":"#C01227"},"children":"Doormile"}]]}]}]}]}] d:["$","$L1b",null,{}] e:["$","$L1c",null,{}] @@ -155,19 +155,19 @@ f:["$","$L1d",null,{}] 11:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1f"}}],"$L20"] 12:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n @media (max-width: 768px) {\n .we-container {\n margin-top: 40px !important;\n margin-bottom: 40px !important;\n padding: 0 10px !important;\n }\n .we-cta {\n padding: 48px 20px !important;\n border-radius: 22px !important;\n }\n .we-cta-title {\n font-size: clamp(28px, 6vw, 38px) !important;\n line-height: 1.25 !important;\n margin-bottom: 16px !important;\n }\n .we-cta-sub {\n font-size: 15px !important;\n line-height: 1.5 !important;\n margin-bottom: 24px !important;\n }\n }\n "}}],["$","div",null,{"className":"we-container","children":["$","div",null,{"className":"we-cta reveal","children":["$","div",null,{"className":"we-cta-inner","children":[["$","h2",null,{"className":"we-cta-title","children":["Ready to Start",["$","br",null,{}],["$","em",null,{"children":"Your Journey?"}]]}],["$","p",null,{"className":"we-cta-sub","children":["Join our Women Entrepreneurship program and become part of ",["$","br",null,{}],"India's fastest-growing logistics network."]}],["$","div",null,{"className":"we-cta-btns","children":["$","$L21",null,{"href":"/contact","className":"btn-we-primary","style":{"textDecoration":"none"},"children":["Apply Now",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","style":{"marginLeft":"8px","display":"inline-block","verticalAlign":"middle"},"children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]}]]}]}]}]] 13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0v290txaarww5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -14:["$","script","script-0",{"src":"/_next/static/chunks/0dt55bg8oa_k~.js","async":true,"nonce":"$undefined"}] +14:["$","script","script-0",{"src":"/_next/static/chunks/0iz6a6sot7a-u.js","async":true,"nonce":"$undefined"}] 15:["$","script","script-1",{"src":"/_next/static/chunks/0nzz4x75f.ixz.js","async":true,"nonce":"$undefined"}] 16:["$","$L22",null,{"children":["$","$23",null,{"name":"Next.MetadataOutlet","children":"$@24"}]}] 25:[] 17:"$W25" 18:["$","$1","h",{"children":[null,["$","$L26",null,{"children":"$L27"}],["$","div",null,{"hidden":true,"children":["$","$L28",null,{"children":["$","$23",null,{"name":"Next.Metadata","children":"$L29"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -2a:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"Image"] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +2a:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"Image"] 20:["$","div",null,{"className":"elementor-element elementor-element-c2c601a e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"c2c601a","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-3306a27 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3306a27","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-7afb238 elementor-widget elementor-widget-logico_heading","data-id":"7afb238","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/Team /"}]}]}],["$","div",null,{"style":{"alignSelf":"flex-start","width":"100%"},"className":"elementor-element elementor-element-c46350e elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"c46350e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","style":{"textAlign":"left"},"children":"Meet crew"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-ac909e5 elementor-widget elementor-widget-logico_team_listing","data-id":"ac909e5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_team_listing.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-team-listing-widget","children":["$","div",null,{"className":"archive-listing","children":["$","div",null,{"className":"archive-listing-wrapper team-listing-wrapper team-grid-listing columns-4","children":[["$","div","0",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$L2a",null,{"src":"/images/Investor.webp","alt":"Ratan Kumar","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Ratan Kumar"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"COO & Operational Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}],["$","div","1",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$L2a",null,{"src":"/images/Aravinth.webp","alt":"Aravinth","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Aravinth"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"CFO & Finance Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}],["$","div","2",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":"$L2b"}]}],"$L2c"]}]}],"$L2d"]}]}]}]}]}]]}]}]}] 2b:["$","$L2a",null,{"src":"/images/Fazul.webp","alt":"Fazul Ilahi","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}] 2c:["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Fazul Ilahi"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"CTO & Technology Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}] 2d:["$","div","3",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$L2a",null,{"src":"/images/Suriya.webp","alt":"Suriya Kumar","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Suriya Kumar"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"Engineering Head & AI Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}] 27:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -2e:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +2e:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 24:null 29:[["$","title","0",{"children":"About Us – Doormile"}],["$","meta","1",{"name":"description","content":"Meet the best crew and operators behind Doormile. Explore our roadmap, competitive edge, and operational excellence in EV and last-mile logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L2e","7",{}]] diff --git a/build/about-us/__next._head.txt b/.next/server/app/about-us.segments/_head.segment.rsc similarity index 60% rename from build/about-us/__next._head.txt rename to .next/server/app/about-us.segments/_head.segment.rsc index c9bd61f..80ab49f 100644 --- a/build/about-us/__next._head.txt +++ b/.next/server/app/about-us.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"About Us – Doormile"}],["$","meta","1",{"name":"description","content":"Meet the best crew and operators behind Doormile. Explore our roadmap, competitive edge, and operational excellence in EV and last-mile logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"About Us – Doormile"}],["$","meta","1",{"name":"description","content":"Meet the best crew and operators behind Doormile. Explore our roadmap, competitive edge, and operational excellence in EV and last-mile logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/about-us.segments/_index.segment.rsc b/.next/server/app/about-us.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/about-us.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/about-us/__next._tree.txt b/.next/server/app/about-us.segments/_tree.segment.rsc similarity index 88% rename from build/about-us/__next._tree.txt rename to .next/server/app/about-us.segments/_tree.segment.rsc index cd3fa9a..0003199 100644 --- a/build/about-us/__next._tree.txt +++ b/.next/server/app/about-us.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -8,4 +8,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/about-bg.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"about-us","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"about-us","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/about-us.segments/about-us.segment.rsc b/.next/server/app/about-us.segments/about-us.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/about-us.segments/about-us.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/about-us/__next.about-us.__PAGE__.txt b/.next/server/app/about-us.segments/about-us/__PAGE__.segment.rsc similarity index 77% rename from build/about-us/__next.about-us.__PAGE__.txt rename to .next/server/app/about-us.segments/about-us/__PAGE__.segment.rsc index d482fba..5aa1f2e 100644 --- a/build/about-us/__next.about-us.__PAGE__.txt +++ b/.next/server/app/about-us.segments/about-us/__PAGE__.segment.rsc @@ -1,13 +1,12 @@ 1:"$Sreact.fragment" -2:I[24911,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -3:I[61867,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -4:I[47580,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -5:I[2012,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] -d:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"Image"] -11:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0dt55bg8oa_k~.js","/_next/static/chunks/0nzz4x75f.ixz.js"],""] -12:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[24911,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +3:I[61867,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +4:I[47580,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +5:I[2012,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"default"] +d:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"Image"] +11:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],""] +12:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 13:"$Sreact.suspense" -:HL["/images/about-bg.webp","image"] :HL["/_next/static/chunks/0v290txaarww5.css","style"] 6:T102e, /* Box this section to the same inset width the sibling sections use. @@ -126,11 +125,11 @@ d:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 color: inherit; text-decoration: none; } - 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"about","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/about-bg.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .about-us-hero-content {\n width: 100% !important;\n text-align: center !important;\n color: #fff !important;\n padding: 0 15px !important;\n z-index: 2;\n display: flex !important;\n flex-direction: column !important;\n justify-content: center !important;\n align-items: center !important;\n height: 100% !important;\n }\n\n .about-us-hero-title {\n margin: 0 !important;\n font-family: \"Manrope\", Sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.1 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n color: #ffffff !important;\n text-align: center !important;\n }\n "}}],["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url('/images/about-bg.webp')","--hero-overlay":"linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.92) 60%, rgba(0, 0, 0, 0.98) 100%)"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"about-us-hero-content","children":["$","h3",null,{"className":"about-us-hero-title","children":["The Operators Building ",["$","br",null,{}]," ",["$","span",null,{"style":{"color":"#C01227"},"children":"Doormile"}]]}]}]}]}]],["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$6"}}],"$L7"],"$L8"]}]}]}]}],["$L9","$La","$Lb"],"$Lc"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} + 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"about","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .about-us-hero-content {\n width: 100% !important;\n text-align: center !important;\n color: #fff !important;\n padding: 0 15px !important;\n z-index: 2;\n display: flex !important;\n flex-direction: column !important;\n justify-content: center !important;\n align-items: center !important;\n height: 100% !important;\n }\n\n .about-us-hero-title {\n margin: 0 !important;\n font-family: \"Manrope\", Sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.1 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n color: #ffffff !important;\n text-align: center !important;\n }\n "}}],["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url('/images/about-bg.webp')","--hero-overlay":"linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.92) 60%, rgba(0, 0, 0, 0.98) 100%)"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"about-us-hero-content","children":["$","h3",null,{"className":"about-us-hero-title","children":["The Operators Building ",["$","br",null,{}]," ",["$","span",null,{"style":{"color":"#C01227"},"children":"Doormile"}]]}]}]}]}]],["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$6"}}],"$L7"],"$L8"]}]}]}]}],["$L9","$La","$Lb"],"$Lc"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 7:["$","div",null,{"className":"elementor-element elementor-element-c2c601a e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"c2c601a","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-3306a27 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3306a27","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-7afb238 elementor-widget elementor-widget-logico_heading","data-id":"7afb238","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/Team /"}]}]}],["$","div",null,{"style":{"alignSelf":"flex-start","width":"100%"},"className":"elementor-element elementor-element-c46350e elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"c46350e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","style":{"textAlign":"left"},"children":"Meet crew"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-ac909e5 elementor-widget elementor-widget-logico_team_listing","data-id":"ac909e5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_team_listing.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-team-listing-widget","children":["$","div",null,{"className":"archive-listing","children":["$","div",null,{"className":"archive-listing-wrapper team-listing-wrapper team-grid-listing columns-4","children":[["$","div","0",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$Ld",null,{"src":"/images/Investor.webp","alt":"Ratan Kumar","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Ratan Kumar"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"COO & Operational Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}],["$","div","1",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":["$","$Ld",null,{"src":"/images/Aravinth.webp","alt":"Aravinth","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}]}]}],["$","div",null,{"className":"team-item-content","children":[["$","div",null,{"className":"post-title","children":["$","span",null,{"className":"team-member-name","children":"Aravinth"}]}],["$","div",null,{"className":"team-item-position","dangerouslySetInnerHTML":{"__html":"CFO & Finance Specialist"}}],["$","div",null,{"className":"team-item-socials","children":["$","ul",null,{"className":"team-socials wrapper-socials","children":["$","li",null,{"children":["$","a",null,{"href":"https://www.linkedin.com/","target":"_blank","rel":"noreferrer","className":"fab fa-linkedin-in"}]}]}]}]]}]]}]}],["$","div","2",{"className":"team-item-wrapper post-2866 team type-team status-publish has-post-thumbnail hentry","children":["$","div",null,{"className":"team-item","children":[["$","div",null,{"className":"team-item-media","children":["$","div",null,{"className":"post-media","children":"$Le"}]}],"$Lf"]}]}],"$L10"]}]}]}]}]}]]}]}]}] 8:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n @media (max-width: 768px) {\n .we-container {\n margin-top: 40px !important;\n margin-bottom: 40px !important;\n padding: 0 10px !important;\n }\n .we-cta {\n padding: 48px 20px !important;\n border-radius: 22px !important;\n }\n .we-cta-title {\n font-size: clamp(28px, 6vw, 38px) !important;\n line-height: 1.25 !important;\n margin-bottom: 16px !important;\n }\n .we-cta-sub {\n font-size: 15px !important;\n line-height: 1.5 !important;\n margin-bottom: 24px !important;\n }\n }\n "}}],["$","div",null,{"className":"we-container","children":["$","div",null,{"className":"we-cta reveal","children":["$","div",null,{"className":"we-cta-inner","children":[["$","h2",null,{"className":"we-cta-title","children":["Ready to Start",["$","br",null,{}],["$","em",null,{"children":"Your Journey?"}]]}],["$","p",null,{"className":"we-cta-sub","children":["Join our Women Entrepreneurship program and become part of ",["$","br",null,{}],"India's fastest-growing logistics network."]}],["$","div",null,{"className":"we-cta-btns","children":["$","$L11",null,{"href":"/contact","className":"btn-we-primary","style":{"textDecoration":"none"},"children":["Apply Now",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","style":{"marginLeft":"8px","display":"inline-block","verticalAlign":"middle"},"children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]}]]}]}]}]] 9:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0v290txaarww5.css","precedence":"next"}] -a:["$","script","script-0",{"src":"/_next/static/chunks/0dt55bg8oa_k~.js","async":true}] +a:["$","script","script-0",{"src":"/_next/static/chunks/0iz6a6sot7a-u.js","async":true}] b:["$","script","script-1",{"src":"/_next/static/chunks/0nzz4x75f.ixz.js","async":true}] c:["$","$L12",null,{"children":["$","$13",null,{"name":"Next.MetadataOutlet","children":"$@14"}]}] e:["$","$Ld",null,{"src":"/images/Fazul.webp","alt":"Fazul Ilahi","width":300,"height":360,"style":{"objectFit":"cover","width":"100%","height":"100%"}}] diff --git a/.next/server/app/about-us/page.js b/.next/server/app/about-us/page.js new file mode 100644 index 0000000..6327ce1 --- /dev/null +++ b/.next/server/app/about-us/page.js @@ -0,0 +1,16 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/about-us/page.js") +R.c("server/chunks/ssr/src_030_reo._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0bmtoj~._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0qo6y.1.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(39996) +module.exports=R.m(39996).exports diff --git a/.next/server/app/about-us/page.js.map b/.next/server/app/about-us/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/about-us/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/about-us/page.js.nft.json b/.next/server/app/about-us/page.js.nft.json new file mode 100644 index 0000000..2f182a6 --- /dev/null +++ b/.next/server/app/about-us/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0bmtoj~._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0qo6y.1.js","../../chunks/ssr/src_030_reo._.js","../../chunks/ssr/src_components_sections_0tf4kw_._.js","../../chunks/ssr/src_components_sections_0vgb-z3._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/about-us/page/app-paths-manifest.json b/.next/server/app/about-us/page/app-paths-manifest.json new file mode 100644 index 0000000..6b38b87 --- /dev/null +++ b/.next/server/app/about-us/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/about-us/page": "app/about-us/page.js" +} \ No newline at end of file diff --git a/.next/server/app/about-us/page/build-manifest.json b/.next/server/app/about-us/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/about-us/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/about-us/page/next-font-manifest.json b/.next/server/app/about-us/page/next-font-manifest.json new file mode 100644 index 0000000..9ee5686 --- /dev/null +++ b/.next/server/app/about-us/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/about-us/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/about-us/page/react-loadable-manifest.json b/.next/server/app/about-us/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/about-us/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/about-us/page/server-reference-manifest.json b/.next/server/app/about-us/page/server-reference-manifest.json new file mode 100644 index 0000000..ef6772d --- /dev/null +++ b/.next/server/app/about-us/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/about-us/page": { + "moduleId": 16945, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/about-us/page_client-reference-manifest.js b/.next/server/app/about-us/page_client-reference-manifest.js new file mode 100644 index 0000000..c108c30 --- /dev/null +++ b/.next/server/app/about-us/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/about-us/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/sections/TheDoormileWay.tsx ":{"id":24911,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/src/components/sections/TheDoormileWay.tsx":{"id":24911,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/src/components/sections/EVLogisticSection.tsx ":{"id":61867,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/src/components/sections/EVLogisticSection.tsx":{"id":61867,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/src/components/sections/CompetitiveEdge.tsx ":{"id":47580,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/src/components/sections/CompetitiveEdge.tsx":{"id":47580,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/src/components/sections/IntelligenceGrid.tsx ":{"id":2012,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/src/components/sections/IntelligenceGrid.tsx":{"id":2012,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0iz6a6sot7a-u.js","/_next/static/chunks/0nzz4x75f.ixz.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"24911":{"*":{"id":67736,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_0vgb-z3._.js","server/chunks/ssr/src_components_sections_0tf4kw_._.js"],"async":false}},"61867":{"*":{"id":50034,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_0vgb-z3._.js","server/chunks/ssr/src_components_sections_0tf4kw_._.js"],"async":false}},"47580":{"*":{"id":6159,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_0vgb-z3._.js","server/chunks/ssr/src_components_sections_0tf4kw_._.js"],"async":false}},"2012":{"*":{"id":99084,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_0vgb-z3._.js","server/chunks/ssr/src_components_sections_0tf4kw_._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_0vgb-z3._.js","server/chunks/ssr/src_components_sections_0tf4kw_._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_0vgb-z3._.js","server/chunks/ssr/src_components_sections_0tf4kw_._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"24911":{"*":{"id":16205,"name":"*","chunks":[],"async":false}},"61867":{"*":{"id":85769,"name":"*","chunks":[],"async":false}},"47580":{"*":{"id":72493,"name":"*","chunks":[],"async":false}},"2012":{"*":{"id":6479,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/about-us/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false},{"path":"static/chunks/0v290txaarww5.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/about-us/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/0iz6a6sot7a-u.js","static/chunks/0nzz4x75f.ixz.js"]}}; + diff --git a/.next/server/app/air-freight.html b/.next/server/app/air-freight.html new file mode 100644 index 0000000..a1c1414 --- /dev/null +++ b/.next/server/app/air-freight.html @@ -0,0 +1 @@ +Doormile — Delivering Trust. Beyond Boundaries \ No newline at end of file diff --git a/.next/server/app/air-freight.meta b/.next/server/app/air-freight.meta new file mode 100644 index 0000000..192f6f3 --- /dev/null +++ b/.next/server/app/air-freight.meta @@ -0,0 +1,17 @@ +{ + "status": 308, + "headers": { + "location": "/doormile-wings", + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/air-freight/layout,_N_T_/air-freight/page,_N_T_/air-freight" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/air-freight/__PAGE__", + "/air-freight", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/.next/server/app/air-freight.rsc b/.next/server/app/air-freight.rsc new file mode 100644 index 0000000..ab9b884 --- /dev/null +++ b/.next/server/app/air-freight.rsc @@ -0,0 +1,32 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +e:"$Sreact.suspense" +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","air-freight"],"q":"","i":false,"f":[[["",{"children":["air-freight",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",null,["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +c:E{"digest":"NEXT_REDIRECT;replace;/doormile-wings;308;"} +16:[] +10:"$W16" +12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +17:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +f:null +14:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L17","8",{}]] diff --git a/.next/server/app/air-freight.segments/_full.segment.rsc b/.next/server/app/air-freight.segments/_full.segment.rsc new file mode 100644 index 0000000..ab9b884 --- /dev/null +++ b/.next/server/app/air-freight.segments/_full.segment.rsc @@ -0,0 +1,32 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +e:"$Sreact.suspense" +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","air-freight"],"q":"","i":false,"f":[[["",{"children":["air-freight",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",null,["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +c:E{"digest":"NEXT_REDIRECT;replace;/doormile-wings;308;"} +16:[] +10:"$W16" +12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +17:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +f:null +14:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L17","8",{}]] diff --git a/build/air-freight/__next._head.txt b/.next/server/app/air-freight.segments/_head.segment.rsc similarity index 63% rename from build/air-freight/__next._head.txt rename to .next/server/app/air-freight.segments/_head.segment.rsc index c63e142..5e3ad02 100644 --- a/build/air-freight/__next._head.txt +++ b/.next/server/app/air-freight.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","8",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","8",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/air-freight.segments/_index.segment.rsc b/.next/server/app/air-freight.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/air-freight.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/air-freight/__next._tree.txt b/.next/server/app/air-freight.segments/_tree.segment.rsc similarity index 87% rename from build/air-freight/__next._tree.txt rename to .next/server/app/air-freight.segments/_tree.segment.rsc index f115266..5266520 100644 --- a/build/air-freight/__next._tree.txt +++ b/.next/server/app/air-freight.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"air-freight","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"air-freight","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/air-freight.segments/air-freight.segment.rsc b/.next/server/app/air-freight.segments/air-freight.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/air-freight.segments/air-freight.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/air-freight/__next.air-freight.__PAGE__.txt b/.next/server/app/air-freight.segments/air-freight/__PAGE__.segment.rsc similarity index 52% rename from build/air-freight/__next.air-freight.__PAGE__.txt rename to .next/server/app/air-freight.segments/air-freight/__PAGE__.segment.rsc index 299e14c..3230040 100644 --- a/build/air-freight/__next.air-freight.__PAGE__.txt +++ b/.next/server/app/air-freight.segments/air-freight/__PAGE__.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 4:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":["$L2",null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":["$L2",null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 5:null 2:E{"digest":"NEXT_REDIRECT;replace;/doormile-wings;308;"} diff --git a/.next/server/app/air-freight/page.js b/.next/server/app/air-freight/page.js new file mode 100644 index 0000000..4923cf7 --- /dev/null +++ b/.next/server/app/air-freight/page.js @@ -0,0 +1,16 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/air-freight/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0vr5sgo._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_05za6s2.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_11dij6w._.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(91827) +module.exports=R.m(91827).exports diff --git a/.next/server/app/air-freight/page.js.map b/.next/server/app/air-freight/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/air-freight/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/air-freight/page.js.nft.json b/.next/server/app/air-freight/page.js.nft.json new file mode 100644 index 0000000..f33ba70 --- /dev/null +++ b/.next/server/app/air-freight/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[root-of-the-server]__0vr5sgo._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_11dij6w._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_05za6s2.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/air-freight/page/app-paths-manifest.json b/.next/server/app/air-freight/page/app-paths-manifest.json new file mode 100644 index 0000000..8f8c580 --- /dev/null +++ b/.next/server/app/air-freight/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/air-freight/page": "app/air-freight/page.js" +} \ No newline at end of file diff --git a/.next/server/app/air-freight/page/build-manifest.json b/.next/server/app/air-freight/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/air-freight/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/air-freight/page/next-font-manifest.json b/.next/server/app/air-freight/page/next-font-manifest.json new file mode 100644 index 0000000..d17c792 --- /dev/null +++ b/.next/server/app/air-freight/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/air-freight/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/air-freight/page/react-loadable-manifest.json b/.next/server/app/air-freight/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/air-freight/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/air-freight/page/server-reference-manifest.json b/.next/server/app/air-freight/page/server-reference-manifest.json new file mode 100644 index 0000000..694c0f4 --- /dev/null +++ b/.next/server/app/air-freight/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/air-freight/page": { + "moduleId": 67113, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/air-freight/page_client-reference-manifest.js b/.next/server/app/air-freight/page_client-reference-manifest.js new file mode 100644 index 0000000..60559e1 --- /dev/null +++ b/.next/server/app/air-freight/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/air-freight/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"]}}; + diff --git a/.next/server/app/blog.html b/.next/server/app/blog.html new file mode 100644 index 0000000..d9fa6c4 --- /dev/null +++ b/.next/server/app/blog.html @@ -0,0 +1,863 @@ +Blog – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Delivering Trust.
Beyond Boundaries

\ No newline at end of file diff --git a/.next/server/app/blog.meta b/.next/server/app/blog.meta new file mode 100644 index 0000000..eab8343 --- /dev/null +++ b/.next/server/app/blog.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/page,_N_T_/blog" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/__PAGE__", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/__next._full.txt b/.next/server/app/blog.rsc similarity index 72% rename from build/blog/__next._full.txt rename to .next/server/app/blog.rsc index ed53a74..bbf44cc 100644 --- a/build/blog/__next._full.txt +++ b/.next/server/app/blog.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -11:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +11:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -19,11 +19,11 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/home2-banner-1.webp","image"] -0:{"P":null,"c":["","blog"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"blogs","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"104","className":"elementor elementor-104","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/home2-banner-1.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .blogs-hero-title {\n color: #ffffff !important;\n font-family: var(--font-manrope), sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.08 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n margin: 0 !important;\n }\n .blogs-hero-content {\n position: relative !important;\n width: 100% !important;\n height: 100% !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n flex-direction: column !important;\n max-width: 1000px !important;\n margin: 0 auto !important;\n padding: 0 15px !important;\n box-sizing: border-box !important;\n }\n "}}],"$Lc"],"$Ld"]}]}]}]}],null,"$Le"]}],{},null,false,null]},null,false,"$@f"]},null,false,null],"$L10",false]],"m":"$undefined","G":["$11",["$L12"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -15:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["","blog"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"blogs","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"104","className":"elementor elementor-104","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .blogs-hero-title {\n color: #ffffff !important;\n font-family: var(--font-manrope), sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.08 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n margin: 0 !important;\n }\n .blogs-hero-content {\n position: relative !important;\n width: 100% !important;\n height: 100% !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n flex-direction: column !important;\n max-width: 1000px !important;\n margin: 0 auto !important;\n padding: 0 15px !important;\n box-sizing: border-box !important;\n }\n "}}],"$Lc"],"$Ld"]}]}]}]}],null,"$Le"]}],{},null,false,null]},null,false,"$@f"]},null,false,null],"$L10",false]],"m":"$undefined","G":["$11",["$L12"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +15:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 16:"$Sreact.suspense" -19:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1b:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +19:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1b:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] c:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url(/images/home2-banner-1.webp)","backgroundPosition":"center center","backgroundRepeat":"no-repeat","backgroundSize":"cover"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"blogs-hero-content","children":["$","div",null,{"style":{"textAlign":"center","color":"#fff","zIndex":5},"children":["$","h1",null,{"className":"blogs-hero-title","children":["Delivering Trust.",["$","br",null,{}],["$","span",null,{"style":{"color":"#C01227"},"children":"Beyond Boundaries"}]]}]}]}]}]}] 13:T17ff, .custom-blog-grid { @@ -189,10 +189,10 @@ e:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","ch 18:[] f:"$W18" 10:["$","$1","h",{"children":[null,["$","$L19",null,{"children":"$L1a"}],["$","div",null,{"hidden":true,"children":["$","$L1b",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1c"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -12:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -1d:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ScrollReveal"] -1e:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -1f:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"Image"] +12:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1d:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ScrollReveal"] +1e:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +1f:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"Image"] 14:["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-3dec5cf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3dec5cf","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-aa12479 elementor-widget elementor-widget-logico_blog_listing","data-id":"aa12479","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_blog_listing.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"archive-listing","children":["$","div",null,{"className":"custom-blog-grid","children":[["$","$L1d","how-ai-is-transforming-last-mile-ev-delivery",{"delay":0,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/how-ai-is-transforming-last-mile-ev-delivery","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"How Better Planning Improves Last-Mile EV Delivery"}],["$","p",null,{"className":"custom-blog-excerpt","children":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-17.webp","alt":"How Better Planning Improves Last-Mile EV Delivery","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Technology"}]]}]]}]]}]}],["$","$L1d","42-less-distance-insights-from-our-hyderabad-hub",{"delay":0.08,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/42-less-distance-insights-from-our-hyderabad-hub","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","p",null,{"className":"custom-blog-excerpt","children":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-15.webp","alt":"42% Less Distance: Insights from Our Hyderabad Hub","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Case Study"}]]}]]}]]}]}],["$","$L1d","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"custom-blog-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}]]}],"$L20"]}]}],"$L21","$L22","$L23","$L24","$L25","$L26"]}]}]}]}]}]}] 20:["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"MileTruth"}]]}]]}] 21:["$","$L1d","the-ev-paradox-solving-range-anxiety-for-urban-fleets",{"delay":0,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","p",null,{"className":"custom-blog-excerpt","children":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"EV Fleet"}]]}]]}]]}]}] @@ -202,6 +202,6 @@ f:"$W18" 25:["$","$L1d","how-doormile-maintains-99-9-sla-compliance-at-scale",{"delay":0.08,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/how-doormile-maintains-99-9-sla-compliance-at-scale","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","p",null,{"className":"custom-blog-excerpt","children":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/last-mile-approach.webp","alt":"How Doormile Maintains 99.9% SLA Compliance at Scale","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Operations"}]]}]]}]]}]}] 26:["$","$L1d","battery-simulation-the-secret-to-ev-route-pre-validation",{"delay":0.16,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/battery-simulation-the-secret-to-ev-route-pre-validation","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","p",null,{"className":"custom-blog-excerpt","children":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-3.webp","alt":"Battery Simulation: The Secret to EV Route Pre-Validation","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"EV Fleet"}]]}]]}]]}]}] 1a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -27:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +27:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 17:null 1c:[["$","title","0",{"children":"Blog – Doormile"}],["$","meta","1",{"name":"description","content":"Practical notes on delivery planning, EV fleet operations, route optimisation, charging, and last-mile performance from the Doormile team."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L27","7",{}]] diff --git a/build/blog.txt b/.next/server/app/blog.segments/_full.segment.rsc similarity index 72% rename from build/blog.txt rename to .next/server/app/blog.segments/_full.segment.rsc index ed53a74..bbf44cc 100644 --- a/build/blog.txt +++ b/.next/server/app/blog.segments/_full.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -11:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +11:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -19,11 +19,11 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/home2-banner-1.webp","image"] -0:{"P":null,"c":["","blog"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"blogs","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"104","className":"elementor elementor-104","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/home2-banner-1.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .blogs-hero-title {\n color: #ffffff !important;\n font-family: var(--font-manrope), sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.08 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n margin: 0 !important;\n }\n .blogs-hero-content {\n position: relative !important;\n width: 100% !important;\n height: 100% !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n flex-direction: column !important;\n max-width: 1000px !important;\n margin: 0 auto !important;\n padding: 0 15px !important;\n box-sizing: border-box !important;\n }\n "}}],"$Lc"],"$Ld"]}]}]}]}],null,"$Le"]}],{},null,false,null]},null,false,"$@f"]},null,false,null],"$L10",false]],"m":"$undefined","G":["$11",["$L12"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -15:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["","blog"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"blogs","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"104","className":"elementor elementor-104","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .blogs-hero-title {\n color: #ffffff !important;\n font-family: var(--font-manrope), sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.08 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n margin: 0 !important;\n }\n .blogs-hero-content {\n position: relative !important;\n width: 100% !important;\n height: 100% !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n flex-direction: column !important;\n max-width: 1000px !important;\n margin: 0 auto !important;\n padding: 0 15px !important;\n box-sizing: border-box !important;\n }\n "}}],"$Lc"],"$Ld"]}]}]}]}],null,"$Le"]}],{},null,false,null]},null,false,"$@f"]},null,false,null],"$L10",false]],"m":"$undefined","G":["$11",["$L12"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +15:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 16:"$Sreact.suspense" -19:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1b:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +19:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1b:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] c:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url(/images/home2-banner-1.webp)","backgroundPosition":"center center","backgroundRepeat":"no-repeat","backgroundSize":"cover"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"blogs-hero-content","children":["$","div",null,{"style":{"textAlign":"center","color":"#fff","zIndex":5},"children":["$","h1",null,{"className":"blogs-hero-title","children":["Delivering Trust.",["$","br",null,{}],["$","span",null,{"style":{"color":"#C01227"},"children":"Beyond Boundaries"}]]}]}]}]}]}] 13:T17ff, .custom-blog-grid { @@ -189,10 +189,10 @@ e:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","ch 18:[] f:"$W18" 10:["$","$1","h",{"children":[null,["$","$L19",null,{"children":"$L1a"}],["$","div",null,{"hidden":true,"children":["$","$L1b",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1c"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -12:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -1d:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ScrollReveal"] -1e:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -1f:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"Image"] +12:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1d:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ScrollReveal"] +1e:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +1f:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"Image"] 14:["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-3dec5cf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3dec5cf","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-aa12479 elementor-widget elementor-widget-logico_blog_listing","data-id":"aa12479","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_blog_listing.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"archive-listing","children":["$","div",null,{"className":"custom-blog-grid","children":[["$","$L1d","how-ai-is-transforming-last-mile-ev-delivery",{"delay":0,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/how-ai-is-transforming-last-mile-ev-delivery","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"How Better Planning Improves Last-Mile EV Delivery"}],["$","p",null,{"className":"custom-blog-excerpt","children":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-17.webp","alt":"How Better Planning Improves Last-Mile EV Delivery","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Technology"}]]}]]}]]}]}],["$","$L1d","42-less-distance-insights-from-our-hyderabad-hub",{"delay":0.08,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/42-less-distance-insights-from-our-hyderabad-hub","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","p",null,{"className":"custom-blog-excerpt","children":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-15.webp","alt":"42% Less Distance: Insights from Our Hyderabad Hub","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Case Study"}]]}]]}]]}]}],["$","$L1d","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"custom-blog-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}]]}],"$L20"]}]}],"$L21","$L22","$L23","$L24","$L25","$L26"]}]}]}]}]}]}] 20:["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"MileTruth"}]]}]]}] 21:["$","$L1d","the-ev-paradox-solving-range-anxiety-for-urban-fleets",{"delay":0,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","p",null,{"className":"custom-blog-excerpt","children":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"EV Fleet"}]]}]]}]]}]}] @@ -202,6 +202,6 @@ f:"$W18" 25:["$","$L1d","how-doormile-maintains-99-9-sla-compliance-at-scale",{"delay":0.08,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/how-doormile-maintains-99-9-sla-compliance-at-scale","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","p",null,{"className":"custom-blog-excerpt","children":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/last-mile-approach.webp","alt":"How Doormile Maintains 99.9% SLA Compliance at Scale","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Operations"}]]}]]}]]}]}] 26:["$","$L1d","battery-simulation-the-secret-to-ev-route-pre-validation",{"delay":0.16,"duration":0.8,"yOffset":35,"children":["$","$L1e",null,{"href":"/blog/battery-simulation-the-secret-to-ev-route-pre-validation","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","p",null,{"className":"custom-blog-excerpt","children":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L1f",null,{"src":"/images/blog-post-pic-3.webp","alt":"Battery Simulation: The Secret to EV Route Pre-Validation","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"EV Fleet"}]]}]]}]]}]}] 1a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -27:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +27:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 17:null 1c:[["$","title","0",{"children":"Blog – Doormile"}],["$","meta","1",{"name":"description","content":"Practical notes on delivery planning, EV fleet operations, route optimisation, charging, and last-mile performance from the Doormile team."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L27","7",{}]] diff --git a/build/blog/__next._head.txt b/.next/server/app/blog.segments/_head.segment.rsc similarity index 60% rename from build/blog/__next._head.txt rename to .next/server/app/blog.segments/_head.segment.rsc index 7c5439b..14087b7 100644 --- a/build/blog/__next._head.txt +++ b/.next/server/app/blog.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Blog – Doormile"}],["$","meta","1",{"name":"description","content":"Practical notes on delivery planning, EV fleet operations, route optimisation, charging, and last-mile performance from the Doormile team."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Blog – Doormile"}],["$","meta","1",{"name":"description","content":"Practical notes on delivery planning, EV fleet operations, route optimisation, charging, and last-mile performance from the Doormile team."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog.segments/_index.segment.rsc b/.next/server/app/blog.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/__next._tree.txt b/.next/server/app/blog.segments/_tree.segment.rsc similarity index 88% rename from build/blog/__next._tree.txt rename to .next/server/app/blog.segments/_tree.segment.rsc index 8fbbdb8..b6e93da 100644 --- a/build/blog/__next._tree.txt +++ b/.next/server/app/blog.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/home2-banner-1.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog.segments/blog.segment.rsc b/.next/server/app/blog.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/__next.blog.__PAGE__.txt b/.next/server/app/blog.segments/blog/__PAGE__.segment.rsc similarity index 87% rename from build/blog/__next.blog.__PAGE__.txt rename to .next/server/app/blog.segments/blog/__PAGE__.segment.rsc index 6a03a1e..ac66698 100644 --- a/build/blog/__next.blog.__PAGE__.txt +++ b/.next/server/app/blog.segments/blog/__PAGE__.segment.rsc @@ -1,10 +1,9 @@ 1:"$Sreact.fragment" -5:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ScrollReveal"] -6:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -7:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"Image"] -f:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +5:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ScrollReveal"] +6:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +7:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"Image"] +f:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 10:"$Sreact.suspense" -:HL["/images/home2-banner-1.webp","image"] 2:T17ff, .custom-blog-grid { display: grid !important; @@ -164,7 +163,7 @@ f:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa box-shadow: 0 4px 10px rgba(192, 18, 39, 0.2) !important; font-family: var(--font-manrope), sans-serif !important; } - 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"blogs","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"104","className":"elementor elementor-104","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/home2-banner-1.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .blogs-hero-title {\n color: #ffffff !important;\n font-family: var(--font-manrope), sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.08 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n margin: 0 !important;\n }\n .blogs-hero-content {\n position: relative !important;\n width: 100% !important;\n height: 100% !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n flex-direction: column !important;\n max-width: 1000px !important;\n margin: 0 auto !important;\n padding: 0 15px !important;\n box-sizing: border-box !important;\n }\n "}}],["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url(/images/home2-banner-1.webp)","backgroundPosition":"center center","backgroundRepeat":"no-repeat","backgroundSize":"cover"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"blogs-hero-content","children":["$","div",null,{"style":{"textAlign":"center","color":"#fff","zIndex":5},"children":["$","h1",null,{"className":"blogs-hero-title","children":["Delivering Trust.",["$","br",null,{}],["$","span",null,{"style":{"color":"#C01227"},"children":"Beyond Boundaries"}]]}]}]}]}]}]],["$","div",null,{"className":"elementor-element elementor-element-c70681e e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"c70681e","data-element_type":"container","data-e-type":"container","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3"]}]]}]}]}]}],null,"$L4"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} + 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"blogs","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"104","className":"elementor elementor-104","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n .blogs-hero-title {\n color: #ffffff !important;\n font-family: var(--font-manrope), sans-serif !important;\n font-size: clamp(34px, 5.5vw, 68px) !important;\n font-weight: 850 !important;\n line-height: 1.08 !important;\n text-transform: uppercase !important;\n letter-spacing: -1.5px !important;\n margin: 0 !important;\n }\n .blogs-hero-content {\n position: relative !important;\n width: 100% !important;\n height: 100% !important;\n display: flex !important;\n align-items: center !important;\n justify-content: center !important;\n flex-direction: column !important;\n max-width: 1000px !important;\n margin: 0 auto !important;\n padding: 0 15px !important;\n box-sizing: border-box !important;\n }\n "}}],["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"style":{"backgroundImage":"url(/images/home2-banner-1.webp)","backgroundPosition":"center center","backgroundRepeat":"no-repeat","backgroundSize":"cover"},"className":"custom-standard-hero-card","children":["$","div",null,{"className":"blogs-hero-content","children":["$","div",null,{"style":{"textAlign":"center","color":"#fff","zIndex":5},"children":["$","h1",null,{"className":"blogs-hero-title","children":["Delivering Trust.",["$","br",null,{}],["$","span",null,{"style":{"color":"#C01227"},"children":"Beyond Boundaries"}]]}]}]}]}]}]],["$","div",null,{"className":"elementor-element elementor-element-c70681e e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"c70681e","data-element_type":"container","data-e-type":"container","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3"]}]]}]}]}]}],null,"$L4"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-3dec5cf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3dec5cf","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-aa12479 elementor-widget elementor-widget-logico_blog_listing","data-id":"aa12479","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_blog_listing.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"archive-listing","children":["$","div",null,{"className":"custom-blog-grid","children":[["$","$L5","how-ai-is-transforming-last-mile-ev-delivery",{"delay":0,"duration":0.8,"yOffset":35,"children":["$","$L6",null,{"href":"/blog/how-ai-is-transforming-last-mile-ev-delivery","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"How Better Planning Improves Last-Mile EV Delivery"}],["$","p",null,{"className":"custom-blog-excerpt","children":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L7",null,{"src":"/images/blog-post-pic-17.webp","alt":"How Better Planning Improves Last-Mile EV Delivery","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Technology"}]]}]]}]]}]}],["$","$L5","42-less-distance-insights-from-our-hyderabad-hub",{"delay":0.08,"duration":0.8,"yOffset":35,"children":["$","$L6",null,{"href":"/blog/42-less-distance-insights-from-our-hyderabad-hub","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","p",null,{"className":"custom-blog-excerpt","children":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}]]}],["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L7",null,{"src":"/images/blog-post-pic-15.webp","alt":"42% Less Distance: Insights from Our Hyderabad Hub","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"Case Study"}]]}]]}]]}]}],["$","$L5","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.8,"yOffset":35,"children":["$","$L6",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"custom-blog-card","style":{"textDecoration":"none"},"children":[["$","div",null,{"className":"flex flex-col","children":[["$","h3",null,{"className":"custom-blog-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"custom-blog-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}]]}],"$L8"]}]}],"$L9","$La","$Lb","$Lc","$Ld","$Le"]}]}]}]}]}]}] 4:["$","$Lf",null,{"children":["$","$10",null,{"name":"Next.MetadataOutlet","children":"$@11"}]}] 8:["$","div",null,{"className":"custom-blog-bottom","children":[["$","span",null,{"className":"custom-blog-readmore","children":["Read More",["$","svg",null,{"className":"custom-blog-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}],["$","div",null,{"className":"custom-blog-img-container","children":[["$","$L7",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, 33vw"}],["$","span",null,{"className":"custom-blog-badge","children":"MileTruth"}]]}]]}] diff --git a/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.html b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.html new file mode 100644 index 0000000..5a01d4e --- /dev/null +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.html @@ -0,0 +1,1168 @@ +42% Less Distance: Insights from Our Hyderabad Hub – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Case Study

42% Less Distance: Insights from Our Hyderabad Hub

Doormile Team2 min read

Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.

Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day.

The baseline

Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed.

That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment.

  • Zone-based allocation that missed nearby cross-zone drops
  • Manual stop sequencing during busy dispatch windows
  • ETAs checked after routing instead of before dispatch
  • Traffic and delay handling that depended on phone calls from riders

What changed

The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together.

During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance.

Hyderabad delivery hub routing analysis
Planning the day's deliveries together removed repeated cross-town travel.

The results

  • 42% reduction in total distance travelled across the hub
  • 37% fewer vehicles required for the same delivery volume
  • No SLA misses during the measured deployment window
  • Lower fuel use and fewer unnecessary kilometres per parcel

The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.

Hyderabad Hub Operations

Why this applies beyond one hub

The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes.

A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy.

\ No newline at end of file diff --git a/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.meta b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.meta new file mode 100644 index 0000000..486c73c --- /dev/null +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/42-less-distance-insights-from-our-hyderabad-hub" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub.txt b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.rsc similarity index 80% rename from build/blog/42-less-distance-insights-from-our-hyderabad-hub.txt rename to .next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.rsc index d8c37fe..2b214ff 100644 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub.txt +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","42-less-distance-insights-from-our-hyderabad-hub"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","42-less-distance-insights-from-our-hyderabad-hub","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","42-less-distance-insights-from-our-hyderabad-hub"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","42-less-distance-insights-from-our-hyderabad-hub","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-15.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"description\":\"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-15.webp\"],\"datePublished\":\"2025-09-18T00:00:00.000Z\",\"dateModified\":\"2025-09-18T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"},\"articleSection\":\"Case Study\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"item\":\"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-15.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"description\":\"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\"image\":[\"https://doormile.com/images/blog-post-pic-15.webp\"],\"datePublished\":\"2025-09-18T00:00:00.000Z\",\"dateModified\":\"2025-09-18T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"},\"articleSection\":\"Case Study\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"item\":\"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-15.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-15.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Case Study"}],["$","h1",null,{"className":"dm-banner-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"42% Less Distance: Insights from Our Hyderabad Hub"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-09-18","children":"Sep 18, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The baseline"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment."}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Zone-based allocation that missed nearby cross-zone drops"}],["$","li","1",{"children":"Manual stop sequencing during busy dispatch windows"}],["$","li","2",{"children":"ETAs checked after routing instead of before dispatch"}],["$","li","3",{"children":"Traffic and delay handling that depended on phone calls from riders"}]]}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"What changed"}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together."}]}],"$L1d","$L1e","$L1f","$L20","$L21","$L22","$L23","$L24"]}]]}],"$L25"]}]]}] 26:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$26"}}],"$L27"]}] -28:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -29:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +28:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +29:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance."}]}] 1e:["$","$L1c","8",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L28",null,{"src":"/images/last-mile-approach.webp","alt":"Hyderabad delivery hub routing analysis","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"Planning the day's deliveries together removed repeated cross-town travel."}]]}]}] 1f:["$","$L1c","9",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The results"}]}] @@ -542,6 +542,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 31:["$","$L1c","the-ev-paradox-solving-range-anxiety-for-urban-fleets",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L28",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"EV Fleet"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 32:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -33:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +33:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"42% Less Distance: Insights from Our Hyderabad Hub – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Case Study,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","6",{"property":"og:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","7",{"property":"og:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-15.webp"}],["$","meta","11",{"property":"og:image:alt","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-18T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-15.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L33","23",{}]] +14:[["$","title","0",{"children":"42% Less Distance: Insights from Our Hyderabad Hub – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Case Study,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","6",{"property":"og:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","7",{"property":"og:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-15.webp"}],["$","meta","11",{"property":"og:image:alt","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-18T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-15.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L33","23",{}]] diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._full.txt b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_full.segment.rsc similarity index 80% rename from build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._full.txt rename to .next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_full.segment.rsc index d8c37fe..2b214ff 100644 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._full.txt +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","42-less-distance-insights-from-our-hyderabad-hub"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","42-less-distance-insights-from-our-hyderabad-hub","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","42-less-distance-insights-from-our-hyderabad-hub"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","42-less-distance-insights-from-our-hyderabad-hub","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-15.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"description\":\"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-15.webp\"],\"datePublished\":\"2025-09-18T00:00:00.000Z\",\"dateModified\":\"2025-09-18T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"},\"articleSection\":\"Case Study\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"item\":\"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-15.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"description\":\"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\"image\":[\"https://doormile.com/images/blog-post-pic-15.webp\"],\"datePublished\":\"2025-09-18T00:00:00.000Z\",\"dateModified\":\"2025-09-18T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"},\"articleSection\":\"Case Study\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"item\":\"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-15.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-15.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Case Study"}],["$","h1",null,{"className":"dm-banner-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"42% Less Distance: Insights from Our Hyderabad Hub"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-09-18","children":"Sep 18, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The baseline"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment."}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Zone-based allocation that missed nearby cross-zone drops"}],["$","li","1",{"children":"Manual stop sequencing during busy dispatch windows"}],["$","li","2",{"children":"ETAs checked after routing instead of before dispatch"}],["$","li","3",{"children":"Traffic and delay handling that depended on phone calls from riders"}]]}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"What changed"}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together."}]}],"$L1d","$L1e","$L1f","$L20","$L21","$L22","$L23","$L24"]}]]}],"$L25"]}]]}] 26:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$26"}}],"$L27"]}] -28:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -29:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +28:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +29:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance."}]}] 1e:["$","$L1c","8",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L28",null,{"src":"/images/last-mile-approach.webp","alt":"Hyderabad delivery hub routing analysis","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"Planning the day's deliveries together removed repeated cross-town travel."}]]}]}] 1f:["$","$L1c","9",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The results"}]}] @@ -542,6 +542,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 31:["$","$L1c","the-ev-paradox-solving-range-anxiety-for-urban-fleets",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L28",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"EV Fleet"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 32:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -33:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +33:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"42% Less Distance: Insights from Our Hyderabad Hub – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Case Study,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","6",{"property":"og:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","7",{"property":"og:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-15.webp"}],["$","meta","11",{"property":"og:image:alt","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-18T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-15.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L33","23",{}]] +14:[["$","title","0",{"children":"42% Less Distance: Insights from Our Hyderabad Hub – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Case Study,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","6",{"property":"og:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","7",{"property":"og:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-15.webp"}],["$","meta","11",{"property":"og:image:alt","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-18T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-15.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L33","23",{}]] diff --git a/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_head.segment.rsc b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_head.segment.rsc new file mode 100644 index 0000000..ae91102 --- /dev/null +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"42% Less Distance: Insights from Our Hyderabad Hub – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Case Study,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","6",{"property":"og:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","7",{"property":"og:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-15.webp"}],["$","meta","11",{"property":"og:image:alt","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-18T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-15.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_index.segment.rsc b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._tree.txt b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_tree.segment.rsc similarity index 88% rename from build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._tree.txt rename to .next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_tree.segment.rsc index 298e353..0f890b1 100644 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._tree.txt +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/blog-post-pic-15.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"42-less-distance-insights-from-our-hyderabad-hub","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"42-less-distance-insights-from-our-hyderabad-hub","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog.segment.rsc b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog/$d$slug/__PAGE__.segment.rsc index 846d9a3..ae73d0c 100644 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/42-less-distance-insights-from-our-hyderabad-hub.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -15:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +15:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 16:"$Sreact.suspense" -18:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -19:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +18:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +19:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/blog-post-pic-15.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"description\":\"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-15.webp\"],\"datePublished\":\"2025-09-18T00:00:00.000Z\",\"dateModified\":\"2025-09-18T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"},\"articleSection\":\"Case Study\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"item\":\"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-15.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"description\":\"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\"image\":[\"https://doormile.com/images/blog-post-pic-15.webp\"],\"datePublished\":\"2025-09-18T00:00:00.000Z\",\"dateModified\":\"2025-09-18T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"},\"articleSection\":\"Case Study\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"42% Less Distance: Insights from Our Hyderabad Hub\",\"item\":\"https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-15.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-15.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Case Study"}],["$","h1",null,{"className":"dm-banner-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"42% Less Distance: Insights from Our Hyderabad Hub"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-09-18","children":"Sep 18, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The baseline"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment."}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Zone-based allocation that missed nearby cross-zone drops"}],["$","li","1",{"children":"Manual stop sequencing during busy dispatch windows"}],["$","li","2",{"children":"ETAs checked after routing instead of before dispatch"}],["$","li","3",{"children":"Traffic and delay handling that depended on phone calls from riders"}]]}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"What changed"}]}],["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together."}]}],"$La","$Lb","$Lc","$Ld","$Le","$Lf","$L10","$L11"]}]]}],"$L12"]}]]}] 13:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$13"}}],"$L14"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}] a:["$","$L9","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance."}]}] b:["$","$L9","8",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L18",null,{"src":"/images/last-mile-approach.webp","alt":"Hyderabad delivery hub routing analysis","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"Planning the day's deliveries together removed repeated cross-town travel."}]]}]}] diff --git a/.next/server/app/blog/[slug]/page.js b/.next/server/app/blog/[slug]/page.js new file mode 100644 index 0000000..99642ce --- /dev/null +++ b/.next/server/app/blog/[slug]/page.js @@ -0,0 +1,18 @@ +var R=require("../../../chunks/ssr/[turbopack]_runtime.js")("server/app/blog/[slug]/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ujg1rs._.js") +R.c("server/chunks/ssr/src_0nu2mva._.js") +R.c("server/chunks/ssr/_0sw0r2k._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_11dij6w._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0a~j._2.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(47413) +module.exports=R.m(47413).exports diff --git a/.next/server/app/blog/[slug]/page.js.map b/.next/server/app/blog/[slug]/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/blog/[slug]/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/blog/[slug]/page.js.nft.json b/.next/server/app/blog/[slug]/page.js.nft.json new file mode 100644 index 0000000..007bf17 --- /dev/null +++ b/.next/server/app/blog/[slug]/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../node_modules/@swc/helpers/package.json","../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../node_modules/next/dist/client/lib/console.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../node_modules/next/dist/lib/constants.js","../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../node_modules/next/dist/lib/is-error.js","../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../node_modules/next/dist/server/node-environment.js","../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../node_modules/next/dist/server/require-hook.js","../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../node_modules/next/package.json","../../../../../node_modules/react/cjs/react.development.js","../../../../../node_modules/react/cjs/react.production.js","../../../../../node_modules/react/index.js","../../../../../node_modules/react/package.json","../../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../../chunks/ssr/[root-of-the-server]__0ujg1rs._.js","../../../chunks/ssr/[turbopack]_runtime.js","../../../chunks/ssr/_0p0sfo8._.js","../../../chunks/ssr/_0sw0r2k._.js","../../../chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js","../../../chunks/ssr/node_modules_0oplp32._.js","../../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../../chunks/ssr/node_modules_next_dist_11dij6w._.js","../../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0a~j._2.js","../../../chunks/ssr/src_0nu2mva._.js","../../../chunks/ssr/src_components_blog_BlogSearch_tsx_0yt9s_9._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/blog/[slug]/page/app-paths-manifest.json b/.next/server/app/blog/[slug]/page/app-paths-manifest.json new file mode 100644 index 0000000..4a1de84 --- /dev/null +++ b/.next/server/app/blog/[slug]/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/blog/[slug]/page": "app/blog/[slug]/page.js" +} \ No newline at end of file diff --git a/.next/server/app/blog/[slug]/page/build-manifest.json b/.next/server/app/blog/[slug]/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/blog/[slug]/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/blog/[slug]/page/next-font-manifest.json b/.next/server/app/blog/[slug]/page/next-font-manifest.json new file mode 100644 index 0000000..aa182e4 --- /dev/null +++ b/.next/server/app/blog/[slug]/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/blog/[slug]/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/blog/[slug]/page/react-loadable-manifest.json b/.next/server/app/blog/[slug]/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/blog/[slug]/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/blog/[slug]/page/server-reference-manifest.json b/.next/server/app/blog/[slug]/page/server-reference-manifest.json new file mode 100644 index 0000000..2d39dbd --- /dev/null +++ b/.next/server/app/blog/[slug]/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/blog/[slug]/page": { + "moduleId": 68232, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/blog/[slug]/page_client-reference-manifest.js b/.next/server/app/blog/[slug]/page_client-reference-manifest.js new file mode 100644 index 0000000..4f80cd4 --- /dev/null +++ b/.next/server/app/blog/[slug]/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/blog/[slug]/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false},"[project]/src/animations/Reveal.tsx ":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false},"[project]/src/animations/Reveal.tsx":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false},"[project]/src/components/blog/BlogSearch.tsx ":{"id":23096,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false},"[project]/src/components/blog/BlogSearch.tsx":{"id":23096,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_blog_BlogSearch_tsx_0yt9s_9._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_blog_BlogSearch_tsx_0yt9s_9._.js"],"async":false}},"2018":{"*":{"id":36002,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_blog_BlogSearch_tsx_0yt9s_9._.js"],"async":false}},"23096":{"*":{"id":89104,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_blog_BlogSearch_tsx_0yt9s_9._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"2018":{"*":{"id":9386,"name":"*","chunks":[],"async":false}},"23096":{"*":{"id":84047,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/blog/[slug]/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/blog/[slug]/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/16tb205t0~jhb.js"]}}; + diff --git a/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.html b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.html new file mode 100644 index 0000000..c37bcdb --- /dev/null +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.html @@ -0,0 +1,1168 @@ +Battery Simulation: The Secret to EV Route Pre-Validation – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

EV Fleet

Battery Simulation: The Secret to EV Route Pre-Validation

Doormile Team2 min read

A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Battery Simulation: The Secret to EV Route Pre-Validation looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Battery Simulation: The Secret to EV Route Pre-Validation
EV Fleet: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.meta b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.meta new file mode 100644 index 0000000..56430fc --- /dev/null +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/battery-simulation-the-secret-to-ev-route-pre-validation" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._full.txt b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.rsc similarity index 79% rename from build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._full.txt rename to .next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.rsc index a5e3880..e5da7e0 100644 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._full.txt +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","battery-simulation-the-secret-to-ev-route-pre-validation"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","battery-simulation-the-secret-to-ev-route-pre-validation","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","battery-simulation-the-secret-to-ev-route-pre-validation"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","battery-simulation-the-secret-to-ev-route-pre-validation","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-3.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"description\":\"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-3.webp\"],\"datePublished\":\"2025-06-12T00:00:00.000Z\",\"dateModified\":\"2025-06-12T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"item\":\"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"description\":\"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\"image\":[\"https://doormile.com/images/blog-post-pic-3.webp\"],\"datePublished\":\"2025-06-12T00:00:00.000Z\",\"dateModified\":\"2025-06-12T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"item\":\"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-3.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"EV Fleet"}],["$","h1",null,{"className":"dm-banner-title","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-06-12","children":"Jun 12, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Battery Simulation: The Secret to EV Route Pre-Validation looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/blog-post-pic-3.webp","alt":"Battery Simulation: The Secret to EV Route Pre-Validation","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"EV Fleet: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -539,6 +539,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2e:["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 2f:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -30:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +30:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Battery Simulation: The Secret to EV Route Pre-Validation – Doormile"}],["$","meta","1",{"name":"description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","6",{"property":"og:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","7",{"property":"og:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-3.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-12T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","17",{"name":"twitter:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-3.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L30","23",{}]] +14:[["$","title","0",{"children":"Battery Simulation: The Secret to EV Route Pre-Validation – Doormile"}],["$","meta","1",{"name":"description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","6",{"property":"og:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","7",{"property":"og:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-3.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-12T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","17",{"name":"twitter:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-3.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L30","23",{}]] diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation.txt b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_full.segment.rsc similarity index 79% rename from build/blog/battery-simulation-the-secret-to-ev-route-pre-validation.txt rename to .next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_full.segment.rsc index a5e3880..e5da7e0 100644 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation.txt +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","battery-simulation-the-secret-to-ev-route-pre-validation"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","battery-simulation-the-secret-to-ev-route-pre-validation","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","battery-simulation-the-secret-to-ev-route-pre-validation"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","battery-simulation-the-secret-to-ev-route-pre-validation","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-3.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"description\":\"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-3.webp\"],\"datePublished\":\"2025-06-12T00:00:00.000Z\",\"dateModified\":\"2025-06-12T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"item\":\"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"description\":\"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\"image\":[\"https://doormile.com/images/blog-post-pic-3.webp\"],\"datePublished\":\"2025-06-12T00:00:00.000Z\",\"dateModified\":\"2025-06-12T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"item\":\"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-3.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"EV Fleet"}],["$","h1",null,{"className":"dm-banner-title","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-06-12","children":"Jun 12, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Battery Simulation: The Secret to EV Route Pre-Validation looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/blog-post-pic-3.webp","alt":"Battery Simulation: The Secret to EV Route Pre-Validation","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"EV Fleet: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -539,6 +539,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2e:["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 2f:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -30:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +30:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Battery Simulation: The Secret to EV Route Pre-Validation – Doormile"}],["$","meta","1",{"name":"description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","6",{"property":"og:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","7",{"property":"og:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-3.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-12T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","17",{"name":"twitter:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-3.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L30","23",{}]] +14:[["$","title","0",{"children":"Battery Simulation: The Secret to EV Route Pre-Validation – Doormile"}],["$","meta","1",{"name":"description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","6",{"property":"og:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","7",{"property":"og:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-3.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-12T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","17",{"name":"twitter:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-3.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L30","23",{}]] diff --git a/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_head.segment.rsc b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_head.segment.rsc new file mode 100644 index 0000000..59ad03a --- /dev/null +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Battery Simulation: The Secret to EV Route Pre-Validation – Doormile"}],["$","meta","1",{"name":"description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","6",{"property":"og:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","7",{"property":"og:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-3.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-12T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","17",{"name":"twitter:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-3.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_index.segment.rsc b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._tree.txt b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_tree.segment.rsc similarity index 92% rename from build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._tree.txt rename to .next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_tree.segment.rsc index ac35bc5..350fdb3 100644 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._tree.txt +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/blog-post-pic-3.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"battery-simulation-the-secret-to-ev-route-pre-validation","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"battery-simulation-the-secret-to-ev-route-pre-validation","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog.segment.rsc b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog/$d$slug/__PAGE__.segment.rsc index b1f238e..e6344a8 100644 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/battery-simulation-the-secret-to-ev-route-pre-validation.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 15:"$Sreact.suspense" -17:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -18:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +17:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +18:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/blog-post-pic-3.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"description\":\"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-3.webp\"],\"datePublished\":\"2025-06-12T00:00:00.000Z\",\"dateModified\":\"2025-06-12T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"item\":\"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"description\":\"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\"image\":[\"https://doormile.com/images/blog-post-pic-3.webp\"],\"datePublished\":\"2025-06-12T00:00:00.000Z\",\"dateModified\":\"2025-06-12T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Battery Simulation: The Secret to EV Route Pre-Validation\",\"item\":\"https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-3.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"EV Fleet"}],["$","h1",null,{"className":"dm-banner-title","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Battery Simulation: The Secret to EV Route Pre-Validation"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-06-12","children":"Jun 12, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Battery Simulation: The Secret to EV Route Pre-Validation looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$La","$Lb"]}]}],"$Lc","$Ld","$Le","$Lf","$L10"]}]]}],"$L11"]}]]}] 12:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$12"}}],"$L13"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","children":"$@16"}]}] a:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L17",null,{"src":"/images/blog-post-pic-3.webp","alt":"Battery Simulation: The Secret to EV Route Pre-Validation","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] b:["$","figcaption",null,{"children":"EV Fleet: route planning decisions made before dispatch."}] diff --git a/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.html b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.html new file mode 100644 index 0000000..f7c656d --- /dev/null +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.html @@ -0,0 +1,1168 @@ +Building a Greener City: The Future of Urban Logistics – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Sustainability

Building a Greener City: The Future of Urban Logistics

Doormile Team2 min read

Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Building a Greener City: The Future of Urban Logistics looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Building a Greener City: The Future of Urban Logistics
Sustainability: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.meta b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.meta new file mode 100644 index 0000000..8271596 --- /dev/null +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/building-a-greener-city-the-future-of-urban-logistics" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics.txt b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.rsc similarity index 79% rename from build/blog/building-a-greener-city-the-future-of-urban-logistics.txt rename to .next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.rsc index be17cd9..48c359a 100644 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics.txt +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","building-a-greener-city-the-future-of-urban-logistics"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","building-a-greener-city-the-future-of-urban-logistics","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","building-a-greener-city-the-future-of-urban-logistics"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","building-a-greener-city-the-future-of-urban-logistics","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-6.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Building a Greener City: The Future of Urban Logistics\",\"description\":\"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-6.webp\"],\"datePublished\":\"2025-07-10T00:00:00.000Z\",\"dateModified\":\"2025-07-10T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"},\"articleSection\":\"Sustainability\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building a Greener City: The Future of Urban Logistics\",\"item\":\"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-6.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Building a Greener City: The Future of Urban Logistics\",\"description\":\"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\"image\":[\"https://doormile.com/images/blog-post-pic-6.webp\"],\"datePublished\":\"2025-07-10T00:00:00.000Z\",\"dateModified\":\"2025-07-10T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"},\"articleSection\":\"Sustainability\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building a Greener City: The Future of Urban Logistics\",\"item\":\"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-6.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-6.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Sustainability"}],["$","h1",null,{"className":"dm-banner-title","children":"Building a Greener City: The Future of Urban Logistics"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Building a Greener City: The Future of Urban Logistics"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-07-10","children":"Jul 10, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Building a Greener City: The Future of Urban Logistics looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/blog-post-pic-6.webp","alt":"Building a Greener City: The Future of Urban Logistics","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"Sustainability: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Building a Greener City: The Future of Urban Logistics – Doormile"}],["$","meta","1",{"name":"description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Sustainability,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","6",{"property":"og:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","7",{"property":"og:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-6.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-10T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","17",{"name":"twitter:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-6.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"Building a Greener City: The Future of Urban Logistics – Doormile"}],["$","meta","1",{"name":"description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Sustainability,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","6",{"property":"og:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","7",{"property":"og:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-6.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-10T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","17",{"name":"twitter:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-6.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._full.txt b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_full.segment.rsc similarity index 79% rename from build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._full.txt rename to .next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_full.segment.rsc index be17cd9..48c359a 100644 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._full.txt +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","building-a-greener-city-the-future-of-urban-logistics"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","building-a-greener-city-the-future-of-urban-logistics","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","building-a-greener-city-the-future-of-urban-logistics"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","building-a-greener-city-the-future-of-urban-logistics","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-6.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Building a Greener City: The Future of Urban Logistics\",\"description\":\"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-6.webp\"],\"datePublished\":\"2025-07-10T00:00:00.000Z\",\"dateModified\":\"2025-07-10T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"},\"articleSection\":\"Sustainability\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building a Greener City: The Future of Urban Logistics\",\"item\":\"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-6.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Building a Greener City: The Future of Urban Logistics\",\"description\":\"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\"image\":[\"https://doormile.com/images/blog-post-pic-6.webp\"],\"datePublished\":\"2025-07-10T00:00:00.000Z\",\"dateModified\":\"2025-07-10T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"},\"articleSection\":\"Sustainability\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building a Greener City: The Future of Urban Logistics\",\"item\":\"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-6.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-6.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Sustainability"}],["$","h1",null,{"className":"dm-banner-title","children":"Building a Greener City: The Future of Urban Logistics"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Building a Greener City: The Future of Urban Logistics"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-07-10","children":"Jul 10, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Building a Greener City: The Future of Urban Logistics looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/blog-post-pic-6.webp","alt":"Building a Greener City: The Future of Urban Logistics","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"Sustainability: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Building a Greener City: The Future of Urban Logistics – Doormile"}],["$","meta","1",{"name":"description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Sustainability,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","6",{"property":"og:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","7",{"property":"og:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-6.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-10T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","17",{"name":"twitter:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-6.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"Building a Greener City: The Future of Urban Logistics – Doormile"}],["$","meta","1",{"name":"description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Sustainability,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","6",{"property":"og:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","7",{"property":"og:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-6.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-10T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","17",{"name":"twitter:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-6.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_head.segment.rsc b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_head.segment.rsc new file mode 100644 index 0000000..d3e733b --- /dev/null +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Building a Greener City: The Future of Urban Logistics – Doormile"}],["$","meta","1",{"name":"description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Sustainability,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","6",{"property":"og:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","7",{"property":"og:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-6.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-10T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","17",{"name":"twitter:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-6.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_index.segment.rsc b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._tree.txt b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_tree.segment.rsc similarity index 93% rename from build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._tree.txt rename to .next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_tree.segment.rsc index ae214b8..943ea58 100644 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._tree.txt +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/blog-post-pic-6.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"building-a-greener-city-the-future-of-urban-logistics","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"building-a-greener-city-the-future-of-urban-logistics","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog.segment.rsc b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog/$d$slug/__PAGE__.segment.rsc index 0aeb898..7bd2a65 100644 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/building-a-greener-city-the-future-of-urban-logistics.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 15:"$Sreact.suspense" -17:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -18:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +17:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +18:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/blog-post-pic-6.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Building a Greener City: The Future of Urban Logistics\",\"description\":\"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-6.webp\"],\"datePublished\":\"2025-07-10T00:00:00.000Z\",\"dateModified\":\"2025-07-10T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"},\"articleSection\":\"Sustainability\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building a Greener City: The Future of Urban Logistics\",\"item\":\"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-6.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Building a Greener City: The Future of Urban Logistics\",\"description\":\"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\"image\":[\"https://doormile.com/images/blog-post-pic-6.webp\"],\"datePublished\":\"2025-07-10T00:00:00.000Z\",\"dateModified\":\"2025-07-10T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"},\"articleSection\":\"Sustainability\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building a Greener City: The Future of Urban Logistics\",\"item\":\"https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-6.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-6.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Sustainability"}],["$","h1",null,{"className":"dm-banner-title","children":"Building a Greener City: The Future of Urban Logistics"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Building a Greener City: The Future of Urban Logistics"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-07-10","children":"Jul 10, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Building a Greener City: The Future of Urban Logistics looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$La","$Lb"]}]}],"$Lc","$Ld","$Le","$Lf","$L10"]}]]}],"$L11"]}]]}] 12:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$12"}}],"$L13"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","children":"$@16"}]}] a:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L17",null,{"src":"/images/blog-post-pic-6.webp","alt":"Building a Greener City: The Future of Urban Logistics","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] b:["$","figcaption",null,{"children":"Sustainability: route planning decisions made before dispatch."}] diff --git a/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.html b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.html new file mode 100644 index 0000000..71fe0c4 --- /dev/null +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.html @@ -0,0 +1,1168 @@ +Fleet Reduction Without Compromising Delivery Volume – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Fleet Management

Fleet Reduction Without Compromising Delivery Volume

Doormile Team2 min read

Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Fleet Reduction Without Compromising Delivery Volume looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Fleet Reduction Without Compromising Delivery Volume
Fleet Management: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.meta b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.meta new file mode 100644 index 0000000..9897afa --- /dev/null +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/fleet-reduction-without-compromising-delivery-volume" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume.txt b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.rsc similarity index 79% rename from build/blog/fleet-reduction-without-compromising-delivery-volume.txt rename to .next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.rsc index e06d939..9794d14 100644 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume.txt +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","fleet-reduction-without-compromising-delivery-volume"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","fleet-reduction-without-compromising-delivery-volume","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","fleet-reduction-without-compromising-delivery-volume"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","fleet-reduction-without-compromising-delivery-volume","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-8.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Fleet Reduction Without Compromising Delivery Volume\",\"description\":\"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-8.webp\"],\"datePublished\":\"2025-07-24T00:00:00.000Z\",\"dateModified\":\"2025-07-24T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"},\"articleSection\":\"Fleet Management\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Fleet Reduction Without Compromising Delivery Volume\",\"item\":\"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-8.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Fleet Reduction Without Compromising Delivery Volume\",\"description\":\"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\"image\":[\"https://doormile.com/images/blog-post-pic-8.webp\"],\"datePublished\":\"2025-07-24T00:00:00.000Z\",\"dateModified\":\"2025-07-24T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"},\"articleSection\":\"Fleet Management\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Fleet Reduction Without Compromising Delivery Volume\",\"item\":\"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-8.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-8.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Fleet Management"}],["$","h1",null,{"className":"dm-banner-title","children":"Fleet Reduction Without Compromising Delivery Volume"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Fleet Reduction Without Compromising Delivery Volume"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-07-24","children":"Jul 24, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Fleet Reduction Without Compromising Delivery Volume looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/blog-post-pic-8.webp","alt":"Fleet Reduction Without Compromising Delivery Volume","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"Fleet Management: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -541,6 +541,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 30:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 31:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -32:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +32:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Fleet Reduction Without Compromising Delivery Volume – Doormile"}],["$","meta","1",{"name":"description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Fleet Management,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","6",{"property":"og:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","7",{"property":"og:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-8.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-24T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","17",{"name":"twitter:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-8.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] +14:[["$","title","0",{"children":"Fleet Reduction Without Compromising Delivery Volume – Doormile"}],["$","meta","1",{"name":"description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Fleet Management,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","6",{"property":"og:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","7",{"property":"og:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-8.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-24T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","17",{"name":"twitter:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-8.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._full.txt b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_full.segment.rsc similarity index 79% rename from build/blog/fleet-reduction-without-compromising-delivery-volume/__next._full.txt rename to .next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_full.segment.rsc index e06d939..9794d14 100644 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._full.txt +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","fleet-reduction-without-compromising-delivery-volume"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","fleet-reduction-without-compromising-delivery-volume","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","fleet-reduction-without-compromising-delivery-volume"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","fleet-reduction-without-compromising-delivery-volume","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-8.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Fleet Reduction Without Compromising Delivery Volume\",\"description\":\"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-8.webp\"],\"datePublished\":\"2025-07-24T00:00:00.000Z\",\"dateModified\":\"2025-07-24T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"},\"articleSection\":\"Fleet Management\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Fleet Reduction Without Compromising Delivery Volume\",\"item\":\"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-8.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Fleet Reduction Without Compromising Delivery Volume\",\"description\":\"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\"image\":[\"https://doormile.com/images/blog-post-pic-8.webp\"],\"datePublished\":\"2025-07-24T00:00:00.000Z\",\"dateModified\":\"2025-07-24T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"},\"articleSection\":\"Fleet Management\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Fleet Reduction Without Compromising Delivery Volume\",\"item\":\"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-8.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-8.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Fleet Management"}],["$","h1",null,{"className":"dm-banner-title","children":"Fleet Reduction Without Compromising Delivery Volume"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Fleet Reduction Without Compromising Delivery Volume"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-07-24","children":"Jul 24, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Fleet Reduction Without Compromising Delivery Volume looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/blog-post-pic-8.webp","alt":"Fleet Reduction Without Compromising Delivery Volume","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"Fleet Management: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -541,6 +541,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 30:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 31:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -32:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +32:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Fleet Reduction Without Compromising Delivery Volume – Doormile"}],["$","meta","1",{"name":"description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Fleet Management,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","6",{"property":"og:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","7",{"property":"og:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-8.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-24T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","17",{"name":"twitter:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-8.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] +14:[["$","title","0",{"children":"Fleet Reduction Without Compromising Delivery Volume – Doormile"}],["$","meta","1",{"name":"description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Fleet Management,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","6",{"property":"og:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","7",{"property":"og:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-8.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-24T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","17",{"name":"twitter:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-8.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] diff --git a/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_head.segment.rsc b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_head.segment.rsc new file mode 100644 index 0000000..1a72605 --- /dev/null +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Fleet Reduction Without Compromising Delivery Volume – Doormile"}],["$","meta","1",{"name":"description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Fleet Management,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","6",{"property":"og:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","7",{"property":"og:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-8.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-24T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","17",{"name":"twitter:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-8.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_index.segment.rsc b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._tree.txt b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_tree.segment.rsc similarity index 93% rename from build/blog/fleet-reduction-without-compromising-delivery-volume/__next._tree.txt rename to .next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_tree.segment.rsc index 3bf8395..c48fb75 100644 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._tree.txt +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/blog-post-pic-8.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"fleet-reduction-without-compromising-delivery-volume","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"fleet-reduction-without-compromising-delivery-volume","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog.segment.rsc b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog/$d$slug/__PAGE__.segment.rsc index 5239b9b..6ba8d13 100644 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/fleet-reduction-without-compromising-delivery-volume.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 15:"$Sreact.suspense" -17:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -18:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +17:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +18:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/blog-post-pic-8.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Fleet Reduction Without Compromising Delivery Volume\",\"description\":\"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-8.webp\"],\"datePublished\":\"2025-07-24T00:00:00.000Z\",\"dateModified\":\"2025-07-24T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"},\"articleSection\":\"Fleet Management\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Fleet Reduction Without Compromising Delivery Volume\",\"item\":\"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-8.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Fleet Reduction Without Compromising Delivery Volume\",\"description\":\"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\"image\":[\"https://doormile.com/images/blog-post-pic-8.webp\"],\"datePublished\":\"2025-07-24T00:00:00.000Z\",\"dateModified\":\"2025-07-24T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"},\"articleSection\":\"Fleet Management\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Fleet Reduction Without Compromising Delivery Volume\",\"item\":\"https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-8.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-8.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Fleet Management"}],["$","h1",null,{"className":"dm-banner-title","children":"Fleet Reduction Without Compromising Delivery Volume"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Fleet Reduction Without Compromising Delivery Volume"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-07-24","children":"Jul 24, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Fleet Reduction Without Compromising Delivery Volume looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$La","$Lb"]}]}],"$Lc","$Ld","$Le","$Lf","$L10"]}]]}],"$L11"]}]]}] 12:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$12"}}],"$L13"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","children":"$@16"}]}] a:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L17",null,{"src":"/images/blog-post-pic-8.webp","alt":"Fleet Reduction Without Compromising Delivery Volume","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] b:["$","figcaption",null,{"children":"Fleet Management: route planning decisions made before dispatch."}] diff --git a/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.html b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.html new file mode 100644 index 0000000..11fca76 --- /dev/null +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.html @@ -0,0 +1,1168 @@ +How Better Planning Improves Last-Mile EV Delivery – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Technology

How Better Planning Improves Last-Mile EV Delivery

Doormile Team2 min read

The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.

For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs.

The shift from fixed rules to daily planning

A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual.

  • Order volumes by area, time slot, and customer type
  • Travel times based on the city's actual traffic patterns
  • Battery use by vehicle type, rider load, and route length
  • Feedback from completed deliveries, failed attempts, and late arrivals

Adjusting during the day

The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand.

During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance.

Electric delivery vehicle routing visualisation
EV route plans need to account for range, load, traffic, and charging time before riders leave the hub.

With EVs, a route is only useful if the vehicle can finish it and still return safely.

Doormile Operations

What this means for operators

For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window.

  1. Record delivery times, failed attempts, traffic delays, and charging cycles.
  2. Build travel-time estimates from the areas your riders actually serve.
  3. Check every route against battery capacity before dispatch.
  4. Replan when traffic, orders, or vehicle availability changes.

The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time.

\ No newline at end of file diff --git a/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.meta b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.meta new file mode 100644 index 0000000..b18c238 --- /dev/null +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/how-ai-is-transforming-last-mile-ev-delivery" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery.txt b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.rsc similarity index 79% rename from build/blog/how-ai-is-transforming-last-mile-ev-delivery.txt rename to .next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.rsc index e4ac319..2540548 100644 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery.txt +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","how-ai-is-transforming-last-mile-ev-delivery"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-ai-is-transforming-last-mile-ev-delivery","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","how-ai-is-transforming-last-mile-ev-delivery"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-ai-is-transforming-last-mile-ev-delivery","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-17.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Better Planning Improves Last-Mile EV Delivery\",\"description\":\"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-17.webp\"],\"datePublished\":\"2025-10-02T00:00:00.000Z\",\"dateModified\":\"2025-10-02T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Better Planning Improves Last-Mile EV Delivery\",\"item\":\"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-17.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Better Planning Improves Last-Mile EV Delivery\",\"description\":\"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\"image\":[\"https://doormile.com/images/blog-post-pic-17.webp\"],\"datePublished\":\"2025-10-02T00:00:00.000Z\",\"dateModified\":\"2025-10-02T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Better Planning Improves Last-Mile EV Delivery\",\"item\":\"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-17.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-17.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Technology"}],["$","h1",null,{"className":"dm-banner-title","children":"How Better Planning Improves Last-Mile EV Delivery"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"How Better Planning Improves Last-Mile EV Delivery"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-10-02","children":"Oct 2, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The shift from fixed rules to daily planning"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Order volumes by area, time slot, and customer type"}],["$","li","1",{"children":"Travel times based on the city's actual traffic patterns"}],["$","li","2",{"children":"Battery use by vehicle type, rider load, and route length"}],["$","li","3",{"children":"Feedback from completed deliveries, failed attempts, and late arrivals"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"Adjusting during the day"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand."}]}],"$L1d","$L1e","$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance."}]}] 1e:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/ev-paradox.webp","alt":"Electric delivery vehicle routing visualisation","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub."}]]}]}] 1f:["$","$L1c","8",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"With EVs, a route is only useful if the vehicle can finish it and still return safely."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"How Better Planning Improves Last-Mile EV Delivery – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","6",{"property":"og:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","7",{"property":"og:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-17.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-10-02T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-17.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"How Better Planning Improves Last-Mile EV Delivery – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","6",{"property":"og:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","7",{"property":"og:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-17.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-10-02T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-17.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._full.txt b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_full.segment.rsc similarity index 79% rename from build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._full.txt rename to .next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_full.segment.rsc index e4ac319..2540548 100644 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._full.txt +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","how-ai-is-transforming-last-mile-ev-delivery"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-ai-is-transforming-last-mile-ev-delivery","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","how-ai-is-transforming-last-mile-ev-delivery"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-ai-is-transforming-last-mile-ev-delivery","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-17.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Better Planning Improves Last-Mile EV Delivery\",\"description\":\"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-17.webp\"],\"datePublished\":\"2025-10-02T00:00:00.000Z\",\"dateModified\":\"2025-10-02T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Better Planning Improves Last-Mile EV Delivery\",\"item\":\"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-17.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Better Planning Improves Last-Mile EV Delivery\",\"description\":\"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\"image\":[\"https://doormile.com/images/blog-post-pic-17.webp\"],\"datePublished\":\"2025-10-02T00:00:00.000Z\",\"dateModified\":\"2025-10-02T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Better Planning Improves Last-Mile EV Delivery\",\"item\":\"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-17.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-17.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Technology"}],["$","h1",null,{"className":"dm-banner-title","children":"How Better Planning Improves Last-Mile EV Delivery"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"How Better Planning Improves Last-Mile EV Delivery"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-10-02","children":"Oct 2, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The shift from fixed rules to daily planning"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Order volumes by area, time slot, and customer type"}],["$","li","1",{"children":"Travel times based on the city's actual traffic patterns"}],["$","li","2",{"children":"Battery use by vehicle type, rider load, and route length"}],["$","li","3",{"children":"Feedback from completed deliveries, failed attempts, and late arrivals"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"Adjusting during the day"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand."}]}],"$L1d","$L1e","$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance."}]}] 1e:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/ev-paradox.webp","alt":"Electric delivery vehicle routing visualisation","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub."}]]}]}] 1f:["$","$L1c","8",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"With EVs, a route is only useful if the vehicle can finish it and still return safely."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"How Better Planning Improves Last-Mile EV Delivery – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","6",{"property":"og:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","7",{"property":"og:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-17.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-10-02T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-17.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"How Better Planning Improves Last-Mile EV Delivery – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","6",{"property":"og:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","7",{"property":"og:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-17.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-10-02T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-17.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_head.segment.rsc b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_head.segment.rsc new file mode 100644 index 0000000..9504b7a --- /dev/null +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"How Better Planning Improves Last-Mile EV Delivery – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","6",{"property":"og:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","7",{"property":"og:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-17.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-10-02T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-17.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_index.segment.rsc b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._tree.txt b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_tree.segment.rsc similarity index 88% rename from build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._tree.txt rename to .next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_tree.segment.rsc index 1bdf87d..899903d 100644 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._tree.txt +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/blog-post-pic-17.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"how-ai-is-transforming-last-mile-ev-delivery","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"how-ai-is-transforming-last-mile-ev-delivery","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog.segment.rsc b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog/$d$slug/__PAGE__.segment.rsc index 725c261..2384deb 100644 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/how-ai-is-transforming-last-mile-ev-delivery.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 15:"$Sreact.suspense" -17:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -18:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +17:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +18:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/blog-post-pic-17.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Better Planning Improves Last-Mile EV Delivery\",\"description\":\"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-17.webp\"],\"datePublished\":\"2025-10-02T00:00:00.000Z\",\"dateModified\":\"2025-10-02T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Better Planning Improves Last-Mile EV Delivery\",\"item\":\"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-17.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Better Planning Improves Last-Mile EV Delivery\",\"description\":\"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\"image\":[\"https://doormile.com/images/blog-post-pic-17.webp\"],\"datePublished\":\"2025-10-02T00:00:00.000Z\",\"dateModified\":\"2025-10-02T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Better Planning Improves Last-Mile EV Delivery\",\"item\":\"https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-17.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-17.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Technology"}],["$","h1",null,{"className":"dm-banner-title","children":"How Better Planning Improves Last-Mile EV Delivery"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"How Better Planning Improves Last-Mile EV Delivery"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-10-02","children":"Oct 2, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The shift from fixed rules to daily planning"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Order volumes by area, time slot, and customer type"}],["$","li","1",{"children":"Travel times based on the city's actual traffic patterns"}],["$","li","2",{"children":"Battery use by vehicle type, rider load, and route length"}],["$","li","3",{"children":"Feedback from completed deliveries, failed attempts, and late arrivals"}]]}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"Adjusting during the day"}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand."}]}],"$La","$Lb","$Lc","$Ld","$Le","$Lf","$L10"]}]]}],"$L11"]}]]}] 12:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$12"}}],"$L13"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","children":"$@16"}]}] a:["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance."}]}] b:["$","$L9","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L17",null,{"src":"/images/ev-paradox.webp","alt":"Electric delivery vehicle routing visualisation","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub."}]]}]}] diff --git a/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.html b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.html new file mode 100644 index 0000000..6c01b36 --- /dev/null +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.html @@ -0,0 +1,1168 @@ +How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Operations

How Doormile Maintains 99.9% SLA Compliance at Scale

Doormile Team2 min read

Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. How Doormile Maintains 99.9% SLA Compliance at Scale looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

How Doormile Maintains 99.9% SLA Compliance at Scale
Operations: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.meta b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.meta new file mode 100644 index 0000000..7863d97 --- /dev/null +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/how-doormile-maintains-99-9-sla-compliance-at-scale" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.txt b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.rsc similarity index 79% rename from build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.txt rename to .next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.rsc index 2e8a0a9..470d641 100644 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.txt +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","how-doormile-maintains-99-9-sla-compliance-at-scale"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-doormile-maintains-99-9-sla-compliance-at-scale","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","how-doormile-maintains-99-9-sla-compliance-at-scale"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-doormile-maintains-99-9-sla-compliance-at-scale","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/last-mile-approach.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"description\":\"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\"image\":[\"https://www.doormile.com/images/last-mile-approach.webp\"],\"datePublished\":\"2025-06-26T00:00:00.000Z\",\"dateModified\":\"2025-06-26T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"},\"articleSection\":\"Operations\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"item\":\"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/last-mile-approach.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"description\":\"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\"image\":[\"https://doormile.com/images/last-mile-approach.webp\"],\"datePublished\":\"2025-06-26T00:00:00.000Z\",\"dateModified\":\"2025-06-26T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"},\"articleSection\":\"Operations\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"item\":\"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/last-mile-approach.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/last-mile-approach.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Operations"}],["$","h1",null,{"className":"dm-banner-title","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-06-26","children":"Jun 26, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. How Doormile Maintains 99.9% SLA Compliance at Scale looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":"$L1d"}],"$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L27",null,{"src":"/images/last-mile-approach.webp","alt":"How Doormile Maintains 99.9% SLA Compliance at Scale","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}] 1e:["$","figcaption",null,{"children":"Operations: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -541,6 +541,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 30:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 31:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -32:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +32:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile"}],["$","meta","1",{"name":"description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Operations,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","6",{"property":"og:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","7",{"property":"og:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/last-mile-approach.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-26T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","17",{"name":"twitter:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/last-mile-approach.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] +14:[["$","title","0",{"children":"How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile"}],["$","meta","1",{"name":"description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Operations,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","6",{"property":"og:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","7",{"property":"og:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/last-mile-approach.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-26T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","17",{"name":"twitter:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/last-mile-approach.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._full.txt b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_full.segment.rsc similarity index 79% rename from build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._full.txt rename to .next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_full.segment.rsc index 2e8a0a9..470d641 100644 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._full.txt +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","how-doormile-maintains-99-9-sla-compliance-at-scale"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-doormile-maintains-99-9-sla-compliance-at-scale","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","how-doormile-maintains-99-9-sla-compliance-at-scale"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","how-doormile-maintains-99-9-sla-compliance-at-scale","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/last-mile-approach.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"description\":\"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\"image\":[\"https://www.doormile.com/images/last-mile-approach.webp\"],\"datePublished\":\"2025-06-26T00:00:00.000Z\",\"dateModified\":\"2025-06-26T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"},\"articleSection\":\"Operations\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"item\":\"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/last-mile-approach.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"description\":\"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\"image\":[\"https://doormile.com/images/last-mile-approach.webp\"],\"datePublished\":\"2025-06-26T00:00:00.000Z\",\"dateModified\":\"2025-06-26T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"},\"articleSection\":\"Operations\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"item\":\"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/last-mile-approach.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/last-mile-approach.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Operations"}],["$","h1",null,{"className":"dm-banner-title","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-06-26","children":"Jun 26, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. How Doormile Maintains 99.9% SLA Compliance at Scale looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":"$L1d"}],"$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L27",null,{"src":"/images/last-mile-approach.webp","alt":"How Doormile Maintains 99.9% SLA Compliance at Scale","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}] 1e:["$","figcaption",null,{"children":"Operations: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -541,6 +541,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 30:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 31:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -32:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +32:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile"}],["$","meta","1",{"name":"description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Operations,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","6",{"property":"og:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","7",{"property":"og:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/last-mile-approach.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-26T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","17",{"name":"twitter:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/last-mile-approach.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] +14:[["$","title","0",{"children":"How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile"}],["$","meta","1",{"name":"description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Operations,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","6",{"property":"og:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","7",{"property":"og:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/last-mile-approach.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-26T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","17",{"name":"twitter:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/last-mile-approach.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] diff --git a/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_head.segment.rsc b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_head.segment.rsc new file mode 100644 index 0000000..37f633e --- /dev/null +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile"}],["$","meta","1",{"name":"description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Operations,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","6",{"property":"og:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","7",{"property":"og:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/last-mile-approach.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-26T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","17",{"name":"twitter:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/last-mile-approach.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_index.segment.rsc b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._tree.txt b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_tree.segment.rsc similarity index 93% rename from build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._tree.txt rename to .next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_tree.segment.rsc index 9ae97a2..9505002 100644 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._tree.txt +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/last-mile-approach.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"how-doormile-maintains-99-9-sla-compliance-at-scale","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"how-doormile-maintains-99-9-sla-compliance-at-scale","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog.segment.rsc b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog/$d$slug/__PAGE__.segment.rsc index a7c822f..5ec257e 100644 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 15:"$Sreact.suspense" -17:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -18:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +17:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +18:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/last-mile-approach.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"description\":\"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\"image\":[\"https://www.doormile.com/images/last-mile-approach.webp\"],\"datePublished\":\"2025-06-26T00:00:00.000Z\",\"dateModified\":\"2025-06-26T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"},\"articleSection\":\"Operations\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"item\":\"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/last-mile-approach.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"description\":\"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\"image\":[\"https://doormile.com/images/last-mile-approach.webp\"],\"datePublished\":\"2025-06-26T00:00:00.000Z\",\"dateModified\":\"2025-06-26T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"},\"articleSection\":\"Operations\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How Doormile Maintains 99.9% SLA Compliance at Scale\",\"item\":\"https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/last-mile-approach.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/last-mile-approach.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Operations"}],["$","h1",null,{"className":"dm-banner-title","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"How Doormile Maintains 99.9% SLA Compliance at Scale"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-06-26","children":"Jun 26, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. How Doormile Maintains 99.9% SLA Compliance at Scale looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":"$La"}],"$Lb"]}]}],"$Lc","$Ld","$Le","$Lf","$L10"]}]]}],"$L11"]}]]}] 12:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$12"}}],"$L13"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","children":"$@16"}]}] a:["$","$L17",null,{"src":"/images/last-mile-approach.webp","alt":"How Doormile Maintains 99.9% SLA Compliance at Scale","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}] b:["$","figcaption",null,{"children":"Operations: route planning decisions made before dispatch."}] diff --git a/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.html b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.html new file mode 100644 index 0000000..82db287 --- /dev/null +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.html @@ -0,0 +1,1168 @@ +MileTruth™: 10 Stages to Smarter Dispatch – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

MileTruth

MileTruth™: 10 Stages to Smarter Dispatch

Doormile Team2 min read

Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.

A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day.

The ten stages

  1. Order intake: new orders, rider availability, and vehicle status are collected.
  2. Address check: delivery points, time windows, and service notes are verified.
  3. Stop planning: each stop gets an expected service time and delivery priority.
  4. Travel-time check: routes are compared against time-of-day traffic.
  5. Constraint check: capacity, shift time, customer windows, and range are applied.
  6. Route options: several possible plans are built for the same order set.
  7. Plan selection: the lowest-cost workable route plan is selected.
  8. Battery check: EV routes are checked against real charge capacity.
  9. ETA check: promised delivery times are verified before dispatch.
  10. Dispatch output: the final route is sent to the operations team.

Why staging matters

When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue.

MileTruth routing pipeline diagram
A staged dispatch process catches address, range, and ETA issues before riders leave.

Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.

MileTruth Engineering

Comparing route options

The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger.

  • Several route plans checked before dispatch
  • Distance, time windows, capacity, and range considered together
  • Range and ETA checked before the route reaches the rider
  • Fast output that still leaves room for dispatcher review

The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub.

\ No newline at end of file diff --git a/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.meta b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.meta new file mode 100644 index 0000000..2ea5ec3 --- /dev/null +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/miletruth-ai-10-stages-to-smarter-dispatch" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch.txt b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.rsc similarity index 79% rename from build/blog/miletruth-ai-10-stages-to-smarter-dispatch.txt rename to .next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.rsc index baf8ed9..97380d0 100644 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch.txt +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","miletruth-ai-10-stages-to-smarter-dispatch"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","miletruth-ai-10-stages-to-smarter-dispatch","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","miletruth-ai-10-stages-to-smarter-dispatch"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","miletruth-ai-10-stages-to-smarter-dispatch","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-31.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"description\":\"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-31.webp\"],\"datePublished\":\"2025-09-05T00:00:00.000Z\",\"dateModified\":\"2025-09-05T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"},\"articleSection\":\"MileTruth\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"item\":\"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-31.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"description\":\"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\"image\":[\"https://doormile.com/images/blog-post-pic-31.webp\"],\"datePublished\":\"2025-09-05T00:00:00.000Z\",\"dateModified\":\"2025-09-05T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"},\"articleSection\":\"MileTruth\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"item\":\"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-31.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-31.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"MileTruth"}],["$","h1",null,{"className":"dm-banner-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"MileTruth™: 10 Stages to Smarter Dispatch"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-09-05","children":"Sep 5, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The ten stages"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ol",null,{"className":"dm-article-ol","children":[["$","li","0",{"children":"Order intake: new orders, rider availability, and vehicle status are collected."}],["$","li","1",{"children":"Address check: delivery points, time windows, and service notes are verified."}],["$","li","2",{"children":"Stop planning: each stop gets an expected service time and delivery priority."}],["$","li","3",{"children":"Travel-time check: routes are compared against time-of-day traffic."}],["$","li","4",{"children":"Constraint check: capacity, shift time, customer windows, and range are applied."}],["$","li","5",{"children":"Route options: several possible plans are built for the same order set."}],["$","li","6",{"children":"Plan selection: the lowest-cost workable route plan is selected."}],["$","li","7",{"children":"Battery check: EV routes are checked against real charge capacity."}],["$","li","8",{"children":"ETA check: promised delivery times are verified before dispatch."}],["$","li","9",{"children":"Dispatch output: the final route is sent to the operations team."}]]}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"Why staging matters"}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue."}]}],"$L1d","$L1e","$L1f","$L20","$L21","$L22"]}]]}],"$L23"]}]]}] 24:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$24"}}],"$L25"]}] -26:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -27:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +26:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +27:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L26",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth routing pipeline diagram","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"A staged dispatch process catches address, range, and ETA issues before riders leave."}]]}]}] 1e:["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical."}],["$","cite",null,{"children":"MileTruth Engineering"}]]}]}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Comparing route options"}]}] @@ -541,6 +541,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 30:["$","$L1c","the-ev-paradox-solving-range-anxiety-for-urban-fleets",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L26",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"EV Fleet"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 31:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -32:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +32:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"MileTruth™: 10 Stages to Smarter Dispatch – Doormile"}],["$","meta","1",{"name":"description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"MileTruth,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","6",{"property":"og:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","7",{"property":"og:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-31.webp"}],["$","meta","11",{"property":"og:image:alt","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-05T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","17",{"name":"twitter:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-31.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] +14:[["$","title","0",{"children":"MileTruth™: 10 Stages to Smarter Dispatch – Doormile"}],["$","meta","1",{"name":"description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"MileTruth,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","6",{"property":"og:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","7",{"property":"og:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-31.webp"}],["$","meta","11",{"property":"og:image:alt","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-05T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","17",{"name":"twitter:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-31.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._full.txt b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_full.segment.rsc similarity index 79% rename from build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._full.txt rename to .next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_full.segment.rsc index baf8ed9..97380d0 100644 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._full.txt +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","miletruth-ai-10-stages-to-smarter-dispatch"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","miletruth-ai-10-stages-to-smarter-dispatch","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","miletruth-ai-10-stages-to-smarter-dispatch"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","miletruth-ai-10-stages-to-smarter-dispatch","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-31.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"description\":\"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-31.webp\"],\"datePublished\":\"2025-09-05T00:00:00.000Z\",\"dateModified\":\"2025-09-05T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"},\"articleSection\":\"MileTruth\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"item\":\"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-31.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"description\":\"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\"image\":[\"https://doormile.com/images/blog-post-pic-31.webp\"],\"datePublished\":\"2025-09-05T00:00:00.000Z\",\"dateModified\":\"2025-09-05T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"},\"articleSection\":\"MileTruth\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"item\":\"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-31.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-31.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"MileTruth"}],["$","h1",null,{"className":"dm-banner-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"MileTruth™: 10 Stages to Smarter Dispatch"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-09-05","children":"Sep 5, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The ten stages"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ol",null,{"className":"dm-article-ol","children":[["$","li","0",{"children":"Order intake: new orders, rider availability, and vehicle status are collected."}],["$","li","1",{"children":"Address check: delivery points, time windows, and service notes are verified."}],["$","li","2",{"children":"Stop planning: each stop gets an expected service time and delivery priority."}],["$","li","3",{"children":"Travel-time check: routes are compared against time-of-day traffic."}],["$","li","4",{"children":"Constraint check: capacity, shift time, customer windows, and range are applied."}],["$","li","5",{"children":"Route options: several possible plans are built for the same order set."}],["$","li","6",{"children":"Plan selection: the lowest-cost workable route plan is selected."}],["$","li","7",{"children":"Battery check: EV routes are checked against real charge capacity."}],["$","li","8",{"children":"ETA check: promised delivery times are verified before dispatch."}],["$","li","9",{"children":"Dispatch output: the final route is sent to the operations team."}]]}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"Why staging matters"}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue."}]}],"$L1d","$L1e","$L1f","$L20","$L21","$L22"]}]]}],"$L23"]}]]}] 24:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$24"}}],"$L25"]}] -26:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -27:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +26:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +27:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L26",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth routing pipeline diagram","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"A staged dispatch process catches address, range, and ETA issues before riders leave."}]]}]}] 1e:["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical."}],["$","cite",null,{"children":"MileTruth Engineering"}]]}]}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Comparing route options"}]}] @@ -541,6 +541,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 30:["$","$L1c","the-ev-paradox-solving-range-anxiety-for-urban-fleets",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L26",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"EV Fleet"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 31:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -32:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +32:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"MileTruth™: 10 Stages to Smarter Dispatch – Doormile"}],["$","meta","1",{"name":"description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"MileTruth,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","6",{"property":"og:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","7",{"property":"og:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-31.webp"}],["$","meta","11",{"property":"og:image:alt","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-05T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","17",{"name":"twitter:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-31.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] +14:[["$","title","0",{"children":"MileTruth™: 10 Stages to Smarter Dispatch – Doormile"}],["$","meta","1",{"name":"description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"MileTruth,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","6",{"property":"og:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","7",{"property":"og:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-31.webp"}],["$","meta","11",{"property":"og:image:alt","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-05T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","17",{"name":"twitter:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-31.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L32","23",{}]] diff --git a/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_head.segment.rsc b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_head.segment.rsc new file mode 100644 index 0000000..4620eb1 --- /dev/null +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"MileTruth™: 10 Stages to Smarter Dispatch – Doormile"}],["$","meta","1",{"name":"description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"MileTruth,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","6",{"property":"og:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","7",{"property":"og:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-31.webp"}],["$","meta","11",{"property":"og:image:alt","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-05T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","17",{"name":"twitter:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-31.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_index.segment.rsc b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._tree.txt b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_tree.segment.rsc similarity index 88% rename from build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._tree.txt rename to .next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_tree.segment.rsc index c319922..8653f38 100644 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._tree.txt +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/blog-post-pic-31.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"miletruth-ai-10-stages-to-smarter-dispatch","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"miletruth-ai-10-stages-to-smarter-dispatch","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog.segment.rsc b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog/$d$slug/__PAGE__.segment.rsc index a7c77dc..32f30bb 100644 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/miletruth-ai-10-stages-to-smarter-dispatch.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 14:"$Sreact.suspense" -16:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -17:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +16:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +17:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/blog-post-pic-31.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"description\":\"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-31.webp\"],\"datePublished\":\"2025-09-05T00:00:00.000Z\",\"dateModified\":\"2025-09-05T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"},\"articleSection\":\"MileTruth\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"item\":\"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-31.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"description\":\"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\"image\":[\"https://doormile.com/images/blog-post-pic-31.webp\"],\"datePublished\":\"2025-09-05T00:00:00.000Z\",\"dateModified\":\"2025-09-05T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"},\"articleSection\":\"MileTruth\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MileTruth™: 10 Stages to Smarter Dispatch\",\"item\":\"https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-31.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-31.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"MileTruth"}],["$","h1",null,{"className":"dm-banner-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"MileTruth™: 10 Stages to Smarter Dispatch"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-09-05","children":"Sep 5, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"The ten stages"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ol",null,{"className":"dm-article-ol","children":[["$","li","0",{"children":"Order intake: new orders, rider availability, and vehicle status are collected."}],["$","li","1",{"children":"Address check: delivery points, time windows, and service notes are verified."}],["$","li","2",{"children":"Stop planning: each stop gets an expected service time and delivery priority."}],["$","li","3",{"children":"Travel-time check: routes are compared against time-of-day traffic."}],["$","li","4",{"children":"Constraint check: capacity, shift time, customer windows, and range are applied."}],["$","li","5",{"children":"Route options: several possible plans are built for the same order set."}],["$","li","6",{"children":"Plan selection: the lowest-cost workable route plan is selected."}],["$","li","7",{"children":"Battery check: EV routes are checked against real charge capacity."}],["$","li","8",{"children":"ETA check: promised delivery times are verified before dispatch."}],["$","li","9",{"children":"Dispatch output: the final route is sent to the operations team."}]]}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"Why staging matters"}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue."}]}],"$La","$Lb","$Lc","$Ld","$Le","$Lf"]}]]}],"$L10"]}]]}] 11:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$11"}}],"$L12"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L13",null,{"children":["$","$14",null,{"name":"Next.MetadataOutlet","children":"$@15"}]}] a:["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":["$","$L16",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth routing pipeline diagram","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}],["$","figcaption",null,{"children":"A staged dispatch process catches address, range, and ETA issues before riders leave."}]]}]}] b:["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical."}],["$","cite",null,{"children":"MileTruth Engineering"}]]}]}] diff --git a/.next/server/app/blog/page.js b/.next/server/app/blog/page.js new file mode 100644 index 0000000..795cb12 --- /dev/null +++ b/.next/server/app/blog/page.js @@ -0,0 +1,16 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/blog/page.js") +R.c("server/chunks/ssr/_0sw0r2k._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0800b30._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0kg5hi0.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(87282) +module.exports=R.m(87282).exports diff --git a/.next/server/app/blog/page.js.map b/.next/server/app/blog/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/blog/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/blog/page.js.nft.json b/.next/server/app/blog/page.js.nft.json new file mode 100644 index 0000000..5f5b2c8 --- /dev/null +++ b/.next/server/app/blog/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0800b30._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_0sw0r2k._.js","../../chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0kg5hi0.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/blog/page/app-paths-manifest.json b/.next/server/app/blog/page/app-paths-manifest.json new file mode 100644 index 0000000..9661d98 --- /dev/null +++ b/.next/server/app/blog/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/blog/page": "app/blog/page.js" +} \ No newline at end of file diff --git a/.next/server/app/blog/page/build-manifest.json b/.next/server/app/blog/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/blog/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/blog/page/next-font-manifest.json b/.next/server/app/blog/page/next-font-manifest.json new file mode 100644 index 0000000..9df6a95 --- /dev/null +++ b/.next/server/app/blog/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/blog/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/blog/page/react-loadable-manifest.json b/.next/server/app/blog/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/blog/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/blog/page/server-reference-manifest.json b/.next/server/app/blog/page/server-reference-manifest.json new file mode 100644 index 0000000..ec6db1c --- /dev/null +++ b/.next/server/app/blog/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/blog/page": { + "moduleId": 62245, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/blog/page_client-reference-manifest.js b/.next/server/app/blog/page_client-reference-manifest.js new file mode 100644 index 0000000..4703a31 --- /dev/null +++ b/.next/server/app/blog/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/blog/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/Reveal.tsx ":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/Reveal.tsx":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"2018":{"*":{"id":36002,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"2018":{"*":{"id":9386,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/blog/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/blog/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"]}}; + diff --git a/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.html b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.html new file mode 100644 index 0000000..41927fa --- /dev/null +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.html @@ -0,0 +1,1168 @@ +The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

EV Fleet

The EV Paradox: Solving Range Anxiety for Urban Fleets

Doormile Team2 min read

Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. The EV Paradox: Solving Range Anxiety for Urban Fleets looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

The EV Paradox: Solving Range Anxiety for Urban Fleets
EV Fleet: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.meta b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.meta new file mode 100644 index 0000000..c2c850c --- /dev/null +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.txt b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.rsc similarity index 79% rename from build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.txt rename to .next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.rsc index 7d48a4a..a2ec5a0 100644 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.txt +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","the-ev-paradox-solving-range-anxiety-for-urban-fleets"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","the-ev-paradox-solving-range-anxiety-for-urban-fleets","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","the-ev-paradox-solving-range-anxiety-for-urban-fleets"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","the-ev-paradox-solving-range-anxiety-for-urban-fleets","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/ev-paradox.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"description\":\"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\"image\":[\"https://www.doormile.com/images/ev-paradox.webp\"],\"datePublished\":\"2025-08-21T00:00:00.000Z\",\"dateModified\":\"2025-08-21T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"item\":\"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/ev-paradox.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"description\":\"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\"image\":[\"https://doormile.com/images/ev-paradox.webp\"],\"datePublished\":\"2025-08-21T00:00:00.000Z\",\"dateModified\":\"2025-08-21T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"item\":\"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/ev-paradox.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/ev-paradox.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"EV Fleet"}],["$","h1",null,{"className":"dm-banner-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-08-21","children":"Aug 21, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. The EV Paradox: Solving Range Anxiety for Urban Fleets looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"EV Fleet: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","$L1c","42-less-distance-insights-from-our-hyderabad-hub",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/42-less-distance-insights-from-our-hyderabad-hub","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-15.webp","alt":"42% Less Distance: Insights from Our Hyderabad Hub","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"Case Study"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile"}],["$","meta","1",{"name":"description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","6",{"property":"og:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","7",{"property":"og:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/ev-paradox.webp"}],["$","meta","11",{"property":"og:image:alt","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-21T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","17",{"name":"twitter:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/ev-paradox.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile"}],["$","meta","1",{"name":"description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","6",{"property":"og:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","7",{"property":"og:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/ev-paradox.webp"}],["$","meta","11",{"property":"og:image:alt","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-21T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","17",{"name":"twitter:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/ev-paradox.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._full.txt b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_full.segment.rsc similarity index 79% rename from build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._full.txt rename to .next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_full.segment.rsc index 7d48a4a..a2ec5a0 100644 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._full.txt +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","the-ev-paradox-solving-range-anxiety-for-urban-fleets"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","the-ev-paradox-solving-range-anxiety-for-urban-fleets","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","the-ev-paradox-solving-range-anxiety-for-urban-fleets"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","the-ev-paradox-solving-range-anxiety-for-urban-fleets","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/ev-paradox.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"description\":\"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\"image\":[\"https://www.doormile.com/images/ev-paradox.webp\"],\"datePublished\":\"2025-08-21T00:00:00.000Z\",\"dateModified\":\"2025-08-21T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"item\":\"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/ev-paradox.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"description\":\"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\"image\":[\"https://doormile.com/images/ev-paradox.webp\"],\"datePublished\":\"2025-08-21T00:00:00.000Z\",\"dateModified\":\"2025-08-21T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"item\":\"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/ev-paradox.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/ev-paradox.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"EV Fleet"}],["$","h1",null,{"className":"dm-banner-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-08-21","children":"Aug 21, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. The EV Paradox: Solving Range Anxiety for Urban Fleets looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$L1d","$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L27",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] 1e:["$","figcaption",null,{"children":"EV Fleet: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","$L1c","42-less-distance-insights-from-our-hyderabad-hub",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/42-less-distance-insights-from-our-hyderabad-hub","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-15.webp","alt":"42% Less Distance: Insights from Our Hyderabad Hub","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"Case Study"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile"}],["$","meta","1",{"name":"description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","6",{"property":"og:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","7",{"property":"og:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/ev-paradox.webp"}],["$","meta","11",{"property":"og:image:alt","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-21T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","17",{"name":"twitter:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/ev-paradox.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile"}],["$","meta","1",{"name":"description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","6",{"property":"og:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","7",{"property":"og:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/ev-paradox.webp"}],["$","meta","11",{"property":"og:image:alt","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-21T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","17",{"name":"twitter:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/ev-paradox.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_head.segment.rsc b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_head.segment.rsc new file mode 100644 index 0000000..0cabf73 --- /dev/null +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile"}],["$","meta","1",{"name":"description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","6",{"property":"og:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","7",{"property":"og:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/ev-paradox.webp"}],["$","meta","11",{"property":"og:image:alt","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-21T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","17",{"name":"twitter:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/ev-paradox.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_index.segment.rsc b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._tree.txt b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_tree.segment.rsc similarity index 93% rename from build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._tree.txt rename to .next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_tree.segment.rsc index 1c23eff..d37dc4b 100644 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._tree.txt +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/ev-paradox.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"the-ev-paradox-solving-range-anxiety-for-urban-fleets","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"the-ev-paradox-solving-range-anxiety-for-urban-fleets","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog.segment.rsc b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog/$d$slug/__PAGE__.segment.rsc index 079e1a6..54e3224 100644 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 15:"$Sreact.suspense" -17:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -18:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +17:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +18:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/ev-paradox.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"description\":\"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\"image\":[\"https://www.doormile.com/images/ev-paradox.webp\"],\"datePublished\":\"2025-08-21T00:00:00.000Z\",\"dateModified\":\"2025-08-21T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"item\":\"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/ev-paradox.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"description\":\"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\"image\":[\"https://doormile.com/images/ev-paradox.webp\"],\"datePublished\":\"2025-08-21T00:00:00.000Z\",\"dateModified\":\"2025-08-21T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"},\"articleSection\":\"EV Fleet\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\"item\":\"https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/ev-paradox.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/ev-paradox.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"EV Fleet"}],["$","h1",null,{"className":"dm-banner-title","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-08-21","children":"Aug 21, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. The EV Paradox: Solving Range Anxiety for Urban Fleets looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":["$La","$Lb"]}]}],"$Lc","$Ld","$Le","$Lf","$L10"]}]]}],"$L11"]}]]}] 12:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$12"}}],"$L13"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","children":"$@16"}]}] a:["$","span",null,{"className":"dm-article-figure-img","children":["$","$L17",null,{"src":"/images/ev-paradox.webp","alt":"The EV Paradox: Solving Range Anxiety for Urban Fleets","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}]}] b:["$","figcaption",null,{"children":"EV Fleet: route planning decisions made before dispatch."}] diff --git a/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.html b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.html new file mode 100644 index 0000000..f55bf1f --- /dev/null +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.html @@ -0,0 +1,1168 @@ +Why Mathematical Precision Beats Heuristics in Routing – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Technology

Why Mathematical Precision Beats Heuristics in Routing

Doormile Team2 min read

Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Why Mathematical Precision Beats Heuristics in Routing looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Why Mathematical Precision Beats Heuristics in Routing
Technology: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.meta b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.meta new file mode 100644 index 0000000..6130345 --- /dev/null +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.meta @@ -0,0 +1,16 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/blog/layout,_N_T_/blog/[slug]/layout,_N_T_/blog/[slug]/page,_N_T_/blog/why-mathematical-precision-beats-heuristics-in-routing" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/blog/$d$slug/__PAGE__", + "/blog/$d$slug", + "/blog", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing.txt b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.rsc similarity index 79% rename from build/blog/why-mathematical-precision-beats-heuristics-in-routing.txt rename to .next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.rsc index 0c30390..68ca780 100644 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing.txt +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","why-mathematical-precision-beats-heuristics-in-routing"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","why-mathematical-precision-beats-heuristics-in-routing","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","why-mathematical-precision-beats-heuristics-in-routing"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","why-mathematical-precision-beats-heuristics-in-routing","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-14.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"description\":\"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-14.webp\"],\"datePublished\":\"2025-08-07T00:00:00.000Z\",\"dateModified\":\"2025-08-07T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"item\":\"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-14.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"description\":\"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\"image\":[\"https://doormile.com/images/blog-post-pic-14.webp\"],\"datePublished\":\"2025-08-07T00:00:00.000Z\",\"dateModified\":\"2025-08-07T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"item\":\"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-14.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-14.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Technology"}],["$","h1",null,{"className":"dm-banner-title","children":"Why Mathematical Precision Beats Heuristics in Routing"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Why Mathematical Precision Beats Heuristics in Routing"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-08-07","children":"Aug 7, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Why Mathematical Precision Beats Heuristics in Routing looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":"$L1d"}],"$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L27",null,{"src":"/images/blog-post-pic-14.webp","alt":"Why Mathematical Precision Beats Heuristics in Routing","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}] 1e:["$","figcaption",null,{"children":"Technology: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Why Mathematical Precision Beats Heuristics in Routing – Doormile"}],["$","meta","1",{"name":"description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","6",{"property":"og:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","7",{"property":"og:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-14.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-07T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","17",{"name":"twitter:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-14.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"Why Mathematical Precision Beats Heuristics in Routing – Doormile"}],["$","meta","1",{"name":"description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","6",{"property":"og:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","7",{"property":"og:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-14.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-07T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","17",{"name":"twitter:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-14.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._full.txt b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_full.segment.rsc similarity index 79% rename from build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._full.txt rename to .next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_full.segment.rsc index 0c30390..68ca780 100644 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._full.txt +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_full.segment.rsc @@ -1,20 +1,20 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +13:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,7 +22,7 @@ e:"$Sreact.suspense" :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","blog","why-mathematical-precision-beats-heuristics-in-routing"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","why-mathematical-precision-beats-heuristics-in-routing","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"P":null,"c":["","blog","why-mathematical-precision-beats-heuristics-in-routing"],"q":"","i":false,"f":[[["",{"children":["blog",{"children":[["slug","why-mathematical-precision-beats-heuristics-in-routing","d",null],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",[["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true,"nonce":"$undefined"}]],["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} 16:[] 10:"$W16" :HL["/images/blog-post-pic-14.webp","image"] @@ -351,9 +351,9 @@ e:"$Sreact.suspense" transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"description\":\"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-14.webp\"],\"datePublished\":\"2025-08-07T00:00:00.000Z\",\"dateModified\":\"2025-08-07T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"item\":\"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-14.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] -1b:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -1c:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] +c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"description\":\"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\"image\":[\"https://doormile.com/images/blog-post-pic-14.webp\"],\"datePublished\":\"2025-08-07T00:00:00.000Z\",\"dateModified\":\"2025-08-07T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"item\":\"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-14.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18","$L19"]}],"$L1a"]}]}]]}] +1b:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +1c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] 18:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-14.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Technology"}],["$","h1",null,{"className":"dm-banner-title","children":"Why Mathematical Precision Beats Heuristics in Routing"}]]}]}]}] 19:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L1b",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L1b",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Why Mathematical Precision Beats Heuristics in Routing"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-08-07","children":"Aug 7, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L1c","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Why Mathematical Precision Beats Heuristics in Routing looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L1c","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L1c","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L1c","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L1c","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L1c","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L1c","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":"$L1d"}],"$L1e"]}]}],"$L1f","$L20","$L21","$L22","$L23"]}]]}],"$L24"]}]]}] 25:T2021, @@ -520,8 +520,8 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem .dm-blog-contact-btn { width: 100%; } } 1a:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"]}] -27:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -28:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +27:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +28:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] 1d:["$","$L27",null,{"src":"/images/blog-post-pic-14.webp","alt":"Why Mathematical Precision Beats Heuristics in Routing","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}] 1e:["$","figcaption",null,{"children":"Technology: route planning decisions made before dispatch."}] 1f:["$","$L1c","7",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","blockquote",null,{"className":"dm-article-quote","children":[["$","p",null,{"children":"A route should be checked before the rider leaves, not explained after the customer calls."}],["$","cite",null,{"children":"Doormile Operations"}]]}]}] @@ -540,6 +540,6 @@ c:["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elem 2f:["$","$L1c","miletruth-ai-10-stages-to-smarter-dispatch",{"delay":0.16,"duration":0.7,"yOffset":30,"children":["$","$L1b",null,{"href":"/blog/miletruth-ai-10-stages-to-smarter-dispatch","className":"dm-related-card","children":[["$","div",null,{"className":"dm-related-img","children":[["$","$L27",null,{"src":"/images/blog-post-pic-31.webp","alt":"MileTruth™: 10 Stages to Smarter Dispatch","fill":true,"sizes":"(max-width: 700px) 100vw, (max-width: 1024px) 50vw, 33vw","style":{"objectFit":"cover"}}],["$","span",null,{"className":"dm-related-badge","children":"MileTruth"}]]}],["$","div",null,{"className":"dm-related-body","children":[["$","h3",null,{"className":"dm-related-card-title","children":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","p",null,{"className":"dm-related-card-excerpt","children":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","span",null,{"className":"dm-related-readmore","children":["Read More",["$","svg",null,{"className":"dm-related-readmore-arrow","width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}]]}]}] 30:["$","div",null,{"className":"dm-blog-contact-cta","children":[["$","div",null,{"className":"dm-blog-contact-cta-content","children":[["$","span",null,{"className":"dm-blog-contact-eyebrow","children":"Let's talk logistics"}],["$","h2",null,{"className":"dm-blog-contact-title","children":"Ready to move smarter with Doormile?"}],["$","p",null,{"className":"dm-blog-contact-sub","children":"Tell us about your fleet and routes — we'll show you where the distance, vehicles and emissions are hiding."}]]}],["$","$L1b",null,{"href":"/contact","className":"dm-blog-contact-btn","children":["Get in Touch",["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.5","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"12 5 19 12 12 19"}]]}]]}]]}] 12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -31:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +31:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] f:null -14:[["$","title","0",{"children":"Why Mathematical Precision Beats Heuristics in Routing – Doormile"}],["$","meta","1",{"name":"description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","6",{"property":"og:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","7",{"property":"og:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-14.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-07T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","17",{"name":"twitter:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-14.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] +14:[["$","title","0",{"children":"Why Mathematical Precision Beats Heuristics in Routing – Doormile"}],["$","meta","1",{"name":"description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","6",{"property":"og:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","7",{"property":"og:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-14.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-07T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","17",{"name":"twitter:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-14.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L31","23",{}]] diff --git a/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_head.segment.rsc b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_head.segment.rsc new file mode 100644 index 0000000..2142001 --- /dev/null +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_head.segment.rsc @@ -0,0 +1,6 @@ +1:"$Sreact.fragment" +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +4:"$Sreact.suspense" +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Why Mathematical Precision Beats Heuristics in Routing – Doormile"}],["$","meta","1",{"name":"description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","6",{"property":"og:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","7",{"property":"og:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","8",{"property":"og:url","content":"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://doormile.com/images/blog-post-pic-14.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-07T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","17",{"name":"twitter:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","18",{"name":"twitter:image","content":"https://doormile.com/images/blog-post-pic-14.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_index.segment.rsc b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._tree.txt b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_tree.segment.rsc similarity index 93% rename from build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._tree.txt rename to .next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_tree.segment.rsc index cfcf78d..7d5fe1d 100644 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._tree.txt +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/blog-post-pic-14.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"why-mathematical-precision-beats-heuristics-in-routing","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"blog","param":null,"prefetchHints":0,"slots":{"children":{"name":"slug","param":{"type":"d","key":"why-mathematical-precision-beats-heuristics-in-routing","siblings":null},"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog.segment.rsc b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog/$d$slug.segment.rsc b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog/$d$slug.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog/$d$slug.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.$d$slug.__PAGE__.txt b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog/$d$slug/__PAGE__.segment.rsc similarity index 93% rename from build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.$d$slug.__PAGE__.txt rename to .next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog/$d$slug/__PAGE__.segment.rsc index d991266..ccbaf6e 100644 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.$d$slug.__PAGE__.txt +++ b/.next/server/app/blog/why-mathematical-precision-beats-heuristics-in-routing.segments/blog/$d$slug/__PAGE__.segment.rsc @@ -1,10 +1,10 @@ 1:"$Sreact.fragment" -8:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],""] -9:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"ScrollReveal"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +8:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],""] +9:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"ScrollReveal"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 15:"$Sreact.suspense" -17:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"Image"] -18:I[23096,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yvxf3ok9gcp_.js"],"default"] +17:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"Image"] +18:I[23096,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/16tb205t0~jhb.js"],"default"] :HL["/images/blog-post-pic-14.webp","image"] 2:T3d6f, .dm-single-blog { @@ -331,7 +331,7 @@ transition: background .2s ease, transform .2s ease; } .dm-blog-cta-btn:hover { background: var(--dm-red-hover); transform: translateY(-2px); } -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"description\":\"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\"image\":[\"https://www.doormile.com/images/blog-post-pic-14.webp\"],\"datePublished\":\"2025-08-07T00:00:00.000Z\",\"dateModified\":\"2025-08-07T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://www.doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://www.doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://www.doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://www.doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"item\":\"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-14.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Article\",\"headline\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"description\":\"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\"image\":[\"https://doormile.com/images/blog-post-pic-14.webp\"],\"datePublished\":\"2025-08-07T00:00:00.000Z\",\"dateModified\":\"2025-08-07T00:00:00.000Z\",\"author\":{\"@type\":\"Organization\",\"name\":\"Doormile Team\",\"url\":\"https://doormile.com\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Doormile\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://doormile.com/images/cropped-image-2.png\"}},\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"},\"articleSection\":\"Technology\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https://doormile.com\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https://doormile.com/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why Mathematical Precision Beats Heuristics in Routing\",\"item\":\"https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing\"}]}"}}],["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":[["$","article",null,{"className":"dm-single-blog","children":[["$","link",null,{"rel":"preload","as":"image","href":"/images/blog-post-pic-14.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3","$L4"]}],"$L5"]}]}]]}],["$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card dm-banner-card","style":{"backgroundImage":"url(/images/blog-post-pic-14.webp)","--hero-overlay":"linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.46) 55%, rgba(0,0,0,0.60) 100%)"},"children":["$","div",null,{"className":"e-con-inner dm-banner-inner","children":[["$","span",null,{"className":"dm-banner-category","children":"Technology"}],["$","h1",null,{"className":"dm-banner-title","children":"Why Mathematical Precision Beats Heuristics in Routing"}]]}]}]}] 4:["$","div",null,{"className":"dm-blog-wrap","children":[["$","div",null,{"className":"dm-meta-bar","children":[["$","nav",null,{"className":"dm-meta-breadcrumb","aria-label":"Breadcrumb","children":["$","ol",null,{"children":[["$","li",null,{"children":["$","$L8",null,{"href":"/","children":"Home"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"children":["$","$L8",null,{"href":"/blog","children":"Blog"}]}],["$","li",null,{"aria-hidden":"true","className":"dm-meta-sep","children":"/"}],["$","li",null,{"aria-current":"page","className":"dm-meta-current","children":"Why Mathematical Precision Beats Heuristics in Routing"}]]}]}],["$","div",null,{"className":"dm-meta-items","children":[["$","span",null,{"className":"dm-meta-item dm-meta-author","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","path",null,{"d":"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}],["$","circle",null,{"cx":"12","cy":"7","r":"4"}]]}],"Doormile Team"]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"2"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}]]}],["$","time",null,{"dateTime":"2025-08-07","children":"Aug 7, 2025"}]]}],["$","span",null,{"className":"dm-meta-item","children":[["$","svg",null,{"width":"15","height":"15","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","aria-hidden":"true","children":[["$","circle",null,{"cx":"12","cy":"12","r":"9"}],["$","polyline",null,{"points":"12 7 12 12 15 14"}]]}],2," min read"]}]]}]]}],["$","div",null,{"className":"dm-blog-layout","children":[["$","div",null,{"className":"dm-blog-main","children":[["$","p",null,{"className":"dm-blog-intro","children":"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch."}],["$","div",null,{"className":"dm-article-body","children":[["$","$L9","0",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Why Mathematical Precision Beats Heuristics in Routing looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub."}]}],["$","$L9","1",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h2",null,{"className":"dm-article-h2","children":"Why this matters for fleet teams"}]}],["$","$L9","2",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."}]}],["$","$L9","3",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","ul",null,{"className":"dm-article-ul","children":[["$","li","0",{"children":"Fewer vehicles needed for the same number of drops"}],["$","li","1",{"children":"Lower cost per drop through better stop sequencing"}],["$","li","2",{"children":"ETAs that match traffic, distance, and delivery windows"}],["$","li","3",{"children":"Less fuel or charge used per completed order"}]]}]}],["$","$L9","4",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","h3",null,{"className":"dm-article-h3","children":"From orders to dispatch"}]}],["$","$L9","5",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","p",null,{"className":"dm-article-p","children":"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."}]}],["$","$L9","6",{"delay":0,"duration":0.6,"yOffset":20,"children":["$","figure",null,{"className":"dm-article-figure","children":[["$","span",null,{"className":"dm-article-figure-img","children":"$La"}],"$Lb"]}]}],"$Lc","$Ld","$Le","$Lf","$L10"]}]]}],"$L11"]}]]}] 12:T2021, @@ -498,7 +498,7 @@ .dm-blog-contact-btn { width: 100%; } } 5:["$","section",null,{"className":"dm-blog-footer","aria-label":"More articles","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$12"}}],"$L13"]}] -6:["$","script","script-0",{"src":"/_next/static/chunks/0yvxf3ok9gcp_.js","async":true}] +6:["$","script","script-0",{"src":"/_next/static/chunks/16tb205t0~jhb.js","async":true}] 7:["$","$L14",null,{"children":["$","$15",null,{"name":"Next.MetadataOutlet","children":"$@16"}]}] a:["$","$L17",null,{"src":"/images/blog-post-pic-14.webp","alt":"Why Mathematical Precision Beats Heuristics in Routing","fill":true,"sizes":"(max-width: 768px) 100vw, 760px","style":{"objectFit":"cover"}}] b:["$","figcaption",null,{"children":"Technology: route planning decisions made before dispatch."}] diff --git a/build/contact.html b/.next/server/app/contact.html similarity index 53% rename from build/contact.html rename to .next/server/app/contact.html index 9137844..8ecff11 100644 --- a/build/contact.html +++ b/.next/server/app/contact.html @@ -1,4 +1,4 @@ -Contact Us – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file + \ No newline at end of file diff --git a/.next/server/app/contact.meta b/.next/server/app/contact.meta new file mode 100644 index 0000000..ed4b90f --- /dev/null +++ b/.next/server/app/contact.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/contact/layout,_N_T_/contact/page,_N_T_/contact" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/contact/__PAGE__", + "/contact", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/contact/__next._full.txt b/.next/server/app/contact.rsc similarity index 64% rename from build/contact/__next._full.txt rename to .next/server/app/contact.rsc index 71429f2..075d2b5 100644 --- a/build/contact/__next._full.txt +++ b/.next/server/app/contact.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -14:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +14:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -214,12 +214,12 @@ c:T1c00, letter-spacing: -1px !important; } } - 0:{"P":null,"c":["","contact"],"q":"","i":false,"f":[[["",{"children":["contact",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"41","className":"elementor elementor-41","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/home2-banner-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le"]}]}]}]}],["$Lf","$L10"],"$L11"]}],{},null,false,null]},null,false,"$@12"]},null,false,null],"$L13",false]],"m":"$undefined","G":["$14",["$L15"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -17:I[23466,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"default"] -18:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] + 0:{"P":null,"c":["","contact"],"q":"","i":false,"f":[[["",{"children":["contact",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"41","className":"elementor elementor-41","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le"]}]}]}]}],["$Lf","$L10"],"$L11"]}],{},null,false,null]},null,false,"$@12"]},null,false,null],"$L13",false]],"m":"$undefined","G":["$14",["$L15"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +17:I[23466,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"default"] +18:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 19:"$Sreact.suspense" -1c:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +1c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1e:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] d:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card contacts-hero-custom","children":["$","div",null,{"className":"contacts-hero-card-custom","children":[["$","div",null,{"className":"contacts-hero-bg-overlay"}],["$","div",null,{"className":"contacts-hero-grid"}],["$","div",null,{"className":"contacts-hero-glow-red"}],["$","div",null,{"className":"contacts-hero-glow-blue"}],["$","div",null,{"className":"contacts-hero-glass-card","children":["$","h1",null,{"className":"contacts-hero-title","children":[["$","span",null,{"className":"contacts-hero-title-line","children":"Delivering Trust."}],["$","span",null,{"className":"contacts-hero-title-line","children":["Beyond ",["$","span",null,{"className":"contacts-hero-title-highlight","children":"Boundaries."}]]}]]}]}]]}]}]}] 16:T6ac, .elementor-element-7304a53 { @@ -268,8 +268,8 @@ f:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/00fiud~fayo7s 1b:[] 12:"$W1b" 13:["$","$1","h",{"children":[null,["$","$L1c",null,{"children":"$L1d"}],["$","div",null,{"hidden":true,"children":["$","$L1e",null,{"children":["$","$19",null,{"name":"Next.Metadata","children":"$L1f"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -15:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +15:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 1d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -20:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +20:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 1a:null 1f:[["$","title","0",{"children":"Contact Us – Doormile"}],["$","meta","1",{"name":"description","content":"Get in touch with Doormile's last-mile logistics team. Call us, email, visit our Gachibowli, Hyderabad office, or drop a message."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L20","7",{}]] diff --git a/build/contact.txt b/.next/server/app/contact.segments/_full.segment.rsc similarity index 64% rename from build/contact.txt rename to .next/server/app/contact.segments/_full.segment.rsc index 71429f2..075d2b5 100644 --- a/build/contact.txt +++ b/.next/server/app/contact.segments/_full.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -14:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +14:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -214,12 +214,12 @@ c:T1c00, letter-spacing: -1px !important; } } - 0:{"P":null,"c":["","contact"],"q":"","i":false,"f":[[["",{"children":["contact",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"41","className":"elementor elementor-41","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/home2-banner-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le"]}]}]}]}],["$Lf","$L10"],"$L11"]}],{},null,false,null]},null,false,"$@12"]},null,false,null],"$L13",false]],"m":"$undefined","G":["$14",["$L15"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -17:I[23466,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"default"] -18:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] + 0:{"P":null,"c":["","contact"],"q":"","i":false,"f":[[["",{"children":["contact",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"41","className":"elementor elementor-41","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le"]}]}]}]}],["$Lf","$L10"],"$L11"]}],{},null,false,null]},null,false,"$@12"]},null,false,null],"$L13",false]],"m":"$undefined","G":["$14",["$L15"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +17:I[23466,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"default"] +18:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 19:"$Sreact.suspense" -1c:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +1c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1e:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] d:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card contacts-hero-custom","children":["$","div",null,{"className":"contacts-hero-card-custom","children":[["$","div",null,{"className":"contacts-hero-bg-overlay"}],["$","div",null,{"className":"contacts-hero-grid"}],["$","div",null,{"className":"contacts-hero-glow-red"}],["$","div",null,{"className":"contacts-hero-glow-blue"}],["$","div",null,{"className":"contacts-hero-glass-card","children":["$","h1",null,{"className":"contacts-hero-title","children":[["$","span",null,{"className":"contacts-hero-title-line","children":"Delivering Trust."}],["$","span",null,{"className":"contacts-hero-title-line","children":["Beyond ",["$","span",null,{"className":"contacts-hero-title-highlight","children":"Boundaries."}]]}]]}]}]]}]}]}] 16:T6ac, .elementor-element-7304a53 { @@ -268,8 +268,8 @@ f:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/00fiud~fayo7s 1b:[] 12:"$W1b" 13:["$","$1","h",{"children":[null,["$","$L1c",null,{"children":"$L1d"}],["$","div",null,{"hidden":true,"children":["$","$L1e",null,{"children":["$","$19",null,{"name":"Next.Metadata","children":"$L1f"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -15:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +15:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 1d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -20:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +20:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 1a:null 1f:[["$","title","0",{"children":"Contact Us – Doormile"}],["$","meta","1",{"name":"description","content":"Get in touch with Doormile's last-mile logistics team. Call us, email, visit our Gachibowli, Hyderabad office, or drop a message."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L20","7",{}]] diff --git a/build/contact/__next._head.txt b/.next/server/app/contact.segments/_head.segment.rsc similarity index 60% rename from build/contact/__next._head.txt rename to .next/server/app/contact.segments/_head.segment.rsc index bcf7724..a90dc55 100644 --- a/build/contact/__next._head.txt +++ b/.next/server/app/contact.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Contact Us – Doormile"}],["$","meta","1",{"name":"description","content":"Get in touch with Doormile's last-mile logistics team. Call us, email, visit our Gachibowli, Hyderabad office, or drop a message."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Contact Us – Doormile"}],["$","meta","1",{"name":"description","content":"Get in touch with Doormile's last-mile logistics team. Call us, email, visit our Gachibowli, Hyderabad office, or drop a message."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/contact.segments/_index.segment.rsc b/.next/server/app/contact.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/contact.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/contact/__next._tree.txt b/.next/server/app/contact.segments/_tree.segment.rsc similarity index 88% rename from build/contact/__next._tree.txt rename to .next/server/app/contact.segments/_tree.segment.rsc index e82b7f1..2db1e81 100644 --- a/build/contact/__next._tree.txt +++ b/.next/server/app/contact.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -8,4 +8,4 @@ :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] :HL["/images/home2-banner-3.webp","image"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"contact","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"contact","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/contact.segments/contact.segment.rsc b/.next/server/app/contact.segments/contact.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/contact.segments/contact.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/contact/__next.contact.__PAGE__.txt b/.next/server/app/contact.segments/contact/__PAGE__.segment.rsc similarity index 93% rename from build/contact/__next.contact.__PAGE__.txt rename to .next/server/app/contact.segments/contact/__PAGE__.segment.rsc index 9d11f69..29d889c 100644 --- a/build/contact/__next.contact.__PAGE__.txt +++ b/.next/server/app/contact.segments/contact/__PAGE__.segment.rsc @@ -1,8 +1,7 @@ 1:"$Sreact.fragment" -9:I[23466,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"default"] -a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +9:I[23466,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"default"] +a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] b:"$Sreact.suspense" -:HL["/images/home2-banner-3.webp","image"] :HL["/_next/static/chunks/00fiud~fayo7s.css","style"] 2:T1c00, .contacts-hero-custom { @@ -198,7 +197,7 @@ b:"$Sreact.suspense" letter-spacing: -1px !important; } } - 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"41","className":"elementor elementor-41","children":[[["$","link",null,{"rel":"preload","as":"image","href":"/images/home2-banner-3.webp"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3"],"$L4"]}]}]}]}],["$L5","$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} + 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"41","className":"elementor elementor-41","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3"],"$L4"]}]}]}]}],["$L5","$L6"],"$L7"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"custom-standard-hero-container","children":["$","div",null,{"className":"custom-standard-hero-card contacts-hero-custom","children":["$","div",null,{"className":"contacts-hero-card-custom","children":[["$","div",null,{"className":"contacts-hero-bg-overlay"}],["$","div",null,{"className":"contacts-hero-grid"}],["$","div",null,{"className":"contacts-hero-glow-red"}],["$","div",null,{"className":"contacts-hero-glow-blue"}],["$","div",null,{"className":"contacts-hero-glass-card","children":["$","h1",null,{"className":"contacts-hero-title","children":[["$","span",null,{"className":"contacts-hero-title-line","children":"Delivering Trust."}],["$","span",null,{"className":"contacts-hero-title-line","children":["Beyond ",["$","span",null,{"className":"contacts-hero-title-highlight","children":"Boundaries."}]]}]]}]}]]}]}]}] 8:T6ac, .elementor-element-7304a53 { diff --git a/.next/server/app/contact/page.js b/.next/server/app/contact/page.js new file mode 100644 index 0000000..70ca35c --- /dev/null +++ b/.next/server/app/contact/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/contact/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__12mff8~._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_01bbzeh.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(73006) +module.exports=R.m(73006).exports diff --git a/.next/server/app/contact/page.js.map b/.next/server/app/contact/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/contact/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/contact/page.js.nft.json b/.next/server/app/contact/page.js.nft.json new file mode 100644 index 0000000..ef4f071 --- /dev/null +++ b/.next/server/app/contact/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[root-of-the-server]__12mff8~._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_12x1.3y._.js","../../chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_01bbzeh.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/contact/page/app-paths-manifest.json b/.next/server/app/contact/page/app-paths-manifest.json new file mode 100644 index 0000000..bedfb9a --- /dev/null +++ b/.next/server/app/contact/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/contact/page": "app/contact/page.js" +} \ No newline at end of file diff --git a/.next/server/app/contact/page/build-manifest.json b/.next/server/app/contact/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/contact/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/contact/page/next-font-manifest.json b/.next/server/app/contact/page/next-font-manifest.json new file mode 100644 index 0000000..5ef010a --- /dev/null +++ b/.next/server/app/contact/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/contact/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/contact/page/react-loadable-manifest.json b/.next/server/app/contact/page/react-loadable-manifest.json new file mode 100644 index 0000000..857e595 --- /dev/null +++ b/.next/server/app/contact/page/react-loadable-manifest.json @@ -0,0 +1,9 @@ +{ + "42391": { + "id": 42391, + "files": [ + "static/chunks/0t48hzs_6fshe.css", + "static/chunks/0ht_jt035hxfz.js" + ] + } +} \ No newline at end of file diff --git a/.next/server/app/contact/page/server-reference-manifest.json b/.next/server/app/contact/page/server-reference-manifest.json new file mode 100644 index 0000000..ab2c1db --- /dev/null +++ b/.next/server/app/contact/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/contact/page": { + "moduleId": 8829, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/contact/page_client-reference-manifest.js b/.next/server/app/contact/page_client-reference-manifest.js new file mode 100644 index 0000000..df02cb7 --- /dev/null +++ b/.next/server/app/contact/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/contact/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/map/ContactMapEmbed.tsx ":{"id":23466,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"async":false},"[project]/src/components/map/ContactMapEmbed.tsx":{"id":23466,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vp~o9giaq0t~.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"23466":{"*":{"id":40408,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_12x1.3y._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"23466":{"*":{"id":75588,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/contact/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false},{"path":"static/chunks/00fiud~fayo7s.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/contact/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/0vp~o9giaq0t~.js"]}}; + diff --git a/.next/server/app/cookie-policy.html b/.next/server/app/cookie-policy.html new file mode 100644 index 0000000..147a9fc --- /dev/null +++ b/.next/server/app/cookie-policy.html @@ -0,0 +1,853 @@ +Cookie Policy – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file diff --git a/.next/server/app/cookie-policy.meta b/.next/server/app/cookie-policy.meta new file mode 100644 index 0000000..515d611 --- /dev/null +++ b/.next/server/app/cookie-policy.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/cookie-policy/layout,_N_T_/cookie-policy/page,_N_T_/cookie-policy" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/cookie-policy/__PAGE__", + "/cookie-policy", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/cookie-policy.txt b/.next/server/app/cookie-policy.rsc similarity index 56% rename from build/cookie-policy.txt rename to .next/server/app/cookie-policy.rsc index 1e7a78f..a4f5f70 100644 --- a/build/cookie-policy.txt +++ b/.next/server/app/cookie-policy.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -16:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -18,18 +18,17 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","cookie-policy"],"q":"","i":false,"f":[[["",{"children":["cookie-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Cookie Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","What Are Cookies?",{"children":["$","a",null,{"href":"#what-are-cookies","children":"What Are Cookies?"}]}],["$","li","Why We Use Cookies",{"children":["$","a",null,{"href":"#why-we-use-cookies","children":"Why We Use Cookies"}]}],["$","li","Types of Cookies We Use",{"children":"$Lc"}],"$Ld","$Le","$Lf","$L10"]}]}]]}]}],"$L11"]}],"$L12"]}]}]}]}],null,"$L13"]}],{},null,false,null]},null,false,"$@14"]},null,false,null],"$L15",false]],"m":"$undefined","G":["$16",["$L17"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -1b:"$Sreact.suspense" -1e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -20:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","a",null,{"href":"#types-of-cookies-we-use","children":"Types of Cookies We Use"}] -d:["$","li","Managing Cookies",{"children":["$","a",null,{"href":"#managing-cookies","children":"Managing Cookies"}]}] -e:["$","li","Cookie Consent",{"children":["$","a",null,{"href":"#cookie-consent","children":"Cookie Consent"}]}] -f:["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}] -10:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] -11:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Cookie Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"This Cookie Policy explains how Doormile uses cookies and similar technologies when you visit our website."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","What Are Cookies?",{"id":"what-are-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"What Are Cookies?"}],[["$","p","0",{"className":"dm-legal__p","children":"Cookies are small text files stored on your device that help websites remember information about your visit and improve the browsing experience."}]]]}],["$","section","Why We Use Cookies",{"id":"why-we-use-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Why We Use Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"We use cookies to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Enable essential website functionality"}],["$","li","1",{"children":"Improve website performance"}],["$","li","2",{"children":"Analyze visitor behavior and traffic patterns"}],["$","li","3",{"children":"Remember user preferences"}],["$","li","4",{"children":"Enhance overall user experience"}],["$","li","5",{"children":"Support website security"}]]}]]]}],["$","section","Types of Cookies We Use",{"id":"types-of-cookies-we-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Types of Cookies We Use"}],[["$","h3","0",{"className":"dm-legal__h3","children":"Essential Cookies"}],["$","p","1",{"className":"dm-legal__p","children":"These cookies are required for core website functionality and security features. The website may not function correctly without them."}],["$","h3","2",{"className":"dm-legal__h3","children":"Performance Cookies"}],["$","p","3",{"className":"dm-legal__p","children":"These cookies collect information about how visitors interact with the website and help us improve performance and usability."}],["$","h3","4",{"className":"dm-legal__h3","children":"Analytics Cookies"}],["$","p","5",{"className":"dm-legal__p","children":"Analytics cookies help us understand website traffic, visitor engagement, popular content, and user journeys."}],["$","h3","6",{"className":"dm-legal__h3","children":"Functional Cookies"}],["$","p","7",{"className":"dm-legal__p","children":"These cookies remember user preferences such as language, region, and other customization settings."}],["$","h3","8",{"className":"dm-legal__h3","children":"Third-Party Cookies"}],["$","p","9",{"className":"dm-legal__p","children":"Some third-party services integrated into our website, including analytics and performance monitoring tools, may place cookies on your device."}]]]}],["$","section","Managing Cookies",{"id":"managing-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Managing Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"Most web browsers allow users to control, block, or delete cookies through browser settings. Please note that disabling cookies may impact certain website features and functionality."}]]]}],["$","section","Cookie Consent",{"id":"cookie-consent","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Cookie Consent"}],[["$","p","0",{"className":"dm-legal__p","children":"Where required by applicable law, visitors may be presented with cookie consent options when accessing the website."}]]]}],["$","section","Policy Updates",{"id":"policy-updates","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Policy Updates"}],[["$","p","0",{"className":"dm-legal__p","children":"We may revise this Cookie Policy periodically to reflect changes in technology, regulations, or business practices. Updated versions will be published on this page."}]]]}],"$L18"]}]]}] -19:T15aa, +0:{"P":null,"c":["","cookie-policy"],"q":"","i":false,"f":[[["",{"children":["cookie-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Cookie Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","What Are Cookies?",{"children":["$","a",null,{"href":"#what-are-cookies","children":"What Are Cookies?"}]}],["$","li","Why We Use Cookies",{"children":["$","a",null,{"href":"#why-we-use-cookies","children":"Why We Use Cookies"}]}],["$","li","Types of Cookies We Use",{"children":["$","a",null,{"href":"#types-of-cookies-we-use","children":"Types of Cookies We Use"}]}],"$Lc","$Ld","$Le","$Lf"]}]}]]}]}],"$L10"]}],"$L11"]}]}]}]}],null,"$L12"]}],{},null,false,null]},null,false,"$@13"]},null,false,null],"$L14",false]],"m":"$undefined","G":["$15",["$L16"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +19:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +1a:"$Sreact.suspense" +1d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1f:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","li","Managing Cookies",{"children":["$","a",null,{"href":"#managing-cookies","children":"Managing Cookies"}]}] +d:["$","li","Cookie Consent",{"children":["$","a",null,{"href":"#cookie-consent","children":"Cookie Consent"}]}] +e:["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}] +f:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] +10:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Cookie Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"This Cookie Policy explains how Doormile uses cookies and similar technologies when you visit our website."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","What Are Cookies?",{"id":"what-are-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"What Are Cookies?"}],[["$","p","0",{"className":"dm-legal__p","children":"Cookies are small text files stored on your device that help websites remember information about your visit and improve the browsing experience."}]]]}],["$","section","Why We Use Cookies",{"id":"why-we-use-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Why We Use Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"We use cookies to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Enable essential website functionality"}],["$","li","1",{"children":"Improve website performance"}],["$","li","2",{"children":"Analyze visitor behavior and traffic patterns"}],["$","li","3",{"children":"Remember user preferences"}],["$","li","4",{"children":"Enhance overall user experience"}],["$","li","5",{"children":"Support website security"}]]}]]]}],["$","section","Types of Cookies We Use",{"id":"types-of-cookies-we-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Types of Cookies We Use"}],[["$","h3","0",{"className":"dm-legal__h3","children":"Essential Cookies"}],["$","p","1",{"className":"dm-legal__p","children":"These cookies are required for core website functionality and security features. The website may not function correctly without them."}],["$","h3","2",{"className":"dm-legal__h3","children":"Performance Cookies"}],["$","p","3",{"className":"dm-legal__p","children":"These cookies collect information about how visitors interact with the website and help us improve performance and usability."}],["$","h3","4",{"className":"dm-legal__h3","children":"Analytics Cookies"}],["$","p","5",{"className":"dm-legal__p","children":"Analytics cookies help us understand website traffic, visitor engagement, popular content, and user journeys."}],["$","h3","6",{"className":"dm-legal__h3","children":"Functional Cookies"}],["$","p","7",{"className":"dm-legal__p","children":"These cookies remember user preferences such as language, region, and other customization settings."}],["$","h3","8",{"className":"dm-legal__h3","children":"Third-Party Cookies"}],["$","p","9",{"className":"dm-legal__p","children":"Some third-party services integrated into our website, including analytics and performance monitoring tools, may place cookies on your device."}]]]}],["$","section","Managing Cookies",{"id":"managing-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Managing Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"Most web browsers allow users to control, block, or delete cookies through browser settings. Please note that disabling cookies may impact certain website features and functionality."}]]]}],["$","section","Cookie Consent",{"id":"cookie-consent","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Cookie Consent"}],[["$","p","0",{"className":"dm-legal__p","children":"Where required by applicable law, visitors may be presented with cookie consent options when accessing the website."}]]]}],["$","section","Policy Updates",{"id":"policy-updates","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Policy Updates"}],[["$","p","0",{"className":"dm-legal__p","children":"We may revise this Cookie Policy periodically to reflect changes in technology, regulations, or business practices. Updated versions will be published on this page."}]]]}],"$L17"]}]]}] +18:T15aa, .dm-legal { background: #ffffff; color: #334155; @@ -202,15 +201,15 @@ f:["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates" box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important; } } -12:["$","style",null,{"children":"$19"}] -13:["$","$L1a",null,{"children":["$","$1b",null,{"name":"Next.MetadataOutlet","children":"$@1c"}]}] -1d:[] -14:"$W1d" -15:["$","$1","h",{"children":[null,["$","$L1e",null,{"children":"$L1f"}],["$","div",null,{"hidden":true,"children":["$","$L20",null,{"children":["$","$1b",null,{"name":"Next.Metadata","children":"$L21"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -22:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -18:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["If you have questions regarding this Cookie Policy or our use of cookies, please contact us through our ",["$","$L22",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] -1f:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -23:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -1c:null -21:[["$","title","0",{"children":"Cookie Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile uses cookies and similar technologies when you visit our website, and how you can manage them."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L23","7",{}]] +11:["$","style",null,{"children":"$18"}] +12:["$","$L19",null,{"children":["$","$1a",null,{"name":"Next.MetadataOutlet","children":"$@1b"}]}] +1c:[] +13:"$W1c" +14:["$","$1","h",{"children":[null,["$","$L1d",null,{"children":"$L1e"}],["$","div",null,{"hidden":true,"children":["$","$L1f",null,{"children":["$","$1a",null,{"name":"Next.Metadata","children":"$L20"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +16:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +21:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +17:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["If you have questions regarding this Cookie Policy or our use of cookies, please contact us through our ",["$","$L21",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] +1e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +22:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +1b:null +20:[["$","title","0",{"children":"Cookie Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile uses cookies and similar technologies when you visit our website, and how you can manage them."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L22","7",{}]] diff --git a/build/cookie-policy/__next._full.txt b/.next/server/app/cookie-policy.segments/_full.segment.rsc similarity index 56% rename from build/cookie-policy/__next._full.txt rename to .next/server/app/cookie-policy.segments/_full.segment.rsc index 1e7a78f..a4f5f70 100644 --- a/build/cookie-policy/__next._full.txt +++ b/.next/server/app/cookie-policy.segments/_full.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -16:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +15:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -18,18 +18,17 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","cookie-policy"],"q":"","i":false,"f":[[["",{"children":["cookie-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Cookie Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","What Are Cookies?",{"children":["$","a",null,{"href":"#what-are-cookies","children":"What Are Cookies?"}]}],["$","li","Why We Use Cookies",{"children":["$","a",null,{"href":"#why-we-use-cookies","children":"Why We Use Cookies"}]}],["$","li","Types of Cookies We Use",{"children":"$Lc"}],"$Ld","$Le","$Lf","$L10"]}]}]]}]}],"$L11"]}],"$L12"]}]}]}]}],null,"$L13"]}],{},null,false,null]},null,false,"$@14"]},null,false,null],"$L15",false]],"m":"$undefined","G":["$16",["$L17"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -1b:"$Sreact.suspense" -1e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -20:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","a",null,{"href":"#types-of-cookies-we-use","children":"Types of Cookies We Use"}] -d:["$","li","Managing Cookies",{"children":["$","a",null,{"href":"#managing-cookies","children":"Managing Cookies"}]}] -e:["$","li","Cookie Consent",{"children":["$","a",null,{"href":"#cookie-consent","children":"Cookie Consent"}]}] -f:["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}] -10:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] -11:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Cookie Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"This Cookie Policy explains how Doormile uses cookies and similar technologies when you visit our website."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","What Are Cookies?",{"id":"what-are-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"What Are Cookies?"}],[["$","p","0",{"className":"dm-legal__p","children":"Cookies are small text files stored on your device that help websites remember information about your visit and improve the browsing experience."}]]]}],["$","section","Why We Use Cookies",{"id":"why-we-use-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Why We Use Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"We use cookies to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Enable essential website functionality"}],["$","li","1",{"children":"Improve website performance"}],["$","li","2",{"children":"Analyze visitor behavior and traffic patterns"}],["$","li","3",{"children":"Remember user preferences"}],["$","li","4",{"children":"Enhance overall user experience"}],["$","li","5",{"children":"Support website security"}]]}]]]}],["$","section","Types of Cookies We Use",{"id":"types-of-cookies-we-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Types of Cookies We Use"}],[["$","h3","0",{"className":"dm-legal__h3","children":"Essential Cookies"}],["$","p","1",{"className":"dm-legal__p","children":"These cookies are required for core website functionality and security features. The website may not function correctly without them."}],["$","h3","2",{"className":"dm-legal__h3","children":"Performance Cookies"}],["$","p","3",{"className":"dm-legal__p","children":"These cookies collect information about how visitors interact with the website and help us improve performance and usability."}],["$","h3","4",{"className":"dm-legal__h3","children":"Analytics Cookies"}],["$","p","5",{"className":"dm-legal__p","children":"Analytics cookies help us understand website traffic, visitor engagement, popular content, and user journeys."}],["$","h3","6",{"className":"dm-legal__h3","children":"Functional Cookies"}],["$","p","7",{"className":"dm-legal__p","children":"These cookies remember user preferences such as language, region, and other customization settings."}],["$","h3","8",{"className":"dm-legal__h3","children":"Third-Party Cookies"}],["$","p","9",{"className":"dm-legal__p","children":"Some third-party services integrated into our website, including analytics and performance monitoring tools, may place cookies on your device."}]]]}],["$","section","Managing Cookies",{"id":"managing-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Managing Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"Most web browsers allow users to control, block, or delete cookies through browser settings. Please note that disabling cookies may impact certain website features and functionality."}]]]}],["$","section","Cookie Consent",{"id":"cookie-consent","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Cookie Consent"}],[["$","p","0",{"className":"dm-legal__p","children":"Where required by applicable law, visitors may be presented with cookie consent options when accessing the website."}]]]}],["$","section","Policy Updates",{"id":"policy-updates","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Policy Updates"}],[["$","p","0",{"className":"dm-legal__p","children":"We may revise this Cookie Policy periodically to reflect changes in technology, regulations, or business practices. Updated versions will be published on this page."}]]]}],"$L18"]}]]}] -19:T15aa, +0:{"P":null,"c":["","cookie-policy"],"q":"","i":false,"f":[[["",{"children":["cookie-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Cookie Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","What Are Cookies?",{"children":["$","a",null,{"href":"#what-are-cookies","children":"What Are Cookies?"}]}],["$","li","Why We Use Cookies",{"children":["$","a",null,{"href":"#why-we-use-cookies","children":"Why We Use Cookies"}]}],["$","li","Types of Cookies We Use",{"children":["$","a",null,{"href":"#types-of-cookies-we-use","children":"Types of Cookies We Use"}]}],"$Lc","$Ld","$Le","$Lf"]}]}]]}]}],"$L10"]}],"$L11"]}]}]}]}],null,"$L12"]}],{},null,false,null]},null,false,"$@13"]},null,false,null],"$L14",false]],"m":"$undefined","G":["$15",["$L16"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +19:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +1a:"$Sreact.suspense" +1d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1f:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","li","Managing Cookies",{"children":["$","a",null,{"href":"#managing-cookies","children":"Managing Cookies"}]}] +d:["$","li","Cookie Consent",{"children":["$","a",null,{"href":"#cookie-consent","children":"Cookie Consent"}]}] +e:["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}] +f:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] +10:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Cookie Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"This Cookie Policy explains how Doormile uses cookies and similar technologies when you visit our website."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","What Are Cookies?",{"id":"what-are-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"What Are Cookies?"}],[["$","p","0",{"className":"dm-legal__p","children":"Cookies are small text files stored on your device that help websites remember information about your visit and improve the browsing experience."}]]]}],["$","section","Why We Use Cookies",{"id":"why-we-use-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Why We Use Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"We use cookies to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Enable essential website functionality"}],["$","li","1",{"children":"Improve website performance"}],["$","li","2",{"children":"Analyze visitor behavior and traffic patterns"}],["$","li","3",{"children":"Remember user preferences"}],["$","li","4",{"children":"Enhance overall user experience"}],["$","li","5",{"children":"Support website security"}]]}]]]}],["$","section","Types of Cookies We Use",{"id":"types-of-cookies-we-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Types of Cookies We Use"}],[["$","h3","0",{"className":"dm-legal__h3","children":"Essential Cookies"}],["$","p","1",{"className":"dm-legal__p","children":"These cookies are required for core website functionality and security features. The website may not function correctly without them."}],["$","h3","2",{"className":"dm-legal__h3","children":"Performance Cookies"}],["$","p","3",{"className":"dm-legal__p","children":"These cookies collect information about how visitors interact with the website and help us improve performance and usability."}],["$","h3","4",{"className":"dm-legal__h3","children":"Analytics Cookies"}],["$","p","5",{"className":"dm-legal__p","children":"Analytics cookies help us understand website traffic, visitor engagement, popular content, and user journeys."}],["$","h3","6",{"className":"dm-legal__h3","children":"Functional Cookies"}],["$","p","7",{"className":"dm-legal__p","children":"These cookies remember user preferences such as language, region, and other customization settings."}],["$","h3","8",{"className":"dm-legal__h3","children":"Third-Party Cookies"}],["$","p","9",{"className":"dm-legal__p","children":"Some third-party services integrated into our website, including analytics and performance monitoring tools, may place cookies on your device."}]]]}],["$","section","Managing Cookies",{"id":"managing-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Managing Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"Most web browsers allow users to control, block, or delete cookies through browser settings. Please note that disabling cookies may impact certain website features and functionality."}]]]}],["$","section","Cookie Consent",{"id":"cookie-consent","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Cookie Consent"}],[["$","p","0",{"className":"dm-legal__p","children":"Where required by applicable law, visitors may be presented with cookie consent options when accessing the website."}]]]}],["$","section","Policy Updates",{"id":"policy-updates","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Policy Updates"}],[["$","p","0",{"className":"dm-legal__p","children":"We may revise this Cookie Policy periodically to reflect changes in technology, regulations, or business practices. Updated versions will be published on this page."}]]]}],"$L17"]}]]}] +18:T15aa, .dm-legal { background: #ffffff; color: #334155; @@ -202,15 +201,15 @@ f:["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates" box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important; } } -12:["$","style",null,{"children":"$19"}] -13:["$","$L1a",null,{"children":["$","$1b",null,{"name":"Next.MetadataOutlet","children":"$@1c"}]}] -1d:[] -14:"$W1d" -15:["$","$1","h",{"children":[null,["$","$L1e",null,{"children":"$L1f"}],["$","div",null,{"hidden":true,"children":["$","$L20",null,{"children":["$","$1b",null,{"name":"Next.Metadata","children":"$L21"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -22:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -18:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["If you have questions regarding this Cookie Policy or our use of cookies, please contact us through our ",["$","$L22",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] -1f:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -23:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -1c:null -21:[["$","title","0",{"children":"Cookie Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile uses cookies and similar technologies when you visit our website, and how you can manage them."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L23","7",{}]] +11:["$","style",null,{"children":"$18"}] +12:["$","$L19",null,{"children":["$","$1a",null,{"name":"Next.MetadataOutlet","children":"$@1b"}]}] +1c:[] +13:"$W1c" +14:["$","$1","h",{"children":[null,["$","$L1d",null,{"children":"$L1e"}],["$","div",null,{"hidden":true,"children":["$","$L1f",null,{"children":["$","$1a",null,{"name":"Next.Metadata","children":"$L20"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +16:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +21:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +17:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["If you have questions regarding this Cookie Policy or our use of cookies, please contact us through our ",["$","$L21",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] +1e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +22:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +1b:null +20:[["$","title","0",{"children":"Cookie Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile uses cookies and similar technologies when you visit our website, and how you can manage them."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L22","7",{}]] diff --git a/build/cookie-policy/__next._head.txt b/.next/server/app/cookie-policy.segments/_head.segment.rsc similarity index 61% rename from build/cookie-policy/__next._head.txt rename to .next/server/app/cookie-policy.segments/_head.segment.rsc index c8a6003..2da72a8 100644 --- a/build/cookie-policy/__next._head.txt +++ b/.next/server/app/cookie-policy.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Cookie Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile uses cookies and similar technologies when you visit our website, and how you can manage them."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Cookie Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile uses cookies and similar technologies when you visit our website, and how you can manage them."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/cookie-policy.segments/_index.segment.rsc b/.next/server/app/cookie-policy.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/cookie-policy.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/cookie-policy/__next._tree.txt b/.next/server/app/cookie-policy.segments/_tree.segment.rsc similarity index 87% rename from build/cookie-policy/__next._tree.txt rename to .next/server/app/cookie-policy.segments/_tree.segment.rsc index e95dfff..0cc63cd 100644 --- a/build/cookie-policy/__next._tree.txt +++ b/.next/server/app/cookie-policy.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"cookie-policy","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"cookie-policy","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/cookie-policy.segments/cookie-policy.segment.rsc b/.next/server/app/cookie-policy.segments/cookie-policy.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/cookie-policy.segments/cookie-policy.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/cookie-policy/__next.cookie-policy.__PAGE__.txt b/.next/server/app/cookie-policy.segments/cookie-policy/__PAGE__.segment.rsc similarity index 95% rename from build/cookie-policy/__next.cookie-policy.__PAGE__.txt rename to .next/server/app/cookie-policy.segments/cookie-policy/__PAGE__.segment.rsc index 30d9c03..47f64a7 100644 --- a/build/cookie-policy/__next.cookie-policy.__PAGE__.txt +++ b/.next/server/app/cookie-policy.segments/cookie-policy/__PAGE__.segment.rsc @@ -1,8 +1,8 @@ 1:"$Sreact.fragment" -a:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -c:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +a:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] d:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Cookie Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","What Are Cookies?",{"children":["$","a",null,{"href":"#what-are-cookies","children":"What Are Cookies?"}]}],["$","li","Why We Use Cookies",{"children":["$","a",null,{"href":"#why-we-use-cookies","children":"Why We Use Cookies"}]}],["$","li","Types of Cookies We Use",{"children":["$","a",null,{"href":"#types-of-cookies-we-use","children":"Types of Cookies We Use"}]}],["$","li","Managing Cookies",{"children":["$","a",null,{"href":"#managing-cookies","children":"Managing Cookies"}]}],["$","li","Cookie Consent",{"children":["$","a",null,{"href":"#cookie-consent","children":"Cookie Consent"}]}],["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}],["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}]]}]}]]}]}],["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Cookie Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"This Cookie Policy explains how Doormile uses cookies and similar technologies when you visit our website."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","What Are Cookies?",{"id":"what-are-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"What Are Cookies?"}],[["$","p","0",{"className":"dm-legal__p","children":"Cookies are small text files stored on your device that help websites remember information about your visit and improve the browsing experience."}]]]}],["$","section","Why We Use Cookies",{"id":"why-we-use-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Why We Use Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"We use cookies to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Enable essential website functionality"}],["$","li","1",{"children":"Improve website performance"}],["$","li","2",{"children":"Analyze visitor behavior and traffic patterns"}],["$","li","3",{"children":"Remember user preferences"}],["$","li","4",{"children":"Enhance overall user experience"}],["$","li","5",{"children":"Support website security"}]]}]]]}],["$","section","Types of Cookies We Use",{"id":"types-of-cookies-we-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Types of Cookies We Use"}],[["$","h3","0",{"className":"dm-legal__h3","children":"Essential Cookies"}],["$","p","1",{"className":"dm-legal__p","children":"These cookies are required for core website functionality and security features. The website may not function correctly without them."}],["$","h3","2",{"className":"dm-legal__h3","children":"Performance Cookies"}],["$","p","3",{"className":"dm-legal__p","children":"These cookies collect information about how visitors interact with the website and help us improve performance and usability."}],["$","h3","4",{"className":"dm-legal__h3","children":"Analytics Cookies"}],["$","p","5",{"className":"dm-legal__p","children":"Analytics cookies help us understand website traffic, visitor engagement, popular content, and user journeys."}],["$","h3","6",{"className":"dm-legal__h3","children":"Functional Cookies"}],["$","p","7",{"className":"dm-legal__p","children":"These cookies remember user preferences such as language, region, and other customization settings."}],"$L2","$L3"]]}],"$L4","$L5","$L6","$L7"]}]]}]]}],"$L8"]}]}]}]}],null,"$L9"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Cookie Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","What Are Cookies?",{"children":["$","a",null,{"href":"#what-are-cookies","children":"What Are Cookies?"}]}],["$","li","Why We Use Cookies",{"children":["$","a",null,{"href":"#why-we-use-cookies","children":"Why We Use Cookies"}]}],["$","li","Types of Cookies We Use",{"children":["$","a",null,{"href":"#types-of-cookies-we-use","children":"Types of Cookies We Use"}]}],["$","li","Managing Cookies",{"children":["$","a",null,{"href":"#managing-cookies","children":"Managing Cookies"}]}],["$","li","Cookie Consent",{"children":["$","a",null,{"href":"#cookie-consent","children":"Cookie Consent"}]}],["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}],["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}]]}]}]]}]}],["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Cookie Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"This Cookie Policy explains how Doormile uses cookies and similar technologies when you visit our website."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","What Are Cookies?",{"id":"what-are-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"What Are Cookies?"}],[["$","p","0",{"className":"dm-legal__p","children":"Cookies are small text files stored on your device that help websites remember information about your visit and improve the browsing experience."}]]]}],["$","section","Why We Use Cookies",{"id":"why-we-use-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Why We Use Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"We use cookies to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Enable essential website functionality"}],["$","li","1",{"children":"Improve website performance"}],["$","li","2",{"children":"Analyze visitor behavior and traffic patterns"}],["$","li","3",{"children":"Remember user preferences"}],["$","li","4",{"children":"Enhance overall user experience"}],["$","li","5",{"children":"Support website security"}]]}]]]}],["$","section","Types of Cookies We Use",{"id":"types-of-cookies-we-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Types of Cookies We Use"}],[["$","h3","0",{"className":"dm-legal__h3","children":"Essential Cookies"}],["$","p","1",{"className":"dm-legal__p","children":"These cookies are required for core website functionality and security features. The website may not function correctly without them."}],["$","h3","2",{"className":"dm-legal__h3","children":"Performance Cookies"}],["$","p","3",{"className":"dm-legal__p","children":"These cookies collect information about how visitors interact with the website and help us improve performance and usability."}],["$","h3","4",{"className":"dm-legal__h3","children":"Analytics Cookies"}],["$","p","5",{"className":"dm-legal__p","children":"Analytics cookies help us understand website traffic, visitor engagement, popular content, and user journeys."}],["$","h3","6",{"className":"dm-legal__h3","children":"Functional Cookies"}],["$","p","7",{"className":"dm-legal__p","children":"These cookies remember user preferences such as language, region, and other customization settings."}],"$L2","$L3"]]}],"$L4","$L5","$L6","$L7"]}]]}]]}],"$L8"]}]}]}]}],null,"$L9"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 2:["$","h3","8",{"className":"dm-legal__h3","children":"Third-Party Cookies"}] 3:["$","p","9",{"className":"dm-legal__p","children":"Some third-party services integrated into our website, including analytics and performance monitoring tools, may place cookies on your device."}] 4:["$","section","Managing Cookies",{"id":"managing-cookies","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Managing Cookies"}],[["$","p","0",{"className":"dm-legal__p","children":"Most web browsers allow users to control, block, or delete cookies through browser settings. Please note that disabling cookies may impact certain website features and functionality."}]]]}] diff --git a/.next/server/app/cookie-policy/page.js b/.next/server/app/cookie-policy/page.js new file mode 100644 index 0000000..06ff84c --- /dev/null +++ b/.next/server/app/cookie-policy/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/cookie-policy/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__11.jnw6._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_13k2jw4.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(48726) +module.exports=R.m(48726).exports diff --git a/.next/server/app/cookie-policy/page.js.map b/.next/server/app/cookie-policy/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/cookie-policy/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/cookie-policy/page.js.nft.json b/.next/server/app/cookie-policy/page.js.nft.json new file mode 100644 index 0000000..40e2f46 --- /dev/null +++ b/.next/server/app/cookie-policy/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[root-of-the-server]__11.jnw6._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_13k2jw4.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/cookie-policy/page/app-paths-manifest.json b/.next/server/app/cookie-policy/page/app-paths-manifest.json new file mode 100644 index 0000000..58ce4b8 --- /dev/null +++ b/.next/server/app/cookie-policy/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/cookie-policy/page": "app/cookie-policy/page.js" +} \ No newline at end of file diff --git a/.next/server/app/cookie-policy/page/build-manifest.json b/.next/server/app/cookie-policy/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/cookie-policy/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/cookie-policy/page/next-font-manifest.json b/.next/server/app/cookie-policy/page/next-font-manifest.json new file mode 100644 index 0000000..a45d962 --- /dev/null +++ b/.next/server/app/cookie-policy/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/cookie-policy/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/cookie-policy/page/react-loadable-manifest.json b/.next/server/app/cookie-policy/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/cookie-policy/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/cookie-policy/page/server-reference-manifest.json b/.next/server/app/cookie-policy/page/server-reference-manifest.json new file mode 100644 index 0000000..b0a899f --- /dev/null +++ b/.next/server/app/cookie-policy/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/cookie-policy/page": { + "moduleId": 78012, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/cookie-policy/page_client-reference-manifest.js b/.next/server/app/cookie-policy/page_client-reference-manifest.js new file mode 100644 index 0000000..bc2a567 --- /dev/null +++ b/.next/server/app/cookie-policy/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/cookie-policy/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/cookie-policy/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/cookie-policy/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"]}}; + diff --git a/build/doormile-wings.html b/.next/server/app/doormile-wings.html similarity index 66% rename from build/doormile-wings.html rename to .next/server/app/doormile-wings.html index af95b39..c940f57 100644 --- a/build/doormile-wings.html +++ b/.next/server/app/doormile-wings.html @@ -1,4 +1,4 @@ -Doormile Wings – Redefining Domestic Air Logistics Through AI

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Quick Logistics

Same-Day Air Network

/ Fleet Strategy /

Purpose-Built for Regional Speed

3Phase 1 Aircraft
25Phase 2 Vision
FLEET SPECIFICATIONSAI ENGINE
0.0tATR72 Payload
0kmATR72 Range
0.0tQ400 Payload
0km/hQ400 Speed
Dedicated Freighter Capacity

Purpose-built cargo lift, not passenger-belly space competing with baggage.

Regional Route Design

Turboprop range and speed matched to India's major regional-capital corridors.

Scaling to 25 Aircraft

Phase 2 vision: pan-India connectivity hubs and international regional routes.

ATR72 Payload0.0t
ATR72 Range0km
Q400 Payload0.0t
Q400 Speed0km/h
/ Infrastructure /

A network built to move, not to sit idle

Airport Cargo Hubs

Near-airport clearance hubs instead of standalone warehouses — closer to the tarmac, faster to the aircraft.

Cross-Docking

Screening, grouping, and consolidation happen in one motion, minimizing dwell time between arrival and departure.

Asset-Light Network

Leased terminal space that flexes with demand, keeping the network nimble as new routes come online.

Scalable Operations

Modular ground infrastructure built to expand city by city without slowing down day-to-day operations.

Quick Logistics

Same-Day Air Network

/ Fleet Strategy /

Purpose-Built for Regional Speed

3Phase 1 Aircraft
25Phase 2 Vision
FLEET SPECIFICATIONSAI ENGINE
0.0tATR72 Payload
0kmATR72 Range
0.0tQ400 Payload
0km/hQ400 Speed
Dedicated Freighter Capacity

Purpose-built cargo lift, not passenger-belly space competing with baggage.

Regional Route Design

Turboprop range and speed matched to India's major regional-capital corridors.

Scaling to 25 Aircraft

Phase 2 vision: pan-India connectivity hubs and international regional routes.

ATR72 Payload0.0t
ATR72 Range0km
Q400 Payload0.0t
Q400 Speed0km/h
/ Infrastructure /

A network built to move, not to sit idle

Airport Cargo Hubs

Near-airport clearance hubs instead of standalone warehouses — closer to the tarmac, faster to the aircraft.

Cross-Docking

Screening, grouping, and consolidation happen in one motion, minimizing dwell time between arrival and departure.

Asset-Light Network

Leased terminal space that flexes with demand, keeping the network nimble as new routes come online.

Scalable Operations

Modular ground infrastructure built to expand city by city without slowing down day-to-day operations.

\ No newline at end of file + \ No newline at end of file diff --git a/.next/server/app/doormile-wings.meta b/.next/server/app/doormile-wings.meta new file mode 100644 index 0000000..570359c --- /dev/null +++ b/.next/server/app/doormile-wings.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/doormile-wings/layout,_N_T_/doormile-wings/page,_N_T_/doormile-wings" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/doormile-wings/__PAGE__", + "/doormile-wings", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/doormile-wings.txt b/.next/server/app/doormile-wings.rsc similarity index 72% rename from build/doormile-wings.txt rename to .next/server/app/doormile-wings.rsc index e45d876..86cd81e 100644 --- a/build/doormile-wings.txt +++ b/.next/server/app/doormile-wings.rsc @@ -1,25 +1,25 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[36202,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -d:I[63061,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -e:I[10425,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -1d:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[36202,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +d:I[63061,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +e:I[10425,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +1d:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/chunks/0zi3_4wi6-b2t.css","style"] +:HL["/_next/static/chunks/144so~-zgdm9_.css","style"] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] f:Tafb, @@ -119,17 +119,17 @@ f:Tafb, footer. Trimmed to a real mobile value here instead. */ .wfg-section { padding-top: 44px; padding-bottom: 44px; } } - 0:{"P":null,"c":["","doormile-wings"],"q":"","i":false,"f":[[["",{"children":["doormile-wings",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"doormile-wings","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"95","className":"elementor elementor-95 elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$f"}}],"$L10"],"$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17","$L18","$L19"],"$L1a"]}],{},null,false,null]},null,false,"$@1b"]},null,false,null],"$L1c",false]],"m":"$undefined","G":["$1d",["$L1e"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"ScrollReveal"] -20:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"StaggerChildren"] -23:I[48920,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -24:I[14224,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -25:I[55064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -26:I[13378,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -27:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] + 0:{"P":null,"c":["","doormile-wings"],"q":"","i":false,"f":[[["",{"children":["doormile-wings",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"doormile-wings","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"95","className":"elementor elementor-95 elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$f"}}],"$L10"],"$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17","$L18","$L19"],"$L1a"]}],{},null,false,null]},null,false,"$@1b"]},null,false,null],"$L1c",false]],"m":"$undefined","G":["$1d",["$L1e"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1f:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"ScrollReveal"] +20:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"StaggerChildren"] +23:I[48920,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +24:I[14224,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +25:I[55064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +26:I[13378,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +27:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 28:"$Sreact.suspense" -2b:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -2d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2b:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +2d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 10:["$","section",null,{"className":"wfg-section","id":"wings-features","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"wfg-inner","children":[["$","$L1f",null,{"delay":0.05,"duration":0.75,"yOffset":25,"className":"wfg-header","children":[["$","div",null,{"className":"wfg-eyebrow","children":"/ Why Businesses Choose Doormile Wings /"}],["$","h2",null,{"className":"wfg-title","children":"Built to be depended on"}]]}],["$","$L20",null,{"stagger":0.1,"duration":0.7,"yOffset":30,"className":"wfg-grid","children":[["$","div","AI Decision Engine",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M12 2a4 4 0 0 1 4 4v1a4 4 0 0 1-1.2 2.86A4 4 0 0 1 16 13v1a4 4 0 0 1-4 4 4 4 0 0 1-4-4v-1a4 4 0 0 1 1.2-3.14A4 4 0 0 1 8 7V6a4 4 0 0 1 4-4Z"}],["$","path",null,{"d":"M9 21h6M12 18v3"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"AI Decision Engine"}],["$","p",null,{"className":"wfg-card-desc","children":"MileTruth™ AI continuously forecasts demand and optimizes routing and load decisions in real time."}]]}],["$","div","Real-Time Visibility",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7Z"}],["$","circle",null,{"cx":"12","cy":"12","r":"3"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Real-Time Visibility"}],["$","p",null,{"className":"wfg-card-desc","children":"Live shipment tracking keeps shippers, ground teams, and customers updated at every stage."}]]}],["$","div","Faster Regional Reach",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"13 6 19 12 13 18"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Faster Regional Reach"}],["$","p",null,{"className":"wfg-card-desc","children":"A dedicated network linking major regional capitals, built for speed rather than passenger schedules."}]]}],["$","div","Reliable Scheduled Operations",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"3"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}],["$","path",null,{"d":"M9 16l2 2 4-4"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Reliable Scheduled Operations"}],["$","p",null,{"className":"wfg-card-desc","children":"Dedicated freighter capacity with consistent schedules — not subject to passenger-belly bumping."}]]}]]}]]}]}]}] 21:Tfac, .wind-section { @@ -280,20 +280,20 @@ f:Tafb, 14:["$","section",null,{"className":"WingsInfrastructure-module__akH2-q__section","id":"wings-infrastructure","children":["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__sectionShell","children":[["$","$L1f",null,{"delay":0.05,"duration":0.7,"yOffset":20,"className":"WingsInfrastructure-module__akH2-q__header","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__eyebrow","children":"/ Infrastructure /"}],["$","h2",null,{"className":"WingsInfrastructure-module__akH2-q__title","children":"A network built to move, not to sit idle"}]]}],["$","$L20",null,{"stagger":0.08,"duration":0.6,"yOffset":20,"className":"WingsInfrastructure-module__akH2-q__grid","children":[["$","div","Airport Cargo Hubs",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Airport Cargo Hubs"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Near-airport clearance hubs instead of standalone warehouses — closer to the tarmac, faster to the aircraft."}]]}],["$","div","Cross-Docking",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M3 7h7l2 3h9M3 7v10h18V10"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Cross-Docking"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Screening, grouping, and consolidation happen in one motion, minimizing dwell time between arrival and departure."}]]}],["$","div","Asset-Light Network",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"3","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"14","y":"3","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"3","y":"14","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"14","y":"14","width":"7","height":"7","rx":"1"}]]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Asset-Light Network"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Leased terminal space that flexes with demand, keeping the network nimble as new routes come online."}]]}],["$","div","Scalable Operations",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M3 21V9l6-4 6 4v12M9 21V13h6v8"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Scalable Operations"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Modular ground infrastructure built to expand city by city without slowing down day-to-day operations."}]]}]]}]]}]}] 15:["$","$L25",null,{}] 16:["$","$L26",null,{}] -17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0zi3_4wi6-b2t.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -18:["$","script","script-0",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true,"nonce":"$undefined"}] -19:["$","script","script-1",{"src":"/_next/static/chunks/0~6a87_s8h6ue.js","async":true,"nonce":"$undefined"}] +17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/144so~-zgdm9_.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +18:["$","script","script-0",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true,"nonce":"$undefined"}] +19:["$","script","script-1",{"src":"/_next/static/chunks/06~35roaehny..js","async":true,"nonce":"$undefined"}] 1a:["$","$L27",null,{"children":["$","$28",null,{"name":"Next.MetadataOutlet","children":"$@29"}]}] 2a:[] 1b:"$W2a" 1c:["$","$1","h",{"children":[null,["$","$L2b",null,{"children":"$L2c"}],["$","div",null,{"hidden":true,"children":["$","$L2d",null,{"children":["$","$28",null,{"name":"Next.Metadata","children":"$L2e"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1e:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1e:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 22:["$","section",null,{"className":"wind-section","id":"wings-industries","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"wind-inner","children":[["$","$L1f",null,{"delay":0.05,"duration":0.75,"yOffset":25,"className":"wind-header","children":[["$","div",null,{"className":"wind-eyebrow","children":"/ Industries We Serve /"}],["$","h2",null,{"className":"wind-title","children":"Built for the shipments that can’t wait"}]]}],["$","$L1f",null,{"delay":0.1,"duration":0.8,"yOffset":30,"className":"wind-grid","children":[["$","div","Quick Commerce",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 1.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Quick Commerce"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Quick Commerce"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Sub-3-hour delivery windows for dark stores and micro-warehouses."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Dedicated same-day air capacity linking metros to fulfillment hubs."}]]}]]}]]}],["$","div","Express B2B Cargo",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 2.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Express B2B Cargo"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Express B2B Cargo"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Time-critical industrial parts and components stuck on slow trunk routes."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Rapid airport-to-airport transport between major economic nodes."}]]}]]}]]}],["$","div","Healthcare & Pharma",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 3.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Healthcare & Pharma"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Healthcare & Pharma"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Temperature-sensitive, compliance-critical shipments with zero margin for error."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Active and passive cold-chain packaging with full chain-of-custody tracking."}]]}]]}]]}],["$","div","Cold Chain Logistics",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card4.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Cold Chain Logistics"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Cold Chain Logistics"}],"$L2f","$L30"]}]]}],"$L31","$L32"]}]]}]}]}] 2f:["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Perishables and fresh goods that can't survive slow surface transit."}]]}] 30:["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Precision temperature tracking matched to airline-speed transit."}]]}] 31:["$","div","High-Value Cargo",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card5.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"High-Value Cargo"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"High-Value Cargo"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Zero tolerance for loss, tampering, or delay on high-value shipments."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Maximum-security handling with real-time electronic custody tracking."}]]}]]}]]}] 32:["$","div","E-Commerce Logistics",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card6.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"E-Commerce Logistics"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"E-Commerce Logistics"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Next-day and same-day fulfillment expectations across tier-1 and tier-2 cities."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Direct sorting-hub-to-airport clearance network for faster regional delivery."}]]}]]}]]}] 2c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -33:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +33:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 29:null 2e:[["$","title","0",{"children":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","1",{"name":"description","content":"Doormile Wings links India's major regional capitals with AI-powered, same-day air logistics and zero-emission EV last-mile delivery — where quick commerce meets quick logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","5",{"property":"og:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/doormile-wings"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","15",{"name":"twitter:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L33","21",{}]] diff --git a/build/doormile-wings/__next._full.txt b/.next/server/app/doormile-wings.segments/_full.segment.rsc similarity index 72% rename from build/doormile-wings/__next._full.txt rename to .next/server/app/doormile-wings.segments/_full.segment.rsc index e45d876..86cd81e 100644 --- a/build/doormile-wings/__next._full.txt +++ b/.next/server/app/doormile-wings.segments/_full.segment.rsc @@ -1,25 +1,25 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[36202,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -d:I[63061,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -e:I[10425,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -1d:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[36202,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +d:I[63061,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +e:I[10425,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +1d:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/chunks/0zi3_4wi6-b2t.css","style"] +:HL["/_next/static/chunks/144so~-zgdm9_.css","style"] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] f:Tafb, @@ -119,17 +119,17 @@ f:Tafb, footer. Trimmed to a real mobile value here instead. */ .wfg-section { padding-top: 44px; padding-bottom: 44px; } } - 0:{"P":null,"c":["","doormile-wings"],"q":"","i":false,"f":[[["",{"children":["doormile-wings",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"doormile-wings","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"95","className":"elementor elementor-95 elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$f"}}],"$L10"],"$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17","$L18","$L19"],"$L1a"]}],{},null,false,null]},null,false,"$@1b"]},null,false,null],"$L1c",false]],"m":"$undefined","G":["$1d",["$L1e"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"ScrollReveal"] -20:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"StaggerChildren"] -23:I[48920,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -24:I[14224,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -25:I[55064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -26:I[13378,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -27:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] + 0:{"P":null,"c":["","doormile-wings"],"q":"","i":false,"f":[[["",{"children":["doormile-wings",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"doormile-wings","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"95","className":"elementor elementor-95 elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$f"}}],"$L10"],"$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17","$L18","$L19"],"$L1a"]}],{},null,false,null]},null,false,"$@1b"]},null,false,null],"$L1c",false]],"m":"$undefined","G":["$1d",["$L1e"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1f:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"ScrollReveal"] +20:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"StaggerChildren"] +23:I[48920,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +24:I[14224,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +25:I[55064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +26:I[13378,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +27:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 28:"$Sreact.suspense" -2b:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -2d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2b:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +2d:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 10:["$","section",null,{"className":"wfg-section","id":"wings-features","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"wfg-inner","children":[["$","$L1f",null,{"delay":0.05,"duration":0.75,"yOffset":25,"className":"wfg-header","children":[["$","div",null,{"className":"wfg-eyebrow","children":"/ Why Businesses Choose Doormile Wings /"}],["$","h2",null,{"className":"wfg-title","children":"Built to be depended on"}]]}],["$","$L20",null,{"stagger":0.1,"duration":0.7,"yOffset":30,"className":"wfg-grid","children":[["$","div","AI Decision Engine",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M12 2a4 4 0 0 1 4 4v1a4 4 0 0 1-1.2 2.86A4 4 0 0 1 16 13v1a4 4 0 0 1-4 4 4 4 0 0 1-4-4v-1a4 4 0 0 1 1.2-3.14A4 4 0 0 1 8 7V6a4 4 0 0 1 4-4Z"}],["$","path",null,{"d":"M9 21h6M12 18v3"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"AI Decision Engine"}],["$","p",null,{"className":"wfg-card-desc","children":"MileTruth™ AI continuously forecasts demand and optimizes routing and load decisions in real time."}]]}],["$","div","Real-Time Visibility",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7Z"}],["$","circle",null,{"cx":"12","cy":"12","r":"3"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Real-Time Visibility"}],["$","p",null,{"className":"wfg-card-desc","children":"Live shipment tracking keeps shippers, ground teams, and customers updated at every stage."}]]}],["$","div","Faster Regional Reach",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"13 6 19 12 13 18"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Faster Regional Reach"}],["$","p",null,{"className":"wfg-card-desc","children":"A dedicated network linking major regional capitals, built for speed rather than passenger schedules."}]]}],["$","div","Reliable Scheduled Operations",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"3"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}],["$","path",null,{"d":"M9 16l2 2 4-4"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Reliable Scheduled Operations"}],["$","p",null,{"className":"wfg-card-desc","children":"Dedicated freighter capacity with consistent schedules — not subject to passenger-belly bumping."}]]}]]}]]}]}]}] 21:Tfac, .wind-section { @@ -280,20 +280,20 @@ f:Tafb, 14:["$","section",null,{"className":"WingsInfrastructure-module__akH2-q__section","id":"wings-infrastructure","children":["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__sectionShell","children":[["$","$L1f",null,{"delay":0.05,"duration":0.7,"yOffset":20,"className":"WingsInfrastructure-module__akH2-q__header","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__eyebrow","children":"/ Infrastructure /"}],["$","h2",null,{"className":"WingsInfrastructure-module__akH2-q__title","children":"A network built to move, not to sit idle"}]]}],["$","$L20",null,{"stagger":0.08,"duration":0.6,"yOffset":20,"className":"WingsInfrastructure-module__akH2-q__grid","children":[["$","div","Airport Cargo Hubs",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Airport Cargo Hubs"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Near-airport clearance hubs instead of standalone warehouses — closer to the tarmac, faster to the aircraft."}]]}],["$","div","Cross-Docking",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M3 7h7l2 3h9M3 7v10h18V10"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Cross-Docking"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Screening, grouping, and consolidation happen in one motion, minimizing dwell time between arrival and departure."}]]}],["$","div","Asset-Light Network",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"3","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"14","y":"3","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"3","y":"14","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"14","y":"14","width":"7","height":"7","rx":"1"}]]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Asset-Light Network"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Leased terminal space that flexes with demand, keeping the network nimble as new routes come online."}]]}],["$","div","Scalable Operations",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M3 21V9l6-4 6 4v12M9 21V13h6v8"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Scalable Operations"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Modular ground infrastructure built to expand city by city without slowing down day-to-day operations."}]]}]]}]]}]}] 15:["$","$L25",null,{}] 16:["$","$L26",null,{}] -17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0zi3_4wi6-b2t.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -18:["$","script","script-0",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true,"nonce":"$undefined"}] -19:["$","script","script-1",{"src":"/_next/static/chunks/0~6a87_s8h6ue.js","async":true,"nonce":"$undefined"}] +17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/144so~-zgdm9_.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +18:["$","script","script-0",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true,"nonce":"$undefined"}] +19:["$","script","script-1",{"src":"/_next/static/chunks/06~35roaehny..js","async":true,"nonce":"$undefined"}] 1a:["$","$L27",null,{"children":["$","$28",null,{"name":"Next.MetadataOutlet","children":"$@29"}]}] 2a:[] 1b:"$W2a" 1c:["$","$1","h",{"children":[null,["$","$L2b",null,{"children":"$L2c"}],["$","div",null,{"hidden":true,"children":["$","$L2d",null,{"children":["$","$28",null,{"name":"Next.Metadata","children":"$L2e"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1e:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1e:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] 22:["$","section",null,{"className":"wind-section","id":"wings-industries","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"wind-inner","children":[["$","$L1f",null,{"delay":0.05,"duration":0.75,"yOffset":25,"className":"wind-header","children":[["$","div",null,{"className":"wind-eyebrow","children":"/ Industries We Serve /"}],["$","h2",null,{"className":"wind-title","children":"Built for the shipments that can’t wait"}]]}],["$","$L1f",null,{"delay":0.1,"duration":0.8,"yOffset":30,"className":"wind-grid","children":[["$","div","Quick Commerce",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 1.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Quick Commerce"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Quick Commerce"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Sub-3-hour delivery windows for dark stores and micro-warehouses."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Dedicated same-day air capacity linking metros to fulfillment hubs."}]]}]]}]]}],["$","div","Express B2B Cargo",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 2.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Express B2B Cargo"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Express B2B Cargo"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Time-critical industrial parts and components stuck on slow trunk routes."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Rapid airport-to-airport transport between major economic nodes."}]]}]]}]]}],["$","div","Healthcare & Pharma",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 3.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Healthcare & Pharma"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Healthcare & Pharma"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Temperature-sensitive, compliance-critical shipments with zero margin for error."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Active and passive cold-chain packaging with full chain-of-custody tracking."}]]}]]}]]}],["$","div","Cold Chain Logistics",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card4.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Cold Chain Logistics"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Cold Chain Logistics"}],"$L2f","$L30"]}]]}],"$L31","$L32"]}]]}]}]}] 2f:["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Perishables and fresh goods that can't survive slow surface transit."}]]}] 30:["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Precision temperature tracking matched to airline-speed transit."}]]}] 31:["$","div","High-Value Cargo",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card5.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"High-Value Cargo"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"High-Value Cargo"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Zero tolerance for loss, tampering, or delay on high-value shipments."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Maximum-security handling with real-time electronic custody tracking."}]]}]]}]]}] 32:["$","div","E-Commerce Logistics",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card6.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"E-Commerce Logistics"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"E-Commerce Logistics"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Next-day and same-day fulfillment expectations across tier-1 and tier-2 cities."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Direct sorting-hub-to-airport clearance network for faster regional delivery."}]]}]]}]]}] 2c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -33:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +33:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 29:null 2e:[["$","title","0",{"children":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","1",{"name":"description","content":"Doormile Wings links India's major regional capitals with AI-powered, same-day air logistics and zero-emission EV last-mile delivery — where quick commerce meets quick logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","5",{"property":"og:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/doormile-wings"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","15",{"name":"twitter:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L33","21",{}]] diff --git a/build/doormile-wings/__next._head.txt b/.next/server/app/doormile-wings.segments/_head.segment.rsc similarity index 77% rename from build/doormile-wings/__next._head.txt rename to .next/server/app/doormile-wings.segments/_head.segment.rsc index 1c2274e..91ea68c 100644 --- a/build/doormile-wings/__next._head.txt +++ b/.next/server/app/doormile-wings.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","1",{"name":"description","content":"Doormile Wings links India's major regional capitals with AI-powered, same-day air logistics and zero-emission EV last-mile delivery — where quick commerce meets quick logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","5",{"property":"og:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/doormile-wings"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","15",{"name":"twitter:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","1",{"name":"description","content":"Doormile Wings links India's major regional capitals with AI-powered, same-day air logistics and zero-emission EV last-mile delivery — where quick commerce meets quick logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","5",{"property":"og:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/doormile-wings"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings – Redefining Domestic Air Logistics Through AI"}],["$","meta","15",{"name":"twitter:description","content":"Same-day air logistics linking India's major regional capitals, powered by MileTruth™ AI and zero-emission EV last-mile delivery."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/doormile-wings.segments/_index.segment.rsc b/.next/server/app/doormile-wings.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/doormile-wings.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/doormile-wings/__next._tree.txt b/.next/server/app/doormile-wings.segments/_tree.segment.rsc similarity index 82% rename from build/doormile-wings/__next._tree.txt rename to .next/server/app/doormile-wings.segments/_tree.segment.rsc index f7f3493..8b05c2f 100644 --- a/build/doormile-wings/__next._tree.txt +++ b/.next/server/app/doormile-wings.segments/_tree.segment.rsc @@ -1,10 +1,10 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/chunks/0zi3_4wi6-b2t.css","style"] +:HL["/_next/static/chunks/144so~-zgdm9_.css","style"] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"doormile-wings","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"doormile-wings","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/doormile-wings.segments/doormile-wings.segment.rsc b/.next/server/app/doormile-wings.segments/doormile-wings.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/doormile-wings.segments/doormile-wings.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/doormile-wings/__next.doormile-wings.__PAGE__.txt b/.next/server/app/doormile-wings.segments/doormile-wings/__PAGE__.segment.rsc similarity index 88% rename from build/doormile-wings/__next.doormile-wings.__PAGE__.txt rename to .next/server/app/doormile-wings.segments/doormile-wings/__PAGE__.segment.rsc index c27a2d8..146cc11 100644 --- a/build/doormile-wings/__next.doormile-wings.__PAGE__.txt +++ b/.next/server/app/doormile-wings.segments/doormile-wings/__PAGE__.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[36202,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -3:I[63061,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -4:I[10425,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -11:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"ScrollReveal"] -12:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"StaggerChildren"] -15:I[48920,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -16:I[14224,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -17:I[55064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -18:I[13378,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~6a87_s8h6ue.js"],"default"] -19:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[36202,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +3:I[63061,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +4:I[10425,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +11:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"ScrollReveal"] +12:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"StaggerChildren"] +15:I[48920,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +16:I[14224,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +17:I[55064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +18:I[13378,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"default"] +19:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 1a:"$Sreact.suspense" -:HL["/_next/static/chunks/0zi3_4wi6-b2t.css","style"] +:HL["/_next/static/chunks/144so~-zgdm9_.css","style"] 5:Tafb, .wfg-section { background: #ffffff; @@ -108,7 +108,7 @@ footer. Trimmed to a real mobile value here instead. */ .wfg-section { padding-top: 44px; padding-bottom: 44px; } } - 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"doormile-wings","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"95","className":"elementor elementor-95 elementor-59","children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$5"}}],["$","section",null,{"className":"wfg-section","id":"wings-features","children":"$L6"}]],"$L7","$L8","$L9","$La","$Lb","$Lc"]}]}]}]}],["$Ld","$Le","$Lf"],"$L10"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} + 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"doormile-wings","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"95","className":"elementor elementor-95 elementor-59","children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$5"}}],["$","section",null,{"className":"wfg-section","id":"wings-features","children":"$L6"}]],"$L7","$L8","$L9","$La","$Lb","$Lc"]}]}]}]}],["$Ld","$Le","$Lf"],"$L10"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 6:["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"wfg-inner","children":[["$","$L11",null,{"delay":0.05,"duration":0.75,"yOffset":25,"className":"wfg-header","children":[["$","div",null,{"className":"wfg-eyebrow","children":"/ Why Businesses Choose Doormile Wings /"}],["$","h2",null,{"className":"wfg-title","children":"Built to be depended on"}]]}],["$","$L12",null,{"stagger":0.1,"duration":0.7,"yOffset":30,"className":"wfg-grid","children":[["$","div","AI Decision Engine",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M12 2a4 4 0 0 1 4 4v1a4 4 0 0 1-1.2 2.86A4 4 0 0 1 16 13v1a4 4 0 0 1-4 4 4 4 0 0 1-4-4v-1a4 4 0 0 1 1.2-3.14A4 4 0 0 1 8 7V6a4 4 0 0 1 4-4Z"}],["$","path",null,{"d":"M9 21h6M12 18v3"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"AI Decision Engine"}],["$","p",null,{"className":"wfg-card-desc","children":"MileTruth™ AI continuously forecasts demand and optimizes routing and load decisions in real time."}]]}],["$","div","Real-Time Visibility",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7Z"}],["$","circle",null,{"cx":"12","cy":"12","r":"3"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Real-Time Visibility"}],["$","p",null,{"className":"wfg-card-desc","children":"Live shipment tracking keeps shippers, ground teams, and customers updated at every stage."}]]}],["$","div","Faster Regional Reach",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","line",null,{"x1":"5","y1":"12","x2":"19","y2":"12"}],["$","polyline",null,{"points":"13 6 19 12 13 18"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Faster Regional Reach"}],["$","p",null,{"className":"wfg-card-desc","children":"A dedicated network linking major regional capitals, built for speed rather than passenger schedules."}]]}],["$","div","Reliable Scheduled Operations",{"className":"wfg-card","children":[["$","div",null,{"className":"wfg-icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"4","width":"18","height":"18","rx":"3"}],["$","line",null,{"x1":"16","y1":"2","x2":"16","y2":"6"}],["$","line",null,{"x1":"8","y1":"2","x2":"8","y2":"6"}],["$","line",null,{"x1":"3","y1":"10","x2":"21","y2":"10"}],["$","path",null,{"d":"M9 16l2 2 4-4"}]]}]}],["$","h3",null,{"className":"wfg-card-title","children":"Reliable Scheduled Operations"}],["$","p",null,{"className":"wfg-card-desc","children":"Dedicated freighter capacity with consistent schedules — not subject to passenger-belly bumping."}]]}]]}]]}]}] 13:Tfac, .wind-section { @@ -259,9 +259,9 @@ a:["$","section",null,{"className":"WingsInfrastructure-module__akH2-q__section","id":"wings-infrastructure","children":["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__sectionShell","children":[["$","$L11",null,{"delay":0.05,"duration":0.7,"yOffset":20,"className":"WingsInfrastructure-module__akH2-q__header","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__eyebrow","children":"/ Infrastructure /"}],["$","h2",null,{"className":"WingsInfrastructure-module__akH2-q__title","children":"A network built to move, not to sit idle"}]]}],["$","$L12",null,{"stagger":0.08,"duration":0.6,"yOffset":20,"className":"WingsInfrastructure-module__akH2-q__grid","children":[["$","div","Airport Cargo Hubs",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Airport Cargo Hubs"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Near-airport clearance hubs instead of standalone warehouses — closer to the tarmac, faster to the aircraft."}]]}],["$","div","Cross-Docking",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M3 7h7l2 3h9M3 7v10h18V10"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Cross-Docking"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Screening, grouping, and consolidation happen in one motion, minimizing dwell time between arrival and departure."}]]}],["$","div","Asset-Light Network",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"3","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"14","y":"3","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"3","y":"14","width":"7","height":"7","rx":"1"}],["$","rect",null,{"x":"14","y":"14","width":"7","height":"7","rx":"1"}]]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Asset-Light Network"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Leased terminal space that flexes with demand, keeping the network nimble as new routes come online."}]]}],["$","div","Scalable Operations",{"className":"WingsInfrastructure-module__akH2-q__card","children":[["$","div",null,{"className":"WingsInfrastructure-module__akH2-q__icon","aria-hidden":"true","children":["$","svg",null,{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M3 21V9l6-4 6 4v12M9 21V13h6v8"}]}]}],["$","h3",null,{"className":"WingsInfrastructure-module__akH2-q__cardTitle","children":"Scalable Operations"}],["$","p",null,{"className":"WingsInfrastructure-module__akH2-q__cardDesc","children":"Modular ground infrastructure built to expand city by city without slowing down day-to-day operations."}]]}]]}]]}]}] b:["$","$L17",null,{}] c:["$","$L18",null,{}] -d:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0zi3_4wi6-b2t.css","precedence":"next"}] -e:["$","script","script-0",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true}] -f:["$","script","script-1",{"src":"/_next/static/chunks/0~6a87_s8h6ue.js","async":true}] +d:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/144so~-zgdm9_.css","precedence":"next"}] +e:["$","script","script-0",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true}] +f:["$","script","script-1",{"src":"/_next/static/chunks/06~35roaehny..js","async":true}] 10:["$","$L19",null,{"children":["$","$1a",null,{"name":"Next.MetadataOutlet","children":"$@1b"}]}] 14:["$","section",null,{"className":"wind-section","id":"wings-industries","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"wind-inner","children":[["$","$L11",null,{"delay":0.05,"duration":0.75,"yOffset":25,"className":"wind-header","children":[["$","div",null,{"className":"wind-eyebrow","children":"/ Industries We Serve /"}],["$","h2",null,{"className":"wind-title","children":"Built for the shipments that can’t wait"}]]}],["$","$L11",null,{"delay":0.1,"duration":0.8,"yOffset":30,"className":"wind-grid","children":[["$","div","Quick Commerce",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 1.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Quick Commerce"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Quick Commerce"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Sub-3-hour delivery windows for dark stores and micro-warehouses."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Dedicated same-day air capacity linking metros to fulfillment hubs."}]]}]]}]]}],["$","div","Express B2B Cargo",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 2.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Express B2B Cargo"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Express B2B Cargo"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Time-critical industrial parts and components stuck on slow trunk routes."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Rapid airport-to-airport transport between major economic nodes."}]]}]]}]]}],["$","div","Healthcare & Pharma",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card 3.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Healthcare & Pharma"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Healthcare & Pharma"}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Challenge"}],["$","p",null,{"className":"wind-card-text","children":"Temperature-sensitive, compliance-critical shipments with zero margin for error."}]]}],["$","div",null,{"children":[["$","p",null,{"className":"wind-card-label","children":"Doormile Wings"}],["$","p",null,{"className":"wind-card-text","children":"Active and passive cold-chain packaging with full chain-of-custody tracking."}]]}]]}]]}],["$","div","Cold Chain Logistics",{"className":"wind-card","style":{"backgroundImage":"linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8)), url('/images/card4.png')","backgroundSize":"cover","backgroundPosition":"center"},"children":[["$","div",null,{"className":"wind-card-wash","aria-hidden":"true"}],["$","div",null,{"className":"wind-card-default","children":["$","h3",null,{"className":"wind-card-default-title","children":"Cold Chain Logistics"}]}],["$","div",null,{"className":"wind-card-hover","children":[["$","h3",null,{"className":"wind-card-hover-title","children":"Cold Chain Logistics"}],"$L1c","$L1d"]}]]}],"$L1e","$L1f"]}]]}]}]}] 1b:null diff --git a/.next/server/app/doormile-wings/page.js b/.next/server/app/doormile-wings/page.js new file mode 100644 index 0000000..cd52754 --- /dev/null +++ b/.next/server/app/doormile-wings/page.js @@ -0,0 +1,16 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/doormile-wings/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0~7vw31._.js") +R.c("server/chunks/ssr/src_0n990ke._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0dl9rr-.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(95404) +module.exports=R.m(95404).exports diff --git a/.next/server/app/doormile-wings/page.js.map b/.next/server/app/doormile-wings/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/doormile-wings/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/doormile-wings/page.js.nft.json b/.next/server/app/doormile-wings/page.js.nft.json new file mode 100644 index 0000000..e414416 --- /dev/null +++ b/.next/server/app/doormile-wings/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[root-of-the-server]__0~7vw31._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0dl9rr-.js","../../chunks/ssr/src_0n990ke._.js","../../chunks/ssr/src_components_sections_0b6smpj._.js","../../chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","../../chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/doormile-wings/page/app-paths-manifest.json b/.next/server/app/doormile-wings/page/app-paths-manifest.json new file mode 100644 index 0000000..c500f73 --- /dev/null +++ b/.next/server/app/doormile-wings/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/doormile-wings/page": "app/doormile-wings/page.js" +} \ No newline at end of file diff --git a/.next/server/app/doormile-wings/page/build-manifest.json b/.next/server/app/doormile-wings/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/doormile-wings/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/doormile-wings/page/next-font-manifest.json b/.next/server/app/doormile-wings/page/next-font-manifest.json new file mode 100644 index 0000000..657f509 --- /dev/null +++ b/.next/server/app/doormile-wings/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/doormile-wings/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/doormile-wings/page/react-loadable-manifest.json b/.next/server/app/doormile-wings/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/doormile-wings/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/doormile-wings/page/server-reference-manifest.json b/.next/server/app/doormile-wings/page/server-reference-manifest.json new file mode 100644 index 0000000..75095b6 --- /dev/null +++ b/.next/server/app/doormile-wings/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/doormile-wings/page": { + "moduleId": 64668, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/doormile-wings/page_client-reference-manifest.js b/.next/server/app/doormile-wings/page_client-reference-manifest.js new file mode 100644 index 0000000..36ed77a --- /dev/null +++ b/.next/server/app/doormile-wings/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/doormile-wings/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/sections/WingsHero.tsx ":{"id":36202,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsHero.tsx":{"id":36202,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsWhyGrid.tsx ":{"id":63061,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsWhyGrid.tsx":{"id":63061,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsSpeedAdvantage.tsx ":{"id":10425,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsSpeedAdvantage.tsx":{"id":10425,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/animations/Reveal.tsx ":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/animations/Reveal.tsx":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsHowItWorks.tsx ":{"id":48920,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsHowItWorks.tsx":{"id":48920,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/EVSection.tsx ":{"id":14224,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/EVSection.tsx":{"id":14224,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsMileTruth.tsx ":{"id":55064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsMileTruth.tsx":{"id":55064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsRoadmap.tsx ":{"id":13378,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false},"[project]/src/components/sections/WingsRoadmap.tsx":{"id":13378,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/06~35roaehny..js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"36202":{"*":{"id":77520,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}},"63061":{"*":{"id":94775,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}},"10425":{"*":{"id":84920,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}},"2018":{"*":{"id":36002,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}},"48920":{"*":{"id":30534,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}},"14224":{"*":{"id":61358,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}},"55064":{"*":{"id":36045,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}},"13378":{"*":{"id":87756,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_0b6smpj._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"36202":{"*":{"id":34035,"name":"*","chunks":[],"async":false}},"63061":{"*":{"id":32900,"name":"*","chunks":[],"async":false}},"10425":{"*":{"id":25179,"name":"*","chunks":[],"async":false}},"2018":{"*":{"id":9386,"name":"*","chunks":[],"async":false}},"48920":{"*":{"id":14493,"name":"*","chunks":[],"async":false}},"14224":{"*":{"id":59005,"name":"*","chunks":[],"async":false}},"55064":{"*":{"id":71806,"name":"*","chunks":[],"async":false}},"13378":{"*":{"id":36480,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/doormile-wings/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false},{"path":"static/chunks/144so~-zgdm9_.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/doormile-wings/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/0vi1igu-zxb_c.js","static/chunks/06~35roaehny..js"]}}; + diff --git a/.next/server/app/empowerment.html b/.next/server/app/empowerment.html new file mode 100644 index 0000000..e08bc96 --- /dev/null +++ b/.next/server/app/empowerment.html @@ -0,0 +1,2807 @@ +Doormile Wings — Women Entrepreneurship Initiative

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Building Women
Entrepreneurs.

Empowering ambitious women with the network, strategic partnerships, and opportunities to build, grow, and lead successful enterprises that shape the future of logistics.

/ Our Vision /


Women Own The Future.

A logistics ecosystem where women don’t just participate — they own, build, and lead.

The vision

We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside.

Why it matters

Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics.

How Wings contributes

Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise.

/ Our Approach /

Not a program on a brochure. An ecosystem women can build in.

Manifesto

A venture that starts with conviction. A network that turns it into momentum.

Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled.

01

Women Entrepreneurship

An ecosystem where women build, own, and scale enterprises across logistics.

/ Women Empowerment /

Women Building The Next Mile

Women Map
0+
Women Founders
0+
Cities Active
0+
Enterprises Launched
Venture Building

End-to-end support for women launching logistics enterprises — from ideation to market entry.

Entrepreneurship

Women building, owning, and scaling sustainable businesses within the logistics ecosystem.

Founder Networks

Peer communities and strategic connections that accelerate growth and open new markets.

Enterprise Leadership

Strategic decision-making, operational excellence, and vision-driven leadership for women founders.

/ Entrepreneurship Pillars /

Every pillar is built around ownership.

02
Connect and grow

Strategic Partnerships

Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth.

03
Learn from builders

Founder Mentorship

One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale.

04
Scale with confidence

Growth & Scale

Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow.

05
See the opportunity

Industry Immersion

Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical.

/ Our Impact /

Growth we can measure


0+Women-Led Enterprises In The Ecosystem

0+Enterprises Launched
0+Industry Partners
0+Cities Active
MillionsIn Economic Value Created

Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake.

/ The Founder Journey /

A clear path, from idea to enterprise

01

Apply

Submit your venture idea and tell us about your entrepreneurial vision.

02

Discovery

Identify the right market opportunity and validate your business model.

03

Build

Develop your enterprise with ecosystem support, mentorship, and partnerships.

04

Launch

Go to market with strategic backing, industry connections, and operational infrastructure.

05

Scale

Grow your team, expand operations, and lead your enterprise to sustainable impact.

/ Women in Motion /

Small steps. Lasting careers.

A Wings program participant on the operations floor at a Doormile logistics hub
Wings Participant building a career, one milestone at a time.

I came in looking for a way forward. I found the confidence to lead.

She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry.

/ Collaboration /

Partnership is how ecosystems grow.

The strongest ecosystems are built by many hands.

Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive.

01

Industry Partners

Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises.

02

Technology Partners

Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently.

03

Community Networks

Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact.

04

Investment Partners

Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth.

500+Women Founders
100+Enterprises Launched
25+Industry Partners
/ Build the next mile /

Build what’s next.

Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics.

\ No newline at end of file diff --git a/.next/server/app/empowerment.meta b/.next/server/app/empowerment.meta new file mode 100644 index 0000000..a2f8fe5 --- /dev/null +++ b/.next/server/app/empowerment.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/empowerment/layout,_N_T_/empowerment/page,_N_T_/empowerment" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/empowerment/__PAGE__", + "/empowerment", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/empowerment.txt b/.next/server/app/empowerment.rsc similarity index 75% rename from build/empowerment.txt rename to .next/server/app/empowerment.rsc index d866020..a6a5be6 100644 --- a/build/empowerment.txt +++ b/.next/server/app/empowerment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -1b:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +1b:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -166,13 +166,13 @@ c:Tf99, .eh-btn-primary, .eh-btn-outline { width: 100%; justify-content: center; padding: 14px 22px; } .eh-btns { width: 100%; } } - 0:{"P":null,"c":["","empowerment"],"q":"","i":false,"f":[[["",{"children":["empowerment",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"empowerment","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59 elementor-empowerment","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le","$Lf","$L10","$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17"],"$L18"]}],{},null,false,null]},null,false,"$@19"]},null,false,null],"$L1a",false]],"m":"$undefined","G":["$1b",["$L1c"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1d:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"ScrollReveal"] -1e:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"ShimmerText"] -32:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -33:"$Sreact.suspense" -36:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -38:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] + 0:{"P":null,"c":["","empowerment"],"q":"","i":false,"f":[[["",{"children":["empowerment",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"empowerment","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59 elementor-empowerment","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le","$Lf","$L10","$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17"],"$L18"]}],{},null,false,null]},null,false,"$@19"]},null,false,null],"$L1a",false]],"m":"$undefined","G":["$1b",["$L1c"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1d:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"ScrollReveal"] +1e:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"ShimmerText"] +31:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +32:"$Sreact.suspense" +35:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +37:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"className":"eh-section","id":"wings-empowerment-hero","children":[["$","div",null,{"className":"eh-bg","aria-hidden":"true"}],["$","div",null,{"className":"eh-scrim","aria-hidden":"true"}],["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":30,"className":"eh-inner","children":[["$","h1",null,{"className":"eh-title","children":["Building ",["$","span",null,{"className":"eh-soft","children":"Women"}],["$","br",null,{}],["$","$L1e",null,{"children":"Entrepreneurs."}]]}],["$","p",null,{"className":"eh-desc","children":"Empowering ambitious women with the network, strategic partnerships, and opportunities to build, grow, and lead successful enterprises that shape the future of logistics."}]]}]]}]}] 1f:Te8f, .ev-section { @@ -327,7 +327,7 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } } e:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1f"}}],"$L20"] -21:Tbc4, +21:T1091, .esy-section { position: relative; width: calc(100% - 40px); @@ -422,6 +422,32 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class margin: 0; } + /* ---- Desktop-only inner spacing compaction ---- + .esy-section never set its own padding, so it was silently + inheriting 96px top/bottom from the global bare-tag "section" + padding rule (6rem 0) in site.css — stacking with .esy-inner's + own clamp(60-98px) padding into a huge, unbalanced inset. Cancel + that leak here. Also tighten .esy-inner's own padding and widen its + max-width (so a fixed padding, not a narrow centered column, + controls the left/right inset at every desktop width) — and bring + min-height down to match the now-tighter natural content height, + since the old 690px floor was itself forcing extra empty space + once the padding was reduced. Scoped to desktop only; tablet/ + mobile keep their original spacing untouched below. */ + @media (min-width: 1025px) { + .esy-section { + padding: 0; + min-height: clamp(420px, 38vw, 500px); + } + .esy-inner { + max-width: 1900px; + padding-top: 64px; + padding-bottom: 56px; + padding-left: 64px; + padding-right: 64px; + } + } + @media (max-width: 1024px) { .esy-section { width: calc(100% - 24px); border-radius: 22px; } .esy-inner { grid-template-columns: 1fr; align-items: start; } @@ -432,8 +458,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class .esy-section { min-height: 560px; } .esy-side { border-left: none; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 24px; } } - f:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$21"}}],["$","section",null,{"className":"esy-section","id":"wings-empowerment-story","children":[["$","div",null,{"className":"esy-bg","aria-hidden":"true"}],["$","div",null,{"className":"esy-inner dm-section-container","children":["$L22","$L23"]}]]}]] -24:T3756, + f:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$21"}}],"$L22"] +23:T3756, /* ============================================================ Success Stories — redesigned right column (stats + 2x2 cards) Dark section · red accent #dc2626 / #ef4444 · Manrope @@ -762,11 +788,12 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } #ws-stories .ws__cards { grid-template-columns: 1fr; gap: 12px; } } - 10:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$24"}}],"$L25"] -26:T2d38, + 10:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$23"}}],"$L24"] +25:T2f8a, .epr-section { background: #ffffff; - padding: clamp(78px, 9vw, 132px) 0; + padding-top: clamp(28px, 3.2vw, 48px); + padding-bottom: clamp(78px, 9vw, 132px); overflow: visible; } @@ -818,10 +845,10 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class display: grid; grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr); gap: clamp(32px, 5vw, 78px); - /* stretch (not start): the left column's grid-item box must span - the full row — i.e. match the taller Programs list — or the - sticky aside inside it runs out of room and un-sticks well - before the list finishes scrolling. */ + /* stretch (not start): .epr-aside-wrap must span the full row + height — the tall Programs column's implicit-row height — so it + defines the sticky travel distance. The visual box no longer + lives here, so stretching this item no longer distorts it. */ align-items: stretch; min-width: 0; } @@ -830,19 +857,55 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class min-width: 0; } - /* Plain stretching grid item. Carries no visual styling of its own — - it exists only to give .epr-aside (sized/centered independently - inside it) the full row height to stick within. */ + /* Responsibility split (desktop sticky architecture): + .epr-aside-wrap — plain grid item, stretched to the full + Programs-list row height. Defines travel + distance. No sizing responsibility of its + own beyond that. + .epr-aside-sticky — owns position: sticky. Its height is + explicitly clamped to the viewport + (100dvh minus header clearance and a + bottom safe-margin), so it can never grow + taller than what's actually visible — + the tall min-height that previously fought + the sticky top offset is gone entirely. + .epr-aside — the visual composition (ghost number, map, + heading, paragraph). Fills the sticky + frame's height and arranges its existing + content inside it; owns the decorative + bleed clipping (overflow: hidden). */ .epr-aside-wrap { min-width: 0; } - .epr-aside { + .epr-aside-sticky { + /* 132px clears the site header's fixed state (~122px tall once + scrolled) with a small margin; only grows on very tall + viewports. This is viewport-height-derived, NOT content-height + derived — unlike the old top formula, it never has to react to + how tall the aside's own content happens to be. */ + --epr-sticky-top: clamp(132px, 12dvh, 160px); + --epr-sticky-bottom-safe: 28px; position: sticky; - top: 110px; + top: var(--epr-sticky-top); + height: calc(100dvh - var(--epr-sticky-top) - var(--epr-sticky-bottom-safe)); + min-height: 0; min-width: 0; - min-height: clamp(480px, 44vw, 660px); - padding: clamp(18px, 3vw, 34px) 0 clamp(24px, 3.5vw, 42px); + /* Lets the visual composition react to the frame's OWN resolved + height (container query below) rather than guessing from the + viewport or the write-up's vw-based type scale. */ + container-type: size; + container-name: epr-frame; + } + + .epr-aside { + --epr-aside-pad-t: clamp(18px, 3vw, 34px); + --epr-aside-pad-b: clamp(24px, 3.5vw, 42px); + position: relative; + height: 100%; + min-width: 0; + min-height: 0; + padding: var(--epr-aside-pad-t) 0 var(--epr-aside-pad-b); display: flex; flex-direction: column; justify-content: center; @@ -905,79 +968,24 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class margin: 0; } - /* Continues the editorial narrative below the original hero - statement/paragraph — same grid, same gap rhythm as the rest of - .epr-aside-content, so it reads as one uninterrupted column rather - than a bolted-on block. Exists so the sticky aside still has real - editorial content to show while the list scrolls through its last - two entries, instead of ending early and leaving the left side - blank for the remainder of the scroll. */ - .epr-aside-divider { - position: relative; - width: 100%; - height: 1px; - border: none; - margin: 0; - background-color: rgba(17, 17, 17, 0.12); + /* Constrained-frame fallback: the sticky frame is short (short + desktop viewport height), so the decorative ghost number/map + shrink first — spacing second — while the heading and paragraph + stay full size and fully visible, per spec. Placed after the base + .epr-aside-num/-content/-map rules so it wins the cascade at + matching container sizes (equal selector specificity; source + order decides). */ + @container epr-frame (max-height: 660px) { + .epr-aside { padding-top: clamp(12px, 1.8vw, 22px); padding-bottom: clamp(16px, 2.2vw, 26px); } + .epr-aside-content { gap: clamp(12px, 1.6vw, 20px); } + .epr-aside-num { font-size: clamp(90px, 11vw, 180px); } } - .epr-aside-label { - position: relative; - font-size: 12px; - font-weight: 800; - letter-spacing: 1.7px; - text-transform: uppercase; - color: rgba(17, 17, 17, 0.4); - margin: 0 0 -6px 0; - } - - .epr-aside-gains-list { - position: relative; - list-style: none; - margin: 0; - padding: 0; - display: grid; - gap: 9px; - } - - .epr-aside-gains-list li { - position: relative; - padding-left: 19px; - font-size: 15.5px; - line-height: 1.5; - color: rgba(17, 17, 17, 0.68); - } - - /* Extra .epr-aside prefix raises specificity above the global theme - rule ".logico-front-end ul li:before" (a fontello glyph), so our - clean red dot replaces the inherited checkmark marker — same fix - already established for this exact conflict in LegalDocument.tsx. */ - .epr-aside .epr-aside-gains-list li::before { - content: "" !important; - position: absolute; - left: 2px; - top: 0.62em; - width: 5px; - height: 5px; - border-radius: 50%; - background: #c8102e; - font-size: 0; - } - - .epr-aside-final { - position: relative; - max-width: 30ch; - font-size: clamp(17px, 1.7vw, 20px); - font-weight: 700; - line-height: 1.5; - letter-spacing: -0.01em; - color: #111111; - margin: 0; - } - - .epr-aside-final em { - font-style: normal; - color: #c8102e; + @container epr-frame (max-height: 560px) { + .epr-aside { padding-top: clamp(8px, 1.2vw, 14px); padding-bottom: clamp(10px, 1.6vw, 18px); } + .epr-aside-content { gap: clamp(6px, 1vw, 12px); } + .epr-aside-num { font-size: clamp(48px, 7vw, 100px); } + .epr-aside-map { opacity: 0.14; } } .epr-list { @@ -1097,21 +1105,18 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class /* Laptop: sticky stays enabled, just a narrower gutter. */ @media (max-width: 1180px) { .epr-stage { grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr); gap: clamp(28px, 4vw, 46px); } - .epr-aside { min-height: 420px; } .epr-row:nth-child(even) { margin-left: 0; } } /* Tablet: sticky disabled — the aside scrolls in normal flow instead of pinning, since there's no longer enough vertical runway next to - the (now narrower, shorter) program list for pinning to read well. - The wrapper no longer needs to stretch once its child isn't sticky. */ + the (now narrower, shorter) program list for pinning to read well. */ @media (max-width: 1023px) { - .epr-aside-wrap { - align-self: start; - } - .epr-aside { + .epr-aside-sticky { position: relative; top: auto; + height: auto; + container-type: normal; } } @@ -1142,17 +1147,10 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class max-width: 32ch; font-size: 14.5px; } - .epr-aside-gains-list li { - font-size: 14.5px; - } - .epr-aside-final { - max-width: 28ch; - font-size: 16.5px; - } } @media (max-width: 640px) { - .epr-section { padding-top: 54px; padding-bottom: 54px; } + .epr-section { padding-top: 28px; padding-bottom: 54px; } .epr-title { font-size: clamp(34px, 10vw, 40px) !important; letter-spacing: -0.045em !important; @@ -1164,8 +1162,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } .epr-row { grid-template-columns: 1fr; gap: 12px; } } - 11:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$26"}}],"$L27"] -28:Te98, + 11:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"] +27:Te98, .eim-section { position: relative; width: calc(100% - 40px); @@ -1296,8 +1294,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class @media (max-width: 460px) { .eim-section { padding-top: 48px; padding-bottom: 48px; } } - 12:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$28"}}],"$L29"] -2a:T1573, + 12:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$27"}}],"$L28"] +29:T1f91, .ehw-section { background: #ffffff; padding: var(--space-section-lg, 80px) 0 calc(var(--space-section-lg, 80px) + 32px) 0; @@ -1453,38 +1451,106 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } } - /* Mobile: single column — dividers rotate from vertical to horizontal. */ + /* Mobile: compact numbered editorial index — number in a narrow + left column, title/description/divider sharing one right + content column, laid out on the existing milestone markup via + CSS Grid (no duplicated JSX, no new step markup). */ @media (max-width: 640px) { + .ehw-head { + margin-bottom: clamp(40px, 10vw, 56px); + } + .ehw-sequence { row-gap: 0; } + .ehw-step { + display: grid; + grid-template-columns: 48px minmax(0, 1fr); + column-gap: 14px; flex-basis: 100%; padding-left: 0; - padding-top: clamp(28px, 8vw, 38px); + padding-top: clamp(28px, 8vw, 36px); border-left: none; - border-top: 1px solid rgba(17, 17, 17, 0.14); - } - .ehw-step:first-child { - padding-top: 0; border-top: none; } - .ehw-step:nth-child(4) { - border-top: 1px solid rgba(17, 17, 17, 0.14); - } - .ehw-step:hover { - border-left-color: transparent; + + .ehw-step:first-child { + padding-top: 0; } + + /* Compact solid index number — replaces the oversized pale + outline treatment used on desktop/tablet. */ .ehw-step-num { - font-size: clamp(44px, 13vw, 56px); + grid-column: 1; + grid-row: 1; + align-self: start; + font-size: clamp(32px, 9vw, 40px); + line-height: 1; + color: #c8102e; + -webkit-text-stroke: 0; + margin: 0; + } + + /* Hidden completely — no reserved gap left in its place since a + display:none grid item takes no track space. */ + .ehw-step-kicker { + display: none; + } + + .ehw-step-title { + grid-column: 2; + grid-row: 1; + font-size: clamp(22px, 6vw, 26px) !important; + } + + .ehw-step-desc { + grid-column: 2; + grid-row: 2; + max-width: none; + font-size: 16px; + } + + /* Divider lives inside the description box (content column + only), so it never runs underneath the number column. */ + .ehw-step-desc::after { + content: ""; + display: block; + margin-top: clamp(24px, 6vw, 28px); + height: 1px; + background-color: rgba(17, 17, 17, 0.14); + } + + .ehw-step:last-child .ehw-step-desc::after { + display: none; + } + } + + /* ---- Mobile title-to-description gap fix ---- + .ehw-step-title is an

, so it's matched by a global, + unscoped site.css rule (.logico-front-end h3:not(...) { margin: + 0 0 30px }) that outranks this component's own single-class + ".ehw-step-title { margin: 0 0 22px }" by specificity — bumping + the real margin-bottom to 30px everywhere, not just here. There + is no min-height, space-between, or fixed row height anywhere in + this component; the gap is purely that extra 8px of margin + reading as oversized once every other element around it (kicker, + description line-height) is tightly spaced. Overridden with + !important, matching how every other property on this selector + already has to defeat the same global rule. Scoped to mobile + only, per spec — desktop/tablet are left exactly as they were + (still resolving to the global 30px; out of scope here). */ + @media (max-width: 767px) { + .ehw-step-title { + margin-bottom: 16px !important; } } @media (max-width: 480px) { .ehw-section { padding-top: 48px; padding-bottom: 68px; } } - 13:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2a"}}],"$L2b"] -2c:T1bff, + 13:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$29"}}],"$L2a"] +2b:T1df1, .est-section { position: relative; background: #ffffff; @@ -1741,7 +1807,14 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } @media (max-width: 640px) { - .est-section { padding-top: 54px; padding-bottom: 54px; } + .est-section { padding-top: 54px; padding-bottom: 6px; } + /* .est-feature's margin-bottom (clamp(44px, 6vw, 76px)) was sized + to precede an .est-list testimonial row block that no longer + exists in this component's JSX. Since .est-feature is now the + section's last child, that margin was pure dead space stacking + on top of .est-section's own padding-bottom above — the real + source of the oversized mobile gap before the next section. */ + .est-feature { margin-bottom: 0; } .est-title { font-size: clamp(34px, 10vw, 40px) !important; letter-spacing: -0.045em !important; @@ -1755,8 +1828,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class .est-copy { border-radius: 20px; } .est-photo { min-height: 420px; } } - 14:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2c"}}],"$L2d"] -2e:T16dc, + 14:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2b"}}],"$L2c"] +2d:T16dc, .epn-section { position: relative; width: calc(100% - 40px); @@ -1966,8 +2039,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class @media (max-width: 460px) { .epn-section { padding-top: 54px; padding-bottom: 54px; } } - 15:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2e"}}],"$L2f"] -30:Tdad, + 15:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2d"}}],"$L2e"] +2f:Tdad, .emp-cta-wrap { width: calc(100% - 40px); margin: clamp(24px, 4vw, 40px) auto clamp(40px, 5vw, 64px); @@ -2088,38 +2161,34 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } .emp-cta-recap { flex-wrap: wrap; row-gap: 14px; } } - 16:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$30"}}],"$L31"] + 16:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2f"}}],"$L30"] 17:["$","script","script-0",{"src":"/_next/static/chunks/0vzdvje64yndv.js","async":true,"nonce":"$undefined"}] -18:["$","$L32",null,{"children":["$","$33",null,{"name":"Next.MetadataOutlet","children":"$@34"}]}] -35:[] -19:"$W35" -1a:["$","$1","h",{"children":[null,["$","$L36",null,{"children":"$L37"}],["$","div",null,{"hidden":true,"children":["$","$L38",null,{"children":["$","$33",null,{"name":"Next.Metadata","children":"$L39"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1c:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -3a:I[5074,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"default"] -41:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"CountUp"] -42:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"StaggerChildren"] -43:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"Image"] -20:["$","section",null,{"className":"ev-section","id":"wings-empowerment-vision","children":[["$","div",null,{"className":"ev-map","aria-hidden":"true","children":["$","$L3a",null,{}]}],["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ev-inner","children":[["$","$L1d",null,{"delay":0.05,"duration":0.7,"yOffset":20,"children":[["$","p",null,{"className":"ev-eyebrow","children":"/ Our Vision /"}],["$","hr",null,{"className":"ev-divider"}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":30,"children":["$","h2",null,{"className":"ev-title","children":"Women Own The Future."}]}],["$","div",null,{"className":"ev-columns","children":[["$","$L1d",null,{"delay":0.18,"duration":0.8,"yOffset":25,"children":["$","p",null,{"className":"ev-statement","children":"A logistics ecosystem where women don’t just participate — they own, build, and lead."}]}],["$","$L1d",null,{"delay":0.26,"duration":0.8,"yOffset":25,"className":"ev-support","children":[["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"The vision"}],["$","p",null,{"className":"ev-lead","children":"We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"Why it matters"}],["$","p",null,{"className":"ev-note","children":"Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"How Wings contributes"}],["$","p",null,{"className":"ev-note","children":"Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise."}]]}]]}]]}]]}]}]]}] -22:["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":25,"children":[["$","div",null,{"className":"esy-eyebrow","children":"/ Our Approach /"}],["$","p",null,{"className":"esy-statement","children":["Not a program on a brochure. ",["$","em",null,{"children":"An ecosystem women can build in."}]]}]]}] -23:["$","$L1d",null,{"delay":0.15,"duration":0.8,"yOffset":25,"className":"esy-side","children":[["$","span",null,{"className":"esy-label","children":"Manifesto"}],["$","p",null,{"className":"esy-pull","children":"A venture that starts with conviction. A network that turns it into momentum."}],["$","p",null,{"className":"esy-sub","children":"Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled."}]]}] -25:["$","div",null,{"id":"women-entrepreneurship","className":"elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"bbc6760","data-element_type":"container","data-e-type":"container","style":{"backgroundColor":"#1f1f1f","width":"calc(100% - 40px)","marginLeft":"20px","marginRight":"20px","borderRadius":"25px"},"children":[["$","div",null,{"className":"elementor-element elementor-element-13a7637 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-logico_decorative_block","data-id":"13a7637","data-element_type":"widget","data-e-type":"widget","style":{"position":"absolute"},"children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"block-decoration animation-enable block-decoration-style-1","children":["$","div",null,{"className":"block-decoration-item"}]}]}]}],["$","div",null,{"style":{"backgroundImage":"url(/images/bg-header-women.webp)"},"className":"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container"}],["$","div",null,{"className":"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"01"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h5",null,{"className":"logico-title","children":"Women Entrepreneurship"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"An ecosystem where women build, own, and scale enterprises across logistics."}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":["$","div",null,{"className":"elementor-element elementor-element-46b9ffa elementor-widget elementor-widget-logico_button","data-id":"46b9ffa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"button-widget","children":["$","div",null,{"className":"button-container","children":["$","a",null,{"href":"#wings-empowerment-programs","className":"logico-small-button","children":["Explore the ecosystem",["$","svg",null,{"viewBox":"0 0 13 20","children":"$L3b"}]]}]}]}]}]}]}]]}]}],"$L3c"]}] -27:["$","section",null,{"className":"epr-section","id":"wings-empowerment-programs","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epr-inner","children":[["$","div",null,{"className":"epr-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epr-head-reveal","children":[["$","div",null,{"className":"epr-eyebrow","children":"/ Entrepreneurship Pillars /"}],["$","hr",null,{"className":"epr-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epr-title","children":"Every pillar is built around ownership."}]}]]}],["$","div",null,{"className":"epr-stage","children":[["$","div",null,{"className":"epr-aside-wrap","children":["$","aside",null,{"className":"epr-aside","children":[["$","div",null,{"className":"epr-aside-map","aria-hidden":"true","children":["$","$L3a",null,{}]}],["$","$L1d",null,{"delay":0.05,"duration":0.8,"yOffset":24,"className":"epr-aside-content","children":[["$","div",null,{"className":"epr-aside-num","children":"05"}],["$","p",null,{"className":"epr-aside-copy","children":["Building tomorrow’s ",["$","em",null,{"children":"women entrepreneurs."}]]}],["$","p",null,{"className":"epr-aside-desc","children":"Every enterprise starts with one decision. Our pillars move women from idea to ownership through mentorship, real industry partnerships, and hands-on venture building across the logistics ecosystem."}],["$","hr",null,{"className":"epr-aside-divider"}],["$","div",null,{"className":"epr-aside-label","children":"Journey Summary"}],["$","p",null,{"className":"epr-aside-desc","children":"Each pillar builds on the one before it — moving founders from validating an idea, to forming partnerships, to receiving hands-on guidance, to growing a sustainable logistics business."}],["$","div",null,{"className":"epr-aside-label","children":"What Participants Gain"}],["$","ul",null,{"className":"epr-aside-gains-list","children":[["$","li","Business validation",{"children":"Business validation"}],["$","li","Industry partnerships",{"children":"Industry partnerships"}],["$","li","Founder mentorship",{"children":"Founder mentorship"}],["$","li","Market readiness",{"children":"Market readiness"}],["$","li","Sustainable growth",{"children":"Sustainable growth"}]]}],["$","p",null,{"className":"epr-aside-final","children":["The destination is never just launching a business. It is building ",["$","em",null,{"children":"women-led enterprises that strengthen the logistics ecosystem."}]]}]]}]]}]}],["$","div",null,{"children":[["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":24,"children":["$","div",null,{"className":"epr-list","children":[["$","article","Venture Launchpad",{"className":"epr-row epr-row-featured","children":[["$","div",null,{"className":"epr-row-index","children":"01"}],["$","div",null,{"children":[["$","span",null,{"className":"epr-row-flag","children":"Where most founders begin"}],["$","span",null,{"className":"epr-row-type","children":"Start building"}],["$","h3",null,{"className":"epr-row-title","children":"Venture Launchpad"}],["$","p",null,{"className":"epr-row-desc","children":"Business model validation, market entry strategy, entity formation, and go-to-market execution for women-led logistics enterprises."}]]}]]}],["$","article","Strategic Partnerships",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"02"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Connect and grow"}],["$","h3",null,{"className":"epr-row-title","children":"Strategic Partnerships"}],["$","p",null,{"className":"epr-row-desc","children":"Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth."}]]}]]}],["$","article","Founder Mentorship",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"03"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Learn from builders"}],["$","h3",null,{"className":"epr-row-title","children":"Founder Mentorship"}],["$","p",null,{"className":"epr-row-desc","children":"One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale."}]]}]]}],["$","article","Growth & Scale",{"className":"epr-row","children":["$L3d","$L3e"]}],"$L3f"]}]}],"$L40"]}]]}]]}]}]}] -29:["$","section",null,{"className":"eim-section","id":"wings-empowerment-impact","children":["$","div",null,{"className":"eim-inner dm-section-container","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"children":[["$","div",null,{"className":"eim-eyebrow","children":"/ Our Impact /"}],["$","h2",null,{"className":"eim-title","children":"Growth we can measure"}]]}],["$","hr",null,{"className":"eim-divider"}],["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":20,"className":"eim-hero-row","children":[["$","span",null,{"className":"eim-hero-num","children":["$","$L41",null,{"end":500,"suffix":"+","duration":2.2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-hero-label","children":"Women-Led Enterprises In The Ecosystem"}]]}],["$","hr",null,{"className":"eim-divider-2"}],["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":20,"children":["$","div",null,{"className":"eim-secondary-row","children":[["$","div","Enterprises Launched",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L41",null,{"end":100,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Enterprises Launched"}]]}],["$","div","Industry Partners",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L41",null,{"end":25,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Industry Partners"}]]}],["$","div","Cities Active",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L41",null,{"end":15,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Cities Active"}]]}],["$","div","In Economic Value Created",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":"Millions"}],["$","span",null,{"className":"eim-secondary-label","children":"In Economic Value Created"}]]}]]}]}],["$","$L1d",null,{"delay":0.12,"duration":0.75,"yOffset":20,"className":"eim-copy","children":["$","p",null,{"children":"Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake."}]}]]}]}] -2b:["$","section",null,{"className":"ehw-section","id":"wings-empowerment-how-it-works","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ehw-inner","children":[["$","div",null,{"className":"ehw-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"ehw-head-reveal","children":[["$","div",null,{"className":"ehw-eyebrow","children":"/ The Founder Journey /"}],["$","hr",null,{"className":"ehw-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"ehw-title","children":"A clear path, from idea to enterprise"}]}]]}],["$","$L42",null,{"className":"ehw-sequence","stagger":0.12,"duration":0.7,"yOffset":30,"triggerOnce":true,"children":[["$","div","01",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"01"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Apply"}],["$","p",null,{"className":"ehw-step-desc","children":"Submit your venture idea and tell us about your entrepreneurial vision."}]]}],["$","div","02",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"02"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Discovery"}],["$","p",null,{"className":"ehw-step-desc","children":"Identify the right market opportunity and validate your business model."}]]}],["$","div","03",{"className":"ehw-step is-accent","children":[["$","div",null,{"className":"ehw-step-num","children":"03"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Build"}],["$","p",null,{"className":"ehw-step-desc","children":"Develop your enterprise with ecosystem support, mentorship, and partnerships."}]]}],["$","div","04",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"04"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Launch"}],["$","p",null,{"className":"ehw-step-desc","children":"Go to market with strategic backing, industry connections, and operational infrastructure."}]]}],["$","div","05",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"05"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Scale"}],["$","p",null,{"className":"ehw-step-desc","children":"Grow your team, expand operations, and lead your enterprise to sustainable impact."}]]}]]}]]}]}]}] -2d:["$","section",null,{"className":"est-section","id":"wings-empowerment-stories","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"est-inner","children":[["$","div",null,{"className":"est-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"est-head-reveal","children":[["$","div",null,{"className":"est-eyebrow","children":"/ Women in Motion /"}],["$","hr",null,{"className":"est-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"est-title","children":"Small steps. Lasting careers."}]}]]}],["$","div",null,{"className":"est-feature","children":[["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":24,"className":"est-photo","children":[["$","$L43",null,{"src":"/images/women-hero-slider-3.png","alt":"A Wings program participant on the operations floor at a Doormile logistics hub","fill":true,"sizes":"(max-width: 1000px) 100vw, 58vw","style":{"objectPosition":"80% 22%"}}],["$","div",null,{"className":"est-photo-caption","children":[["$","span",null,{"children":"Wings Participant"}],["$","strong",null,{"children":" building a career, one milestone at a time."}]]}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":24,"className":"est-copy","children":["$","div",null,{"children":[["$","span",null,{"className":"est-quote-mark","aria-hidden":"true","children":"“"}],["$","p",null,{"className":"est-quote-text","children":"I came in looking for a way forward. I found the confidence to lead."}],["$","p",null,{"className":"est-narrative","children":"She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry."}]]}]}]]}]]}]}]}] -2f:["$","section",null,{"className":"epn-section","id":"wings-empowerment-partners","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epn-inner","children":[["$","div",null,{"className":"epn-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epn-head-reveal","children":[["$","div",null,{"className":"epn-eyebrow","children":"/ Collaboration /"}],["$","hr",null,{"className":"epn-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epn-title","children":["Partnership is how ",["$","em",null,{"children":"ecosystems grow."}]]}]}]]}],["$","div",null,{"className":"epn-body","children":[["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":22,"className":"epn-manifesto","children":[["$","p",null,{"className":"epn-intro","children":"The strongest ecosystems are built by many hands."}],["$","p",null,{"className":"epn-note","children":"Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive."}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.8,"yOffset":22,"children":["$","div",null,{"className":"epn-grid","children":[["$","article","Industry Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"01"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Industry Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Technology Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"02"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Technology Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Community Networks",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"03"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Community Networks"}],["$","p",null,{"className":"epn-card-desc","children":"Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Investment Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"04"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Investment Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}]]}]}]]}]]}]}]}] -31:["$","div",null,{"className":"emp-cta-wrap","children":["$","section",null,{"className":"emp-cta","aria-labelledby":"empowerment-final-cta","children":["$","div",null,{"className":"emp-cta-inner","children":[["$","div",null,{"className":"emp-cta-recap","children":[["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"500+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Women Founders"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"100+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Enterprises Launched"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"25+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Industry Partners"}]]}]]}],["$","div",null,{"className":"emp-cta-kicker","children":"/ Build the next mile /"}],["$","h2",null,{"className":"emp-cta-title","id":"empowerment-final-cta","children":["Build what’s ",["$","em",null,{"children":"next."}]]}],["$","div",null,{"className":"emp-cta-bottom","children":["$","p",null,{"className":"emp-cta-sub","children":"Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics."}]}]]}]}]}] -47:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],""] -3b:["$","polyline",null,{"points":"0.5 19.5 3 19.5 12.5 10 3 0.5"}] -3c:["$","div",null,{"className":"elementor-element elementor-element-b6e14bd e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b6e14bd","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"ws-map","aria-hidden":"true","children":["$","$L3a",null,{}]}],["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-90cc867 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"90cc867","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-24c0280 elementor-widget__width-inherit elementor-widget elementor-widget-logico_heading","data-id":"24c0280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Doormile Wings /"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-2ed47f3 e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"2ed47f3","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-36efec7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"36efec7","data-element_type":"container","data-e-type":"container","children":[["$","$L1d",null,{"duration":0.8,"yOffset":28,"triggerOnce":true,"children":["$","div",null,{"className":"elementor-element elementor-element-778840d elementor-widget elementor-widget-logico_heading","data-id":"778840d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","children":"Women Building The Next Mile"}]}]}]}],["$","div",null,{"className":"elementor-element elementor-element-bbfb67f elementor-widget elementor-widget-image","data-id":"bbfb67f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","$L43",null,{"src":"/images/bg-map-women.webp","alt":"Women Map","width":626,"height":692,"style":{"maxWidth":"100%","height":"auto"}}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-b2c956f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"b2c956f","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"id":"ws-stories","children":[["$","$L42",null,{"className":"ws__stats","stagger":0.1,"duration":0.6,"yOffset":20,"triggerOnce":true,"children":[["$","div","Women Founders",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L41",null,{"end":500,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Women Founders"}]]}],["$","div","Cities Active",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L41",null,{"end":35,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Cities Active"}]]}],["$","div","Enterprises Launched",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L41",null,{"end":100,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Enterprises Launched"}]]}]]}],["$","$L42",null,{"className":"ws__cards","stagger":0.08,"duration":0.6,"yOffset":24,"triggerOnce":true,"children":[["$","div","Venture Building",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M4 19V5"}],["$","path",null,{"d":"M4 7h12l-2 4 2 4H4"}],["$","path",null,{"d":"M18 19h2"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Venture Building"}],["$","p",null,{"className":"ws__card-desc","children":"End-to-end support for women launching logistics enterprises — from ideation to market entry."}]]}],"$L44","$L45","$L46"]}]]}]}]]}]]}]}]]}] -3d:["$","div",null,{"className":"epr-row-index","children":"04"}] -3e:["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Scale with confidence"}],["$","h3",null,{"className":"epr-row-title","children":"Growth & Scale"}],["$","p",null,{"className":"epr-row-desc","children":"Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow."}]]}] -3f:["$","article","Industry Immersion",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"05"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"See the opportunity"}],["$","h3",null,{"className":"epr-row-title","children":"Industry Immersion"}],["$","p",null,{"className":"epr-row-desc","children":"Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical."}]]}]]}] -40:["$","div",null,{"className":"epr-cta","children":["$","$L47",null,{"href":"/contact","className":"epr-cta-link","children":["Start your venture",["$","svg",null,{"width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]]}]}] -44:["$","div","Entrepreneurship",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"7","width":"18","height":"13","rx":"2"}],["$","path",null,{"d":"M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Entrepreneurship"}],["$","p",null,{"className":"ws__card-desc","children":"Women building, owning, and scaling sustainable businesses within the logistics ecosystem."}]]}] -45:["$","div","Founder Networks",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"8","cy":"8","r":"3"}],["$","circle",null,{"cx":"16","cy":"8","r":"3"}],["$","path",null,{"d":"M2.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}],["$","path",null,{"d":"M10.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Founder Networks"}],["$","p",null,{"className":"ws__card-desc","children":"Peer communities and strategic connections that accelerate growth and open new markets."}]]}] -46:["$","div","Enterprise Leadership",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"12","cy":"9","r":"5"}],["$","path",null,{"d":"M9 13.5 7.5 21 12 18l4.5 3-1.5-7.5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Enterprise Leadership"}],["$","p",null,{"className":"ws__card-desc","children":"Strategic decision-making, operational excellence, and vision-driven leadership for women founders."}]]}] -37:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -48:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -34:null -39:[["$","title","0",{"children":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","1",{"name":"description","content":"Doormile Wings empowers women to build, own, and lead enterprises within the logistics ecosystem through strategic partnerships, founder networks, and entrepreneurial infrastructure."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/empowerment"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","5",{"property":"og:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/empowerment"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","15",{"name":"twitter:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L48","21",{}]] +18:["$","$L31",null,{"children":["$","$32",null,{"name":"Next.MetadataOutlet","children":"$@33"}]}] +34:[] +19:"$W34" +1a:["$","$1","h",{"children":[null,["$","$L35",null,{"children":"$L36"}],["$","div",null,{"hidden":true,"children":["$","$L37",null,{"children":["$","$32",null,{"name":"Next.Metadata","children":"$L38"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +1c:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +39:I[5074,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"default"] +3c:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],""] +3e:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"CountUp"] +3f:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"StaggerChildren"] +40:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"Image"] +20:["$","section",null,{"className":"ev-section","id":"wings-empowerment-vision","children":[["$","div",null,{"className":"ev-map","aria-hidden":"true","children":["$","$L39",null,{}]}],["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ev-inner","children":[["$","$L1d",null,{"delay":0.05,"duration":0.7,"yOffset":20,"children":[["$","p",null,{"className":"ev-eyebrow","children":"/ Our Vision /"}],["$","hr",null,{"className":"ev-divider"}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":30,"children":["$","h2",null,{"className":"ev-title","children":"Women Own The Future."}]}],["$","div",null,{"className":"ev-columns","children":[["$","$L1d",null,{"delay":0.18,"duration":0.8,"yOffset":25,"children":["$","p",null,{"className":"ev-statement","children":"A logistics ecosystem where women don’t just participate — they own, build, and lead."}]}],["$","$L1d",null,{"delay":0.26,"duration":0.8,"yOffset":25,"className":"ev-support","children":[["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"The vision"}],["$","p",null,{"className":"ev-lead","children":"We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"Why it matters"}],["$","p",null,{"className":"ev-note","children":"Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"How Wings contributes"}],["$","p",null,{"className":"ev-note","children":"Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise."}]]}]]}]]}]]}]}]]}] +22:["$","section",null,{"className":"esy-section","id":"wings-empowerment-story","children":[["$","div",null,{"className":"esy-bg","aria-hidden":"true"}],["$","div",null,{"className":"esy-inner dm-section-container","children":[["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":25,"children":[["$","div",null,{"className":"esy-eyebrow","children":"/ Our Approach /"}],["$","p",null,{"className":"esy-statement","children":["Not a program on a brochure. ",["$","em",null,{"children":"An ecosystem women can build in."}]]}]]}],["$","$L1d",null,{"delay":0.15,"duration":0.8,"yOffset":25,"className":"esy-side","children":[["$","span",null,{"className":"esy-label","children":"Manifesto"}],["$","p",null,{"className":"esy-pull","children":"A venture that starts with conviction. A network that turns it into momentum."}],["$","p",null,{"className":"esy-sub","children":"Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled."}]]}]]}]]}] +24:["$","div",null,{"id":"women-entrepreneurship","className":"elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"bbc6760","data-element_type":"container","data-e-type":"container","style":{"backgroundColor":"#1f1f1f","width":"calc(100% - 40px)","marginLeft":"20px","marginRight":"20px","borderRadius":"25px"},"children":[["$","div",null,{"className":"elementor-element elementor-element-13a7637 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-logico_decorative_block","data-id":"13a7637","data-element_type":"widget","data-e-type":"widget","style":{"position":"absolute"},"children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"block-decoration animation-enable block-decoration-style-1","children":["$","div",null,{"className":"block-decoration-item"}]}]}]}],["$","div",null,{"style":{"backgroundImage":"url(/images/bg-header-women.webp)"},"className":"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container"}],["$","div",null,{"className":"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"01"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h5",null,{"className":"logico-title","children":"Women Entrepreneurship"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"An ecosystem where women build, own, and scale enterprises across logistics."}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":["$","div",null,{"className":"elementor-element elementor-element-46b9ffa elementor-widget elementor-widget-logico_button","data-id":"46b9ffa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"button-widget","children":["$","div",null,{"className":"button-container","children":["$","a",null,{"href":"#wings-empowerment-programs","className":"logico-small-button","children":["Explore the ecosystem",["$","svg",null,{"viewBox":"0 0 13 20","children":"$L3a"}]]}]}]}]}]}]}]]}]}],"$L3b"]}] +26:["$","section",null,{"className":"epr-section","id":"wings-empowerment-programs","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epr-inner","children":[["$","div",null,{"className":"epr-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epr-head-reveal","children":[["$","div",null,{"className":"epr-eyebrow","children":"/ Entrepreneurship Pillars /"}],["$","hr",null,{"className":"epr-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epr-title","children":"Every pillar is built around ownership."}]}]]}],["$","div",null,{"className":"epr-stage","children":[["$","div",null,{"className":"epr-aside-wrap","children":["$","div",null,{"className":"epr-aside-sticky","children":["$","aside",null,{"className":"epr-aside","children":[["$","div",null,{"className":"epr-aside-map","aria-hidden":"true","children":["$","$L39",null,{}]}],["$","$L1d",null,{"delay":0.05,"duration":0.8,"yOffset":24,"className":"epr-aside-content","children":[["$","div",null,{"className":"epr-aside-num","children":"05"}],["$","p",null,{"className":"epr-aside-copy","children":["Building tomorrow’s ",["$","em",null,{"children":"women entrepreneurs."}]]}],["$","p",null,{"className":"epr-aside-desc","children":"Every enterprise starts with one decision. Our pillars move women from idea to ownership through mentorship, real industry partnerships, and hands-on venture building across the logistics ecosystem."}]]}]]}]}]}],["$","div",null,{"children":[["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":24,"children":["$","div",null,{"className":"epr-list","children":[["$","article","Venture Launchpad",{"className":"epr-row epr-row-featured","children":[["$","div",null,{"className":"epr-row-index","children":"01"}],["$","div",null,{"children":[["$","span",null,{"className":"epr-row-flag","children":"Where most founders begin"}],["$","span",null,{"className":"epr-row-type","children":"Start building"}],["$","h3",null,{"className":"epr-row-title","children":"Venture Launchpad"}],["$","p",null,{"className":"epr-row-desc","children":"Business model validation, market entry strategy, entity formation, and go-to-market execution for women-led logistics enterprises."}]]}]]}],["$","article","Strategic Partnerships",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"02"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Connect and grow"}],["$","h3",null,{"className":"epr-row-title","children":"Strategic Partnerships"}],["$","p",null,{"className":"epr-row-desc","children":"Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth."}]]}]]}],["$","article","Founder Mentorship",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"03"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Learn from builders"}],["$","h3",null,{"className":"epr-row-title","children":"Founder Mentorship"}],["$","p",null,{"className":"epr-row-desc","children":"One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale."}]]}]]}],["$","article","Growth & Scale",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"04"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Scale with confidence"}],["$","h3",null,{"className":"epr-row-title","children":"Growth & Scale"}],["$","p",null,{"className":"epr-row-desc","children":"Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow."}]]}]]}],["$","article","Industry Immersion",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"05"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"See the opportunity"}],["$","h3",null,{"className":"epr-row-title","children":"Industry Immersion"}],["$","p",null,{"className":"epr-row-desc","children":"Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical."}]]}]]}]]}]}],["$","div",null,{"className":"epr-cta","children":["$","$L3c",null,{"href":"/contact","className":"epr-cta-link","children":["Start your venture","$L3d"]}]}]]}]]}]]}]}]}] +28:["$","section",null,{"className":"eim-section","id":"wings-empowerment-impact","children":["$","div",null,{"className":"eim-inner dm-section-container","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"children":[["$","div",null,{"className":"eim-eyebrow","children":"/ Our Impact /"}],["$","h2",null,{"className":"eim-title","children":"Growth we can measure"}]]}],["$","hr",null,{"className":"eim-divider"}],["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":20,"className":"eim-hero-row","children":[["$","span",null,{"className":"eim-hero-num","children":["$","$L3e",null,{"end":500,"suffix":"+","duration":2.2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-hero-label","children":"Women-Led Enterprises In The Ecosystem"}]]}],["$","hr",null,{"className":"eim-divider-2"}],["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":20,"children":["$","div",null,{"className":"eim-secondary-row","children":[["$","div","Enterprises Launched",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L3e",null,{"end":100,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Enterprises Launched"}]]}],["$","div","Industry Partners",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L3e",null,{"end":25,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Industry Partners"}]]}],["$","div","Cities Active",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L3e",null,{"end":15,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Cities Active"}]]}],["$","div","In Economic Value Created",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":"Millions"}],["$","span",null,{"className":"eim-secondary-label","children":"In Economic Value Created"}]]}]]}]}],["$","$L1d",null,{"delay":0.12,"duration":0.75,"yOffset":20,"className":"eim-copy","children":["$","p",null,{"children":"Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake."}]}]]}]}] +2a:["$","section",null,{"className":"ehw-section","id":"wings-empowerment-how-it-works","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ehw-inner","children":[["$","div",null,{"className":"ehw-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"ehw-head-reveal","children":[["$","div",null,{"className":"ehw-eyebrow","children":"/ The Founder Journey /"}],["$","hr",null,{"className":"ehw-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"ehw-title","children":"A clear path, from idea to enterprise"}]}]]}],["$","$L3f",null,{"className":"ehw-sequence","stagger":0.12,"duration":0.7,"yOffset":30,"triggerOnce":true,"children":[["$","div","01",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"01"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Apply"}],["$","p",null,{"className":"ehw-step-desc","children":"Submit your venture idea and tell us about your entrepreneurial vision."}]]}],["$","div","02",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"02"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Discovery"}],["$","p",null,{"className":"ehw-step-desc","children":"Identify the right market opportunity and validate your business model."}]]}],["$","div","03",{"className":"ehw-step is-accent","children":[["$","div",null,{"className":"ehw-step-num","children":"03"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Build"}],["$","p",null,{"className":"ehw-step-desc","children":"Develop your enterprise with ecosystem support, mentorship, and partnerships."}]]}],["$","div","04",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"04"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Launch"}],["$","p",null,{"className":"ehw-step-desc","children":"Go to market with strategic backing, industry connections, and operational infrastructure."}]]}],["$","div","05",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"05"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Scale"}],["$","p",null,{"className":"ehw-step-desc","children":"Grow your team, expand operations, and lead your enterprise to sustainable impact."}]]}]]}]]}]}]}] +2c:["$","section",null,{"className":"est-section","id":"wings-empowerment-stories","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"est-inner","children":[["$","div",null,{"className":"est-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"est-head-reveal","children":[["$","div",null,{"className":"est-eyebrow","children":"/ Women in Motion /"}],["$","hr",null,{"className":"est-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"est-title","children":"Small steps. Lasting careers."}]}]]}],["$","div",null,{"className":"est-feature","children":[["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":24,"className":"est-photo","children":[["$","$L40",null,{"src":"/images/women-hero-slider-3.png","alt":"A Wings program participant on the operations floor at a Doormile logistics hub","fill":true,"sizes":"(max-width: 1000px) 100vw, 58vw","style":{"objectPosition":"80% 22%"}}],["$","div",null,{"className":"est-photo-caption","children":[["$","span",null,{"children":"Wings Participant"}],["$","strong",null,{"children":" building a career, one milestone at a time."}]]}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":24,"className":"est-copy","children":["$","div",null,{"children":[["$","span",null,{"className":"est-quote-mark","aria-hidden":"true","children":"“"}],["$","p",null,{"className":"est-quote-text","children":"I came in looking for a way forward. I found the confidence to lead."}],["$","p",null,{"className":"est-narrative","children":"She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry."}]]}]}]]}]]}]}]}] +2e:["$","section",null,{"className":"epn-section","id":"wings-empowerment-partners","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epn-inner","children":[["$","div",null,{"className":"epn-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epn-head-reveal","children":[["$","div",null,{"className":"epn-eyebrow","children":"/ Collaboration /"}],["$","hr",null,{"className":"epn-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epn-title","children":["Partnership is how ",["$","em",null,{"children":"ecosystems grow."}]]}]}]]}],["$","div",null,{"className":"epn-body","children":[["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":22,"className":"epn-manifesto","children":[["$","p",null,{"className":"epn-intro","children":"The strongest ecosystems are built by many hands."}],["$","p",null,{"className":"epn-note","children":"Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive."}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.8,"yOffset":22,"children":["$","div",null,{"className":"epn-grid","children":[["$","article","Industry Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"01"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Industry Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Technology Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"02"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Technology Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Community Networks",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"03"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Community Networks"}],["$","p",null,{"className":"epn-card-desc","children":"Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Investment Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"04"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Investment Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}]]}]}]]}]]}]}]}] +30:["$","div",null,{"className":"emp-cta-wrap","children":["$","section",null,{"className":"emp-cta","aria-labelledby":"empowerment-final-cta","children":["$","div",null,{"className":"emp-cta-inner","children":[["$","div",null,{"className":"emp-cta-recap","children":[["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"500+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Women Founders"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"100+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Enterprises Launched"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"25+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Industry Partners"}]]}]]}],["$","div",null,{"className":"emp-cta-kicker","children":"/ Build the next mile /"}],["$","h2",null,{"className":"emp-cta-title","id":"empowerment-final-cta","children":["Build what’s ",["$","em",null,{"children":"next."}]]}],["$","div",null,{"className":"emp-cta-bottom","children":["$","p",null,{"className":"emp-cta-sub","children":"Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics."}]}]]}]}]}] +3a:["$","polyline",null,{"points":"0.5 19.5 3 19.5 12.5 10 3 0.5"}] +3b:["$","div",null,{"className":"elementor-element elementor-element-b6e14bd e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b6e14bd","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"ws-map","aria-hidden":"true","children":["$","$L39",null,{}]}],["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-90cc867 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"90cc867","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-24c0280 elementor-widget__width-inherit elementor-widget elementor-widget-logico_heading","data-id":"24c0280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Women Empowerment /"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-2ed47f3 e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"2ed47f3","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-36efec7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"36efec7","data-element_type":"container","data-e-type":"container","children":[["$","$L1d",null,{"duration":0.8,"yOffset":28,"triggerOnce":true,"children":["$","div",null,{"className":"elementor-element elementor-element-778840d elementor-widget elementor-widget-logico_heading","data-id":"778840d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","children":"Women Building The Next Mile"}]}]}]}],["$","div",null,{"className":"elementor-element elementor-element-bbfb67f elementor-widget elementor-widget-image","data-id":"bbfb67f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","$L40",null,{"src":"/images/bg-map-women.webp","alt":"Women Map","width":626,"height":692,"style":{"maxWidth":"100%","height":"auto"}}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-b2c956f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"b2c956f","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"id":"ws-stories","children":[["$","$L3f",null,{"className":"ws__stats","stagger":0.1,"duration":0.6,"yOffset":20,"triggerOnce":true,"children":[["$","div","Women Founders",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L3e",null,{"end":500,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Women Founders"}]]}],["$","div","Cities Active",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L3e",null,{"end":35,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Cities Active"}]]}],["$","div","Enterprises Launched",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L3e",null,{"end":100,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Enterprises Launched"}]]}]]}],["$","$L3f",null,{"className":"ws__cards","stagger":0.08,"duration":0.6,"yOffset":24,"triggerOnce":true,"children":[["$","div","Venture Building",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M4 19V5"}],["$","path",null,{"d":"M4 7h12l-2 4 2 4H4"}],["$","path",null,{"d":"M18 19h2"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Venture Building"}],["$","p",null,{"className":"ws__card-desc","children":"End-to-end support for women launching logistics enterprises — from ideation to market entry."}]]}],"$L41","$L42","$L43"]}]]}]}]]}]]}]}]]}] +3d:["$","svg",null,{"width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}] +41:["$","div","Entrepreneurship",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"7","width":"18","height":"13","rx":"2"}],["$","path",null,{"d":"M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Entrepreneurship"}],["$","p",null,{"className":"ws__card-desc","children":"Women building, owning, and scaling sustainable businesses within the logistics ecosystem."}]]}] +42:["$","div","Founder Networks",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"8","cy":"8","r":"3"}],["$","circle",null,{"cx":"16","cy":"8","r":"3"}],["$","path",null,{"d":"M2.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}],["$","path",null,{"d":"M10.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Founder Networks"}],["$","p",null,{"className":"ws__card-desc","children":"Peer communities and strategic connections that accelerate growth and open new markets."}]]}] +43:["$","div","Enterprise Leadership",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"12","cy":"9","r":"5"}],["$","path",null,{"d":"M9 13.5 7.5 21 12 18l4.5 3-1.5-7.5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Enterprise Leadership"}],["$","p",null,{"className":"ws__card-desc","children":"Strategic decision-making, operational excellence, and vision-driven leadership for women founders."}]]}] +36:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +44:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +33:null +38:[["$","title","0",{"children":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","1",{"name":"description","content":"Doormile Wings empowers women to build, own, and lead enterprises within the logistics ecosystem through strategic partnerships, founder networks, and entrepreneurial infrastructure."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/empowerment"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","5",{"property":"og:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/empowerment"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","15",{"name":"twitter:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L44","21",{}]] diff --git a/build/empowerment/__next._full.txt b/.next/server/app/empowerment.segments/_full.segment.rsc similarity index 75% rename from build/empowerment/__next._full.txt rename to .next/server/app/empowerment.segments/_full.segment.rsc index d866020..a6a5be6 100644 --- a/build/empowerment/__next._full.txt +++ b/.next/server/app/empowerment.segments/_full.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -1b:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +1b:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -166,13 +166,13 @@ c:Tf99, .eh-btn-primary, .eh-btn-outline { width: 100%; justify-content: center; padding: 14px 22px; } .eh-btns { width: 100%; } } - 0:{"P":null,"c":["","empowerment"],"q":"","i":false,"f":[[["",{"children":["empowerment",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"empowerment","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59 elementor-empowerment","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le","$Lf","$L10","$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17"],"$L18"]}],{},null,false,null]},null,false,"$@19"]},null,false,null],"$L1a",false]],"m":"$undefined","G":["$1b",["$L1c"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1d:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"ScrollReveal"] -1e:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"ShimmerText"] -32:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -33:"$Sreact.suspense" -36:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -38:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] + 0:{"P":null,"c":["","empowerment"],"q":"","i":false,"f":[[["",{"children":["empowerment",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"empowerment","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59 elementor-empowerment","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],"$Le","$Lf","$L10","$L11","$L12","$L13","$L14","$L15","$L16"]}]}]}]}],["$L17"],"$L18"]}],{},null,false,null]},null,false,"$@19"]},null,false,null],"$L1a",false]],"m":"$undefined","G":["$1b",["$L1c"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1d:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"ScrollReveal"] +1e:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"ShimmerText"] +31:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +32:"$Sreact.suspense" +35:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +37:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"className":"eh-section","id":"wings-empowerment-hero","children":[["$","div",null,{"className":"eh-bg","aria-hidden":"true"}],["$","div",null,{"className":"eh-scrim","aria-hidden":"true"}],["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":30,"className":"eh-inner","children":[["$","h1",null,{"className":"eh-title","children":["Building ",["$","span",null,{"className":"eh-soft","children":"Women"}],["$","br",null,{}],["$","$L1e",null,{"children":"Entrepreneurs."}]]}],["$","p",null,{"className":"eh-desc","children":"Empowering ambitious women with the network, strategic partnerships, and opportunities to build, grow, and lead successful enterprises that shape the future of logistics."}]]}]]}]}] 1f:Te8f, .ev-section { @@ -327,7 +327,7 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } } e:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1f"}}],"$L20"] -21:Tbc4, +21:T1091, .esy-section { position: relative; width: calc(100% - 40px); @@ -422,6 +422,32 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class margin: 0; } + /* ---- Desktop-only inner spacing compaction ---- + .esy-section never set its own padding, so it was silently + inheriting 96px top/bottom from the global bare-tag "section" + padding rule (6rem 0) in site.css — stacking with .esy-inner's + own clamp(60-98px) padding into a huge, unbalanced inset. Cancel + that leak here. Also tighten .esy-inner's own padding and widen its + max-width (so a fixed padding, not a narrow centered column, + controls the left/right inset at every desktop width) — and bring + min-height down to match the now-tighter natural content height, + since the old 690px floor was itself forcing extra empty space + once the padding was reduced. Scoped to desktop only; tablet/ + mobile keep their original spacing untouched below. */ + @media (min-width: 1025px) { + .esy-section { + padding: 0; + min-height: clamp(420px, 38vw, 500px); + } + .esy-inner { + max-width: 1900px; + padding-top: 64px; + padding-bottom: 56px; + padding-left: 64px; + padding-right: 64px; + } + } + @media (max-width: 1024px) { .esy-section { width: calc(100% - 24px); border-radius: 22px; } .esy-inner { grid-template-columns: 1fr; align-items: start; } @@ -432,8 +458,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class .esy-section { min-height: 560px; } .esy-side { border-left: none; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 24px; } } - f:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$21"}}],["$","section",null,{"className":"esy-section","id":"wings-empowerment-story","children":[["$","div",null,{"className":"esy-bg","aria-hidden":"true"}],["$","div",null,{"className":"esy-inner dm-section-container","children":["$L22","$L23"]}]]}]] -24:T3756, + f:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$21"}}],"$L22"] +23:T3756, /* ============================================================ Success Stories — redesigned right column (stats + 2x2 cards) Dark section · red accent #dc2626 / #ef4444 · Manrope @@ -762,11 +788,12 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } #ws-stories .ws__cards { grid-template-columns: 1fr; gap: 12px; } } - 10:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$24"}}],"$L25"] -26:T2d38, + 10:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$23"}}],"$L24"] +25:T2f8a, .epr-section { background: #ffffff; - padding: clamp(78px, 9vw, 132px) 0; + padding-top: clamp(28px, 3.2vw, 48px); + padding-bottom: clamp(78px, 9vw, 132px); overflow: visible; } @@ -818,10 +845,10 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class display: grid; grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr); gap: clamp(32px, 5vw, 78px); - /* stretch (not start): the left column's grid-item box must span - the full row — i.e. match the taller Programs list — or the - sticky aside inside it runs out of room and un-sticks well - before the list finishes scrolling. */ + /* stretch (not start): .epr-aside-wrap must span the full row + height — the tall Programs column's implicit-row height — so it + defines the sticky travel distance. The visual box no longer + lives here, so stretching this item no longer distorts it. */ align-items: stretch; min-width: 0; } @@ -830,19 +857,55 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class min-width: 0; } - /* Plain stretching grid item. Carries no visual styling of its own — - it exists only to give .epr-aside (sized/centered independently - inside it) the full row height to stick within. */ + /* Responsibility split (desktop sticky architecture): + .epr-aside-wrap — plain grid item, stretched to the full + Programs-list row height. Defines travel + distance. No sizing responsibility of its + own beyond that. + .epr-aside-sticky — owns position: sticky. Its height is + explicitly clamped to the viewport + (100dvh minus header clearance and a + bottom safe-margin), so it can never grow + taller than what's actually visible — + the tall min-height that previously fought + the sticky top offset is gone entirely. + .epr-aside — the visual composition (ghost number, map, + heading, paragraph). Fills the sticky + frame's height and arranges its existing + content inside it; owns the decorative + bleed clipping (overflow: hidden). */ .epr-aside-wrap { min-width: 0; } - .epr-aside { + .epr-aside-sticky { + /* 132px clears the site header's fixed state (~122px tall once + scrolled) with a small margin; only grows on very tall + viewports. This is viewport-height-derived, NOT content-height + derived — unlike the old top formula, it never has to react to + how tall the aside's own content happens to be. */ + --epr-sticky-top: clamp(132px, 12dvh, 160px); + --epr-sticky-bottom-safe: 28px; position: sticky; - top: 110px; + top: var(--epr-sticky-top); + height: calc(100dvh - var(--epr-sticky-top) - var(--epr-sticky-bottom-safe)); + min-height: 0; min-width: 0; - min-height: clamp(480px, 44vw, 660px); - padding: clamp(18px, 3vw, 34px) 0 clamp(24px, 3.5vw, 42px); + /* Lets the visual composition react to the frame's OWN resolved + height (container query below) rather than guessing from the + viewport or the write-up's vw-based type scale. */ + container-type: size; + container-name: epr-frame; + } + + .epr-aside { + --epr-aside-pad-t: clamp(18px, 3vw, 34px); + --epr-aside-pad-b: clamp(24px, 3.5vw, 42px); + position: relative; + height: 100%; + min-width: 0; + min-height: 0; + padding: var(--epr-aside-pad-t) 0 var(--epr-aside-pad-b); display: flex; flex-direction: column; justify-content: center; @@ -905,79 +968,24 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class margin: 0; } - /* Continues the editorial narrative below the original hero - statement/paragraph — same grid, same gap rhythm as the rest of - .epr-aside-content, so it reads as one uninterrupted column rather - than a bolted-on block. Exists so the sticky aside still has real - editorial content to show while the list scrolls through its last - two entries, instead of ending early and leaving the left side - blank for the remainder of the scroll. */ - .epr-aside-divider { - position: relative; - width: 100%; - height: 1px; - border: none; - margin: 0; - background-color: rgba(17, 17, 17, 0.12); + /* Constrained-frame fallback: the sticky frame is short (short + desktop viewport height), so the decorative ghost number/map + shrink first — spacing second — while the heading and paragraph + stay full size and fully visible, per spec. Placed after the base + .epr-aside-num/-content/-map rules so it wins the cascade at + matching container sizes (equal selector specificity; source + order decides). */ + @container epr-frame (max-height: 660px) { + .epr-aside { padding-top: clamp(12px, 1.8vw, 22px); padding-bottom: clamp(16px, 2.2vw, 26px); } + .epr-aside-content { gap: clamp(12px, 1.6vw, 20px); } + .epr-aside-num { font-size: clamp(90px, 11vw, 180px); } } - .epr-aside-label { - position: relative; - font-size: 12px; - font-weight: 800; - letter-spacing: 1.7px; - text-transform: uppercase; - color: rgba(17, 17, 17, 0.4); - margin: 0 0 -6px 0; - } - - .epr-aside-gains-list { - position: relative; - list-style: none; - margin: 0; - padding: 0; - display: grid; - gap: 9px; - } - - .epr-aside-gains-list li { - position: relative; - padding-left: 19px; - font-size: 15.5px; - line-height: 1.5; - color: rgba(17, 17, 17, 0.68); - } - - /* Extra .epr-aside prefix raises specificity above the global theme - rule ".logico-front-end ul li:before" (a fontello glyph), so our - clean red dot replaces the inherited checkmark marker — same fix - already established for this exact conflict in LegalDocument.tsx. */ - .epr-aside .epr-aside-gains-list li::before { - content: "" !important; - position: absolute; - left: 2px; - top: 0.62em; - width: 5px; - height: 5px; - border-radius: 50%; - background: #c8102e; - font-size: 0; - } - - .epr-aside-final { - position: relative; - max-width: 30ch; - font-size: clamp(17px, 1.7vw, 20px); - font-weight: 700; - line-height: 1.5; - letter-spacing: -0.01em; - color: #111111; - margin: 0; - } - - .epr-aside-final em { - font-style: normal; - color: #c8102e; + @container epr-frame (max-height: 560px) { + .epr-aside { padding-top: clamp(8px, 1.2vw, 14px); padding-bottom: clamp(10px, 1.6vw, 18px); } + .epr-aside-content { gap: clamp(6px, 1vw, 12px); } + .epr-aside-num { font-size: clamp(48px, 7vw, 100px); } + .epr-aside-map { opacity: 0.14; } } .epr-list { @@ -1097,21 +1105,18 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class /* Laptop: sticky stays enabled, just a narrower gutter. */ @media (max-width: 1180px) { .epr-stage { grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr); gap: clamp(28px, 4vw, 46px); } - .epr-aside { min-height: 420px; } .epr-row:nth-child(even) { margin-left: 0; } } /* Tablet: sticky disabled — the aside scrolls in normal flow instead of pinning, since there's no longer enough vertical runway next to - the (now narrower, shorter) program list for pinning to read well. - The wrapper no longer needs to stretch once its child isn't sticky. */ + the (now narrower, shorter) program list for pinning to read well. */ @media (max-width: 1023px) { - .epr-aside-wrap { - align-self: start; - } - .epr-aside { + .epr-aside-sticky { position: relative; top: auto; + height: auto; + container-type: normal; } } @@ -1142,17 +1147,10 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class max-width: 32ch; font-size: 14.5px; } - .epr-aside-gains-list li { - font-size: 14.5px; - } - .epr-aside-final { - max-width: 28ch; - font-size: 16.5px; - } } @media (max-width: 640px) { - .epr-section { padding-top: 54px; padding-bottom: 54px; } + .epr-section { padding-top: 28px; padding-bottom: 54px; } .epr-title { font-size: clamp(34px, 10vw, 40px) !important; letter-spacing: -0.045em !important; @@ -1164,8 +1162,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } .epr-row { grid-template-columns: 1fr; gap: 12px; } } - 11:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$26"}}],"$L27"] -28:Te98, + 11:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$25"}}],"$L26"] +27:Te98, .eim-section { position: relative; width: calc(100% - 40px); @@ -1296,8 +1294,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class @media (max-width: 460px) { .eim-section { padding-top: 48px; padding-bottom: 48px; } } - 12:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$28"}}],"$L29"] -2a:T1573, + 12:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$27"}}],"$L28"] +29:T1f91, .ehw-section { background: #ffffff; padding: var(--space-section-lg, 80px) 0 calc(var(--space-section-lg, 80px) + 32px) 0; @@ -1453,38 +1451,106 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } } - /* Mobile: single column — dividers rotate from vertical to horizontal. */ + /* Mobile: compact numbered editorial index — number in a narrow + left column, title/description/divider sharing one right + content column, laid out on the existing milestone markup via + CSS Grid (no duplicated JSX, no new step markup). */ @media (max-width: 640px) { + .ehw-head { + margin-bottom: clamp(40px, 10vw, 56px); + } + .ehw-sequence { row-gap: 0; } + .ehw-step { + display: grid; + grid-template-columns: 48px minmax(0, 1fr); + column-gap: 14px; flex-basis: 100%; padding-left: 0; - padding-top: clamp(28px, 8vw, 38px); + padding-top: clamp(28px, 8vw, 36px); border-left: none; - border-top: 1px solid rgba(17, 17, 17, 0.14); - } - .ehw-step:first-child { - padding-top: 0; border-top: none; } - .ehw-step:nth-child(4) { - border-top: 1px solid rgba(17, 17, 17, 0.14); - } - .ehw-step:hover { - border-left-color: transparent; + + .ehw-step:first-child { + padding-top: 0; } + + /* Compact solid index number — replaces the oversized pale + outline treatment used on desktop/tablet. */ .ehw-step-num { - font-size: clamp(44px, 13vw, 56px); + grid-column: 1; + grid-row: 1; + align-self: start; + font-size: clamp(32px, 9vw, 40px); + line-height: 1; + color: #c8102e; + -webkit-text-stroke: 0; + margin: 0; + } + + /* Hidden completely — no reserved gap left in its place since a + display:none grid item takes no track space. */ + .ehw-step-kicker { + display: none; + } + + .ehw-step-title { + grid-column: 2; + grid-row: 1; + font-size: clamp(22px, 6vw, 26px) !important; + } + + .ehw-step-desc { + grid-column: 2; + grid-row: 2; + max-width: none; + font-size: 16px; + } + + /* Divider lives inside the description box (content column + only), so it never runs underneath the number column. */ + .ehw-step-desc::after { + content: ""; + display: block; + margin-top: clamp(24px, 6vw, 28px); + height: 1px; + background-color: rgba(17, 17, 17, 0.14); + } + + .ehw-step:last-child .ehw-step-desc::after { + display: none; + } + } + + /* ---- Mobile title-to-description gap fix ---- + .ehw-step-title is an

, so it's matched by a global, + unscoped site.css rule (.logico-front-end h3:not(...) { margin: + 0 0 30px }) that outranks this component's own single-class + ".ehw-step-title { margin: 0 0 22px }" by specificity — bumping + the real margin-bottom to 30px everywhere, not just here. There + is no min-height, space-between, or fixed row height anywhere in + this component; the gap is purely that extra 8px of margin + reading as oversized once every other element around it (kicker, + description line-height) is tightly spaced. Overridden with + !important, matching how every other property on this selector + already has to defeat the same global rule. Scoped to mobile + only, per spec — desktop/tablet are left exactly as they were + (still resolving to the global 30px; out of scope here). */ + @media (max-width: 767px) { + .ehw-step-title { + margin-bottom: 16px !important; } } @media (max-width: 480px) { .ehw-section { padding-top: 48px; padding-bottom: 68px; } } - 13:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2a"}}],"$L2b"] -2c:T1bff, + 13:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$29"}}],"$L2a"] +2b:T1df1, .est-section { position: relative; background: #ffffff; @@ -1741,7 +1807,14 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } @media (max-width: 640px) { - .est-section { padding-top: 54px; padding-bottom: 54px; } + .est-section { padding-top: 54px; padding-bottom: 6px; } + /* .est-feature's margin-bottom (clamp(44px, 6vw, 76px)) was sized + to precede an .est-list testimonial row block that no longer + exists in this component's JSX. Since .est-feature is now the + section's last child, that margin was pure dead space stacking + on top of .est-section's own padding-bottom above — the real + source of the oversized mobile gap before the next section. */ + .est-feature { margin-bottom: 0; } .est-title { font-size: clamp(34px, 10vw, 40px) !important; letter-spacing: -0.045em !important; @@ -1755,8 +1828,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class .est-copy { border-radius: 20px; } .est-photo { min-height: 420px; } } - 14:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2c"}}],"$L2d"] -2e:T16dc, + 14:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2b"}}],"$L2c"] +2d:T16dc, .epn-section { position: relative; width: calc(100% - 40px); @@ -1966,8 +2039,8 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class @media (max-width: 460px) { .epn-section { padding-top: 54px; padding-bottom: 54px; } } - 15:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2e"}}],"$L2f"] -30:Tdad, + 15:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2d"}}],"$L2e"] +2f:Tdad, .emp-cta-wrap { width: calc(100% - 40px); margin: clamp(24px, 4vw, 40px) auto clamp(40px, 5vw, 64px); @@ -2088,38 +2161,34 @@ d:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"class } .emp-cta-recap { flex-wrap: wrap; row-gap: 14px; } } - 16:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$30"}}],"$L31"] + 16:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2f"}}],"$L30"] 17:["$","script","script-0",{"src":"/_next/static/chunks/0vzdvje64yndv.js","async":true,"nonce":"$undefined"}] -18:["$","$L32",null,{"children":["$","$33",null,{"name":"Next.MetadataOutlet","children":"$@34"}]}] -35:[] -19:"$W35" -1a:["$","$1","h",{"children":[null,["$","$L36",null,{"children":"$L37"}],["$","div",null,{"hidden":true,"children":["$","$L38",null,{"children":["$","$33",null,{"name":"Next.Metadata","children":"$L39"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1c:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -3a:I[5074,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"default"] -41:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"CountUp"] -42:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"StaggerChildren"] -43:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"Image"] -20:["$","section",null,{"className":"ev-section","id":"wings-empowerment-vision","children":[["$","div",null,{"className":"ev-map","aria-hidden":"true","children":["$","$L3a",null,{}]}],["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ev-inner","children":[["$","$L1d",null,{"delay":0.05,"duration":0.7,"yOffset":20,"children":[["$","p",null,{"className":"ev-eyebrow","children":"/ Our Vision /"}],["$","hr",null,{"className":"ev-divider"}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":30,"children":["$","h2",null,{"className":"ev-title","children":"Women Own The Future."}]}],["$","div",null,{"className":"ev-columns","children":[["$","$L1d",null,{"delay":0.18,"duration":0.8,"yOffset":25,"children":["$","p",null,{"className":"ev-statement","children":"A logistics ecosystem where women don’t just participate — they own, build, and lead."}]}],["$","$L1d",null,{"delay":0.26,"duration":0.8,"yOffset":25,"className":"ev-support","children":[["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"The vision"}],["$","p",null,{"className":"ev-lead","children":"We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"Why it matters"}],["$","p",null,{"className":"ev-note","children":"Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"How Wings contributes"}],["$","p",null,{"className":"ev-note","children":"Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise."}]]}]]}]]}]]}]}]]}] -22:["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":25,"children":[["$","div",null,{"className":"esy-eyebrow","children":"/ Our Approach /"}],["$","p",null,{"className":"esy-statement","children":["Not a program on a brochure. ",["$","em",null,{"children":"An ecosystem women can build in."}]]}]]}] -23:["$","$L1d",null,{"delay":0.15,"duration":0.8,"yOffset":25,"className":"esy-side","children":[["$","span",null,{"className":"esy-label","children":"Manifesto"}],["$","p",null,{"className":"esy-pull","children":"A venture that starts with conviction. A network that turns it into momentum."}],["$","p",null,{"className":"esy-sub","children":"Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled."}]]}] -25:["$","div",null,{"id":"women-entrepreneurship","className":"elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"bbc6760","data-element_type":"container","data-e-type":"container","style":{"backgroundColor":"#1f1f1f","width":"calc(100% - 40px)","marginLeft":"20px","marginRight":"20px","borderRadius":"25px"},"children":[["$","div",null,{"className":"elementor-element elementor-element-13a7637 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-logico_decorative_block","data-id":"13a7637","data-element_type":"widget","data-e-type":"widget","style":{"position":"absolute"},"children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"block-decoration animation-enable block-decoration-style-1","children":["$","div",null,{"className":"block-decoration-item"}]}]}]}],["$","div",null,{"style":{"backgroundImage":"url(/images/bg-header-women.webp)"},"className":"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container"}],["$","div",null,{"className":"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"01"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h5",null,{"className":"logico-title","children":"Women Entrepreneurship"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"An ecosystem where women build, own, and scale enterprises across logistics."}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":["$","div",null,{"className":"elementor-element elementor-element-46b9ffa elementor-widget elementor-widget-logico_button","data-id":"46b9ffa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"button-widget","children":["$","div",null,{"className":"button-container","children":["$","a",null,{"href":"#wings-empowerment-programs","className":"logico-small-button","children":["Explore the ecosystem",["$","svg",null,{"viewBox":"0 0 13 20","children":"$L3b"}]]}]}]}]}]}]}]]}]}],"$L3c"]}] -27:["$","section",null,{"className":"epr-section","id":"wings-empowerment-programs","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epr-inner","children":[["$","div",null,{"className":"epr-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epr-head-reveal","children":[["$","div",null,{"className":"epr-eyebrow","children":"/ Entrepreneurship Pillars /"}],["$","hr",null,{"className":"epr-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epr-title","children":"Every pillar is built around ownership."}]}]]}],["$","div",null,{"className":"epr-stage","children":[["$","div",null,{"className":"epr-aside-wrap","children":["$","aside",null,{"className":"epr-aside","children":[["$","div",null,{"className":"epr-aside-map","aria-hidden":"true","children":["$","$L3a",null,{}]}],["$","$L1d",null,{"delay":0.05,"duration":0.8,"yOffset":24,"className":"epr-aside-content","children":[["$","div",null,{"className":"epr-aside-num","children":"05"}],["$","p",null,{"className":"epr-aside-copy","children":["Building tomorrow’s ",["$","em",null,{"children":"women entrepreneurs."}]]}],["$","p",null,{"className":"epr-aside-desc","children":"Every enterprise starts with one decision. Our pillars move women from idea to ownership through mentorship, real industry partnerships, and hands-on venture building across the logistics ecosystem."}],["$","hr",null,{"className":"epr-aside-divider"}],["$","div",null,{"className":"epr-aside-label","children":"Journey Summary"}],["$","p",null,{"className":"epr-aside-desc","children":"Each pillar builds on the one before it — moving founders from validating an idea, to forming partnerships, to receiving hands-on guidance, to growing a sustainable logistics business."}],["$","div",null,{"className":"epr-aside-label","children":"What Participants Gain"}],["$","ul",null,{"className":"epr-aside-gains-list","children":[["$","li","Business validation",{"children":"Business validation"}],["$","li","Industry partnerships",{"children":"Industry partnerships"}],["$","li","Founder mentorship",{"children":"Founder mentorship"}],["$","li","Market readiness",{"children":"Market readiness"}],["$","li","Sustainable growth",{"children":"Sustainable growth"}]]}],["$","p",null,{"className":"epr-aside-final","children":["The destination is never just launching a business. It is building ",["$","em",null,{"children":"women-led enterprises that strengthen the logistics ecosystem."}]]}]]}]]}]}],["$","div",null,{"children":[["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":24,"children":["$","div",null,{"className":"epr-list","children":[["$","article","Venture Launchpad",{"className":"epr-row epr-row-featured","children":[["$","div",null,{"className":"epr-row-index","children":"01"}],["$","div",null,{"children":[["$","span",null,{"className":"epr-row-flag","children":"Where most founders begin"}],["$","span",null,{"className":"epr-row-type","children":"Start building"}],["$","h3",null,{"className":"epr-row-title","children":"Venture Launchpad"}],["$","p",null,{"className":"epr-row-desc","children":"Business model validation, market entry strategy, entity formation, and go-to-market execution for women-led logistics enterprises."}]]}]]}],["$","article","Strategic Partnerships",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"02"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Connect and grow"}],["$","h3",null,{"className":"epr-row-title","children":"Strategic Partnerships"}],["$","p",null,{"className":"epr-row-desc","children":"Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth."}]]}]]}],["$","article","Founder Mentorship",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"03"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Learn from builders"}],["$","h3",null,{"className":"epr-row-title","children":"Founder Mentorship"}],["$","p",null,{"className":"epr-row-desc","children":"One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale."}]]}]]}],["$","article","Growth & Scale",{"className":"epr-row","children":["$L3d","$L3e"]}],"$L3f"]}]}],"$L40"]}]]}]]}]}]}] -29:["$","section",null,{"className":"eim-section","id":"wings-empowerment-impact","children":["$","div",null,{"className":"eim-inner dm-section-container","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"children":[["$","div",null,{"className":"eim-eyebrow","children":"/ Our Impact /"}],["$","h2",null,{"className":"eim-title","children":"Growth we can measure"}]]}],["$","hr",null,{"className":"eim-divider"}],["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":20,"className":"eim-hero-row","children":[["$","span",null,{"className":"eim-hero-num","children":["$","$L41",null,{"end":500,"suffix":"+","duration":2.2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-hero-label","children":"Women-Led Enterprises In The Ecosystem"}]]}],["$","hr",null,{"className":"eim-divider-2"}],["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":20,"children":["$","div",null,{"className":"eim-secondary-row","children":[["$","div","Enterprises Launched",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L41",null,{"end":100,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Enterprises Launched"}]]}],["$","div","Industry Partners",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L41",null,{"end":25,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Industry Partners"}]]}],["$","div","Cities Active",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L41",null,{"end":15,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Cities Active"}]]}],["$","div","In Economic Value Created",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":"Millions"}],["$","span",null,{"className":"eim-secondary-label","children":"In Economic Value Created"}]]}]]}]}],["$","$L1d",null,{"delay":0.12,"duration":0.75,"yOffset":20,"className":"eim-copy","children":["$","p",null,{"children":"Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake."}]}]]}]}] -2b:["$","section",null,{"className":"ehw-section","id":"wings-empowerment-how-it-works","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ehw-inner","children":[["$","div",null,{"className":"ehw-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"ehw-head-reveal","children":[["$","div",null,{"className":"ehw-eyebrow","children":"/ The Founder Journey /"}],["$","hr",null,{"className":"ehw-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"ehw-title","children":"A clear path, from idea to enterprise"}]}]]}],["$","$L42",null,{"className":"ehw-sequence","stagger":0.12,"duration":0.7,"yOffset":30,"triggerOnce":true,"children":[["$","div","01",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"01"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Apply"}],["$","p",null,{"className":"ehw-step-desc","children":"Submit your venture idea and tell us about your entrepreneurial vision."}]]}],["$","div","02",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"02"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Discovery"}],["$","p",null,{"className":"ehw-step-desc","children":"Identify the right market opportunity and validate your business model."}]]}],["$","div","03",{"className":"ehw-step is-accent","children":[["$","div",null,{"className":"ehw-step-num","children":"03"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Build"}],["$","p",null,{"className":"ehw-step-desc","children":"Develop your enterprise with ecosystem support, mentorship, and partnerships."}]]}],["$","div","04",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"04"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Launch"}],["$","p",null,{"className":"ehw-step-desc","children":"Go to market with strategic backing, industry connections, and operational infrastructure."}]]}],["$","div","05",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"05"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Scale"}],["$","p",null,{"className":"ehw-step-desc","children":"Grow your team, expand operations, and lead your enterprise to sustainable impact."}]]}]]}]]}]}]}] -2d:["$","section",null,{"className":"est-section","id":"wings-empowerment-stories","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"est-inner","children":[["$","div",null,{"className":"est-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"est-head-reveal","children":[["$","div",null,{"className":"est-eyebrow","children":"/ Women in Motion /"}],["$","hr",null,{"className":"est-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"est-title","children":"Small steps. Lasting careers."}]}]]}],["$","div",null,{"className":"est-feature","children":[["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":24,"className":"est-photo","children":[["$","$L43",null,{"src":"/images/women-hero-slider-3.png","alt":"A Wings program participant on the operations floor at a Doormile logistics hub","fill":true,"sizes":"(max-width: 1000px) 100vw, 58vw","style":{"objectPosition":"80% 22%"}}],["$","div",null,{"className":"est-photo-caption","children":[["$","span",null,{"children":"Wings Participant"}],["$","strong",null,{"children":" building a career, one milestone at a time."}]]}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":24,"className":"est-copy","children":["$","div",null,{"children":[["$","span",null,{"className":"est-quote-mark","aria-hidden":"true","children":"“"}],["$","p",null,{"className":"est-quote-text","children":"I came in looking for a way forward. I found the confidence to lead."}],["$","p",null,{"className":"est-narrative","children":"She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry."}]]}]}]]}]]}]}]}] -2f:["$","section",null,{"className":"epn-section","id":"wings-empowerment-partners","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epn-inner","children":[["$","div",null,{"className":"epn-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epn-head-reveal","children":[["$","div",null,{"className":"epn-eyebrow","children":"/ Collaboration /"}],["$","hr",null,{"className":"epn-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epn-title","children":["Partnership is how ",["$","em",null,{"children":"ecosystems grow."}]]}]}]]}],["$","div",null,{"className":"epn-body","children":[["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":22,"className":"epn-manifesto","children":[["$","p",null,{"className":"epn-intro","children":"The strongest ecosystems are built by many hands."}],["$","p",null,{"className":"epn-note","children":"Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive."}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.8,"yOffset":22,"children":["$","div",null,{"className":"epn-grid","children":[["$","article","Industry Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"01"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Industry Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Technology Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"02"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Technology Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Community Networks",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"03"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Community Networks"}],["$","p",null,{"className":"epn-card-desc","children":"Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Investment Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"04"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Investment Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}]]}]}]]}]]}]}]}] -31:["$","div",null,{"className":"emp-cta-wrap","children":["$","section",null,{"className":"emp-cta","aria-labelledby":"empowerment-final-cta","children":["$","div",null,{"className":"emp-cta-inner","children":[["$","div",null,{"className":"emp-cta-recap","children":[["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"500+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Women Founders"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"100+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Enterprises Launched"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"25+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Industry Partners"}]]}]]}],["$","div",null,{"className":"emp-cta-kicker","children":"/ Build the next mile /"}],["$","h2",null,{"className":"emp-cta-title","id":"empowerment-final-cta","children":["Build what’s ",["$","em",null,{"children":"next."}]]}],["$","div",null,{"className":"emp-cta-bottom","children":["$","p",null,{"className":"emp-cta-sub","children":"Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics."}]}]]}]}]}] -47:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],""] -3b:["$","polyline",null,{"points":"0.5 19.5 3 19.5 12.5 10 3 0.5"}] -3c:["$","div",null,{"className":"elementor-element elementor-element-b6e14bd e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b6e14bd","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"ws-map","aria-hidden":"true","children":["$","$L3a",null,{}]}],["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-90cc867 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"90cc867","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-24c0280 elementor-widget__width-inherit elementor-widget elementor-widget-logico_heading","data-id":"24c0280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Doormile Wings /"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-2ed47f3 e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"2ed47f3","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-36efec7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"36efec7","data-element_type":"container","data-e-type":"container","children":[["$","$L1d",null,{"duration":0.8,"yOffset":28,"triggerOnce":true,"children":["$","div",null,{"className":"elementor-element elementor-element-778840d elementor-widget elementor-widget-logico_heading","data-id":"778840d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","children":"Women Building The Next Mile"}]}]}]}],["$","div",null,{"className":"elementor-element elementor-element-bbfb67f elementor-widget elementor-widget-image","data-id":"bbfb67f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","$L43",null,{"src":"/images/bg-map-women.webp","alt":"Women Map","width":626,"height":692,"style":{"maxWidth":"100%","height":"auto"}}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-b2c956f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"b2c956f","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"id":"ws-stories","children":[["$","$L42",null,{"className":"ws__stats","stagger":0.1,"duration":0.6,"yOffset":20,"triggerOnce":true,"children":[["$","div","Women Founders",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L41",null,{"end":500,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Women Founders"}]]}],["$","div","Cities Active",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L41",null,{"end":35,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Cities Active"}]]}],["$","div","Enterprises Launched",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L41",null,{"end":100,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Enterprises Launched"}]]}]]}],["$","$L42",null,{"className":"ws__cards","stagger":0.08,"duration":0.6,"yOffset":24,"triggerOnce":true,"children":[["$","div","Venture Building",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M4 19V5"}],["$","path",null,{"d":"M4 7h12l-2 4 2 4H4"}],["$","path",null,{"d":"M18 19h2"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Venture Building"}],["$","p",null,{"className":"ws__card-desc","children":"End-to-end support for women launching logistics enterprises — from ideation to market entry."}]]}],"$L44","$L45","$L46"]}]]}]}]]}]]}]}]]}] -3d:["$","div",null,{"className":"epr-row-index","children":"04"}] -3e:["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Scale with confidence"}],["$","h3",null,{"className":"epr-row-title","children":"Growth & Scale"}],["$","p",null,{"className":"epr-row-desc","children":"Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow."}]]}] -3f:["$","article","Industry Immersion",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"05"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"See the opportunity"}],["$","h3",null,{"className":"epr-row-title","children":"Industry Immersion"}],["$","p",null,{"className":"epr-row-desc","children":"Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical."}]]}]]}] -40:["$","div",null,{"className":"epr-cta","children":["$","$L47",null,{"href":"/contact","className":"epr-cta-link","children":["Start your venture",["$","svg",null,{"width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]]}]}] -44:["$","div","Entrepreneurship",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"7","width":"18","height":"13","rx":"2"}],["$","path",null,{"d":"M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Entrepreneurship"}],["$","p",null,{"className":"ws__card-desc","children":"Women building, owning, and scaling sustainable businesses within the logistics ecosystem."}]]}] -45:["$","div","Founder Networks",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"8","cy":"8","r":"3"}],["$","circle",null,{"cx":"16","cy":"8","r":"3"}],["$","path",null,{"d":"M2.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}],["$","path",null,{"d":"M10.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Founder Networks"}],["$","p",null,{"className":"ws__card-desc","children":"Peer communities and strategic connections that accelerate growth and open new markets."}]]}] -46:["$","div","Enterprise Leadership",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"12","cy":"9","r":"5"}],["$","path",null,{"d":"M9 13.5 7.5 21 12 18l4.5 3-1.5-7.5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Enterprise Leadership"}],["$","p",null,{"className":"ws__card-desc","children":"Strategic decision-making, operational excellence, and vision-driven leadership for women founders."}]]}] -37:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -48:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -34:null -39:[["$","title","0",{"children":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","1",{"name":"description","content":"Doormile Wings empowers women to build, own, and lead enterprises within the logistics ecosystem through strategic partnerships, founder networks, and entrepreneurial infrastructure."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/empowerment"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","5",{"property":"og:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/empowerment"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","15",{"name":"twitter:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L48","21",{}]] +18:["$","$L31",null,{"children":["$","$32",null,{"name":"Next.MetadataOutlet","children":"$@33"}]}] +34:[] +19:"$W34" +1a:["$","$1","h",{"children":[null,["$","$L35",null,{"children":"$L36"}],["$","div",null,{"hidden":true,"children":["$","$L37",null,{"children":["$","$32",null,{"name":"Next.Metadata","children":"$L38"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +1c:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +39:I[5074,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"default"] +3c:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],""] +3e:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"CountUp"] +3f:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"StaggerChildren"] +40:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"Image"] +20:["$","section",null,{"className":"ev-section","id":"wings-empowerment-vision","children":[["$","div",null,{"className":"ev-map","aria-hidden":"true","children":["$","$L39",null,{}]}],["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ev-inner","children":[["$","$L1d",null,{"delay":0.05,"duration":0.7,"yOffset":20,"children":[["$","p",null,{"className":"ev-eyebrow","children":"/ Our Vision /"}],["$","hr",null,{"className":"ev-divider"}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":30,"children":["$","h2",null,{"className":"ev-title","children":"Women Own The Future."}]}],["$","div",null,{"className":"ev-columns","children":[["$","$L1d",null,{"delay":0.18,"duration":0.8,"yOffset":25,"children":["$","p",null,{"className":"ev-statement","children":"A logistics ecosystem where women don’t just participate — they own, build, and lead."}]}],["$","$L1d",null,{"delay":0.26,"duration":0.8,"yOffset":25,"className":"ev-support","children":[["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"The vision"}],["$","p",null,{"className":"ev-lead","children":"We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"Why it matters"}],["$","p",null,{"className":"ev-note","children":"Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"How Wings contributes"}],["$","p",null,{"className":"ev-note","children":"Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise."}]]}]]}]]}]]}]}]]}] +22:["$","section",null,{"className":"esy-section","id":"wings-empowerment-story","children":[["$","div",null,{"className":"esy-bg","aria-hidden":"true"}],["$","div",null,{"className":"esy-inner dm-section-container","children":[["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":25,"children":[["$","div",null,{"className":"esy-eyebrow","children":"/ Our Approach /"}],["$","p",null,{"className":"esy-statement","children":["Not a program on a brochure. ",["$","em",null,{"children":"An ecosystem women can build in."}]]}]]}],["$","$L1d",null,{"delay":0.15,"duration":0.8,"yOffset":25,"className":"esy-side","children":[["$","span",null,{"className":"esy-label","children":"Manifesto"}],["$","p",null,{"className":"esy-pull","children":"A venture that starts with conviction. A network that turns it into momentum."}],["$","p",null,{"className":"esy-sub","children":"Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled."}]]}]]}]]}] +24:["$","div",null,{"id":"women-entrepreneurship","className":"elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"bbc6760","data-element_type":"container","data-e-type":"container","style":{"backgroundColor":"#1f1f1f","width":"calc(100% - 40px)","marginLeft":"20px","marginRight":"20px","borderRadius":"25px"},"children":[["$","div",null,{"className":"elementor-element elementor-element-13a7637 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-logico_decorative_block","data-id":"13a7637","data-element_type":"widget","data-e-type":"widget","style":{"position":"absolute"},"children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"block-decoration animation-enable block-decoration-style-1","children":["$","div",null,{"className":"block-decoration-item"}]}]}]}],["$","div",null,{"style":{"backgroundImage":"url(/images/bg-header-women.webp)"},"className":"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container"}],["$","div",null,{"className":"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"01"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h5",null,{"className":"logico-title","children":"Women Entrepreneurship"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"An ecosystem where women build, own, and scale enterprises across logistics."}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":["$","div",null,{"className":"elementor-element elementor-element-46b9ffa elementor-widget elementor-widget-logico_button","data-id":"46b9ffa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"button-widget","children":["$","div",null,{"className":"button-container","children":["$","a",null,{"href":"#wings-empowerment-programs","className":"logico-small-button","children":["Explore the ecosystem",["$","svg",null,{"viewBox":"0 0 13 20","children":"$L3a"}]]}]}]}]}]}]}]]}]}],"$L3b"]}] +26:["$","section",null,{"className":"epr-section","id":"wings-empowerment-programs","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epr-inner","children":[["$","div",null,{"className":"epr-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epr-head-reveal","children":[["$","div",null,{"className":"epr-eyebrow","children":"/ Entrepreneurship Pillars /"}],["$","hr",null,{"className":"epr-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epr-title","children":"Every pillar is built around ownership."}]}]]}],["$","div",null,{"className":"epr-stage","children":[["$","div",null,{"className":"epr-aside-wrap","children":["$","div",null,{"className":"epr-aside-sticky","children":["$","aside",null,{"className":"epr-aside","children":[["$","div",null,{"className":"epr-aside-map","aria-hidden":"true","children":["$","$L39",null,{}]}],["$","$L1d",null,{"delay":0.05,"duration":0.8,"yOffset":24,"className":"epr-aside-content","children":[["$","div",null,{"className":"epr-aside-num","children":"05"}],["$","p",null,{"className":"epr-aside-copy","children":["Building tomorrow’s ",["$","em",null,{"children":"women entrepreneurs."}]]}],["$","p",null,{"className":"epr-aside-desc","children":"Every enterprise starts with one decision. Our pillars move women from idea to ownership through mentorship, real industry partnerships, and hands-on venture building across the logistics ecosystem."}]]}]]}]}]}],["$","div",null,{"children":[["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":24,"children":["$","div",null,{"className":"epr-list","children":[["$","article","Venture Launchpad",{"className":"epr-row epr-row-featured","children":[["$","div",null,{"className":"epr-row-index","children":"01"}],["$","div",null,{"children":[["$","span",null,{"className":"epr-row-flag","children":"Where most founders begin"}],["$","span",null,{"className":"epr-row-type","children":"Start building"}],["$","h3",null,{"className":"epr-row-title","children":"Venture Launchpad"}],["$","p",null,{"className":"epr-row-desc","children":"Business model validation, market entry strategy, entity formation, and go-to-market execution for women-led logistics enterprises."}]]}]]}],["$","article","Strategic Partnerships",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"02"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Connect and grow"}],["$","h3",null,{"className":"epr-row-title","children":"Strategic Partnerships"}],["$","p",null,{"className":"epr-row-desc","children":"Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth."}]]}]]}],["$","article","Founder Mentorship",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"03"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Learn from builders"}],["$","h3",null,{"className":"epr-row-title","children":"Founder Mentorship"}],["$","p",null,{"className":"epr-row-desc","children":"One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale."}]]}]]}],["$","article","Growth & Scale",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"04"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Scale with confidence"}],["$","h3",null,{"className":"epr-row-title","children":"Growth & Scale"}],["$","p",null,{"className":"epr-row-desc","children":"Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow."}]]}]]}],["$","article","Industry Immersion",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"05"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"See the opportunity"}],["$","h3",null,{"className":"epr-row-title","children":"Industry Immersion"}],["$","p",null,{"className":"epr-row-desc","children":"Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical."}]]}]]}]]}]}],["$","div",null,{"className":"epr-cta","children":["$","$L3c",null,{"href":"/contact","className":"epr-cta-link","children":["Start your venture","$L3d"]}]}]]}]]}]]}]}]}] +28:["$","section",null,{"className":"eim-section","id":"wings-empowerment-impact","children":["$","div",null,{"className":"eim-inner dm-section-container","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"children":[["$","div",null,{"className":"eim-eyebrow","children":"/ Our Impact /"}],["$","h2",null,{"className":"eim-title","children":"Growth we can measure"}]]}],["$","hr",null,{"className":"eim-divider"}],["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":20,"className":"eim-hero-row","children":[["$","span",null,{"className":"eim-hero-num","children":["$","$L3e",null,{"end":500,"suffix":"+","duration":2.2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-hero-label","children":"Women-Led Enterprises In The Ecosystem"}]]}],["$","hr",null,{"className":"eim-divider-2"}],["$","$L1d",null,{"delay":0.1,"duration":0.8,"yOffset":20,"children":["$","div",null,{"className":"eim-secondary-row","children":[["$","div","Enterprises Launched",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L3e",null,{"end":100,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Enterprises Launched"}]]}],["$","div","Industry Partners",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L3e",null,{"end":25,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Industry Partners"}]]}],["$","div","Cities Active",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L3e",null,{"end":15,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Cities Active"}]]}],["$","div","In Economic Value Created",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":"Millions"}],["$","span",null,{"className":"eim-secondary-label","children":"In Economic Value Created"}]]}]]}]}],["$","$L1d",null,{"delay":0.12,"duration":0.75,"yOffset":20,"className":"eim-copy","children":["$","p",null,{"children":"Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake."}]}]]}]}] +2a:["$","section",null,{"className":"ehw-section","id":"wings-empowerment-how-it-works","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ehw-inner","children":[["$","div",null,{"className":"ehw-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"ehw-head-reveal","children":[["$","div",null,{"className":"ehw-eyebrow","children":"/ The Founder Journey /"}],["$","hr",null,{"className":"ehw-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"ehw-title","children":"A clear path, from idea to enterprise"}]}]]}],["$","$L3f",null,{"className":"ehw-sequence","stagger":0.12,"duration":0.7,"yOffset":30,"triggerOnce":true,"children":[["$","div","01",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"01"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Apply"}],["$","p",null,{"className":"ehw-step-desc","children":"Submit your venture idea and tell us about your entrepreneurial vision."}]]}],["$","div","02",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"02"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Discovery"}],["$","p",null,{"className":"ehw-step-desc","children":"Identify the right market opportunity and validate your business model."}]]}],["$","div","03",{"className":"ehw-step is-accent","children":[["$","div",null,{"className":"ehw-step-num","children":"03"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Build"}],["$","p",null,{"className":"ehw-step-desc","children":"Develop your enterprise with ecosystem support, mentorship, and partnerships."}]]}],["$","div","04",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"04"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Launch"}],["$","p",null,{"className":"ehw-step-desc","children":"Go to market with strategic backing, industry connections, and operational infrastructure."}]]}],["$","div","05",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"05"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Scale"}],["$","p",null,{"className":"ehw-step-desc","children":"Grow your team, expand operations, and lead your enterprise to sustainable impact."}]]}]]}]]}]}]}] +2c:["$","section",null,{"className":"est-section","id":"wings-empowerment-stories","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"est-inner","children":[["$","div",null,{"className":"est-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"est-head-reveal","children":[["$","div",null,{"className":"est-eyebrow","children":"/ Women in Motion /"}],["$","hr",null,{"className":"est-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"est-title","children":"Small steps. Lasting careers."}]}]]}],["$","div",null,{"className":"est-feature","children":[["$","$L1d",null,{"delay":0.05,"duration":0.85,"yOffset":24,"className":"est-photo","children":[["$","$L40",null,{"src":"/images/women-hero-slider-3.png","alt":"A Wings program participant on the operations floor at a Doormile logistics hub","fill":true,"sizes":"(max-width: 1000px) 100vw, 58vw","style":{"objectPosition":"80% 22%"}}],["$","div",null,{"className":"est-photo-caption","children":[["$","span",null,{"children":"Wings Participant"}],["$","strong",null,{"children":" building a career, one milestone at a time."}]]}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.85,"yOffset":24,"className":"est-copy","children":["$","div",null,{"children":[["$","span",null,{"className":"est-quote-mark","aria-hidden":"true","children":"“"}],["$","p",null,{"className":"est-quote-text","children":"I came in looking for a way forward. I found the confidence to lead."}],["$","p",null,{"className":"est-narrative","children":"She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry."}]]}]}]]}]]}]}]}] +2e:["$","section",null,{"className":"epn-section","id":"wings-empowerment-partners","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epn-inner","children":[["$","div",null,{"className":"epn-head","children":[["$","$L1d",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epn-head-reveal","children":[["$","div",null,{"className":"epn-eyebrow","children":"/ Collaboration /"}],["$","hr",null,{"className":"epn-divider"}]]}],["$","$L1d",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epn-title","children":["Partnership is how ",["$","em",null,{"children":"ecosystems grow."}]]}]}]]}],["$","div",null,{"className":"epn-body","children":[["$","$L1d",null,{"delay":0.08,"duration":0.8,"yOffset":22,"className":"epn-manifesto","children":[["$","p",null,{"className":"epn-intro","children":"The strongest ecosystems are built by many hands."}],["$","p",null,{"className":"epn-note","children":"Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive."}]]}],["$","$L1d",null,{"delay":0.12,"duration":0.8,"yOffset":22,"children":["$","div",null,{"className":"epn-grid","children":[["$","article","Industry Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"01"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Industry Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Technology Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"02"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Technology Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Community Networks",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"03"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Community Networks"}],["$","p",null,{"className":"epn-card-desc","children":"Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Investment Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"04"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Investment Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}]]}]}]]}]]}]}]}] +30:["$","div",null,{"className":"emp-cta-wrap","children":["$","section",null,{"className":"emp-cta","aria-labelledby":"empowerment-final-cta","children":["$","div",null,{"className":"emp-cta-inner","children":[["$","div",null,{"className":"emp-cta-recap","children":[["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"500+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Women Founders"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"100+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Enterprises Launched"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"25+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Industry Partners"}]]}]]}],["$","div",null,{"className":"emp-cta-kicker","children":"/ Build the next mile /"}],["$","h2",null,{"className":"emp-cta-title","id":"empowerment-final-cta","children":["Build what’s ",["$","em",null,{"children":"next."}]]}],["$","div",null,{"className":"emp-cta-bottom","children":["$","p",null,{"className":"emp-cta-sub","children":"Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics."}]}]]}]}]}] +3a:["$","polyline",null,{"points":"0.5 19.5 3 19.5 12.5 10 3 0.5"}] +3b:["$","div",null,{"className":"elementor-element elementor-element-b6e14bd e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b6e14bd","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"ws-map","aria-hidden":"true","children":["$","$L39",null,{}]}],["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-90cc867 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"90cc867","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-24c0280 elementor-widget__width-inherit elementor-widget elementor-widget-logico_heading","data-id":"24c0280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Women Empowerment /"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-2ed47f3 e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"2ed47f3","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-36efec7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"36efec7","data-element_type":"container","data-e-type":"container","children":[["$","$L1d",null,{"duration":0.8,"yOffset":28,"triggerOnce":true,"children":["$","div",null,{"className":"elementor-element elementor-element-778840d elementor-widget elementor-widget-logico_heading","data-id":"778840d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","children":"Women Building The Next Mile"}]}]}]}],["$","div",null,{"className":"elementor-element elementor-element-bbfb67f elementor-widget elementor-widget-image","data-id":"bbfb67f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","$L40",null,{"src":"/images/bg-map-women.webp","alt":"Women Map","width":626,"height":692,"style":{"maxWidth":"100%","height":"auto"}}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-b2c956f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"b2c956f","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"id":"ws-stories","children":[["$","$L3f",null,{"className":"ws__stats","stagger":0.1,"duration":0.6,"yOffset":20,"triggerOnce":true,"children":[["$","div","Women Founders",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L3e",null,{"end":500,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Women Founders"}]]}],["$","div","Cities Active",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L3e",null,{"end":35,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Cities Active"}]]}],["$","div","Enterprises Launched",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L3e",null,{"end":100,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Enterprises Launched"}]]}]]}],["$","$L3f",null,{"className":"ws__cards","stagger":0.08,"duration":0.6,"yOffset":24,"triggerOnce":true,"children":[["$","div","Venture Building",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M4 19V5"}],["$","path",null,{"d":"M4 7h12l-2 4 2 4H4"}],["$","path",null,{"d":"M18 19h2"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Venture Building"}],["$","p",null,{"className":"ws__card-desc","children":"End-to-end support for women launching logistics enterprises — from ideation to market entry."}]]}],"$L41","$L42","$L43"]}]]}]}]]}]]}]}]]}] +3d:["$","svg",null,{"width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}] +41:["$","div","Entrepreneurship",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"7","width":"18","height":"13","rx":"2"}],["$","path",null,{"d":"M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Entrepreneurship"}],["$","p",null,{"className":"ws__card-desc","children":"Women building, owning, and scaling sustainable businesses within the logistics ecosystem."}]]}] +42:["$","div","Founder Networks",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"8","cy":"8","r":"3"}],["$","circle",null,{"cx":"16","cy":"8","r":"3"}],["$","path",null,{"d":"M2.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}],["$","path",null,{"d":"M10.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Founder Networks"}],["$","p",null,{"className":"ws__card-desc","children":"Peer communities and strategic connections that accelerate growth and open new markets."}]]}] +43:["$","div","Enterprise Leadership",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"12","cy":"9","r":"5"}],["$","path",null,{"d":"M9 13.5 7.5 21 12 18l4.5 3-1.5-7.5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Enterprise Leadership"}],["$","p",null,{"className":"ws__card-desc","children":"Strategic decision-making, operational excellence, and vision-driven leadership for women founders."}]]}] +36:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +44:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +33:null +38:[["$","title","0",{"children":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","1",{"name":"description","content":"Doormile Wings empowers women to build, own, and lead enterprises within the logistics ecosystem through strategic partnerships, founder networks, and entrepreneurial infrastructure."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/empowerment"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","5",{"property":"og:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/empowerment"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","15",{"name":"twitter:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L44","21",{}]] diff --git a/build/empowerment/__next._head.txt b/.next/server/app/empowerment.segments/_head.segment.rsc similarity index 78% rename from build/empowerment/__next._head.txt rename to .next/server/app/empowerment.segments/_head.segment.rsc index a4b3c56..1d879b4 100644 --- a/build/empowerment/__next._head.txt +++ b/.next/server/app/empowerment.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","1",{"name":"description","content":"Doormile Wings empowers women to build, own, and lead enterprises within the logistics ecosystem through strategic partnerships, founder networks, and entrepreneurial infrastructure."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/empowerment"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","5",{"property":"og:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/empowerment"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","15",{"name":"twitter:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","1",{"name":"description","content":"Doormile Wings empowers women to build, own, and lead enterprises within the logistics ecosystem through strategic partnerships, founder networks, and entrepreneurial infrastructure."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/empowerment"}],["$","meta","4",{"property":"og:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","5",{"property":"og:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","6",{"property":"og:url","content":"https://doormile.com/empowerment"}],["$","meta","7",{"property":"og:site_name","content":"Doormile"}],["$","meta","8",{"property":"og:image","content":"https://doormile.com/images/wings-logo.png"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:image:alt","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Doormile Wings — Women Entrepreneurship Initiative"}],["$","meta","15",{"name":"twitter:description","content":"An entrepreneurial ecosystem empowering women to launch, grow, and lead logistics enterprises with strategic partnerships and industry collaboration."}],["$","meta","16",{"name":"twitter:image","content":"https://doormile.com/images/wings-logo.png"}],["$","link","17",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","18",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","19",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/empowerment.segments/_index.segment.rsc b/.next/server/app/empowerment.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/empowerment.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/empowerment/__next._tree.txt b/.next/server/app/empowerment.segments/_tree.segment.rsc similarity index 87% rename from build/empowerment/__next._tree.txt rename to .next/server/app/empowerment.segments/_tree.segment.rsc index 2aeb53c..9d88104 100644 --- a/build/empowerment/__next._tree.txt +++ b/.next/server/app/empowerment.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"empowerment","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"empowerment","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/empowerment.segments/empowerment.segment.rsc b/.next/server/app/empowerment.segments/empowerment.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/empowerment.segments/empowerment.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/empowerment/__next.empowerment.__PAGE__.txt b/.next/server/app/empowerment.segments/empowerment/__PAGE__.segment.rsc similarity index 79% rename from build/empowerment/__next.empowerment.__PAGE__.txt rename to .next/server/app/empowerment.segments/empowerment/__PAGE__.segment.rsc index d309ad8..6d44fa6 100644 --- a/build/empowerment/__next.empowerment.__PAGE__.txt +++ b/.next/server/app/empowerment.segments/empowerment/__PAGE__.segment.rsc @@ -1,13 +1,13 @@ 1:"$Sreact.fragment" -f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"ScrollReveal"] -10:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"ShimmerText"] -24:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -25:"$Sreact.suspense" -27:I[5074,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"default"] -2e:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"CountUp"] -2f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"StaggerChildren"] -30:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],"Image"] -34:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0vzdvje64yndv.js"],""] +f:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"ScrollReveal"] +10:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"ShimmerText"] +23:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +24:"$Sreact.suspense" +26:I[5074,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"default"] +29:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],""] +2b:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"CountUp"] +2c:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"StaggerChildren"] +2d:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"Image"] 2:Tf99, .eh-outer { box-sizing: border-box; @@ -156,7 +156,7 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 .eh-btn-primary, .eh-btn-outline { width: 100%; justify-content: center; padding: 14px 22px; } .eh-btns { width: 100%; } } - 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"empowerment","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59 elementor-empowerment","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3"],"$L4","$L5","$L6","$L7","$L8","$L9","$La","$Lb","$Lc"]}]}]}]}],["$Ld"],"$Le"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} + 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"empowerment","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"86","className":"elementor elementor-86 elementor-59 elementor-empowerment","children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],"$L3"],"$L4","$L5","$L6","$L7","$L8","$L9","$La","$Lb","$Lc"]}]}]}]}],["$Ld"],"$Le"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 3:["$","div",null,{"className":"eh-outer","children":["$","section",null,{"className":"eh-section","id":"wings-empowerment-hero","children":[["$","div",null,{"className":"eh-bg","aria-hidden":"true"}],["$","div",null,{"className":"eh-scrim","aria-hidden":"true"}],["$","$Lf",null,{"delay":0.05,"duration":0.85,"yOffset":30,"className":"eh-inner","children":[["$","h1",null,{"className":"eh-title","children":["Building ",["$","span",null,{"className":"eh-soft","children":"Women"}],["$","br",null,{}],["$","$L10",null,{"children":"Entrepreneurs."}]]}],["$","p",null,{"className":"eh-desc","children":"Empowering ambitious women with the network, strategic partnerships, and opportunities to build, grow, and lead successful enterprises that shape the future of logistics."}]]}]]}]}] 11:Te8f, .ev-section { @@ -311,7 +311,7 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 } } 4:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$11"}}],"$L12"] -13:Tbc4, +13:T1091, .esy-section { position: relative; width: calc(100% - 40px); @@ -406,6 +406,32 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 margin: 0; } + /* ---- Desktop-only inner spacing compaction ---- + .esy-section never set its own padding, so it was silently + inheriting 96px top/bottom from the global bare-tag "section" + padding rule (6rem 0) in site.css — stacking with .esy-inner's + own clamp(60-98px) padding into a huge, unbalanced inset. Cancel + that leak here. Also tighten .esy-inner's own padding and widen its + max-width (so a fixed padding, not a narrow centered column, + controls the left/right inset at every desktop width) — and bring + min-height down to match the now-tighter natural content height, + since the old 690px floor was itself forcing extra empty space + once the padding was reduced. Scoped to desktop only; tablet/ + mobile keep their original spacing untouched below. */ + @media (min-width: 1025px) { + .esy-section { + padding: 0; + min-height: clamp(420px, 38vw, 500px); + } + .esy-inner { + max-width: 1900px; + padding-top: 64px; + padding-bottom: 56px; + padding-left: 64px; + padding-right: 64px; + } + } + @media (max-width: 1024px) { .esy-section { width: calc(100% - 24px); border-radius: 22px; } .esy-inner { grid-template-columns: 1fr; align-items: start; } @@ -416,8 +442,8 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 .esy-section { min-height: 560px; } .esy-side { border-left: none; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 24px; } } - 5:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$13"}}],["$","section",null,{"className":"esy-section","id":"wings-empowerment-story","children":[["$","div",null,{"className":"esy-bg","aria-hidden":"true"}],["$","div",null,{"className":"esy-inner dm-section-container","children":["$L14","$L15"]}]]}]] -16:T3756, + 5:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$13"}}],"$L14"] +15:T3756, /* ============================================================ Success Stories — redesigned right column (stats + 2x2 cards) Dark section · red accent #dc2626 / #ef4444 · Manrope @@ -746,11 +772,12 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 } #ws-stories .ws__cards { grid-template-columns: 1fr; gap: 12px; } } - 6:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$16"}}],"$L17"] -18:T2d38, + 6:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$15"}}],"$L16"] +17:T2f8a, .epr-section { background: #ffffff; - padding: clamp(78px, 9vw, 132px) 0; + padding-top: clamp(28px, 3.2vw, 48px); + padding-bottom: clamp(78px, 9vw, 132px); overflow: visible; } @@ -802,10 +829,10 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 display: grid; grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr); gap: clamp(32px, 5vw, 78px); - /* stretch (not start): the left column's grid-item box must span - the full row — i.e. match the taller Programs list — or the - sticky aside inside it runs out of room and un-sticks well - before the list finishes scrolling. */ + /* stretch (not start): .epr-aside-wrap must span the full row + height — the tall Programs column's implicit-row height — so it + defines the sticky travel distance. The visual box no longer + lives here, so stretching this item no longer distorts it. */ align-items: stretch; min-width: 0; } @@ -814,19 +841,55 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 min-width: 0; } - /* Plain stretching grid item. Carries no visual styling of its own — - it exists only to give .epr-aside (sized/centered independently - inside it) the full row height to stick within. */ + /* Responsibility split (desktop sticky architecture): + .epr-aside-wrap — plain grid item, stretched to the full + Programs-list row height. Defines travel + distance. No sizing responsibility of its + own beyond that. + .epr-aside-sticky — owns position: sticky. Its height is + explicitly clamped to the viewport + (100dvh minus header clearance and a + bottom safe-margin), so it can never grow + taller than what's actually visible — + the tall min-height that previously fought + the sticky top offset is gone entirely. + .epr-aside — the visual composition (ghost number, map, + heading, paragraph). Fills the sticky + frame's height and arranges its existing + content inside it; owns the decorative + bleed clipping (overflow: hidden). */ .epr-aside-wrap { min-width: 0; } - .epr-aside { + .epr-aside-sticky { + /* 132px clears the site header's fixed state (~122px tall once + scrolled) with a small margin; only grows on very tall + viewports. This is viewport-height-derived, NOT content-height + derived — unlike the old top formula, it never has to react to + how tall the aside's own content happens to be. */ + --epr-sticky-top: clamp(132px, 12dvh, 160px); + --epr-sticky-bottom-safe: 28px; position: sticky; - top: 110px; + top: var(--epr-sticky-top); + height: calc(100dvh - var(--epr-sticky-top) - var(--epr-sticky-bottom-safe)); + min-height: 0; min-width: 0; - min-height: clamp(480px, 44vw, 660px); - padding: clamp(18px, 3vw, 34px) 0 clamp(24px, 3.5vw, 42px); + /* Lets the visual composition react to the frame's OWN resolved + height (container query below) rather than guessing from the + viewport or the write-up's vw-based type scale. */ + container-type: size; + container-name: epr-frame; + } + + .epr-aside { + --epr-aside-pad-t: clamp(18px, 3vw, 34px); + --epr-aside-pad-b: clamp(24px, 3.5vw, 42px); + position: relative; + height: 100%; + min-width: 0; + min-height: 0; + padding: var(--epr-aside-pad-t) 0 var(--epr-aside-pad-b); display: flex; flex-direction: column; justify-content: center; @@ -889,79 +952,24 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 margin: 0; } - /* Continues the editorial narrative below the original hero - statement/paragraph — same grid, same gap rhythm as the rest of - .epr-aside-content, so it reads as one uninterrupted column rather - than a bolted-on block. Exists so the sticky aside still has real - editorial content to show while the list scrolls through its last - two entries, instead of ending early and leaving the left side - blank for the remainder of the scroll. */ - .epr-aside-divider { - position: relative; - width: 100%; - height: 1px; - border: none; - margin: 0; - background-color: rgba(17, 17, 17, 0.12); + /* Constrained-frame fallback: the sticky frame is short (short + desktop viewport height), so the decorative ghost number/map + shrink first — spacing second — while the heading and paragraph + stay full size and fully visible, per spec. Placed after the base + .epr-aside-num/-content/-map rules so it wins the cascade at + matching container sizes (equal selector specificity; source + order decides). */ + @container epr-frame (max-height: 660px) { + .epr-aside { padding-top: clamp(12px, 1.8vw, 22px); padding-bottom: clamp(16px, 2.2vw, 26px); } + .epr-aside-content { gap: clamp(12px, 1.6vw, 20px); } + .epr-aside-num { font-size: clamp(90px, 11vw, 180px); } } - .epr-aside-label { - position: relative; - font-size: 12px; - font-weight: 800; - letter-spacing: 1.7px; - text-transform: uppercase; - color: rgba(17, 17, 17, 0.4); - margin: 0 0 -6px 0; - } - - .epr-aside-gains-list { - position: relative; - list-style: none; - margin: 0; - padding: 0; - display: grid; - gap: 9px; - } - - .epr-aside-gains-list li { - position: relative; - padding-left: 19px; - font-size: 15.5px; - line-height: 1.5; - color: rgba(17, 17, 17, 0.68); - } - - /* Extra .epr-aside prefix raises specificity above the global theme - rule ".logico-front-end ul li:before" (a fontello glyph), so our - clean red dot replaces the inherited checkmark marker — same fix - already established for this exact conflict in LegalDocument.tsx. */ - .epr-aside .epr-aside-gains-list li::before { - content: "" !important; - position: absolute; - left: 2px; - top: 0.62em; - width: 5px; - height: 5px; - border-radius: 50%; - background: #c8102e; - font-size: 0; - } - - .epr-aside-final { - position: relative; - max-width: 30ch; - font-size: clamp(17px, 1.7vw, 20px); - font-weight: 700; - line-height: 1.5; - letter-spacing: -0.01em; - color: #111111; - margin: 0; - } - - .epr-aside-final em { - font-style: normal; - color: #c8102e; + @container epr-frame (max-height: 560px) { + .epr-aside { padding-top: clamp(8px, 1.2vw, 14px); padding-bottom: clamp(10px, 1.6vw, 18px); } + .epr-aside-content { gap: clamp(6px, 1vw, 12px); } + .epr-aside-num { font-size: clamp(48px, 7vw, 100px); } + .epr-aside-map { opacity: 0.14; } } .epr-list { @@ -1081,21 +1089,18 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 /* Laptop: sticky stays enabled, just a narrower gutter. */ @media (max-width: 1180px) { .epr-stage { grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr); gap: clamp(28px, 4vw, 46px); } - .epr-aside { min-height: 420px; } .epr-row:nth-child(even) { margin-left: 0; } } /* Tablet: sticky disabled — the aside scrolls in normal flow instead of pinning, since there's no longer enough vertical runway next to - the (now narrower, shorter) program list for pinning to read well. - The wrapper no longer needs to stretch once its child isn't sticky. */ + the (now narrower, shorter) program list for pinning to read well. */ @media (max-width: 1023px) { - .epr-aside-wrap { - align-self: start; - } - .epr-aside { + .epr-aside-sticky { position: relative; top: auto; + height: auto; + container-type: normal; } } @@ -1126,17 +1131,10 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 max-width: 32ch; font-size: 14.5px; } - .epr-aside-gains-list li { - font-size: 14.5px; - } - .epr-aside-final { - max-width: 28ch; - font-size: 16.5px; - } } @media (max-width: 640px) { - .epr-section { padding-top: 54px; padding-bottom: 54px; } + .epr-section { padding-top: 28px; padding-bottom: 54px; } .epr-title { font-size: clamp(34px, 10vw, 40px) !important; letter-spacing: -0.045em !important; @@ -1148,8 +1146,8 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 } .epr-row { grid-template-columns: 1fr; gap: 12px; } } - 7:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$18"}}],"$L19"] -1a:Te98, + 7:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$17"}}],"$L18"] +19:Te98, .eim-section { position: relative; width: calc(100% - 40px); @@ -1280,8 +1278,8 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 @media (max-width: 460px) { .eim-section { padding-top: 48px; padding-bottom: 48px; } } - 8:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1a"}}],"$L1b"] -1c:T1573, + 8:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$19"}}],"$L1a"] +1b:T1f91, .ehw-section { background: #ffffff; padding: var(--space-section-lg, 80px) 0 calc(var(--space-section-lg, 80px) + 32px) 0; @@ -1437,38 +1435,106 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 } } - /* Mobile: single column — dividers rotate from vertical to horizontal. */ + /* Mobile: compact numbered editorial index — number in a narrow + left column, title/description/divider sharing one right + content column, laid out on the existing milestone markup via + CSS Grid (no duplicated JSX, no new step markup). */ @media (max-width: 640px) { + .ehw-head { + margin-bottom: clamp(40px, 10vw, 56px); + } + .ehw-sequence { row-gap: 0; } + .ehw-step { + display: grid; + grid-template-columns: 48px minmax(0, 1fr); + column-gap: 14px; flex-basis: 100%; padding-left: 0; - padding-top: clamp(28px, 8vw, 38px); + padding-top: clamp(28px, 8vw, 36px); border-left: none; - border-top: 1px solid rgba(17, 17, 17, 0.14); - } - .ehw-step:first-child { - padding-top: 0; border-top: none; } - .ehw-step:nth-child(4) { - border-top: 1px solid rgba(17, 17, 17, 0.14); - } - .ehw-step:hover { - border-left-color: transparent; + + .ehw-step:first-child { + padding-top: 0; } + + /* Compact solid index number — replaces the oversized pale + outline treatment used on desktop/tablet. */ .ehw-step-num { - font-size: clamp(44px, 13vw, 56px); + grid-column: 1; + grid-row: 1; + align-self: start; + font-size: clamp(32px, 9vw, 40px); + line-height: 1; + color: #c8102e; + -webkit-text-stroke: 0; + margin: 0; + } + + /* Hidden completely — no reserved gap left in its place since a + display:none grid item takes no track space. */ + .ehw-step-kicker { + display: none; + } + + .ehw-step-title { + grid-column: 2; + grid-row: 1; + font-size: clamp(22px, 6vw, 26px) !important; + } + + .ehw-step-desc { + grid-column: 2; + grid-row: 2; + max-width: none; + font-size: 16px; + } + + /* Divider lives inside the description box (content column + only), so it never runs underneath the number column. */ + .ehw-step-desc::after { + content: ""; + display: block; + margin-top: clamp(24px, 6vw, 28px); + height: 1px; + background-color: rgba(17, 17, 17, 0.14); + } + + .ehw-step:last-child .ehw-step-desc::after { + display: none; + } + } + + /* ---- Mobile title-to-description gap fix ---- + .ehw-step-title is an

, so it's matched by a global, + unscoped site.css rule (.logico-front-end h3:not(...) { margin: + 0 0 30px }) that outranks this component's own single-class + ".ehw-step-title { margin: 0 0 22px }" by specificity — bumping + the real margin-bottom to 30px everywhere, not just here. There + is no min-height, space-between, or fixed row height anywhere in + this component; the gap is purely that extra 8px of margin + reading as oversized once every other element around it (kicker, + description line-height) is tightly spaced. Overridden with + !important, matching how every other property on this selector + already has to defeat the same global rule. Scoped to mobile + only, per spec — desktop/tablet are left exactly as they were + (still resolving to the global 30px; out of scope here). */ + @media (max-width: 767px) { + .ehw-step-title { + margin-bottom: 16px !important; } } @media (max-width: 480px) { .ehw-section { padding-top: 48px; padding-bottom: 68px; } } - 9:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1c"}}],"$L1d"] -1e:T1bff, + 9:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1b"}}],"$L1c"] +1d:T1df1, .est-section { position: relative; background: #ffffff; @@ -1725,7 +1791,14 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 } @media (max-width: 640px) { - .est-section { padding-top: 54px; padding-bottom: 54px; } + .est-section { padding-top: 54px; padding-bottom: 6px; } + /* .est-feature's margin-bottom (clamp(44px, 6vw, 76px)) was sized + to precede an .est-list testimonial row block that no longer + exists in this component's JSX. Since .est-feature is now the + section's last child, that margin was pure dead space stacking + on top of .est-section's own padding-bottom above — the real + source of the oversized mobile gap before the next section. */ + .est-feature { margin-bottom: 0; } .est-title { font-size: clamp(34px, 10vw, 40px) !important; letter-spacing: -0.045em !important; @@ -1739,8 +1812,8 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 .est-copy { border-radius: 20px; } .est-photo { min-height: 420px; } } - a:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1e"}}],"$L1f"] -20:T16dc, + a:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1d"}}],"$L1e"] +1f:T16dc, .epn-section { position: relative; width: calc(100% - 40px); @@ -1950,8 +2023,8 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 @media (max-width: 460px) { .epn-section { padding-top: 54px; padding-bottom: 54px; } } - b:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$20"}}],"$L21"] -22:Tdad, + b:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1f"}}],"$L20"] +21:Tdad, .emp-cta-wrap { width: calc(100% - 40px); margin: clamp(24px, 4vw, 40px) auto clamp(40px, 5vw, 64px); @@ -2072,26 +2145,22 @@ f:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa4 } .emp-cta-recap { flex-wrap: wrap; row-gap: 14px; } } - c:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$22"}}],"$L23"] + c:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$21"}}],"$L22"] d:["$","script","script-0",{"src":"/_next/static/chunks/0vzdvje64yndv.js","async":true}] -e:["$","$L24",null,{"children":["$","$25",null,{"name":"Next.MetadataOutlet","children":"$@26"}]}] -12:["$","section",null,{"className":"ev-section","id":"wings-empowerment-vision","children":[["$","div",null,{"className":"ev-map","aria-hidden":"true","children":["$","$L27",null,{}]}],["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ev-inner","children":[["$","$Lf",null,{"delay":0.05,"duration":0.7,"yOffset":20,"children":[["$","p",null,{"className":"ev-eyebrow","children":"/ Our Vision /"}],["$","hr",null,{"className":"ev-divider"}]]}],["$","$Lf",null,{"delay":0.12,"duration":0.85,"yOffset":30,"children":["$","h2",null,{"className":"ev-title","children":"Women Own The Future."}]}],["$","div",null,{"className":"ev-columns","children":[["$","$Lf",null,{"delay":0.18,"duration":0.8,"yOffset":25,"children":["$","p",null,{"className":"ev-statement","children":"A logistics ecosystem where women don’t just participate — they own, build, and lead."}]}],["$","$Lf",null,{"delay":0.26,"duration":0.8,"yOffset":25,"className":"ev-support","children":[["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"The vision"}],["$","p",null,{"className":"ev-lead","children":"We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"Why it matters"}],["$","p",null,{"className":"ev-note","children":"Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"How Wings contributes"}],["$","p",null,{"className":"ev-note","children":"Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise."}]]}]]}]]}]]}]}]]}] -14:["$","$Lf",null,{"delay":0.05,"duration":0.85,"yOffset":25,"children":[["$","div",null,{"className":"esy-eyebrow","children":"/ Our Approach /"}],["$","p",null,{"className":"esy-statement","children":["Not a program on a brochure. ",["$","em",null,{"children":"An ecosystem women can build in."}]]}]]}] -15:["$","$Lf",null,{"delay":0.15,"duration":0.8,"yOffset":25,"className":"esy-side","children":[["$","span",null,{"className":"esy-label","children":"Manifesto"}],["$","p",null,{"className":"esy-pull","children":"A venture that starts with conviction. A network that turns it into momentum."}],["$","p",null,{"className":"esy-sub","children":"Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled."}]]}] -17:["$","div",null,{"id":"women-entrepreneurship","className":"elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"bbc6760","data-element_type":"container","data-e-type":"container","style":{"backgroundColor":"#1f1f1f","width":"calc(100% - 40px)","marginLeft":"20px","marginRight":"20px","borderRadius":"25px"},"children":[["$","div",null,{"className":"elementor-element elementor-element-13a7637 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-logico_decorative_block","data-id":"13a7637","data-element_type":"widget","data-e-type":"widget","style":{"position":"absolute"},"children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"block-decoration animation-enable block-decoration-style-1","children":["$","div",null,{"className":"block-decoration-item"}]}]}]}],["$","div",null,{"style":{"backgroundImage":"url(/images/bg-header-women.webp)"},"className":"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container"}],["$","div",null,{"className":"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"01"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h5",null,{"className":"logico-title","children":"Women Entrepreneurship"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"An ecosystem where women build, own, and scale enterprises across logistics."}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":["$","div",null,{"className":"elementor-element elementor-element-46b9ffa elementor-widget elementor-widget-logico_button","data-id":"46b9ffa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"button-widget","children":["$","div",null,{"className":"button-container","children":["$","a",null,{"href":"#wings-empowerment-programs","className":"logico-small-button","children":["Explore the ecosystem",["$","svg",null,{"viewBox":"0 0 13 20","children":"$L28"}]]}]}]}]}]}]}]]}]}],"$L29"]}] -19:["$","section",null,{"className":"epr-section","id":"wings-empowerment-programs","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epr-inner","children":[["$","div",null,{"className":"epr-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epr-head-reveal","children":[["$","div",null,{"className":"epr-eyebrow","children":"/ Entrepreneurship Pillars /"}],["$","hr",null,{"className":"epr-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epr-title","children":"Every pillar is built around ownership."}]}]]}],["$","div",null,{"className":"epr-stage","children":[["$","div",null,{"className":"epr-aside-wrap","children":["$","aside",null,{"className":"epr-aside","children":[["$","div",null,{"className":"epr-aside-map","aria-hidden":"true","children":["$","$L27",null,{}]}],["$","$Lf",null,{"delay":0.05,"duration":0.8,"yOffset":24,"className":"epr-aside-content","children":[["$","div",null,{"className":"epr-aside-num","children":"05"}],["$","p",null,{"className":"epr-aside-copy","children":["Building tomorrow’s ",["$","em",null,{"children":"women entrepreneurs."}]]}],["$","p",null,{"className":"epr-aside-desc","children":"Every enterprise starts with one decision. Our pillars move women from idea to ownership through mentorship, real industry partnerships, and hands-on venture building across the logistics ecosystem."}],["$","hr",null,{"className":"epr-aside-divider"}],["$","div",null,{"className":"epr-aside-label","children":"Journey Summary"}],["$","p",null,{"className":"epr-aside-desc","children":"Each pillar builds on the one before it — moving founders from validating an idea, to forming partnerships, to receiving hands-on guidance, to growing a sustainable logistics business."}],["$","div",null,{"className":"epr-aside-label","children":"What Participants Gain"}],["$","ul",null,{"className":"epr-aside-gains-list","children":[["$","li","Business validation",{"children":"Business validation"}],["$","li","Industry partnerships",{"children":"Industry partnerships"}],["$","li","Founder mentorship",{"children":"Founder mentorship"}],["$","li","Market readiness",{"children":"Market readiness"}],["$","li","Sustainable growth",{"children":"Sustainable growth"}]]}],["$","p",null,{"className":"epr-aside-final","children":["The destination is never just launching a business. It is building ",["$","em",null,{"children":"women-led enterprises that strengthen the logistics ecosystem."}]]}]]}]]}]}],["$","div",null,{"children":[["$","$Lf",null,{"delay":0.1,"duration":0.8,"yOffset":24,"children":["$","div",null,{"className":"epr-list","children":[["$","article","Venture Launchpad",{"className":"epr-row epr-row-featured","children":[["$","div",null,{"className":"epr-row-index","children":"01"}],["$","div",null,{"children":[["$","span",null,{"className":"epr-row-flag","children":"Where most founders begin"}],["$","span",null,{"className":"epr-row-type","children":"Start building"}],["$","h3",null,{"className":"epr-row-title","children":"Venture Launchpad"}],["$","p",null,{"className":"epr-row-desc","children":"Business model validation, market entry strategy, entity formation, and go-to-market execution for women-led logistics enterprises."}]]}]]}],["$","article","Strategic Partnerships",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"02"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Connect and grow"}],["$","h3",null,{"className":"epr-row-title","children":"Strategic Partnerships"}],["$","p",null,{"className":"epr-row-desc","children":"Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth."}]]}]]}],["$","article","Founder Mentorship",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"03"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Learn from builders"}],["$","h3",null,{"className":"epr-row-title","children":"Founder Mentorship"}],["$","p",null,{"className":"epr-row-desc","children":"One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale."}]]}]]}],["$","article","Growth & Scale",{"className":"epr-row","children":["$L2a","$L2b"]}],"$L2c"]}]}],"$L2d"]}]]}]]}]}]}] -1b:["$","section",null,{"className":"eim-section","id":"wings-empowerment-impact","children":["$","div",null,{"className":"eim-inner dm-section-container","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"children":[["$","div",null,{"className":"eim-eyebrow","children":"/ Our Impact /"}],["$","h2",null,{"className":"eim-title","children":"Growth we can measure"}]]}],["$","hr",null,{"className":"eim-divider"}],["$","$Lf",null,{"delay":0.08,"duration":0.8,"yOffset":20,"className":"eim-hero-row","children":[["$","span",null,{"className":"eim-hero-num","children":["$","$L2e",null,{"end":500,"suffix":"+","duration":2.2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-hero-label","children":"Women-Led Enterprises In The Ecosystem"}]]}],["$","hr",null,{"className":"eim-divider-2"}],["$","$Lf",null,{"delay":0.1,"duration":0.8,"yOffset":20,"children":["$","div",null,{"className":"eim-secondary-row","children":[["$","div","Enterprises Launched",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L2e",null,{"end":100,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Enterprises Launched"}]]}],["$","div","Industry Partners",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L2e",null,{"end":25,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Industry Partners"}]]}],["$","div","Cities Active",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L2e",null,{"end":15,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Cities Active"}]]}],["$","div","In Economic Value Created",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":"Millions"}],["$","span",null,{"className":"eim-secondary-label","children":"In Economic Value Created"}]]}]]}]}],["$","$Lf",null,{"delay":0.12,"duration":0.75,"yOffset":20,"className":"eim-copy","children":["$","p",null,{"children":"Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake."}]}]]}]}] -1d:["$","section",null,{"className":"ehw-section","id":"wings-empowerment-how-it-works","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ehw-inner","children":[["$","div",null,{"className":"ehw-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"ehw-head-reveal","children":[["$","div",null,{"className":"ehw-eyebrow","children":"/ The Founder Journey /"}],["$","hr",null,{"className":"ehw-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"ehw-title","children":"A clear path, from idea to enterprise"}]}]]}],["$","$L2f",null,{"className":"ehw-sequence","stagger":0.12,"duration":0.7,"yOffset":30,"triggerOnce":true,"children":[["$","div","01",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"01"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Apply"}],["$","p",null,{"className":"ehw-step-desc","children":"Submit your venture idea and tell us about your entrepreneurial vision."}]]}],["$","div","02",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"02"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Discovery"}],["$","p",null,{"className":"ehw-step-desc","children":"Identify the right market opportunity and validate your business model."}]]}],["$","div","03",{"className":"ehw-step is-accent","children":[["$","div",null,{"className":"ehw-step-num","children":"03"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Build"}],["$","p",null,{"className":"ehw-step-desc","children":"Develop your enterprise with ecosystem support, mentorship, and partnerships."}]]}],["$","div","04",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"04"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Launch"}],["$","p",null,{"className":"ehw-step-desc","children":"Go to market with strategic backing, industry connections, and operational infrastructure."}]]}],["$","div","05",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"05"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Scale"}],["$","p",null,{"className":"ehw-step-desc","children":"Grow your team, expand operations, and lead your enterprise to sustainable impact."}]]}]]}]]}]}]}] -1f:["$","section",null,{"className":"est-section","id":"wings-empowerment-stories","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"est-inner","children":[["$","div",null,{"className":"est-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"est-head-reveal","children":[["$","div",null,{"className":"est-eyebrow","children":"/ Women in Motion /"}],["$","hr",null,{"className":"est-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"est-title","children":"Small steps. Lasting careers."}]}]]}],["$","div",null,{"className":"est-feature","children":[["$","$Lf",null,{"delay":0.05,"duration":0.85,"yOffset":24,"className":"est-photo","children":[["$","$L30",null,{"src":"/images/women-hero-slider-3.png","alt":"A Wings program participant on the operations floor at a Doormile logistics hub","fill":true,"sizes":"(max-width: 1000px) 100vw, 58vw","style":{"objectPosition":"80% 22%"}}],["$","div",null,{"className":"est-photo-caption","children":[["$","span",null,{"children":"Wings Participant"}],["$","strong",null,{"children":" building a career, one milestone at a time."}]]}]]}],["$","$Lf",null,{"delay":0.12,"duration":0.85,"yOffset":24,"className":"est-copy","children":["$","div",null,{"children":[["$","span",null,{"className":"est-quote-mark","aria-hidden":"true","children":"“"}],["$","p",null,{"className":"est-quote-text","children":"I came in looking for a way forward. I found the confidence to lead."}],["$","p",null,{"className":"est-narrative","children":"She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry."}]]}]}]]}]]}]}]}] -21:["$","section",null,{"className":"epn-section","id":"wings-empowerment-partners","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epn-inner","children":[["$","div",null,{"className":"epn-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epn-head-reveal","children":[["$","div",null,{"className":"epn-eyebrow","children":"/ Collaboration /"}],["$","hr",null,{"className":"epn-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epn-title","children":["Partnership is how ",["$","em",null,{"children":"ecosystems grow."}]]}]}]]}],["$","div",null,{"className":"epn-body","children":[["$","$Lf",null,{"delay":0.08,"duration":0.8,"yOffset":22,"className":"epn-manifesto","children":[["$","p",null,{"className":"epn-intro","children":"The strongest ecosystems are built by many hands."}],["$","p",null,{"className":"epn-note","children":"Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive."}]]}],["$","$Lf",null,{"delay":0.12,"duration":0.8,"yOffset":22,"children":["$","div",null,{"className":"epn-grid","children":[["$","article","Industry Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"01"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Industry Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Technology Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"02"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Technology Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Community Networks",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"03"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Community Networks"}],["$","p",null,{"className":"epn-card-desc","children":"Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Investment Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"04"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Investment Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}]]}]}]]}]]}]}]}] -23:["$","div",null,{"className":"emp-cta-wrap","children":["$","section",null,{"className":"emp-cta","aria-labelledby":"empowerment-final-cta","children":["$","div",null,{"className":"emp-cta-inner","children":[["$","div",null,{"className":"emp-cta-recap","children":[["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"500+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Women Founders"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"100+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Enterprises Launched"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"25+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Industry Partners"}]]}]]}],["$","div",null,{"className":"emp-cta-kicker","children":"/ Build the next mile /"}],["$","h2",null,{"className":"emp-cta-title","id":"empowerment-final-cta","children":["Build what’s ",["$","em",null,{"children":"next."}]]}],["$","div",null,{"className":"emp-cta-bottom","children":["$","p",null,{"className":"emp-cta-sub","children":"Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics."}]}]]}]}]}] -26:null -28:["$","polyline",null,{"points":"0.5 19.5 3 19.5 12.5 10 3 0.5"}] -29:["$","div",null,{"className":"elementor-element elementor-element-b6e14bd e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b6e14bd","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"ws-map","aria-hidden":"true","children":["$","$L27",null,{}]}],["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-90cc867 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"90cc867","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-24c0280 elementor-widget__width-inherit elementor-widget elementor-widget-logico_heading","data-id":"24c0280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Doormile Wings /"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-2ed47f3 e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"2ed47f3","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-36efec7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"36efec7","data-element_type":"container","data-e-type":"container","children":[["$","$Lf",null,{"duration":0.8,"yOffset":28,"triggerOnce":true,"children":["$","div",null,{"className":"elementor-element elementor-element-778840d elementor-widget elementor-widget-logico_heading","data-id":"778840d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","children":"Women Building The Next Mile"}]}]}]}],["$","div",null,{"className":"elementor-element elementor-element-bbfb67f elementor-widget elementor-widget-image","data-id":"bbfb67f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","$L30",null,{"src":"/images/bg-map-women.webp","alt":"Women Map","width":626,"height":692,"style":{"maxWidth":"100%","height":"auto"}}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-b2c956f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"b2c956f","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"id":"ws-stories","children":[["$","$L2f",null,{"className":"ws__stats","stagger":0.1,"duration":0.6,"yOffset":20,"triggerOnce":true,"children":[["$","div","Women Founders",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L2e",null,{"end":500,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Women Founders"}]]}],["$","div","Cities Active",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L2e",null,{"end":35,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Cities Active"}]]}],["$","div","Enterprises Launched",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L2e",null,{"end":100,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Enterprises Launched"}]]}]]}],["$","$L2f",null,{"className":"ws__cards","stagger":0.08,"duration":0.6,"yOffset":24,"triggerOnce":true,"children":[["$","div","Venture Building",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M4 19V5"}],["$","path",null,{"d":"M4 7h12l-2 4 2 4H4"}],["$","path",null,{"d":"M18 19h2"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Venture Building"}],["$","p",null,{"className":"ws__card-desc","children":"End-to-end support for women launching logistics enterprises — from ideation to market entry."}]]}],"$L31","$L32","$L33"]}]]}]}]]}]]}]}]]}] -2a:["$","div",null,{"className":"epr-row-index","children":"04"}] -2b:["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Scale with confidence"}],["$","h3",null,{"className":"epr-row-title","children":"Growth & Scale"}],["$","p",null,{"className":"epr-row-desc","children":"Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow."}]]}] -2c:["$","article","Industry Immersion",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"05"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"See the opportunity"}],["$","h3",null,{"className":"epr-row-title","children":"Industry Immersion"}],["$","p",null,{"className":"epr-row-desc","children":"Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical."}]]}]]}] -2d:["$","div",null,{"className":"epr-cta","children":["$","$L34",null,{"href":"/contact","className":"epr-cta-link","children":["Start your venture",["$","svg",null,{"width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]]}]}] -31:["$","div","Entrepreneurship",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"7","width":"18","height":"13","rx":"2"}],["$","path",null,{"d":"M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Entrepreneurship"}],["$","p",null,{"className":"ws__card-desc","children":"Women building, owning, and scaling sustainable businesses within the logistics ecosystem."}]]}] -32:["$","div","Founder Networks",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"8","cy":"8","r":"3"}],["$","circle",null,{"cx":"16","cy":"8","r":"3"}],["$","path",null,{"d":"M2.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}],["$","path",null,{"d":"M10.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Founder Networks"}],["$","p",null,{"className":"ws__card-desc","children":"Peer communities and strategic connections that accelerate growth and open new markets."}]]}] -33:["$","div","Enterprise Leadership",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"12","cy":"9","r":"5"}],["$","path",null,{"d":"M9 13.5 7.5 21 12 18l4.5 3-1.5-7.5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Enterprise Leadership"}],["$","p",null,{"className":"ws__card-desc","children":"Strategic decision-making, operational excellence, and vision-driven leadership for women founders."}]]}] +e:["$","$L23",null,{"children":["$","$24",null,{"name":"Next.MetadataOutlet","children":"$@25"}]}] +12:["$","section",null,{"className":"ev-section","id":"wings-empowerment-vision","children":[["$","div",null,{"className":"ev-map","aria-hidden":"true","children":["$","$L26",null,{}]}],["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ev-inner","children":[["$","$Lf",null,{"delay":0.05,"duration":0.7,"yOffset":20,"children":[["$","p",null,{"className":"ev-eyebrow","children":"/ Our Vision /"}],["$","hr",null,{"className":"ev-divider"}]]}],["$","$Lf",null,{"delay":0.12,"duration":0.85,"yOffset":30,"children":["$","h2",null,{"className":"ev-title","children":"Women Own The Future."}]}],["$","div",null,{"className":"ev-columns","children":[["$","$Lf",null,{"delay":0.18,"duration":0.8,"yOffset":25,"children":["$","p",null,{"className":"ev-statement","children":"A logistics ecosystem where women don’t just participate — they own, build, and lead."}]}],["$","$Lf",null,{"delay":0.26,"duration":0.8,"yOffset":25,"className":"ev-support","children":[["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"The vision"}],["$","p",null,{"className":"ev-lead","children":"We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"Why it matters"}],["$","p",null,{"className":"ev-note","children":"Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics."}]]}],["$","div",null,{"className":"ev-block","children":[["$","p",null,{"className":"ev-block-label","children":"How Wings contributes"}],["$","p",null,{"className":"ev-note","children":"Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise."}]]}]]}]]}]]}]}]]}] +14:["$","section",null,{"className":"esy-section","id":"wings-empowerment-story","children":[["$","div",null,{"className":"esy-bg","aria-hidden":"true"}],["$","div",null,{"className":"esy-inner dm-section-container","children":[["$","$Lf",null,{"delay":0.05,"duration":0.85,"yOffset":25,"children":[["$","div",null,{"className":"esy-eyebrow","children":"/ Our Approach /"}],["$","p",null,{"className":"esy-statement","children":["Not a program on a brochure. ",["$","em",null,{"children":"An ecosystem women can build in."}]]}]]}],["$","$Lf",null,{"delay":0.15,"duration":0.8,"yOffset":25,"className":"esy-side","children":[["$","span",null,{"className":"esy-label","children":"Manifesto"}],["$","p",null,{"className":"esy-pull","children":"A venture that starts with conviction. A network that turns it into momentum."}],["$","p",null,{"className":"esy-sub","children":"Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled."}]]}]]}]]}] +16:["$","div",null,{"id":"women-entrepreneurship","className":"elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"bbc6760","data-element_type":"container","data-e-type":"container","style":{"backgroundColor":"#1f1f1f","width":"calc(100% - 40px)","marginLeft":"20px","marginRight":"20px","borderRadius":"25px"},"children":[["$","div",null,{"className":"elementor-element elementor-element-13a7637 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-logico_decorative_block","data-id":"13a7637","data-element_type":"widget","data-e-type":"widget","style":{"position":"absolute"},"children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"block-decoration animation-enable block-decoration-style-1","children":["$","div",null,{"className":"block-decoration-item"}]}]}]}],["$","div",null,{"style":{"backgroundImage":"url(/images/bg-header-women.webp)"},"className":"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container"}],["$","div",null,{"className":"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"01"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h5",null,{"className":"logico-title","children":"Women Entrepreneurship"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","p",null,{"children":"An ecosystem where women build, own, and scale enterprises across logistics."}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":["$","div",null,{"className":"elementor-element elementor-element-46b9ffa elementor-widget elementor-widget-logico_button","data-id":"46b9ffa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"button-widget","children":["$","div",null,{"className":"button-container","children":["$","a",null,{"href":"#wings-empowerment-programs","className":"logico-small-button","children":["Explore the ecosystem",["$","svg",null,{"viewBox":"0 0 13 20","children":"$L27"}]]}]}]}]}]}]}]]}]}],"$L28"]}] +18:["$","section",null,{"className":"epr-section","id":"wings-empowerment-programs","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epr-inner","children":[["$","div",null,{"className":"epr-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epr-head-reveal","children":[["$","div",null,{"className":"epr-eyebrow","children":"/ Entrepreneurship Pillars /"}],["$","hr",null,{"className":"epr-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epr-title","children":"Every pillar is built around ownership."}]}]]}],["$","div",null,{"className":"epr-stage","children":[["$","div",null,{"className":"epr-aside-wrap","children":["$","div",null,{"className":"epr-aside-sticky","children":["$","aside",null,{"className":"epr-aside","children":[["$","div",null,{"className":"epr-aside-map","aria-hidden":"true","children":["$","$L26",null,{}]}],["$","$Lf",null,{"delay":0.05,"duration":0.8,"yOffset":24,"className":"epr-aside-content","children":[["$","div",null,{"className":"epr-aside-num","children":"05"}],["$","p",null,{"className":"epr-aside-copy","children":["Building tomorrow’s ",["$","em",null,{"children":"women entrepreneurs."}]]}],["$","p",null,{"className":"epr-aside-desc","children":"Every enterprise starts with one decision. Our pillars move women from idea to ownership through mentorship, real industry partnerships, and hands-on venture building across the logistics ecosystem."}]]}]]}]}]}],["$","div",null,{"children":[["$","$Lf",null,{"delay":0.1,"duration":0.8,"yOffset":24,"children":["$","div",null,{"className":"epr-list","children":[["$","article","Venture Launchpad",{"className":"epr-row epr-row-featured","children":[["$","div",null,{"className":"epr-row-index","children":"01"}],["$","div",null,{"children":[["$","span",null,{"className":"epr-row-flag","children":"Where most founders begin"}],["$","span",null,{"className":"epr-row-type","children":"Start building"}],["$","h3",null,{"className":"epr-row-title","children":"Venture Launchpad"}],["$","p",null,{"className":"epr-row-desc","children":"Business model validation, market entry strategy, entity formation, and go-to-market execution for women-led logistics enterprises."}]]}]]}],["$","article","Strategic Partnerships",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"02"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Connect and grow"}],["$","h3",null,{"className":"epr-row-title","children":"Strategic Partnerships"}],["$","p",null,{"className":"epr-row-desc","children":"Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth."}]]}]]}],["$","article","Founder Mentorship",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"03"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Learn from builders"}],["$","h3",null,{"className":"epr-row-title","children":"Founder Mentorship"}],["$","p",null,{"className":"epr-row-desc","children":"One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale."}]]}]]}],["$","article","Growth & Scale",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"04"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"Scale with confidence"}],["$","h3",null,{"className":"epr-row-title","children":"Growth & Scale"}],["$","p",null,{"className":"epr-row-desc","children":"Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow."}]]}]]}],["$","article","Industry Immersion",{"className":"epr-row","children":[["$","div",null,{"className":"epr-row-index","children":"05"}],["$","div",null,{"children":[false,["$","span",null,{"className":"epr-row-type","children":"See the opportunity"}],["$","h3",null,{"className":"epr-row-title","children":"Industry Immersion"}],["$","p",null,{"className":"epr-row-desc","children":"Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical."}]]}]]}]]}]}],["$","div",null,{"className":"epr-cta","children":["$","$L29",null,{"href":"/contact","className":"epr-cta-link","children":["Start your venture","$L2a"]}]}]]}]]}]]}]}]}] +1a:["$","section",null,{"className":"eim-section","id":"wings-empowerment-impact","children":["$","div",null,{"className":"eim-inner dm-section-container","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"children":[["$","div",null,{"className":"eim-eyebrow","children":"/ Our Impact /"}],["$","h2",null,{"className":"eim-title","children":"Growth we can measure"}]]}],["$","hr",null,{"className":"eim-divider"}],["$","$Lf",null,{"delay":0.08,"duration":0.8,"yOffset":20,"className":"eim-hero-row","children":[["$","span",null,{"className":"eim-hero-num","children":["$","$L2b",null,{"end":500,"suffix":"+","duration":2.2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-hero-label","children":"Women-Led Enterprises In The Ecosystem"}]]}],["$","hr",null,{"className":"eim-divider-2"}],["$","$Lf",null,{"delay":0.1,"duration":0.8,"yOffset":20,"children":["$","div",null,{"className":"eim-secondary-row","children":[["$","div","Enterprises Launched",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L2b",null,{"end":100,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Enterprises Launched"}]]}],["$","div","Industry Partners",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L2b",null,{"end":25,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Industry Partners"}]]}],["$","div","Cities Active",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":["$","$L2b",null,{"end":15,"suffix":"+","duration":2,"triggerOnce":true}]}],["$","span",null,{"className":"eim-secondary-label","children":"Cities Active"}]]}],["$","div","In Economic Value Created",{"className":"eim-secondary-item","children":[["$","span",null,{"className":"eim-secondary-num","children":"Millions"}],["$","span",null,{"className":"eim-secondary-label","children":"In Economic Value Created"}]]}]]}]}],["$","$Lf",null,{"delay":0.12,"duration":0.75,"yOffset":20,"className":"eim-copy","children":["$","p",null,{"children":"Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake."}]}]]}]}] +1c:["$","section",null,{"className":"ehw-section","id":"wings-empowerment-how-it-works","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"ehw-inner","children":[["$","div",null,{"className":"ehw-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"ehw-head-reveal","children":[["$","div",null,{"className":"ehw-eyebrow","children":"/ The Founder Journey /"}],["$","hr",null,{"className":"ehw-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"ehw-title","children":"A clear path, from idea to enterprise"}]}]]}],["$","$L2c",null,{"className":"ehw-sequence","stagger":0.12,"duration":0.7,"yOffset":30,"triggerOnce":true,"children":[["$","div","01",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"01"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Apply"}],["$","p",null,{"className":"ehw-step-desc","children":"Submit your venture idea and tell us about your entrepreneurial vision."}]]}],["$","div","02",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"02"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Discovery"}],["$","p",null,{"className":"ehw-step-desc","children":"Identify the right market opportunity and validate your business model."}]]}],["$","div","03",{"className":"ehw-step is-accent","children":[["$","div",null,{"className":"ehw-step-num","children":"03"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Build"}],["$","p",null,{"className":"ehw-step-desc","children":"Develop your enterprise with ecosystem support, mentorship, and partnerships."}]]}],["$","div","04",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"04"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Launch"}],["$","p",null,{"className":"ehw-step-desc","children":"Go to market with strategic backing, industry connections, and operational infrastructure."}]]}],["$","div","05",{"className":"ehw-step","children":[["$","div",null,{"className":"ehw-step-num","children":"05"}],["$","div",null,{"className":"ehw-step-kicker","aria-hidden":"true","children":[["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M7 17 17 7M9 7h8v8"}]}],["$","span",null,{"children":"Step"}]]}],["$","h3",null,{"className":"ehw-step-title","children":"Scale"}],["$","p",null,{"className":"ehw-step-desc","children":"Grow your team, expand operations, and lead your enterprise to sustainable impact."}]]}]]}]]}]}]}] +1e:["$","section",null,{"className":"est-section","id":"wings-empowerment-stories","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"est-inner","children":[["$","div",null,{"className":"est-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"est-head-reveal","children":[["$","div",null,{"className":"est-eyebrow","children":"/ Women in Motion /"}],["$","hr",null,{"className":"est-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"est-title","children":"Small steps. Lasting careers."}]}]]}],["$","div",null,{"className":"est-feature","children":[["$","$Lf",null,{"delay":0.05,"duration":0.85,"yOffset":24,"className":"est-photo","children":[["$","$L2d",null,{"src":"/images/women-hero-slider-3.png","alt":"A Wings program participant on the operations floor at a Doormile logistics hub","fill":true,"sizes":"(max-width: 1000px) 100vw, 58vw","style":{"objectPosition":"80% 22%"}}],["$","div",null,{"className":"est-photo-caption","children":[["$","span",null,{"children":"Wings Participant"}],["$","strong",null,{"children":" building a career, one milestone at a time."}]]}]]}],["$","$Lf",null,{"delay":0.12,"duration":0.85,"yOffset":24,"className":"est-copy","children":["$","div",null,{"children":[["$","span",null,{"className":"est-quote-mark","aria-hidden":"true","children":"“"}],["$","p",null,{"className":"est-quote-text","children":"I came in looking for a way forward. I found the confidence to lead."}],["$","p",null,{"className":"est-narrative","children":"She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry."}]]}]}]]}]]}]}]}] +20:["$","section",null,{"className":"epn-section","id":"wings-empowerment-partners","children":["$","div",null,{"className":"dm-section-container","children":["$","div",null,{"className":"epn-inner","children":[["$","div",null,{"className":"epn-head","children":[["$","$Lf",null,{"delay":0.05,"duration":0.75,"yOffset":20,"className":"epn-head-reveal","children":[["$","div",null,{"className":"epn-eyebrow","children":"/ Collaboration /"}],["$","hr",null,{"className":"epn-divider"}]]}],["$","$Lf",null,{"delay":0.1,"duration":0.85,"yOffset":24,"children":["$","h2",null,{"className":"epn-title","children":["Partnership is how ",["$","em",null,{"children":"ecosystems grow."}]]}]}]]}],["$","div",null,{"className":"epn-body","children":[["$","$Lf",null,{"delay":0.08,"duration":0.8,"yOffset":22,"className":"epn-manifesto","children":[["$","p",null,{"className":"epn-intro","children":"The strongest ecosystems are built by many hands."}],["$","p",null,{"className":"epn-note","children":"Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive."}]]}],["$","$Lf",null,{"delay":0.12,"duration":0.8,"yOffset":22,"children":["$","div",null,{"className":"epn-grid","children":[["$","article","Industry Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"01"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Industry Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Technology Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"02"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Technology Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Community Networks",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"03"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Community Networks"}],["$","p",null,{"className":"epn-card-desc","children":"Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}],["$","article","Investment Partners",{"className":"epn-card","children":[["$","span",null,{"className":"epn-card-index","children":"04"}],["$","div",null,{"children":[["$","h3",null,{"className":"epn-card-title","children":"Investment Partners"}],["$","p",null,{"className":"epn-card-desc","children":"Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth."}]]}],["$","span",null,{"className":"epn-card-arrow","aria-hidden":"true","children":["$","svg",null,{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}]}]]}]]}]}]]}]]}]}]}] +22:["$","div",null,{"className":"emp-cta-wrap","children":["$","section",null,{"className":"emp-cta","aria-labelledby":"empowerment-final-cta","children":["$","div",null,{"className":"emp-cta-inner","children":[["$","div",null,{"className":"emp-cta-recap","children":[["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"500+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Women Founders"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"100+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Enterprises Launched"}]]}],["$","div",null,{"className":"emp-cta-recap-item","children":[["$","span",null,{"className":"emp-cta-recap-num","children":"25+"}],["$","span",null,{"className":"emp-cta-recap-label","children":"Industry Partners"}]]}]]}],["$","div",null,{"className":"emp-cta-kicker","children":"/ Build the next mile /"}],["$","h2",null,{"className":"emp-cta-title","id":"empowerment-final-cta","children":["Build what’s ",["$","em",null,{"children":"next."}]]}],["$","div",null,{"className":"emp-cta-bottom","children":["$","p",null,{"className":"emp-cta-sub","children":"Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics."}]}]]}]}]}] +25:null +27:["$","polyline",null,{"points":"0.5 19.5 3 19.5 12.5 10 3 0.5"}] +28:["$","div",null,{"className":"elementor-element elementor-element-b6e14bd e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b6e14bd","data-element_type":"container","data-e-type":"container","data-settings":"{\"background_background\":\"classic\"}","children":[["$","div",null,{"className":"ws-map","aria-hidden":"true","children":["$","$L26",null,{}]}],["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-90cc867 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"90cc867","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-24c0280 elementor-widget__width-inherit elementor-widget elementor-widget-logico_heading","data-id":"24c0280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Women Empowerment /"}]}]}],["$","div",null,{"className":"elementor-element elementor-element-2ed47f3 e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"2ed47f3","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-36efec7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"36efec7","data-element_type":"container","data-e-type":"container","children":[["$","$Lf",null,{"duration":0.8,"yOffset":28,"triggerOnce":true,"children":["$","div",null,{"className":"elementor-element elementor-element-778840d elementor-widget elementor-widget-logico_heading","data-id":"778840d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","h3",null,{"className":"logico-title","children":"Women Building The Next Mile"}]}]}]}],["$","div",null,{"className":"elementor-element elementor-element-bbfb67f elementor-widget elementor-widget-image","data-id":"bbfb67f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","$L2d",null,{"src":"/images/bg-map-women.webp","alt":"Women Map","width":626,"height":692,"style":{"maxWidth":"100%","height":"auto"}}]}]}]]}],["$","div",null,{"className":"elementor-element elementor-element-b2c956f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"b2c956f","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"id":"ws-stories","children":[["$","$L2c",null,{"className":"ws__stats","stagger":0.1,"duration":0.6,"yOffset":20,"triggerOnce":true,"children":[["$","div","Women Founders",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L2b",null,{"end":500,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Women Founders"}]]}],["$","div","Cities Active",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L2b",null,{"end":35,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Cities Active"}]]}],["$","div","Enterprises Launched",{"className":"ws__stat","children":[["$","div",null,{"className":"ws__stat-num","children":[["$","$L2b",null,{"end":100,"suffix":"","duration":1.8,"triggerOnce":true}],["$","span",null,{"children":"+"}]]}],["$","div",null,{"className":"ws__stat-label","children":"Enterprises Launched"}]]}]]}],["$","$L2c",null,{"className":"ws__cards","stagger":0.08,"duration":0.6,"yOffset":24,"triggerOnce":true,"children":[["$","div","Venture Building",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","path",null,{"d":"M4 19V5"}],["$","path",null,{"d":"M4 7h12l-2 4 2 4H4"}],["$","path",null,{"d":"M18 19h2"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Venture Building"}],["$","p",null,{"className":"ws__card-desc","children":"End-to-end support for women launching logistics enterprises — from ideation to market entry."}]]}],"$L2e","$L2f","$L30"]}]]}]}]]}]]}]}]]}] +2a:["$","svg",null,{"width":"16","height":"16","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2.25","strokeLinecap":"round","strokeLinejoin":"round","children":["$","path",null,{"d":"M5 12h14M13 6l6 6-6 6"}]}] +2e:["$","div","Entrepreneurship",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","rect",null,{"x":"3","y":"7","width":"18","height":"13","rx":"2"}],["$","path",null,{"d":"M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Entrepreneurship"}],["$","p",null,{"className":"ws__card-desc","children":"Women building, owning, and scaling sustainable businesses within the logistics ecosystem."}]]}] +2f:["$","div","Founder Networks",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"8","cy":"8","r":"3"}],["$","circle",null,{"cx":"16","cy":"8","r":"3"}],["$","path",null,{"d":"M2.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}],["$","path",null,{"d":"M10.5 20c.7-3.1 2.8-5 5.5-5s4.8 1.9 5.5 5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Founder Networks"}],["$","p",null,{"className":"ws__card-desc","children":"Peer communities and strategic connections that accelerate growth and open new markets."}]]}] +30:["$","div","Enterprise Leadership",{"className":"ws__card","children":[["$","span",null,{"className":"ws__card-icon","aria-hidden":"true","children":["$","svg",null,{"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"1.8","strokeLinecap":"round","strokeLinejoin":"round","children":[["$","circle",null,{"cx":"12","cy":"9","r":"5"}],["$","path",null,{"d":"M9 13.5 7.5 21 12 18l4.5 3-1.5-7.5"}]]}]}],["$","div",null,{"className":"ws__card-title","children":"Enterprise Leadership"}],["$","p",null,{"className":"ws__card-desc","children":"Strategic decision-making, operational excellence, and vision-driven leadership for women founders."}]]}] diff --git a/.next/server/app/empowerment/page.js b/.next/server/app/empowerment/page.js new file mode 100644 index 0000000..73d5055 --- /dev/null +++ b/.next/server/app/empowerment/page.js @@ -0,0 +1,17 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/empowerment/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0oqdvq1._.js") +R.c("server/chunks/ssr/_0sw0r2k._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/src_07wjkqu._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0hb_~4l.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(4776) +module.exports=R.m(4776).exports diff --git a/.next/server/app/empowerment/page.js.map b/.next/server/app/empowerment/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/empowerment/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/empowerment/page.js.nft.json b/.next/server/app/empowerment/page.js.nft.json new file mode 100644 index 0000000..25a8083 --- /dev/null +++ b/.next/server/app/empowerment/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[root-of-the-server]__0oqdvq1._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_0sw0r2k._.js","../../chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0hb_~4l.js","../../chunks/ssr/src_07wjkqu._.js","../../chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/empowerment/page/app-paths-manifest.json b/.next/server/app/empowerment/page/app-paths-manifest.json new file mode 100644 index 0000000..7b8f0fc --- /dev/null +++ b/.next/server/app/empowerment/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/empowerment/page": "app/empowerment/page.js" +} \ No newline at end of file diff --git a/.next/server/app/empowerment/page/build-manifest.json b/.next/server/app/empowerment/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/empowerment/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/empowerment/page/next-font-manifest.json b/.next/server/app/empowerment/page/next-font-manifest.json new file mode 100644 index 0000000..98869b2 --- /dev/null +++ b/.next/server/app/empowerment/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/empowerment/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/empowerment/page/react-loadable-manifest.json b/.next/server/app/empowerment/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/empowerment/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/empowerment/page/server-reference-manifest.json b/.next/server/app/empowerment/page/server-reference-manifest.json new file mode 100644 index 0000000..8e808ad --- /dev/null +++ b/.next/server/app/empowerment/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/empowerment/page": { + "moduleId": 61215, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/empowerment/page_client-reference-manifest.js b/.next/server/app/empowerment/page_client-reference-manifest.js new file mode 100644 index 0000000..891a8e1 --- /dev/null +++ b/.next/server/app/empowerment/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/empowerment/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/Reveal.tsx ":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false},"[project]/src/animations/Reveal.tsx":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false},"[project]/src/components/sections/IndustryWorldMap.tsx ":{"id":5074,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false},"[project]/src/components/sections/IndustryWorldMap.tsx":{"id":5074,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vzdvje64yndv.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"2018":{"*":{"id":36002,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js"],"async":false}},"5074":{"*":{"id":22994,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"2018":{"*":{"id":9386,"name":"*","chunks":[],"async":false}},"5074":{"*":{"id":17381,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/empowerment/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/empowerment/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/0vzdvje64yndv.js"]}}; + diff --git a/.next/server/app/express.html b/.next/server/app/express.html new file mode 100644 index 0000000..a0ec926 --- /dev/null +++ b/.next/server/app/express.html @@ -0,0 +1,756 @@ +Express – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Solutions / Express

Doormile Express is on its way

We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today.

\ No newline at end of file diff --git a/.next/server/app/express.meta b/.next/server/app/express.meta new file mode 100644 index 0000000..50a8c51 --- /dev/null +++ b/.next/server/app/express.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/express/layout,_N_T_/express/page,_N_T_/express" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/express/__PAGE__", + "/express", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/.next/server/app/express.rsc b/.next/server/app/express.rsc new file mode 100644 index 0000000..baa980a --- /dev/null +++ b/.next/server/app/express.rsc @@ -0,0 +1,114 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +12:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","express"],"q":"","i":false,"f":[[["",{"children":["express",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"express","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"express-coming-soon","children":["$","div",null,{"className":"express-coming-soon-inner","children":[["$","span",null,{"className":"express-coming-soon-eyebrow","children":"Solutions / Express"}],["$","h1",null,{"className":"express-coming-soon-heading","children":["Doormile Express is ",["$","span",null,{"className":"express-coming-soon-accent","children":"on its way"}]]}],["$","p",null,{"className":"express-coming-soon-text","children":"We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today."}],["$","div",null,{"className":"express-coming-soon-actions","children":["$Lc","$Ld"]}]]}]}]}]}],"$Le"]}],null,"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +14:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +16:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +17:"$Sreact.suspense" +1a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","$L14",null,{"href":"/doormile-wings","prefetch":true,"className":"logico-alter-button","children":"Explore Doormile Wings"}] +d:["$","$L14",null,{"href":"/contact","className":"express-coming-soon-link","children":"Get notified when we launch →"}] +15:Tb69, + .express-coming-soon { + --logico-dark-text-color: #ffffff; + --logico-light-text-color: #bebebe; + --logico-accent-color: #C01227; + min-height: calc(100vh - 160px); + display: flex; + align-items: center; + justify-content: center; + padding: clamp(48px, 8vw, 120px) 24px; + background: radial-gradient(120% 120% at 50% 0%, rgba(192, 18, 39, 0.18) 0%, rgba(26, 26, 26, 0.98) 55%, #111111 100%); + } + .express-coming-soon-inner { + max-width: 720px; + text-align: center; + } + .express-coming-soon-eyebrow { + display: inline-block; + font-size: 13px; + font-weight: 700; + letter-spacing: 0.14em; + text-transform: uppercase; + color: var(--logico-accent-color); + margin-bottom: 20px; + } + .express-coming-soon-heading { + font-family: 'Manrope', sans-serif; + font-size: clamp(32px, 5vw, 56px); + line-height: 1.15em; + font-weight: 700; + color: var(--logico-dark-text-color); + margin: 0 0 20px; + } + .express-coming-soon-accent { + color: var(--logico-accent-color); + } + .express-coming-soon-text { + font-size: 16px; + line-height: 1.75em; + color: var(--logico-light-text-color); + margin: 0 auto 36px; + max-width: 520px; + } + .express-coming-soon-actions { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: center; + gap: 24px; + } + .express-coming-soon .logico-alter-button { + color: #ffffff !important; + border-color: rgba(255, 255, 255, 0.45) !important; + background: transparent !important; + } + .express-coming-soon .logico-alter-button:hover { + background: #ffffff !important; + color: #1a1a1a !important; + border-color: #ffffff !important; + } + .express-coming-soon-link { + font-size: 15px; + font-weight: 600; + color: var(--logico-light-text-color); + text-decoration: underline; + text-underline-offset: 4px; + } + .express-coming-soon-link:hover { + color: #ffffff; + } + @media (max-width: 480px) { + .express-coming-soon-actions { + flex-direction: column; + gap: 16px; + } + } + e:["$","style",null,{"suppressHydrationWarning":true,"dangerouslySetInnerHTML":{"__html":"$15"}}] +f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}] +19:[] +10:"$W19" +11:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +1e:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +18:null +1d:[["$","title","0",{"children":"Express – Doormile"}],["$","meta","1",{"name":"description","content":"Doormile Express — a fast-lane logistics service for time-critical shipments. Coming soon."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/express"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1e","8",{}]] diff --git a/.next/server/app/express.segments/_full.segment.rsc b/.next/server/app/express.segments/_full.segment.rsc new file mode 100644 index 0000000..baa980a --- /dev/null +++ b/.next/server/app/express.segments/_full.segment.rsc @@ -0,0 +1,114 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +12:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","express"],"q":"","i":false,"f":[[["",{"children":["express",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"express","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"express-coming-soon","children":["$","div",null,{"className":"express-coming-soon-inner","children":[["$","span",null,{"className":"express-coming-soon-eyebrow","children":"Solutions / Express"}],["$","h1",null,{"className":"express-coming-soon-heading","children":["Doormile Express is ",["$","span",null,{"className":"express-coming-soon-accent","children":"on its way"}]]}],["$","p",null,{"className":"express-coming-soon-text","children":"We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today."}],["$","div",null,{"className":"express-coming-soon-actions","children":["$Lc","$Ld"]}]]}]}]}]}],"$Le"]}],null,"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +14:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +16:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +17:"$Sreact.suspense" +1a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","$L14",null,{"href":"/doormile-wings","prefetch":true,"className":"logico-alter-button","children":"Explore Doormile Wings"}] +d:["$","$L14",null,{"href":"/contact","className":"express-coming-soon-link","children":"Get notified when we launch →"}] +15:Tb69, + .express-coming-soon { + --logico-dark-text-color: #ffffff; + --logico-light-text-color: #bebebe; + --logico-accent-color: #C01227; + min-height: calc(100vh - 160px); + display: flex; + align-items: center; + justify-content: center; + padding: clamp(48px, 8vw, 120px) 24px; + background: radial-gradient(120% 120% at 50% 0%, rgba(192, 18, 39, 0.18) 0%, rgba(26, 26, 26, 0.98) 55%, #111111 100%); + } + .express-coming-soon-inner { + max-width: 720px; + text-align: center; + } + .express-coming-soon-eyebrow { + display: inline-block; + font-size: 13px; + font-weight: 700; + letter-spacing: 0.14em; + text-transform: uppercase; + color: var(--logico-accent-color); + margin-bottom: 20px; + } + .express-coming-soon-heading { + font-family: 'Manrope', sans-serif; + font-size: clamp(32px, 5vw, 56px); + line-height: 1.15em; + font-weight: 700; + color: var(--logico-dark-text-color); + margin: 0 0 20px; + } + .express-coming-soon-accent { + color: var(--logico-accent-color); + } + .express-coming-soon-text { + font-size: 16px; + line-height: 1.75em; + color: var(--logico-light-text-color); + margin: 0 auto 36px; + max-width: 520px; + } + .express-coming-soon-actions { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: center; + gap: 24px; + } + .express-coming-soon .logico-alter-button { + color: #ffffff !important; + border-color: rgba(255, 255, 255, 0.45) !important; + background: transparent !important; + } + .express-coming-soon .logico-alter-button:hover { + background: #ffffff !important; + color: #1a1a1a !important; + border-color: #ffffff !important; + } + .express-coming-soon-link { + font-size: 15px; + font-weight: 600; + color: var(--logico-light-text-color); + text-decoration: underline; + text-underline-offset: 4px; + } + .express-coming-soon-link:hover { + color: #ffffff; + } + @media (max-width: 480px) { + .express-coming-soon-actions { + flex-direction: column; + gap: 16px; + } + } + e:["$","style",null,{"suppressHydrationWarning":true,"dangerouslySetInnerHTML":{"__html":"$15"}}] +f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}] +19:[] +10:"$W19" +11:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +1e:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +18:null +1d:[["$","title","0",{"children":"Express – Doormile"}],["$","meta","1",{"name":"description","content":"Doormile Express — a fast-lane logistics service for time-critical shipments. Coming soon."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/express"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1e","8",{}]] diff --git a/build/express/__next._head.txt b/.next/server/app/express.segments/_head.segment.rsc similarity index 59% rename from build/express/__next._head.txt rename to .next/server/app/express.segments/_head.segment.rsc index 37eface..a62bcda 100644 --- a/build/express/__next._head.txt +++ b/.next/server/app/express.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Express – Doormile"}],["$","meta","1",{"name":"description","content":"Doormile Express — a fast-lane logistics service for time-critical shipments. Coming soon."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/express"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","8",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Express – Doormile"}],["$","meta","1",{"name":"description","content":"Doormile Express — a fast-lane logistics service for time-critical shipments. Coming soon."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/express"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","8",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/express.segments/_index.segment.rsc b/.next/server/app/express.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/express.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/express/__next._tree.txt b/.next/server/app/express.segments/_tree.segment.rsc similarity index 87% rename from build/express/__next._tree.txt rename to .next/server/app/express.segments/_tree.segment.rsc index c2a0126..81f19c0 100644 --- a/build/express/__next._tree.txt +++ b/.next/server/app/express.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"express","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"express","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/express.segments/express.segment.rsc b/.next/server/app/express.segments/express.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/express.segments/express.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/express/__next.express.__PAGE__.txt b/.next/server/app/express.segments/express/__PAGE__.segment.rsc similarity index 89% rename from build/express/__next.express.__PAGE__.txt rename to .next/server/app/express.segments/express/__PAGE__.segment.rsc index fac1f98..ef303fb 100644 --- a/build/express/__next.express.__PAGE__.txt +++ b/.next/server/app/express.segments/express/__PAGE__.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -5:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +5:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 6:"$Sreact.suspense" 3:Tb69, .express-coming-soon { @@ -78,6 +78,6 @@ gap: 16px; } } - 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"express","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"express-coming-soon","children":["$","div",null,{"className":"express-coming-soon-inner","children":[["$","span",null,{"className":"express-coming-soon-eyebrow","children":"Solutions / Express"}],["$","h1",null,{"className":"express-coming-soon-heading","children":["Doormile Express is ",["$","span",null,{"className":"express-coming-soon-accent","children":"on its way"}]]}],["$","p",null,{"className":"express-coming-soon-text","children":"We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today."}],["$","div",null,{"className":"express-coming-soon-actions","children":[["$","$L2",null,{"href":"/doormile-wings","prefetch":true,"className":"logico-alter-button","children":"Explore Doormile Wings"}],["$","$L2",null,{"href":"/contact","className":"express-coming-soon-link","children":"Get notified when we launch →"}]]}]]}]}]}]}],["$","style",null,{"suppressHydrationWarning":true,"dangerouslySetInnerHTML":{"__html":"$3"}}]]}],null,"$L4"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} + 0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"express","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"express-coming-soon","children":["$","div",null,{"className":"express-coming-soon-inner","children":[["$","span",null,{"className":"express-coming-soon-eyebrow","children":"Solutions / Express"}],["$","h1",null,{"className":"express-coming-soon-heading","children":["Doormile Express is ",["$","span",null,{"className":"express-coming-soon-accent","children":"on its way"}]]}],["$","p",null,{"className":"express-coming-soon-text","children":"We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today."}],["$","div",null,{"className":"express-coming-soon-actions","children":[["$","$L2",null,{"href":"/doormile-wings","prefetch":true,"className":"logico-alter-button","children":"Explore Doormile Wings"}],["$","$L2",null,{"href":"/contact","className":"express-coming-soon-link","children":"Get notified when we launch →"}]]}]]}]}]}]}],["$","style",null,{"suppressHydrationWarning":true,"dangerouslySetInnerHTML":{"__html":"$3"}}]]}],null,"$L4"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 4:["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}] 7:null diff --git a/.next/server/app/express/page.js b/.next/server/app/express/page.js new file mode 100644 index 0000000..37b42b6 --- /dev/null +++ b/.next/server/app/express/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/express/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0dzpf04._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_12we091.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(31185) +module.exports=R.m(31185).exports diff --git a/.next/server/app/express/page.js.map b/.next/server/app/express/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/express/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/express/page.js.nft.json b/.next/server/app/express/page.js.nft.json new file mode 100644 index 0000000..d5e93e2 --- /dev/null +++ b/.next/server/app/express/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0dzpf04._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_12we091.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/express/page/app-paths-manifest.json b/.next/server/app/express/page/app-paths-manifest.json new file mode 100644 index 0000000..e66d6e0 --- /dev/null +++ b/.next/server/app/express/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/express/page": "app/express/page.js" +} \ No newline at end of file diff --git a/.next/server/app/express/page/build-manifest.json b/.next/server/app/express/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/express/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/express/page/next-font-manifest.json b/.next/server/app/express/page/next-font-manifest.json new file mode 100644 index 0000000..8c1efd1 --- /dev/null +++ b/.next/server/app/express/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/express/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/express/page/react-loadable-manifest.json b/.next/server/app/express/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/express/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/express/page/server-reference-manifest.json b/.next/server/app/express/page/server-reference-manifest.json new file mode 100644 index 0000000..dd1e922 --- /dev/null +++ b/.next/server/app/express/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/express/page": { + "moduleId": 88309, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/express/page_client-reference-manifest.js b/.next/server/app/express/page_client-reference-manifest.js new file mode 100644 index 0000000..52506dd --- /dev/null +++ b/.next/server/app/express/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/express/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/express/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/express/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"]}}; + diff --git a/build/_next/static/media/favicon.14w3bhkxgz946.ico b/.next/server/app/favicon.ico.body similarity index 100% rename from build/_next/static/media/favicon.14w3bhkxgz946.ico rename to .next/server/app/favicon.ico.body diff --git a/.next/server/app/favicon.ico.meta b/.next/server/app/favicon.ico.meta new file mode 100644 index 0000000..b5516f2 --- /dev/null +++ b/.next/server/app/favicon.ico.meta @@ -0,0 +1 @@ +{"status":200,"headers":{"cache-control":"public, max-age=0, must-revalidate","content-type":"image/x-icon","x-next-cache-tags":"_N_T_/layout,_N_T_/favicon.ico/layout,_N_T_/favicon.ico/route,_N_T_/favicon.ico"}} \ No newline at end of file diff --git a/.next/server/app/favicon.ico/route.js b/.next/server/app/favicon.ico/route.js new file mode 100644 index 0000000..cbd22b1 --- /dev/null +++ b/.next/server/app/favicon.ico/route.js @@ -0,0 +1,6 @@ +var R=require("../../chunks/[turbopack]_runtime.js")("server/app/favicon.ico/route.js") +R.c("server/chunks/[root-of-the-server]__009pdeo._.js") +R.c("server/chunks/[root-of-the-server]__0j8-xkl._.js") +R.c("server/chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js") +R.m(88165) +module.exports=R.m(88165).exports diff --git a/.next/server/app/favicon.ico/route.js.map b/.next/server/app/favicon.ico/route.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/favicon.ico/route.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/favicon.ico/route.js.nft.json b/.next/server/app/favicon.ico/route.js.nft.json new file mode 100644 index 0000000..906c52f --- /dev/null +++ b/.next/server/app/favicon.ico/route.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/[root-of-the-server]__009pdeo._.js","../../chunks/[root-of-the-server]__0j8-xkl._.js","../../chunks/[turbopack]_runtime.js","../../chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js"]} \ No newline at end of file diff --git a/.next/server/app/favicon.ico/route/app-paths-manifest.json b/.next/server/app/favicon.ico/route/app-paths-manifest.json new file mode 100644 index 0000000..789e89c --- /dev/null +++ b/.next/server/app/favicon.ico/route/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/favicon.ico/route": "app/favicon.ico/route.js" +} \ No newline at end of file diff --git a/.next/server/app/favicon.ico/route/build-manifest.json b/.next/server/app/favicon.ico/route/build-manifest.json new file mode 100644 index 0000000..973d893 --- /dev/null +++ b/.next/server/app/favicon.ico/route/build-manifest.json @@ -0,0 +1,9 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [], + "lowPriorityFiles": [], + "rootMainFiles": [], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/build/how-it-works.html b/.next/server/app/how-it-works.html similarity index 53% rename from build/how-it-works.html rename to .next/server/app/how-it-works.html index 1b081d0..df73f60 100644 --- a/build/how-it-works.html +++ b/.next/server/app/how-it-works.html @@ -1,4 +1,4 @@ -How It Works – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file + \ No newline at end of file diff --git a/.next/server/app/how-it-works.meta b/.next/server/app/how-it-works.meta new file mode 100644 index 0000000..ccc78ad --- /dev/null +++ b/.next/server/app/how-it-works.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/how-it-works/layout,_N_T_/how-it-works/page,_N_T_/how-it-works" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/how-it-works/__PAGE__", + "/how-it-works", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/.next/server/app/how-it-works.rsc b/.next/server/app/how-it-works.rsc new file mode 100644 index 0000000..e30aaee --- /dev/null +++ b/.next/server/app/how-it-works.rsc @@ -0,0 +1,33 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[74528,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"default"] +d:I[16948,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"default"] +e:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +f:"$Sreact.suspense" +12:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +16:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","how-it-works"],"q":"","i":false,"f":[[["",{"children":["how-it-works",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"how-it-works","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/133p65rq~827a.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null],["$","$1","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +17:[] +11:"$W17" +13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +18:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +10:null +15:[["$","title","0",{"children":"How It Works – Doormile"}],["$","meta","1",{"name":"description","content":"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L18","7",{}]] diff --git a/.next/server/app/how-it-works.segments/_full.segment.rsc b/.next/server/app/how-it-works.segments/_full.segment.rsc new file mode 100644 index 0000000..e30aaee --- /dev/null +++ b/.next/server/app/how-it-works.segments/_full.segment.rsc @@ -0,0 +1,33 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[74528,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"default"] +d:I[16948,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"default"] +e:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +f:"$Sreact.suspense" +12:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +14:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +16:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","how-it-works"],"q":"","i":false,"f":[[["",{"children":["how-it-works",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"how-it-works","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/133p65rq~827a.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null],["$","$1","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +17:[] +11:"$W17" +13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +18:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +10:null +15:[["$","title","0",{"children":"How It Works – Doormile"}],["$","meta","1",{"name":"description","content":"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L18","7",{}]] diff --git a/build/how-it-works/__next._head.txt b/.next/server/app/how-it-works.segments/_head.segment.rsc similarity index 60% rename from build/how-it-works/__next._head.txt rename to .next/server/app/how-it-works.segments/_head.segment.rsc index d9b12e4..974c9fd 100644 --- a/build/how-it-works/__next._head.txt +++ b/.next/server/app/how-it-works.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"How It Works – Doormile"}],["$","meta","1",{"name":"description","content":"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"How It Works – Doormile"}],["$","meta","1",{"name":"description","content":"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/how-it-works.segments/_index.segment.rsc b/.next/server/app/how-it-works.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/how-it-works.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/how-it-works/__next._tree.txt b/.next/server/app/how-it-works.segments/_tree.segment.rsc similarity index 87% rename from build/how-it-works/__next._tree.txt rename to .next/server/app/how-it-works.segments/_tree.segment.rsc index 46313f7..8a1e116 100644 --- a/build/how-it-works/__next._tree.txt +++ b/.next/server/app/how-it-works.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"how-it-works","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"how-it-works","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/how-it-works.segments/how-it-works.segment.rsc b/.next/server/app/how-it-works.segments/how-it-works.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/how-it-works.segments/how-it-works.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/how-it-works.segments/how-it-works/__PAGE__.segment.rsc b/.next/server/app/how-it-works.segments/how-it-works/__PAGE__.segment.rsc new file mode 100644 index 0000000..4c3c7fa --- /dev/null +++ b/.next/server/app/how-it-works.segments/how-it-works/__PAGE__.segment.rsc @@ -0,0 +1,7 @@ +1:"$Sreact.fragment" +2:I[74528,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"default"] +3:I[16948,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"default"] +4:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +5:"$Sreact.suspense" +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"how-it-works","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L2",null,{}],["$","$L3",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/133p65rq~827a.js","async":true}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} +6:null diff --git a/.next/server/app/how-it-works/page.js b/.next/server/app/how-it-works/page.js new file mode 100644 index 0000000..2fbb149 --- /dev/null +++ b/.next/server/app/how-it-works/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/how-it-works/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__07qac4.._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0uwehq6.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(86688) +module.exports=R.m(86688).exports diff --git a/.next/server/app/how-it-works/page.js.map b/.next/server/app/how-it-works/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/how-it-works/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/how-it-works/page.js.nft.json b/.next/server/app/how-it-works/page.js.nft.json new file mode 100644 index 0000000..186168d --- /dev/null +++ b/.next/server/app/how-it-works/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07qac4.._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_0zmlo4s._.js","../../chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0uwehq6.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/how-it-works/page/app-paths-manifest.json b/.next/server/app/how-it-works/page/app-paths-manifest.json new file mode 100644 index 0000000..c2ef9cb --- /dev/null +++ b/.next/server/app/how-it-works/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/how-it-works/page": "app/how-it-works/page.js" +} \ No newline at end of file diff --git a/.next/server/app/how-it-works/page/build-manifest.json b/.next/server/app/how-it-works/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/how-it-works/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/how-it-works/page/next-font-manifest.json b/.next/server/app/how-it-works/page/next-font-manifest.json new file mode 100644 index 0000000..5b23a71 --- /dev/null +++ b/.next/server/app/how-it-works/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/how-it-works/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/how-it-works/page/react-loadable-manifest.json b/.next/server/app/how-it-works/page/react-loadable-manifest.json new file mode 100644 index 0000000..174bf50 --- /dev/null +++ b/.next/server/app/how-it-works/page/react-loadable-manifest.json @@ -0,0 +1,12 @@ +{ + "88493": { + "id": 88493, + "files": [ + "static/chunks/0b561qo91.1jg.js", + "static/chunks/04vqjcwjasc-3.js", + "static/chunks/0_54tjq7o59~u.js", + "static/chunks/0o27ue53hohz_.js", + "static/chunks/0zozt9p9-3srt.css" + ] + } +} \ No newline at end of file diff --git a/.next/server/app/how-it-works/page/server-reference-manifest.json b/.next/server/app/how-it-works/page/server-reference-manifest.json new file mode 100644 index 0000000..63cd7ab --- /dev/null +++ b/.next/server/app/how-it-works/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/how-it-works/page": { + "moduleId": 1090, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/how-it-works/page_client-reference-manifest.js b/.next/server/app/how-it-works/page_client-reference-manifest.js new file mode 100644 index 0000000..aac5b5f --- /dev/null +++ b/.next/server/app/how-it-works/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/how-it-works/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/sections/HowItWorksHero.tsx ":{"id":74528,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"async":false},"[project]/src/components/sections/HowItWorksHero.tsx":{"id":74528,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"async":false},"[project]/src/modules/how-it-works-3d/Experience3DLoader.tsx ":{"id":16948,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"async":false},"[project]/src/modules/how-it-works-3d/Experience3DLoader.tsx":{"id":16948,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/133p65rq~827a.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"74528":{"*":{"id":690,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_0zmlo4s._.js"],"async":false}},"16948":{"*":{"id":27800,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_0zmlo4s._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"74528":{"*":{"id":96258,"name":"*","chunks":[],"async":false}},"16948":{"*":{"id":66059,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/how-it-works/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/how-it-works/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/133p65rq~827a.js"]}}; + diff --git a/build/_next/static/media/icon.14w3bhkxgz946.png b/.next/server/app/icon.png.body similarity index 100% rename from build/_next/static/media/icon.14w3bhkxgz946.png rename to .next/server/app/icon.png.body diff --git a/.next/server/app/icon.png.meta b/.next/server/app/icon.png.meta new file mode 100644 index 0000000..6287ebb --- /dev/null +++ b/.next/server/app/icon.png.meta @@ -0,0 +1 @@ +{"status":200,"headers":{"cache-control":"public, max-age=0, must-revalidate","content-type":"image/png","x-next-cache-tags":"_N_T_/layout,_N_T_/icon.png/layout,_N_T_/icon.png/route,_N_T_/icon.png"}} \ No newline at end of file diff --git a/.next/server/app/icon.png/route.js b/.next/server/app/icon.png/route.js new file mode 100644 index 0000000..75d9f2d --- /dev/null +++ b/.next/server/app/icon.png/route.js @@ -0,0 +1,6 @@ +var R=require("../../chunks/[turbopack]_runtime.js")("server/app/icon.png/route.js") +R.c("server/chunks/[root-of-the-server]__0nwnmaq._.js") +R.c("server/chunks/[root-of-the-server]__0j8-xkl._.js") +R.c("server/chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js") +R.m(72755) +module.exports=R.m(72755).exports diff --git a/.next/server/app/icon.png/route.js.map b/.next/server/app/icon.png/route.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/icon.png/route.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/icon.png/route.js.nft.json b/.next/server/app/icon.png/route.js.nft.json new file mode 100644 index 0000000..e9f59a5 --- /dev/null +++ b/.next/server/app/icon.png/route.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/[root-of-the-server]__0j8-xkl._.js","../../chunks/[root-of-the-server]__0nwnmaq._.js","../../chunks/[turbopack]_runtime.js","../../chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js"]} \ No newline at end of file diff --git a/.next/server/app/icon.png/route/app-paths-manifest.json b/.next/server/app/icon.png/route/app-paths-manifest.json new file mode 100644 index 0000000..425ba3b --- /dev/null +++ b/.next/server/app/icon.png/route/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/icon.png/route": "app/icon.png/route.js" +} \ No newline at end of file diff --git a/.next/server/app/icon.png/route/build-manifest.json b/.next/server/app/icon.png/route/build-manifest.json new file mode 100644 index 0000000..973d893 --- /dev/null +++ b/.next/server/app/icon.png/route/build-manifest.json @@ -0,0 +1,9 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [], + "lowPriorityFiles": [], + "rootMainFiles": [], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/build/index.html b/.next/server/app/index.html similarity index 55% rename from build/index.html rename to .next/server/app/index.html index ac161e8..7936935 100644 --- a/build/index.html +++ b/.next/server/app/index.html @@ -1,4 +1,4 @@ -Doormile — Delivering Trust. Beyond Boundaries

Doormile

0.0%
On-Time Delivery
0x Faster
Faster Response
0%
Cost Reduction
/ The Problem /

Fragmented Logistics is Broken

73%

of delays happen at handoffs

3x

higher risk of missed SLAs

2.5x

more time spent on coordination

28%

increase in operational costs
0.0%
On-Time Delivery
0x Faster
Faster Response
0%
Cost Reduction
/ The Problem /

Fragmented Logistics is Broken

73%

of delays happen at handoffs

3x

higher risk of missed SLAs

2.5x

more time spent on coordination

28%

increase in operational costs
Connected Logistics
/ Connected Logistics /

Smart logistics solutions we deliver for modern supply chains

Real-Time Visibility

See every shipment, every vehicle, every handoff—live. No blind spots.

Dynamic Route Adjustment

AI continuously optimizes routes based on traffic, weather, and real-world conditions.

Proactive Delay Prevention

Detect SLA risks hours before they become problems. Act, don't react.

Execution Intelligence

Learn from every delivery. Get smarter with every mile traveled.

/ Doormile Approach /


The Doormile Way

Smarter, Faster, Connected Logistics

We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,
every delivery is faster, reliable, and fully transparent.

Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution.

End-to-End Protection

End-to-end visibility ensures every shipment stays secure and on schedule.

Proactive delay prevention

Real-time monitoring helps prevent delays before they impact deliveries.

Single owner, single promise

One unified system manages the entire delivery process seamlessly.

Dynamic AI-driven adjustments

AI-powered routing adapts instantly to improve speed and efficiency.

Connected Logistics
/ Connected Logistics /

Smart logistics solutions we deliver for modern supply chains

Real-Time Visibility

See every shipment, every vehicle, every handoff—live. No blind spots.

Dynamic Route Adjustment

AI continuously optimizes routes based on traffic, weather, and real-world conditions.

Proactive Delay Prevention

Detect SLA risks hours before they become problems. Act, don't react.

Execution Intelligence

Learn from every delivery. Get smarter with every mile traveled.

/ Doormile Approach /


The Doormile Way

Smarter, Faster, Connected Logistics

We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,
every delivery is faster, reliable, and fully transparent.

Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution.

End-to-End Protection

End-to-end visibility ensures every shipment stays secure and on schedule.

Proactive delay prevention

Real-time monitoring helps prevent delays before they impact deliveries.

Single owner, single promise

One unified system manages the entire delivery process seamlessly.

Dynamic AI-driven adjustments

AI-powered routing adapts instantly to improve speed and efficiency.

EV Logistics

Cleaner miles, lower costs

/ EV-Native Design /

BUILT FOR ELECTRIC. NOT ADAPTED.

DoorMile electric delivery van
100%ELECTRIC FLEET
-40%COST / MILE
Battery-Aware Routing

Battery level, health, and degradation are first-class inputs to route optimization — not afterthoughts.

Charging Integration

Seamlessly integrate charging stops without compromising delivery windows or SLA commitments.

Energy-Optimized Paths

Factor in elevation, speed limits, payload weight, and live weather for maximum range efficiency.

Predictable Operations

EVs become predictable assets, not operational risks. Full visibility from depot to doorstep.

SLA Compliance0.0%
Distance Saved0%
Fewer Vehicles0%
Dispatch Latency0ms

EV Logistics

Cleaner miles, lower costs

/ EV-Native Design /

BUILT FOR ELECTRIC. NOT ADAPTED.

DoorMile electric delivery van
100%ELECTRIC FLEET
-40%COST / MILE
Battery-Aware Routing

Battery level, health, and degradation are first-class inputs to route optimization — not afterthoughts.

Charging Integration

Seamlessly integrate charging stops without compromising delivery windows or SLA commitments.

Energy-Optimized Paths

Factor in elevation, speed limits, payload weight, and live weather for maximum range efficiency.

Predictable Operations

EVs become predictable assets, not operational risks. Full visibility from depot to doorstep.

SLA Compliance0.0%
Distance Saved0%
Fewer Vehicles0%
Dispatch Latency0ms
/ Industry Solutions /

Smart solutions built exclusively for your industry

/ Industry Solutions /

Smart solutions built exclusively for your industry

\ No newline at end of file + \ No newline at end of file diff --git a/.next/server/app/index.meta b/.next/server/app/index.meta new file mode 100644 index 0000000..897af29 --- /dev/null +++ b/.next/server/app/index.meta @@ -0,0 +1,14 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/page,_N_T_/,_N_T_/index" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/__PAGE__", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/index.txt b/.next/server/app/index.rsc similarity index 68% rename from build/index.txt rename to .next/server/app/index.rsc index 0e1bfd0..5916e0a 100644 --- a/build/index.txt +++ b/.next/server/app/index.rsc @@ -1,19 +1,19 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[97677,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -d:I[58140,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -e:I[36854,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -19:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[97677,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +d:I[58140,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +e:I[36854,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,14 +22,14 @@ e:I[36854,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/chunks/0v290txaarww5.css","style"] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"home","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"61","className":"elementor elementor-61","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","div",null,{"className":"elementor-element elementor-element-b62c0b3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"b62c0b3","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-592e9e8 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"592e9e8","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-ab41b28 elementor-widget elementor-widget-logico_marquee","data-id":"ab41b28","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_marquee.default","children":"$Lf"}]}]}],"$L10","$L11","$L12","$L13"]}]}]}]}],["$L14","$L15","$L16"],"$L17"]}],{},null,false,null]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1d:I[32693,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -1e:I[24911,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -1f:I[14224,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -25:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"home","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"61","className":"elementor elementor-61","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","div",null,{"className":"elementor-element elementor-element-b62c0b3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"b62c0b3","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-592e9e8 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"592e9e8","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-ab41b28 elementor-widget elementor-widget-logico_marquee","data-id":"ab41b28","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_marquee.default","children":"$Lf"}]}]}],"$L10","$L11","$L12","$L13"]}]}]}]}],["$L14","$L15","$L16"],"$L17"]}],{},null,false,null]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1d:I[32693,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +1e:I[24911,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +1f:I[14224,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +25:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 26:"$Sreact.suspense" -28:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -2a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +28:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +2a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] f:["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-ticker-wrapper","style":{"overflow":"hidden","position":"relative","width":"100%"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n @keyframes cssMarquee {\n 0% { transform: translate3d(0, 0, 0); }\n 100% { transform: translate3d(-33.33%, 0, 0); }\n }\n .marquee-container-css {\n display: flex;\n width: max-content;\n animation: cssMarquee 25s linear infinite;\n }\n .marquee-container-css:hover {\n animation-play-state: paused;\n }\n "}}],["$","div",null,{"className":"marquee-container-css","children":[["$","div","0",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","1",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","2",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","3",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","4",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","5",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","6",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","7",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],"$L1b"]}],"$L1c"]}]]}]}] 10:["$","$L1d",null,{}] 11:["$","$L1e",null,{}] @@ -105,14 +105,14 @@ f:["$","div",null,{"className":"elementor-widget-container","children":["$","div } 13:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$20"}}],["$","div",null,{"className":"elementor-element elementor-element-3b4a7cc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"3b4a7cc","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-d602f7f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d602f7f","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-f64bd88 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"f64bd88","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-5ed2dbb e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5ed2dbb","data-element_type":"container","data-e-type":"container","children":["$L21","$L22"]}],"$L23"]}],"$L24"]}]}]}]] 14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0v290txaarww5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -15:["$","script","script-0",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true,"nonce":"$undefined"}] -16:["$","script","script-1",{"src":"/_next/static/chunks/0~5amg8el7~oa.js","async":true,"nonce":"$undefined"}] +15:["$","script","script-0",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true,"nonce":"$undefined"}] +16:["$","script","script-1",{"src":"/_next/static/chunks/0nunuemu9ietr.js","async":true,"nonce":"$undefined"}] 17:["$","$L25",null,{"children":["$","$26",null,{"name":"Next.MetadataOutlet","children":"$@27"}]}] 18:["$","$1","h",{"children":[null,["$","$L28",null,{"children":"$L29"}],["$","div",null,{"hidden":true,"children":["$","$L2a",null,{"children":["$","$26",null,{"name":"Next.Metadata","children":"$L2b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -2d:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"ScrollReveal"] -2e:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],""] -2f:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"Image"] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +2d:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"ScrollReveal"] +2e:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],""] +2f:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"Image"] 1b:["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}] 1c:["$","div","8",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}] 2c:T65e, @@ -153,7 +153,7 @@ f:["$","div",null,{"className":"elementor-widget-container","children":["$","div } } 21:["$","div",null,{"className":"elementor-element elementor-element-c8162c4 elementor-widget elementor-widget-logico_heading industry-section-label","data-id":"c8162c4","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2c"}}],["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Industry Solutions /"}]}]]}] -22:["$","div",null,{"className":"elementor-element elementor-element-1487241 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"1487241","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","style":{"margin":"30px 0 0 0"},"children":["$","h3",null,{"className":"logico-title","style":{"fontSize":"clamp(28px, 3.5vw, 48px)","lineHeight":"1.1","fontWeight":800,"textTransform":"uppercase","maxWidth":"900px"},"children":["$","$L2d",null,{"delay":0.05,"duration":0.8,"yOffset":25,"children":["Smart solutions built exclusively for your ",["$","span",null,{"style":{"color":"#c01227"},"children":"industry"}]]}]}]}]}] +22:["$","div",null,{"className":"elementor-element elementor-element-1487241 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"1487241","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","style":{"margin":"30px 0 0 0"},"children":["$","h2",null,{"className":"logico-title","style":{"fontSize":"clamp(28px, 3.5vw, 48px)","lineHeight":"1.1","fontWeight":800,"textTransform":"uppercase","maxWidth":"900px"},"children":["$","$L2d",null,{"delay":0.05,"duration":0.8,"yOffset":25,"children":["Smart solutions built exclusively for your ",["$","span",null,{"style":{"color":"#c01227"},"children":"industry"}]]}]}]}]}] 23:["$","div",null,{"className":"elementor-element elementor-element-4af73cb e-con-full elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"4af73cb","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-46f2f7d elementor-widget__width-initial elementor-widget elementor-widget-logico_button","data-id":"46f2f7d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container"}]}]}] 24:["$","div",null,{"className":"elementor-element elementor-element-6829276 e-grid e-con-full cut-corner-no sticky-container-off e-con e-child","data-id":"6829276","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"industry-solutions-grid","children":[["$","$L2e",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L2f",null,{"src":"/images/tab-pic-1.webp","alt":"FMCG Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"FMCG"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"High volume, tight margins, zero tolerance for stockouts."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Unpredictable demand spikes"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"Fresh product expiry constraints"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Multi-stop route complexity"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"AI-driven demand-responsive routing"}],["$","li",null,{"className":"industry-card-list-item bullet-5","children":"Freshness-aware delivery prioritization"}],["$","li",null,{"className":"industry-card-list-item bullet-6","children":"Dynamic batch optimization"}]]}]]}]]}],["$","div",null,{"className":"industry-card-hover-bottom","children":[["$","div",null,{"className":"industry-card-hover-icon","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"3","strokeLinecap":"round","strokeLinejoin":"round","style":{"width":"20px","height":"20px"},"children":[["$","line",null,{"x1":"7","y1":"17","x2":"17","y2":"7"}],["$","polyline",null,{"points":"7 7 17 7 17 17"}]]}]}],["$","h4",null,{"className":"industry-card-hover-title","children":"FMCG"}]]}]]}]]}],["$","$L2e",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L2f",null,{"src":"/images/tab-pic-2.webp","alt":"Pharma Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"Pharmaceutical"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"Temperature-sensitive, compliance-critical, life-saving."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Cold chain integrity requirements"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"Regulatory compliance tracking"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Critical delivery time windows"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"Real-time temperature monitoring"}],"$L30","$L31"]}]]}]]}],"$L32"]}]]}],"$L33"]}]}] 30:["$","li",null,{"className":"industry-card-list-item bullet-5","children":"Chain-of-custody documentation"}] @@ -161,6 +161,6 @@ f:["$","div",null,{"className":"elementor-widget-container","children":["$","div 32:["$","div",null,{"className":"industry-card-hover-bottom","children":[["$","div",null,{"className":"industry-card-hover-icon","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"3","strokeLinecap":"round","strokeLinejoin":"round","style":{"width":"20px","height":"20px"},"children":[["$","line",null,{"x1":"7","y1":"17","x2":"17","y2":"7"}],["$","polyline",null,{"points":"7 7 17 7 17 17"}]]}]}],["$","h4",null,{"className":"industry-card-hover-title","children":"Pharmaceutical"}]]}] 33:["$","$L2e",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L2f",null,{"src":"/images/tab-pic-3.webp","alt":"Enterprise Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"Enterprise & B2B"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"High-value shipments with complex delivery requirements."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Appointment scheduling coordination"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"White-glove delivery standards"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Multi-location routing complexity"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"Automated appointment optimization"}],["$","li",null,{"className":"industry-card-list-item bullet-5","children":"Service level guarantee tracking"}],["$","li",null,{"className":"industry-card-list-item bullet-6","children":"Enterprise integration APIs"}]]}]]}]]}],["$","div",null,{"className":"industry-card-hover-bottom","children":[["$","div",null,{"className":"industry-card-hover-icon","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"3","strokeLinecap":"round","strokeLinejoin":"round","style":{"width":"20px","height":"20px"},"children":[["$","line",null,{"x1":"7","y1":"17","x2":"17","y2":"7"}],["$","polyline",null,{"points":"7 7 17 7 17 17"}]]}]}],["$","h4",null,{"className":"industry-card-hover-title","children":"Enterprise & B2B"}]]}]]}]]}] 29:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -34:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +34:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 27:null 2b:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile helps logistics companies track every mile with MileTruth™ AI. Real-time SLA protection and connected miles visibility."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L34","7",{}]] diff --git a/build/__next.__PAGE__.txt b/.next/server/app/index.segments/__PAGE__.segment.rsc similarity index 86% rename from build/__next.__PAGE__.txt rename to .next/server/app/index.segments/__PAGE__.segment.rsc index 38d834e..fa2f45e 100644 --- a/build/__next.__PAGE__.txt +++ b/.next/server/app/index.segments/__PAGE__.segment.rsc @@ -1,17 +1,17 @@ 1:"$Sreact.fragment" -2:I[97677,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -3:I[58140,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -4:I[36854,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -12:I[32693,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -13:I[24911,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -14:I[14224,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -1a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +2:I[97677,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +3:I[58140,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +4:I[36854,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +12:I[32693,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +13:I[24911,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +14:I[14224,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +1a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 1b:"$Sreact.suspense" -1e:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"ScrollReveal"] -1f:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],""] -20:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"Image"] +1e:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"ScrollReveal"] +1f:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],""] +20:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"Image"] :HL["/_next/static/chunks/0v290txaarww5.css","style"] -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"home","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"61","className":"elementor elementor-61","children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],["$","div",null,{"className":"elementor-element elementor-element-b62c0b3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"b62c0b3","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-592e9e8 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"592e9e8","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-ab41b28 elementor-widget elementor-widget-logico_marquee","data-id":"ab41b28","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_marquee.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-ticker-wrapper","style":{"overflow":"hidden","position":"relative","width":"100%"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n @keyframes cssMarquee {\n 0% { transform: translate3d(0, 0, 0); }\n 100% { transform: translate3d(-33.33%, 0, 0); }\n }\n .marquee-container-css {\n display: flex;\n width: max-content;\n animation: cssMarquee 25s linear infinite;\n }\n .marquee-container-css:hover {\n animation-play-state: paused;\n }\n "}}],["$","div",null,{"className":"marquee-container-css","children":[["$","div","0",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","1",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","2",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","3",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","4",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":"$L5"}]]}],"$L6","$L7","$L8","$L9"]}]]}]}]}]}]}],"$La","$Lb","$Lc","$Ld"]}]}]}]}],["$Le","$Lf","$L10"],"$L11"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"home","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"61","className":"elementor elementor-61","children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],["$","div",null,{"className":"elementor-element elementor-element-b62c0b3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"b62c0b3","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-592e9e8 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"592e9e8","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-ab41b28 elementor-widget elementor-widget-logico_marquee","data-id":"ab41b28","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_marquee.default","children":["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-ticker-wrapper","style":{"overflow":"hidden","position":"relative","width":"100%"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n @keyframes cssMarquee {\n 0% { transform: translate3d(0, 0, 0); }\n 100% { transform: translate3d(-33.33%, 0, 0); }\n }\n .marquee-container-css {\n display: flex;\n width: max-content;\n animation: cssMarquee 25s linear infinite;\n }\n .marquee-container-css:hover {\n animation-play-state: paused;\n }\n "}}],["$","div",null,{"className":"marquee-container-css","children":[["$","div","0",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","1",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","2",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","3",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","4",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":"$L5"}]]}],"$L6","$L7","$L8","$L9"]}]]}]}]}]}]}],"$La","$Lb","$Lc","$Ld"]}]}]}]}],["$Le","$Lf","$L10"],"$L11"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 5:["$","i",null,{"className":"fontello icon-half-logo"}] 6:["$","div","5",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}] 7:["$","div","6",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}] @@ -91,8 +91,8 @@ c:["$","$L14",null,{}] } d:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$15"}}],["$","div",null,{"className":"elementor-element elementor-element-3b4a7cc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"3b4a7cc","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-d602f7f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d602f7f","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-f64bd88 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"f64bd88","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-5ed2dbb e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5ed2dbb","data-element_type":"container","data-e-type":"container","children":["$L16","$L17"]}],"$L18"]}],"$L19"]}]}]}]] e:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0v290txaarww5.css","precedence":"next"}] -f:["$","script","script-0",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true}] -10:["$","script","script-1",{"src":"/_next/static/chunks/0~5amg8el7~oa.js","async":true}] +f:["$","script","script-0",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true}] +10:["$","script","script-1",{"src":"/_next/static/chunks/0nunuemu9ietr.js","async":true}] 11:["$","$L1a",null,{"children":["$","$1b",null,{"name":"Next.MetadataOutlet","children":"$@1c"}]}] 1d:T65e, /* Minimal section label — matches the "/ Doormile Approach /" pattern */ @@ -132,7 +132,7 @@ f:["$","script","script-0",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async } } 16:["$","div",null,{"className":"elementor-element elementor-element-c8162c4 elementor-widget elementor-widget-logico_heading industry-section-label","data-id":"c8162c4","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$1d"}}],["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Industry Solutions /"}]}]]}] -17:["$","div",null,{"className":"elementor-element elementor-element-1487241 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"1487241","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","style":{"margin":"30px 0 0 0"},"children":["$","h3",null,{"className":"logico-title","style":{"fontSize":"clamp(28px, 3.5vw, 48px)","lineHeight":"1.1","fontWeight":800,"textTransform":"uppercase","maxWidth":"900px"},"children":["$","$L1e",null,{"delay":0.05,"duration":0.8,"yOffset":25,"children":["Smart solutions built exclusively for your ",["$","span",null,{"style":{"color":"#c01227"},"children":"industry"}]]}]}]}]}] +17:["$","div",null,{"className":"elementor-element elementor-element-1487241 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"1487241","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","style":{"margin":"30px 0 0 0"},"children":["$","h2",null,{"className":"logico-title","style":{"fontSize":"clamp(28px, 3.5vw, 48px)","lineHeight":"1.1","fontWeight":800,"textTransform":"uppercase","maxWidth":"900px"},"children":["$","$L1e",null,{"delay":0.05,"duration":0.8,"yOffset":25,"children":["Smart solutions built exclusively for your ",["$","span",null,{"style":{"color":"#c01227"},"children":"industry"}]]}]}]}]}] 18:["$","div",null,{"className":"elementor-element elementor-element-4af73cb e-con-full elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"4af73cb","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-46f2f7d elementor-widget__width-initial elementor-widget elementor-widget-logico_button","data-id":"46f2f7d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container"}]}]}] 19:["$","div",null,{"className":"elementor-element elementor-element-6829276 e-grid e-con-full cut-corner-no sticky-container-off e-con e-child","data-id":"6829276","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"industry-solutions-grid","children":[["$","$L1f",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L20",null,{"src":"/images/tab-pic-1.webp","alt":"FMCG Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"FMCG"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"High volume, tight margins, zero tolerance for stockouts."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Unpredictable demand spikes"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"Fresh product expiry constraints"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Multi-stop route complexity"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"AI-driven demand-responsive routing"}],["$","li",null,{"className":"industry-card-list-item bullet-5","children":"Freshness-aware delivery prioritization"}],["$","li",null,{"className":"industry-card-list-item bullet-6","children":"Dynamic batch optimization"}]]}]]}]]}],["$","div",null,{"className":"industry-card-hover-bottom","children":[["$","div",null,{"className":"industry-card-hover-icon","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"3","strokeLinecap":"round","strokeLinejoin":"round","style":{"width":"20px","height":"20px"},"children":[["$","line",null,{"x1":"7","y1":"17","x2":"17","y2":"7"}],["$","polyline",null,{"points":"7 7 17 7 17 17"}]]}]}],["$","h4",null,{"className":"industry-card-hover-title","children":"FMCG"}]]}]]}]]}],["$","$L1f",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L20",null,{"src":"/images/tab-pic-2.webp","alt":"Pharma Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"Pharmaceutical"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"Temperature-sensitive, compliance-critical, life-saving."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Cold chain integrity requirements"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"Regulatory compliance tracking"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Critical delivery time windows"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"Real-time temperature monitoring"}],"$L21","$L22"]}]]}]]}],"$L23"]}]]}],"$L24"]}]}] 1c:null diff --git a/build/__next._full.txt b/.next/server/app/index.segments/_full.segment.rsc similarity index 68% rename from build/__next._full.txt rename to .next/server/app/index.segments/_full.segment.rsc index 0e1bfd0..5916e0a 100644 --- a/build/__next._full.txt +++ b/.next/server/app/index.segments/_full.segment.rsc @@ -1,19 +1,19 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[97677,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -d:I[58140,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -e:I[36854,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -19:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[97677,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +d:I[58140,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +e:I[36854,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -22,14 +22,14 @@ e:I[36854,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/chunks/0v290txaarww5.css","style"] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"home","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"61","className":"elementor elementor-61","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","div",null,{"className":"elementor-element elementor-element-b62c0b3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"b62c0b3","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-592e9e8 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"592e9e8","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-ab41b28 elementor-widget elementor-widget-logico_marquee","data-id":"ab41b28","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_marquee.default","children":"$Lf"}]}]}],"$L10","$L11","$L12","$L13"]}]}]}]}],["$L14","$L15","$L16"],"$L17"]}],{},null,false,null]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -1d:I[32693,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -1e:I[24911,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -1f:I[14224,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"default"] -25:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"home","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"61","className":"elementor elementor-61","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","div",null,{"className":"elementor-element elementor-element-b62c0b3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"b62c0b3","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-592e9e8 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"592e9e8","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-ab41b28 elementor-widget elementor-widget-logico_marquee","data-id":"ab41b28","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_marquee.default","children":"$Lf"}]}]}],"$L10","$L11","$L12","$L13"]}]}]}]}],["$L14","$L15","$L16"],"$L17"]}],{},null,false,null]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1d:I[32693,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +1e:I[24911,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +1f:I[14224,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"default"] +25:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 26:"$Sreact.suspense" -28:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -2a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +28:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +2a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] f:["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-ticker-wrapper","style":{"overflow":"hidden","position":"relative","width":"100%"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"\n @keyframes cssMarquee {\n 0% { transform: translate3d(0, 0, 0); }\n 100% { transform: translate3d(-33.33%, 0, 0); }\n }\n .marquee-container-css {\n display: flex;\n width: max-content;\n animation: cssMarquee 25s linear infinite;\n }\n .marquee-container-css:hover {\n animation-play-state: paused;\n }\n "}}],["$","div",null,{"className":"marquee-container-css","children":[["$","div","0",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","1",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","2",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","3",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","4",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","5",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","6",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}],["$","div","7",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],"$L1b"]}],"$L1c"]}]]}]}] 10:["$","$L1d",null,{}] 11:["$","$L1e",null,{}] @@ -105,14 +105,14 @@ f:["$","div",null,{"className":"elementor-widget-container","children":["$","div } 13:[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$20"}}],["$","div",null,{"className":"elementor-element elementor-element-3b4a7cc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"3b4a7cc","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"e-con-inner","children":["$","div",null,{"className":"elementor-element elementor-element-d602f7f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d602f7f","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-f64bd88 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"f64bd88","data-element_type":"container","data-e-type":"container","children":[["$","div",null,{"className":"elementor-element elementor-element-5ed2dbb e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5ed2dbb","data-element_type":"container","data-e-type":"container","children":["$L21","$L22"]}],"$L23"]}],"$L24"]}]}]}]] 14:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0v290txaarww5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -15:["$","script","script-0",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true,"nonce":"$undefined"}] -16:["$","script","script-1",{"src":"/_next/static/chunks/0~5amg8el7~oa.js","async":true,"nonce":"$undefined"}] +15:["$","script","script-0",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true,"nonce":"$undefined"}] +16:["$","script","script-1",{"src":"/_next/static/chunks/0nunuemu9ietr.js","async":true,"nonce":"$undefined"}] 17:["$","$L25",null,{"children":["$","$26",null,{"name":"Next.MetadataOutlet","children":"$@27"}]}] 18:["$","$1","h",{"children":[null,["$","$L28",null,{"children":"$L29"}],["$","div",null,{"hidden":true,"children":["$","$L2a",null,{"children":["$","$26",null,{"name":"Next.Metadata","children":"$L2b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -2d:I[2018,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"ScrollReveal"] -2e:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],""] -2f:I[5500,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/07eq5is00w7sy.js","/_next/static/chunks/0~5amg8el7~oa.js"],"Image"] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +2d:I[2018,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"ScrollReveal"] +2e:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],""] +2f:I[5500,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"Image"] 1b:["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}] 1c:["$","div","8",{"className":"ticker","style":{"display":"inline-flex","alignItems":"center","whiteSpace":"nowrap","paddingRight":"50px"},"children":[["$","span",null,{"className":"ticker-text","children":["$","p",null,{"style":{"margin":0,"display":"inline"},"children":"30% More Cost Efficient"}]}],["$","span",null,{"className":"separator","style":{"marginLeft":"25px","display":"inline-flex","alignItems":"center"},"children":["$","i",null,{"className":"fontello icon-half-logo"}]}]]}] 2c:T65e, @@ -153,7 +153,7 @@ f:["$","div",null,{"className":"elementor-widget-container","children":["$","div } } 21:["$","div",null,{"className":"elementor-element elementor-element-c8162c4 elementor-widget elementor-widget-logico_heading industry-section-label","data-id":"c8162c4","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2c"}}],["$","div",null,{"className":"elementor-widget-container","children":["$","div",null,{"className":"logico-title","children":"/ Industry Solutions /"}]}]]}] -22:["$","div",null,{"className":"elementor-element elementor-element-1487241 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"1487241","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","style":{"margin":"30px 0 0 0"},"children":["$","h3",null,{"className":"logico-title","style":{"fontSize":"clamp(28px, 3.5vw, 48px)","lineHeight":"1.1","fontWeight":800,"textTransform":"uppercase","maxWidth":"900px"},"children":["$","$L2d",null,{"delay":0.05,"duration":0.8,"yOffset":25,"children":["Smart solutions built exclusively for your ",["$","span",null,{"style":{"color":"#c01227"},"children":"industry"}]]}]}]}]}] +22:["$","div",null,{"className":"elementor-element elementor-element-1487241 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"1487241","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default","children":["$","div",null,{"className":"elementor-widget-container","style":{"margin":"30px 0 0 0"},"children":["$","h2",null,{"className":"logico-title","style":{"fontSize":"clamp(28px, 3.5vw, 48px)","lineHeight":"1.1","fontWeight":800,"textTransform":"uppercase","maxWidth":"900px"},"children":["$","$L2d",null,{"delay":0.05,"duration":0.8,"yOffset":25,"children":["Smart solutions built exclusively for your ",["$","span",null,{"style":{"color":"#c01227"},"children":"industry"}]]}]}]}]}] 23:["$","div",null,{"className":"elementor-element elementor-element-4af73cb e-con-full elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"4af73cb","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"elementor-element elementor-element-46f2f7d elementor-widget__width-initial elementor-widget elementor-widget-logico_button","data-id":"46f2f7d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default","children":["$","div",null,{"className":"elementor-widget-container"}]}]}] 24:["$","div",null,{"className":"elementor-element elementor-element-6829276 e-grid e-con-full cut-corner-no sticky-container-off e-con e-child","data-id":"6829276","data-element_type":"container","data-e-type":"container","children":["$","div",null,{"className":"industry-solutions-grid","children":[["$","$L2e",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L2f",null,{"src":"/images/tab-pic-1.webp","alt":"FMCG Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"FMCG"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"High volume, tight margins, zero tolerance for stockouts."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Unpredictable demand spikes"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"Fresh product expiry constraints"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Multi-stop route complexity"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"AI-driven demand-responsive routing"}],["$","li",null,{"className":"industry-card-list-item bullet-5","children":"Freshness-aware delivery prioritization"}],["$","li",null,{"className":"industry-card-list-item bullet-6","children":"Dynamic batch optimization"}]]}]]}]]}],["$","div",null,{"className":"industry-card-hover-bottom","children":[["$","div",null,{"className":"industry-card-hover-icon","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"3","strokeLinecap":"round","strokeLinejoin":"round","style":{"width":"20px","height":"20px"},"children":[["$","line",null,{"x1":"7","y1":"17","x2":"17","y2":"7"}],["$","polyline",null,{"points":"7 7 17 7 17 17"}]]}]}],["$","h4",null,{"className":"industry-card-hover-title","children":"FMCG"}]]}]]}]]}],["$","$L2e",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L2f",null,{"src":"/images/tab-pic-2.webp","alt":"Pharma Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"Pharmaceutical"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"Temperature-sensitive, compliance-critical, life-saving."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Cold chain integrity requirements"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"Regulatory compliance tracking"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Critical delivery time windows"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"Real-time temperature monitoring"}],"$L30","$L31"]}]]}]]}],"$L32"]}]]}],"$L33"]}]}] 30:["$","li",null,{"className":"industry-card-list-item bullet-5","children":"Chain-of-custody documentation"}] @@ -161,6 +161,6 @@ f:["$","div",null,{"className":"elementor-widget-container","children":["$","div 32:["$","div",null,{"className":"industry-card-hover-bottom","children":[["$","div",null,{"className":"industry-card-hover-icon","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"3","strokeLinecap":"round","strokeLinejoin":"round","style":{"width":"20px","height":"20px"},"children":[["$","line",null,{"x1":"7","y1":"17","x2":"17","y2":"7"}],["$","polyline",null,{"points":"7 7 17 7 17 17"}]]}]}],["$","h4",null,{"className":"industry-card-hover-title","children":"Pharmaceutical"}]]}] 33:["$","$L2e",null,{"href":"/solutions","className":"industry-card-link","children":[["$","div",null,{"className":"industry-card-bg","children":["$","$L2f",null,{"src":"/images/tab-pic-3.webp","alt":"Enterprise Logistics","fill":true,"style":{"objectFit":"cover"},"sizes":"(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"}]}],["$","div",null,{"className":"industry-card-overlay"}],["$","div",null,{"className":"industry-card-hover-bg"}],["$","div",null,{"className":"industry-card-default-content","children":["$","h4",null,{"className":"industry-card-default-title","children":"Enterprise & B2B"}]}],["$","div",null,{"className":"industry-card-hover-content","children":[["$","div",null,{"className":"industry-card-hover-top","children":[["$","p",null,{"className":"industry-card-description","children":"High-value shipments with complex delivery requirements."}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Challenges"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-1","children":"Appointment scheduling coordination"}],["$","li",null,{"className":"industry-card-list-item bullet-2","children":"White-glove delivery standards"}],["$","li",null,{"className":"industry-card-list-item bullet-3","children":"Multi-location routing complexity"}]]}]]}],["$","div",null,{"children":[["$","h5",null,{"className":"industry-card-section-title","children":"Doormile Solutions"}],["$","ul",null,{"className":"industry-card-list","children":[["$","li",null,{"className":"industry-card-list-item bullet-4","children":"Automated appointment optimization"}],["$","li",null,{"className":"industry-card-list-item bullet-5","children":"Service level guarantee tracking"}],["$","li",null,{"className":"industry-card-list-item bullet-6","children":"Enterprise integration APIs"}]]}]]}]]}],["$","div",null,{"className":"industry-card-hover-bottom","children":[["$","div",null,{"className":"industry-card-hover-icon","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"3","strokeLinecap":"round","strokeLinejoin":"round","style":{"width":"20px","height":"20px"},"children":[["$","line",null,{"x1":"7","y1":"17","x2":"17","y2":"7"}],["$","polyline",null,{"points":"7 7 17 7 17 17"}]]}]}],["$","h4",null,{"className":"industry-card-hover-title","children":"Enterprise & B2B"}]]}]]}]]}] 29:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -34:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +34:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 27:null 2b:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile helps logistics companies track every mile with MileTruth™ AI. Real-time SLA protection and connected miles visibility."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L34","7",{}]] diff --git a/build/__next._head.txt b/.next/server/app/index.segments/_head.segment.rsc similarity index 59% rename from build/__next._head.txt rename to .next/server/app/index.segments/_head.segment.rsc index bbd69c1..6b3c23e 100644 --- a/build/__next._head.txt +++ b/.next/server/app/index.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile helps logistics companies track every mile with MileTruth™ AI. Real-time SLA protection and connected miles visibility."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile helps logistics companies track every mile with MileTruth™ AI. Real-time SLA protection and connected miles visibility."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/index.segments/_index.segment.rsc b/.next/server/app/index.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/index.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/__next._tree.txt b/.next/server/app/index.segments/_tree.segment.rsc similarity index 88% rename from build/__next._tree.txt rename to .next/server/app/index.segments/_tree.segment.rsc index d754cc3..af02727 100644 --- a/build/__next._tree.txt +++ b/.next/server/app/index.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -7,4 +7,4 @@ :HL["/_next/static/chunks/0v290txaarww5.css","style"] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/miletruth.html b/.next/server/app/miletruth.html similarity index 56% rename from build/miletruth.html rename to .next/server/app/miletruth.html index b0dd5d8..bcbde48 100644 --- a/build/miletruth.html +++ b/.next/server/app/miletruth.html @@ -1,4 +1,4 @@ -MileTruth – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

OPTIMIZE EVERY MILE

Cut travel distance, reduce operating cost, and improve fleet productivity across every route.

/ Performance /

SMARTER ROUTES. LOWER COSTS.

\ No newline at end of file +
\ No newline at end of file diff --git a/.next/server/app/miletruth.meta b/.next/server/app/miletruth.meta new file mode 100644 index 0000000..782e29c --- /dev/null +++ b/.next/server/app/miletruth.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/miletruth/layout,_N_T_/miletruth/page,_N_T_/miletruth" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/miletruth/__PAGE__", + "/miletruth", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/.next/server/app/miletruth.rsc b/.next/server/app/miletruth.rsc new file mode 100644 index 0000000..3765dce --- /dev/null +++ b/.next/server/app/miletruth.rsc @@ -0,0 +1,36 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[58829,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +d:I[76756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +e:I[38730,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +f:I[27698,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +10:I[33016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +12:"$Sreact.suspense" +15:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +17:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","miletruth"],"q":"","i":false,"f":[[["",{"children":["miletruth",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"miletruth","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","$Lf",null,{}],["$","$L10",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/043-lr8ahr5l4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true,"nonce":"$undefined"}]],["$","$L11",null,{"children":["$","$12",null,{"name":"Next.MetadataOutlet","children":"$@13"}]}]]}],{},null,false,null]},null,false,"$@14"]},null,false,null],["$","$1","h",{"children":[null,["$","$L15",null,{"children":"$L16"}],["$","div",null,{"hidden":true,"children":["$","$L17",null,{"children":["$","$12",null,{"name":"Next.Metadata","children":"$L18"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$19",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1a:[] +14:"$W1a" +16:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +1b:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +13:null +18:[["$","title","0",{"children":"MileTruth – Doormile"}],["$","meta","1",{"name":"description","content":"Optimizes every stage of the delivery journey for maximum efficiency. Explore the only AI built exclusively for logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1b","7",{}]] diff --git a/.next/server/app/miletruth.segments/_full.segment.rsc b/.next/server/app/miletruth.segments/_full.segment.rsc new file mode 100644 index 0000000..3765dce --- /dev/null +++ b/.next/server/app/miletruth.segments/_full.segment.rsc @@ -0,0 +1,36 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +c:I[58829,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +d:I[76756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +e:I[38730,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +f:I[27698,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +10:I[33016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +11:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +12:"$Sreact.suspense" +15:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +17:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"P":null,"c":["","miletruth"],"q":"","i":false,"f":[[["",{"children":["miletruth",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"miletruth","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","$Lf",null,{}],["$","$L10",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/043-lr8ahr5l4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true,"nonce":"$undefined"}]],["$","$L11",null,{"children":["$","$12",null,{"name":"Next.MetadataOutlet","children":"$@13"}]}]]}],{},null,false,null]},null,false,"$@14"]},null,false,null],["$","$1","h",{"children":[null,["$","$L15",null,{"children":"$L16"}],["$","div",null,{"hidden":true,"children":["$","$L17",null,{"children":["$","$12",null,{"name":"Next.Metadata","children":"$L18"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$19",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +1a:[] +14:"$W1a" +16:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +1b:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +13:null +18:[["$","title","0",{"children":"MileTruth – Doormile"}],["$","meta","1",{"name":"description","content":"Optimizes every stage of the delivery journey for maximum efficiency. Explore the only AI built exclusively for logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1b","7",{}]] diff --git a/build/miletruth/__next._head.txt b/.next/server/app/miletruth.segments/_head.segment.rsc similarity index 60% rename from build/miletruth/__next._head.txt rename to .next/server/app/miletruth.segments/_head.segment.rsc index ddffea7..fb93e07 100644 --- a/build/miletruth/__next._head.txt +++ b/.next/server/app/miletruth.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"MileTruth – Doormile"}],["$","meta","1",{"name":"description","content":"Optimizes every stage of the delivery journey for maximum efficiency. Explore the only AI built exclusively for logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"MileTruth – Doormile"}],["$","meta","1",{"name":"description","content":"Optimizes every stage of the delivery journey for maximum efficiency. Explore the only AI built exclusively for logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/miletruth.segments/_index.segment.rsc b/.next/server/app/miletruth.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/miletruth.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/miletruth/__next._tree.txt b/.next/server/app/miletruth.segments/_tree.segment.rsc similarity index 87% rename from build/miletruth/__next._tree.txt rename to .next/server/app/miletruth.segments/_tree.segment.rsc index 6e1310c..6f5f910 100644 --- a/build/miletruth/__next._tree.txt +++ b/.next/server/app/miletruth.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"miletruth","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"miletruth","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/miletruth.segments/miletruth.segment.rsc b/.next/server/app/miletruth.segments/miletruth.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/miletruth.segments/miletruth.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/miletruth.segments/miletruth/__PAGE__.segment.rsc b/.next/server/app/miletruth.segments/miletruth/__PAGE__.segment.rsc new file mode 100644 index 0000000..f90b005 --- /dev/null +++ b/.next/server/app/miletruth.segments/miletruth/__PAGE__.segment.rsc @@ -0,0 +1,10 @@ +1:"$Sreact.fragment" +2:I[58829,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +3:I[76756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +4:I[38730,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +5:I[27698,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +6:I[33016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"default"] +7:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +8:"$Sreact.suspense" +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"miletruth","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}],["$","$L6",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/043-lr8ahr5l4.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0vi1igu-zxb_c.js","async":true}]],["$","$L7",null,{"children":["$","$8",null,{"name":"Next.MetadataOutlet","children":"$@9"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} +9:null diff --git a/.next/server/app/miletruth/page.js b/.next/server/app/miletruth/page.js new file mode 100644 index 0000000..3a0f7dd --- /dev/null +++ b/.next/server/app/miletruth/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/miletruth/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0~j.xbf._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_086_46y.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(62456) +module.exports=R.m(62456).exports diff --git a/.next/server/app/miletruth/page.js.map b/.next/server/app/miletruth/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/miletruth/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/miletruth/page.js.nft.json b/.next/server/app/miletruth/page.js.nft.json new file mode 100644 index 0000000..944e320 --- /dev/null +++ b/.next/server/app/miletruth/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[root-of-the-server]__0~j.xbf._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_01obfw9._.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_086_46y.js","../../chunks/ssr/src_components_sections_0xa9u10._.js","../../chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/miletruth/page/app-paths-manifest.json b/.next/server/app/miletruth/page/app-paths-manifest.json new file mode 100644 index 0000000..2e8bf94 --- /dev/null +++ b/.next/server/app/miletruth/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/miletruth/page": "app/miletruth/page.js" +} \ No newline at end of file diff --git a/.next/server/app/miletruth/page/build-manifest.json b/.next/server/app/miletruth/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/miletruth/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/miletruth/page/next-font-manifest.json b/.next/server/app/miletruth/page/next-font-manifest.json new file mode 100644 index 0000000..ea7d5a7 --- /dev/null +++ b/.next/server/app/miletruth/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/miletruth/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/miletruth/page/react-loadable-manifest.json b/.next/server/app/miletruth/page/react-loadable-manifest.json new file mode 100644 index 0000000..72714ac --- /dev/null +++ b/.next/server/app/miletruth/page/react-loadable-manifest.json @@ -0,0 +1,26 @@ +{ + "29539": { + "id": 29539, + "files": [ + "static/chunks/0ckcqe5on274m.js", + "static/chunks/04uib0xi8_zof.js", + "static/chunks/0e.~6vil2~4uy.js" + ] + }, + "39184": { + "id": 39184, + "files": [ + "static/chunks/15p8tu-h65hwr.js", + "static/chunks/0-kxqnmnjtk7l.js", + "static/chunks/04uib0xi8_zof.js", + "static/chunks/0e.~6vil2~4uy.js" + ] + }, + "55819": { + "id": 55819, + "files": [ + "static/chunks/0yqyiard9rg2e.js", + "static/chunks/0d09zs~9jbu5_.js" + ] + } +} \ No newline at end of file diff --git a/.next/server/app/miletruth/page/server-reference-manifest.json b/.next/server/app/miletruth/page/server-reference-manifest.json new file mode 100644 index 0000000..b42cb95 --- /dev/null +++ b/.next/server/app/miletruth/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/miletruth/page": { + "moduleId": 59753, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/miletruth/page_client-reference-manifest.js b/.next/server/app/miletruth/page_client-reference-manifest.js new file mode 100644 index 0000000..4421641 --- /dev/null +++ b/.next/server/app/miletruth/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/miletruth/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/sections/MileTruthHero.tsx ":{"id":58829,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/MileTruthHero.tsx":{"id":58829,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow1.tsx ":{"id":76756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow1.tsx":{"id":76756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow2.tsx ":{"id":38730,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow2.tsx":{"id":38730,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow4.tsx ":{"id":27698,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow4.tsx":{"id":27698,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow3Lazy.tsx ":{"id":33016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false},"[project]/src/components/sections/Workflow3Lazy.tsx":{"id":33016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/043-lr8ahr5l4.js","/_next/static/chunks/0vi1igu-zxb_c.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"58829":{"*":{"id":53521,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_01obfw9._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_0xa9u10._.js"],"async":false}},"76756":{"*":{"id":67095,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_01obfw9._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_0xa9u10._.js"],"async":false}},"38730":{"*":{"id":752,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_01obfw9._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_0xa9u10._.js"],"async":false}},"27698":{"*":{"id":76551,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_01obfw9._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_0xa9u10._.js"],"async":false}},"33016":{"*":{"id":41033,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/_01obfw9._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_0xa9u10._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"58829":{"*":{"id":92655,"name":"*","chunks":[],"async":false}},"76756":{"*":{"id":67020,"name":"*","chunks":[],"async":false}},"38730":{"*":{"id":64531,"name":"*","chunks":[],"async":false}},"27698":{"*":{"id":42311,"name":"*","chunks":[],"async":false}},"33016":{"*":{"id":39925,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/miletruth/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/miletruth/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/043-lr8ahr5l4.js","static/chunks/0vi1igu-zxb_c.js"]}}; + diff --git a/.next/server/app/page.js b/.next/server/app/page.js new file mode 100644 index 0000000..3d3c46c --- /dev/null +++ b/.next/server/app/page.js @@ -0,0 +1,17 @@ +var R=require("../chunks/ssr/[turbopack]_runtime.js")("server/app/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0eood4z._.js") +R.c("server/chunks/ssr/_0sw0r2k._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0nqzqrg.js") +R.c("server/chunks/ssr/src_04lygsm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_page_actions_10si78q.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(83584) +module.exports=R.m(83584).exports diff --git a/.next/server/app/page.js.map b/.next/server/app/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/page.js.nft.json b/.next/server/app/page.js.nft.json new file mode 100644 index 0000000..a7efa25 --- /dev/null +++ b/.next/server/app/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../node_modules/@swc/helpers/package.json","../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../node_modules/next/dist/client/components/app-router-headers.js","../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../node_modules/next/dist/client/lib/console.js","../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../node_modules/next/dist/compiled/source-map/package.json","../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../node_modules/next/dist/compiled/ws/index.js","../../../node_modules/next/dist/compiled/ws/package.json","../../../node_modules/next/dist/lib/client-and-server-references.js","../../../node_modules/next/dist/lib/constants.js","../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../node_modules/next/dist/lib/interop-default.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/lib/picocolors.js","../../../node_modules/next/dist/lib/scheduler.js","../../../node_modules/next/dist/lib/semver-noop.js","../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../node_modules/next/dist/server/lib/lru-cache.js","../../../node_modules/next/dist/server/lib/parse-stack.js","../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../node_modules/next/dist/server/lib/source-maps.js","../../../node_modules/next/dist/server/lib/trace/constants.js","../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../node_modules/next/dist/server/load-manifest.external.js","../../../node_modules/next/dist/server/node-environment-baseline.js","../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../node_modules/next/dist/server/node-environment.js","../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../node_modules/next/dist/server/patch-error-inspect.js","../../../node_modules/next/dist/server/require-hook.js","../../../node_modules/next/dist/server/response-cache/types.js","../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../node_modules/next/package.json","../../../node_modules/react/cjs/react.development.js","../../../node_modules/react/cjs/react.production.js","../../../node_modules/react/index.js","../../../node_modules/react/package.json","../chunks/ssr/[root-of-the-server]__055c-aq._.js","../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../chunks/ssr/[root-of-the-server]__0eood4z._.js","../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../chunks/ssr/[turbopack]_runtime.js","../chunks/ssr/_0p0sfo8._.js","../chunks/ssr/_0sw0r2k._.js","../chunks/ssr/_next-internal_server_app_page_actions_10si78q.js","../chunks/ssr/node_modules_0oplp32._.js","../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0nqzqrg.js","../chunks/ssr/src_04lygsm._.js","../chunks/ssr/src_components_sections_071-yiu._.js","../chunks/ssr/src_components_sections_133w8q1._.js","../chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/page/app-paths-manifest.json b/.next/server/app/page/app-paths-manifest.json new file mode 100644 index 0000000..e234c2e --- /dev/null +++ b/.next/server/app/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/page": "app/page.js" +} \ No newline at end of file diff --git a/.next/server/app/page/build-manifest.json b/.next/server/app/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/page/next-font-manifest.json b/.next/server/app/page/next-font-manifest.json new file mode 100644 index 0000000..6190fd8 --- /dev/null +++ b/.next/server/app/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/page/react-loadable-manifest.json b/.next/server/app/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/page/server-reference-manifest.json b/.next/server/app/page/server-reference-manifest.json new file mode 100644 index 0000000..e80662d --- /dev/null +++ b/.next/server/app/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/page": { + "moduleId": 71970, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/page_client-reference-manifest.js b/.next/server/app/page_client-reference-manifest.js new file mode 100644 index 0000000..159d5ff --- /dev/null +++ b/.next/server/app/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/sections/IndexHero.tsx ":{"id":97677,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/IndexHero.tsx":{"id":97677,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/StatsBar.tsx ":{"id":58140,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/StatsBar.tsx":{"id":58140,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/TheProblem.tsx ":{"id":36854,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/TheProblem.tsx":{"id":36854,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/ConnectedLogistics.tsx ":{"id":32693,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/ConnectedLogistics.tsx":{"id":32693,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/TheDoormileWay.tsx ":{"id":24911,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/TheDoormileWay.tsx":{"id":24911,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/EVSection.tsx ":{"id":14224,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/components/sections/EVSection.tsx":{"id":14224,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":5500,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/animations/Reveal.tsx ":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false},"[project]/src/animations/Reveal.tsx":{"id":2018,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/0vi1igu-zxb_c.js","/_next/static/chunks/0nunuemu9ietr.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"97677":{"*":{"id":52191,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"58140":{"*":{"id":9730,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"36854":{"*":{"id":54609,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"32693":{"*":{"id":82226,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"24911":{"*":{"id":67736,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"14224":{"*":{"id":61358,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"5500":{"*":{"id":67161,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}},"2018":{"*":{"id":36002,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_133w8q1._.js","server/chunks/ssr/src_components_sections_EVSection_tsx_13keyb.._.js","server/chunks/ssr/src_components_sections_071-yiu._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"97677":{"*":{"id":1860,"name":"*","chunks":[],"async":false}},"58140":{"*":{"id":47240,"name":"*","chunks":[],"async":false}},"36854":{"*":{"id":54320,"name":"*","chunks":[],"async":false}},"32693":{"*":{"id":18673,"name":"*","chunks":[],"async":false}},"24911":{"*":{"id":16205,"name":"*","chunks":[],"async":false}},"14224":{"*":{"id":59005,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}},"5500":{"*":{"id":43489,"name":"*","chunks":[],"async":false}},"2018":{"*":{"id":9386,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false},{"path":"static/chunks/0v290txaarww5.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/0vi1igu-zxb_c.js","static/chunks/0nunuemu9ietr.js"]}}; + diff --git a/.next/server/app/privacy-policy.html b/.next/server/app/privacy-policy.html new file mode 100644 index 0000000..4878d47 --- /dev/null +++ b/.next/server/app/privacy-policy.html @@ -0,0 +1,853 @@ +Privacy Policy – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file diff --git a/.next/server/app/privacy-policy.meta b/.next/server/app/privacy-policy.meta new file mode 100644 index 0000000..36dd77b --- /dev/null +++ b/.next/server/app/privacy-policy.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/privacy-policy/layout,_N_T_/privacy-policy/page,_N_T_/privacy-policy" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/privacy-policy/__PAGE__", + "/privacy-policy", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/privacy-policy/__next._full.txt b/.next/server/app/privacy-policy.rsc similarity index 64% rename from build/privacy-policy/__next._full.txt rename to .next/server/app/privacy-policy.rsc index 9b7d566..6ea1d27 100644 --- a/build/privacy-policy/__next._full.txt +++ b/.next/server/app/privacy-policy.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -19:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -18,12 +18,12 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","privacy-policy"],"q":"","i":false,"f":[[["",{"children":["privacy-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Privacy Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Information We Collect",{"children":["$","a",null,{"href":"#information-we-collect","children":"Information We Collect"}]}],["$","li","How We Use Your Information",{"children":["$","a",null,{"href":"#how-we-use-your-information","children":"How We Use Your Information"}]}],"$Lc","$Ld","$Le","$Lf","$L10","$L11","$L12","$L13"]}]}]]}]}],"$L14"]}],"$L15"]}]}]}]}],null,"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -20:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["","privacy-policy"],"q":"","i":false,"f":[[["",{"children":["privacy-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Privacy Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Information We Collect",{"children":["$","a",null,{"href":"#information-we-collect","children":"Information We Collect"}]}],["$","li","How We Use Your Information",{"children":["$","a",null,{"href":"#how-we-use-your-information","children":"How We Use Your Information"}]}],["$","li","Information Sharing",{"children":"$Lc"}],"$Ld","$Le","$Lf","$L10","$L11","$L12","$L13"]}]}]]}]}],"$L14"]}],"$L15"]}]}]}]}],null,"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +20:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 21:"$Sreact.suspense" -24:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -26:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","li","Information Sharing",{"children":["$","a",null,{"href":"#information-sharing","children":"Information Sharing"}]}] +24:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +26:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","a",null,{"href":"#information-sharing","children":"Information Sharing"}] d:["$","li","Data Security",{"children":["$","a",null,{"href":"#data-security","children":"Data Security"}]}] e:["$","li","Data Retention",{"children":["$","a",null,{"href":"#data-retention","children":"Data Retention"}]}] f:["$","li","Cookies and Tracking Technologies",{"children":["$","a",null,{"href":"#cookies-and-tracking-technologies","children":"Cookies and Tracking Technologies"}]}] @@ -210,13 +210,13 @@ f:["$","li","Cookies and Tracking Technologies",{"children":["$","a",null,{"href 23:[] 17:"$W23" 18:["$","$1","h",{"children":[null,["$","$L24",null,{"children":"$L25"}],["$","div",null,{"hidden":true,"children":["$","$L26",null,{"children":["$","$21",null,{"name":"Next.Metadata","children":"$L27"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -28:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +28:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] 1b:["$","section","Your Rights",{"id":"your-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Your Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"Depending on applicable laws, you may have the right to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Access your personal information"}],["$","li","1",{"children":"Request correction of inaccurate data"}],["$","li","2",{"children":"Request deletion of personal information"}],["$","li","3",{"children":"Restrict or object to certain processing activities"}],["$","li","4",{"children":"Withdraw consent where applicable"}]]}]]]}] 1c:["$","section","Third-Party Links",{"id":"third-party-links","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Third-Party Links"}],[["$","p","0",{"className":"dm-legal__p","children":"Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of external websites."}]]]}] 1d:["$","section","Policy Updates",{"id":"policy-updates","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Policy Updates"}],[["$","p","0",{"className":"dm-legal__p","children":"We may update this Privacy Policy periodically. Any changes will be posted on this page with a revised effective date."}]]]}] 1e:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["For privacy-related questions or requests, please contact us through our ",["$","$L28",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] 25:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -29:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +29:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 22:null 27:[["$","title","0",{"children":"Privacy Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile collects, uses, stores, and protects your information when you visit our website, interact with our services, or communicate with us."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L29","7",{}]] diff --git a/build/privacy-policy.txt b/.next/server/app/privacy-policy.segments/_full.segment.rsc similarity index 64% rename from build/privacy-policy.txt rename to .next/server/app/privacy-policy.segments/_full.segment.rsc index 9b7d566..6ea1d27 100644 --- a/build/privacy-policy.txt +++ b/.next/server/app/privacy-policy.segments/_full.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -19:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -18,12 +18,12 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","privacy-policy"],"q":"","i":false,"f":[[["",{"children":["privacy-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Privacy Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Information We Collect",{"children":["$","a",null,{"href":"#information-we-collect","children":"Information We Collect"}]}],["$","li","How We Use Your Information",{"children":["$","a",null,{"href":"#how-we-use-your-information","children":"How We Use Your Information"}]}],"$Lc","$Ld","$Le","$Lf","$L10","$L11","$L12","$L13"]}]}]]}]}],"$L14"]}],"$L15"]}]}]}]}],null,"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -20:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +0:{"P":null,"c":["","privacy-policy"],"q":"","i":false,"f":[[["",{"children":["privacy-policy",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Privacy Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Information We Collect",{"children":["$","a",null,{"href":"#information-we-collect","children":"Information We Collect"}]}],["$","li","How We Use Your Information",{"children":["$","a",null,{"href":"#how-we-use-your-information","children":"How We Use Your Information"}]}],["$","li","Information Sharing",{"children":"$Lc"}],"$Ld","$Le","$Lf","$L10","$L11","$L12","$L13"]}]}]]}]}],"$L14"]}],"$L15"]}]}]}]}],null,"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +20:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 21:"$Sreact.suspense" -24:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -26:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","li","Information Sharing",{"children":["$","a",null,{"href":"#information-sharing","children":"Information Sharing"}]}] +24:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +26:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","a",null,{"href":"#information-sharing","children":"Information Sharing"}] d:["$","li","Data Security",{"children":["$","a",null,{"href":"#data-security","children":"Data Security"}]}] e:["$","li","Data Retention",{"children":["$","a",null,{"href":"#data-retention","children":"Data Retention"}]}] f:["$","li","Cookies and Tracking Technologies",{"children":["$","a",null,{"href":"#cookies-and-tracking-technologies","children":"Cookies and Tracking Technologies"}]}] @@ -210,13 +210,13 @@ f:["$","li","Cookies and Tracking Technologies",{"children":["$","a",null,{"href 23:[] 17:"$W23" 18:["$","$1","h",{"children":[null,["$","$L24",null,{"children":"$L25"}],["$","div",null,{"hidden":true,"children":["$","$L26",null,{"children":["$","$21",null,{"name":"Next.Metadata","children":"$L27"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -28:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +28:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] 1b:["$","section","Your Rights",{"id":"your-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Your Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"Depending on applicable laws, you may have the right to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Access your personal information"}],["$","li","1",{"children":"Request correction of inaccurate data"}],["$","li","2",{"children":"Request deletion of personal information"}],["$","li","3",{"children":"Restrict or object to certain processing activities"}],["$","li","4",{"children":"Withdraw consent where applicable"}]]}]]]}] 1c:["$","section","Third-Party Links",{"id":"third-party-links","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Third-Party Links"}],[["$","p","0",{"className":"dm-legal__p","children":"Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of external websites."}]]]}] 1d:["$","section","Policy Updates",{"id":"policy-updates","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Policy Updates"}],[["$","p","0",{"className":"dm-legal__p","children":"We may update this Privacy Policy periodically. Any changes will be posted on this page with a revised effective date."}]]]}] 1e:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["For privacy-related questions or requests, please contact us through our ",["$","$L28",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] 25:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -29:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] +29:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] 22:null 27:[["$","title","0",{"children":"Privacy Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile collects, uses, stores, and protects your information when you visit our website, interact with our services, or communicate with us."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L29","7",{}]] diff --git a/build/privacy-policy/__next._head.txt b/.next/server/app/privacy-policy.segments/_head.segment.rsc similarity index 59% rename from build/privacy-policy/__next._head.txt rename to .next/server/app/privacy-policy.segments/_head.segment.rsc index aaeece0..feb5f86 100644 --- a/build/privacy-policy/__next._head.txt +++ b/.next/server/app/privacy-policy.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Privacy Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile collects, uses, stores, and protects your information when you visit our website, interact with our services, or communicate with us."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Privacy Policy – Doormile"}],["$","meta","1",{"name":"description","content":"How Doormile collects, uses, stores, and protects your information when you visit our website, interact with our services, or communicate with us."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/privacy-policy.segments/_index.segment.rsc b/.next/server/app/privacy-policy.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/privacy-policy.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/privacy-policy/__next._tree.txt b/.next/server/app/privacy-policy.segments/_tree.segment.rsc similarity index 87% rename from build/privacy-policy/__next._tree.txt rename to .next/server/app/privacy-policy.segments/_tree.segment.rsc index a270c52..9bb9687 100644 --- a/build/privacy-policy/__next._tree.txt +++ b/.next/server/app/privacy-policy.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"privacy-policy","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"privacy-policy","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/privacy-policy.segments/privacy-policy.segment.rsc b/.next/server/app/privacy-policy.segments/privacy-policy.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/privacy-policy.segments/privacy-policy.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/privacy-policy/__next.privacy-policy.__PAGE__.txt b/.next/server/app/privacy-policy.segments/privacy-policy/__PAGE__.segment.rsc similarity index 96% rename from build/privacy-policy/__next.privacy-policy.__PAGE__.txt rename to .next/server/app/privacy-policy.segments/privacy-policy/__PAGE__.segment.rsc index 81725ca..e365721 100644 --- a/build/privacy-policy/__next.privacy-policy.__PAGE__.txt +++ b/.next/server/app/privacy-policy.segments/privacy-policy/__PAGE__.segment.rsc @@ -1,8 +1,8 @@ 1:"$Sreact.fragment" -c:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +c:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +e:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] f:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Privacy Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Information We Collect",{"children":["$","a",null,{"href":"#information-we-collect","children":"Information We Collect"}]}],["$","li","How We Use Your Information",{"children":["$","a",null,{"href":"#how-we-use-your-information","children":"How We Use Your Information"}]}],["$","li","Information Sharing",{"children":["$","a",null,{"href":"#information-sharing","children":"Information Sharing"}]}],["$","li","Data Security",{"children":["$","a",null,{"href":"#data-security","children":"Data Security"}]}],["$","li","Data Retention",{"children":["$","a",null,{"href":"#data-retention","children":"Data Retention"}]}],["$","li","Cookies and Tracking Technologies",{"children":["$","a",null,{"href":"#cookies-and-tracking-technologies","children":"Cookies and Tracking Technologies"}]}],["$","li","Your Rights",{"children":["$","a",null,{"href":"#your-rights","children":"Your Rights"}]}],["$","li","Third-Party Links",{"children":["$","a",null,{"href":"#third-party-links","children":"Third-Party Links"}]}],["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}],["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}]]}]}]]}]}],["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Privacy Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"At Doormile, we are committed to protecting your privacy and maintaining the security of the information you share with us. This Privacy Policy outlines how we collect, use, store, and protect your information when you visit our website, interact with our services, or communicate with us."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Information We Collect",{"id":"information-we-collect","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Information We Collect"}],[["$","p","0",{"className":"dm-legal__p","children":"We may collect the following information:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Full name"}],["$","li","1",{"children":"Email address"}],["$","li","2",{"children":"Phone number"}],["$","li","3",{"children":"Company name"}],["$","li","4",{"children":"Job title"}],["$","li","5",{"children":"Information submitted through contact forms"}],["$","li","6",{"children":"Service inquiry details"}],["$","li","7",{"children":"Website usage data and analytics"}],["$","li","8",{"children":"Browser, device, and IP information"}]]}]]]}],["$","section","How We Use Your Information",{"id":"how-we-use-your-information","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"How We Use Your Information"}],[["$","p","0",{"className":"dm-legal__p","children":"We use your information to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Respond to inquiries and support requests"}],["$","li","1",{"children":"Provide information about our services"}],["$","li","2",{"children":"Improve website performance and user experience"}],["$","li","3",{"children":"Analyze usage trends and platform effectiveness"}],["$","li","4",{"children":"Maintain security and prevent unauthorized access"}],["$","li","5",{"children":"Communicate service updates and business information"}],["$","li","6",{"children":"Comply with legal and regulatory requirements"}]]}]]]}],"$L2","$L3","$L4","$L5","$L6","$L7","$L8","$L9"]}]]}]]}],"$La"]}]}]}]}],null,"$Lb"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Privacy Policy","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Information We Collect",{"children":["$","a",null,{"href":"#information-we-collect","children":"Information We Collect"}]}],["$","li","How We Use Your Information",{"children":["$","a",null,{"href":"#how-we-use-your-information","children":"How We Use Your Information"}]}],["$","li","Information Sharing",{"children":["$","a",null,{"href":"#information-sharing","children":"Information Sharing"}]}],["$","li","Data Security",{"children":["$","a",null,{"href":"#data-security","children":"Data Security"}]}],["$","li","Data Retention",{"children":["$","a",null,{"href":"#data-retention","children":"Data Retention"}]}],["$","li","Cookies and Tracking Technologies",{"children":["$","a",null,{"href":"#cookies-and-tracking-technologies","children":"Cookies and Tracking Technologies"}]}],["$","li","Your Rights",{"children":["$","a",null,{"href":"#your-rights","children":"Your Rights"}]}],["$","li","Third-Party Links",{"children":["$","a",null,{"href":"#third-party-links","children":"Third-Party Links"}]}],["$","li","Policy Updates",{"children":["$","a",null,{"href":"#policy-updates","children":"Policy Updates"}]}],["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}]]}]}]]}]}],["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Privacy Policy"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"At Doormile, we are committed to protecting your privacy and maintaining the security of the information you share with us. This Privacy Policy outlines how we collect, use, store, and protect your information when you visit our website, interact with our services, or communicate with us."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Information We Collect",{"id":"information-we-collect","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Information We Collect"}],[["$","p","0",{"className":"dm-legal__p","children":"We may collect the following information:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Full name"}],["$","li","1",{"children":"Email address"}],["$","li","2",{"children":"Phone number"}],["$","li","3",{"children":"Company name"}],["$","li","4",{"children":"Job title"}],["$","li","5",{"children":"Information submitted through contact forms"}],["$","li","6",{"children":"Service inquiry details"}],["$","li","7",{"children":"Website usage data and analytics"}],["$","li","8",{"children":"Browser, device, and IP information"}]]}]]]}],["$","section","How We Use Your Information",{"id":"how-we-use-your-information","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"How We Use Your Information"}],[["$","p","0",{"className":"dm-legal__p","children":"We use your information to:"}],["$","ul","1",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Respond to inquiries and support requests"}],["$","li","1",{"children":"Provide information about our services"}],["$","li","2",{"children":"Improve website performance and user experience"}],["$","li","3",{"children":"Analyze usage trends and platform effectiveness"}],["$","li","4",{"children":"Maintain security and prevent unauthorized access"}],["$","li","5",{"children":"Communicate service updates and business information"}],["$","li","6",{"children":"Comply with legal and regulatory requirements"}]]}]]]}],"$L2","$L3","$L4","$L5","$L6","$L7","$L8","$L9"]}]]}]]}],"$La"]}]}]}]}],null,"$Lb"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 2:["$","section","Information Sharing",{"id":"information-sharing","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Information Sharing"}],[["$","p","0",{"className":"dm-legal__p","children":"Doormile does not sell, rent, or trade personal information. Information may be shared with trusted service providers that assist with website hosting, analytics, communications, and operational support, subject to appropriate confidentiality and security obligations."}]]]}] 3:["$","section","Data Security",{"id":"data-security","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Data Security"}],[["$","p","0",{"className":"dm-legal__p","children":"We implement industry-standard administrative, technical, and organizational safeguards designed to protect personal information from unauthorized access, disclosure, alteration, or destruction."}]]]}] 4:["$","section","Data Retention",{"id":"data-retention","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Data Retention"}],[["$","p","0",{"className":"dm-legal__p","children":"We retain information only for as long as necessary to fulfill the purposes described in this policy, comply with legal obligations, resolve disputes, and enforce agreements."}]]]}] diff --git a/.next/server/app/privacy-policy/page.js b/.next/server/app/privacy-policy/page.js new file mode 100644 index 0000000..c7a97d6 --- /dev/null +++ b/.next/server/app/privacy-policy/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/privacy-policy/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__08t.da-._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0op~13w.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(88548) +module.exports=R.m(88548).exports diff --git a/.next/server/app/privacy-policy/page.js.map b/.next/server/app/privacy-policy/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/privacy-policy/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/privacy-policy/page.js.nft.json b/.next/server/app/privacy-policy/page.js.nft.json new file mode 100644 index 0000000..39c2204 --- /dev/null +++ b/.next/server/app/privacy-policy/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__08t.da-._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0op~13w.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/privacy-policy/page/app-paths-manifest.json b/.next/server/app/privacy-policy/page/app-paths-manifest.json new file mode 100644 index 0000000..9636c82 --- /dev/null +++ b/.next/server/app/privacy-policy/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/privacy-policy/page": "app/privacy-policy/page.js" +} \ No newline at end of file diff --git a/.next/server/app/privacy-policy/page/build-manifest.json b/.next/server/app/privacy-policy/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/privacy-policy/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/privacy-policy/page/next-font-manifest.json b/.next/server/app/privacy-policy/page/next-font-manifest.json new file mode 100644 index 0000000..0cbc8f4 --- /dev/null +++ b/.next/server/app/privacy-policy/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/privacy-policy/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/privacy-policy/page/react-loadable-manifest.json b/.next/server/app/privacy-policy/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/privacy-policy/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/privacy-policy/page/server-reference-manifest.json b/.next/server/app/privacy-policy/page/server-reference-manifest.json new file mode 100644 index 0000000..5d70789 --- /dev/null +++ b/.next/server/app/privacy-policy/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/privacy-policy/page": { + "moduleId": 84290, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/privacy-policy/page_client-reference-manifest.js b/.next/server/app/privacy-policy/page_client-reference-manifest.js new file mode 100644 index 0000000..74deba1 --- /dev/null +++ b/.next/server/app/privacy-policy/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/privacy-policy/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/privacy-policy/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/privacy-policy/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"]}}; + diff --git a/.next/server/app/sitemap.xml.body b/.next/server/app/sitemap.xml.body new file mode 100644 index 0000000..1f72d1f --- /dev/null +++ b/.next/server/app/sitemap.xml.body @@ -0,0 +1,123 @@ + + + +https://doormile.com +2026-07-13 +weekly +1 + + +https://doormile.com/about +2026-07-13 +weekly +0.8 + + +https://doormile.com/contact +2026-07-13 +weekly +0.8 + + +https://doormile.com/blog +2026-07-13 +weekly +0.8 + + +https://doormile.com/air-freight +2026-07-13 +weekly +0.8 + + +https://doormile.com/first-mile-delivery +2026-07-13 +weekly +0.8 + + +https://doormile.com/mid-mile-delivery +2026-07-13 +weekly +0.8 + + +https://doormile.com/last-mile-delivery +2026-07-13 +weekly +0.8 + + +https://doormile.com/ev-logistics +2026-07-13 +weekly +0.8 + + +https://doormile.com/strategy-optimization +2026-07-13 +weekly +0.8 + + +https://doormile.com/how-it-works +2026-07-13 +weekly +0.8 + + +https://doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery +2025-10-02 +monthly +0.6 + + +https://doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub +2025-09-18 +monthly +0.6 + + +https://doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch +2025-09-05 +monthly +0.6 + + +https://doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets +2025-08-21 +monthly +0.6 + + +https://doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing +2025-08-07 +monthly +0.6 + + +https://doormile.com/blog/fleet-reduction-without-compromising-delivery-volume +2025-07-24 +monthly +0.6 + + +https://doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics +2025-07-10 +monthly +0.6 + + +https://doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale +2025-06-26 +monthly +0.6 + + +https://doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation +2025-06-12 +monthly +0.6 + + diff --git a/.next/server/app/sitemap.xml.meta b/.next/server/app/sitemap.xml.meta new file mode 100644 index 0000000..b5cf59b --- /dev/null +++ b/.next/server/app/sitemap.xml.meta @@ -0,0 +1 @@ +{"status":200,"headers":{"cache-control":"public, max-age=0, must-revalidate","content-type":"application/xml","x-next-cache-tags":"_N_T_/layout,_N_T_/sitemap.xml/layout,_N_T_/sitemap.xml/route,_N_T_/sitemap.xml"}} \ No newline at end of file diff --git a/.next/server/app/sitemap.xml/route.js b/.next/server/app/sitemap.xml/route.js new file mode 100644 index 0000000..f3b39ea --- /dev/null +++ b/.next/server/app/sitemap.xml/route.js @@ -0,0 +1,7 @@ +var R=require("../../chunks/[turbopack]_runtime.js")("server/app/sitemap.xml/route.js") +R.c("server/chunks/[externals]_next_dist_0arv.vj._.js") +R.c("server/chunks/[root-of-the-server]__0j8-xkl._.js") +R.c("server/chunks/node_modules_next_dist_1343e2k._.js") +R.c("server/chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js") +R.m(83345) +module.exports=R.m(83345).exports diff --git a/.next/server/app/sitemap.xml/route.js.map b/.next/server/app/sitemap.xml/route.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/sitemap.xml/route.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/sitemap.xml/route.js.nft.json b/.next/server/app/sitemap.xml/route.js.nft.json new file mode 100644 index 0000000..9833003 --- /dev/null +++ b/.next/server/app/sitemap.xml/route.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/[externals]_next_dist_0arv.vj._.js","../../chunks/[root-of-the-server]__0j8-xkl._.js","../../chunks/[turbopack]_runtime.js","../../chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js","../../chunks/node_modules_next_dist_1343e2k._.js","./route_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/sitemap.xml/route/app-paths-manifest.json b/.next/server/app/sitemap.xml/route/app-paths-manifest.json new file mode 100644 index 0000000..d774e95 --- /dev/null +++ b/.next/server/app/sitemap.xml/route/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/sitemap.xml/route": "app/sitemap.xml/route.js" +} \ No newline at end of file diff --git a/.next/server/app/sitemap.xml/route/build-manifest.json b/.next/server/app/sitemap.xml/route/build-manifest.json new file mode 100644 index 0000000..973d893 --- /dev/null +++ b/.next/server/app/sitemap.xml/route/build-manifest.json @@ -0,0 +1,9 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [], + "lowPriorityFiles": [], + "rootMainFiles": [], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/sitemap.xml/route/server-reference-manifest.json b/.next/server/app/sitemap.xml/route/server-reference-manifest.json new file mode 100644 index 0000000..27a92af --- /dev/null +++ b/.next/server/app/sitemap.xml/route/server-reference-manifest.json @@ -0,0 +1,4 @@ +{ + "node": {}, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/sitemap.xml/route_client-reference-manifest.js b/.next/server/app/sitemap.xml/route_client-reference-manifest.js new file mode 100644 index 0000000..a16057b --- /dev/null +++ b/.next/server/app/sitemap.xml/route_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/sitemap.xml/route"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{},"ssrModuleMapping":{},"edgeSSRModuleMapping":{},"rscModuleMapping":{},"edgeRscModuleMapping":{},"entryCSSFiles":{},"entryJSFiles":{}}; + diff --git a/build/solutions.html b/.next/server/app/solutions.html similarity index 57% rename from build/solutions.html rename to .next/server/app/solutions.html index 45a27cb..b90b2b9 100644 --- a/build/solutions.html +++ b/.next/server/app/solutions.html @@ -1,4 +1,4 @@ -Solutions – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file +
\ No newline at end of file diff --git a/.next/server/app/solutions.meta b/.next/server/app/solutions.meta new file mode 100644 index 0000000..dfb9fc9 --- /dev/null +++ b/.next/server/app/solutions.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/solutions/layout,_N_T_/solutions/page,_N_T_/solutions" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/solutions/__PAGE__", + "/solutions", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/.next/server/app/solutions.rsc b/.next/server/app/solutions.rsc new file mode 100644 index 0000000..609039d --- /dev/null +++ b/.next/server/app/solutions.rsc @@ -0,0 +1,76 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +12:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +c:T5ca, + /* Fix "Why Businesses Choose Doormile" section — anchor absolute image left, push content right */ + .elementor-element.elementor-element-ead59d3 { + position: relative; + overflow: hidden; + } + .elementor-element.elementor-element-f35119c { + position: absolute !important; + left: -2% !important; + top: 50% !important; + transform: translateY(-50%) !important; + width: 48% !important; + max-width: 520px !important; + opacity: 0.18 !important; + z-index: 0 !important; + pointer-events: none; + } + .elementor-element.elementor-element-56ecbb3 { + position: relative !important; + z-index: 1 !important; + width: 55% !important; + max-width: 55% !important; + margin-left: auto !important; + margin-right: 4% !important; + } + .elementor-element.elementor-element-56ecbb3 .e-con-inner { + max-width: 100% !important; + padding-left: 0 !important; + padding-right: 0 !important; + } + @media (max-width: 1020px) { + .elementor-element.elementor-element-f35119c { display: none !important; } + .elementor-element.elementor-element-56ecbb3 { + width: 100% !important; + max-width: 100% !important; + margin: 0 !important; + } + } + 0:{"P":null,"c":["","solutions"],"q":"","i":false,"f":[[["",{"children":["solutions",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],["$Le"],"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +14:I[89937,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"default"] +15:I[40086,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"default"] +16:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +17:"$Sreact.suspense" +1a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +d:["$","div",null,{"id":"solutions","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L14",null,{}],["$","$L15",null,{}]]}]}]}]}] +e:["$","script","script-0",{"src":"/_next/static/chunks/17iyy9kp8dsf4.js","async":true,"nonce":"$undefined"}] +f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}] +19:[] +10:"$W19" +11:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +1e:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +18:null +1d:[["$","title","0",{"children":"Solutions – Doormile"}],["$","meta","1",{"name":"description","content":"Discover how Doormile's connected logistics platform serves diverse industries (FMCG, Pharma, and Enterprise) with tailored solutions."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1e","7",{}]] diff --git a/.next/server/app/solutions.segments/_full.segment.rsc b/.next/server/app/solutions.segments/_full.segment.rsc new file mode 100644 index 0000000..609039d --- /dev/null +++ b/.next/server/app/solutions.segments/_full.segment.rsc @@ -0,0 +1,76 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +12:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +c:T5ca, + /* Fix "Why Businesses Choose Doormile" section — anchor absolute image left, push content right */ + .elementor-element.elementor-element-ead59d3 { + position: relative; + overflow: hidden; + } + .elementor-element.elementor-element-f35119c { + position: absolute !important; + left: -2% !important; + top: 50% !important; + transform: translateY(-50%) !important; + width: 48% !important; + max-width: 520px !important; + opacity: 0.18 !important; + z-index: 0 !important; + pointer-events: none; + } + .elementor-element.elementor-element-56ecbb3 { + position: relative !important; + z-index: 1 !important; + width: 55% !important; + max-width: 55% !important; + margin-left: auto !important; + margin-right: 4% !important; + } + .elementor-element.elementor-element-56ecbb3 .e-con-inner { + max-width: 100% !important; + padding-left: 0 !important; + padding-right: 0 !important; + } + @media (max-width: 1020px) { + .elementor-element.elementor-element-f35119c { display: none !important; } + .elementor-element.elementor-element-56ecbb3 { + width: 100% !important; + max-width: 100% !important; + margin: 0 !important; + } + } + 0:{"P":null,"c":["","solutions"],"q":"","i":false,"f":[[["",{"children":["solutions",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],["$Le"],"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +14:I[89937,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"default"] +15:I[40086,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"default"] +16:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +17:"$Sreact.suspense" +1a:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +1c:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +d:["$","div",null,{"id":"solutions","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L14",null,{}],["$","$L15",null,{}]]}]}]}]}] +e:["$","script","script-0",{"src":"/_next/static/chunks/17iyy9kp8dsf4.js","async":true,"nonce":"$undefined"}] +f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}] +19:[] +10:"$W19" +11:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +1e:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +18:null +1d:[["$","title","0",{"children":"Solutions – Doormile"}],["$","meta","1",{"name":"description","content":"Discover how Doormile's connected logistics platform serves diverse industries (FMCG, Pharma, and Enterprise) with tailored solutions."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1e","7",{}]] diff --git a/build/solutions/__next._head.txt b/.next/server/app/solutions.segments/_head.segment.rsc similarity index 60% rename from build/solutions/__next._head.txt rename to .next/server/app/solutions.segments/_head.segment.rsc index 6616402..af2baee 100644 --- a/build/solutions/__next._head.txt +++ b/.next/server/app/solutions.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Solutions – Doormile"}],["$","meta","1",{"name":"description","content":"Discover how Doormile's connected logistics platform serves diverse industries (FMCG, Pharma, and Enterprise) with tailored solutions."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Solutions – Doormile"}],["$","meta","1",{"name":"description","content":"Discover how Doormile's connected logistics platform serves diverse industries (FMCG, Pharma, and Enterprise) with tailored solutions."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/solutions.segments/_index.segment.rsc b/.next/server/app/solutions.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/solutions.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/solutions/__next._tree.txt b/.next/server/app/solutions.segments/_tree.segment.rsc similarity index 87% rename from build/solutions/__next._tree.txt rename to .next/server/app/solutions.segments/_tree.segment.rsc index 44986c1..bc1ad13 100644 --- a/build/solutions/__next._tree.txt +++ b/.next/server/app/solutions.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"solutions","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"solutions","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/solutions.segments/solutions.segment.rsc b/.next/server/app/solutions.segments/solutions.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/solutions.segments/solutions.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/solutions/__next.solutions.__PAGE__.txt b/.next/server/app/solutions.segments/solutions/__PAGE__.segment.rsc similarity index 72% rename from build/solutions/__next.solutions.__PAGE__.txt rename to .next/server/app/solutions.segments/solutions/__PAGE__.segment.rsc index fdc02e4..842ba3f 100644 --- a/build/solutions/__next.solutions.__PAGE__.txt +++ b/.next/server/app/solutions.segments/solutions/__PAGE__.segment.rsc @@ -1,7 +1,7 @@ 1:"$Sreact.fragment" -3:I[89937,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yd8cyhuvvzan.js"],"default"] -4:I[40086,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yd8cyhuvvzan.js"],"default"] -5:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +3:I[89937,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"default"] +4:I[40086,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"default"] +5:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] 6:"$Sreact.suspense" 2:T5ca, /* Fix "Why Businesses Choose Doormile" section — anchor absolute image left, push content right */ @@ -41,5 +41,5 @@ margin: 0 !important; } } - 0:{"rsc":["$","$1","c",{"children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],["$","div",null,{"id":"solutions","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L3",null,{}],["$","$L4",null,{}]]}]}]}]}]],[["$","script","script-0",{"src":"/_next/static/chunks/0yd8cyhuvvzan.js","async":true}]],["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} + 0:{"rsc":["$","$1","c",{"children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$2"}}],["$","div",null,{"id":"solutions","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L3",null,{}],["$","$L4",null,{}]]}]}]}]}]],[["$","script","script-0",{"src":"/_next/static/chunks/17iyy9kp8dsf4.js","async":true}]],["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 7:null diff --git a/.next/server/app/solutions/page.js b/.next/server/app/solutions/page.js new file mode 100644 index 0000000..a9dee62 --- /dev/null +++ b/.next/server/app/solutions/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/solutions/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0vver6v._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_110uwud.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(9547) +module.exports=R.m(9547).exports diff --git a/.next/server/app/solutions/page.js.map b/.next/server/app/solutions/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/solutions/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/solutions/page.js.nft.json b/.next/server/app/solutions/page.js.nft.json new file mode 100644 index 0000000..15a27ad --- /dev/null +++ b/.next/server/app/solutions/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[root-of-the-server]__0vver6v._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_110uwud.js","../../chunks/ssr/src_components_sections_06v94o_._.js","../../chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/solutions/page/app-paths-manifest.json b/.next/server/app/solutions/page/app-paths-manifest.json new file mode 100644 index 0000000..f98eaae --- /dev/null +++ b/.next/server/app/solutions/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/solutions/page": "app/solutions/page.js" +} \ No newline at end of file diff --git a/.next/server/app/solutions/page/build-manifest.json b/.next/server/app/solutions/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/solutions/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/solutions/page/next-font-manifest.json b/.next/server/app/solutions/page/next-font-manifest.json new file mode 100644 index 0000000..dbe2944 --- /dev/null +++ b/.next/server/app/solutions/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/solutions/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/solutions/page/react-loadable-manifest.json b/.next/server/app/solutions/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/solutions/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/solutions/page/server-reference-manifest.json b/.next/server/app/solutions/page/server-reference-manifest.json new file mode 100644 index 0000000..128d120 --- /dev/null +++ b/.next/server/app/solutions/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/solutions/page": { + "moduleId": 44019, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/solutions/page_client-reference-manifest.js b/.next/server/app/solutions/page_client-reference-manifest.js new file mode 100644 index 0000000..6577b39 --- /dev/null +++ b/.next/server/app/solutions/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/solutions/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/sections/SolutionsHero.tsx ":{"id":89937,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"async":false},"[project]/src/components/sections/SolutionsHero.tsx":{"id":89937,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"async":false},"[project]/src/components/sections/IndustryStack.tsx ":{"id":40086,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"async":false},"[project]/src/components/sections/IndustryStack.tsx":{"id":40086,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js","/_next/static/chunks/17iyy9kp8dsf4.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"89937":{"*":{"id":33319,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_06v94o_._.js"],"async":false}},"40086":{"*":{"id":42957,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/src_components_sections_IndustryWorldMap_tsx_01vqqgp._.js","server/chunks/ssr/src_components_sections_06v94o_._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"89937":{"*":{"id":93775,"name":"*","chunks":[],"async":false}},"40086":{"*":{"id":60915,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/solutions/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/solutions/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js","static/chunks/17iyy9kp8dsf4.js"]}}; + diff --git a/.next/server/app/terms-of-service.html b/.next/server/app/terms-of-service.html new file mode 100644 index 0000000..604a616 --- /dev/null +++ b/.next/server/app/terms-of-service.html @@ -0,0 +1,853 @@ +Terms of Service – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file diff --git a/.next/server/app/terms-of-service.meta b/.next/server/app/terms-of-service.meta new file mode 100644 index 0000000..2f75094 --- /dev/null +++ b/.next/server/app/terms-of-service.meta @@ -0,0 +1,15 @@ +{ + "headers": { + "x-nextjs-stale-time": "300", + "x-nextjs-prerender": "1", + "x-next-cache-tags": "_N_T_/layout,_N_T_/terms-of-service/layout,_N_T_/terms-of-service/page,_N_T_/terms-of-service" + }, + "segmentPaths": [ + "/_tree", + "/_full", + "/terms-of-service/__PAGE__", + "/terms-of-service", + "/_index", + "/_head" + ] +} \ No newline at end of file diff --git a/build/terms-of-service.txt b/.next/server/app/terms-of-service.rsc similarity index 56% rename from build/terms-of-service.txt rename to .next/server/app/terms-of-service.rsc index 42ac732..e7921d0 100644 --- a/build/terms-of-service.txt +++ b/.next/server/app/terms-of-service.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -1a:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -18,22 +18,21 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","terms-of-service"],"q":"","i":false,"f":[[["",{"children":["terms-of-service",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Terms of Service","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Acceptance of Terms",{"children":["$","a",null,{"href":"#acceptance-of-terms","children":"Acceptance of Terms"}]}],["$","li","Permitted Use",{"children":["$","a",null,{"href":"#permitted-use","children":"Permitted Use"}]}],["$","li","Intellectual Property Rights",{"children":"$Lc"}],"$Ld","$Le","$Lf","$L10","$L11","$L12","$L13","$L14"]}]}]]}]}],"$L15"]}],"$L16"]}]}]}]}],null,"$L17"]}],{},null,false,null]},null,false,"$@18"]},null,false,null],"$L19",false]],"m":"$undefined","G":["$1a",["$L1b"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -21:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -22:"$Sreact.suspense" -25:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -27:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","a",null,{"href":"#intellectual-property-rights","children":"Intellectual Property Rights"}] -d:["$","li","User Submissions",{"children":["$","a",null,{"href":"#user-submissions","children":"User Submissions"}]}] -e:["$","li","Service Availability",{"children":["$","a",null,{"href":"#service-availability","children":"Service Availability"}]}] -f:["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#disclaimer-of-warranties","children":"Disclaimer of Warranties"}]}] -10:["$","li","Limitation of Liability",{"children":["$","a",null,{"href":"#limitation-of-liability","children":"Limitation of Liability"}]}] -11:["$","li","Indemnification",{"children":["$","a",null,{"href":"#indemnification","children":"Indemnification"}]}] -12:["$","li","Modifications",{"children":["$","a",null,{"href":"#modifications","children":"Modifications"}]}] -13:["$","li","Governing Law",{"children":["$","a",null,{"href":"#governing-law","children":"Governing Law"}]}] -14:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] -15:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Terms of Service"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"These Terms of Service govern your access to and use of the Doormile website and related services. By accessing or using our website, you agree to comply with these terms."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Acceptance of Terms",{"id":"acceptance-of-terms","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Acceptance of Terms"}],[["$","p","0",{"className":"dm-legal__p","children":"By accessing this website, you acknowledge that you have read, understood, and agreed to these Terms of Service and all applicable laws and regulations."}]]]}],["$","section","Permitted Use",{"id":"permitted-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Permitted Use"}],[["$","p","0",{"className":"dm-legal__p","children":"You agree to use the website and services only for lawful purposes and in accordance with these terms."}],["$","p","1",{"className":"dm-legal__p","children":"You agree not to:"}],["$","ul","2",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Violate applicable laws or regulations"}],["$","li","1",{"children":"Attempt unauthorized access to systems or networks"}],["$","li","2",{"children":"Interfere with website functionality or security"}],["$","li","3",{"children":"Distribute malicious software or harmful code"}],["$","li","4",{"children":"Misrepresent your identity or organization"}],["$","li","5",{"children":"Use website content without authorization"}]]}]]]}],["$","section","Intellectual Property Rights",{"id":"intellectual-property-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Intellectual Property Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"All content, technology, software, graphics, trademarks, logos, text, designs, and other materials available on this website are the property of Doormile or its licensors and are protected by applicable intellectual property laws."}]]]}],["$","section","User Submissions",{"id":"user-submissions","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"User Submissions"}],[["$","p","0",{"className":"dm-legal__p","children":"Any information submitted through forms, inquiries, or communications must be accurate and lawful. Users are responsible for the content they submit."}]]]}],["$","section","Service Availability",{"id":"service-availability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Service Availability"}],[["$","p","0",{"className":"dm-legal__p","children":"While we strive to maintain uninterrupted access, we do not guarantee that the website or services will always be available, secure, or error-free."}]]]}],["$","section","Disclaimer of Warranties",{"id":"disclaimer-of-warranties","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Disclaimer of Warranties"}],[["$","p","0",{"className":"dm-legal__p","children":"The website and services are provided on an \"as is\" and \"as available\" basis without warranties of any kind, whether express or implied."}]]]}],["$","section","Limitation of Liability",{"id":"limitation-of-liability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Limitation of Liability"}],[["$","p","0",{"className":"dm-legal__p","children":"To the maximum extent permitted by law, Doormile shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from or related to the use of the website or services."}]]]}],"$L1c","$L1d","$L1e","$L1f"]}]]}] -20:T15aa, +0:{"P":null,"c":["","terms-of-service"],"q":"","i":false,"f":[[["",{"children":["terms-of-service",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Terms of Service","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Acceptance of Terms",{"children":["$","a",null,{"href":"#acceptance-of-terms","children":"Acceptance of Terms"}]}],["$","li","Permitted Use",{"children":["$","a",null,{"href":"#permitted-use","children":"Permitted Use"}]}],["$","li","Intellectual Property Rights",{"children":["$","a",null,{"href":"#intellectual-property-rights","children":"Intellectual Property Rights"}]}],"$Lc","$Ld","$Le","$Lf","$L10","$L11","$L12","$L13"]}]}]]}]}],"$L14"]}],"$L15"]}]}]}]}],null,"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +20:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +21:"$Sreact.suspense" +24:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +26:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","li","User Submissions",{"children":["$","a",null,{"href":"#user-submissions","children":"User Submissions"}]}] +d:["$","li","Service Availability",{"children":["$","a",null,{"href":"#service-availability","children":"Service Availability"}]}] +e:["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#disclaimer-of-warranties","children":"Disclaimer of Warranties"}]}] +f:["$","li","Limitation of Liability",{"children":["$","a",null,{"href":"#limitation-of-liability","children":"Limitation of Liability"}]}] +10:["$","li","Indemnification",{"children":["$","a",null,{"href":"#indemnification","children":"Indemnification"}]}] +11:["$","li","Modifications",{"children":["$","a",null,{"href":"#modifications","children":"Modifications"}]}] +12:["$","li","Governing Law",{"children":["$","a",null,{"href":"#governing-law","children":"Governing Law"}]}] +13:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] +14:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Terms of Service"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"These Terms of Service govern your access to and use of the Doormile website and related services. By accessing or using our website, you agree to comply with these terms."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Acceptance of Terms",{"id":"acceptance-of-terms","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Acceptance of Terms"}],[["$","p","0",{"className":"dm-legal__p","children":"By accessing this website, you acknowledge that you have read, understood, and agreed to these Terms of Service and all applicable laws and regulations."}]]]}],["$","section","Permitted Use",{"id":"permitted-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Permitted Use"}],[["$","p","0",{"className":"dm-legal__p","children":"You agree to use the website and services only for lawful purposes and in accordance with these terms."}],["$","p","1",{"className":"dm-legal__p","children":"You agree not to:"}],["$","ul","2",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Violate applicable laws or regulations"}],["$","li","1",{"children":"Attempt unauthorized access to systems or networks"}],["$","li","2",{"children":"Interfere with website functionality or security"}],["$","li","3",{"children":"Distribute malicious software or harmful code"}],["$","li","4",{"children":"Misrepresent your identity or organization"}],["$","li","5",{"children":"Use website content without authorization"}]]}]]]}],["$","section","Intellectual Property Rights",{"id":"intellectual-property-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Intellectual Property Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"All content, technology, software, graphics, trademarks, logos, text, designs, and other materials available on this website are the property of Doormile or its licensors and are protected by applicable intellectual property laws."}]]]}],["$","section","User Submissions",{"id":"user-submissions","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"User Submissions"}],[["$","p","0",{"className":"dm-legal__p","children":"Any information submitted through forms, inquiries, or communications must be accurate and lawful. Users are responsible for the content they submit."}]]]}],["$","section","Service Availability",{"id":"service-availability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Service Availability"}],[["$","p","0",{"className":"dm-legal__p","children":"While we strive to maintain uninterrupted access, we do not guarantee that the website or services will always be available, secure, or error-free."}]]]}],["$","section","Disclaimer of Warranties",{"id":"disclaimer-of-warranties","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Disclaimer of Warranties"}],[["$","p","0",{"className":"dm-legal__p","children":"The website and services are provided on an \"as is\" and \"as available\" basis without warranties of any kind, whether express or implied."}]]]}],["$","section","Limitation of Liability",{"id":"limitation-of-liability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Limitation of Liability"}],[["$","p","0",{"className":"dm-legal__p","children":"To the maximum extent permitted by law, Doormile shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from or related to the use of the website or services."}]]]}],"$L1b","$L1c","$L1d","$L1e"]}]]}] +1f:T15aa, .dm-legal { background: #ffffff; color: #334155; @@ -206,18 +205,18 @@ f:["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#discl box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important; } } -16:["$","style",null,{"children":"$20"}] -17:["$","$L21",null,{"children":["$","$22",null,{"name":"Next.MetadataOutlet","children":"$@23"}]}] -24:[] -18:"$W24" -19:["$","$1","h",{"children":[null,["$","$L25",null,{"children":"$L26"}],["$","div",null,{"hidden":true,"children":["$","$L27",null,{"children":["$","$22",null,{"name":"Next.Metadata","children":"$L28"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1b:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -29:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -1c:["$","section","Indemnification",{"id":"indemnification","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Indemnification"}],[["$","p","0",{"className":"dm-legal__p","children":"Users agree to indemnify and hold harmless Doormile, its employees, partners, and affiliates from claims arising from misuse of the website or violation of these terms."}]]]}] -1d:["$","section","Modifications",{"id":"modifications","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Modifications"}],[["$","p","0",{"className":"dm-legal__p","children":"We reserve the right to update or modify these Terms of Service at any time. Continued use of the website following updates constitutes acceptance of the revised terms."}]]]}] -1e:["$","section","Governing Law",{"id":"governing-law","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Governing Law"}],[["$","p","0",{"className":"dm-legal__p","children":"These Terms shall be governed by and interpreted in accordance with applicable laws and regulations in the jurisdictions where Doormile conducts business."}]]]}] -1f:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["Questions regarding these Terms of Service may be submitted through our ",["$","$L29",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] -26:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -2a:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -23:null -28:[["$","title","0",{"children":"Terms of Service – Doormile"}],["$","meta","1",{"name":"description","content":"The Terms of Service governing your access to and use of the Doormile website and related services."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L2a","7",{}]] +15:["$","style",null,{"children":"$1f"}] +16:["$","$L20",null,{"children":["$","$21",null,{"name":"Next.MetadataOutlet","children":"$@22"}]}] +23:[] +17:"$W23" +18:["$","$1","h",{"children":[null,["$","$L24",null,{"children":"$L25"}],["$","div",null,{"hidden":true,"children":["$","$L26",null,{"children":["$","$21",null,{"name":"Next.Metadata","children":"$L27"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +28:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +1b:["$","section","Indemnification",{"id":"indemnification","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Indemnification"}],[["$","p","0",{"className":"dm-legal__p","children":"Users agree to indemnify and hold harmless Doormile, its employees, partners, and affiliates from claims arising from misuse of the website or violation of these terms."}]]]}] +1c:["$","section","Modifications",{"id":"modifications","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Modifications"}],[["$","p","0",{"className":"dm-legal__p","children":"We reserve the right to update or modify these Terms of Service at any time. Continued use of the website following updates constitutes acceptance of the revised terms."}]]]}] +1d:["$","section","Governing Law",{"id":"governing-law","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Governing Law"}],[["$","p","0",{"className":"dm-legal__p","children":"These Terms shall be governed by and interpreted in accordance with applicable laws and regulations in the jurisdictions where Doormile conducts business."}]]]}] +1e:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["Questions regarding these Terms of Service may be submitted through our ",["$","$L28",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] +25:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +29:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +22:null +27:[["$","title","0",{"children":"Terms of Service – Doormile"}],["$","meta","1",{"name":"description","content":"The Terms of Service governing your access to and use of the Doormile website and related services."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L29","7",{}]] diff --git a/build/terms-of-service/__next._full.txt b/.next/server/app/terms-of-service.segments/_full.segment.rsc similarity index 56% rename from build/terms-of-service/__next._full.txt rename to .next/server/app/terms-of-service.segments/_full.segment.rsc index 42ac732..e7921d0 100644 --- a/build/terms-of-service/__next._full.txt +++ b/.next/server/app/terms-of-service.segments/_full.segment.rsc @@ -1,16 +1,16 @@ 1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -1a:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +19:I[68027,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default",1] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -18,22 +18,21 @@ b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"P":null,"c":["","terms-of-service"],"q":"","i":false,"f":[[["",{"children":["terms-of-service",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Terms of Service","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Acceptance of Terms",{"children":["$","a",null,{"href":"#acceptance-of-terms","children":"Acceptance of Terms"}]}],["$","li","Permitted Use",{"children":["$","a",null,{"href":"#permitted-use","children":"Permitted Use"}]}],["$","li","Intellectual Property Rights",{"children":"$Lc"}],"$Ld","$Le","$Lf","$L10","$L11","$L12","$L13","$L14"]}]}]]}]}],"$L15"]}],"$L16"]}]}]}]}],null,"$L17"]}],{},null,false,null]},null,false,"$@18"]},null,false,null],"$L19",false]],"m":"$undefined","G":["$1a",["$L1b"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -21:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -22:"$Sreact.suspense" -25:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -27:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","a",null,{"href":"#intellectual-property-rights","children":"Intellectual Property Rights"}] -d:["$","li","User Submissions",{"children":["$","a",null,{"href":"#user-submissions","children":"User Submissions"}]}] -e:["$","li","Service Availability",{"children":["$","a",null,{"href":"#service-availability","children":"Service Availability"}]}] -f:["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#disclaimer-of-warranties","children":"Disclaimer of Warranties"}]}] -10:["$","li","Limitation of Liability",{"children":["$","a",null,{"href":"#limitation-of-liability","children":"Limitation of Liability"}]}] -11:["$","li","Indemnification",{"children":["$","a",null,{"href":"#indemnification","children":"Indemnification"}]}] -12:["$","li","Modifications",{"children":["$","a",null,{"href":"#modifications","children":"Modifications"}]}] -13:["$","li","Governing Law",{"children":["$","a",null,{"href":"#governing-law","children":"Governing Law"}]}] -14:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] -15:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Terms of Service"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"These Terms of Service govern your access to and use of the Doormile website and related services. By accessing or using our website, you agree to comply with these terms."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Acceptance of Terms",{"id":"acceptance-of-terms","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Acceptance of Terms"}],[["$","p","0",{"className":"dm-legal__p","children":"By accessing this website, you acknowledge that you have read, understood, and agreed to these Terms of Service and all applicable laws and regulations."}]]]}],["$","section","Permitted Use",{"id":"permitted-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Permitted Use"}],[["$","p","0",{"className":"dm-legal__p","children":"You agree to use the website and services only for lawful purposes and in accordance with these terms."}],["$","p","1",{"className":"dm-legal__p","children":"You agree not to:"}],["$","ul","2",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Violate applicable laws or regulations"}],["$","li","1",{"children":"Attempt unauthorized access to systems or networks"}],["$","li","2",{"children":"Interfere with website functionality or security"}],["$","li","3",{"children":"Distribute malicious software or harmful code"}],["$","li","4",{"children":"Misrepresent your identity or organization"}],["$","li","5",{"children":"Use website content without authorization"}]]}]]]}],["$","section","Intellectual Property Rights",{"id":"intellectual-property-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Intellectual Property Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"All content, technology, software, graphics, trademarks, logos, text, designs, and other materials available on this website are the property of Doormile or its licensors and are protected by applicable intellectual property laws."}]]]}],["$","section","User Submissions",{"id":"user-submissions","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"User Submissions"}],[["$","p","0",{"className":"dm-legal__p","children":"Any information submitted through forms, inquiries, or communications must be accurate and lawful. Users are responsible for the content they submit."}]]]}],["$","section","Service Availability",{"id":"service-availability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Service Availability"}],[["$","p","0",{"className":"dm-legal__p","children":"While we strive to maintain uninterrupted access, we do not guarantee that the website or services will always be available, secure, or error-free."}]]]}],["$","section","Disclaimer of Warranties",{"id":"disclaimer-of-warranties","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Disclaimer of Warranties"}],[["$","p","0",{"className":"dm-legal__p","children":"The website and services are provided on an \"as is\" and \"as available\" basis without warranties of any kind, whether express or implied."}]]]}],["$","section","Limitation of Liability",{"id":"limitation-of-liability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Limitation of Liability"}],[["$","p","0",{"className":"dm-legal__p","children":"To the maximum extent permitted by law, Doormile shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from or related to the use of the website or services."}]]]}],"$L1c","$L1d","$L1e","$L1f"]}]]}] -20:T15aa, +0:{"P":null,"c":["","terms-of-service"],"q":"","i":false,"f":[[["",{"children":["terms-of-service",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Terms of Service","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Acceptance of Terms",{"children":["$","a",null,{"href":"#acceptance-of-terms","children":"Acceptance of Terms"}]}],["$","li","Permitted Use",{"children":["$","a",null,{"href":"#permitted-use","children":"Permitted Use"}]}],["$","li","Intellectual Property Rights",{"children":["$","a",null,{"href":"#intellectual-property-rights","children":"Intellectual Property Rights"}]}],"$Lc","$Ld","$Le","$Lf","$L10","$L11","$L12","$L13"]}]}]]}]}],"$L14"]}],"$L15"]}]}]}]}],null,"$L16"]}],{},null,false,null]},null,false,"$@17"]},null,false,null],"$L18",false]],"m":"$undefined","G":["$19",["$L1a"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"czNRbRzpspOb1FVBoan7W"} +20:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] +21:"$Sreact.suspense" +24:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +26:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] +c:["$","li","User Submissions",{"children":["$","a",null,{"href":"#user-submissions","children":"User Submissions"}]}] +d:["$","li","Service Availability",{"children":["$","a",null,{"href":"#service-availability","children":"Service Availability"}]}] +e:["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#disclaimer-of-warranties","children":"Disclaimer of Warranties"}]}] +f:["$","li","Limitation of Liability",{"children":["$","a",null,{"href":"#limitation-of-liability","children":"Limitation of Liability"}]}] +10:["$","li","Indemnification",{"children":["$","a",null,{"href":"#indemnification","children":"Indemnification"}]}] +11:["$","li","Modifications",{"children":["$","a",null,{"href":"#modifications","children":"Modifications"}]}] +12:["$","li","Governing Law",{"children":["$","a",null,{"href":"#governing-law","children":"Governing Law"}]}] +13:["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}] +14:["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Terms of Service"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"These Terms of Service govern your access to and use of the Doormile website and related services. By accessing or using our website, you agree to comply with these terms."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Acceptance of Terms",{"id":"acceptance-of-terms","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Acceptance of Terms"}],[["$","p","0",{"className":"dm-legal__p","children":"By accessing this website, you acknowledge that you have read, understood, and agreed to these Terms of Service and all applicable laws and regulations."}]]]}],["$","section","Permitted Use",{"id":"permitted-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Permitted Use"}],[["$","p","0",{"className":"dm-legal__p","children":"You agree to use the website and services only for lawful purposes and in accordance with these terms."}],["$","p","1",{"className":"dm-legal__p","children":"You agree not to:"}],["$","ul","2",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Violate applicable laws or regulations"}],["$","li","1",{"children":"Attempt unauthorized access to systems or networks"}],["$","li","2",{"children":"Interfere with website functionality or security"}],["$","li","3",{"children":"Distribute malicious software or harmful code"}],["$","li","4",{"children":"Misrepresent your identity or organization"}],["$","li","5",{"children":"Use website content without authorization"}]]}]]]}],["$","section","Intellectual Property Rights",{"id":"intellectual-property-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Intellectual Property Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"All content, technology, software, graphics, trademarks, logos, text, designs, and other materials available on this website are the property of Doormile or its licensors and are protected by applicable intellectual property laws."}]]]}],["$","section","User Submissions",{"id":"user-submissions","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"User Submissions"}],[["$","p","0",{"className":"dm-legal__p","children":"Any information submitted through forms, inquiries, or communications must be accurate and lawful. Users are responsible for the content they submit."}]]]}],["$","section","Service Availability",{"id":"service-availability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Service Availability"}],[["$","p","0",{"className":"dm-legal__p","children":"While we strive to maintain uninterrupted access, we do not guarantee that the website or services will always be available, secure, or error-free."}]]]}],["$","section","Disclaimer of Warranties",{"id":"disclaimer-of-warranties","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Disclaimer of Warranties"}],[["$","p","0",{"className":"dm-legal__p","children":"The website and services are provided on an \"as is\" and \"as available\" basis without warranties of any kind, whether express or implied."}]]]}],["$","section","Limitation of Liability",{"id":"limitation-of-liability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Limitation of Liability"}],[["$","p","0",{"className":"dm-legal__p","children":"To the maximum extent permitted by law, Doormile shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from or related to the use of the website or services."}]]]}],"$L1b","$L1c","$L1d","$L1e"]}]]}] +1f:T15aa, .dm-legal { background: #ffffff; color: #334155; @@ -206,18 +205,18 @@ f:["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#discl box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important; } } -16:["$","style",null,{"children":"$20"}] -17:["$","$L21",null,{"children":["$","$22",null,{"name":"Next.MetadataOutlet","children":"$@23"}]}] -24:[] -18:"$W24" -19:["$","$1","h",{"children":[null,["$","$L25",null,{"children":"$L26"}],["$","div",null,{"hidden":true,"children":["$","$L27",null,{"children":["$","$22",null,{"name":"Next.Metadata","children":"$L28"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -1b:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -29:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -1c:["$","section","Indemnification",{"id":"indemnification","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Indemnification"}],[["$","p","0",{"className":"dm-legal__p","children":"Users agree to indemnify and hold harmless Doormile, its employees, partners, and affiliates from claims arising from misuse of the website or violation of these terms."}]]]}] -1d:["$","section","Modifications",{"id":"modifications","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Modifications"}],[["$","p","0",{"className":"dm-legal__p","children":"We reserve the right to update or modify these Terms of Service at any time. Continued use of the website following updates constitutes acceptance of the revised terms."}]]]}] -1e:["$","section","Governing Law",{"id":"governing-law","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Governing Law"}],[["$","p","0",{"className":"dm-legal__p","children":"These Terms shall be governed by and interpreted in accordance with applicable laws and regulations in the jurisdictions where Doormile conducts business."}]]]}] -1f:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["Questions regarding these Terms of Service may be submitted through our ",["$","$L29",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] -26:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -2a:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -23:null -28:[["$","title","0",{"children":"Terms of Service – Doormile"}],["$","meta","1",{"name":"description","content":"The Terms of Service governing your access to and use of the Doormile website and related services."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L2a","7",{}]] +15:["$","style",null,{"children":"$1f"}] +16:["$","$L20",null,{"children":["$","$21",null,{"name":"Next.MetadataOutlet","children":"$@22"}]}] +23:[] +17:"$W23" +18:["$","$1","h",{"children":[null,["$","$L24",null,{"children":"$L25"}],["$","div",null,{"hidden":true,"children":["$","$L26",null,{"children":["$","$21",null,{"name":"Next.Metadata","children":"$L27"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] +1a:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] +28:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +1b:["$","section","Indemnification",{"id":"indemnification","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Indemnification"}],[["$","p","0",{"className":"dm-legal__p","children":"Users agree to indemnify and hold harmless Doormile, its employees, partners, and affiliates from claims arising from misuse of the website or violation of these terms."}]]]}] +1c:["$","section","Modifications",{"id":"modifications","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Modifications"}],[["$","p","0",{"className":"dm-legal__p","children":"We reserve the right to update or modify these Terms of Service at any time. Continued use of the website following updates constitutes acceptance of the revised terms."}]]]}] +1d:["$","section","Governing Law",{"id":"governing-law","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Governing Law"}],[["$","p","0",{"className":"dm-legal__p","children":"These Terms shall be governed by and interpreted in accordance with applicable laws and regulations in the jurisdictions where Doormile conducts business."}]]]}] +1e:["$","section","Contact Us",{"id":"contact-us","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Contact Us"}],[["$","p","0",{"className":"dm-legal__p","children":["Questions regarding these Terms of Service may be submitted through our ",["$","$L28",null,{"href":"/contact","className":"dm-legal__link","children":"Contact page"}],"."]}]]]}] +25:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] +29:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +22:null +27:[["$","title","0",{"children":"Terms of Service – Doormile"}],["$","meta","1",{"name":"description","content":"The Terms of Service governing your access to and use of the Doormile website and related services."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L29","7",{}]] diff --git a/build/terms-of-service/__next._head.txt b/.next/server/app/terms-of-service.segments/_head.segment.rsc similarity index 61% rename from build/terms-of-service/__next._head.txt rename to .next/server/app/terms-of-service.segments/_head.segment.rsc index 94b7c44..f415abc 100644 --- a/build/terms-of-service/__next._head.txt +++ b/.next/server/app/terms-of-service.segments/_head.segment.rsc @@ -1,6 +1,6 @@ 1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] +2:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"ViewportBoundary"] +3:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"MetadataBoundary"] 4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Terms of Service – Doormile"}],["$","meta","1",{"name":"description","content":"The Terms of Service governing your access to and use of the Doormile website and related services."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +5:I[27201,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"IconMark"] +0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Terms of Service – Doormile"}],["$","meta","1",{"name":"description","content":"The Terms of Service governing your access to and use of the Doormile website and related services."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/terms-of-service.segments/_index.segment.rsc b/.next/server/app/terms-of-service.segments/_index.segment.rsc new file mode 100644 index 0000000..c95c1ec --- /dev/null +++ b/.next/server/app/terms-of-service.segments/_index.segment.rsc @@ -0,0 +1,15 @@ +1:"$Sreact.fragment" +2:I[67989,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[8971,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:I[48064,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +5:I[26290,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +6:I[82637,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"HeaderUIProvider"] +7:I[92260,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +8:I[3374,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +9:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +a:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +b:I[58234,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] +:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] +:HL["/css/site.css","style"] +0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/13ci0umlwh11-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0812b12auw1ih.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0wybzq6mybxiw.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0ayxrdbx8m13y.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/terms-of-service/__next._tree.txt b/.next/server/app/terms-of-service.segments/_tree.segment.rsc similarity index 86% rename from build/terms-of-service/__next._tree.txt rename to .next/server/app/terms-of-service.segments/_tree.segment.rsc index d131f91..b387932 100644 --- a/build/terms-of-service/__next._tree.txt +++ b/.next/server/app/terms-of-service.segments/_tree.segment.rsc @@ -1,4 +1,4 @@ -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] +:HL["/_next/static/chunks/13ci0umlwh11-.css","style"] :HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] @@ -6,4 +6,4 @@ :HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] :HL["/css/site.css","style"] -0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"terms-of-service","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"terms-of-service","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/.next/server/app/terms-of-service.segments/terms-of-service.segment.rsc b/.next/server/app/terms-of-service.segments/terms-of-service.segment.rsc new file mode 100644 index 0000000..1e04eb7 --- /dev/null +++ b/.next/server/app/terms-of-service.segments/terms-of-service.segment.rsc @@ -0,0 +1,5 @@ +1:"$Sreact.fragment" +2:I[39756,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +3:I[37457,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"default"] +4:[] +0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"czNRbRzpspOb1FVBoan7W"} diff --git a/build/terms-of-service/__next.terms-of-service.__PAGE__.txt b/.next/server/app/terms-of-service.segments/terms-of-service/__PAGE__.segment.rsc similarity index 96% rename from build/terms-of-service/__next.terms-of-service.__PAGE__.txt rename to .next/server/app/terms-of-service.segments/terms-of-service/__PAGE__.segment.rsc index 197e6e1..e3d27d4 100644 --- a/build/terms-of-service/__next.terms-of-service.__PAGE__.txt +++ b/.next/server/app/terms-of-service.segments/terms-of-service/__PAGE__.segment.rsc @@ -1,8 +1,8 @@ 1:"$Sreact.fragment" -c:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] +c:I[22016,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],""] +e:I[97367,["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"OutletBoundary"] f:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Terms of Service","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Acceptance of Terms",{"children":["$","a",null,{"href":"#acceptance-of-terms","children":"Acceptance of Terms"}]}],["$","li","Permitted Use",{"children":["$","a",null,{"href":"#permitted-use","children":"Permitted Use"}]}],["$","li","Intellectual Property Rights",{"children":["$","a",null,{"href":"#intellectual-property-rights","children":"Intellectual Property Rights"}]}],["$","li","User Submissions",{"children":["$","a",null,{"href":"#user-submissions","children":"User Submissions"}]}],["$","li","Service Availability",{"children":["$","a",null,{"href":"#service-availability","children":"Service Availability"}]}],["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#disclaimer-of-warranties","children":"Disclaimer of Warranties"}]}],["$","li","Limitation of Liability",{"children":["$","a",null,{"href":"#limitation-of-liability","children":"Limitation of Liability"}]}],["$","li","Indemnification",{"children":["$","a",null,{"href":"#indemnification","children":"Indemnification"}]}],["$","li","Modifications",{"children":["$","a",null,{"href":"#modifications","children":"Modifications"}]}],["$","li","Governing Law",{"children":["$","a",null,{"href":"#governing-law","children":"Governing Law"}]}],["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}]]}]}]]}]}],["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Terms of Service"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"These Terms of Service govern your access to and use of the Doormile website and related services. By accessing or using our website, you agree to comply with these terms."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Acceptance of Terms",{"id":"acceptance-of-terms","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Acceptance of Terms"}],[["$","p","0",{"className":"dm-legal__p","children":"By accessing this website, you acknowledge that you have read, understood, and agreed to these Terms of Service and all applicable laws and regulations."}]]]}],["$","section","Permitted Use",{"id":"permitted-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Permitted Use"}],[["$","p","0",{"className":"dm-legal__p","children":"You agree to use the website and services only for lawful purposes and in accordance with these terms."}],["$","p","1",{"className":"dm-legal__p","children":"You agree not to:"}],["$","ul","2",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Violate applicable laws or regulations"}],["$","li","1",{"children":"Attempt unauthorized access to systems or networks"}],["$","li","2",{"children":"Interfere with website functionality or security"}],["$","li","3",{"children":"Distribute malicious software or harmful code"}],["$","li","4",{"children":"Misrepresent your identity or organization"}],["$","li","5",{"children":"Use website content without authorization"}]]}]]]}],["$","section","Intellectual Property Rights",{"id":"intellectual-property-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Intellectual Property Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"All content, technology, software, graphics, trademarks, logos, text, designs, and other materials available on this website are the property of Doormile or its licensors and are protected by applicable intellectual property laws."}]]]}],"$L2","$L3","$L4","$L5","$L6","$L7","$L8","$L9"]}]]}]]}],"$La"]}]}]}]}],null,"$Lb"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} +0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"dm-legal","aria-label":"Terms of Service","children":[["$","div",null,{"className":"dm-legal__wrap","children":[["$","aside",null,{"className":"dm-legal__toc","aria-label":"On this page","children":["$","div",null,{"className":"dm-legal__toc-inner","children":[["$","p",null,{"className":"dm-legal__toc-label","children":"On this page"}],["$","nav",null,{"children":["$","ul",null,{"children":[["$","li","Acceptance of Terms",{"children":["$","a",null,{"href":"#acceptance-of-terms","children":"Acceptance of Terms"}]}],["$","li","Permitted Use",{"children":["$","a",null,{"href":"#permitted-use","children":"Permitted Use"}]}],["$","li","Intellectual Property Rights",{"children":["$","a",null,{"href":"#intellectual-property-rights","children":"Intellectual Property Rights"}]}],["$","li","User Submissions",{"children":["$","a",null,{"href":"#user-submissions","children":"User Submissions"}]}],["$","li","Service Availability",{"children":["$","a",null,{"href":"#service-availability","children":"Service Availability"}]}],["$","li","Disclaimer of Warranties",{"children":["$","a",null,{"href":"#disclaimer-of-warranties","children":"Disclaimer of Warranties"}]}],["$","li","Limitation of Liability",{"children":["$","a",null,{"href":"#limitation-of-liability","children":"Limitation of Liability"}]}],["$","li","Indemnification",{"children":["$","a",null,{"href":"#indemnification","children":"Indemnification"}]}],["$","li","Modifications",{"children":["$","a",null,{"href":"#modifications","children":"Modifications"}]}],["$","li","Governing Law",{"children":["$","a",null,{"href":"#governing-law","children":"Governing Law"}]}],["$","li","Contact Us",{"children":["$","a",null,{"href":"#contact-us","children":"Contact Us"}]}]]}]}]]}]}],["$","div",null,{"className":"dm-legal__main","children":[["$","header",null,{"className":"dm-legal__hero","children":[["$","h1",null,{"className":"dm-legal__title","children":"Terms of Service"}],["$","p",null,{"className":"dm-legal__updated","children":["Last Updated: ","June 2026"]}],["$","p",null,{"className":"dm-legal__lead","children":"These Terms of Service govern your access to and use of the Doormile website and related services. By accessing or using our website, you agree to comply with these terms."}]]}],["$","article",null,{"className":"dm-legal__content","children":[["$","section","Acceptance of Terms",{"id":"acceptance-of-terms","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Acceptance of Terms"}],[["$","p","0",{"className":"dm-legal__p","children":"By accessing this website, you acknowledge that you have read, understood, and agreed to these Terms of Service and all applicable laws and regulations."}]]]}],["$","section","Permitted Use",{"id":"permitted-use","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Permitted Use"}],[["$","p","0",{"className":"dm-legal__p","children":"You agree to use the website and services only for lawful purposes and in accordance with these terms."}],["$","p","1",{"className":"dm-legal__p","children":"You agree not to:"}],["$","ul","2",{"className":"dm-legal__ul","children":[["$","li","0",{"children":"Violate applicable laws or regulations"}],["$","li","1",{"children":"Attempt unauthorized access to systems or networks"}],["$","li","2",{"children":"Interfere with website functionality or security"}],["$","li","3",{"children":"Distribute malicious software or harmful code"}],["$","li","4",{"children":"Misrepresent your identity or organization"}],["$","li","5",{"children":"Use website content without authorization"}]]}]]]}],["$","section","Intellectual Property Rights",{"id":"intellectual-property-rights","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Intellectual Property Rights"}],[["$","p","0",{"className":"dm-legal__p","children":"All content, technology, software, graphics, trademarks, logos, text, designs, and other materials available on this website are the property of Doormile or its licensors and are protected by applicable intellectual property laws."}]]]}],"$L2","$L3","$L4","$L5","$L6","$L7","$L8","$L9"]}]]}]]}],"$La"]}]}]}]}],null,"$Lb"]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"czNRbRzpspOb1FVBoan7W"} 2:["$","section","User Submissions",{"id":"user-submissions","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"User Submissions"}],[["$","p","0",{"className":"dm-legal__p","children":"Any information submitted through forms, inquiries, or communications must be accurate and lawful. Users are responsible for the content they submit."}]]]}] 3:["$","section","Service Availability",{"id":"service-availability","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Service Availability"}],[["$","p","0",{"className":"dm-legal__p","children":"While we strive to maintain uninterrupted access, we do not guarantee that the website or services will always be available, secure, or error-free."}]]]}] 4:["$","section","Disclaimer of Warranties",{"id":"disclaimer-of-warranties","className":"dm-legal__section","children":[["$","h2",null,{"className":"dm-legal__h2","children":"Disclaimer of Warranties"}],[["$","p","0",{"className":"dm-legal__p","children":"The website and services are provided on an \"as is\" and \"as available\" basis without warranties of any kind, whether express or implied."}]]]}] diff --git a/.next/server/app/terms-of-service/page.js b/.next/server/app/terms-of-service/page.js new file mode 100644 index 0000000..83755ee --- /dev/null +++ b/.next/server/app/terms-of-service/page.js @@ -0,0 +1,15 @@ +var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/terms-of-service/page.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ajd8y_._.js") +R.c("server/chunks/ssr/node_modules_next_dist_09jzzl8._.js") +R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0~a.2oi.js") +R.c("server/chunks/ssr/[root-of-the-server]__07uj_3p._.js") +R.c("server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js") +R.c("server/chunks/ssr/[root-of-the-server]__0ed.-2a._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js") +R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js") +R.c("server/chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js") +R.c("server/chunks/ssr/[root-of-the-server]__055c-aq._.js") +R.m(25579) +module.exports=R.m(25579).exports diff --git a/.next/server/app/terms-of-service/page.js.map b/.next/server/app/terms-of-service/page.js.map new file mode 100644 index 0000000..c15d7ec --- /dev/null +++ b/.next/server/app/terms-of-service/page.js.map @@ -0,0 +1,5 @@ +{ + "version": 3, + "sources": [], + "sections": [] +} \ No newline at end of file diff --git a/.next/server/app/terms-of-service/page.js.nft.json b/.next/server/app/terms-of-service/page.js.nft.json new file mode 100644 index 0000000..10e0bf3 --- /dev/null +++ b/.next/server/app/terms-of-service/page.js.nft.json @@ -0,0 +1 @@ +{"version":1,"files":["../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/@swc/helpers/package.json","../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/client/lib/console.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../node_modules/next/dist/compiled/ws/index.js","../../../../node_modules/next/dist/compiled/ws/package.json","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/picocolors.js","../../../../node_modules/next/dist/lib/scheduler.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../node_modules/next/dist/server/node-environment.js","../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../node_modules/next/dist/server/require-hook.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../node_modules/react/cjs/react.development.js","../../../../node_modules/react/cjs/react.production.js","../../../../node_modules/react/index.js","../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__055c-aq._.js","../../chunks/ssr/[root-of-the-server]__07uj_3p._.js","../../chunks/ssr/[root-of-the-server]__0ajd8y_._.js","../../chunks/ssr/[root-of-the-server]__0ed.-2a._.js","../../chunks/ssr/[root-of-the-server]__0ka9zs8._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/_0p0sfo8._.js","../../chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js","../../chunks/ssr/node_modules_0oplp32._.js","../../chunks/ssr/node_modules_gsap_0xy-.4m._.js","../../chunks/ssr/node_modules_next_dist_09jzzl8._.js","../../chunks/ssr/node_modules_next_dist_0_t6nhm._.js","../../chunks/ssr/node_modules_next_dist_0h9llsw._.js","../../chunks/ssr/node_modules_next_dist_11bk~bs._.js","../../chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0~a.2oi.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]} \ No newline at end of file diff --git a/.next/server/app/terms-of-service/page/app-paths-manifest.json b/.next/server/app/terms-of-service/page/app-paths-manifest.json new file mode 100644 index 0000000..b05beb3 --- /dev/null +++ b/.next/server/app/terms-of-service/page/app-paths-manifest.json @@ -0,0 +1,3 @@ +{ + "/terms-of-service/page": "app/terms-of-service/page.js" +} \ No newline at end of file diff --git a/.next/server/app/terms-of-service/page/build-manifest.json b/.next/server/app/terms-of-service/page/build-manifest.json new file mode 100644 index 0000000..9f25d22 --- /dev/null +++ b/.next/server/app/terms-of-service/page/build-manifest.json @@ -0,0 +1,18 @@ +{ + "devFiles": [], + "ampDevFiles": [], + "polyfillFiles": [ + "static/chunks/03~yq9q893hmn.js" + ], + "lowPriorityFiles": [], + "rootMainFiles": [ + "static/chunks/098a0lm-b~rn..js", + "static/chunks/0tldj~reb5~dn.js", + "static/chunks/110q6k5sdl4es.js", + "static/chunks/14_678uuyq.tf.js", + "static/chunks/07uz2g0_38qia.js", + "static/chunks/turbopack-11jn_eqn~72wc.js" + ], + "pages": {}, + "ampFirstPages": [] +} \ No newline at end of file diff --git a/.next/server/app/terms-of-service/page/next-font-manifest.json b/.next/server/app/terms-of-service/page/next-font-manifest.json new file mode 100644 index 0000000..dd102b2 --- /dev/null +++ b/.next/server/app/terms-of-service/page/next-font-manifest.json @@ -0,0 +1,14 @@ +{ + "pages": {}, + "app": { + "[project]/src/app/terms-of-service/page": [ + "static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2", + "static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2", + "static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2", + "static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2", + "static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2" + ] + }, + "appUsingSizeAdjust": true, + "pagesUsingSizeAdjust": false +} \ No newline at end of file diff --git a/.next/server/app/terms-of-service/page/react-loadable-manifest.json b/.next/server/app/terms-of-service/page/react-loadable-manifest.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/app/terms-of-service/page/react-loadable-manifest.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/app/terms-of-service/page/server-reference-manifest.json b/.next/server/app/terms-of-service/page/server-reference-manifest.json new file mode 100644 index 0000000..e17f11f --- /dev/null +++ b/.next/server/app/terms-of-service/page/server-reference-manifest.json @@ -0,0 +1,17 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/terms-of-service/page": { + "moduleId": 61702, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "edge": {} +} \ No newline at end of file diff --git a/.next/server/app/terms-of-service/page_client-reference-manifest.js b/.next/server/app/terms-of-service/page_client-reference-manifest.js new file mode 100644 index 0000000..a5a8940 --- /dev/null +++ b/.next/server/app/terms-of-service/page_client-reference-manifest.js @@ -0,0 +1,3 @@ +globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; +globalThis.__RSC_MANIFEST["/terms-of-service/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx ":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Header.tsx":{"id":3374,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx ":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/Footer.tsx":{"id":58234,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx ":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyClasses.tsx":{"id":67989,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx ":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/BodyOverlay.tsx":{"id":92260,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx ":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/HeaderUIProvider.tsx":{"id":82637,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx ":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/AnimationProvider.tsx":{"id":48064,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx ":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/animations/SmoothScroll.tsx":{"id":26290,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx ":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/src/components/layout/LoadingScreen.tsx":{"id":8971,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js ":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false},"[project]/node_modules/next/dist/client/app-dir/link.js":{"id":22016,"name":"*","chunks":["/_next/static/chunks/0812b12auw1ih.js","/_next/static/chunks/0wybzq6mybxiw.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0ayxrdbx8m13y.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92825":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"3374":{"*":{"id":43218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"58234":{"*":{"id":25250,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"67989":{"*":{"id":61458,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"92260":{"*":{"id":22433,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"82637":{"*":{"id":56080,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"48064":{"*":{"id":75065,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"26290":{"*":{"id":80739,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"8971":{"*":{"id":42734,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js","server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js"],"async":false}},"22016":{"*":{"id":38246,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0ka9zs8._.js","server/chunks/ssr/_0p0sfo8._.js","server/chunks/ssr/node_modules_next_dist_11bk~bs._.js","server/chunks/ssr/node_modules_next_dist_0h9llsw._.js","server/chunks/ssr/node_modules_gsap_0xy-.4m._.js","server/chunks/ssr/node_modules_0oplp32._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":17910,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":40771,"name":"*","chunks":[],"async":false}},"3374":{"*":{"id":60079,"name":"*","chunks":[],"async":false}},"58234":{"*":{"id":63145,"name":"*","chunks":[],"async":false}},"67989":{"*":{"id":92290,"name":"*","chunks":[],"async":false}},"92260":{"*":{"id":52406,"name":"*","chunks":[],"async":false}},"82637":{"*":{"id":81769,"name":"*","chunks":[],"async":false}},"48064":{"*":{"id":74400,"name":"*","chunks":[],"async":false}},"26290":{"*":{"id":9003,"name":"*","chunks":[],"async":false}},"8971":{"*":{"id":46002,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}},"22016":{"*":{"id":84707,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}],"[project]/src/app/terms-of-service/page":[{"path":"static/chunks/13ci0umlwh11-.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"],"[project]/src/app/terms-of-service/page":["static/chunks/0812b12auw1ih.js","static/chunks/0wybzq6mybxiw.js","static/chunks/04xui0pxt.et1.js","static/chunks/0d3shmwh5_nmn.js","static/chunks/0ayxrdbx8m13y.js"]}}; + diff --git a/.next/server/chunks/[externals]_next_dist_0arv.vj._.js b/.next/server/chunks/[externals]_next_dist_0arv.vj._.js new file mode 100644 index 0000000..1d81f09 --- /dev/null +++ b/.next/server/chunks/[externals]_next_dist_0arv.vj._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(e,r,t)=>{r.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},18622,(e,r,t)=>{r.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,r,t)=>{r.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,r,t)=>{r.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,r,t)=>{r.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,r,t)=>{r.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))}]; + +//# sourceMappingURL=%5Bexternals%5D_next_dist_0arv.vj._.js.map \ No newline at end of file diff --git a/.next/server/chunks/[externals]_next_dist_0arv.vj._.js.map b/.next/server/chunks/[externals]_next_dist_0arv.vj._.js.map new file mode 100644 index 0000000..a464c67 --- /dev/null +++ b/.next/server/chunks/[externals]_next_dist_0arv.vj._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":""} \ No newline at end of file diff --git a/.next/server/chunks/[root-of-the-server]__009pdeo._.js b/.next/server/chunks/[root-of-the-server]__009pdeo._.js new file mode 100644 index 0000000..6c1b4c8 --- /dev/null +++ b/.next/server/chunks/[root-of-the-server]__009pdeo._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(e,t,r)=>{t.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},18622,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,t,r)=>{t.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},88165,e=>{"use strict";var t=e.i(47909),r=e.i(74017),a=e.i(96250),n=e.i(59756),A=e.i(61916),o=e.i(74677),i=e.i(69741),s=e.i(16795),l=e.i(87718),d=e.i(95169),c=e.i(47587),u=e.i(66012),p=e.i(70101),R=e.i(26937),g=e.i(10372),m=e.i(93695);e.i(52474);var h=e.i(220),v=e.i(89171);let w=Buffer.from("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","base64");e.s(["GET",0,function(){return new v.NextResponse(w,{headers:{"Content-Type":"image/x-icon","Cache-Control":"public, max-age=0, must-revalidate"}})},"dynamic",0,"force-static"],72039);var C=e.i(72039);let x=new t.AppRouteRouteModule({definition:{kind:r.RouteKind.APP_ROUTE,page:"/favicon.ico/route",pathname:"/favicon.ico",filename:"favicon.ico--route-entry",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/src/app/favicon.ico--route-entry.js",nextConfigOutput:"",userland:C,...{}}),{workAsyncStorage:y,workUnitAsyncStorage:E,serverHooks:G}=x;async function Z(e,t,a){a.requestMeta&&(0,n.setRequestMeta)(e,a.requestMeta),x.isDev&&(0,n.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let v="/favicon.ico/route";v=v.replace(/\/index$/,"")||"/";let w=await x.prepare(e,t,{srcPage:v,multiZoneDraftMode:!1});if(!w)return t.statusCode=400,t.end("Bad Request"),null==a.waitUntil||a.waitUntil.call(a,Promise.resolve()),null;let{buildId:C,deploymentId:y,params:E,nextConfig:G,parsedUrl:Z,isDraftMode:b,prerenderManifest:f,routerServerContext:P,isOnDemandRevalidate:I,revalidateOnlyGenerated:O,resolvedPathname:H,clientReferenceManifest:T,serverActionsManifest:U}=w,N=(0,i.normalizeAppPath)(v),B=!!(f.dynamicRoutes[N]||f.routes[H]),j=async()=>((null==P?void 0:P.render404)?await P.render404(e,t,Z,!1):t.end("This page could not be found"),null);if(B&&!b){let e=!!f.routes[H],t=f.dynamicRoutes[N];if(t&&!1===t.fallback&&!e){if(G.adapterPath)return await j();throw new m.NoFallbackError}}let Y=null;!B||x.isDev||b||(Y="/index"===(Y=H)?"/":Y);let D=!0===x.isDev||!B,M=B&&!D;U&&T&&(0,o.setManifestsSingleton)({page:v,clientReferenceManifest:T,serverActionsManifest:U});let S=e.method||"GET",W=(0,A.getTracer)(),F=W.getActiveScopeSpan(),J=!!(null==P?void 0:P.isWrappedByNextServer),k=!!(0,n.getRequestMeta)(e,"minimalMode"),Q=(0,n.getRequestMeta)(e,"incrementalCache")||await x.getIncrementalCache(e,G,f,k);null==Q||Q.resetRequestCache(),globalThis.__incrementalCache=Q;let K={params:E,previewProps:f.preview,renderOpts:{experimental:{authInterrupts:!!G.experimental.authInterrupts},cacheComponents:!!G.cacheComponents,supportsDynamicResponse:D,incrementalCache:Q,cacheLifeProfiles:G.cacheLife,waitUntil:a.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,r,a,n)=>x.onRequestError(e,t,a,n,P)},sharedContext:{buildId:C,deploymentId:y}},L=new s.NodeNextRequest(e),V=new s.NodeNextResponse(t),X=l.NextRequestAdapter.fromNodeNextRequest(L,(0,l.signalFromNodeResponse)(t));try{let n,o=async e=>x.handle(X,K).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let r=W.getRootSpanAttributes();if(!r)return;if(r.get("next.span_type")!==d.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${r.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let a=r.get("next.route");if(a){let t=`${S} ${a}`;e.setAttributes({"next.route":a,"http.route":a,"next.span_name":t}),e.updateName(t),n&&n!==e&&(n.setAttribute("http.route",a),n.updateName(t))}else e.updateName(`${S} ${v}`)}),i=async n=>{var A,i;let s=async({previousCacheEntry:r})=>{try{if(!k&&I&&O&&!r)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let A=await o(n);e.fetchMetrics=K.renderOpts.fetchMetrics;let i=K.renderOpts.pendingWaitUntil;i&&a.waitUntil&&(a.waitUntil(i),i=void 0);let s=K.renderOpts.collectedTags;if(!B)return await (0,u.sendResponse)(L,V,A,K.renderOpts.pendingWaitUntil),null;{let e=await A.blob(),t=(0,p.toNodeOutgoingHttpHeaders)(A.headers);s&&(t[g.NEXT_CACHE_TAGS_HEADER]=s),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let r=void 0!==K.renderOpts.collectedRevalidate&&!(K.renderOpts.collectedRevalidate>=g.INFINITE_CACHE)&&K.renderOpts.collectedRevalidate,a=void 0===K.renderOpts.collectedExpire||K.renderOpts.collectedExpire>=g.INFINITE_CACHE?void 0:K.renderOpts.collectedExpire;return{value:{kind:h.CachedRouteKind.APP_ROUTE,status:A.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:r,expire:a}}}}catch(t){throw(null==r?void 0:r.isStale)&&await x.onRequestError(e,t,{routerKind:"App Router",routePath:v,routeType:"route",revalidateReason:(0,c.getRevalidateReason)({isStaticGeneration:M,isOnDemandRevalidate:I})},!1,P),t}},l=await x.handleResponse({req:e,nextConfig:G,cacheKey:Y,routeKind:r.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:f,isRoutePPREnabled:!1,isOnDemandRevalidate:I,revalidateOnlyGenerated:O,responseGenerator:s,waitUntil:a.waitUntil,isMinimalMode:k});if(!B)return null;if((null==l||null==(A=l.value)?void 0:A.kind)!==h.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==l||null==(i=l.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});k||t.setHeader("x-nextjs-cache",I?"REVALIDATED":l.isMiss?"MISS":l.isStale?"STALE":"HIT"),b&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let d=(0,p.fromNodeOutgoingHttpHeaders)(l.value.headers);return k&&B||d.delete(g.NEXT_CACHE_TAGS_HEADER),!l.cacheControl||t.getHeader("Cache-Control")||d.get("Cache-Control")||d.set("Cache-Control",(0,R.getCacheControlHeader)(l.cacheControl)),await (0,u.sendResponse)(L,V,new Response(l.value.body,{headers:d,status:l.value.status||200})),null};J&&F?await i(F):(n=W.getActiveScopeSpan(),await W.withPropagatedContext(e.headers,()=>W.trace(d.BaseServerSpan.handleRequest,{spanName:`${S} ${v}`,kind:A.SpanKind.SERVER,attributes:{"http.method":S,"http.target":e.url}},i),void 0,!J))}catch(t){if(t instanceof m.NoFallbackError||await x.onRequestError(e,t,{routerKind:"App Router",routePath:N,routeType:"route",revalidateReason:(0,c.getRevalidateReason)({isStaticGeneration:M,isOnDemandRevalidate:I})},!1,P),B)throw t;return await (0,u.sendResponse)(L,V,new Response(null,{status:500})),null}}e.s(["handler",0,Z,"patchFetch",0,function(){return(0,a.patchFetch)({workAsyncStorage:y,workUnitAsyncStorage:E})},"routeModule",0,x,"serverHooks",0,G,"workAsyncStorage",0,y,"workUnitAsyncStorage",0,E],88165)}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__009pdeo._.js.map \ No newline at end of file diff --git a/.next/server/chunks/[root-of-the-server]__009pdeo._.js.map b/.next/server/chunks/[root-of-the-server]__009pdeo._.js.map new file mode 100644 index 0000000..0fb929f --- /dev/null +++ b/.next/server/chunks/[root-of-the-server]__009pdeo._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../node_modules/next/dist/esm/build/templates/app-route.js","../../../src/app/favicon.ico--route-entry.js"],"sourcesContent":["import { AppRouteRouteModule } from \"next/dist/esm/server/route-modules/app-route/module.compiled\";\nimport { RouteKind } from \"next/dist/esm/server/route-kind\";\nimport { patchFetch as _patchFetch } from \"next/dist/esm/server/lib/patch-fetch\";\nimport { addRequestMeta, getRequestMeta, setRequestMeta } from \"next/dist/esm/server/request-meta\";\nimport { getTracer, SpanKind } from \"next/dist/esm/server/lib/trace/tracer\";\nimport { setManifestsSingleton } from \"next/dist/esm/server/app-render/manifests-singleton\";\nimport { normalizeAppPath } from \"next/dist/esm/shared/lib/router/utils/app-paths\";\nimport { NodeNextRequest, NodeNextResponse } from \"next/dist/esm/server/base-http/node\";\nimport { NextRequestAdapter, signalFromNodeResponse } from \"next/dist/esm/server/web/spec-extension/adapters/next-request\";\nimport { BaseServerSpan } from \"next/dist/esm/server/lib/trace/constants\";\nimport { getRevalidateReason } from \"next/dist/esm/server/instrumentation/utils\";\nimport { sendResponse } from \"next/dist/esm/server/send-response\";\nimport { fromNodeOutgoingHttpHeaders, toNodeOutgoingHttpHeaders } from \"next/dist/esm/server/web/utils\";\nimport { getCacheControlHeader } from \"next/dist/esm/server/lib/cache-control\";\nimport { INFINITE_CACHE, NEXT_CACHE_TAGS_HEADER } from \"next/dist/esm/lib/constants\";\nimport { NoFallbackError } from \"next/dist/esm/shared/lib/no-fallback-error.external\";\nimport { CachedRouteKind } from \"next/dist/esm/server/response-cache\";\nimport * as userland from \"INNER_APP_ROUTE\";\n// We inject the nextConfigOutput here so that we can use them in the route\n// module.\nconst nextConfigOutput = \"\"\nconst routeModule = new AppRouteRouteModule({\n definition: {\n kind: RouteKind.APP_ROUTE,\n page: \"/favicon.ico/route\",\n pathname: \"/favicon.ico\",\n filename: \"favicon.ico--route-entry\",\n bundlePath: \"\"\n },\n distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',\n relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',\n resolvedPagePath: \"[project]/src/app/favicon.ico--route-entry.js\",\n nextConfigOutput,\n // The static import is used for initialization (methods, dynamic, etc.).\n userland: userland,\n // In Turbopack dev mode, also provide a getter that calls require() on every\n // request. This re-reads from devModuleCache so HMR updates are picked up,\n // and the async wrapper unwraps async-module Promises (ESM-only\n // serverExternalPackages) automatically.\n ...process.env.TURBOPACK && process.env.__NEXT_DEV_SERVER ? {\n getUserland: ()=>import(\"INNER_APP_ROUTE\")\n } : {}\n});\n// Pull out the exports that we need to expose from the module. This should\n// be eliminated when we've moved the other routes to the new format. These\n// are used to hook into the route.\nconst { workAsyncStorage, workUnitAsyncStorage, serverHooks } = routeModule;\nfunction patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage\n });\n}\nexport { routeModule, workAsyncStorage, workUnitAsyncStorage, serverHooks, patchFetch, };\nexport async function handler(req, res, ctx) {\n if (ctx.requestMeta) {\n setRequestMeta(req, ctx.requestMeta);\n }\n if (routeModule.isDev) {\n addRequestMeta(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint());\n }\n let srcPage = \"/favicon.ico/route\";\n // turbopack doesn't normalize `/index` in the page name\n // so we need to to process dynamic routes properly\n // TODO: fix turbopack providing differing value from webpack\n if (process.env.TURBOPACK) {\n srcPage = srcPage.replace(/\\/index$/, '') || '/';\n } else if (srcPage === '/index') {\n // we always normalize /index specifically\n srcPage = '/';\n }\n const multiZoneDraftMode = process.env.__NEXT_MULTI_ZONE_DRAFT_MODE;\n const prepareResult = await routeModule.prepare(req, res, {\n srcPage,\n multiZoneDraftMode\n });\n if (!prepareResult) {\n res.statusCode = 400;\n res.end('Bad Request');\n ctx.waitUntil == null ? void 0 : ctx.waitUntil.call(ctx, Promise.resolve());\n return null;\n }\n const { buildId, deploymentId, params, nextConfig, parsedUrl, isDraftMode, prerenderManifest, routerServerContext, isOnDemandRevalidate, revalidateOnlyGenerated, resolvedPathname, clientReferenceManifest, serverActionsManifest } = prepareResult;\n const normalizedSrcPage = normalizeAppPath(srcPage);\n let isIsr = Boolean(prerenderManifest.dynamicRoutes[normalizedSrcPage] || prerenderManifest.routes[resolvedPathname]);\n const render404 = async ()=>{\n // TODO: should route-module itself handle rendering the 404\n if (routerServerContext == null ? void 0 : routerServerContext.render404) {\n await routerServerContext.render404(req, res, parsedUrl, false);\n } else {\n res.end('This page could not be found');\n }\n return null;\n };\n if (isIsr && !isDraftMode) {\n const isPrerendered = Boolean(prerenderManifest.routes[resolvedPathname]);\n const prerenderInfo = prerenderManifest.dynamicRoutes[normalizedSrcPage];\n if (prerenderInfo) {\n if (prerenderInfo.fallback === false && !isPrerendered) {\n if (nextConfig.adapterPath) {\n return await render404();\n }\n throw new NoFallbackError();\n }\n }\n }\n let cacheKey = null;\n if (isIsr && !routeModule.isDev && !isDraftMode) {\n cacheKey = resolvedPathname;\n // ensure /index and / is normalized to one key\n cacheKey = cacheKey === '/index' ? '/' : cacheKey;\n }\n const supportsDynamicResponse = // If we're in development, we always support dynamic HTML\n routeModule.isDev === true || // If this is not SSG or does not have static paths, then it supports\n // dynamic HTML.\n !isIsr;\n // This is a revalidation request if the request is for a static\n // page and it is not being resumed from a postponed render and\n // it is not a dynamic RSC request then it is a revalidation\n // request.\n const isStaticGeneration = isIsr && !supportsDynamicResponse;\n // Before rendering (which initializes component tree modules), we have to\n // set the reference manifests to our global store so Server Action's\n // encryption util can access to them at the top level of the page module.\n if (serverActionsManifest && clientReferenceManifest) {\n setManifestsSingleton({\n page: srcPage,\n clientReferenceManifest,\n serverActionsManifest\n });\n }\n const method = req.method || 'GET';\n const tracer = getTracer();\n const activeSpan = tracer.getActiveScopeSpan();\n const isWrappedByNextServer = Boolean(routerServerContext == null ? void 0 : routerServerContext.isWrappedByNextServer);\n const isMinimalMode = Boolean(getRequestMeta(req, 'minimalMode'));\n const incrementalCache = getRequestMeta(req, 'incrementalCache') || await routeModule.getIncrementalCache(req, nextConfig, prerenderManifest, isMinimalMode);\n incrementalCache == null ? void 0 : incrementalCache.resetRequestCache();\n globalThis.__incrementalCache = incrementalCache;\n const context = {\n params,\n previewProps: prerenderManifest.preview,\n renderOpts: {\n experimental: {\n authInterrupts: Boolean(nextConfig.experimental.authInterrupts)\n },\n cacheComponents: Boolean(nextConfig.cacheComponents),\n supportsDynamicResponse,\n incrementalCache,\n cacheLifeProfiles: nextConfig.cacheLife,\n waitUntil: ctx.waitUntil,\n onClose: (cb)=>{\n res.on('close', cb);\n },\n onAfterTaskError: undefined,\n onInstrumentationRequestError: (error, _request, errorContext, silenceLog)=>routeModule.onRequestError(req, error, errorContext, silenceLog, routerServerContext)\n },\n sharedContext: {\n buildId,\n deploymentId\n }\n };\n const nodeNextReq = new NodeNextRequest(req);\n const nodeNextRes = new NodeNextResponse(res);\n const nextReq = NextRequestAdapter.fromNodeNextRequest(nodeNextReq, signalFromNodeResponse(res));\n try {\n let parentSpan;\n const invokeRouteModule = async (span)=>{\n return routeModule.handle(nextReq, context).finally(()=>{\n if (!span) return;\n span.setAttributes({\n 'http.status_code': res.statusCode,\n 'next.rsc': false\n });\n const rootSpanAttributes = tracer.getRootSpanAttributes();\n // We were unable to get attributes, probably OTEL is not enabled\n if (!rootSpanAttributes) {\n return;\n }\n if (rootSpanAttributes.get('next.span_type') !== BaseServerSpan.handleRequest) {\n console.warn(`Unexpected root span type '${rootSpanAttributes.get('next.span_type')}'. Please report this Next.js issue https://github.com/vercel/next.js`);\n return;\n }\n const route = rootSpanAttributes.get('next.route');\n if (route) {\n const name = `${method} ${route}`;\n span.setAttributes({\n 'next.route': route,\n 'http.route': route,\n 'next.span_name': name\n });\n span.updateName(name);\n // Propagate http.route to the parent span if one exists (e.g.\n // a platform-created HTTP span in adapter deployments).\n if (parentSpan && parentSpan !== span) {\n parentSpan.setAttribute('http.route', route);\n parentSpan.updateName(name);\n }\n } else {\n span.updateName(`${method} ${srcPage}`);\n }\n });\n };\n const handleResponse = async (currentSpan)=>{\n var _cacheEntry_value;\n const responseGenerator = async ({ previousCacheEntry })=>{\n try {\n if (!isMinimalMode && isOnDemandRevalidate && revalidateOnlyGenerated && !previousCacheEntry) {\n res.statusCode = 404;\n // on-demand revalidate always sets this header\n res.setHeader('x-nextjs-cache', 'REVALIDATED');\n res.end('This page could not be found');\n return null;\n }\n const response = await invokeRouteModule(currentSpan);\n req.fetchMetrics = context.renderOpts.fetchMetrics;\n let pendingWaitUntil = context.renderOpts.pendingWaitUntil;\n // Attempt using provided waitUntil if available\n // if it's not we fallback to sendResponse's handling\n if (pendingWaitUntil) {\n if (ctx.waitUntil) {\n ctx.waitUntil(pendingWaitUntil);\n pendingWaitUntil = undefined;\n }\n }\n const cacheTags = context.renderOpts.collectedTags;\n // If the request is for a static response, we can cache it so long\n // as it's not edge.\n if (isIsr) {\n const blob = await response.blob();\n // Copy the headers from the response.\n const headers = toNodeOutgoingHttpHeaders(response.headers);\n if (cacheTags) {\n headers[NEXT_CACHE_TAGS_HEADER] = cacheTags;\n }\n if (!headers['content-type'] && blob.type) {\n headers['content-type'] = blob.type;\n }\n const revalidate = typeof context.renderOpts.collectedRevalidate === 'undefined' || context.renderOpts.collectedRevalidate >= INFINITE_CACHE ? false : context.renderOpts.collectedRevalidate;\n const expire = typeof context.renderOpts.collectedExpire === 'undefined' || context.renderOpts.collectedExpire >= INFINITE_CACHE ? undefined : context.renderOpts.collectedExpire;\n // Create the cache entry for the response.\n const cacheEntry = {\n value: {\n kind: CachedRouteKind.APP_ROUTE,\n status: response.status,\n body: Buffer.from(await blob.arrayBuffer()),\n headers\n },\n cacheControl: {\n revalidate,\n expire\n }\n };\n return cacheEntry;\n } else {\n // send response without caching if not ISR\n await sendResponse(nodeNextReq, nodeNextRes, response, context.renderOpts.pendingWaitUntil);\n return null;\n }\n } catch (err) {\n // if this is a background revalidate we need to report\n // the request error here as it won't be bubbled\n if (previousCacheEntry == null ? void 0 : previousCacheEntry.isStale) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: srcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n throw err;\n }\n };\n const cacheEntry = await routeModule.handleResponse({\n req,\n nextConfig,\n cacheKey,\n routeKind: RouteKind.APP_ROUTE,\n isFallback: false,\n prerenderManifest,\n isRoutePPREnabled: false,\n isOnDemandRevalidate,\n revalidateOnlyGenerated,\n responseGenerator,\n waitUntil: ctx.waitUntil,\n isMinimalMode\n });\n // we don't create a cacheEntry for ISR\n if (!isIsr) {\n return null;\n }\n if ((cacheEntry == null ? void 0 : (_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) !== CachedRouteKind.APP_ROUTE) {\n var _cacheEntry_value1;\n throw Object.defineProperty(new Error(`Invariant: app-route received invalid cache entry ${cacheEntry == null ? void 0 : (_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind}`), \"__NEXT_ERROR_CODE\", {\n value: \"E701\",\n enumerable: false,\n configurable: true\n });\n }\n if (!isMinimalMode) {\n res.setHeader('x-nextjs-cache', isOnDemandRevalidate ? 'REVALIDATED' : cacheEntry.isMiss ? 'MISS' : cacheEntry.isStale ? 'STALE' : 'HIT');\n }\n // Draft mode should never be cached\n if (isDraftMode) {\n res.setHeader('Cache-Control', 'private, no-cache, no-store, max-age=0, must-revalidate');\n }\n const headers = fromNodeOutgoingHttpHeaders(cacheEntry.value.headers);\n if (!(isMinimalMode && isIsr)) {\n headers.delete(NEXT_CACHE_TAGS_HEADER);\n }\n // If cache control is already set on the response we don't\n // override it to allow users to customize it via next.config\n if (cacheEntry.cacheControl && !res.getHeader('Cache-Control') && !headers.get('Cache-Control')) {\n headers.set('Cache-Control', getCacheControlHeader(cacheEntry.cacheControl));\n }\n await sendResponse(nodeNextReq, nodeNextRes, // @ts-expect-error - Argument of type 'Buffer' is not assignable to parameter of type 'BodyInit | null | undefined'.\n new Response(cacheEntry.value.body, {\n headers,\n status: cacheEntry.value.status || 200\n }));\n return null;\n };\n // TODO: activeSpan code path is for when wrapped by\n // next-server can be removed when this is no longer used\n if (isWrappedByNextServer && activeSpan) {\n await handleResponse(activeSpan);\n } else {\n parentSpan = tracer.getActiveScopeSpan();\n await tracer.withPropagatedContext(req.headers, ()=>tracer.trace(BaseServerSpan.handleRequest, {\n spanName: `${method} ${srcPage}`,\n kind: SpanKind.SERVER,\n attributes: {\n 'http.method': method,\n 'http.target': req.url\n }\n }, handleResponse), undefined, !isWrappedByNextServer);\n }\n } catch (err) {\n if (!(err instanceof NoFallbackError)) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: normalizedSrcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n // rethrow so that we can handle serving error page\n // If this is during static generation, throw the error again.\n if (isIsr) throw err;\n // Otherwise, send a 500 response.\n await sendResponse(nodeNextReq, nodeNextRes, new Response(null, {\n status: 500\n }));\n return null;\n }\n}\n\n//# sourceMappingURL=app-route.js.map\n","import { NextResponse } from 'next/server'\n\nconst contentType = \"image/x-icon\"\nconst cacheControl = \"public, max-age=0, must-revalidate\"\nconst buffer = Buffer.from(\"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\", 'base64')\n\nexport function GET() {\n return new NextResponse(buffer, {\n headers: {\n 'Content-Type': contentType,\n 'Cache-Control': cacheControl,\n },\n })\n}\n\nexport const dynamic = 'force-static'\n"],"names":["contentType","cacheControl","buffer","Buffer","from","GET","headers","dynamic"],"mappings":"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","ignoreList":[0]} \ No newline at end of file diff --git a/.next/server/chunks/[root-of-the-server]__0j8-xkl._.js b/.next/server/chunks/[root-of-the-server]__0j8-xkl._.js new file mode 100644 index 0000000..f5f5aab --- /dev/null +++ b/.next/server/chunks/[root-of-the-server]__0j8-xkl._.js @@ -0,0 +1,13 @@ +module.exports=[61724,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-route-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-route-turbo.runtime.prod.js"))},47909,(e,t,r)=>{t.exports=e.r(61724)},17413,(e,t,r)=>{(()=>{"use strict";let r,n,a,i,o;var s,c,u,l,d,h,p,f,g,m,b,v,_,y,E,R,w={491:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ContextAPI=void 0;let n=r(223),a=r(172),i=r(930),o="context",s=new n.NoopContextManager;class c{static getInstance(){return this._instance||(this._instance=new c),this._instance}setGlobalContextManager(e){return(0,a.registerGlobal)(o,e,i.DiagAPI.instance())}active(){return this._getContextManager().active()}with(e,t,r,...n){return this._getContextManager().with(e,t,r,...n)}bind(e,t){return this._getContextManager().bind(e,t)}_getContextManager(){return(0,a.getGlobal)(o)||s}disable(){this._getContextManager().disable(),(0,a.unregisterGlobal)(o,i.DiagAPI.instance())}}t.ContextAPI=c},930:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DiagAPI=void 0;let n=r(56),a=r(912),i=r(957),o=r(172);class s{constructor(){function e(e){return function(...t){let r=(0,o.getGlobal)("diag");if(r)return r[e](...t)}}const t=this;t.setLogger=(e,r={logLevel:i.DiagLogLevel.INFO})=>{var n,s,c;if(e===t){let e=Error("Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation");return t.error(null!=(n=e.stack)?n:e.message),!1}"number"==typeof r&&(r={logLevel:r});let u=(0,o.getGlobal)("diag"),l=(0,a.createLogLevelDiagLogger)(null!=(s=r.logLevel)?s:i.DiagLogLevel.INFO,e);if(u&&!r.suppressOverrideMessage){let e=null!=(c=Error().stack)?c:"";u.warn(`Current logger will be overwritten from ${e}`),l.warn(`Current logger will overwrite one already registered from ${e}`)}return(0,o.registerGlobal)("diag",l,t,!0)},t.disable=()=>{(0,o.unregisterGlobal)("diag",t)},t.createComponentLogger=e=>new n.DiagComponentLogger(e),t.verbose=e("verbose"),t.debug=e("debug"),t.info=e("info"),t.warn=e("warn"),t.error=e("error")}static instance(){return this._instance||(this._instance=new s),this._instance}}t.DiagAPI=s},653:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.MetricsAPI=void 0;let n=r(660),a=r(172),i=r(930),o="metrics";class s{static getInstance(){return this._instance||(this._instance=new s),this._instance}setGlobalMeterProvider(e){return(0,a.registerGlobal)(o,e,i.DiagAPI.instance())}getMeterProvider(){return(0,a.getGlobal)(o)||n.NOOP_METER_PROVIDER}getMeter(e,t,r){return this.getMeterProvider().getMeter(e,t,r)}disable(){(0,a.unregisterGlobal)(o,i.DiagAPI.instance())}}t.MetricsAPI=s},181:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PropagationAPI=void 0;let n=r(172),a=r(874),i=r(194),o=r(277),s=r(369),c=r(930),u="propagation",l=new a.NoopTextMapPropagator;class d{constructor(){this.createBaggage=s.createBaggage,this.getBaggage=o.getBaggage,this.getActiveBaggage=o.getActiveBaggage,this.setBaggage=o.setBaggage,this.deleteBaggage=o.deleteBaggage}static getInstance(){return this._instance||(this._instance=new d),this._instance}setGlobalPropagator(e){return(0,n.registerGlobal)(u,e,c.DiagAPI.instance())}inject(e,t,r=i.defaultTextMapSetter){return this._getGlobalPropagator().inject(e,t,r)}extract(e,t,r=i.defaultTextMapGetter){return this._getGlobalPropagator().extract(e,t,r)}fields(){return this._getGlobalPropagator().fields()}disable(){(0,n.unregisterGlobal)(u,c.DiagAPI.instance())}_getGlobalPropagator(){return(0,n.getGlobal)(u)||l}}t.PropagationAPI=d},997:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.TraceAPI=void 0;let n=r(172),a=r(846),i=r(139),o=r(607),s=r(930),c="trace";class u{constructor(){this._proxyTracerProvider=new a.ProxyTracerProvider,this.wrapSpanContext=i.wrapSpanContext,this.isSpanContextValid=i.isSpanContextValid,this.deleteSpan=o.deleteSpan,this.getSpan=o.getSpan,this.getActiveSpan=o.getActiveSpan,this.getSpanContext=o.getSpanContext,this.setSpan=o.setSpan,this.setSpanContext=o.setSpanContext}static getInstance(){return this._instance||(this._instance=new u),this._instance}setGlobalTracerProvider(e){let t=(0,n.registerGlobal)(c,this._proxyTracerProvider,s.DiagAPI.instance());return t&&this._proxyTracerProvider.setDelegate(e),t}getTracerProvider(){return(0,n.getGlobal)(c)||this._proxyTracerProvider}getTracer(e,t){return this.getTracerProvider().getTracer(e,t)}disable(){(0,n.unregisterGlobal)(c,s.DiagAPI.instance()),this._proxyTracerProvider=new a.ProxyTracerProvider}}t.TraceAPI=u},277:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.deleteBaggage=t.setBaggage=t.getActiveBaggage=t.getBaggage=void 0;let n=r(491),a=(0,r(780).createContextKey)("OpenTelemetry Baggage Key");function i(e){return e.getValue(a)||void 0}t.getBaggage=i,t.getActiveBaggage=function(){return i(n.ContextAPI.getInstance().active())},t.setBaggage=function(e,t){return e.setValue(a,t)},t.deleteBaggage=function(e){return e.deleteValue(a)}},993:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.BaggageImpl=void 0;class r{constructor(e){this._entries=e?new Map(e):new Map}getEntry(e){let t=this._entries.get(e);if(t)return Object.assign({},t)}getAllEntries(){return Array.from(this._entries.entries()).map(([e,t])=>[e,t])}setEntry(e,t){let n=new r(this._entries);return n._entries.set(e,t),n}removeEntry(e){let t=new r(this._entries);return t._entries.delete(e),t}removeEntries(...e){let t=new r(this._entries);for(let r of e)t._entries.delete(r);return t}clear(){return new r}}t.BaggageImpl=r},830:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.baggageEntryMetadataSymbol=void 0,t.baggageEntryMetadataSymbol=Symbol("BaggageEntryMetadata")},369:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.baggageEntryMetadataFromString=t.createBaggage=void 0;let n=r(930),a=r(993),i=r(830),o=n.DiagAPI.instance();t.createBaggage=function(e={}){return new a.BaggageImpl(new Map(Object.entries(e)))},t.baggageEntryMetadataFromString=function(e){return"string"!=typeof e&&(o.error(`Cannot create baggage metadata from unknown type: ${typeof e}`),e=""),{__TYPE__:i.baggageEntryMetadataSymbol,toString:()=>e}}},67:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.context=void 0,t.context=r(491).ContextAPI.getInstance()},223:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NoopContextManager=void 0;let n=r(780);t.NoopContextManager=class{active(){return n.ROOT_CONTEXT}with(e,t,r,...n){return t.call(r,...n)}bind(e,t){return t}enable(){return this}disable(){return this}}},780:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ROOT_CONTEXT=t.createContextKey=void 0,t.createContextKey=function(e){return Symbol.for(e)};class r{constructor(e){const t=this;t._currentContext=e?new Map(e):new Map,t.getValue=e=>t._currentContext.get(e),t.setValue=(e,n)=>{let a=new r(t._currentContext);return a._currentContext.set(e,n),a},t.deleteValue=e=>{let n=new r(t._currentContext);return n._currentContext.delete(e),n}}}t.ROOT_CONTEXT=new r},506:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.diag=void 0,t.diag=r(930).DiagAPI.instance()},56:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DiagComponentLogger=void 0;let n=r(172);function a(e,t,r){let a=(0,n.getGlobal)("diag");if(a)return r.unshift(t),a[e](...r)}t.DiagComponentLogger=class{constructor(e){this._namespace=e.namespace||"DiagComponentLogger"}debug(...e){return a("debug",this._namespace,e)}error(...e){return a("error",this._namespace,e)}info(...e){return a("info",this._namespace,e)}warn(...e){return a("warn",this._namespace,e)}verbose(...e){return a("verbose",this._namespace,e)}}},972:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DiagConsoleLogger=void 0;let r=[{n:"error",c:"error"},{n:"warn",c:"warn"},{n:"info",c:"info"},{n:"debug",c:"debug"},{n:"verbose",c:"trace"}];t.DiagConsoleLogger=class{constructor(){for(let e=0;e{Object.defineProperty(t,"__esModule",{value:!0}),t.createLogLevelDiagLogger=void 0;let n=r(957);t.createLogLevelDiagLogger=function(e,t){function r(r,n){let a=t[r];return"function"==typeof a&&e>=n?a.bind(t):function(){}}return en.DiagLogLevel.ALL&&(e=n.DiagLogLevel.ALL),t=t||{},{error:r("error",n.DiagLogLevel.ERROR),warn:r("warn",n.DiagLogLevel.WARN),info:r("info",n.DiagLogLevel.INFO),debug:r("debug",n.DiagLogLevel.DEBUG),verbose:r("verbose",n.DiagLogLevel.VERBOSE)}}},957:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.DiagLogLevel=void 0,(r=t.DiagLogLevel||(t.DiagLogLevel={}))[r.NONE=0]="NONE",r[r.ERROR=30]="ERROR",r[r.WARN=50]="WARN",r[r.INFO=60]="INFO",r[r.DEBUG=70]="DEBUG",r[r.VERBOSE=80]="VERBOSE",r[r.ALL=9999]="ALL"},172:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.unregisterGlobal=t.getGlobal=t.registerGlobal=void 0;let n=r(200),a=r(521),i=r(130),o=a.VERSION.split(".")[0],s=Symbol.for(`opentelemetry.js.api.${o}`),c=n._globalThis;t.registerGlobal=function(e,t,r,n=!1){var i;let o=c[s]=null!=(i=c[s])?i:{version:a.VERSION};if(!n&&o[e]){let t=Error(`@opentelemetry/api: Attempted duplicate registration of API: ${e}`);return r.error(t.stack||t.message),!1}if(o.version!==a.VERSION){let t=Error(`@opentelemetry/api: Registration of version v${o.version} for ${e} does not match previously registered API v${a.VERSION}`);return r.error(t.stack||t.message),!1}return o[e]=t,r.debug(`@opentelemetry/api: Registered a global for ${e} v${a.VERSION}.`),!0},t.getGlobal=function(e){var t,r;let n=null==(t=c[s])?void 0:t.version;if(n&&(0,i.isCompatible)(n))return null==(r=c[s])?void 0:r[e]},t.unregisterGlobal=function(e,t){t.debug(`@opentelemetry/api: Unregistering a global for ${e} v${a.VERSION}.`);let r=c[s];r&&delete r[e]}},130:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.isCompatible=t._makeCompatibilityCheck=void 0;let n=r(521),a=/^(\d+)\.(\d+)\.(\d+)(-(.+))?$/;function i(e){let t=new Set([e]),r=new Set,n=e.match(a);if(!n)return()=>!1;let i={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(null!=i.prerelease)return function(t){return t===e};function o(e){return r.add(e),!1}return function(e){if(t.has(e))return!0;if(r.has(e))return!1;let n=e.match(a);if(!n)return o(e);let s={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(null!=s.prerelease||i.major!==s.major)return o(e);if(0===i.major)return i.minor===s.minor&&i.patch<=s.patch?(t.add(e),!0):o(e);return i.minor<=s.minor?(t.add(e),!0):o(e)}}t._makeCompatibilityCheck=i,t.isCompatible=i(n.VERSION)},886:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.metrics=void 0,t.metrics=r(653).MetricsAPI.getInstance()},901:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.ValueType=void 0,(r=t.ValueType||(t.ValueType={}))[r.INT=0]="INT",r[r.DOUBLE=1]="DOUBLE"},102:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.createNoopMeter=t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=t.NOOP_OBSERVABLE_GAUGE_METRIC=t.NOOP_OBSERVABLE_COUNTER_METRIC=t.NOOP_UP_DOWN_COUNTER_METRIC=t.NOOP_HISTOGRAM_METRIC=t.NOOP_COUNTER_METRIC=t.NOOP_METER=t.NoopObservableUpDownCounterMetric=t.NoopObservableGaugeMetric=t.NoopObservableCounterMetric=t.NoopObservableMetric=t.NoopHistogramMetric=t.NoopUpDownCounterMetric=t.NoopCounterMetric=t.NoopMetric=t.NoopMeter=void 0;class r{createHistogram(e,r){return t.NOOP_HISTOGRAM_METRIC}createCounter(e,r){return t.NOOP_COUNTER_METRIC}createUpDownCounter(e,r){return t.NOOP_UP_DOWN_COUNTER_METRIC}createObservableGauge(e,r){return t.NOOP_OBSERVABLE_GAUGE_METRIC}createObservableCounter(e,r){return t.NOOP_OBSERVABLE_COUNTER_METRIC}createObservableUpDownCounter(e,r){return t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC}addBatchObservableCallback(e,t){}removeBatchObservableCallback(e){}}t.NoopMeter=r;class n{}t.NoopMetric=n;class a extends n{add(e,t){}}t.NoopCounterMetric=a;class i extends n{add(e,t){}}t.NoopUpDownCounterMetric=i;class o extends n{record(e,t){}}t.NoopHistogramMetric=o;class s{addCallback(e){}removeCallback(e){}}t.NoopObservableMetric=s;class c extends s{}t.NoopObservableCounterMetric=c;class u extends s{}t.NoopObservableGaugeMetric=u;class l extends s{}t.NoopObservableUpDownCounterMetric=l,t.NOOP_METER=new r,t.NOOP_COUNTER_METRIC=new a,t.NOOP_HISTOGRAM_METRIC=new o,t.NOOP_UP_DOWN_COUNTER_METRIC=new i,t.NOOP_OBSERVABLE_COUNTER_METRIC=new c,t.NOOP_OBSERVABLE_GAUGE_METRIC=new u,t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=new l,t.createNoopMeter=function(){return t.NOOP_METER}},660:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NOOP_METER_PROVIDER=t.NoopMeterProvider=void 0;let n=r(102);class a{getMeter(e,t,r){return n.NOOP_METER}}t.NoopMeterProvider=a,t.NOOP_METER_PROVIDER=new a},200:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),a=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),a(r(46),t)},651:(t,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r._globalThis=void 0,r._globalThis="object"==typeof globalThis?globalThis:e.g},46:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),a=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),a(r(651),t)},939:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.propagation=void 0,t.propagation=r(181).PropagationAPI.getInstance()},874:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NoopTextMapPropagator=void 0,t.NoopTextMapPropagator=class{inject(e,t){}extract(e,t){return e}fields(){return[]}}},194:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.defaultTextMapSetter=t.defaultTextMapGetter=void 0,t.defaultTextMapGetter={get(e,t){if(null!=e)return e[t]},keys:e=>null==e?[]:Object.keys(e)},t.defaultTextMapSetter={set(e,t,r){null!=e&&(e[t]=r)}}},845:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.trace=void 0,t.trace=r(997).TraceAPI.getInstance()},403:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NonRecordingSpan=void 0;let n=r(476);t.NonRecordingSpan=class{constructor(e=n.INVALID_SPAN_CONTEXT){this._spanContext=e}spanContext(){return this._spanContext}setAttribute(e,t){return this}setAttributes(e){return this}addEvent(e,t){return this}setStatus(e){return this}updateName(e){return this}end(e){}isRecording(){return!1}recordException(e,t){}}},614:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NoopTracer=void 0;let n=r(491),a=r(607),i=r(403),o=r(139),s=n.ContextAPI.getInstance();t.NoopTracer=class{startSpan(e,t,r=s.active()){var n;if(null==t?void 0:t.root)return new i.NonRecordingSpan;let c=r&&(0,a.getSpanContext)(r);return"object"==typeof(n=c)&&"string"==typeof n.spanId&&"string"==typeof n.traceId&&"number"==typeof n.traceFlags&&(0,o.isSpanContextValid)(c)?new i.NonRecordingSpan(c):new i.NonRecordingSpan}startActiveSpan(e,t,r,n){let i,o,c;if(arguments.length<2)return;2==arguments.length?c=t:3==arguments.length?(i=t,c=r):(i=t,o=r,c=n);let u=null!=o?o:s.active(),l=this.startSpan(e,i,u),d=(0,a.setSpan)(u,l);return s.with(d,c,void 0,l)}}},124:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NoopTracerProvider=void 0;let n=r(614);t.NoopTracerProvider=class{getTracer(e,t,r){return new n.NoopTracer}}},125:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ProxyTracer=void 0;let n=new(r(614)).NoopTracer;t.ProxyTracer=class{constructor(e,t,r,n){this._provider=e,this.name=t,this.version=r,this.options=n}startSpan(e,t,r){return this._getTracer().startSpan(e,t,r)}startActiveSpan(e,t,r,n){let a=this._getTracer();return Reflect.apply(a.startActiveSpan,a,arguments)}_getTracer(){if(this._delegate)return this._delegate;let e=this._provider.getDelegateTracer(this.name,this.version,this.options);return e?(this._delegate=e,this._delegate):n}}},846:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ProxyTracerProvider=void 0;let n=r(125),a=new(r(124)).NoopTracerProvider;t.ProxyTracerProvider=class{getTracer(e,t,r){var a;return null!=(a=this.getDelegateTracer(e,t,r))?a:new n.ProxyTracer(this,e,t,r)}getDelegate(){var e;return null!=(e=this._delegate)?e:a}setDelegate(e){this._delegate=e}getDelegateTracer(e,t,r){var n;return null==(n=this._delegate)?void 0:n.getTracer(e,t,r)}}},996:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.SamplingDecision=void 0,(r=t.SamplingDecision||(t.SamplingDecision={}))[r.NOT_RECORD=0]="NOT_RECORD",r[r.RECORD=1]="RECORD",r[r.RECORD_AND_SAMPLED=2]="RECORD_AND_SAMPLED"},607:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getSpanContext=t.setSpanContext=t.deleteSpan=t.setSpan=t.getActiveSpan=t.getSpan=void 0;let n=r(780),a=r(403),i=r(491),o=(0,n.createContextKey)("OpenTelemetry Context Key SPAN");function s(e){return e.getValue(o)||void 0}function c(e,t){return e.setValue(o,t)}t.getSpan=s,t.getActiveSpan=function(){return s(i.ContextAPI.getInstance().active())},t.setSpan=c,t.deleteSpan=function(e){return e.deleteValue(o)},t.setSpanContext=function(e,t){return c(e,new a.NonRecordingSpan(t))},t.getSpanContext=function(e){var t;return null==(t=s(e))?void 0:t.spanContext()}},325:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.TraceStateImpl=void 0;let n=r(564);class a{constructor(e){this._internalState=new Map,e&&this._parse(e)}set(e,t){let r=this._clone();return r._internalState.has(e)&&r._internalState.delete(e),r._internalState.set(e,t),r}unset(e){let t=this._clone();return t._internalState.delete(e),t}get(e){return this._internalState.get(e)}serialize(){return this._keys().reduce((e,t)=>(e.push(t+"="+this.get(t)),e),[]).join(",")}_parse(e){!(e.length>512)&&(this._internalState=e.split(",").reverse().reduce((e,t)=>{let r=t.trim(),a=r.indexOf("=");if(-1!==a){let i=r.slice(0,a),o=r.slice(a+1,t.length);(0,n.validateKey)(i)&&(0,n.validateValue)(o)&&e.set(i,o)}return e},new Map),this._internalState.size>32&&(this._internalState=new Map(Array.from(this._internalState.entries()).reverse().slice(0,32))))}_keys(){return Array.from(this._internalState.keys()).reverse()}_clone(){let e=new a;return e._internalState=new Map(this._internalState),e}}t.TraceStateImpl=a},564:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.validateValue=t.validateKey=void 0;let r="[_0-9a-z-*/]",n=`[a-z]${r}{0,255}`,a=`[a-z0-9]${r}{0,240}@[a-z]${r}{0,13}`,i=RegExp(`^(?:${n}|${a})$`),o=/^[ -~]{0,255}[!-~]$/,s=/,|=/;t.validateKey=function(e){return i.test(e)},t.validateValue=function(e){return o.test(e)&&!s.test(e)}},98:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.createTraceState=void 0;let n=r(325);t.createTraceState=function(e){return new n.TraceStateImpl(e)}},476:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.INVALID_SPAN_CONTEXT=t.INVALID_TRACEID=t.INVALID_SPANID=void 0;let n=r(475);t.INVALID_SPANID="0000000000000000",t.INVALID_TRACEID="00000000000000000000000000000000",t.INVALID_SPAN_CONTEXT={traceId:t.INVALID_TRACEID,spanId:t.INVALID_SPANID,traceFlags:n.TraceFlags.NONE}},357:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.SpanKind=void 0,(r=t.SpanKind||(t.SpanKind={}))[r.INTERNAL=0]="INTERNAL",r[r.SERVER=1]="SERVER",r[r.CLIENT=2]="CLIENT",r[r.PRODUCER=3]="PRODUCER",r[r.CONSUMER=4]="CONSUMER"},139:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.wrapSpanContext=t.isSpanContextValid=t.isValidSpanId=t.isValidTraceId=void 0;let n=r(476),a=r(403),i=/^([0-9a-f]{32})$/i,o=/^[0-9a-f]{16}$/i;function s(e){return i.test(e)&&e!==n.INVALID_TRACEID}function c(e){return o.test(e)&&e!==n.INVALID_SPANID}t.isValidTraceId=s,t.isValidSpanId=c,t.isSpanContextValid=function(e){return s(e.traceId)&&c(e.spanId)},t.wrapSpanContext=function(e){return new a.NonRecordingSpan(e)}},847:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.SpanStatusCode=void 0,(r=t.SpanStatusCode||(t.SpanStatusCode={}))[r.UNSET=0]="UNSET",r[r.OK=1]="OK",r[r.ERROR=2]="ERROR"},475:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.TraceFlags=void 0,(r=t.TraceFlags||(t.TraceFlags={}))[r.NONE=0]="NONE",r[r.SAMPLED=1]="SAMPLED"},521:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.VERSION=void 0,t.VERSION="1.6.0"}},S={};function x(e){var t=S[e];if(void 0!==t)return t.exports;var r=S[e]={exports:{}},n=!0;try{w[e].call(r.exports,r,r.exports,x),n=!1}finally{n&&delete S[e]}return r.exports}x.ab="/ROOT/node_modules/next/dist/compiled/@opentelemetry/api/";var O={};Object.defineProperty(O,"__esModule",{value:!0}),O.trace=O.propagation=O.metrics=O.diag=O.context=O.INVALID_SPAN_CONTEXT=O.INVALID_TRACEID=O.INVALID_SPANID=O.isValidSpanId=O.isValidTraceId=O.isSpanContextValid=O.createTraceState=O.TraceFlags=O.SpanStatusCode=O.SpanKind=O.SamplingDecision=O.ProxyTracerProvider=O.ProxyTracer=O.defaultTextMapSetter=O.defaultTextMapGetter=O.ValueType=O.createNoopMeter=O.DiagLogLevel=O.DiagConsoleLogger=O.ROOT_CONTEXT=O.createContextKey=O.baggageEntryMetadataFromString=void 0,s=x(369),Object.defineProperty(O,"baggageEntryMetadataFromString",{enumerable:!0,get:function(){return s.baggageEntryMetadataFromString}}),c=x(780),Object.defineProperty(O,"createContextKey",{enumerable:!0,get:function(){return c.createContextKey}}),Object.defineProperty(O,"ROOT_CONTEXT",{enumerable:!0,get:function(){return c.ROOT_CONTEXT}}),u=x(972),Object.defineProperty(O,"DiagConsoleLogger",{enumerable:!0,get:function(){return u.DiagConsoleLogger}}),l=x(957),Object.defineProperty(O,"DiagLogLevel",{enumerable:!0,get:function(){return l.DiagLogLevel}}),d=x(102),Object.defineProperty(O,"createNoopMeter",{enumerable:!0,get:function(){return d.createNoopMeter}}),h=x(901),Object.defineProperty(O,"ValueType",{enumerable:!0,get:function(){return h.ValueType}}),p=x(194),Object.defineProperty(O,"defaultTextMapGetter",{enumerable:!0,get:function(){return p.defaultTextMapGetter}}),Object.defineProperty(O,"defaultTextMapSetter",{enumerable:!0,get:function(){return p.defaultTextMapSetter}}),f=x(125),Object.defineProperty(O,"ProxyTracer",{enumerable:!0,get:function(){return f.ProxyTracer}}),g=x(846),Object.defineProperty(O,"ProxyTracerProvider",{enumerable:!0,get:function(){return g.ProxyTracerProvider}}),m=x(996),Object.defineProperty(O,"SamplingDecision",{enumerable:!0,get:function(){return m.SamplingDecision}}),b=x(357),Object.defineProperty(O,"SpanKind",{enumerable:!0,get:function(){return b.SpanKind}}),v=x(847),Object.defineProperty(O,"SpanStatusCode",{enumerable:!0,get:function(){return v.SpanStatusCode}}),_=x(475),Object.defineProperty(O,"TraceFlags",{enumerable:!0,get:function(){return _.TraceFlags}}),y=x(98),Object.defineProperty(O,"createTraceState",{enumerable:!0,get:function(){return y.createTraceState}}),E=x(139),Object.defineProperty(O,"isSpanContextValid",{enumerable:!0,get:function(){return E.isSpanContextValid}}),Object.defineProperty(O,"isValidTraceId",{enumerable:!0,get:function(){return E.isValidTraceId}}),Object.defineProperty(O,"isValidSpanId",{enumerable:!0,get:function(){return E.isValidSpanId}}),R=x(476),Object.defineProperty(O,"INVALID_SPANID",{enumerable:!0,get:function(){return R.INVALID_SPANID}}),Object.defineProperty(O,"INVALID_TRACEID",{enumerable:!0,get:function(){return R.INVALID_TRACEID}}),Object.defineProperty(O,"INVALID_SPAN_CONTEXT",{enumerable:!0,get:function(){return R.INVALID_SPAN_CONTEXT}}),r=x(67),Object.defineProperty(O,"context",{enumerable:!0,get:function(){return r.context}}),n=x(506),Object.defineProperty(O,"diag",{enumerable:!0,get:function(){return n.diag}}),a=x(886),Object.defineProperty(O,"metrics",{enumerable:!0,get:function(){return a.metrics}}),i=x(939),Object.defineProperty(O,"propagation",{enumerable:!0,get:function(){return i.propagation}}),o=x(845),Object.defineProperty(O,"trace",{enumerable:!0,get:function(){return o.trace}}),O.default={context:r.context,diag:n.diag,metrics:a.metrics,propagation:i.propagation,trace:o.trace},t.exports=O})()},42315,(e,t,r)=>{"use strict";t.exports=e.r(18622)},47540,(e,t,r)=>{"use strict";t.exports=e.r(42315).vendored["react-rsc"].React},19481,(e,t,r)=>{"use strict";var n=Object.defineProperty,a=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,o=Object.prototype.hasOwnProperty,s={},c={RequestCookies:()=>g,ResponseCookies:()=>m,parseCookie:()=>d,parseSetCookie:()=>h,stringifyCookie:()=>l};for(var u in c)n(s,u,{get:c[u],enumerable:!0});function l(e){var t;let r=["path"in e&&e.path&&`Path=${e.path}`,"expires"in e&&(e.expires||0===e.expires)&&`Expires=${("number"==typeof e.expires?new Date(e.expires):e.expires).toUTCString()}`,"maxAge"in e&&"number"==typeof e.maxAge&&`Max-Age=${e.maxAge}`,"domain"in e&&e.domain&&`Domain=${e.domain}`,"secure"in e&&e.secure&&"Secure","httpOnly"in e&&e.httpOnly&&"HttpOnly","sameSite"in e&&e.sameSite&&`SameSite=${e.sameSite}`,"partitioned"in e&&e.partitioned&&"Partitioned","priority"in e&&e.priority&&`Priority=${e.priority}`].filter(Boolean),n=`${e.name}=${encodeURIComponent(null!=(t=e.value)?t:"")}`;return 0===r.length?n:`${n}; ${r.join("; ")}`}function d(e){let t=new Map;for(let r of e.split(/; */)){if(!r)continue;let e=r.indexOf("=");if(-1===e){t.set(r,"true");continue}let[n,a]=[r.slice(0,e),r.slice(e+1)];try{t.set(n,decodeURIComponent(null!=a?a:"true"))}catch{}}return t}function h(e){if(!e)return;let[[t,r],...n]=d(e),{domain:a,expires:i,httponly:o,maxage:s,path:c,samesite:u,secure:l,partitioned:h,priority:g}=Object.fromEntries(n.map(([e,t])=>[e.toLowerCase().replace(/-/g,""),t]));{var m,b,v={name:t,value:decodeURIComponent(r),domain:a,...i&&{expires:new Date(i)},...o&&{httpOnly:!0},..."string"==typeof s&&{maxAge:Number(s)},path:c,...u&&{sameSite:p.includes(m=(m=u).toLowerCase())?m:void 0},...l&&{secure:!0},...g&&{priority:f.includes(b=(b=g).toLowerCase())?b:void 0},...h&&{partitioned:!0}};let e={};for(let t in v)v[t]&&(e[t]=v[t]);return e}}t.exports=((e,t,r,s)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let c of i(t))o.call(e,c)||c===r||n(e,c,{get:()=>t[c],enumerable:!(s=a(t,c))||s.enumerable});return e})(n({},"__esModule",{value:!0}),s);var p=["strict","lax","none"],f=["low","medium","high"],g=class{constructor(e){this._parsed=new Map,this._headers=e;const t=e.get("cookie");if(t)for(const[e,r]of d(t))this._parsed.set(e,{name:e,value:r})}[Symbol.iterator](){return this._parsed[Symbol.iterator]()}get size(){return this._parsed.size}get(...e){let t="string"==typeof e[0]?e[0]:e[0].name;return this._parsed.get(t)}getAll(...e){var t;let r=Array.from(this._parsed);if(!e.length)return r.map(([e,t])=>t);let n="string"==typeof e[0]?e[0]:null==(t=e[0])?void 0:t.name;return r.filter(([e])=>e===n).map(([e,t])=>t)}has(e){return this._parsed.has(e)}set(...e){let[t,r]=1===e.length?[e[0].name,e[0].value]:e,n=this._parsed;return n.set(t,{name:t,value:r}),this._headers.set("cookie",Array.from(n).map(([e,t])=>l(t)).join("; ")),this}delete(e){let t=this._parsed,r=Array.isArray(e)?e.map(e=>t.delete(e)):t.delete(e);return this._headers.set("cookie",Array.from(t).map(([e,t])=>l(t)).join("; ")),r}clear(){return this.delete(Array.from(this._parsed.keys())),this}[Symbol.for("edge-runtime.inspect.custom")](){return`RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`}toString(){return[...this._parsed.values()].map(e=>`${e.name}=${encodeURIComponent(e.value)}`).join("; ")}},m=class{constructor(e){var t,r,n;this._parsed=new Map,this._headers=e;const a=null!=(n=null!=(r=null==(t=e.getSetCookie)?void 0:t.call(e))?r:e.get("set-cookie"))?n:[];for(const e of Array.isArray(a)?a:function(e){if(!e)return[];var t,r,n,a,i,o=[],s=0;function c(){for(;s=e.length)&&o.push(e.substring(t,e.length))}return o}(a)){const t=h(e);t&&this._parsed.set(t.name,t)}}get(...e){let t="string"==typeof e[0]?e[0]:e[0].name;return this._parsed.get(t)}getAll(...e){var t;let r=Array.from(this._parsed.values());if(!e.length)return r;let n="string"==typeof e[0]?e[0]:null==(t=e[0])?void 0:t.name;return r.filter(e=>e.name===n)}has(e){return this._parsed.has(e)}set(...e){let[t,r,n]=1===e.length?[e[0].name,e[0].value,e[0]]:e,a=this._parsed;return a.set(t,function(e={name:"",value:""}){return"number"==typeof e.expires&&(e.expires=new Date(e.expires)),e.maxAge&&(e.expires=new Date(Date.now()+1e3*e.maxAge)),(null===e.path||void 0===e.path)&&(e.path="/"),e}({name:t,value:r,...n})),function(e,t){for(let[,r]of(t.delete("set-cookie"),e)){let e=l(r);t.append("set-cookie",e)}}(a,this._headers),this}delete(...e){let[t,r]="string"==typeof e[0]?[e[0]]:[e[0].name,e[0]];return this.set({...r,name:t,value:"",expires:new Date(0)})}[Symbol.for("edge-runtime.inspect.custom")](){return`ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`}toString(){return[...this._parsed.values()].map(l).join("; ")}}},93118,(e,t,r)=>{(()=>{"use strict";"u">typeof __nccwpck_require__&&(__nccwpck_require__.ab="/ROOT/node_modules/next/dist/compiled/cookie/");var e,r,n,a,i={};i.parse=function(t,r){if("string"!=typeof t)throw TypeError("argument str must be a string");for(var a={},i=t.split(n),o=(r||{}).decode||e,s=0;s{"use strict";let t,r,n;var a,i,o,s,c,u,l,d,h,p,f,g,m,b,v,_,y,E,R,w=((y={}).PAGES="PAGES",y.PAGES_API="PAGES_API",y.APP_PAGE="APP_PAGE",y.APP_ROUTE="APP_ROUTE",y.IMAGE="IMAGE",y);e.s(["RouteKind",0,w],74017);var S=((a=S||{}).handleRequest="BaseServer.handleRequest",a.run="BaseServer.run",a.pipe="BaseServer.pipe",a.getStaticHTML="BaseServer.getStaticHTML",a.render="BaseServer.render",a.renderToResponseWithComponents="BaseServer.renderToResponseWithComponents",a.renderToResponse="BaseServer.renderToResponse",a.renderToHTML="BaseServer.renderToHTML",a.renderError="BaseServer.renderError",a.renderErrorToResponse="BaseServer.renderErrorToResponse",a.renderErrorToHTML="BaseServer.renderErrorToHTML",a.render404="BaseServer.render404",a),x=((i=x||{}).loadDefaultErrorComponents="LoadComponents.loadDefaultErrorComponents",i.loadComponents="LoadComponents.loadComponents",i),O=((o=O||{}).getRequestHandler="NextServer.getRequestHandler",o.getRequestHandlerWithMetadata="NextServer.getRequestHandlerWithMetadata",o.getServer="NextServer.getServer",o.getServerRequestHandler="NextServer.getServerRequestHandler",o.createServer="createServer.createServer",o),P=((s=P||{}).compression="NextNodeServer.compression",s.getBuildId="NextNodeServer.getBuildId",s.createComponentTree="NextNodeServer.createComponentTree",s.clientComponentLoading="NextNodeServer.clientComponentLoading",s.getLayoutOrPageModule="NextNodeServer.getLayoutOrPageModule",s.generateStaticRoutes="NextNodeServer.generateStaticRoutes",s.generateFsStaticRoutes="NextNodeServer.generateFsStaticRoutes",s.generatePublicRoutes="NextNodeServer.generatePublicRoutes",s.generateImageRoutes="NextNodeServer.generateImageRoutes.route",s.sendRenderResult="NextNodeServer.sendRenderResult",s.proxyRequest="NextNodeServer.proxyRequest",s.runApi="NextNodeServer.runApi",s.render="NextNodeServer.render",s.renderHTML="NextNodeServer.renderHTML",s.imageOptimizer="NextNodeServer.imageOptimizer",s.getPagePath="NextNodeServer.getPagePath",s.getRoutesManifest="NextNodeServer.getRoutesManifest",s.findPageComponents="NextNodeServer.findPageComponents",s.getFontManifest="NextNodeServer.getFontManifest",s.getServerComponentManifest="NextNodeServer.getServerComponentManifest",s.getRequestHandler="NextNodeServer.getRequestHandler",s.renderToHTML="NextNodeServer.renderToHTML",s.renderError="NextNodeServer.renderError",s.renderErrorToHTML="NextNodeServer.renderErrorToHTML",s.render404="NextNodeServer.render404",s.startResponse="NextNodeServer.startResponse",s.route="route",s.onProxyReq="onProxyReq",s.apiResolver="apiResolver",s.internalFetch="internalFetch",s),T=((c=T||{}).startServer="startServer.startServer",c),N=((u=N||{}).getServerSideProps="Render.getServerSideProps",u.getStaticProps="Render.getStaticProps",u.renderToString="Render.renderToString",u.renderDocument="Render.renderDocument",u.createBodyResult="Render.createBodyResult",u),A=((l=A||{}).renderToString="AppRender.renderToString",l.renderToReadableStream="AppRender.renderToReadableStream",l.getBodyResult="AppRender.getBodyResult",l.fetch="AppRender.fetch",l),C=((d=C||{}).executeRoute="Router.executeRoute",d),I=((h=I||{}).runHandler="Node.runHandler",h),D=((p=D||{}).runHandler="AppRouteRouteHandlers.runHandler",p),j=((f=j||{}).generateMetadata="ResolveMetadata.generateMetadata",f.generateViewport="ResolveMetadata.generateViewport",f),M=((g=M||{}).execute="Middleware.execute",g);let L=new Set(["Middleware.execute","BaseServer.handleRequest","Render.getServerSideProps","Render.getStaticProps","AppRender.fetch","AppRender.getBodyResult","Render.renderDocument","Node.runHandler","AppRouteRouteHandlers.runHandler","ResolveMetadata.generateMetadata","ResolveMetadata.generateViewport","NextNodeServer.createComponentTree","NextNodeServer.findPageComponents","NextNodeServer.getLayoutOrPageModule","NextNodeServer.startResponse","NextNodeServer.clientComponentLoading"]),k=new Set(["NextNodeServer.findPageComponents","NextNodeServer.createComponentTree","NextNodeServer.clientComponentLoading"]);e.s(["AppRenderSpan",0,A,"BaseServerSpan",0,S,"LogSpanAllowList",0,k,"NextNodeServerSpan",0,P,"NextVanillaSpanAllowlist",0,L],95169);let $=process.env.NEXT_OTEL_PERFORMANCE_PREFIX;try{t=e.r(70406)}catch(r){t=e.r(17413)}let{context:U,propagation:B,trace:H,SpanStatusCode:G,SpanKind:X,ROOT_CONTEXT:q}=t;class V extends Error{constructor(e,t){super(),this.bubble=e,this.result=t}}let F=(e,t)=>{"object"==typeof t&&null!==t&&t instanceof V&&t.bubble?e.setAttribute("next.bubble",!0):(t&&(e.recordException(t),e.setAttribute("error.type",t.name)),e.setStatus({code:G.ERROR,message:null==t?void 0:t.message})),e.end()},W=new Map,z=t.createContextKey("next.rootSpanId"),Y=0,K={set(e,t,r){e.push({key:t,value:r})}},J=(n=new class e{getTracerInstance(){return H.getTracer("next.js","0.0.1")}getContext(){return U}getTracePropagationData(){let e=U.active(),t=[];return B.inject(e,t,K),t}getActiveScopeSpan(){return H.getSpan(null==U?void 0:U.active())}withPropagatedContext(e,t,r,n=!1){let a=U.active();if(n){let n=B.extract(q,e,r);if(H.getSpanContext(n))return U.with(n,t);let i=B.extract(a,e,r);return U.with(i,t)}if(H.getSpanContext(a))return t();let i=B.extract(a,e,r);return U.with(i,t)}trace(...e){let[t,r,n]=e,{fn:a,options:i}="function"==typeof r?{fn:r,options:{}}:{fn:n,options:{...r}},o=i.spanName??t;if(!L.has(t)&&"1"!==process.env.NEXT_OTEL_VERBOSE||i.hideSpan)return a();let s=this.getSpanContext((null==i?void 0:i.parentSpan)??this.getActiveScopeSpan());s||(s=(null==U?void 0:U.active())??q);let c=s.getValue(z),u="number"!=typeof c||!W.has(c),l=Y++;return i.attributes={"next.span_name":o,"next.span_type":t,...i.attributes},U.with(s.setValue(z,l),()=>this.getTracerInstance().startActiveSpan(o,i,e=>{let r;$&&t&&k.has(t)&&(r="performance"in globalThis&&"measure"in performance?globalThis.performance.now():void 0);let n=!1,o=()=>{!n&&(n=!0,W.delete(l),r&&performance.measure(`${$}:next-${(t.split(".").pop()||"").replace(/[A-Z]/g,e=>"-"+e.toLowerCase())}`,{start:r,end:performance.now()}))};if(u&&W.set(l,new Map(Object.entries(i.attributes??{}))),a.length>1)try{return a(e,t=>F(e,t))}catch(t){throw F(e,t),t}finally{o()}try{let t=a(e);if(null!==t&&"object"==typeof t&&"then"in t&&"function"==typeof t.then)return t.then(t=>(e.end(),t)).catch(t=>{throw F(e,t),t}).finally(o);return e.end(),o(),t}catch(t){throw F(e,t),o(),t}}))}wrap(...e){let t=this,[r,n,a]=3===e.length?e:[e[0],{},e[1]];return L.has(r)||"1"===process.env.NEXT_OTEL_VERBOSE?function(){let e=n;"function"==typeof e&&"function"==typeof a&&(e=e.apply(this,arguments));let i=arguments.length-1,o=arguments[i];if("function"!=typeof o)return t.trace(r,e,()=>a.apply(this,arguments));{let n=t.getContext().bind(U.active(),o);return t.trace(r,e,(e,t)=>(arguments[i]=function(e){return null==t||t(e),n.apply(this,arguments)},a.apply(this,arguments)))}}:a}startSpan(...e){let[t,r]=e,n=this.getSpanContext((null==r?void 0:r.parentSpan)??this.getActiveScopeSpan());return this.getTracerInstance().startSpan(t,r,n)}getSpanContext(e){return e?H.setSpan(U.active(),e):void 0}getRootSpanAttributes(){let e=U.active().getValue(z);return W.get(e)}setRootSpanAttribute(e,t){let r=U.active().getValue(z),n=W.get(r);n&&!n.has(e)&&n.set(e,t)}withSpan(e,t){let r=H.setSpan(U.active(),e);return U.with(r,t)}},()=>n);e.s(["SpanKind",0,X,"getTracer",0,J],61916);let Z={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"};Z.reactServerComponents,Z.actionBrowser,Z.reactServerComponents,Z.actionBrowser,Z.instrument,Z.middleware,Z.apiNode,Z.apiEdge,Z.serverSideRendering,Z.appPagesBrowser,Z.reactServerComponents,Z.actionBrowser,Z.serverSideRendering,Z.appPagesBrowser,Z.shared,Z.instrument,Z.middleware,Z.reactServerComponents,Z.serverSideRendering,Z.appPagesBrowser,Z.actionBrowser,e.s(["CACHE_ONE_YEAR_SECONDS",0,31536e3,"HTML_CONTENT_TYPE_HEADER",0,"text/html; charset=utf-8","INFINITE_CACHE",0,0xfffffffe,"NEXT_CACHE_TAGS_HEADER",0,"x-next-cache-tags","NEXT_CACHE_TAG_MAX_ITEMS",0,128,"NEXT_CACHE_TAG_MAX_LENGTH",0,256],10372);var Q=e.i(47540);class ee extends Error{constructor(e){super(`Dynamic server usage: ${e}`),this.description=e,this.digest="DYNAMIC_SERVER_USAGE"}}class et extends Error{constructor(...e){super(...e),this.code="NEXT_STATIC_GEN_BAILOUT"}}var er=e.i(32319),en=e.i(56704);let ea="function"==typeof Q.default.unstable_postpone;function ei(e,t,r){if(t)switch(t.type){case"cache":case"unstable-cache":case"private-cache":return}if(!e.forceDynamic&&!e.forceStatic){if(e.dynamicShouldError)throw Object.defineProperty(new et(`Route ${e.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${r}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E553",enumerable:!1,configurable:!0});if(t)switch(t.type){case"prerender-ppr":var n,a,i;return n=e.route,a=r,i=t.dynamicTracking,void(function(){if(!ea)throw Object.defineProperty(Error("Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E224",enumerable:!1,configurable:!0})}(),i&&i.dynamicAccesses.push({stack:i.isDebugDynamicAccesses?Error().stack:void 0,expression:a}),Q.default.unstable_postpone(eo(n,a)));case"prerender-legacy":t.revalidate=0;let o=Object.defineProperty(new ee(`Route ${e.route} couldn't be rendered statically because it used ${r}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E550",enumerable:!1,configurable:!0});throw e.dynamicUsageDescription=r,e.dynamicUsageStack=o.stack,o}}}function eo(e,t){return`Route ${e} needs to bail out of prerendering at this point because it used ${t}. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`}if(!1===((m=eo("%%%","^^^")).includes("needs to bail out of prerendering at this point because it used")&&m.includes("Learn more: https://nextjs.org/docs/messages/ppr-caught-error")))throw Object.defineProperty(Error("Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E296",enumerable:!1,configurable:!0});RegExp("\\n\\s+at Suspense \\(\\)(?:(?!\\n\\s+at (?:body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6) \\(\\))[\\s\\S])*?\\n\\s+at __next_root_layout_boundary__ \\([^\\n]*\\)"),RegExp("\\n\\s+at __next_metadata_boundary__[\\n\\s]"),RegExp("\\n\\s+at __next_viewport_boundary__[\\n\\s]"),RegExp("\\n\\s+at __next_outlet_boundary__[\\n\\s]"),RegExp("\\n\\s+at __next_instant_validation_boundary__[\\n\\s]");class es extends Error{constructor(e,t){super(`During prerendering, ${t} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${t} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${e}".`),this.route=e,this.expression=t,this.digest="HANGING_PROMISE_REJECTION"}}let ec=new WeakMap;function eu(e,t,r){if(e.aborted)return Promise.reject(new es(t,r));{let n=new Promise((n,a)=>{let i=a.bind(null,new es(t,r)),o=ec.get(e);if(o)o.push(i);else{let t=[i];ec.set(e,t),e.addEventListener("abort",()=>{for(let e=0;e{};function eh(e){if(!e.body)return[e,e];let[t,n]=e.body.tee(),a=new Response(t,{status:e.status,statusText:e.statusText,headers:e.headers});Object.defineProperty(a,"url",{value:e.url,configurable:!0,enumerable:!0,writable:!1});let i=new Response(n,{status:e.status,statusText:e.statusText,headers:e.headers});return Object.defineProperty(i,"url",{value:e.url,configurable:!0,enumerable:!0,writable:!1}),r&&(a.body&&r.register(a,new WeakRef(a.body)),i.body&&r.register(i,new WeakRef(i.body))),[a,i]}globalThis.FinalizationRegistry&&(r=new FinalizationRegistry(e=>{let t=e.deref();t&&!t.locked&&t.cancel("Response object has been garbage collected").then(ed)}));class ep extends Error{constructor(e,t){super(`Invariant: ${e.endsWith(".")?e:e+"."} This is a bug in Next.js.`,t),this.name="InvariantError"}}let ef=new Set(["traceparent","tracestate"]);class eg{constructor(){let e,t;this.promise=new Promise((r,n)=>{e=r,t=n}),this.resolve=e,this.reject=t}}class em{constructor(e,t,r){this.prev=null,this.next=null,this.key=e,this.data=t,this.size=r}}class eb{constructor(){this.prev=null,this.next=null}}class ev{constructor(e,t,r){this.cache=new Map,this.totalSize=0,this.maxSize=e,this.calculateSize=t,this.onEvict=r,this.head=new eb,this.tail=new eb,this.head.next=this.tail,this.tail.prev=this.head}addToHead(e){e.prev=this.head,e.next=this.head.next,this.head.next.prev=e,this.head.next=e}removeNode(e){e.prev.next=e.next,e.next.prev=e.prev}moveToHead(e){this.removeNode(e),this.addToHead(e)}removeTail(){let e=this.tail.prev;return this.removeNode(e),e}set(e,t){let r=(null==this.calculateSize?void 0:this.calculateSize.call(this,t))??1;if(r<=0)throw Object.defineProperty(Error(`LRUCache: calculateSize returned ${r}, but size must be > 0. Items with size 0 would never be evicted, causing unbounded cache growth.`),"__NEXT_ERROR_CODE",{value:"E1045",enumerable:!1,configurable:!0});if(r>this.maxSize)return console.warn("Single item size exceeds maxSize"),!1;let n=this.cache.get(e);if(n)n.data=t,this.totalSize=this.totalSize-n.size+r,n.size=r,this.moveToHead(n);else{let n=new em(e,t,r);this.cache.set(e,n),this.addToHead(n),this.totalSize+=r}for(;this.totalSize>this.maxSize&&this.cache.size>0;){let e=this.removeTail();this.cache.delete(e.key),this.totalSize-=e.size,null==this.onEvict||this.onEvict.call(this,e.key,e.data)}return!0}has(e){return this.cache.has(e)}get(e){let t=this.cache.get(e);if(t)return this.moveToHead(t),t.data}*[Symbol.iterator](){let e=this.head.next;for(;e&&e!==this.tail;){let t=e;yield[t.key,t.data],e=e.next}}remove(e){let t=this.cache.get(e);t&&(this.removeNode(t),this.cache.delete(e),this.totalSize-=t.size)}get size(){return this.cache.size}get currentSize(){return this.totalSize}}let{env:e_,stdout:ey}=(null==(E=globalThis)?void 0:E.process)??{},eE=e_&&!e_.NO_COLOR&&(e_.FORCE_COLOR||(null==ey?void 0:ey.isTTY)&&!e_.CI&&"dumb"!==e_.TERM),eR=(e,t,r,n)=>{let a=e.substring(0,n)+r,i=e.substring(n+t.length),o=i.indexOf(t);return~o?a+eR(i,t,r,o):a+i},ew=(e,t,r=e)=>eE?n=>{let a=""+n,i=a.indexOf(t,e.length);return~i?e+eR(a,t,r,i)+t:e+a+t}:String,eS=ew("\x1b[1m","\x1b[22m","\x1b[22m\x1b[1m");ew("\x1b[2m","\x1b[22m","\x1b[22m\x1b[2m"),ew("\x1b[3m","\x1b[23m"),ew("\x1b[4m","\x1b[24m"),ew("\x1b[7m","\x1b[27m"),ew("\x1b[8m","\x1b[28m"),ew("\x1b[9m","\x1b[29m"),ew("\x1b[30m","\x1b[39m");let ex=ew("\x1b[31m","\x1b[39m"),eO=ew("\x1b[32m","\x1b[39m"),eP=ew("\x1b[33m","\x1b[39m");ew("\x1b[34m","\x1b[39m");let eT=ew("\x1b[35m","\x1b[39m");ew("\x1b[38;2;173;127;168m","\x1b[39m"),ew("\x1b[36m","\x1b[39m");let eN=ew("\x1b[37m","\x1b[39m");ew("\x1b[90m","\x1b[39m"),ew("\x1b[40m","\x1b[49m"),ew("\x1b[41m","\x1b[49m"),ew("\x1b[42m","\x1b[49m"),ew("\x1b[43m","\x1b[49m"),ew("\x1b[44m","\x1b[49m"),ew("\x1b[45m","\x1b[49m"),ew("\x1b[46m","\x1b[49m"),ew("\x1b[47m","\x1b[49m"),eN(eS("○")),ex(eS("⨯")),eP(eS("⚠")),eN(eS(" ")),eO(eS("✓")),eT(eS("»")),new ev(1e4,e=>e.length),new ev(1e4,e=>e.length);var eA=((b={}).APP_PAGE="APP_PAGE",b.APP_ROUTE="APP_ROUTE",b.PAGES="PAGES",b.FETCH="FETCH",b.REDIRECT="REDIRECT",b.IMAGE="IMAGE",b),eC=((v={}).APP_PAGE="APP_PAGE",v.APP_ROUTE="APP_ROUTE",v.PAGES="PAGES",v.FETCH="FETCH",v.IMAGE="IMAGE",v);function eI(){}e.s(["CachedRouteKind",0,eA,"IncrementalCacheKind",0,eC],220),new TextEncoder;let eD=new TextEncoder;function ej(e){return new ReadableStream({start(t){t.enqueue(eD.encode(e)),t.close()}})}function eM(e){return new ReadableStream({start(t){t.enqueue(e),t.close()}})}async function eL(e,t){let r=new TextDecoder("utf-8",{fatal:!0}),n="";for await(let a of e){if(null==t?void 0:t.aborted)return n;n+=r.decode(a,{stream:!0})}return n+r.decode()}let ek=Symbol.for("NextInternalRequestMeta");function e$(e,t){let r=e[ek]||{};return"string"==typeof t?r[t]:r}function eU(e,t){return e[ek]=t,t}function eB(e){let t=new Headers;for(let[r,n]of Object.entries(e))for(let e of Array.isArray(n)?n:[n])void 0!==e&&("number"==typeof e&&(e=e.toString()),t.append(r,e));return t}function eH(e){var t,r,n,a,i,o=[],s=0;function c(){for(;s=e.length)&&o.push(e.substring(t,e.length))}return o}function eG(e){let t={},r=[];if(e)for(let[n,a]of e.entries())"set-cookie"===n.toLowerCase()?(r.push(...eH(a)),t[n]=1===r.length?r[0]:r):t[n]=a;return t}function eX(e){try{return String(new URL(String(e)))}catch(t){throw Object.defineProperty(Error(`URL is malformed "${String(e)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,{cause:t}),"__NEXT_ERROR_CODE",{value:"E61",enumerable:!1,configurable:!0})}}function eq(e){return e.replace(/\/$/,"")||"/"}function eV(e){let t=e.indexOf("#"),r=e.indexOf("?"),n=r>-1&&(t<0||r-1?{pathname:e.substring(0,n?r:t),query:n?e.substring(r,t>-1?t:void 0):"",hash:t>-1?e.slice(t):""}:{pathname:e,query:"",hash:""}}function eF(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:a}=eV(e);return`${t}${r}${n}${a}`}function eW(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:a}=eV(e);return`${r}${t}${n}${a}`}function ez(e,t){if("string"!=typeof e)return!1;let{pathname:r}=eV(e);return r===t||r.startsWith(t+"/")}e.s(["NEXT_REQUEST_META",0,ek,"addRequestMeta",0,function(e,t,r){let n=e$(e);return n[t]=r,eU(e,n)},"getRequestMeta",0,e$,"setRequestMeta",0,eU],59756),e.s(["fromNodeOutgoingHttpHeaders",0,eB,"splitCookiesString",0,eH,"toNodeOutgoingHttpHeaders",0,eG,"validateURL",0,eX],70101);let eY=new WeakMap;function eK(e,t){let r;if(!t)return{pathname:e};let n=eY.get(t);n||(n=t.map(e=>e.toLowerCase()),eY.set(t,n));let a=e.split("/",2);if(!a[1])return{pathname:e};let i=a[1].toLowerCase(),o=n.indexOf(i);return o<0?{pathname:e}:(r=t[o],{pathname:e=e.slice(r.length+1)||"/",detectedLocale:r})}let eJ=/^(?:127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)$/;function eZ(e,t){let r=new URL(String(e),t&&String(t));return eJ.test(r.hostname)&&(r.hostname="localhost"),r}let eQ=Symbol("NextURLInternal");class e0{constructor(e,t,r){let n,a;"object"==typeof t&&"pathname"in t||"string"==typeof t?(n=t,a=r||{}):a=r||t||{},this[eQ]={url:eZ(e,n??a.base),options:a,basePath:""},this.analyze()}analyze(){var e,t,r,n,a;let i=function(e,t){let{basePath:r,i18n:n,trailingSlash:a}=t.nextConfig??{},i={pathname:e,trailingSlash:"/"!==e?e.endsWith("/"):a};r&&ez(i.pathname,r)&&(i.pathname=function(e,t){if(!ez(e,t))return e;let r=e.slice(t.length);return r.startsWith("/")?r:`/${r}`}(i.pathname,r),i.basePath=r);let o=i.pathname;if(i.pathname.startsWith("/_next/data/")&&i.pathname.endsWith(".json")){let e=i.pathname.replace(/^\/_next\/data\//,"").replace(/\.json$/,"").split("/");i.buildId=e[0],o="index"!==e[1]?`/${e.slice(1).join("/")}`:"/",!0===t.parseData&&(i.pathname=o)}if(n){let e=t.i18nProvider?t.i18nProvider.analyze(i.pathname):eK(i.pathname,n.locales);i.locale=e.detectedLocale,i.pathname=e.pathname??i.pathname,!e.detectedLocale&&i.buildId&&(e=t.i18nProvider?t.i18nProvider.analyze(o):eK(o,n.locales)).detectedLocale&&(i.locale=e.detectedLocale)}return i}(this[eQ].url.pathname,{nextConfig:this[eQ].options.nextConfig,parseData:!0,i18nProvider:this[eQ].options.i18nProvider}),o=function(e,t){let r;if(t?.host&&!Array.isArray(t.host))r=t.host.toString().split(":",1)[0];else{if(!e.hostname)return;r=e.hostname}return r.toLowerCase()}(this[eQ].url,this[eQ].options.headers);this[eQ].domainLocale=this[eQ].options.i18nProvider?this[eQ].options.i18nProvider.detectDomainLocale(o):function(e,t,r){if(e){for(let n of(r&&(r=r.toLowerCase()),e))if(t===n.domain?.split(":",1)[0].toLowerCase()||r===n.defaultLocale.toLowerCase()||n.locales?.some(e=>e.toLowerCase()===r))return n}}(null==(t=this[eQ].options.nextConfig)||null==(e=t.i18n)?void 0:e.domains,o);let s=(null==(r=this[eQ].domainLocale)?void 0:r.defaultLocale)||(null==(a=this[eQ].options.nextConfig)||null==(n=a.i18n)?void 0:n.defaultLocale);this[eQ].url.pathname=i.pathname,this[eQ].defaultLocale=s,this[eQ].basePath=i.basePath??"",this[eQ].buildId=i.buildId,this[eQ].locale=i.locale??s,this[eQ].trailingSlash=i.trailingSlash}formatPathname(){var e;let t;return t=function(e,t,r,n){if(!t||t===r)return e;let a=e.toLowerCase();return!n&&(ez(a,"/api")||ez(a,`/${t.toLowerCase()}`))?e:eF(e,`/${t}`)}((e={basePath:this[eQ].basePath,buildId:this[eQ].buildId,defaultLocale:this[eQ].options.forceLocale?void 0:this[eQ].defaultLocale,locale:this[eQ].locale,pathname:this[eQ].url.pathname,trailingSlash:this[eQ].trailingSlash}).pathname,e.locale,e.buildId?void 0:e.defaultLocale,e.ignorePrefix),(e.buildId||!e.trailingSlash)&&(t=eq(t)),e.buildId&&(t=eW(eF(t,`/_next/data/${e.buildId}`),"/"===e.pathname?"index.json":".json")),t=eF(t,e.basePath),!e.buildId&&e.trailingSlash?t.endsWith("/")?t:eW(t,"/"):eq(t)}formatSearch(){return this[eQ].url.search}get buildId(){return this[eQ].buildId}set buildId(e){this[eQ].buildId=e}get locale(){return this[eQ].locale??""}set locale(e){var t,r;if(!this[eQ].locale||!(null==(r=this[eQ].options.nextConfig)||null==(t=r.i18n)?void 0:t.locales.includes(e)))throw Object.defineProperty(TypeError(`The NextURL configuration includes no locale "${e}"`),"__NEXT_ERROR_CODE",{value:"E597",enumerable:!1,configurable:!0});this[eQ].locale=e}get defaultLocale(){return this[eQ].defaultLocale}get domainLocale(){return this[eQ].domainLocale}get searchParams(){return this[eQ].url.searchParams}get host(){return this[eQ].url.host}set host(e){this[eQ].url.host=e}get hostname(){return this[eQ].url.hostname}set hostname(e){this[eQ].url.hostname=e}get port(){return this[eQ].url.port}set port(e){this[eQ].url.port=e}get protocol(){return this[eQ].url.protocol}set protocol(e){this[eQ].url.protocol=e}get href(){let e=this.formatPathname(),t=this.formatSearch();return`${this.protocol}//${this.host}${e}${t}${this.hash}`}set href(e){this[eQ].url=eZ(e),this.analyze()}get origin(){return this[eQ].url.origin}get pathname(){return this[eQ].url.pathname}set pathname(e){this[eQ].url.pathname=e}get hash(){return this[eQ].url.hash}set hash(e){this[eQ].url.hash=e}get search(){return this[eQ].url.search}set search(e){this[eQ].url.search=e}get password(){return this[eQ].url.password}set password(e){this[eQ].url.password=e}get username(){return this[eQ].url.username}set username(e){this[eQ].url.username=e}get basePath(){return this[eQ].basePath}set basePath(e){this[eQ].basePath=e.startsWith("/")?e:`/${e}`}toString(){return this.href}toJSON(){return this.href}[Symbol.for("edge-runtime.inspect.custom")](){return{href:this.href,origin:this.origin,protocol:this.protocol,username:this.username,password:this.password,host:this.host,hostname:this.hostname,port:this.port,pathname:this.pathname,search:this.search,searchParams:this.searchParams,hash:this.hash}}clone(){return new e0(String(this),this[eQ].options)}}class e1 extends Error{constructor(){super("The request.page has been deprecated in favour of `URLPattern`.\n Read more: https://nextjs.org/docs/messages/middleware-request-page\n ")}}class e2 extends Error{constructor(){super("The request.ua has been removed in favour of `userAgent` function.\n Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n ")}}var e4=e.i(19481);let e3=Symbol("internal request");class e9 extends Request{constructor(e,t={}){const r="string"!=typeof e&&"url"in e?e.url:String(e);eX(r),t.body&&"half"!==t.duplex&&(t.duplex="half"),e instanceof Request?super(e,t):super(r,t);const n=new e0(r,{headers:eG(this.headers),nextConfig:t.nextConfig});this[e3]={cookies:new e4.RequestCookies(this.headers),nextUrl:n,url:n.toString()}}[Symbol.for("edge-runtime.inspect.custom")](){return{cookies:this.cookies,nextUrl:this.nextUrl,url:this.url,bodyUsed:this.bodyUsed,cache:this.cache,credentials:this.credentials,destination:this.destination,headers:Object.fromEntries(this.headers),integrity:this.integrity,keepalive:this.keepalive,method:this.method,mode:this.mode,redirect:this.redirect,referrer:this.referrer,referrerPolicy:this.referrerPolicy,signal:this.signal}}get cookies(){return this[e3].cookies}get nextUrl(){return this[e3].nextUrl}get page(){throw new e1}get ua(){throw new e2}get url(){return this[e3].url}}let e6="ResponseAborted";class e7 extends Error{constructor(...e){super(...e),this.name=e6}}function e5(e){let t=new AbortController;return e.once("close",()=>{e.writableFinished||t.abort(new e7)}),t}class e8{static fromBaseNextRequest(e,t){return e8.fromNodeNextRequest(e,t)}static fromNodeNextRequest(e,t){let r,n=null;if("GET"!==e.method&&"HEAD"!==e.method&&e.body&&(n=e.body),e.url.startsWith("http"))r=new URL(e.url);else{let t=e$(e,"initURL");r=t&&t.startsWith("http")?new URL(e.url,t):new URL(e.url,"http://n")}return new e9(r,{method:e.method,headers:eB(e.headers),duplex:"half",signal:t,...t.aborted?{}:{body:n}})}static fromWebNextRequest(e){let t=null;return"GET"!==e.method&&"HEAD"!==e.method&&(t=e.body),new e9(e.url,{method:e.method,headers:eB(e.headers),duplex:"half",signal:e.request.signal,...e.request.signal.aborted?{}:{body:t}})}}e.s(["NextRequestAdapter",0,e8,"ResponseAbortedName",0,e6,"createAbortController",0,e5,"signalFromNodeResponse",0,function(e){let{errored:t,destroyed:r}=e;if(t||r)return AbortSignal.abort(t??new e7);let{signal:n}=e5(e);return n}],87718);let te=0,tt=0,tr=0;function tn(e){return(null==e?void 0:e.name)==="AbortError"||(null==e?void 0:e.name)===e6}async function ta(e,t,r){try{let{errored:n,destroyed:a}=t;if(n||a)return;let i=e5(t),o=function(e,t){let r=!1,n=new eg;function a(){n.resolve()}e.on("drain",a),e.once("close",()=>{e.off("drain",a),n.resolve()});let i=new eg;return e.once("finish",()=>{i.resolve()}),new WritableStream({write:async t=>{if(!r){if(r=!0,"performance"in globalThis&&process.env.NEXT_OTEL_PERFORMANCE_PREFIX){let e=function(e={}){let t=0===te?void 0:{clientComponentLoadStart:te,clientComponentLoadTimes:tt,clientComponentLoadCount:tr};return e.reset&&(te=0,tt=0,tr=0),t}();e&&performance.measure(`${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`,{start:e.clientComponentLoadStart,end:e.clientComponentLoadStart+e.clientComponentLoadTimes})}e.flushHeaders(),J().trace(P.startResponse,{spanName:"start response"},()=>void 0)}try{let r=e.write(t);"flush"in e&&"function"==typeof e.flush&&e.flush(),r||(await n.promise,n=new eg)}catch(t){throw e.end(),Object.defineProperty(Error("failed to write chunk to response",{cause:t}),"__NEXT_ERROR_CODE",{value:"E321",enumerable:!1,configurable:!0})}},abort:t=>{e.writableFinished||e.destroy(t)},close:async()=>{if(t&&await t,!e.writableFinished)return e.end(),i.promise}})}(t,r);await e.pipeTo(o,{signal:i.signal})}catch(e){if(tn(e))return;throw Object.defineProperty(Error("failed to pipe response",{cause:e}),"__NEXT_ERROR_CODE",{value:"E180",enumerable:!1,configurable:!0})}}class ti{static #e=this.EMPTY=new ti(null,{metadata:{},contentType:null});static fromStatic(e,t){return new ti(e,{metadata:{},contentType:t})}constructor(e,{contentType:t,waitUntil:r,metadata:n}){this.response=e,this.contentType=t,this.metadata=n,this.waitUntil=r}assignMetadata(e){Object.assign(this.metadata,e)}get isNull(){return null===this.response}get isDynamic(){return"string"!=typeof this.response}toUnchunkedString(e=!1){if(null===this.response)return"";if("string"!=typeof this.response){if(!e)throw Object.defineProperty(new ep("dynamic responses cannot be unchunked. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E732",enumerable:!1,configurable:!0});return eL(this.readable)}return this.response}get readable(){return null===this.response?new ReadableStream({start(e){e.close()}}):"string"==typeof this.response?ej(this.response):Buffer.isBuffer(this.response)?eM(this.response):Array.isArray(this.response)?function(...e){if(0===e.length)return new ReadableStream({start(e){e.close()}});if(1===e.length)return e[0];let{readable:t,writable:r}=new TransformStream,n=e[0].pipeTo(r,{preventClose:!0}),a=1;for(;at.pipeTo(r,{preventClose:!0}))}let i=e[a];return(n=n.then(()=>i.pipeTo(r))).catch(eI),t}(...this.response):this.response}coerce(){return null===this.response?[]:"string"==typeof this.response?[ej(this.response)]:Array.isArray(this.response)?this.response:Buffer.isBuffer(this.response)?[eM(this.response)]:[this.response]}pipeThrough(e){this.response=this.readable.pipeThrough(e)}unshift(e){this.response=this.coerce(),this.response.unshift(e)}push(e){this.response=this.coerce(),this.response.push(e)}async pipeTo(e){try{await this.readable.pipeTo(e,{preventClose:!0}),this.waitUntil&&await this.waitUntil,await e.close()}catch(t){if(tn(t))return void await e.abort(t);throw t}}async pipeToNodeResponse(e){await ta(this.readable,e,this.waitUntil)}}function to(e,t){if(!e)return t;let r=parseInt(e,10);return Number.isFinite(r)&&r>0?r:t}to(process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL,1e4),to(process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE,150),e.s([],52474);let ts=Symbol.for("next-patch");function tc(e,t){e.shouldTrackFetchMetrics&&(e.fetchMetrics??=[],e.fetchMetrics.push({...t,end:performance.timeOrigin+performance.now(),idx:e.nextFetchId||0}))}async function tu(e,t,r,n,a,i){let o=await e.arrayBuffer(),s={headers:Object.fromEntries(e.headers.entries()),body:Buffer.from(o).toString("base64"),status:e.status,url:e.url};return r&&await n.set(t,{kind:eA.FETCH,data:s,revalidate:a},r),await i(),new Response(o,{headers:e.headers,status:e.status,statusText:e.statusText})}async function tl(e,t,r,n,a,i,o,s,c,u){let[l,d]=eh(t),h=l.arrayBuffer().then(async e=>{let t=Buffer.from(e),s={headers:Object.fromEntries(l.headers.entries()),body:t.toString("base64"),status:l.status,url:l.url};null==i||i.set(r,s),n&&await a.set(r,{kind:eA.FETCH,data:s,revalidate:o},n)}).catch(e=>{(null==u?void 0:u.aborted)||console.warn("Failed to set fetch cache",s,e)}).finally(c),p=`cache-set-${r}`,f=e.pendingRevalidates??={},g=Promise.resolve();return p in f&&(g=f[p]),f[p]=g.then(()=>h).finally(()=>{(null==f?void 0:f[p])&&delete f[p]}),d}let td=null;function th(e){var t;return(t=e.split("/").reduce((e,t,r,n)=>t?"("===t[0]&&t.endsWith(")")||"@"===t[0]||("page"===t||"route"===t)&&r===n.length-1?e:`${e}/${t}`:e,"")).startsWith("/")?t:`/${t}`}e.s(["patchFetch",0,function(e){var t;let r;if(!0===globalThis[ts])return;let n=(t=globalThis.fetch,r=Q.cache(e=>[]),function(e,n){let a,i;if(n&&n.signal)return t(e,n);if("string"!=typeof e||n){let r,o="string"==typeof e||e instanceof URL?new Request(e,n):e;if("GET"!==o.method&&"HEAD"!==o.method||o.keepalive)return t(e,n);r=Array.from(o.headers.entries()).filter(([e])=>!ef.has(e.toLowerCase())),i=JSON.stringify([o.method,r,o.mode,o.redirect,o.credentials,o.referrer,o.referrerPolicy,o.integrity]),a=o.url}else i='["GET",[],null,"follow",null,null,null,null]',a=e;let o=r(a);for(let e=0,t=o.length;e{let t=o[e][2];if(!t)throw Object.defineProperty(new ep("No cached response"),"__NEXT_ERROR_CODE",{value:"E579",enumerable:!1,configurable:!0});let[r,n]=eh(t);return o[e][2]=n,r})}let s=t(e,n),c=[i,s,null];return o.push(c),s.then(e=>{let[t,r]=eh(e);return c[2]=r,t})});globalThis.fetch=function(e,{workAsyncStorage:t,workUnitAsyncStorage:r}){let n=async function(n,a){var i,o;let s;try{(s=new URL(n instanceof Request?n.url:n)).username="",s.password=""}catch{s=void 0}let c=(null==s?void 0:s.href)??"",u=(null==a||null==(i=a.method)?void 0:i.toUpperCase())||"GET",l=(null==a||null==(o=a.next)?void 0:o.internal)===!0,d="1"===process.env.NEXT_OTEL_FETCH_DISABLED,h=l?void 0:performance.timeOrigin+performance.now(),p=t.getStore(),f=r.getStore(),g=f?(0,er.getCacheSignal)(f):null;g&&g.beginRead();let m=J().trace(l?P.internalFetch:A.fetch,{hideSpan:d,kind:X.CLIENT,spanName:["fetch",u,c].filter(Boolean).join(" "),attributes:{"http.url":c,"http.method":u,"net.peer.name":null==s?void 0:s.hostname,"net.peer.port":(null==s?void 0:s.port)||void 0}},async()=>{var t;let r,i,o,s,u,d;if(l||!p||p.isDraftMode)return e(n,a);let m=n&&"object"==typeof n&&"string"==typeof n.method,b=e=>(null==a?void 0:a[e])||(m?n[e]:null),v=e=>{var t,r,i;return void 0!==(null==a||null==(t=a.next)?void 0:t[e])?null==a||null==(r=a.next)?void 0:r[e]:m?null==(i=n.next)?void 0:i[e]:void 0},_=v("revalidate"),y=_,E=function(e,t){let r=[],n=[];for(let a=0;a256?n.push({tag:i,reason:"exceeded max length of 256"}):r.push(i),r.length>128){console.warn(`Warning: exceeded max tag count for ${t}, dropped tags:`,e.slice(a).join(", "));break}}if(n.length>0)for(let{tag:e,reason:r}of(console.warn(`Warning: invalid tags passed to ${t}: `),n))console.log(`tag: "${e}" ${r}`);return r}(v("tags")||[],`fetch ${n.toString()}`);if(f)switch(f.type){case"prerender":case"prerender-runtime":case"prerender-client":case"validation-client":case"prerender-ppr":case"prerender-legacy":case"cache":case"private-cache":r=f}if(r&&Array.isArray(E)){let e=r.tags??(r.tags=[]);for(let t of E)e.includes(t)||e.push(t)}let R=null==f?void 0:f.implicitTags,w=p.fetchCache;f&&"unstable-cache"===f.type&&(w="force-no-store");let S=!!p.isUnstableNoStore,x=b("cache"),O="";"string"==typeof x&&void 0!==y&&("force-cache"===x&&0===y||"no-store"===x&&(y>0||!1===y))&&(i=`Specified "cache: ${x}" and "revalidate: ${y}", only one should be specified.`,x=void 0,y=void 0);let P="no-cache"===x||"no-store"===x||"force-no-store"===w||"only-no-store"===w,T=!w&&!x&&!y&&p.forceDynamic;"force-cache"===x&&void 0===y?y=!1:(P||T)&&(y=0),("no-cache"===x||"no-store"===x)&&(O=`cache: ${x}`),d=function(e,t){try{let r;if(!1===e)r=0xfffffffe;else if("number"==typeof e&&!isNaN(e)&&e>-1)r=e;else if(void 0!==e)throw Object.defineProperty(Error(`Invalid revalidate value "${e}" on "${t}", must be a non-negative number or false`),"__NEXT_ERROR_CODE",{value:"E179",enumerable:!1,configurable:!0});return r}catch(e){if(e instanceof Error&&e.message.includes("Invalid revalidate"))throw e;return}}(y,p.route);let N=b("headers"),A="function"==typeof(null==N?void 0:N.get)?N:new Headers(N||{}),C=A.get("authorization")||A.get("cookie"),I=!["get","head"].includes((null==(t=b("method"))?void 0:t.toLowerCase())||"get"),D=void 0==w&&(void 0==x||"default"===x)&&void 0==y,j=!!((C||I)&&(null==r?void 0:r.revalidate)===0),M=!1;if(!j&&D&&(p.isBuildTimePrerendering?M=!0:j=!0),D&&void 0!==f)switch(f.type){case"prerender":case"prerender-runtime":case"prerender-client":return g&&(g.endRead(),g=null),eu(f.renderSignal,p.route,"fetch()")}switch(w){case"force-no-store":O="fetchCache = force-no-store";break;case"only-no-store":if("force-cache"===x||void 0!==d&&d>0)throw Object.defineProperty(Error(`cache: 'force-cache' used on fetch for ${c} with 'export const fetchCache = 'only-no-store'`),"__NEXT_ERROR_CODE",{value:"E448",enumerable:!1,configurable:!0});O="fetchCache = only-no-store";break;case"only-cache":if("no-store"===x)throw Object.defineProperty(Error(`cache: 'no-store' used on fetch for ${c} with 'export const fetchCache = 'only-cache'`),"__NEXT_ERROR_CODE",{value:"E521",enumerable:!1,configurable:!0});break;case"force-cache":(void 0===y||0===y)&&(O="fetchCache = force-cache",d=0xfffffffe)}if(void 0===d?"default-cache"!==w||S?"default-no-store"===w?(d=0,O="fetchCache = default-no-store"):S?(d=0,O="noStore call"):j?(d=0,O="auto no cache"):(O="auto cache",d=r?r.revalidate:0xfffffffe):(d=0xfffffffe,O="fetchCache = default-cache"):O||(O=`revalidate: ${d}`),!(p.forceStatic&&0===d)&&!j&&r&&d0,{incrementalCache:k}=p,$=!1;if(f)switch(f.type){case"request":case"cache":case"private-cache":$=f.isHmrRefresh??!1,s=f.serverComponentsHmrCache}if(k&&(L||s))try{o=await k.generateCacheKey(c,m?n:a)}catch(e){console.error("Failed to generate cache key for",n)}let U=p.nextFetchId??1;p.nextFetchId=U+1;let B=()=>{},H=async(t,r)=>{let u=["cache","credentials","headers","integrity","keepalive","method","mode","redirect","referrer","referrerPolicy","window","duplex",...t?[]:["signal"]];if(m){let e=n,t={body:e._ogBody||e.body};for(let r of u)t[r]=e[r];n=new Request(e.url,t)}else if(a){let{_ogBody:e,body:r,signal:n,...i}=a;a={...i,body:e||r,signal:t?void 0:n}}let l={...a,next:{...null==a?void 0:a.next,fetchType:"origin",fetchIdx:U}};return e(n,l).then(async e=>{if(!t&&h&&tc(p,{start:h,url:c,cacheReason:r||O,cacheStatus:0===d||r?"skip":"miss",cacheWarning:i,status:e.status,method:l.method||"GET"}),200===e.status&&k&&o&&(L||s)){let t=d>=0xfffffffe?31536e3:d,r=L?{fetchCache:!0,fetchUrl:c,fetchIdx:U,tags:E,isImplicitBuildTimeCache:M}:void 0;switch(null==f?void 0:f.type){case"prerender":case"prerender-client":case"validation-client":case"prerender-runtime":return tu(e,o,r,k,t,B);case"request":case"prerender-ppr":case"prerender-legacy":case"cache":case"private-cache":case"unstable-cache":case"generate-static-params":case void 0:return tl(p,e,o,r,k,s,t,n,B,b("signal"))}}return await B(),e}).catch(e=>{throw B(),e})},G=!1,X=!1;if(o&&k){let e;if($&&s&&(e=s.get(o),X=!0),L&&!e){B=await k.lock(o);let t=p.isOnDemandRevalidate?null:await k.get(o,{kind:eC.FETCH,revalidate:d,fetchUrl:c,fetchIdx:U,tags:E,softTags:null==R?void 0:R.tags});if(D&&f)switch(f.type){case"prerender":case"prerender-client":case"validation-client":case"prerender-runtime":await (td||(td=new Promise(e=>{setTimeout(()=>{td=null,e()},0)})),td)}if(t?await B():u="cache-control: no-cache (hard refresh)",(null==t?void 0:t.value)&&t.value.kind===eA.FETCH)if(p.isStaticGeneration&&t.isStale)G=!0;else{if(t.isStale&&(p.pendingRevalidates??={},!p.pendingRevalidates[o])){let e=H(!0).then(async e=>({body:await e.arrayBuffer(),headers:e.headers,status:e.status,statusText:e.statusText})).finally(()=>{p.pendingRevalidates??={},delete p.pendingRevalidates[o||""]});e.catch(console.error),p.pendingRevalidates[o]=e}e=t.value.data}}if(e){h&&tc(p,{start:h,url:c,cacheReason:O,cacheStatus:X?"hmr":"hit",cacheWarning:i,status:e.status||200,method:(null==a?void 0:a.method)||"GET"});let t=new Response(Buffer.from(e.body,"base64"),{headers:e.headers,status:e.status});return Object.defineProperty(t,"url",{value:e.url}),t}}if(p.isStaticGeneration&&a&&"object"==typeof a){let{cache:e}=a;if("no-store"===e){if(f)switch(f.type){case"prerender":case"prerender-client":case"prerender-runtime":case"validation-client":return g&&(g.endRead(),g=null),eu(f.renderSignal,p.route,"fetch()")}ei(p,f,`no-store fetch ${n} ${p.route}`)}let t="next"in a,{next:i={}}=a;if("number"==typeof i.revalidate&&r&&i.revalidate{let t=e[0];return{body:await t.arrayBuffer(),headers:t.headers,status:t.status,statusText:t.statusText}}).finally(()=>{var t;(null==(t=p.pendingRevalidates)?void 0:t[e])&&delete p.pendingRevalidates[e]})).catch(()=>{}),p.pendingRevalidates[e]=t,r.then(e=>e[1])}});if(g)try{return await m}finally{g&&g.endRead()}return m};return n.__nextPatched=!0,n.__nextGetStaticStore=()=>t,n._nextOriginalFetch=e,globalThis[ts]=!0,Object.defineProperty(n,"name",{value:"fetch",writable:!1}),n}(n,e)}],96250),e.s(["normalizeAppPath",0,th],69741);let tp=Symbol.for("next.server.manifests"),tf=globalThis;e.s(["setManifestsSingleton",0,function({page:e,clientReferenceManifest:t,serverActionsManifest:r}){let n=tf[tp],a={encryptionKey:r.encryptionKey,node:Object.assign(Object.create(null),r.node),edge:Object.assign(Object.create(null),r.edge)};if(n)n.clientReferenceManifestsPerRoute.set(th(e),t),n.serverActionsManifest=a;else{let r,n=new Map([[th(e),t]]),i=(r=new Map,new Proxy({},{get(e,t){let a=en.workAsyncStorage.getStore();switch(t){case"moduleLoading":case"entryCSSFiles":case"entryJSFiles":{if(!a)throw Object.defineProperty(new ep(`Cannot access "${t}" without a work store.`),"__NEXT_ERROR_CODE",{value:"E952",enumerable:!1,configurable:!0});let e=n.get(a.route);if(!e)throw Object.defineProperty(new ep(`The client reference manifest for route "${a.route}" does not exist.`),"__NEXT_ERROR_CODE",{value:"E951",enumerable:!1,configurable:!0});return e[t]}case"clientModules":case"rscModuleMapping":case"edgeRscModuleMapping":case"ssrModuleMapping":case"edgeSSRModuleMapping":{let e=r.get(t);!e&&(e=new Proxy({},{get(e,r){let a=en.workAsyncStorage.getStore();if(a){let e=n.get(a.route);if(null==e?void 0:e[t][r])return e[t][r]}else for(let e of n.values()){let n=e[t][r];if(void 0!==n)return n}}}),r.set(t,e));return e}default:throw Object.defineProperty(new ep(`This is a proxied client reference manifest. The property "${String(t)}" is not handled.`),"__NEXT_ERROR_CODE",{value:"E953",enumerable:!1,configurable:!0})}}}));tf[tp]={clientReferenceManifestsPerRoute:n,proxiedClientReferenceManifest:i,serverActionsManifest:a,serverModuleMap:new Proxy({},{get:(e,t)=>{var r,n,a;let i,o=null==(n=function(){let e=tf[tp];if(!e)throw Object.defineProperty(new ep("The manifests singleton was not initialized."),"__NEXT_ERROR_CODE",{value:"E950",enumerable:!1,configurable:!0});return e}().serverActionsManifest.node)||null==(r=n[t])?void 0:r.workers;if(!o)return;let s=en.workAsyncStorage.getStore();if(!(i=s?o[ez(a=s.page,"app")?a:"app"+a]:Object.values(o).at(0)))return;let{moduleId:c,async:u}=i;return{id:c,name:t,chunks:[],async:u}}})}}}],74677),Symbol("__next_preview_data");let tg=Symbol("__prerender_bypass");var tm=((_={})[_.SeeOther=303]="SeeOther",_[_.TemporaryRedirect=307]="TemporaryRedirect",_[_.PermanentRedirect=308]="PermanentRedirect",_);class tb{constructor(e,t,r){this.method=e,this.url=t,this.body=r}get cookies(){var t;return this._cookies?this._cookies:this._cookies=(t=this.headers,function(){let{cookie:r}=t;if(!r)return{};let{parse:n}=e.r(93118);return n(Array.isArray(r)?r.join("; "):r)})()}}class tv{constructor(e){this.destination=e}redirect(e,t){return this.setHeader("Location",e),this.statusCode=t,t===tm.PermanentRedirect&&this.setHeader("Refresh",`0;url=${e}`),this}}class t_ extends tb{static #e=R=ek;constructor(e){var t;super(e.method.toUpperCase(),e.url,e),this._req=e,this.headers=this._req.headers,this.fetchMetrics=null==(t=this._req)?void 0:t.fetchMetrics,this[R]=this._req[ek]||{},this.streaming=!1}get originalRequest(){return this._req[ek]=this[ek],this._req.url=this.url,this._req.cookies=this.cookies,this._req}set originalRequest(e){this._req=e}stream(){if(this.streaming)throw Object.defineProperty(Error("Invariant: NodeNextRequest.stream() can only be called once"),"__NEXT_ERROR_CODE",{value:"E467",enumerable:!1,configurable:!0});return this.streaming=!0,new ReadableStream({start:e=>{this._req.on("data",t=>{e.enqueue(new Uint8Array(t))}),this._req.on("end",()=>{e.close()}),this._req.on("error",t=>{e.error(t)})}})}}async function ty(e,t,r,n){{var a;t.statusCode=r.status,t.statusMessage=r.statusText;let i=["set-cookie","www-authenticate","proxy-authenticate","vary"];null==(a=r.headers)||a.forEach((e,r)=>{if("x-middleware-set-cookie"!==r.toLowerCase())if("set-cookie"===r.toLowerCase())for(let n of eH(e))t.appendHeader(r,n);else{let n=void 0!==t.getHeader(r);(i.includes(r.toLowerCase())||!n)&&t.appendHeader(r,e)}});let{originalResponse:o}=t;r.body&&"HEAD"!==e.method?await ta(r.body,o,n):o.end()}}e.s(["NodeNextRequest",0,t_,"NodeNextResponse",0,class extends tv{get originalResponse(){return tg in this&&(this._res[tg]=this[tg]),this._res}constructor(e){super(e),this._res=e,this.textBody=void 0}get sent(){return this._res.finished||this._res.headersSent}get statusCode(){return this._res.statusCode}set statusCode(e){this._res.statusCode=e}get statusMessage(){return this._res.statusMessage}set statusMessage(e){this._res.statusMessage=e}setHeader(e,t){return this._res.setHeader(e,t),this}removeHeader(e){return this._res.removeHeader(e),this}getHeaderValues(e){let t=this._res.getHeader(e);if(void 0!==t)return(Array.isArray(t)?t:[t]).map(e=>e.toString())}hasHeader(e){return this._res.hasHeader(e)}getHeader(e){let t=this.getHeaderValues(e);return Array.isArray(t)?t.join(","):void 0}getHeaders(){return this._res.getHeaders()}appendHeader(e,t){let r=this.getHeaderValues(e)??[];return r.includes(t)||this._res.setHeader(e,[...r,t]),this}body(e){return this.textBody=e,this}send(){this._res.end(this.textBody)}onClose(e){this.originalResponse.on("close",e)}}],16795),e.s(["getRevalidateReason",0,function(e){return e.isOnDemandRevalidate?"on-demand":e.isStaticGeneration?"stale":void 0}],47587),e.s(["sendResponse",0,ty],66012),e.s(["getCacheControlHeader",0,function({revalidate:e,expire:t}){let r="number"==typeof e&&void 0!==t&&e{"use strict";function n(e,t,r){if(e){for(let n of(r&&(r=r.toLowerCase()),e))if(t===n.domain?.split(":",1)[0].toLowerCase()||r===n.defaultLocale.toLowerCase()||n.locales?.some(e=>e.toLowerCase()===r))return n}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"detectDomainLocale",{enumerable:!0,get:function(){return n}})},49084,(e,t,r)=>{"use strict";function n(e){return e.replace(/\/$/,"")||"/"}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"removeTrailingSlash",{enumerable:!0,get:function(){return n}})},97741,(e,t,r)=>{"use strict";function n(e){let t=e.indexOf("#"),r=e.indexOf("?"),n=r>-1&&(t<0||r-1?{pathname:e.substring(0,n?r:t),query:n?e.substring(r,t>-1?t:void 0):"",hash:t>-1?e.slice(t):""}:{pathname:e,query:"",hash:""}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"parsePath",{enumerable:!0,get:function(){return n}})},34292,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"addPathPrefix",{enumerable:!0,get:function(){return a}});let n=e.r(97741);function a(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:a,hash:i}=(0,n.parsePath)(e);return`${t}${r}${a}${i}`}},87622,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"addPathSuffix",{enumerable:!0,get:function(){return a}});let n=e.r(97741);function a(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:a,hash:i}=(0,n.parsePath)(e);return`${r}${t}${a}${i}`}},98389,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"pathHasPrefix",{enumerable:!0,get:function(){return a}});let n=e.r(97741);function a(e,t){if("string"!=typeof e)return!1;let{pathname:r}=(0,n.parsePath)(e);return r===t||r.startsWith(t+"/")}},95414,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"addLocale",{enumerable:!0,get:function(){return i}});let n=e.r(34292),a=e.r(98389);function i(e,t,r,i){if(!t||t===r)return e;let o=e.toLowerCase();return!i&&((0,a.pathHasPrefix)(o,"/api")||(0,a.pathHasPrefix)(o,`/${t.toLowerCase()}`))?e:(0,n.addPathPrefix)(e,`/${t}`)}},25627,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"formatNextPathnameInfo",{enumerable:!0,get:function(){return s}});let n=e.r(49084),a=e.r(34292),i=e.r(87622),o=e.r(95414);function s(e){let t=(0,o.addLocale)(e.pathname,e.locale,e.buildId?void 0:e.defaultLocale,e.ignorePrefix);return(e.buildId||!e.trailingSlash)&&(t=(0,n.removeTrailingSlash)(t)),e.buildId&&(t=(0,i.addPathSuffix)((0,a.addPathPrefix)(t,`/_next/data/${e.buildId}`),"/"===e.pathname?"index.json":".json")),t=(0,a.addPathPrefix)(t,e.basePath),!e.buildId&&e.trailingSlash?t.endsWith("/")?t:(0,i.addPathSuffix)(t,"/"):(0,n.removeTrailingSlash)(t)}},64512,(e,t,r)=>{"use strict";function n(e,t){let r;if(t?.host&&!Array.isArray(t.host))r=t.host.toString().split(":",1)[0];else{if(!e.hostname)return;r=e.hostname}return r.toLowerCase()}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getHostname",{enumerable:!0,get:function(){return n}})},13545,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"normalizeLocalePath",{enumerable:!0,get:function(){return a}});let n=new WeakMap;function a(e,t){let r;if(!t)return{pathname:e};let a=n.get(t);a||(a=t.map(e=>e.toLowerCase()),n.set(t,a));let i=e.split("/",2);if(!i[1])return{pathname:e};let o=i[1].toLowerCase(),s=a.indexOf(o);return s<0?{pathname:e}:(r=t[s],{pathname:e=e.slice(r.length+1)||"/",detectedLocale:r})}},50955,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"removePathPrefix",{enumerable:!0,get:function(){return a}});let n=e.r(98389);function a(e,t){if(!(0,n.pathHasPrefix)(e,t))return e;let r=e.slice(t.length);return r.startsWith("/")?r:`/${r}`}},60622,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getNextPathnameInfo",{enumerable:!0,get:function(){return o}});let n=e.r(13545),a=e.r(50955),i=e.r(98389);function o(e,t){let{basePath:r,i18n:o,trailingSlash:s}=t.nextConfig??{},c={pathname:e,trailingSlash:"/"!==e?e.endsWith("/"):s};r&&(0,i.pathHasPrefix)(c.pathname,r)&&(c.pathname=(0,a.removePathPrefix)(c.pathname,r),c.basePath=r);let u=c.pathname;if(c.pathname.startsWith("/_next/data/")&&c.pathname.endsWith(".json")){let e=c.pathname.replace(/^\/_next\/data\//,"").replace(/\.json$/,"").split("/");c.buildId=e[0],u="index"!==e[1]?`/${e.slice(1).join("/")}`:"/",!0===t.parseData&&(c.pathname=u)}if(o){let e=t.i18nProvider?t.i18nProvider.analyze(c.pathname):(0,n.normalizeLocalePath)(c.pathname,o.locales);c.locale=e.detectedLocale,c.pathname=e.pathname??c.pathname,!e.detectedLocale&&c.buildId&&(e=t.i18nProvider?t.i18nProvider.analyze(u):(0,n.normalizeLocalePath)(u,o.locales)).detectedLocale&&(c.locale=e.detectedLocale)}return c}},99536,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"NextURL",{enumerable:!0,get:function(){return l}});let n=e.r(47114),a=e.r(25627),i=e.r(64512),o=e.r(60622),s=/^(?:127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)$/;function c(e,t){let r=new URL(String(e),t&&String(t));return s.test(r.hostname)&&(r.hostname="localhost"),r}let u=Symbol("NextURLInternal");class l{constructor(e,t,r){let n,a;"object"==typeof t&&"pathname"in t||"string"==typeof t?(n=t,a=r||{}):a=r||t||{},this[u]={url:c(e,n??a.base),options:a,basePath:""},this.analyze()}analyze(){var e,t,r,a,s;let c=(0,o.getNextPathnameInfo)(this[u].url.pathname,{nextConfig:this[u].options.nextConfig,parseData:!0,i18nProvider:this[u].options.i18nProvider}),l=(0,i.getHostname)(this[u].url,this[u].options.headers);this[u].domainLocale=this[u].options.i18nProvider?this[u].options.i18nProvider.detectDomainLocale(l):(0,n.detectDomainLocale)(null==(t=this[u].options.nextConfig)||null==(e=t.i18n)?void 0:e.domains,l);let d=(null==(r=this[u].domainLocale)?void 0:r.defaultLocale)||(null==(s=this[u].options.nextConfig)||null==(a=s.i18n)?void 0:a.defaultLocale);this[u].url.pathname=c.pathname,this[u].defaultLocale=d,this[u].basePath=c.basePath??"",this[u].buildId=c.buildId,this[u].locale=c.locale??d,this[u].trailingSlash=c.trailingSlash}formatPathname(){return(0,a.formatNextPathnameInfo)({basePath:this[u].basePath,buildId:this[u].buildId,defaultLocale:this[u].options.forceLocale?void 0:this[u].defaultLocale,locale:this[u].locale,pathname:this[u].url.pathname,trailingSlash:this[u].trailingSlash})}formatSearch(){return this[u].url.search}get buildId(){return this[u].buildId}set buildId(e){this[u].buildId=e}get locale(){return this[u].locale??""}set locale(e){var t,r;if(!this[u].locale||!(null==(r=this[u].options.nextConfig)||null==(t=r.i18n)?void 0:t.locales.includes(e)))throw Object.defineProperty(TypeError(`The NextURL configuration includes no locale "${e}"`),"__NEXT_ERROR_CODE",{value:"E597",enumerable:!1,configurable:!0});this[u].locale=e}get defaultLocale(){return this[u].defaultLocale}get domainLocale(){return this[u].domainLocale}get searchParams(){return this[u].url.searchParams}get host(){return this[u].url.host}set host(e){this[u].url.host=e}get hostname(){return this[u].url.hostname}set hostname(e){this[u].url.hostname=e}get port(){return this[u].url.port}set port(e){this[u].url.port=e}get protocol(){return this[u].url.protocol}set protocol(e){this[u].url.protocol=e}get href(){let e=this.formatPathname(),t=this.formatSearch();return`${this.protocol}//${this.host}${e}${t}${this.hash}`}set href(e){this[u].url=c(e),this.analyze()}get origin(){return this[u].url.origin}get pathname(){return this[u].url.pathname}set pathname(e){this[u].url.pathname=e}get hash(){return this[u].url.hash}set hash(e){this[u].url.hash=e}get search(){return this[u].url.search}set search(e){this[u].url.search=e}get password(){return this[u].url.password}set password(e){this[u].url.password=e}get username(){return this[u].url.username}set username(e){this[u].url.username=e}get basePath(){return this[u].basePath}set basePath(e){this[u].basePath=e.startsWith("/")?e:`/${e}`}toString(){return this.href}toJSON(){return this.href}[Symbol.for("edge-runtime.inspect.custom")](){return{href:this.href,origin:this.origin,protocol:this.protocol,username:this.username,password:this.password,host:this.host,hostname:this.hostname,port:this.port,pathname:this.pathname,search:this.search,searchParams:this.searchParams,hash:this.hash}}clone(){return new l(String(this),this[u].options)}}},91401,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={ACTION_SUFFIX:function(){return m},APP_DIR_ALIAS:function(){return H},CACHE_ONE_YEAR_SECONDS:function(){return C},DOT_NEXT_ALIAS:function(){return U},ESLINT_DEFAULT_DIRS:function(){return es},GSP_NO_RETURNED_VALUE:function(){return et},GSSP_COMPONENT_MEMBER_ERROR:function(){return ea},GSSP_NO_RETURNED_VALUE:function(){return er},HTML_CONTENT_TYPE_HEADER:function(){return o},INFINITE_CACHE:function(){return I},INSTRUMENTATION_HOOK_FILENAME:function(){return k},JSON_CONTENT_TYPE_HEADER:function(){return s},MATCHED_PATH_HEADER:function(){return l},MIDDLEWARE_FILENAME:function(){return D},MIDDLEWARE_LOCATION_REGEXP:function(){return j},NEXT_BODY_SUFFIX:function(){return _},NEXT_CACHE_IMPLICIT_TAG_ID:function(){return N},NEXT_CACHE_REVALIDATED_TAGS_HEADER:function(){return R},NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER:function(){return w},NEXT_CACHE_ROOT_PARAM_TAG_ID:function(){return A},NEXT_CACHE_SOFT_TAG_MAX_LENGTH:function(){return T},NEXT_CACHE_TAGS_HEADER:function(){return E},NEXT_CACHE_TAG_MAX_ITEMS:function(){return O},NEXT_CACHE_TAG_MAX_LENGTH:function(){return P},NEXT_DATA_SUFFIX:function(){return b},NEXT_INTERCEPTION_MARKER_PREFIX:function(){return u},NEXT_META_SUFFIX:function(){return v},NEXT_NAV_DEPLOYMENT_ID_HEADER:function(){return y},NEXT_QUERY_PARAM_PREFIX:function(){return c},NEXT_RESUME_HEADER:function(){return S},NEXT_RESUME_STATE_LENGTH_HEADER:function(){return x},NON_STANDARD_NODE_ENV:function(){return ei},PAGES_DIR_ALIAS:function(){return $},PRERENDER_REVALIDATE_HEADER:function(){return d},PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER:function(){return h},PROXY_FILENAME:function(){return M},PROXY_LOCATION_REGEXP:function(){return L},PUBLIC_DIR_MIDDLEWARE_CONFLICT:function(){return Y},ROOT_DIR_ALIAS:function(){return B},RSC_ACTION_CLIENT_WRAPPER_ALIAS:function(){return z},RSC_ACTION_ENCRYPTION_ALIAS:function(){return W},RSC_ACTION_PROXY_ALIAS:function(){return q},RSC_ACTION_VALIDATE_ALIAS:function(){return X},RSC_CACHE_WRAPPER_ALIAS:function(){return V},RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS:function(){return F},RSC_MOD_REF_PROXY_ALIAS:function(){return G},RSC_SEGMENTS_DIR_SUFFIX:function(){return p},RSC_SEGMENT_SUFFIX:function(){return f},RSC_SUFFIX:function(){return g},SERVER_PROPS_EXPORT_ERROR:function(){return ee},SERVER_PROPS_GET_INIT_PROPS_CONFLICT:function(){return J},SERVER_PROPS_SSG_CONFLICT:function(){return Z},SERVER_RUNTIME:function(){return ec},SSG_FALLBACK_EXPORT_ERROR:function(){return eo},SSG_GET_INITIAL_PROPS_CONFLICT:function(){return K},STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR:function(){return Q},TEXT_PLAIN_CONTENT_TYPE_HEADER:function(){return i},UNSTABLE_REVALIDATE_RENAME_ERROR:function(){return en},WEBPACK_LAYERS:function(){return ed},WEBPACK_RESOURCE_QUERIES:function(){return eh},WEB_SOCKET_MAX_RECONNECTIONS:function(){return eu}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i="text/plain",o="text/html; charset=utf-8",s="application/json; charset=utf-8",c="nxtP",u="nxtI",l="x-matched-path",d="x-prerender-revalidate",h="x-prerender-revalidate-if-generated",p=".segments",f=".segment.rsc",g=".rsc",m=".action",b=".json",v=".meta",_=".body",y="x-nextjs-deployment-id",E="x-next-cache-tags",R="x-next-revalidated-tags",w="x-next-revalidate-tag-token",S="next-resume",x="x-next-resume-state-length",O=128,P=256,T=1024,N="_N_T_",A="_N_RP_",C=31536e3,I=0xfffffffe,D="middleware",j=`(?:src/)?${D}`,M="proxy",L=`(?:src/)?${M}`,k="instrumentation",$="private-next-pages",U="private-dot-next",B="private-next-root-dir",H="private-next-app-dir",G="private-next-rsc-mod-ref-proxy",X="private-next-rsc-action-validate",q="private-next-rsc-server-reference",V="private-next-rsc-cache-wrapper",F="private-next-rsc-track-dynamic-import",W="private-next-rsc-action-encryption",z="private-next-rsc-action-client-wrapper",Y="You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict",K="You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps",J="You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.",Z="You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps",Q="can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props",ee="pages with `getServerSideProps` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export",et="Your `getStaticProps` function did not return an object. Did you forget to add a `return`?",er="Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?",en="The `unstable_revalidate` property is available for general use.\nPlease use `revalidate` instead.",ea="can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member",ei='You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env',eo="Pages with `fallback` enabled in `getStaticPaths` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export",es=["app","pages","components","lib","src"],ec={edge:"edge",experimentalEdge:"experimental-edge",nodejs:"nodejs"},eu=12,el={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"},ed={...el,GROUP:{builtinReact:[el.reactServerComponents,el.actionBrowser],serverOnly:[el.reactServerComponents,el.actionBrowser,el.instrument,el.middleware],neutralTarget:[el.apiNode,el.apiEdge],clientOnly:[el.serverSideRendering,el.appPagesBrowser],bundled:[el.reactServerComponents,el.actionBrowser,el.serverSideRendering,el.appPagesBrowser,el.shared,el.instrument,el.middleware],appPages:[el.reactServerComponents,el.serverSideRendering,el.appPagesBrowser,el.actionBrowser]}},eh={edgeSSREntry:"__next_edge_ssr_entry__",metadata:"__next_metadata__",metadataRoute:"__next_metadata_route__",metadataImageMeta:"__next_metadata_image_meta__"}},80333,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={fromNodeOutgoingHttpHeaders:function(){return o},normalizeNextQueryParam:function(){return l},splitCookiesString:function(){return s},toNodeOutgoingHttpHeaders:function(){return c},validateURL:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(91401);function o(e){let t=new Headers;for(let[r,n]of Object.entries(e))for(let e of Array.isArray(n)?n:[n])void 0!==e&&("number"==typeof e&&(e=e.toString()),t.append(r,e));return t}function s(e){var t,r,n,a,i,o=[],s=0;function c(){for(;s=e.length)&&o.push(e.substring(t,e.length))}return o}function c(e){let t={},r=[];if(e)for(let[n,a]of e.entries())"set-cookie"===n.toLowerCase()?(r.push(...s(a)),t[n]=1===r.length?r[0]:r):t[n]=a;return t}function u(e){try{return String(new URL(String(e)))}catch(t){throw Object.defineProperty(Error(`URL is malformed "${String(e)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,{cause:t}),"__NEXT_ERROR_CODE",{value:"E61",enumerable:!1,configurable:!0})}}function l(e){for(let t of[i.NEXT_QUERY_PARAM_PREFIX,i.NEXT_INTERCEPTION_MARKER_PREFIX])if(e!==t&&e.startsWith(t))return e.substring(t.length);return null}},47389,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={PageSignatureError:function(){return i},RemovedPageError:function(){return o},RemovedUAError:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});class i extends Error{constructor({page:e}){super(`The middleware "${e}" accepts an async API directly with the form: + + export function middleware(request, event) { + return NextResponse.redirect('/new-location') + } + + Read more: https://nextjs.org/docs/messages/middleware-new-signature + `)}}class o extends Error{constructor(){super("The request.page has been deprecated in favour of `URLPattern`.\n Read more: https://nextjs.org/docs/messages/middleware-request-page\n ")}}class s extends Error{constructor(){super("The request.ua has been removed in favour of `userAgent` function.\n Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n ")}}},472,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={RequestCookies:function(){return i.RequestCookies},ResponseCookies:function(){return i.ResponseCookies},stringifyCookie:function(){return i.stringifyCookie}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(19481)},29666,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={INTERNALS:function(){return u},NextRequest:function(){return l}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(99536),o=e.r(80333),s=e.r(47389),c=e.r(472),u=Symbol("internal request");class l extends Request{constructor(e,t={}){const r="string"!=typeof e&&"url"in e?e.url:String(e);(0,o.validateURL)(r),t.body&&"half"!==t.duplex&&(t.duplex="half"),e instanceof Request?super(e,t):super(r,t);const n=new i.NextURL(r,{headers:(0,o.toNodeOutgoingHttpHeaders)(this.headers),nextConfig:t.nextConfig});this[u]={cookies:new c.RequestCookies(this.headers),nextUrl:n,url:n.toString()}}[Symbol.for("edge-runtime.inspect.custom")](){return{cookies:this.cookies,nextUrl:this.nextUrl,url:this.url,bodyUsed:this.bodyUsed,cache:this.cache,credentials:this.credentials,destination:this.destination,headers:Object.fromEntries(this.headers),integrity:this.integrity,keepalive:this.keepalive,method:this.method,mode:this.mode,redirect:this.redirect,referrer:this.referrer,referrerPolicy:this.referrerPolicy,signal:this.signal}}get cookies(){return this[u].cookies}get nextUrl(){return this[u].nextUrl}get page(){throw new s.RemovedPageError}get ua(){throw new s.RemovedUAError}get url(){return this[u].url}}},30759,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ReflectAdapter",{enumerable:!0,get:function(){return n}});class n{static get(e,t,r){let n=Reflect.get(e,t,r);return"function"==typeof n?n.bind(e):n}static set(e,t,r,n){return Reflect.set(e,t,r,n)}static has(e,t){return Reflect.has(e,t)}static deleteProperty(e,t){return Reflect.deleteProperty(e,t)}}},46633,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"NextResponse",{enumerable:!0,get:function(){return d}});let n=e.r(472),a=e.r(99536),i=e.r(80333),o=e.r(30759),s=e.r(472),c=Symbol("internal response"),u=new Set([301,302,303,307,308]);function l(e,t){var r;if(null==e||null==(r=e.request)?void 0:r.headers){if(!(e.request.headers instanceof Headers))throw Object.defineProperty(Error("request.headers must be an instance of Headers"),"__NEXT_ERROR_CODE",{value:"E119",enumerable:!1,configurable:!0});let r=[];for(let[n,a]of e.request.headers)t.set("x-middleware-request-"+n,a),r.push(n);t.set("x-middleware-override-headers",r.join(","))}}class d extends Response{constructor(e,t={}){super(e,t);const r=this.headers,u=new Proxy(new s.ResponseCookies(r),{get(e,a,i){switch(a){case"delete":case"set":return(...i)=>{let o=Reflect.apply(e[a],e,i),c=new Headers(r);return o instanceof s.ResponseCookies&&r.set("x-middleware-set-cookie",o.getAll().map(e=>(0,n.stringifyCookie)(e)).join(",")),l(t,c),o};default:return o.ReflectAdapter.get(e,a,i)}}});this[c]={cookies:u,url:t.url?new a.NextURL(t.url,{headers:(0,i.toNodeOutgoingHttpHeaders)(r),nextConfig:t.nextConfig}):void 0}}[Symbol.for("edge-runtime.inspect.custom")](){return{cookies:this.cookies,url:this.url,body:this.body,bodyUsed:this.bodyUsed,headers:Object.fromEntries(this.headers),ok:this.ok,redirected:this.redirected,status:this.status,statusText:this.statusText,type:this.type}}get cookies(){return this[c].cookies}static json(e,t){let r=Response.json(e,t);return new d(r.body,r)}static redirect(e,t){let r="number"==typeof t?t:(null==t?void 0:t.status)??307;if(!u.has(r))throw Object.defineProperty(RangeError('Failed to execute "redirect" on "response": Invalid status code'),"__NEXT_ERROR_CODE",{value:"E529",enumerable:!1,configurable:!0});let n="object"==typeof t?t:{},a=new Headers(null==n?void 0:n.headers);return a.set("Location",(0,i.validateURL)(e)),new d(null,{...n,headers:a,status:r})}static rewrite(e,t){let r=new Headers(null==t?void 0:t.headers);return r.set("x-middleware-rewrite",(0,i.validateURL)(e)),l(t,r),new d(null,{...t,headers:r})}static next(e){let t=new Headers(null==e?void 0:e.headers);return t.set("x-middleware-next","1"),l(e,t),new d(null,{...e,headers:t})}}},87963,(e,t,r)=>{"use strict";function n(){throw Object.defineProperty(Error('ImageResponse moved from "next/server" to "next/og" since Next.js 14, please import from "next/og" instead'),"__NEXT_ERROR_CODE",{value:"E183",enumerable:!1,configurable:!0})}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ImageResponse",{enumerable:!0,get:function(){return n}})},99299,(e,t,r)=>{var n={226:function(t,r){!function(n){"use strict";var a="function",i="undefined",o="object",s="string",c="major",u="model",l="name",d="type",h="vendor",p="version",f="architecture",g="console",m="mobile",b="tablet",v="smarttv",_="wearable",y="embedded",E="Amazon",R="Apple",w="ASUS",S="BlackBerry",x="Browser",O="Chrome",P="Firefox",T="Google",N="Huawei",A="Microsoft",C="Motorola",I="Opera",D="Samsung",j="Sharp",M="Sony",L="Xiaomi",k="Zebra",$="Facebook",U="Chromium OS",B="Mac OS",H=function(e,t){var r={};for(var n in e)t[n]&&t[n].length%2==0?r[n]=t[n].concat(e[n]):r[n]=e[n];return r},G=function(e){for(var t={},r=0;r0?2===s.length?typeof s[1]==a?this[s[0]]=s[1].call(this,u):this[s[0]]=s[1]:3===s.length?typeof s[1]!==a||s[1].exec&&s[1].test?this[s[0]]=u?u.replace(s[1],s[2]):void 0:this[s[0]]=u?s[1].call(this,u,s[2]):void 0:4===s.length&&(this[s[0]]=u?s[3].call(this,u.replace(s[1],s[2])):void 0):this[s]=u||void 0;l+=2}},W=function(e,t){for(var r in t)if(typeof t[r]===o&&t[r].length>0){for(var n=0;n2&&(e[u]="iPad",e[d]=b),e},this.getEngine=function(){var e={};return e[l]=void 0,e[p]=void 0,F.call(e,g,_.engine),e},this.getOS=function(){var e={};return e[l]=void 0,e[p]=void 0,F.call(e,g,_.os),y&&!e[l]&&v&&"Unknown"!=v.platform&&(e[l]=v.platform.replace(/chrome os/i,U).replace(/macos/i,B)),e},this.getResult=function(){return{ua:this.getUA(),browser:this.getBrowser(),engine:this.getEngine(),os:this.getOS(),device:this.getDevice(),cpu:this.getCPU()}},this.getUA=function(){return g},this.setUA=function(e){return g=typeof e===s&&e.length>350?V(e,350):e,this},this.setUA(g),this};if(K.VERSION="1.0.35",K.BROWSER=G([l,p,c]),K.CPU=G([f]),K.DEVICE=G([u,h,d,g,m,v,b,_,y]),K.ENGINE=K.OS=G([l,p]),typeof r!==i)t.exports&&(r=t.exports=K),r.UAParser=K;else if(typeof define===a&&define.amd)e.r,void 0!==K&&e.v(K);else typeof n!==i&&(n.UAParser=K);var J=typeof n!==i&&(n.jQuery||n.Zepto);if(J&&!J.ua){var Z=new K;J.ua=Z.getResult(),J.ua.get=function(){return Z.getUA()},J.ua.set=function(e){Z.setUA(e);var t=Z.getResult();for(var r in t)J.ua[r]=t[r]}}}(this)}},a={};function i(e){var t=a[e];if(void 0!==t)return t.exports;var r=a[e]={exports:{}},o=!0;try{n[e].call(r.exports,r,r.exports,i),o=!1}finally{o&&delete a[e]}return r.exports}i.ab="/ROOT/node_modules/next/dist/compiled/ua-parser-js/",t.exports=i(226)},4386,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a={isBot:function(){return s},userAgent:function(){return u},userAgentFromString:function(){return c}};for(var i in a)Object.defineProperty(r,i,{enumerable:!0,get:a[i]});let o=(n=e.r(99299))&&n.__esModule?n:{default:n};function s(e){return/Googlebot|Mediapartners-Google|AdsBot-Google|googleweblight|Storebot-Google|Google-PageRenderer|Google-InspectionTool|Bingbot|BingPreview|Slurp|DuckDuckBot|baiduspider|yandex|sogou|LinkedInBot|bitlybot|tumblr|vkShare|quora link preview|facebookexternalhit|facebookcatalog|Twitterbot|applebot|redditbot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|ia_archiver|GPTBot/i.test(e)}function c(e){return{...(0,o.default)(e),isBot:void 0!==e&&s(e)}}function u({headers:e}){return c(e.get("user-agent")||void 0)}},79187,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"URLPattern",{enumerable:!0,get:function(){return n}});let n="u"{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"after",{enumerable:!0,get:function(){return a}});let n=e.r(56704);function a(e){let t=n.workAsyncStorage.getStore();if(!t)throw Object.defineProperty(Error("`after` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context"),"__NEXT_ERROR_CODE",{value:"E468",enumerable:!1,configurable:!0});let{afterContext:r}=t;return r.after(e)}},81053,(e,t,r)=>{"use strict";var n,a;Object.defineProperty(r,"__esModule",{value:!0}),n=e.r(53309),a=r,Object.keys(n).forEach(function(e){"default"===e||Object.prototype.hasOwnProperty.call(a,e)||Object.defineProperty(a,e,{enumerable:!0,get:function(){return n[e]}})})},65252,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={DynamicServerError:function(){return o},isDynamicServerError:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i="DYNAMIC_SERVER_USAGE";class o extends Error{constructor(e){super(`Dynamic server usage: ${e}`),this.description=e,this.digest=i}}function s(e){return"object"==typeof e&&null!==e&&"digest"in e&&"string"==typeof e.digest&&e.digest===i}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},97573,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={StaticGenBailoutError:function(){return o},isStaticGenBailoutError:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i="NEXT_STATIC_GEN_BAILOUT";class o extends Error{constructor(...e){super(...e),this.code=i}}function s(e){return"object"==typeof e&&null!==e&&"code"in e&&e.code===i}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},76414,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"InvariantError",{enumerable:!0,get:function(){return n}});class n extends Error{constructor(e,t){super(`Invariant: ${e.endsWith(".")?e:e+"."} This is a bug in Next.js.`,t),this.name="InvariantError"}}},8211,(e,t,r)=>{"use strict";function n(){let e,t,r=new Promise((r,n)=>{e=r,t=n});return{resolve:e,reject:t,promise:r}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"createPromiseWithResolvers",{enumerable:!0,get:function(){return n}})},18185,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a={RenderStage:function(){return c},StagedRenderingController:function(){return u}};for(var i in a)Object.defineProperty(r,i,{enumerable:!0,get:a[i]});let o=e.r(76414),s=e.r(8211);var c=((n={})[n.Before=1]="Before",n[n.EarlyStatic=2]="EarlyStatic",n[n.Static=3]="Static",n[n.EarlyRuntime=4]="EarlyRuntime",n[n.Runtime=5]="Runtime",n[n.Dynamic=6]="Dynamic",n[n.Abandoned=7]="Abandoned",n);class u{constructor(e,t,r){this.abortSignal=e,this.abandonController=t,this.shouldTrackSyncIO=r,this.currentStage=1,this.syncInterruptReason=null,this.staticStageEndTime=1/0,this.runtimeStageEndTime=1/0,this.staticStageListeners=[],this.earlyRuntimeStageListeners=[],this.runtimeStageListeners=[],this.dynamicStageListeners=[],this.staticStagePromise=(0,s.createPromiseWithResolvers)(),this.earlyRuntimeStagePromise=(0,s.createPromiseWithResolvers)(),this.runtimeStagePromise=(0,s.createPromiseWithResolvers)(),this.dynamicStagePromise=(0,s.createPromiseWithResolvers)(),e&&e.addEventListener("abort",()=>{let{reason:t}=e;this.staticStagePromise.promise.catch(l),this.staticStagePromise.reject(t),this.earlyRuntimeStagePromise.promise.catch(l),this.earlyRuntimeStagePromise.reject(t),this.runtimeStagePromise.promise.catch(l),this.runtimeStagePromise.reject(t),this.dynamicStagePromise.promise.catch(l),this.dynamicStagePromise.reject(t)},{once:!0}),t&&t.signal.addEventListener("abort",()=>{this.abandonRender()},{once:!0})}onStage(e,t){if(this.currentStage>=e)t();else if(3===e)this.staticStageListeners.push(t);else if(4===e)this.earlyRuntimeStageListeners.push(t);else if(5===e)this.runtimeStageListeners.push(t);else if(6===e)this.dynamicStageListeners.push(t);else throw Object.defineProperty(new o.InvariantError(`Invalid render stage: ${e}`),"__NEXT_ERROR_CODE",{value:"E881",enumerable:!1,configurable:!0})}shouldTrackSyncInterrupt(){if(!this.shouldTrackSyncIO)return!1;switch(this.currentStage){case 1:case 5:case 6:case 7:default:return!1;case 2:case 3:case 4:return!0}}syncInterruptCurrentStageWithReason(e){if(1!==this.currentStage&&7!==this.currentStage){if(this.abandonController)return void this.abandonController.abort();if(this.abortSignal){this.syncInterruptReason=e,this.currentStage=7;return}switch(this.currentStage){case 2:case 3:case 4:this.syncInterruptReason=e,this.advanceStage(6);return;case 5:return}}}getSyncInterruptReason(){return this.syncInterruptReason}getStaticStageEndTime(){return this.staticStageEndTime}getRuntimeStageEndTime(){return this.runtimeStageEndTime}abandonRender(){let{currentStage:e}=this;switch(e){case 2:this.resolveStaticStage();case 3:this.resolveEarlyRuntimeStage();case 4:this.resolveRuntimeStage();case 5:this.currentStage=7;return}}advanceStage(e){if(e<=this.currentStage)return;let t=this.currentStage;if(this.currentStage=e,t<3&&e>=3&&this.resolveStaticStage(),t<4&&e>=4&&this.resolveEarlyRuntimeStage(),t<5&&e>=5&&(this.staticStageEndTime=performance.now()+performance.timeOrigin,this.resolveRuntimeStage()),t<6&&e>=6){this.runtimeStageEndTime=performance.now()+performance.timeOrigin,this.resolveDynamicStage();return}}resolveStaticStage(){let e=this.staticStageListeners;for(let t=0;t{n.then(e.bind(null,i),t)}),void 0!==a&&(o.displayName=a),o);return this.abortSignal&&s.catch(l),s}}function l(){}},4642,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={delayUntilRuntimeStage:function(){return f},getRuntimeStage:function(){return p},isHangingPromiseRejectionError:function(){return o},makeDevtoolsIOAwarePromise:function(){return h},makeHangingPromise:function(){return l}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(18185);function o(e){return"object"==typeof e&&null!==e&&"digest"in e&&e.digest===s}let s="HANGING_PROMISE_REJECTION";class c extends Error{constructor(e,t){super(`During prerendering, ${t} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${t} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${e}".`),this.route=e,this.expression=t,this.digest=s}}let u=new WeakMap;function l(e,t,r){if(e.aborted)return Promise.reject(new c(t,r));{let n=new Promise((n,a)=>{let i=a.bind(null,new c(t,r)),o=u.get(e);if(o)o.push(i);else{let t=[i];u.set(e,t),e.addEventListener("abort",()=>{for(let e=0;e{setTimeout(()=>{t(e)},0)})}function p(e){return e.currentStage===i.RenderStage.EarlyStatic||e.currentStage===i.RenderStage.EarlyRuntime?i.RenderStage.EarlyRuntime:i.RenderStage.Runtime}function f(e,t){let{stagedRendering:r}=e;return r?r.waitForStage(p(r)).then(()=>t):t}},96306,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={METADATA_BOUNDARY_NAME:function(){return i},OUTLET_BOUNDARY_NAME:function(){return s},ROOT_LAYOUT_BOUNDARY_NAME:function(){return c},VIEWPORT_BOUNDARY_NAME:function(){return o}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i="__next_metadata_boundary__",o="__next_viewport_boundary__",s="__next_outlet_boundary__",c="__next_root_layout_boundary__"},38244,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={atLeastOneTask:function(){return s},scheduleImmediate:function(){return o},scheduleOnNextTick:function(){return i},waitAtLeastOneReactRenderTask:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e=>{Promise.resolve().then(()=>{process.nextTick(e)})},o=e=>{setImmediate(e)};function s(){return new Promise(e=>o(e))}function c(){return new Promise(e=>setImmediate(e))}},31584,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={BailoutToCSRError:function(){return o},isBailoutToCSRError:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i="BAILOUT_TO_CLIENT_SIDE_RENDERING";class o extends Error{constructor(e){super(`Bail out to client-side rendering: ${e}`),this.reason=e,this.digest=i}}function s(e){return"object"==typeof e&&null!==e&&"digest"in e&&e.digest===i}},25412,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"INSTANT_VALIDATION_BOUNDARY_NAME",{enumerable:!0,get:function(){return n}});let n="__next_instant_validation_boundary__"},68665,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a,i,o={DynamicHoleKind:function(){return Z},Postpone:function(){return N},PreludeState:function(){return ei},abortAndThrowOnSynchronousRequestDataAccess:function(){return T},abortOnSynchronousPlatformIOAccess:function(){return P},accessedDynamicData:function(){return k},annotateDynamicAccess:function(){return G},consumeDynamicAccess:function(){return $},createDynamicTrackingState:function(){return y},createDynamicValidationState:function(){return E},createHangingInputAbortSignal:function(){return H},createInstantValidationState:function(){return Q},createRenderInBrowserAbortSignal:function(){return B},formatDynamicAPIAccesses:function(){return U},getFirstDynamicReason:function(){return R},getNavigationDisallowedDynamicReasons:function(){return eu},getStaticShellDisallowedDynamicReasons:function(){return ec},isDynamicPostpone:function(){return I},isPrerenderInterruptedError:function(){return L},logDisallowedDynamicError:function(){return eo},markCurrentScopeAsDynamic:function(){return w},postponeWithTracking:function(){return A},throwIfDisallowedDynamic:function(){return es},throwToInterruptStaticGeneration:function(){return S},trackAllowedDynamicAccess:function(){return J},trackDynamicDataInDynamicRender:function(){return x},trackDynamicHoleInNavigation:function(){return ee},trackDynamicHoleInRuntimeShell:function(){return er},trackDynamicHoleInStaticShell:function(){return en},trackThrownErrorInNavigation:function(){return et},useDynamicRouteParams:function(){return X},useDynamicSearchParams:function(){return q}};for(var s in o)Object.defineProperty(r,s,{enumerable:!0,get:o[s]});let c=(n=e.r(47540))&&n.__esModule?n:{default:n},u=e.r(65252),l=e.r(97573),d=e.r(32319),h=e.r(56704),p=e.r(4642),f=e.r(96306),g=e.r(38244),m=e.r(31584),b=e.r(76414),v=e.r(25412),_="function"==typeof c.default.unstable_postpone;function y(e){return{isDebugDynamicAccesses:e,dynamicAccesses:[],syncDynamicErrorWithStack:null}}function E(){return{hasSuspenseAboveBody:!1,hasDynamicMetadata:!1,dynamicMetadata:null,hasDynamicViewport:!1,hasAllowedDynamic:!1,dynamicErrors:[]}}function R(e){var t;return null==(t=e.dynamicAccesses[0])?void 0:t.expression}function w(e,t,r){if(t)switch(t.type){case"cache":case"unstable-cache":case"private-cache":return}if(!e.forceDynamic&&!e.forceStatic){if(e.dynamicShouldError)throw Object.defineProperty(new l.StaticGenBailoutError(`Route ${e.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${r}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E553",enumerable:!1,configurable:!0});if(t)switch(t.type){case"prerender-ppr":return A(e.route,r,t.dynamicTracking);case"prerender-legacy":t.revalidate=0;let n=Object.defineProperty(new u.DynamicServerError(`Route ${e.route} couldn't be rendered statically because it used ${r}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E550",enumerable:!1,configurable:!0});throw e.dynamicUsageDescription=r,e.dynamicUsageStack=n.stack,n}}}function S(e,t,r){let n=Object.defineProperty(new u.DynamicServerError(`Route ${t.route} couldn't be rendered statically because it used \`${e}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E558",enumerable:!1,configurable:!0});throw r.revalidate=0,t.dynamicUsageDescription=e,t.dynamicUsageStack=n.stack,n}function x(e){switch(e.type){case"cache":case"unstable-cache":case"private-cache":return}}function O(e,t,r){let n=M(`Route ${e} needs to bail out of prerendering at this point because it used ${t}.`);r.controller.abort(n);let a=r.dynamicTracking;a&&a.dynamicAccesses.push({stack:a.isDebugDynamicAccesses?Error().stack:void 0,expression:t})}function P(e,t,r,n){let a=n.dynamicTracking;O(e,t,n),a&&null===a.syncDynamicErrorWithStack&&(a.syncDynamicErrorWithStack=r)}function T(e,t,r,n){if(!1===n.controller.signal.aborted){O(e,t,n);let a=n.dynamicTracking;a&&null===a.syncDynamicErrorWithStack&&(a.syncDynamicErrorWithStack=r)}throw M(`Route ${e} needs to bail out of prerendering at this point because it used ${t}.`)}function N({reason:e,route:t}){let r=d.workUnitAsyncStorage.getStore();A(t,e,r&&"prerender-ppr"===r.type?r.dynamicTracking:null)}function A(e,t,r){(function(){if(!_)throw Object.defineProperty(Error("Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E224",enumerable:!1,configurable:!0})})(),r&&r.dynamicAccesses.push({stack:r.isDebugDynamicAccesses?Error().stack:void 0,expression:t}),c.default.unstable_postpone(C(e,t))}function C(e,t){return`Route ${e} needs to bail out of prerendering at this point because it used ${t}. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`}function I(e){return"object"==typeof e&&null!==e&&"string"==typeof e.message&&D(e.message)}function D(e){return e.includes("needs to bail out of prerendering at this point because it used")&&e.includes("Learn more: https://nextjs.org/docs/messages/ppr-caught-error")}if(!1===D(C("%%%","^^^")))throw Object.defineProperty(Error("Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E296",enumerable:!1,configurable:!0});let j="NEXT_PRERENDER_INTERRUPTED";function M(e){let t=Object.defineProperty(Error(e),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});return t.digest=j,t}function L(e){return"object"==typeof e&&null!==e&&e.digest===j&&"name"in e&&"message"in e&&e instanceof Error}function k(e){return e.length>0}function $(e,t){return e.dynamicAccesses.push(...t.dynamicAccesses),e.dynamicAccesses}function U(e){return e.filter(e=>"string"==typeof e.stack&&e.stack.length>0).map(({expression:e,stack:t})=>(t=t.split("\n").slice(4).filter(e=>!(e.includes("node_modules/next/")||e.includes(" ()")||e.includes(" (node:"))).join("\n"),`Dynamic API Usage Debug - ${e}: +${t}`))}function B(){let e=new AbortController;return e.abort(Object.defineProperty(new m.BailoutToCSRError("Render in Browser"),"__NEXT_ERROR_CODE",{value:"E721",enumerable:!1,configurable:!0})),e.signal}function H(e){switch(e.type){case"prerender":case"prerender-runtime":let t=new AbortController;if(e.cacheSignal)e.cacheSignal.inputReady().then(()=>{t.abort()});else if("prerender-runtime"===e.type&&e.stagedRendering){let{stagedRendering:r}=e;r.waitForStage((0,p.getRuntimeStage)(r)).then(()=>(0,g.scheduleOnNextTick)(()=>t.abort()))}else(0,g.scheduleOnNextTick)(()=>t.abort());return t.signal;case"prerender-client":case"validation-client":case"prerender-ppr":case"prerender-legacy":case"request":case"cache":case"private-cache":case"unstable-cache":case"generate-static-params":return}}function G(e,t){let r=t.dynamicTracking;r&&r.dynamicAccesses.push({stack:r.isDebugDynamicAccesses?Error().stack:void 0,expression:e})}function X(e){let t=h.workAsyncStorage.getStore(),r=d.workUnitAsyncStorage.getStore();if(t&&r)switch(r.type){case"prerender-client":case"prerender":{let n=r.fallbackRouteParams;n&&n.size>0&&c.default.use((0,p.makeHangingPromise)(r.renderSignal,t.route,e));break}case"prerender-ppr":{let n=r.fallbackRouteParams;if(n&&n.size>0)return A(t.route,e,r.dynamicTracking);break}case"validation-client":case"prerender-legacy":case"request":case"unstable-cache":break;case"prerender-runtime":throw Object.defineProperty(new b.InvariantError(`\`${e}\` was called during a runtime prerender. Next.js should be preventing ${e} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E771",enumerable:!1,configurable:!0});case"cache":case"private-cache":throw Object.defineProperty(new b.InvariantError(`\`${e}\` was called inside a cache scope. Next.js should be preventing ${e} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E745",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new b.InvariantError(`\`${e}\` was called in \`generateStaticParams\`. Next.js should be preventing ${e} from being included in server component files statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E1130",enumerable:!1,configurable:!0})}}function q(e){let t=h.workAsyncStorage.getStore(),r=d.workUnitAsyncStorage.getStore();if(t)switch(!r&&(0,d.throwForMissingRequestStore)(e),r.type){case"validation-client":case"request":return;case"prerender-client":c.default.use((0,p.makeHangingPromise)(r.renderSignal,t.route,e));break;case"prerender-legacy":case"prerender-ppr":if(t.forceStatic)return;throw Object.defineProperty(new m.BailoutToCSRError(e),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});case"prerender":case"prerender-runtime":throw Object.defineProperty(new b.InvariantError(`\`${e}\` was called from a Server Component. Next.js should be preventing ${e} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E795",enumerable:!1,configurable:!0});case"cache":case"unstable-cache":case"private-cache":throw Object.defineProperty(new b.InvariantError(`\`${e}\` was called inside a cache scope. Next.js should be preventing ${e} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E745",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new b.InvariantError(`\`${e}\` was called in \`generateStaticParams\`. Next.js should be preventing ${e} from being included in server component files statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E1130",enumerable:!1,configurable:!0})}}let V=/\n\s+at Suspense \(\)/,F=RegExp(`\\n\\s+at Suspense \\(\\)(?:(?!\\n\\s+at (?:body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6) \\(\\))[\\s\\S])*?\\n\\s+at ${f.ROOT_LAYOUT_BOUNDARY_NAME} \\([^\\n]*\\)`),W=RegExp(`\\n\\s+at ${f.METADATA_BOUNDARY_NAME}[\\n\\s]`),z=RegExp(`\\n\\s+at ${f.VIEWPORT_BOUNDARY_NAME}[\\n\\s]`),Y=RegExp(`\\n\\s+at ${f.OUTLET_BOUNDARY_NAME}[\\n\\s]`),K=RegExp(`\\n\\s+at ${v.INSTANT_VALIDATION_BOUNDARY_NAME}[\\n\\s]`);function J(e,t,r,n){if(!Y.test(t)){if(W.test(t)){r.hasDynamicMetadata=!0;return}if(z.test(t)){r.hasDynamicViewport=!0;return}if(F.test(t)){r.hasAllowedDynamic=!0,r.hasSuspenseAboveBody=!0;return}else if(V.test(t)){r.hasAllowedDynamic=!0;return}else{if(n.syncDynamicErrorWithStack)return void r.dynamicErrors.push(n.syncDynamicErrorWithStack);let a=ea(Object.defineProperty(Error(`Route "${e.route}": Uncached data was accessed outside of . This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1079",enumerable:!1,configurable:!0}),t,null);return void r.dynamicErrors.push(a)}}}var Z=((a={})[a.Runtime=1]="Runtime",a[a.Dynamic=2]="Dynamic",a);function Q(e){return{hasDynamicMetadata:!1,hasAllowedClientDynamicAboveBoundary:!1,dynamicMetadata:null,hasDynamicViewport:!1,hasAllowedDynamic:!1,dynamicErrors:[],validationPreventingErrors:[],thrownErrorsOutsideBoundary:[],createInstantStack:e}}function ee(e,t,r,n,a,i){if(Y.test(t))return;if(W.test(t)){let n=ea(Object.defineProperty(Error(`Route "${e.route}": ${1===a?"Runtime data such as `cookies()`, `headers()`, `params`, or `searchParams` was accessed inside `generateMetadata` or you have file-based metadata such as icons that depend on dynamic params segments.":"Uncached data or `connection()` was accessed inside `generateMetadata`."} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1076",enumerable:!1,configurable:!0}),t,r.createInstantStack);r.dynamicMetadata=n;return}if(z.test(t)){let n=ea(Object.defineProperty(Error(`Route "${e.route}": ${1===a?"Runtime data such as `cookies()`, `headers()`, `params`, or `searchParams` was accessed inside `generateViewport`.":"Uncached data or `connection()` was accessed inside `generateViewport`."} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1086",enumerable:!1,configurable:!0}),t,r.createInstantStack);r.dynamicErrors.push(n);return}let o=K.exec(t);if(o){let e=V.exec(t);if(e&&e.index`.":"Uncached data or `connection()` was accessed outside of ``."} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1078",enumerable:!1,configurable:!0}),t,r.createInstantStack);r.dynamicErrors.push(s)}function et(e,t,r,n){let a=K.exec(n);if(a){let i=V.exec(n);if(i&&i.index\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1084",enumerable:!1,configurable:!0}),t,null);r.dynamicErrors.push(a)}function en(e,t,r,n){if(!Y.test(t)){if(W.test(t)){r.dynamicMetadata=ea(Object.defineProperty(Error(`Route "${e.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1085",enumerable:!1,configurable:!0}),t,null);return}if(z.test(t)){let n=ea(Object.defineProperty(Error(`Route "${e.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1081",enumerable:!1,configurable:!0}),t,null);r.dynamicErrors.push(n);return}if(F.test(t)){r.hasAllowedDynamic=!0,r.hasSuspenseAboveBody=!0;return}else if(V.test(t)){r.hasAllowedDynamic=!0;return}else{if(n.syncDynamicErrorWithStack)return void r.dynamicErrors.push(n.syncDynamicErrorWithStack);let a=ea(Object.defineProperty(Error(`Route "${e.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1083",enumerable:!1,configurable:!0}),t,null);return void r.dynamicErrors.push(a)}}}function ea(e,t,r){return null!==r&&(e.cause=r()),e.stack=e.name+": "+e.message+t,e}var ei=((i={})[i.Full=0]="Full",i[i.Empty=1]="Empty",i[i.Errored=2]="Errored",i);function eo(e,t){console.error(t),console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: + - Start the app in development mode by running \`next dev\`, then open "${e.route}" in your browser to investigate the error. + - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`)}function es(e,t,r,n){if(n.syncDynamicErrorWithStack)throw eo(e,n.syncDynamicErrorWithStack),new l.StaticGenBailoutError;if(0!==t){if(r.hasSuspenseAboveBody)return;let n=r.dynamicErrors;if(n.length>0){for(let t=0;t0)return n;if(1===t)return[Object.defineProperty(new b.InvariantError(`Route "${e.route}" did not produce a static shell and Next.js was unable to determine a reason.`),"__NEXT_ERROR_CODE",{value:"E936",enumerable:!1,configurable:!0})]}else if(!1===r.hasAllowedDynamic&&0===r.dynamicErrors.length&&r.dynamicMetadata)return[r.dynamicMetadata];return[]}function eu(e,t,r,n,a){if(n){let{missingSampleErrors:e}=n;if(e.length>0)return e}let{validationPreventingErrors:i}=r;if(i.length>0)return i;if(a.renderedIds.size0)return n;if(1===t)return r.hasAllowedClientDynamicAboveBoundary?[]:[Object.defineProperty(new b.InvariantError(`Route "${e.route}" failed to render during instant validation and Next.js was unable to determine a reason.`),"__NEXT_ERROR_CODE",{value:"E1055",enumerable:!1,configurable:!0})]}else{let e=r.dynamicErrors;if(e.length>0)return e;if(!1===r.hasAllowedDynamic&&r.dynamicMetadata)return[r.dynamicMetadata]}return[]}},72847,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={isRequestAPICallableInsideAfter:function(){return u},throwForSearchParamsAccessInUseCache:function(){return c},throwWithStaticGenerationBailoutErrorWithDynamicError:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let i=e.r(97573),o=e.r(24725);function s(e,t){throw Object.defineProperty(new i.StaticGenBailoutError(`Route ${e} with \`dynamic = "error"\` couldn't be rendered statically because it used ${t}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E543",enumerable:!1,configurable:!0})}function c(e,t){let r=Object.defineProperty(Error(`Route ${e.route} used \`searchParams\` inside "use cache". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \`searchParams\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`),"__NEXT_ERROR_CODE",{value:"E842",enumerable:!1,configurable:!0});throw Error.captureStackTrace(r,t),e.invalidDynamicUsageError??=r,r}function u(){let e=o.afterTaskAsyncStorage.getStore();return(null==e?void 0:e.rootTaskSpawnPhase)==="action"}},75674,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"connection",{enumerable:!0,get:function(){return l}});let n=e.r(56704),a=e.r(32319),i=e.r(68665),o=e.r(97573),s=e.r(4642),c=e.r(72847);e.r(18185);let u=e.r(76414);function l(){let e=n.workAsyncStorage.getStore(),t=a.workUnitAsyncStorage.getStore();if(e){if(t&&"after"===t.phase&&!(0,c.isRequestAPICallableInsideAfter)())throw Object.defineProperty(Error(`Route ${e.route} used \`connection()\` inside \`after()\`. The \`connection()\` function is used to indicate the subsequent code must only run when there is an actual Request, but \`after()\` executes after the request, so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/canary/app/api-reference/functions/after`),"__NEXT_ERROR_CODE",{value:"E827",enumerable:!1,configurable:!0});if(e.forceStatic)return Promise.resolve(void 0);if(e.dynamicShouldError)throw Object.defineProperty(new o.StaticGenBailoutError(`Route ${e.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`connection()\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E847",enumerable:!1,configurable:!0});if(t)switch(t.type){case"cache":{let t=Object.defineProperty(Error(`Route ${e.route} used \`connection()\` inside "use cache". The \`connection()\` function is used to indicate the subsequent code must only run when there is an actual request, but caches must be able to be produced before a request, so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`),"__NEXT_ERROR_CODE",{value:"E841",enumerable:!1,configurable:!0});throw Error.captureStackTrace(t,l),e.invalidDynamicUsageError??=t,t}case"private-cache":{let t=Object.defineProperty(Error(`Route ${e.route} used \`connection()\` inside "use cache: private". The \`connection()\` function is used to indicate the subsequent code must only run when there is an actual navigation request, but caches must be able to be produced before a navigation request, so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`),"__NEXT_ERROR_CODE",{value:"E837",enumerable:!1,configurable:!0});throw Error.captureStackTrace(t,l),e.invalidDynamicUsageError??=t,t}case"unstable-cache":throw Object.defineProperty(Error(`Route ${e.route} used \`connection()\` inside a function cached with \`unstable_cache()\`. The \`connection()\` function is used to indicate the subsequent code must only run when there is an actual Request, but caches must be able to be produced before a Request so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/app/api-reference/functions/unstable_cache`),"__NEXT_ERROR_CODE",{value:"E840",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(Error(`Route ${e.route} used \`connection()\` inside \`generateStaticParams\`. This is not supported because \`generateStaticParams\` runs at build time without an HTTP request. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context`),"__NEXT_ERROR_CODE",{value:"E1125",enumerable:!1,configurable:!0});case"prerender":case"prerender-client":case"prerender-runtime":return(0,s.makeHangingPromise)(t.renderSignal,e.route,"`connection()`");case"validation-client":{let e="`connection`";throw Object.defineProperty(new u.InvariantError(`${e} must not be used within a Client Component. Next.js should be preventing ${e} from being included in Client Components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E1063",enumerable:!1,configurable:!0})}case"prerender-ppr":return(0,i.postponeWithTracking)(e.route,"connection",t.dynamicTracking);case"prerender-legacy":return(0,i.throwToInterruptStaticGeneration)("connection",e,t);case"request":if((0,i.trackDynamicDataInDynamicRender)(t),t.asyncApiPromises)return t.asyncApiPromises.connection;return Promise.resolve(void 0)}}(0,a.throwForMissingRequestStore)("connection")}},89171,(e,t,r)=>{let n={NextRequest:e.r(29666).NextRequest,NextResponse:e.r(46633).NextResponse,ImageResponse:e.r(87963).ImageResponse,userAgentFromString:e.r(4386).userAgentFromString,userAgent:e.r(4386).userAgent,URLPattern:e.r(79187).URLPattern,after:e.r(81053).after,connection:e.r(75674).connection};t.exports=n,r.NextRequest=n.NextRequest,r.NextResponse=n.NextResponse,r.ImageResponse=n.ImageResponse,r.userAgentFromString=n.userAgentFromString,r.userAgent=n.userAgent,r.URLPattern=n.URLPattern,r.after=n.after,r.connection=n.connection}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__0j8-xkl._.js.map \ No newline at end of file diff --git a/.next/server/chunks/[root-of-the-server]__0j8-xkl._.js.map b/.next/server/chunks/[root-of-the-server]__0j8-xkl._.js.map new file mode 100644 index 0000000..b0cf054 --- /dev/null +++ b/.next/server/chunks/[root-of-the-server]__0j8-xkl._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../node_modules/next/src/server/route-modules/app-route/module.compiled.js","../../../node_modules/next/dist/compiled/%40opentelemetry/api/index.js","../../../node_modules/next/src/server/route-modules/app-page/module.compiled.js","../../../node_modules/next/src/server/route-modules/app-page/vendored/rsc/react.ts","../../../node_modules/next/dist/compiled/%40edge-runtime/cookies/index.js","../../../node_modules/next/dist/compiled/cookie/index.js","../../../node_modules/next/dist/esm/server/lib/trace/constants.js","../../../node_modules/next/dist/esm/server/app-render/dynamic-rendering.js","../../../node_modules/next/dist/esm/client/components/hooks-server-context.js","../../../node_modules/next/dist/esm/client/components/static-generation-bailout.js","../../../node_modules/next/dist/esm/server/lib/clone-response.js","../../../node_modules/next/dist/esm/server/lib/lru-cache.js","../../../node_modules/next/dist/esm/lib/picocolors.js","../../../node_modules/next/dist/esm/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/esm/server/web/spec-extension/cookies.js","../../../node_modules/next/dist/esm/server/client-component-renderer-logger.js","../../../node_modules/next/dist/esm/shared/lib/invariant-error.js","../../../node_modules/next/dist/esm/lib/constants.js","../../../node_modules/next/dist/esm/server/instrumentation/utils.js","../../../node_modules/next/dist/esm/server/app-render/instant-validation/boundary-constants.js","../../../node_modules/next/dist/esm/server/response-cache/types.js","../../../node_modules/next/dist/esm/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/esm/server/web/error.js","../../../node_modules/next/dist/esm/shared/lib/segment.js","../../../node_modules/next/dist/esm/lib/framework/boundary-constants.js","../../../node_modules/next/dist/esm/server/route-kind.js","../../../node_modules/next/dist/esm/client/components/redirect-status-code.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js","../../../node_modules/next/dist/esm/server/lib/cache-control.js","../../../node_modules/next/dist/esm/server/dynamic-rendering-utils.js","../../../node_modules/next/dist/esm/server/request-meta.js","../../../node_modules/next/dist/esm/server/lib/trace/tracer.js","../../../node_modules/next/dist/esm/build/output/log.js","../../../node_modules/next/dist/esm/server/base-http/index.js","../../../node_modules/next/dist/esm/server/base-http/node.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/esm/server/api-utils/get-cookie-parser.js","../../../node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js","../../../node_modules/next/dist/esm/server/render-result.js","../../../node_modules/next/dist/esm/server/web/next-url.js","../../../node_modules/next/dist/esm/server/api-utils/index.js","../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/next-request.js","../../../node_modules/next/dist/esm/server/response-cache/utils.js","../../../node_modules/next/dist/esm/server/web/spec-extension/request.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/esm/lib/batcher.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/esm/server/app-render/manifests-singleton.js","../../../node_modules/next/dist/esm/server/response-cache/index.js","../../../node_modules/next/dist/esm/server/lib/dedupe-fetch.js","../../../node_modules/next/dist/esm/server/pipe-readable.js","../../../node_modules/next/dist/esm/shared/lib/get-hostname.js","../../../node_modules/next/dist/esm/lib/scheduler.js","../../../node_modules/next/dist/esm/shared/lib/is-thenable.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/esm/lib/detached-promise.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js","../../../node_modules/next/dist/esm/server/send-response.js","../../../node_modules/next/dist/esm/server/web/utils.js","../../../node_modules/next/dist/esm/server/lib/patch-fetch.js","../../../node_modules/next/dist/esm/server/base-http/helpers.js","../../../node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js","../../../node_modules/next/src/shared/lib/i18n/detect-domain-locale.ts","../../../node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts","../../../node_modules/next/src/shared/lib/router/utils/parse-path.ts","../../../node_modules/next/src/shared/lib/router/utils/add-path-prefix.ts","../../../node_modules/next/src/shared/lib/router/utils/add-path-suffix.ts","../../../node_modules/next/src/shared/lib/router/utils/path-has-prefix.ts","../../../node_modules/next/src/shared/lib/router/utils/add-locale.ts","../../../node_modules/next/src/shared/lib/router/utils/format-next-pathname-info.ts","../../../node_modules/next/src/shared/lib/get-hostname.ts","../../../node_modules/next/src/shared/lib/i18n/normalize-locale-path.ts","../../../node_modules/next/src/shared/lib/router/utils/remove-path-prefix.ts","../../../node_modules/next/src/shared/lib/router/utils/get-next-pathname-info.ts","../../../node_modules/next/src/server/web/next-url.ts","../../../node_modules/next/src/lib/constants.ts","../../../node_modules/next/src/server/web/utils.ts","../../../node_modules/next/src/server/web/error.ts","../../../node_modules/next/src/server/web/spec-extension/cookies.ts","../../../node_modules/next/src/server/web/spec-extension/request.ts","../../../node_modules/next/src/server/web/spec-extension/adapters/reflect.ts","../../../node_modules/next/src/server/web/spec-extension/response.ts","../../../node_modules/next/src/server/web/spec-extension/image-response.ts","../../../node_modules/next/dist/compiled/ua-parser-js/ua-parser.js","../../../node_modules/next/src/server/web/spec-extension/user-agent.ts","../../../node_modules/next/src/server/web/spec-extension/url-pattern.ts","../../../node_modules/next/src/server/after/after.ts","../../../node_modules/next/src/server/after/index.ts","../../../node_modules/next/src/client/components/hooks-server-context.ts","../../../node_modules/next/src/client/components/static-generation-bailout.ts","../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../node_modules/next/src/shared/lib/promise-with-resolvers.ts","../../../node_modules/next/src/server/app-render/staged-rendering.ts","../../../node_modules/next/src/server/dynamic-rendering-utils.ts","../../../node_modules/next/src/lib/framework/boundary-constants.tsx","../../../node_modules/next/src/lib/scheduler.ts","../../../node_modules/next/src/shared/lib/lazy-dynamic/bailout-to-csr.ts","../../../node_modules/next/src/server/app-render/instant-validation/boundary-constants.ts","../../../node_modules/next/src/server/app-render/dynamic-rendering.ts","../../../node_modules/next/src/server/request/utils.ts","../../../node_modules/next/src/server/request/connection.ts","../../../node_modules/next/server.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-route/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-route-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-route-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-route-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-route-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-route-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-route.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-route-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-route.runtime.prod.js')\n }\n }\n }\n}\n","(()=>{\"use strict\";var e={491:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ContextAPI=void 0;const n=r(223);const a=r(172);const o=r(930);const i=\"context\";const c=new n.NoopContextManager;class ContextAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new ContextAPI}return this._instance}setGlobalContextManager(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}active(){return this._getContextManager().active()}with(e,t,r,...n){return this._getContextManager().with(e,t,r,...n)}bind(e,t){return this._getContextManager().bind(e,t)}_getContextManager(){return(0,a.getGlobal)(i)||c}disable(){this._getContextManager().disable();(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.ContextAPI=ContextAPI},930:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagAPI=void 0;const n=r(56);const a=r(912);const o=r(957);const i=r(172);const c=\"diag\";class DiagAPI{constructor(){function _logProxy(e){return function(...t){const r=(0,i.getGlobal)(\"diag\");if(!r)return;return r[e](...t)}}const e=this;const setLogger=(t,r={logLevel:o.DiagLogLevel.INFO})=>{var n,c,s;if(t===e){const t=new Error(\"Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation\");e.error((n=t.stack)!==null&&n!==void 0?n:t.message);return false}if(typeof r===\"number\"){r={logLevel:r}}const u=(0,i.getGlobal)(\"diag\");const l=(0,a.createLogLevelDiagLogger)((c=r.logLevel)!==null&&c!==void 0?c:o.DiagLogLevel.INFO,t);if(u&&!r.suppressOverrideMessage){const e=(s=(new Error).stack)!==null&&s!==void 0?s:\"\";u.warn(`Current logger will be overwritten from ${e}`);l.warn(`Current logger will overwrite one already registered from ${e}`)}return(0,i.registerGlobal)(\"diag\",l,e,true)};e.setLogger=setLogger;e.disable=()=>{(0,i.unregisterGlobal)(c,e)};e.createComponentLogger=e=>new n.DiagComponentLogger(e);e.verbose=_logProxy(\"verbose\");e.debug=_logProxy(\"debug\");e.info=_logProxy(\"info\");e.warn=_logProxy(\"warn\");e.error=_logProxy(\"error\")}static instance(){if(!this._instance){this._instance=new DiagAPI}return this._instance}}t.DiagAPI=DiagAPI},653:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.MetricsAPI=void 0;const n=r(660);const a=r(172);const o=r(930);const i=\"metrics\";class MetricsAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new MetricsAPI}return this._instance}setGlobalMeterProvider(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}getMeterProvider(){return(0,a.getGlobal)(i)||n.NOOP_METER_PROVIDER}getMeter(e,t,r){return this.getMeterProvider().getMeter(e,t,r)}disable(){(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.MetricsAPI=MetricsAPI},181:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.PropagationAPI=void 0;const n=r(172);const a=r(874);const o=r(194);const i=r(277);const c=r(369);const s=r(930);const u=\"propagation\";const l=new a.NoopTextMapPropagator;class PropagationAPI{constructor(){this.createBaggage=c.createBaggage;this.getBaggage=i.getBaggage;this.getActiveBaggage=i.getActiveBaggage;this.setBaggage=i.setBaggage;this.deleteBaggage=i.deleteBaggage}static getInstance(){if(!this._instance){this._instance=new PropagationAPI}return this._instance}setGlobalPropagator(e){return(0,n.registerGlobal)(u,e,s.DiagAPI.instance())}inject(e,t,r=o.defaultTextMapSetter){return this._getGlobalPropagator().inject(e,t,r)}extract(e,t,r=o.defaultTextMapGetter){return this._getGlobalPropagator().extract(e,t,r)}fields(){return this._getGlobalPropagator().fields()}disable(){(0,n.unregisterGlobal)(u,s.DiagAPI.instance())}_getGlobalPropagator(){return(0,n.getGlobal)(u)||l}}t.PropagationAPI=PropagationAPI},997:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceAPI=void 0;const n=r(172);const a=r(846);const o=r(139);const i=r(607);const c=r(930);const s=\"trace\";class TraceAPI{constructor(){this._proxyTracerProvider=new a.ProxyTracerProvider;this.wrapSpanContext=o.wrapSpanContext;this.isSpanContextValid=o.isSpanContextValid;this.deleteSpan=i.deleteSpan;this.getSpan=i.getSpan;this.getActiveSpan=i.getActiveSpan;this.getSpanContext=i.getSpanContext;this.setSpan=i.setSpan;this.setSpanContext=i.setSpanContext}static getInstance(){if(!this._instance){this._instance=new TraceAPI}return this._instance}setGlobalTracerProvider(e){const t=(0,n.registerGlobal)(s,this._proxyTracerProvider,c.DiagAPI.instance());if(t){this._proxyTracerProvider.setDelegate(e)}return t}getTracerProvider(){return(0,n.getGlobal)(s)||this._proxyTracerProvider}getTracer(e,t){return this.getTracerProvider().getTracer(e,t)}disable(){(0,n.unregisterGlobal)(s,c.DiagAPI.instance());this._proxyTracerProvider=new a.ProxyTracerProvider}}t.TraceAPI=TraceAPI},277:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.deleteBaggage=t.setBaggage=t.getActiveBaggage=t.getBaggage=void 0;const n=r(491);const a=r(780);const o=(0,a.createContextKey)(\"OpenTelemetry Baggage Key\");function getBaggage(e){return e.getValue(o)||undefined}t.getBaggage=getBaggage;function getActiveBaggage(){return getBaggage(n.ContextAPI.getInstance().active())}t.getActiveBaggage=getActiveBaggage;function setBaggage(e,t){return e.setValue(o,t)}t.setBaggage=setBaggage;function deleteBaggage(e){return e.deleteValue(o)}t.deleteBaggage=deleteBaggage},993:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.BaggageImpl=void 0;class BaggageImpl{constructor(e){this._entries=e?new Map(e):new Map}getEntry(e){const t=this._entries.get(e);if(!t){return undefined}return Object.assign({},t)}getAllEntries(){return Array.from(this._entries.entries()).map((([e,t])=>[e,t]))}setEntry(e,t){const r=new BaggageImpl(this._entries);r._entries.set(e,t);return r}removeEntry(e){const t=new BaggageImpl(this._entries);t._entries.delete(e);return t}removeEntries(...e){const t=new BaggageImpl(this._entries);for(const r of e){t._entries.delete(r)}return t}clear(){return new BaggageImpl}}t.BaggageImpl=BaggageImpl},830:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataSymbol=void 0;t.baggageEntryMetadataSymbol=Symbol(\"BaggageEntryMetadata\")},369:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataFromString=t.createBaggage=void 0;const n=r(930);const a=r(993);const o=r(830);const i=n.DiagAPI.instance();function createBaggage(e={}){return new a.BaggageImpl(new Map(Object.entries(e)))}t.createBaggage=createBaggage;function baggageEntryMetadataFromString(e){if(typeof e!==\"string\"){i.error(`Cannot create baggage metadata from unknown type: ${typeof e}`);e=\"\"}return{__TYPE__:o.baggageEntryMetadataSymbol,toString(){return e}}}t.baggageEntryMetadataFromString=baggageEntryMetadataFromString},67:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.context=void 0;const n=r(491);t.context=n.ContextAPI.getInstance()},223:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopContextManager=void 0;const n=r(780);class NoopContextManager{active(){return n.ROOT_CONTEXT}with(e,t,r,...n){return t.call(r,...n)}bind(e,t){return t}enable(){return this}disable(){return this}}t.NoopContextManager=NoopContextManager},780:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ROOT_CONTEXT=t.createContextKey=void 0;function createContextKey(e){return Symbol.for(e)}t.createContextKey=createContextKey;class BaseContext{constructor(e){const t=this;t._currentContext=e?new Map(e):new Map;t.getValue=e=>t._currentContext.get(e);t.setValue=(e,r)=>{const n=new BaseContext(t._currentContext);n._currentContext.set(e,r);return n};t.deleteValue=e=>{const r=new BaseContext(t._currentContext);r._currentContext.delete(e);return r}}}t.ROOT_CONTEXT=new BaseContext},506:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.diag=void 0;const n=r(930);t.diag=n.DiagAPI.instance()},56:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagComponentLogger=void 0;const n=r(172);class DiagComponentLogger{constructor(e){this._namespace=e.namespace||\"DiagComponentLogger\"}debug(...e){return logProxy(\"debug\",this._namespace,e)}error(...e){return logProxy(\"error\",this._namespace,e)}info(...e){return logProxy(\"info\",this._namespace,e)}warn(...e){return logProxy(\"warn\",this._namespace,e)}verbose(...e){return logProxy(\"verbose\",this._namespace,e)}}t.DiagComponentLogger=DiagComponentLogger;function logProxy(e,t,r){const a=(0,n.getGlobal)(\"diag\");if(!a){return}r.unshift(t);return a[e](...r)}},972:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagConsoleLogger=void 0;const r=[{n:\"error\",c:\"error\"},{n:\"warn\",c:\"warn\"},{n:\"info\",c:\"info\"},{n:\"debug\",c:\"debug\"},{n:\"verbose\",c:\"trace\"}];class DiagConsoleLogger{constructor(){function _consoleFunc(e){return function(...t){if(console){let r=console[e];if(typeof r!==\"function\"){r=console.log}if(typeof r===\"function\"){return r.apply(console,t)}}}}for(let e=0;e{Object.defineProperty(t,\"__esModule\",{value:true});t.createLogLevelDiagLogger=void 0;const n=r(957);function createLogLevelDiagLogger(e,t){if(en.DiagLogLevel.ALL){e=n.DiagLogLevel.ALL}t=t||{};function _filterFunc(r,n){const a=t[r];if(typeof a===\"function\"&&e>=n){return a.bind(t)}return function(){}}return{error:_filterFunc(\"error\",n.DiagLogLevel.ERROR),warn:_filterFunc(\"warn\",n.DiagLogLevel.WARN),info:_filterFunc(\"info\",n.DiagLogLevel.INFO),debug:_filterFunc(\"debug\",n.DiagLogLevel.DEBUG),verbose:_filterFunc(\"verbose\",n.DiagLogLevel.VERBOSE)}}t.createLogLevelDiagLogger=createLogLevelDiagLogger},957:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagLogLevel=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"ERROR\"]=30]=\"ERROR\";e[e[\"WARN\"]=50]=\"WARN\";e[e[\"INFO\"]=60]=\"INFO\";e[e[\"DEBUG\"]=70]=\"DEBUG\";e[e[\"VERBOSE\"]=80]=\"VERBOSE\";e[e[\"ALL\"]=9999]=\"ALL\"})(r=t.DiagLogLevel||(t.DiagLogLevel={}))},172:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.unregisterGlobal=t.getGlobal=t.registerGlobal=void 0;const n=r(200);const a=r(521);const o=r(130);const i=a.VERSION.split(\".\")[0];const c=Symbol.for(`opentelemetry.js.api.${i}`);const s=n._globalThis;function registerGlobal(e,t,r,n=false){var o;const i=s[c]=(o=s[c])!==null&&o!==void 0?o:{version:a.VERSION};if(!n&&i[e]){const t=new Error(`@opentelemetry/api: Attempted duplicate registration of API: ${e}`);r.error(t.stack||t.message);return false}if(i.version!==a.VERSION){const t=new Error(`@opentelemetry/api: Registration of version v${i.version} for ${e} does not match previously registered API v${a.VERSION}`);r.error(t.stack||t.message);return false}i[e]=t;r.debug(`@opentelemetry/api: Registered a global for ${e} v${a.VERSION}.`);return true}t.registerGlobal=registerGlobal;function getGlobal(e){var t,r;const n=(t=s[c])===null||t===void 0?void 0:t.version;if(!n||!(0,o.isCompatible)(n)){return}return(r=s[c])===null||r===void 0?void 0:r[e]}t.getGlobal=getGlobal;function unregisterGlobal(e,t){t.debug(`@opentelemetry/api: Unregistering a global for ${e} v${a.VERSION}.`);const r=s[c];if(r){delete r[e]}}t.unregisterGlobal=unregisterGlobal},130:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.isCompatible=t._makeCompatibilityCheck=void 0;const n=r(521);const a=/^(\\d+)\\.(\\d+)\\.(\\d+)(-(.+))?$/;function _makeCompatibilityCheck(e){const t=new Set([e]);const r=new Set;const n=e.match(a);if(!n){return()=>false}const o={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(o.prerelease!=null){return function isExactmatch(t){return t===e}}function _reject(e){r.add(e);return false}function _accept(e){t.add(e);return true}return function isCompatible(e){if(t.has(e)){return true}if(r.has(e)){return false}const n=e.match(a);if(!n){return _reject(e)}const i={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(i.prerelease!=null){return _reject(e)}if(o.major!==i.major){return _reject(e)}if(o.major===0){if(o.minor===i.minor&&o.patch<=i.patch){return _accept(e)}return _reject(e)}if(o.minor<=i.minor){return _accept(e)}return _reject(e)}}t._makeCompatibilityCheck=_makeCompatibilityCheck;t.isCompatible=_makeCompatibilityCheck(n.VERSION)},886:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.metrics=void 0;const n=r(653);t.metrics=n.MetricsAPI.getInstance()},901:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ValueType=void 0;var r;(function(e){e[e[\"INT\"]=0]=\"INT\";e[e[\"DOUBLE\"]=1]=\"DOUBLE\"})(r=t.ValueType||(t.ValueType={}))},102:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createNoopMeter=t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=t.NOOP_OBSERVABLE_GAUGE_METRIC=t.NOOP_OBSERVABLE_COUNTER_METRIC=t.NOOP_UP_DOWN_COUNTER_METRIC=t.NOOP_HISTOGRAM_METRIC=t.NOOP_COUNTER_METRIC=t.NOOP_METER=t.NoopObservableUpDownCounterMetric=t.NoopObservableGaugeMetric=t.NoopObservableCounterMetric=t.NoopObservableMetric=t.NoopHistogramMetric=t.NoopUpDownCounterMetric=t.NoopCounterMetric=t.NoopMetric=t.NoopMeter=void 0;class NoopMeter{constructor(){}createHistogram(e,r){return t.NOOP_HISTOGRAM_METRIC}createCounter(e,r){return t.NOOP_COUNTER_METRIC}createUpDownCounter(e,r){return t.NOOP_UP_DOWN_COUNTER_METRIC}createObservableGauge(e,r){return t.NOOP_OBSERVABLE_GAUGE_METRIC}createObservableCounter(e,r){return t.NOOP_OBSERVABLE_COUNTER_METRIC}createObservableUpDownCounter(e,r){return t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC}addBatchObservableCallback(e,t){}removeBatchObservableCallback(e){}}t.NoopMeter=NoopMeter;class NoopMetric{}t.NoopMetric=NoopMetric;class NoopCounterMetric extends NoopMetric{add(e,t){}}t.NoopCounterMetric=NoopCounterMetric;class NoopUpDownCounterMetric extends NoopMetric{add(e,t){}}t.NoopUpDownCounterMetric=NoopUpDownCounterMetric;class NoopHistogramMetric extends NoopMetric{record(e,t){}}t.NoopHistogramMetric=NoopHistogramMetric;class NoopObservableMetric{addCallback(e){}removeCallback(e){}}t.NoopObservableMetric=NoopObservableMetric;class NoopObservableCounterMetric extends NoopObservableMetric{}t.NoopObservableCounterMetric=NoopObservableCounterMetric;class NoopObservableGaugeMetric extends NoopObservableMetric{}t.NoopObservableGaugeMetric=NoopObservableGaugeMetric;class NoopObservableUpDownCounterMetric extends NoopObservableMetric{}t.NoopObservableUpDownCounterMetric=NoopObservableUpDownCounterMetric;t.NOOP_METER=new NoopMeter;t.NOOP_COUNTER_METRIC=new NoopCounterMetric;t.NOOP_HISTOGRAM_METRIC=new NoopHistogramMetric;t.NOOP_UP_DOWN_COUNTER_METRIC=new NoopUpDownCounterMetric;t.NOOP_OBSERVABLE_COUNTER_METRIC=new NoopObservableCounterMetric;t.NOOP_OBSERVABLE_GAUGE_METRIC=new NoopObservableGaugeMetric;t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=new NoopObservableUpDownCounterMetric;function createNoopMeter(){return t.NOOP_METER}t.createNoopMeter=createNoopMeter},660:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NOOP_METER_PROVIDER=t.NoopMeterProvider=void 0;const n=r(102);class NoopMeterProvider{getMeter(e,t,r){return n.NOOP_METER}}t.NoopMeterProvider=NoopMeterProvider;t.NOOP_METER_PROVIDER=new NoopMeterProvider},200:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(46),t)},651:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t._globalThis=void 0;t._globalThis=typeof globalThis===\"object\"?globalThis:global},46:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(651),t)},939:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.propagation=void 0;const n=r(181);t.propagation=n.PropagationAPI.getInstance()},874:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTextMapPropagator=void 0;class NoopTextMapPropagator{inject(e,t){}extract(e,t){return e}fields(){return[]}}t.NoopTextMapPropagator=NoopTextMapPropagator},194:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.defaultTextMapSetter=t.defaultTextMapGetter=void 0;t.defaultTextMapGetter={get(e,t){if(e==null){return undefined}return e[t]},keys(e){if(e==null){return[]}return Object.keys(e)}};t.defaultTextMapSetter={set(e,t,r){if(e==null){return}e[t]=r}}},845:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.trace=void 0;const n=r(997);t.trace=n.TraceAPI.getInstance()},403:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NonRecordingSpan=void 0;const n=r(476);class NonRecordingSpan{constructor(e=n.INVALID_SPAN_CONTEXT){this._spanContext=e}spanContext(){return this._spanContext}setAttribute(e,t){return this}setAttributes(e){return this}addEvent(e,t){return this}setStatus(e){return this}updateName(e){return this}end(e){}isRecording(){return false}recordException(e,t){}}t.NonRecordingSpan=NonRecordingSpan},614:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracer=void 0;const n=r(491);const a=r(607);const o=r(403);const i=r(139);const c=n.ContextAPI.getInstance();class NoopTracer{startSpan(e,t,r=c.active()){const n=Boolean(t===null||t===void 0?void 0:t.root);if(n){return new o.NonRecordingSpan}const s=r&&(0,a.getSpanContext)(r);if(isSpanContext(s)&&(0,i.isSpanContextValid)(s)){return new o.NonRecordingSpan(s)}else{return new o.NonRecordingSpan}}startActiveSpan(e,t,r,n){let o;let i;let s;if(arguments.length<2){return}else if(arguments.length===2){s=t}else if(arguments.length===3){o=t;s=r}else{o=t;i=r;s=n}const u=i!==null&&i!==void 0?i:c.active();const l=this.startSpan(e,o,u);const g=(0,a.setSpan)(u,l);return c.with(g,s,undefined,l)}}t.NoopTracer=NoopTracer;function isSpanContext(e){return typeof e===\"object\"&&typeof e[\"spanId\"]===\"string\"&&typeof e[\"traceId\"]===\"string\"&&typeof e[\"traceFlags\"]===\"number\"}},124:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracerProvider=void 0;const n=r(614);class NoopTracerProvider{getTracer(e,t,r){return new n.NoopTracer}}t.NoopTracerProvider=NoopTracerProvider},125:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracer=void 0;const n=r(614);const a=new n.NoopTracer;class ProxyTracer{constructor(e,t,r,n){this._provider=e;this.name=t;this.version=r;this.options=n}startSpan(e,t,r){return this._getTracer().startSpan(e,t,r)}startActiveSpan(e,t,r,n){const a=this._getTracer();return Reflect.apply(a.startActiveSpan,a,arguments)}_getTracer(){if(this._delegate){return this._delegate}const e=this._provider.getDelegateTracer(this.name,this.version,this.options);if(!e){return a}this._delegate=e;return this._delegate}}t.ProxyTracer=ProxyTracer},846:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracerProvider=void 0;const n=r(125);const a=r(124);const o=new a.NoopTracerProvider;class ProxyTracerProvider{getTracer(e,t,r){var a;return(a=this.getDelegateTracer(e,t,r))!==null&&a!==void 0?a:new n.ProxyTracer(this,e,t,r)}getDelegate(){var e;return(e=this._delegate)!==null&&e!==void 0?e:o}setDelegate(e){this._delegate=e}getDelegateTracer(e,t,r){var n;return(n=this._delegate)===null||n===void 0?void 0:n.getTracer(e,t,r)}}t.ProxyTracerProvider=ProxyTracerProvider},996:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SamplingDecision=void 0;var r;(function(e){e[e[\"NOT_RECORD\"]=0]=\"NOT_RECORD\";e[e[\"RECORD\"]=1]=\"RECORD\";e[e[\"RECORD_AND_SAMPLED\"]=2]=\"RECORD_AND_SAMPLED\"})(r=t.SamplingDecision||(t.SamplingDecision={}))},607:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.getSpanContext=t.setSpanContext=t.deleteSpan=t.setSpan=t.getActiveSpan=t.getSpan=void 0;const n=r(780);const a=r(403);const o=r(491);const i=(0,n.createContextKey)(\"OpenTelemetry Context Key SPAN\");function getSpan(e){return e.getValue(i)||undefined}t.getSpan=getSpan;function getActiveSpan(){return getSpan(o.ContextAPI.getInstance().active())}t.getActiveSpan=getActiveSpan;function setSpan(e,t){return e.setValue(i,t)}t.setSpan=setSpan;function deleteSpan(e){return e.deleteValue(i)}t.deleteSpan=deleteSpan;function setSpanContext(e,t){return setSpan(e,new a.NonRecordingSpan(t))}t.setSpanContext=setSpanContext;function getSpanContext(e){var t;return(t=getSpan(e))===null||t===void 0?void 0:t.spanContext()}t.getSpanContext=getSpanContext},325:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceStateImpl=void 0;const n=r(564);const a=32;const o=512;const i=\",\";const c=\"=\";class TraceStateImpl{constructor(e){this._internalState=new Map;if(e)this._parse(e)}set(e,t){const r=this._clone();if(r._internalState.has(e)){r._internalState.delete(e)}r._internalState.set(e,t);return r}unset(e){const t=this._clone();t._internalState.delete(e);return t}get(e){return this._internalState.get(e)}serialize(){return this._keys().reduce(((e,t)=>{e.push(t+c+this.get(t));return e}),[]).join(i)}_parse(e){if(e.length>o)return;this._internalState=e.split(i).reverse().reduce(((e,t)=>{const r=t.trim();const a=r.indexOf(c);if(a!==-1){const o=r.slice(0,a);const i=r.slice(a+1,t.length);if((0,n.validateKey)(o)&&(0,n.validateValue)(i)){e.set(o,i)}else{}}return e}),new Map);if(this._internalState.size>a){this._internalState=new Map(Array.from(this._internalState.entries()).reverse().slice(0,a))}}_keys(){return Array.from(this._internalState.keys()).reverse()}_clone(){const e=new TraceStateImpl;e._internalState=new Map(this._internalState);return e}}t.TraceStateImpl=TraceStateImpl},564:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.validateValue=t.validateKey=void 0;const r=\"[_0-9a-z-*/]\";const n=`[a-z]${r}{0,255}`;const a=`[a-z0-9]${r}{0,240}@[a-z]${r}{0,13}`;const o=new RegExp(`^(?:${n}|${a})$`);const i=/^[ -~]{0,255}[!-~]$/;const c=/,|=/;function validateKey(e){return o.test(e)}t.validateKey=validateKey;function validateValue(e){return i.test(e)&&!c.test(e)}t.validateValue=validateValue},98:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createTraceState=void 0;const n=r(325);function createTraceState(e){return new n.TraceStateImpl(e)}t.createTraceState=createTraceState},476:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.INVALID_SPAN_CONTEXT=t.INVALID_TRACEID=t.INVALID_SPANID=void 0;const n=r(475);t.INVALID_SPANID=\"0000000000000000\";t.INVALID_TRACEID=\"00000000000000000000000000000000\";t.INVALID_SPAN_CONTEXT={traceId:t.INVALID_TRACEID,spanId:t.INVALID_SPANID,traceFlags:n.TraceFlags.NONE}},357:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanKind=void 0;var r;(function(e){e[e[\"INTERNAL\"]=0]=\"INTERNAL\";e[e[\"SERVER\"]=1]=\"SERVER\";e[e[\"CLIENT\"]=2]=\"CLIENT\";e[e[\"PRODUCER\"]=3]=\"PRODUCER\";e[e[\"CONSUMER\"]=4]=\"CONSUMER\"})(r=t.SpanKind||(t.SpanKind={}))},139:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.wrapSpanContext=t.isSpanContextValid=t.isValidSpanId=t.isValidTraceId=void 0;const n=r(476);const a=r(403);const o=/^([0-9a-f]{32})$/i;const i=/^[0-9a-f]{16}$/i;function isValidTraceId(e){return o.test(e)&&e!==n.INVALID_TRACEID}t.isValidTraceId=isValidTraceId;function isValidSpanId(e){return i.test(e)&&e!==n.INVALID_SPANID}t.isValidSpanId=isValidSpanId;function isSpanContextValid(e){return isValidTraceId(e.traceId)&&isValidSpanId(e.spanId)}t.isSpanContextValid=isSpanContextValid;function wrapSpanContext(e){return new a.NonRecordingSpan(e)}t.wrapSpanContext=wrapSpanContext},847:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanStatusCode=void 0;var r;(function(e){e[e[\"UNSET\"]=0]=\"UNSET\";e[e[\"OK\"]=1]=\"OK\";e[e[\"ERROR\"]=2]=\"ERROR\"})(r=t.SpanStatusCode||(t.SpanStatusCode={}))},475:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceFlags=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"SAMPLED\"]=1]=\"SAMPLED\"})(r=t.TraceFlags||(t.TraceFlags={}))},521:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.VERSION=void 0;t.VERSION=\"1.6.0\"}};var t={};function __nccwpck_require__(r){var n=t[r];if(n!==undefined){return n.exports}var a=t[r]={exports:{}};var o=true;try{e[r].call(a.exports,a,a.exports,__nccwpck_require__);o=false}finally{if(o)delete t[r]}return a.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var r={};(()=>{var e=r;Object.defineProperty(e,\"__esModule\",{value:true});e.trace=e.propagation=e.metrics=e.diag=e.context=e.INVALID_SPAN_CONTEXT=e.INVALID_TRACEID=e.INVALID_SPANID=e.isValidSpanId=e.isValidTraceId=e.isSpanContextValid=e.createTraceState=e.TraceFlags=e.SpanStatusCode=e.SpanKind=e.SamplingDecision=e.ProxyTracerProvider=e.ProxyTracer=e.defaultTextMapSetter=e.defaultTextMapGetter=e.ValueType=e.createNoopMeter=e.DiagLogLevel=e.DiagConsoleLogger=e.ROOT_CONTEXT=e.createContextKey=e.baggageEntryMetadataFromString=void 0;var t=__nccwpck_require__(369);Object.defineProperty(e,\"baggageEntryMetadataFromString\",{enumerable:true,get:function(){return t.baggageEntryMetadataFromString}});var n=__nccwpck_require__(780);Object.defineProperty(e,\"createContextKey\",{enumerable:true,get:function(){return n.createContextKey}});Object.defineProperty(e,\"ROOT_CONTEXT\",{enumerable:true,get:function(){return n.ROOT_CONTEXT}});var a=__nccwpck_require__(972);Object.defineProperty(e,\"DiagConsoleLogger\",{enumerable:true,get:function(){return a.DiagConsoleLogger}});var o=__nccwpck_require__(957);Object.defineProperty(e,\"DiagLogLevel\",{enumerable:true,get:function(){return o.DiagLogLevel}});var i=__nccwpck_require__(102);Object.defineProperty(e,\"createNoopMeter\",{enumerable:true,get:function(){return i.createNoopMeter}});var c=__nccwpck_require__(901);Object.defineProperty(e,\"ValueType\",{enumerable:true,get:function(){return c.ValueType}});var s=__nccwpck_require__(194);Object.defineProperty(e,\"defaultTextMapGetter\",{enumerable:true,get:function(){return s.defaultTextMapGetter}});Object.defineProperty(e,\"defaultTextMapSetter\",{enumerable:true,get:function(){return s.defaultTextMapSetter}});var u=__nccwpck_require__(125);Object.defineProperty(e,\"ProxyTracer\",{enumerable:true,get:function(){return u.ProxyTracer}});var l=__nccwpck_require__(846);Object.defineProperty(e,\"ProxyTracerProvider\",{enumerable:true,get:function(){return l.ProxyTracerProvider}});var g=__nccwpck_require__(996);Object.defineProperty(e,\"SamplingDecision\",{enumerable:true,get:function(){return g.SamplingDecision}});var p=__nccwpck_require__(357);Object.defineProperty(e,\"SpanKind\",{enumerable:true,get:function(){return p.SpanKind}});var d=__nccwpck_require__(847);Object.defineProperty(e,\"SpanStatusCode\",{enumerable:true,get:function(){return d.SpanStatusCode}});var _=__nccwpck_require__(475);Object.defineProperty(e,\"TraceFlags\",{enumerable:true,get:function(){return _.TraceFlags}});var f=__nccwpck_require__(98);Object.defineProperty(e,\"createTraceState\",{enumerable:true,get:function(){return f.createTraceState}});var b=__nccwpck_require__(139);Object.defineProperty(e,\"isSpanContextValid\",{enumerable:true,get:function(){return b.isSpanContextValid}});Object.defineProperty(e,\"isValidTraceId\",{enumerable:true,get:function(){return b.isValidTraceId}});Object.defineProperty(e,\"isValidSpanId\",{enumerable:true,get:function(){return b.isValidSpanId}});var v=__nccwpck_require__(476);Object.defineProperty(e,\"INVALID_SPANID\",{enumerable:true,get:function(){return v.INVALID_SPANID}});Object.defineProperty(e,\"INVALID_TRACEID\",{enumerable:true,get:function(){return v.INVALID_TRACEID}});Object.defineProperty(e,\"INVALID_SPAN_CONTEXT\",{enumerable:true,get:function(){return v.INVALID_SPAN_CONTEXT}});const O=__nccwpck_require__(67);Object.defineProperty(e,\"context\",{enumerable:true,get:function(){return O.context}});const P=__nccwpck_require__(506);Object.defineProperty(e,\"diag\",{enumerable:true,get:function(){return P.diag}});const N=__nccwpck_require__(886);Object.defineProperty(e,\"metrics\",{enumerable:true,get:function(){return N.metrics}});const S=__nccwpck_require__(939);Object.defineProperty(e,\"propagation\",{enumerable:true,get:function(){return S.propagation}});const C=__nccwpck_require__(845);Object.defineProperty(e,\"trace\",{enumerable:true,get:function(){return C.trace}});e[\"default\"]={context:O.context,diag:P.diag,metrics:N.metrics,propagation:S.propagation,trace:C.trace}})();module.exports=r})();","if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.React\n","\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n// src/index.ts\nvar src_exports = {};\n__export(src_exports, {\n RequestCookies: () => RequestCookies,\n ResponseCookies: () => ResponseCookies,\n parseCookie: () => parseCookie,\n parseSetCookie: () => parseSetCookie,\n stringifyCookie: () => stringifyCookie\n});\nmodule.exports = __toCommonJS(src_exports);\n\n// src/serialize.ts\nfunction stringifyCookie(c) {\n var _a;\n const attrs = [\n \"path\" in c && c.path && `Path=${c.path}`,\n \"expires\" in c && (c.expires || c.expires === 0) && `Expires=${(typeof c.expires === \"number\" ? new Date(c.expires) : c.expires).toUTCString()}`,\n \"maxAge\" in c && typeof c.maxAge === \"number\" && `Max-Age=${c.maxAge}`,\n \"domain\" in c && c.domain && `Domain=${c.domain}`,\n \"secure\" in c && c.secure && \"Secure\",\n \"httpOnly\" in c && c.httpOnly && \"HttpOnly\",\n \"sameSite\" in c && c.sameSite && `SameSite=${c.sameSite}`,\n \"partitioned\" in c && c.partitioned && \"Partitioned\",\n \"priority\" in c && c.priority && `Priority=${c.priority}`\n ].filter(Boolean);\n const stringified = `${c.name}=${encodeURIComponent((_a = c.value) != null ? _a : \"\")}`;\n return attrs.length === 0 ? stringified : `${stringified}; ${attrs.join(\"; \")}`;\n}\nfunction parseCookie(cookie) {\n const map = /* @__PURE__ */ new Map();\n for (const pair of cookie.split(/; */)) {\n if (!pair)\n continue;\n const splitAt = pair.indexOf(\"=\");\n if (splitAt === -1) {\n map.set(pair, \"true\");\n continue;\n }\n const [key, value] = [pair.slice(0, splitAt), pair.slice(splitAt + 1)];\n try {\n map.set(key, decodeURIComponent(value != null ? value : \"true\"));\n } catch {\n }\n }\n return map;\n}\nfunction parseSetCookie(setCookie) {\n if (!setCookie) {\n return void 0;\n }\n const [[name, value], ...attributes] = parseCookie(setCookie);\n const {\n domain,\n expires,\n httponly,\n maxage,\n path,\n samesite,\n secure,\n partitioned,\n priority\n } = Object.fromEntries(\n attributes.map(([key, value2]) => [\n key.toLowerCase().replace(/-/g, \"\"),\n value2\n ])\n );\n const cookie = {\n name,\n value: decodeURIComponent(value),\n domain,\n ...expires && { expires: new Date(expires) },\n ...httponly && { httpOnly: true },\n ...typeof maxage === \"string\" && { maxAge: Number(maxage) },\n path,\n ...samesite && { sameSite: parseSameSite(samesite) },\n ...secure && { secure: true },\n ...priority && { priority: parsePriority(priority) },\n ...partitioned && { partitioned: true }\n };\n return compact(cookie);\n}\nfunction compact(t) {\n const newT = {};\n for (const key in t) {\n if (t[key]) {\n newT[key] = t[key];\n }\n }\n return newT;\n}\nvar SAME_SITE = [\"strict\", \"lax\", \"none\"];\nfunction parseSameSite(string) {\n string = string.toLowerCase();\n return SAME_SITE.includes(string) ? string : void 0;\n}\nvar PRIORITY = [\"low\", \"medium\", \"high\"];\nfunction parsePriority(string) {\n string = string.toLowerCase();\n return PRIORITY.includes(string) ? string : void 0;\n}\nfunction splitCookiesString(cookiesString) {\n if (!cookiesString)\n return [];\n var cookiesStrings = [];\n var pos = 0;\n var start;\n var ch;\n var lastComma;\n var nextStart;\n var cookiesSeparatorFound;\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1;\n }\n return pos < cookiesString.length;\n }\n function notSpecialChar() {\n ch = cookiesString.charAt(pos);\n return ch !== \"=\" && ch !== \";\" && ch !== \",\";\n }\n while (pos < cookiesString.length) {\n start = pos;\n cookiesSeparatorFound = false;\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos);\n if (ch === \",\") {\n lastComma = pos;\n pos += 1;\n skipWhitespace();\n nextStart = pos;\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1;\n }\n if (pos < cookiesString.length && cookiesString.charAt(pos) === \"=\") {\n cookiesSeparatorFound = true;\n pos = nextStart;\n cookiesStrings.push(cookiesString.substring(start, lastComma));\n start = pos;\n } else {\n pos = lastComma + 1;\n }\n } else {\n pos += 1;\n }\n }\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length));\n }\n }\n return cookiesStrings;\n}\n\n// src/request-cookies.ts\nvar RequestCookies = class {\n constructor(requestHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n this._headers = requestHeaders;\n const header = requestHeaders.get(\"cookie\");\n if (header) {\n const parsed = parseCookie(header);\n for (const [name, value] of parsed) {\n this._parsed.set(name, { name, value });\n }\n }\n }\n [Symbol.iterator]() {\n return this._parsed[Symbol.iterator]();\n }\n /**\n * The amount of cookies received from the client\n */\n get size() {\n return this._parsed.size;\n }\n get(...args) {\n const name = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(name);\n }\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed);\n if (!args.length) {\n return all.map(([_, value]) => value);\n }\n const name = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter(([n]) => n === name).map(([_, value]) => value);\n }\n has(name) {\n return this._parsed.has(name);\n }\n set(...args) {\n const [name, value] = args.length === 1 ? [args[0].name, args[0].value] : args;\n const map = this._parsed;\n map.set(name, { name, value });\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value2]) => stringifyCookie(value2)).join(\"; \")\n );\n return this;\n }\n /**\n * Delete the cookies matching the passed name or names in the request.\n */\n delete(names) {\n const map = this._parsed;\n const result = !Array.isArray(names) ? map.delete(names) : names.map((name) => map.delete(name));\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value]) => stringifyCookie(value)).join(\"; \")\n );\n return result;\n }\n /**\n * Delete all the cookies in the cookies in the request.\n */\n clear() {\n this.delete(Array.from(this._parsed.keys()));\n return this;\n }\n /**\n * Format the cookies in the request as a string for logging\n */\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map((v) => `${v.name}=${encodeURIComponent(v.value)}`).join(\"; \");\n }\n};\n\n// src/response-cookies.ts\nvar ResponseCookies = class {\n constructor(responseHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n var _a, _b, _c;\n this._headers = responseHeaders;\n const setCookie = (_c = (_b = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders)) != null ? _b : responseHeaders.get(\"set-cookie\")) != null ? _c : [];\n const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie);\n for (const cookieString of cookieStrings) {\n const parsed = parseSetCookie(cookieString);\n if (parsed)\n this._parsed.set(parsed.name, parsed);\n }\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-get CookieStore#get} without the Promise.\n */\n get(...args) {\n const key = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(key);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-getAll CookieStore#getAll} without the Promise.\n */\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed.values());\n if (!args.length) {\n return all;\n }\n const key = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter((c) => c.name === key);\n }\n has(name) {\n return this._parsed.has(name);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-set CookieStore#set} without the Promise.\n */\n set(...args) {\n const [name, value, cookie] = args.length === 1 ? [args[0].name, args[0].value, args[0]] : args;\n const map = this._parsed;\n map.set(name, normalizeCookie({ name, value, ...cookie }));\n replace(map, this._headers);\n return this;\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-delete CookieStore#delete} without the Promise.\n */\n delete(...args) {\n const [name, options] = typeof args[0] === \"string\" ? [args[0]] : [args[0].name, args[0]];\n return this.set({ ...options, name, value: \"\", expires: /* @__PURE__ */ new Date(0) });\n }\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map(stringifyCookie).join(\"; \");\n }\n};\nfunction replace(bag, headers) {\n headers.delete(\"set-cookie\");\n for (const [, value] of bag) {\n const serialized = stringifyCookie(value);\n headers.append(\"set-cookie\", serialized);\n }\n}\nfunction normalizeCookie(cookie = { name: \"\", value: \"\" }) {\n if (typeof cookie.expires === \"number\") {\n cookie.expires = new Date(cookie.expires);\n }\n if (cookie.maxAge) {\n cookie.expires = new Date(Date.now() + cookie.maxAge * 1e3);\n }\n if (cookie.path === null || cookie.path === void 0) {\n cookie.path = \"/\";\n }\n return cookie;\n}\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n RequestCookies,\n ResponseCookies,\n parseCookie,\n parseSetCookie,\n stringifyCookie\n});\n","(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var r=e;\n/*!\n * cookie\n * Copyright(c) 2012-2014 Roman Shtylman\n * Copyright(c) 2015 Douglas Christopher Wilson\n * MIT Licensed\n */r.parse=parse;r.serialize=serialize;var i=decodeURIComponent;var t=encodeURIComponent;var a=/; */;var n=/^[\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+$/;function parse(e,r){if(typeof e!==\"string\"){throw new TypeError(\"argument str must be a string\")}var t={};var n=r||{};var o=e.split(a);var s=n.decode||i;for(var p=0;p 0;\n}\nexport function consumeDynamicAccess(serverDynamic, clientDynamic) {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses);\n return serverDynamic.dynamicAccesses;\n}\nexport function formatDynamicAPIAccesses(dynamicAccesses) {\n return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{\n stack = stack.split('\\n')// Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4).filter((line)=>{\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false;\n }\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' ()')) {\n return false;\n }\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false;\n }\n return true;\n }).join('\\n');\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`;\n });\n}\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), \"__NEXT_ERROR_CODE\", {\n value: \"E224\",\n enumerable: false,\n configurable: true\n });\n }\n}\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */ export function createRenderInBrowserAbortSignal() {\n const controller = new AbortController();\n controller.abort(Object.defineProperty(new BailoutToCSRError('Render in Browser'), \"__NEXT_ERROR_CODE\", {\n value: \"E721\",\n enumerable: false,\n configurable: true\n }));\n return controller.signal;\n}\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */ export function createHangingInputAbortSignal(workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController();\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(()=>{\n controller.abort();\n });\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n if (// eslint-disable-next-line no-restricted-syntax -- We are discriminating between two different refined types and don't need an addition exhaustive switch here\n workUnitStore.type === 'prerender-runtime' && workUnitStore.stagedRendering) {\n const { stagedRendering } = workUnitStore;\n stagedRendering.waitForStage(getRuntimeStage(stagedRendering)).then(()=>scheduleOnNextTick(()=>controller.abort()));\n } else {\n scheduleOnNextTick(()=>controller.abort());\n }\n }\n return controller.signal;\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n return undefined;\n default:\n workUnitStore;\n }\n}\nexport function annotateDynamicAccess(expression, prerenderStore) {\n const dynamicTracking = prerenderStore.dynamicTracking;\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined,\n expression\n });\n }\n}\nexport function useDynamicRouteParams(expression) {\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workStore && workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender-client':\n case 'prerender':\n {\n const fallbackParams = workUnitStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(makeHangingPromise(workUnitStore.renderSignal, workStore.route, expression));\n }\n break;\n }\n case 'prerender-ppr':\n {\n const fallbackParams = workUnitStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking);\n }\n break;\n }\n case 'validation-client':\n {\n break;\n }\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E771\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E745\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1130\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break;\n default:\n workUnitStore;\n }\n }\n}\nexport function useDynamicSearchParams(expression) {\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (!workStore) {\n // We assume pages router context and just return\n return;\n }\n if (!workUnitStore) {\n throwForMissingRequestStore(expression);\n }\n switch(workUnitStore.type){\n case 'validation-client':\n // During instant validation we try to behave as close to client as possible,\n // so this shouldn't hang during SSR.\n return;\n case 'prerender-client':\n {\n React.use(makeHangingPromise(workUnitStore.renderSignal, workStore.route, expression));\n break;\n }\n case 'prerender-legacy':\n case 'prerender-ppr':\n {\n if (workStore.forceStatic) {\n return;\n }\n throw Object.defineProperty(new BailoutToCSRError(expression), \"__NEXT_ERROR_CODE\", {\n value: \"E394\",\n enumerable: false,\n configurable: true\n });\n }\n case 'prerender':\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E795\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E745\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1130\",\n enumerable: false,\n configurable: true\n });\n case 'request':\n return;\n default:\n workUnitStore;\n }\n}\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(\\)/;\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6';\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense ()\n// at __next_root_layout_boundary__ ()\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense ()\n// at SomeComponent ()\n// at __next_root_layout_boundary__ ()\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\\\n\\\\s+at Suspense \\\\(\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`);\nconst hasMetadataRegex = new RegExp(`\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasViewportRegex = new RegExp(`\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasInstantValidationBoundaryRegex = new RegExp(`\\\\n\\\\s+at ${INSTANT_VALIDATION_BOUNDARY_NAME}[\\\\n\\\\s]`);\nexport function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true;\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n } else {\n const message = `Route \"${workStore.route}\": Uncached data was accessed outside of ` + '. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route';\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1079\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n}\nexport var DynamicHoleKind = /*#__PURE__*/ function(DynamicHoleKind) {\n /** We know that this hole is caused by runtime data. */ DynamicHoleKind[DynamicHoleKind[\"Runtime\"] = 1] = \"Runtime\";\n /** We know that this hole is caused by dynamic data. */ DynamicHoleKind[DynamicHoleKind[\"Dynamic\"] = 2] = \"Dynamic\";\n return DynamicHoleKind;\n}({});\nexport function createInstantValidationState(createInstantStack) {\n return {\n hasDynamicMetadata: false,\n hasAllowedClientDynamicAboveBoundary: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n validationPreventingErrors: [],\n thrownErrorsOutsideBoundary: [],\n createInstantStack\n };\n}\nexport function trackDynamicHoleInNavigation(workStore, componentStack, dynamicValidation, clientDynamic, kind, boundaryState) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n }\n if (hasMetadataRegex.test(componentStack)) {\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments.` : `Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1076\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicMetadata = error;\n return;\n }\n if (hasViewportRegex.test(componentStack)) {\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`.` : `Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1086\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n const boundaryLocation = hasInstantValidationBoundaryRegex.exec(componentStack);\n if (!boundaryLocation) {\n // We don't see the validation boundary in the component stack,\n // so this hole must be coming from a shared parent.\n // Shared parents are fully resolved and don't have RSC holes,\n // but they can still suspend in a client component during SSR.\n // If we managed to render all the validation boundaries, that means\n // that the client holes aren't blocking validation and we can disregard them.\n // Note that we don't even care whether they have suspense or not.\n if (boundaryState.expectedIds.size === boundaryState.renderedIds.size) {\n dynamicValidation.hasAllowedClientDynamicAboveBoundary = true;\n dynamicValidation.hasAllowedDynamic = true // Holes outside the boundary contribute to allowing dynamic metadata\n ;\n return;\n } else {\n // TODO(instant-validation) TODO(NAR-787)\n // If shared parents blocked us from validating, we should only log\n // the errors from the innermost (segments), i.e. omit layouts whose\n // slots managed to render (because clearly they didn't block validation)\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because a Client Component in a parent segment prevented the page from rendering.`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1082\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.validationPreventingErrors.push(error);\n return;\n }\n } else {\n // The hole originates inside the validation boundary.\n //\n // Check if we have a Suspense above the hole, but below the validation boundary.\n // If we do, then this dynamic usage wouldn't block a navigation to this subtree.\n // Conversely, if the nearest suspense is above the validation boundary, then this subtree would block.\n //\n // Note that in the component stack, children come before parents.\n //\n // Valid:\n // ...\n // at Suspense\n // ...\n // at __next_prefetch_validation_boundary__\n //\n // Invalid:\n // ...\n // at __next_prefetch_validation_boundary__\n // ...\n // at Suspense\n //\n const suspenseLocation = hasSuspenseRegex.exec(componentStack);\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else {\n // invalid - fallthrough\n }\n }\n }\n if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n const syncError = clientDynamic.syncDynamicErrorWithStack;\n if (dynamicValidation.createInstantStack !== null && syncError.cause === undefined) {\n syncError.cause = dynamicValidation.createInstantStack();\n }\n dynamicValidation.dynamicErrors.push(syncError);\n return;\n }\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`.` : `Uncached data or \\`connection()\\` was accessed outside of \\`\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1078\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicErrors.push(error);\n return;\n}\nexport function trackThrownErrorInNavigation(workStore, dynamicValidation, thrownValue, componentStack) {\n const boundaryLocation = hasInstantValidationBoundaryRegex.exec(componentStack);\n if (!boundaryLocation) {\n // There's no validation boundary on the component stack.\n // This error may have blocked a boundary from rendering.\n // Wrap the error to provide component context.\n // This helps for errors from node_modules which would otherwise\n // have no useful stack information due to ignore-listing,\n // e.g. next/dynamic with `ssr: false`.\n const error = addErrorContext(Object.defineProperty(new Error('An error occurred while attempting to validate instant UI. This error may be preventing the validation from completing.', {\n cause: thrownValue\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E1118\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.thrownErrorsOutsideBoundary.push(error);\n } else {\n // There's validation boundary on the component stack,\n // so we know this error didn't block a validation boundary from rendering.\n // However, this error might be hiding be hiding dynamic content that would\n // cause validation to fail.\n const suspenseLocation = hasSuspenseRegex.exec(componentStack);\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n // There's a Suspense below the validation boundary but above this error's location.\n // This subtree can't fail instant validation because any potential\n // dynamic holes would be guarded by the Suspense anyway,\n // so we can allow this.\n return;\n } else {\n // invalid - fallthrough\n }\n }\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because an error prevented the target segment from rendering.`;\n const error = addErrorContext(Object.defineProperty(new Error(message, {\n cause: thrownValue\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E1112\",\n enumerable: false,\n configurable: true\n }), componentStack, null // TODO(instant-validation-build): conflicting use of cause\n );\n dynamicValidation.validationPreventingErrors.push(error);\n }\n}\nexport function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1080\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicMetadata = error;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n // TODO(instant-validation): If the page only has holes caused by runtime data,\n // we won't find out if there's a suspense-above-body and error for dynamic viewport\n // even if there is in fact a suspense-above-body\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1077\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n }\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1084\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n}\nexport function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1085\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicMetadata = error;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1081\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1083\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n}\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n *\n * Accepts an already-created Error so the SWC error-code plugin can see the\n * `new Error(...)` call at each call site and auto-assign error codes.\n */ function addErrorContext(error, componentStack, createInstantStack) {\n const ownerStack = process.env.NODE_ENV !== 'production' && React.captureOwnerStack ? React.captureOwnerStack() : null;\n if (createInstantStack !== null) {\n error.cause = createInstantStack();\n }\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + error.message + (ownerStack || componentStack);\n return error;\n}\nexport var PreludeState = /*#__PURE__*/ function(PreludeState) {\n PreludeState[PreludeState[\"Full\"] = 0] = \"Full\";\n PreludeState[PreludeState[\"Empty\"] = 1] = \"Empty\";\n PreludeState[PreludeState[\"Errored\"] = 2] = \"Errored\";\n return PreludeState;\n}({});\nexport function logDisallowedDynamicError(workStore, error) {\n console.error(error);\n if (process.env.NODE_ENV !== 'development') {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`);\n } else if (!process.env.__NEXT_DEV_SERVER) {\n console.error(`To debug the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`);\n }\n}\nexport function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack);\n throw new StaticGenBailoutError();\n }\n if (prelude !== 0) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return;\n }\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n for(let i = 0; i < dynamicErrors.length; i++){\n logDisallowedDynamicError(workStore, dynamicErrors[i]);\n }\n throw new StaticGenBailoutError();\n }\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(`Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`);\n throw new StaticGenBailoutError();\n }\n if (prelude === 1) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(`Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`);\n throw new StaticGenBailoutError();\n }\n } else {\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) {\n console.error(`Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`);\n throw new StaticGenBailoutError();\n }\n }\n}\nexport function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation, configAllowsBlocking) {\n if (configAllowsBlocking || dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return [];\n }\n if (prelude !== 0) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (prelude === 1) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n Object.defineProperty(new InvariantError(`Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`), \"__NEXT_ERROR_CODE\", {\n value: \"E936\",\n enumerable: false,\n configurable: true\n })\n ];\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) {\n return [\n dynamicValidation.dynamicMetadata\n ];\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return [];\n}\nexport function getNavigationDisallowedDynamicReasons(workStore, prelude, dynamicValidation, validationSampleTracking, boundaryState) {\n // If we have errors related to missing samples, those should take precedence over everything else.\n if (validationSampleTracking) {\n const { missingSampleErrors } = validationSampleTracking;\n if (missingSampleErrors.length > 0) {\n return missingSampleErrors;\n }\n }\n const { validationPreventingErrors } = dynamicValidation;\n if (validationPreventingErrors.length > 0) {\n return validationPreventingErrors;\n }\n if (boundaryState.renderedIds.size < boundaryState.expectedIds.size) {\n const { thrownErrorsOutsideBoundary, createInstantStack } = dynamicValidation;\n if (thrownErrorsOutsideBoundary.length === 0) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering for an unknown reason.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error\n ];\n } else if (thrownErrorsOutsideBoundary.length === 1) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to the following error.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error,\n thrownErrorsOutsideBoundary[0]\n ];\n } else {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to one of the following errors.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error,\n ...thrownErrorsOutsideBoundary\n ];\n }\n }\n // NOTE: We don't care about Suspense above body here,\n // we're only concerned with the validation boundary\n if (prelude !== 0) {\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (prelude === 1) {\n // If a client component suspended prevented us from rendering a shell\n // but didn't block validation, we don't require a prelude.\n if (dynamicValidation.hasAllowedClientDynamicAboveBoundary) {\n return [];\n }\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n return [\n Object.defineProperty(new InvariantError(`Route \"${workStore.route}\" failed to render during instant validation and Next.js was unable to determine a reason.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1055\",\n enumerable: false,\n configurable: true\n })\n ];\n }\n } else {\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicMetadata) {\n return [\n dynamicValidation.dynamicMetadata\n ];\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return [];\n}\n\n//# sourceMappingURL=dynamic-rendering.js.map","const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE';\nexport class DynamicServerError extends Error {\n constructor(description){\n super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE;\n }\n}\nexport function isDynamicServerError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') {\n return false;\n }\n return err.digest === DYNAMIC_ERROR_CODE;\n}\n\n//# sourceMappingURL=hooks-server-context.js.map","const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT';\nexport class StaticGenBailoutError extends Error {\n constructor(...args){\n super(...args), this.code = NEXT_STATIC_GEN_BAILOUT;\n }\n}\nexport function isStaticGenBailoutError(error) {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false;\n }\n return error.code === NEXT_STATIC_GEN_BAILOUT;\n}\n\n//# sourceMappingURL=static-generation-bailout.js.map","const noop = ()=>{};\nlet registry;\nif (globalThis.FinalizationRegistry) {\n registry = new FinalizationRegistry((weakRef)=>{\n const stream = weakRef.deref();\n if (stream && !stream.locked) {\n stream.cancel('Response object has been garbage collected').then(noop);\n }\n });\n}\n/**\n * Clones a response by teeing the body so we can return two independent\n * ReadableStreams from it. This avoids the bug in the undici library around\n * response cloning.\n *\n * After cloning, the original response's body will be consumed and closed.\n *\n * @see https://github.com/vercel/next.js/pull/73274\n *\n * @param original - The original response to clone.\n * @returns A tuple containing two independent clones of the original response.\n */ export function cloneResponse(original) {\n // If the response has no body, then we can just return the original response\n // twice because it's immutable.\n if (!original.body) {\n return [\n original,\n original\n ];\n }\n const [body1, body2] = original.body.tee();\n const cloned1 = new Response(body1, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers\n });\n Object.defineProperty(cloned1, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false\n });\n const cloned2 = new Response(body2, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers\n });\n Object.defineProperty(cloned2, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false\n });\n // The Fetch Standard allows users to skip consuming the response body by\n // relying on garbage collection to release connection resources.\n // https://github.com/nodejs/undici?tab=readme-ov-file#garbage-collection\n //\n // To cancel the stream you then need to cancel both resulting branches.\n // Teeing a stream will generally lock it for the duration, preventing other\n // readers from locking it.\n // https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee\n if (registry) {\n if (cloned1.body) {\n registry.register(cloned1, new WeakRef(cloned1.body));\n }\n if (cloned2.body) {\n registry.register(cloned2, new WeakRef(cloned2.body));\n }\n }\n return [\n cloned1,\n cloned2\n ];\n}\n\n//# sourceMappingURL=clone-response.js.map","/**\n * Node in the doubly-linked list used for LRU tracking.\n * Each node represents a cache entry with bidirectional pointers.\n */ class LRUNode {\n constructor(key, data, size){\n this.prev = null;\n this.next = null;\n this.key = key;\n this.data = data;\n this.size = size;\n }\n}\n/**\n * Sentinel node used for head/tail boundaries.\n * These nodes don't contain actual cache data but simplify list operations.\n */ class SentinelNode {\n constructor(){\n this.prev = null;\n this.next = null;\n }\n}\n/**\n * LRU (Least Recently Used) Cache implementation using a doubly-linked list\n * and hash map for O(1) operations.\n *\n * Algorithm:\n * - Uses a doubly-linked list to maintain access order (most recent at head)\n * - Hash map provides O(1) key-to-node lookup\n * - Sentinel head/tail nodes simplify edge case handling\n * - Size-based eviction supports custom size calculation functions\n *\n * Data Structure Layout:\n * HEAD <-> [most recent] <-> ... <-> [least recent] <-> TAIL\n *\n * Operations:\n * - get(): Move accessed node to head (mark as most recent)\n * - set(): Add new node at head, evict from tail if over capacity\n * - Eviction: Remove least recent node (tail.prev) when size exceeds limit\n */ export class LRUCache {\n constructor(maxSize, calculateSize, onEvict){\n this.cache = new Map();\n this.totalSize = 0;\n this.maxSize = maxSize;\n this.calculateSize = calculateSize;\n this.onEvict = onEvict;\n // Create sentinel nodes to simplify doubly-linked list operations\n // HEAD <-> TAIL (empty list)\n this.head = new SentinelNode();\n this.tail = new SentinelNode();\n this.head.next = this.tail;\n this.tail.prev = this.head;\n }\n /**\n * Adds a node immediately after the head (marks as most recently used).\n * Used when inserting new items or when an item is accessed.\n * PRECONDITION: node must be disconnected (prev/next should be null)\n */ addToHead(node) {\n node.prev = this.head;\n node.next = this.head.next;\n // head.next is always non-null (points to tail or another node)\n this.head.next.prev = node;\n this.head.next = node;\n }\n /**\n * Removes a node from its current position in the doubly-linked list.\n * Updates the prev/next pointers of adjacent nodes to maintain list integrity.\n * PRECONDITION: node must be connected (prev/next are non-null)\n */ removeNode(node) {\n // Connected nodes always have non-null prev/next\n node.prev.next = node.next;\n node.next.prev = node.prev;\n }\n /**\n * Moves an existing node to the head position (marks as most recently used).\n * This is the core LRU operation - accessed items become most recent.\n */ moveToHead(node) {\n this.removeNode(node);\n this.addToHead(node);\n }\n /**\n * Removes and returns the least recently used node (the one before tail).\n * This is called during eviction when the cache exceeds capacity.\n * PRECONDITION: cache is not empty (ensured by caller)\n */ removeTail() {\n const lastNode = this.tail.prev;\n // tail.prev is always non-null and always LRUNode when cache is not empty\n this.removeNode(lastNode);\n return lastNode;\n }\n /**\n * Sets a key-value pair in the cache.\n * If the key exists, updates the value and moves to head.\n * If new, adds at head and evicts from tail if necessary.\n *\n * Time Complexity:\n * - O(1) for uniform item sizes\n * - O(k) where k is the number of items evicted (can be O(N) for variable sizes)\n */ set(key, value) {\n const size = (this.calculateSize == null ? void 0 : this.calculateSize.call(this, value)) ?? 1;\n if (size <= 0) {\n throw Object.defineProperty(new Error(`LRUCache: calculateSize returned ${size}, but size must be > 0. ` + `Items with size 0 would never be evicted, causing unbounded cache growth.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1045\",\n enumerable: false,\n configurable: true\n });\n }\n if (size > this.maxSize) {\n console.warn('Single item size exceeds maxSize');\n return false;\n }\n const existing = this.cache.get(key);\n if (existing) {\n // Update existing node: adjust size and move to head (most recent)\n existing.data = value;\n this.totalSize = this.totalSize - existing.size + size;\n existing.size = size;\n this.moveToHead(existing);\n } else {\n // Add new node at head (most recent position)\n const newNode = new LRUNode(key, value, size);\n this.cache.set(key, newNode);\n this.addToHead(newNode);\n this.totalSize += size;\n }\n // Evict least recently used items until under capacity\n while(this.totalSize > this.maxSize && this.cache.size > 0){\n const tail = this.removeTail();\n this.cache.delete(tail.key);\n this.totalSize -= tail.size;\n this.onEvict == null ? void 0 : this.onEvict.call(this, tail.key, tail.data);\n }\n return true;\n }\n /**\n * Checks if a key exists in the cache.\n * This is a pure query operation - does NOT update LRU order.\n *\n * Time Complexity: O(1)\n */ has(key) {\n return this.cache.has(key);\n }\n /**\n * Retrieves a value by key and marks it as most recently used.\n * Moving to head maintains the LRU property for future evictions.\n *\n * Time Complexity: O(1)\n */ get(key) {\n const node = this.cache.get(key);\n if (!node) return undefined;\n // Mark as most recently used by moving to head\n this.moveToHead(node);\n return node.data;\n }\n /**\n * Returns an iterator over the cache entries. The order is outputted in the\n * order of most recently used to least recently used.\n */ *[Symbol.iterator]() {\n let current = this.head.next;\n while(current && current !== this.tail){\n // Between head and tail, current is always LRUNode\n const node = current;\n yield [\n node.key,\n node.data\n ];\n current = current.next;\n }\n }\n /**\n * Removes a specific key from the cache.\n * Updates both the hash map and doubly-linked list.\n *\n * Note: This is an explicit removal and does NOT trigger the `onEvict`\n * callback. Use this for intentional deletions where eviction tracking\n * is not needed.\n *\n * Time Complexity: O(1)\n */ remove(key) {\n const node = this.cache.get(key);\n if (!node) return;\n this.removeNode(node);\n this.cache.delete(key);\n this.totalSize -= node.size;\n }\n /**\n * Returns the number of items in the cache.\n */ get size() {\n return this.cache.size;\n }\n /**\n * Returns the current total size of all cached items.\n * This uses the custom size calculation if provided.\n */ get currentSize() {\n return this.totalSize;\n }\n}\n\n//# sourceMappingURL=lru-cache.js.map","// ISC License\n// Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\n// Permission to use, copy, modify, and/or distribute this software for any\n// purpose with or without fee is hereby granted, provided that the above\n// copyright notice and this permission notice appear in all copies.\n// THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n// https://github.com/alexeyraspopov/picocolors/blob/b6261487e7b81aaab2440e397a356732cad9e342/picocolors.js#L1\nvar _globalThis;\nconst { env, stdout } = ((_globalThis = globalThis) == null ? void 0 : _globalThis.process) ?? {};\nconst enabled = env && !env.NO_COLOR && (env.FORCE_COLOR || (stdout == null ? void 0 : stdout.isTTY) && !env.CI && env.TERM !== 'dumb');\nconst replaceClose = (str, close, replace, index)=>{\n const start = str.substring(0, index) + replace;\n const end = str.substring(index + close.length);\n const nextIndex = end.indexOf(close);\n return ~nextIndex ? start + replaceClose(end, close, replace, nextIndex) : start + end;\n};\nconst formatter = (open, close, replace = open)=>{\n if (!enabled) return String;\n return (input)=>{\n const string = '' + input;\n const index = string.indexOf(close, open.length);\n return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;\n };\n};\nexport const reset = enabled ? (s)=>`\\x1b[0m${s}\\x1b[0m` : String;\nexport const bold = formatter('\\x1b[1m', '\\x1b[22m', '\\x1b[22m\\x1b[1m');\nexport const dim = formatter('\\x1b[2m', '\\x1b[22m', '\\x1b[22m\\x1b[2m');\nexport const italic = formatter('\\x1b[3m', '\\x1b[23m');\nexport const underline = formatter('\\x1b[4m', '\\x1b[24m');\nexport const inverse = formatter('\\x1b[7m', '\\x1b[27m');\nexport const hidden = formatter('\\x1b[8m', '\\x1b[28m');\nexport const strikethrough = formatter('\\x1b[9m', '\\x1b[29m');\nexport const black = formatter('\\x1b[30m', '\\x1b[39m');\nexport const red = formatter('\\x1b[31m', '\\x1b[39m');\nexport const green = formatter('\\x1b[32m', '\\x1b[39m');\nexport const yellow = formatter('\\x1b[33m', '\\x1b[39m');\nexport const blue = formatter('\\x1b[34m', '\\x1b[39m');\nexport const magenta = formatter('\\x1b[35m', '\\x1b[39m');\nexport const purple = formatter('\\x1b[38;2;173;127;168m', '\\x1b[39m');\nexport const cyan = formatter('\\x1b[36m', '\\x1b[39m');\nexport const white = formatter('\\x1b[37m', '\\x1b[39m');\nexport const gray = formatter('\\x1b[90m', '\\x1b[39m');\nexport const bgBlack = formatter('\\x1b[40m', '\\x1b[49m');\nexport const bgRed = formatter('\\x1b[41m', '\\x1b[49m');\nexport const bgGreen = formatter('\\x1b[42m', '\\x1b[49m');\nexport const bgYellow = formatter('\\x1b[43m', '\\x1b[49m');\nexport const bgBlue = formatter('\\x1b[44m', '\\x1b[49m');\nexport const bgMagenta = formatter('\\x1b[45m', '\\x1b[49m');\nexport const bgCyan = formatter('\\x1b[46m', '\\x1b[49m');\nexport const bgWhite = formatter('\\x1b[47m', '\\x1b[49m');\n\n//# sourceMappingURL=picocolors.js.map","/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */ const cache = new WeakMap();\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */ export function normalizeLocalePath(pathname, locales) {\n // If locales is undefined, return the pathname as is.\n if (!locales) return {\n pathname\n };\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales);\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale)=>locale.toLowerCase());\n cache.set(locales, lowercasedLocales);\n }\n let detectedLocale;\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2);\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return {\n pathname\n };\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase();\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment);\n if (index < 0) return {\n pathname\n };\n // Return the case-sensitive locale.\n detectedLocale = locales[index];\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/';\n return {\n pathname,\n detectedLocale\n };\n}\n\n//# sourceMappingURL=normalize-locale-path.js.map","export { RequestCookies, ResponseCookies, stringifyCookie } from 'next/dist/compiled/@edge-runtime/cookies';\n\n//# sourceMappingURL=cookies.js.map","// Combined load times for loading client components\nlet clientComponentLoadStart = 0;\nlet clientComponentLoadTimes = 0;\nlet clientComponentLoadCount = 0;\nexport function wrapClientComponentLoader(ComponentMod) {\n if (!('performance' in globalThis)) {\n return ComponentMod.__next_app__;\n }\n return {\n require: (...args)=>{\n const startTime = performance.now();\n if (clientComponentLoadStart === 0) {\n clientComponentLoadStart = startTime;\n }\n try {\n clientComponentLoadCount += 1;\n return ComponentMod.__next_app__.require(...args);\n } finally{\n clientComponentLoadTimes += performance.now() - startTime;\n }\n },\n loadChunk: (...args)=>{\n const startTime = performance.now();\n const result = ComponentMod.__next_app__.loadChunk(...args);\n // Avoid wrapping `loadChunk`'s result in an extra promise in case something like React depends on its identity.\n // We only need to know when it's settled.\n result.finally(()=>{\n clientComponentLoadTimes += performance.now() - startTime;\n });\n return result;\n }\n };\n}\nexport function getClientComponentLoaderMetrics(options = {}) {\n const metrics = clientComponentLoadStart === 0 ? undefined : {\n clientComponentLoadStart,\n clientComponentLoadTimes,\n clientComponentLoadCount\n };\n if (options.reset) {\n clientComponentLoadStart = 0;\n clientComponentLoadTimes = 0;\n clientComponentLoadCount = 0;\n }\n return metrics;\n}\n\n//# sourceMappingURL=client-component-renderer-logger.js.map","export class InvariantError extends Error {\n constructor(message, options){\n super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options);\n this.name = 'InvariantError';\n }\n}\n\n//# sourceMappingURL=invariant-error.js.map","export const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain';\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8';\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8';\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP';\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI';\nexport const MATCHED_PATH_HEADER = 'x-matched-path';\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate';\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER = 'x-prerender-revalidate-if-generated';\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments';\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc';\nexport const RSC_SUFFIX = '.rsc';\nexport const ACTION_SUFFIX = '.action';\nexport const NEXT_DATA_SUFFIX = '.json';\nexport const NEXT_META_SUFFIX = '.meta';\nexport const NEXT_BODY_SUFFIX = '.body';\nexport const NEXT_NAV_DEPLOYMENT_ID_HEADER = 'x-nextjs-deployment-id';\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags';\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags';\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER = 'x-next-revalidate-tag-token';\nexport const NEXT_RESUME_HEADER = 'next-resume';\nexport const NEXT_RESUME_STATE_LENGTH_HEADER = 'x-next-resume-state-length';\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128;\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256;\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024;\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_';\nexport const NEXT_CACHE_ROOT_PARAM_TAG_ID = '_N_RP_';\n// in seconds\nexport const CACHE_ONE_YEAR_SECONDS = 31536000;\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe;\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware';\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`;\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy';\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`;\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation';\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages';\nexport const DOT_NEXT_ALIAS = 'private-dot-next';\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir';\nexport const APP_DIR_ALIAS = 'private-next-app-dir';\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy';\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate';\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference';\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper';\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS = 'private-next-rsc-track-dynamic-import';\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption';\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS = 'private-next-rsc-action-client-wrapper';\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`;\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`;\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`;\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`;\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`;\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`;\nexport const GSP_NO_RETURNED_VALUE = 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?';\nexport const GSSP_NO_RETURNED_VALUE = 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?';\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR = 'The `unstable_revalidate` property is available for general use.\\n' + 'Please use `revalidate` instead.';\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`;\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`;\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`;\nexport const ESLINT_DEFAULT_DIRS = [\n 'app',\n 'pages',\n 'components',\n 'lib',\n 'src'\n];\nexport const SERVER_RUNTIME = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs'\n};\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12;\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */ const WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */ shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */ reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */ serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */ actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */ apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */ apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */ middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */ instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */ edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */ appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */ pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */ pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */ pagesDirNode: 'pages-dir-node'\n};\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser\n ]\n }\n};\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__'\n};\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES };\n\n//# sourceMappingURL=constants.js.map","export function getRevalidateReason(params) {\n if (params.isOnDemandRevalidate) {\n return 'on-demand';\n }\n if (params.isStaticGeneration) {\n return 'stale';\n }\n return undefined;\n}\n\n//# sourceMappingURL=utils.js.map","export const INSTANT_VALIDATION_BOUNDARY_NAME = '__next_instant_validation_boundary__';\n\n//# sourceMappingURL=boundary-constants.js.map","export var CachedRouteKind = /*#__PURE__*/ function(CachedRouteKind) {\n CachedRouteKind[\"APP_PAGE\"] = \"APP_PAGE\";\n CachedRouteKind[\"APP_ROUTE\"] = \"APP_ROUTE\";\n CachedRouteKind[\"PAGES\"] = \"PAGES\";\n CachedRouteKind[\"FETCH\"] = \"FETCH\";\n CachedRouteKind[\"REDIRECT\"] = \"REDIRECT\";\n CachedRouteKind[\"IMAGE\"] = \"IMAGE\";\n return CachedRouteKind;\n}({});\nexport var IncrementalCacheKind = /*#__PURE__*/ function(IncrementalCacheKind) {\n IncrementalCacheKind[\"APP_PAGE\"] = \"APP_PAGE\";\n IncrementalCacheKind[\"APP_ROUTE\"] = \"APP_ROUTE\";\n IncrementalCacheKind[\"PAGES\"] = \"PAGES\";\n IncrementalCacheKind[\"FETCH\"] = \"FETCH\";\n IncrementalCacheKind[\"IMAGE\"] = \"IMAGE\";\n return IncrementalCacheKind;\n}({});\n\n//# sourceMappingURL=types.js.map","export function detectDomainLocale(domainItems, hostname, detectedLocale) {\n if (!domainItems) return;\n if (detectedLocale) {\n detectedLocale = detectedLocale.toLowerCase();\n }\n for (const item of domainItems){\n // remove port if present\n const domainHostname = item.domain?.split(':', 1)[0].toLowerCase();\n if (hostname === domainHostname || detectedLocale === item.defaultLocale.toLowerCase() || item.locales?.some((locale)=>locale.toLowerCase() === detectedLocale)) {\n return item;\n }\n }\n}\n\n//# sourceMappingURL=detect-domain-locale.js.map","export class PageSignatureError extends Error {\n constructor({ page }){\n super(`The middleware \"${page}\" accepts an async API directly with the form:\n \n export function middleware(request, event) {\n return NextResponse.redirect('/new-location')\n }\n \n Read more: https://nextjs.org/docs/messages/middleware-new-signature\n `);\n }\n}\nexport class RemovedPageError extends Error {\n constructor(){\n super(`The request.page has been deprecated in favour of \\`URLPattern\\`.\n Read more: https://nextjs.org/docs/messages/middleware-request-page\n `);\n }\n}\nexport class RemovedUAError extends Error {\n constructor(){\n super(`The request.ua has been removed in favour of \\`userAgent\\` function.\n Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n `);\n }\n}\n\n//# sourceMappingURL=error.js.map","export function getSegmentValue(segment) {\n return Array.isArray(segment) ? segment[1] : segment;\n}\nexport function isGroupSegment(segment) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')');\n}\nexport function isParallelRouteSegment(segment) {\n return segment.startsWith('@') && segment !== '@children';\n}\nexport function addSearchParamsIfPageSegment(segment, searchParams) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY);\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams);\n return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY;\n }\n return segment;\n}\nexport function computeSelectedLayoutSegment(segments, parallelRouteKey) {\n if (!segments || segments.length === 0) {\n return null;\n }\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1];\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment;\n}\n/** Get the canonical parameters from the current level to the leaf node. */ export function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) {\n let node;\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey];\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1];\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0];\n }\n if (!node) return segmentPath;\n const segment = node[0];\n let segmentValue = getSegmentValue(segment);\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath;\n }\n segmentPath.push(segmentValue);\n return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath);\n}\nexport const PAGE_SEGMENT_KEY = '__PAGE__';\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__';\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found';\n\n//# sourceMappingURL=segment.js.map","export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__';\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__';\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__';\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__';\n\n//# sourceMappingURL=boundary-constants.js.map","export var RouteKind = /*#__PURE__*/ function(RouteKind) {\n /**\n * `PAGES` represents all the React pages that are under `pages/`.\n */ RouteKind[\"PAGES\"] = \"PAGES\";\n /**\n * `PAGES_API` represents all the API routes under `pages/api/`.\n */ RouteKind[\"PAGES_API\"] = \"PAGES_API\";\n /**\n * `APP_PAGE` represents all the React pages that are under `app/` with the\n * filename of `page.{j,t}s{,x}`.\n */ RouteKind[\"APP_PAGE\"] = \"APP_PAGE\";\n /**\n * `APP_ROUTE` represents all the API routes and metadata routes that are under `app/` with the\n * filename of `route.{j,t}s{,x}`.\n */ RouteKind[\"APP_ROUTE\"] = \"APP_ROUTE\";\n /**\n * `IMAGE` represents all the images that are generated by `next/image`.\n */ RouteKind[\"IMAGE\"] = \"IMAGE\";\n return RouteKind;\n}({});\n\n//# sourceMappingURL=route-kind.js.map","export var RedirectStatusCode = /*#__PURE__*/ function(RedirectStatusCode) {\n RedirectStatusCode[RedirectStatusCode[\"SeeOther\"] = 303] = \"SeeOther\";\n RedirectStatusCode[RedirectStatusCode[\"TemporaryRedirect\"] = 307] = \"TemporaryRedirect\";\n RedirectStatusCode[RedirectStatusCode[\"PermanentRedirect\"] = 308] = \"PermanentRedirect\";\n return RedirectStatusCode;\n}({});\n\n//# sourceMappingURL=redirect-status-code.js.map","import { hexHash } from '../../hash';\nconst CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES = 12;\nconst textEncoder = new TextEncoder();\nfunction encodeCacheBustingSearchParam(bytes) {\n let binary = '';\n for(let i = 0; i < bytes.length; i++){\n binary += String.fromCharCode(bytes[i]);\n }\n return btoa(binary).replace(/\\+/g, '-').replace(/\\//g, '_').replace(/=+$/, '');\n}\nfunction normalizeCacheBustingInput(value) {\n if (value === undefined) {\n return '0';\n }\n return Array.isArray(value) ? value.join(',') : value;\n}\nfunction createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) {\n return null;\n }\n return [\n prefetchHeader ?? '0',\n normalizeCacheBustingInput(segmentPrefetchHeader),\n normalizeCacheBustingInput(stateTreeHeader),\n normalizeCacheBustingInput(nextUrlHeader)\n ].join(',');\n}\nasync function computeCacheBustingSearchParamFromInput(input) {\n // Truncate SHA-256 to 96 bits to keep `_rsc` compact\n const digest = await globalThis.crypto.subtle.digest('SHA-256', textEncoder.encode(input));\n return encodeCacheBustingSearchParam(new Uint8Array(digest).subarray(0, CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES));\n}\nexport async function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n const input = createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader);\n if (input === null) {\n return '';\n }\n return computeCacheBustingSearchParamFromInput(input);\n}\nexport function computeLegacyCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n const input = createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader);\n if (input === null) {\n return '';\n }\n return hexHash(input);\n}\n\n//# sourceMappingURL=cache-busting-search-param.js.map","import { CACHE_ONE_YEAR_SECONDS } from '../../lib/constants';\nexport function getCacheControlHeader({ revalidate, expire }) {\n const swrHeader = typeof revalidate === 'number' && expire !== undefined && revalidate < expire ? `, stale-while-revalidate=${expire - revalidate}` : '';\n if (revalidate === 0) {\n return 'private, no-cache, no-store, max-age=0, must-revalidate';\n } else if (typeof revalidate === 'number') {\n return `s-maxage=${revalidate}${swrHeader}`;\n }\n return `s-maxage=${CACHE_ONE_YEAR_SECONDS}${swrHeader}`;\n}\n\n//# sourceMappingURL=cache-control.js.map","import { RenderStage } from './app-render/staged-rendering';\nexport function isHangingPromiseRejectionError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false;\n }\n return err.digest === HANGING_PROMISE_REJECTION;\n}\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION';\nclass HangingPromiseRejectionError extends Error {\n constructor(route, expression){\n super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION;\n }\n}\nconst abortListenersBySignal = new WeakMap();\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */ export function makeHangingPromise(signal, route, expression) {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression));\n } else {\n const hangingPromise = new Promise((_, reject)=>{\n const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression));\n let currentListeners = abortListenersBySignal.get(signal);\n if (currentListeners) {\n currentListeners.push(boundRejection);\n } else {\n const listeners = [\n boundRejection\n ];\n abortListenersBySignal.set(signal, listeners);\n signal.addEventListener('abort', ()=>{\n for(let i = 0; i < listeners.length; i++){\n listeners[i]();\n }\n }, {\n once: true\n });\n }\n });\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject);\n return hangingPromise;\n }\n}\nfunction ignoreReject() {}\nexport function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying);\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise((resolve)=>{\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(()=>{\n resolve(underlying);\n }, 0);\n });\n}\n/**\n * Returns the appropriate runtime stage for the current point in the render.\n * Runtime-prefetchable segments render in the early stages and should wait\n * for EarlyRuntime. Non-prefetchable segments render in the later stages\n * and should wait for Runtime.\n */ export function getRuntimeStage(stagedRendering) {\n if (stagedRendering.currentStage === RenderStage.EarlyStatic || stagedRendering.currentStage === RenderStage.EarlyRuntime) {\n return RenderStage.EarlyRuntime;\n }\n return RenderStage.Runtime;\n}\n/**\n * Delays until the appropriate runtime stage based on the current stage of\n * the rendering pipeline:\n *\n * - Early stages → wait for EarlyRuntime\n * (for runtime-prefetchable segments)\n * - Later stages → wait for Runtime\n * (for segments not using runtime prefetch)\n *\n * This ensures that cookies()/headers()/etc. resolve at the right time for\n * each segment type.\n */ export function delayUntilRuntimeStage(prerenderStore, result) {\n const { stagedRendering } = prerenderStore;\n if (!stagedRendering) {\n return result;\n }\n return stagedRendering.waitForStage(getRuntimeStage(stagedRendering)).then(()=>result);\n}\n\n//# sourceMappingURL=dynamic-rendering-utils.js.map","// FIXME: (wyattjoh) this is a temporary solution to allow us to pass data between bundled modules\nexport const NEXT_REQUEST_META = Symbol.for('NextInternalRequestMeta');\nexport function getRequestMeta(req, key) {\n const meta = req[NEXT_REQUEST_META] || {};\n return typeof key === 'string' ? meta[key] : meta;\n}\n/**\n * Sets the request metadata.\n *\n * @param req the request to set the metadata on\n * @param meta the metadata to set\n * @returns the mutated request metadata\n */ export function setRequestMeta(req, meta) {\n req[NEXT_REQUEST_META] = meta;\n return meta;\n}\n/**\n * Adds a value to the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to set\n * @param value the value to set\n * @returns the mutated request metadata\n */ export function addRequestMeta(request, key, value) {\n const meta = getRequestMeta(request);\n meta[key] = value;\n return setRequestMeta(request, meta);\n}\n/**\n * Removes a key from the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to remove\n * @returns the mutated request metadata\n */ export function removeRequestMeta(request, key) {\n const meta = getRequestMeta(request);\n delete meta[key];\n return setRequestMeta(request, meta);\n}\n\n//# sourceMappingURL=request-meta.js.map","import { LogSpanAllowList, NextVanillaSpanAllowlist } from './constants';\nimport { isThenable } from '../../../shared/lib/is-thenable';\nconst NEXT_OTEL_PERFORMANCE_PREFIX = process.env.NEXT_OTEL_PERFORMANCE_PREFIX;\nlet api;\n// we want to allow users to use their own version of @opentelemetry/api if they\n// want to, so we try to require it first, and if it fails we fall back to the\n// version that is bundled with Next.js\n// this is because @opentelemetry/api has to be synced with the version of\n// @opentelemetry/tracing that is used, and we don't want to force users to use\n// the version that is bundled with Next.js.\n// the API is ~stable, so this should be fine\nif (process.env.NEXT_RUNTIME === 'edge') {\n api = require('@opentelemetry/api');\n} else {\n try {\n api = require('@opentelemetry/api');\n } catch (err) {\n api = require('next/dist/compiled/@opentelemetry/api');\n }\n}\nconst { context, propagation, trace, SpanStatusCode, SpanKind, ROOT_CONTEXT } = api;\nexport class BubbledError extends Error {\n constructor(bubble, result){\n super(), this.bubble = bubble, this.result = result;\n }\n}\nexport function isBubbledError(error) {\n if (typeof error !== 'object' || error === null) return false;\n return error instanceof BubbledError;\n}\nconst closeSpanWithError = (span, error)=>{\n if (isBubbledError(error) && error.bubble) {\n span.setAttribute('next.bubble', true);\n } else {\n if (error) {\n span.recordException(error);\n span.setAttribute('error.type', error.name);\n }\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: error == null ? void 0 : error.message\n });\n }\n span.end();\n};\n/** we use this map to propagate attributes from nested spans to the top span */ const rootSpanAttributesStore = new Map();\nconst rootSpanIdKey = api.createContextKey('next.rootSpanId');\nlet lastSpanId = 0;\nconst getSpanId = ()=>lastSpanId++;\nconst clientTraceDataSetter = {\n set (carrier, key, value) {\n carrier.push({\n key,\n value\n });\n }\n};\nclass NextTracerImpl {\n /**\n * Returns an instance to the trace with configured name.\n * Since wrap / trace can be defined in any place prior to actual trace subscriber initialization,\n * This should be lazily evaluated.\n */ getTracerInstance() {\n return trace.getTracer('next.js', '0.0.1');\n }\n getContext() {\n return context;\n }\n getTracePropagationData() {\n const activeContext = context.active();\n const entries = [];\n propagation.inject(activeContext, entries, clientTraceDataSetter);\n return entries;\n }\n getActiveScopeSpan() {\n return trace.getSpan(context == null ? void 0 : context.active());\n }\n withPropagatedContext(carrier, fn, getter, force = false) {\n const activeContext = context.active();\n if (force) {\n const remoteContext = propagation.extract(ROOT_CONTEXT, carrier, getter);\n if (trace.getSpanContext(remoteContext)) {\n return context.with(remoteContext, fn);\n }\n // Preserve the current active span while still merging any extracted\n // baggage/context values from the carrier.\n const mergedContext = propagation.extract(activeContext, carrier, getter);\n return context.with(mergedContext, fn);\n }\n if (trace.getSpanContext(activeContext)) {\n // Active span is already set, too late to propagate.\n return fn();\n }\n const remoteContext = propagation.extract(activeContext, carrier, getter);\n return context.with(remoteContext, fn);\n }\n trace(...args) {\n const [type, fnOrOptions, fnOrEmpty] = args;\n // coerce options form overload\n const { fn, options } = typeof fnOrOptions === 'function' ? {\n fn: fnOrOptions,\n options: {}\n } : {\n fn: fnOrEmpty,\n options: {\n ...fnOrOptions\n }\n };\n const spanName = options.spanName ?? type;\n if (!NextVanillaSpanAllowlist.has(type) && process.env.NEXT_OTEL_VERBOSE !== '1' || options.hideSpan) {\n return fn();\n }\n // Trying to get active scoped span to assign parent. If option specifies parent span manually, will try to use it.\n let spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan());\n if (!spanContext) {\n spanContext = (context == null ? void 0 : context.active()) ?? ROOT_CONTEXT;\n }\n // Check if there's already a root span in the store for this trace\n // We are intentionally not checking whether there is an active context\n // from outside of nextjs to ensure that we can provide the same level\n // of telemetry when using a custom server\n const existingRootSpanId = spanContext.getValue(rootSpanIdKey);\n const isRootSpan = typeof existingRootSpanId !== 'number' || !rootSpanAttributesStore.has(existingRootSpanId);\n const spanId = getSpanId();\n options.attributes = {\n 'next.span_name': spanName,\n 'next.span_type': type,\n ...options.attributes\n };\n return context.with(spanContext.setValue(rootSpanIdKey, spanId), ()=>this.getTracerInstance().startActiveSpan(spanName, options, (span)=>{\n let startTime;\n if (NEXT_OTEL_PERFORMANCE_PREFIX && type && LogSpanAllowList.has(type)) {\n startTime = 'performance' in globalThis && 'measure' in performance ? globalThis.performance.now() : undefined;\n }\n let cleanedUp = false;\n const onCleanup = ()=>{\n if (cleanedUp) return;\n cleanedUp = true;\n rootSpanAttributesStore.delete(spanId);\n if (startTime) {\n performance.measure(`${NEXT_OTEL_PERFORMANCE_PREFIX}:next-${(type.split('.').pop() || '').replace(/[A-Z]/g, (match)=>'-' + match.toLowerCase())}`, {\n start: startTime,\n end: performance.now()\n });\n }\n };\n if (isRootSpan) {\n rootSpanAttributesStore.set(spanId, new Map(Object.entries(options.attributes ?? {})));\n }\n if (fn.length > 1) {\n try {\n return fn(span, (err)=>closeSpanWithError(span, err));\n } catch (err) {\n closeSpanWithError(span, err);\n throw err;\n } finally{\n onCleanup();\n }\n }\n try {\n const result = fn(span);\n if (isThenable(result)) {\n // If there's error make sure it throws\n return result.then((res)=>{\n span.end();\n // Need to pass down the promise result,\n // it could be react stream response with error { error, stream }\n return res;\n }).catch((err)=>{\n closeSpanWithError(span, err);\n throw err;\n }).finally(onCleanup);\n } else {\n span.end();\n onCleanup();\n }\n return result;\n } catch (err) {\n closeSpanWithError(span, err);\n onCleanup();\n throw err;\n }\n }));\n }\n wrap(...args) {\n const tracer = this;\n const [name, options, fn] = args.length === 3 ? args : [\n args[0],\n {},\n args[1]\n ];\n if (!NextVanillaSpanAllowlist.has(name) && process.env.NEXT_OTEL_VERBOSE !== '1') {\n return fn;\n }\n return function() {\n let optionsObj = options;\n if (typeof optionsObj === 'function' && typeof fn === 'function') {\n optionsObj = optionsObj.apply(this, arguments);\n }\n const lastArgId = arguments.length - 1;\n const cb = arguments[lastArgId];\n if (typeof cb === 'function') {\n const scopeBoundCb = tracer.getContext().bind(context.active(), cb);\n return tracer.trace(name, optionsObj, (_span, done)=>{\n arguments[lastArgId] = function(err) {\n done == null ? void 0 : done(err);\n return scopeBoundCb.apply(this, arguments);\n };\n return fn.apply(this, arguments);\n });\n } else {\n return tracer.trace(name, optionsObj, ()=>fn.apply(this, arguments));\n }\n };\n }\n startSpan(...args) {\n const [type, options] = args;\n const spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan());\n return this.getTracerInstance().startSpan(type, options, spanContext);\n }\n getSpanContext(parentSpan) {\n const spanContext = parentSpan ? trace.setSpan(context.active(), parentSpan) : undefined;\n return spanContext;\n }\n getRootSpanAttributes() {\n const spanId = context.active().getValue(rootSpanIdKey);\n return rootSpanAttributesStore.get(spanId);\n }\n setRootSpanAttribute(key, value) {\n const spanId = context.active().getValue(rootSpanIdKey);\n const attributes = rootSpanAttributesStore.get(spanId);\n if (attributes && !attributes.has(key)) {\n attributes.set(key, value);\n }\n }\n withSpan(span, fn) {\n const spanContext = trace.setSpan(context.active(), span);\n return context.with(spanContext, fn);\n }\n}\nconst getTracer = (()=>{\n const tracer = new NextTracerImpl();\n return ()=>tracer;\n})();\nexport { getTracer, SpanStatusCode, SpanKind };\n\n//# sourceMappingURL=tracer.js.map","import { bold, green, magenta, red, yellow, white } from '../../lib/picocolors';\nimport { LRUCache } from '../../server/lib/lru-cache';\nexport const prefixes = {\n wait: white(bold('○')),\n error: red(bold('⨯')),\n warn: yellow(bold('⚠')),\n ready: '▲',\n info: white(bold(' ')),\n event: green(bold('✓')),\n trace: magenta(bold('»'))\n};\nconst LOGGING_METHOD = {\n log: 'log',\n warn: 'warn',\n error: 'error'\n};\nfunction prefixedLog(prefixType, ...message) {\n if ((message[0] === '' || message[0] === undefined) && message.length === 1) {\n message.shift();\n }\n const consoleMethod = prefixType in LOGGING_METHOD ? LOGGING_METHOD[prefixType] : 'log';\n const prefix = prefixes[prefixType];\n // If there's no message, don't print the prefix but a new line\n if (message.length === 0) {\n console[consoleMethod]('');\n } else {\n // Ensure if there's ANSI escape codes it's concatenated into one string.\n // Chrome DevTool can only handle color if it's in one string.\n if (message.length === 1 && typeof message[0] === 'string') {\n console[consoleMethod](prefix + ' ' + message[0]);\n } else {\n console[consoleMethod](prefix, ...message);\n }\n }\n}\nexport function bootstrap(message) {\n console.log(message);\n}\nexport function wait(...message) {\n prefixedLog('wait', ...message);\n}\nexport function error(...message) {\n prefixedLog('error', ...message);\n}\nexport function warn(...message) {\n prefixedLog('warn', ...message);\n}\nexport function ready(...message) {\n prefixedLog('ready', ...message);\n}\nexport function info(...message) {\n prefixedLog('info', ...message);\n}\nexport function event(...message) {\n prefixedLog('event', ...message);\n}\nexport function trace(...message) {\n prefixedLog('trace', ...message);\n}\nconst warnOnceCache = new LRUCache(10000, (value)=>value.length);\nexport function warnOnce(...message) {\n const key = message.join(' ');\n if (!warnOnceCache.has(key)) {\n warnOnceCache.set(key, key);\n warn(...message);\n }\n}\nconst errorOnceCache = new LRUCache(10000, (value)=>value.length);\nexport function errorOnce(...message) {\n const key = message.join(' ');\n if (!errorOnceCache.has(key)) {\n errorOnceCache.set(key, key);\n error(...message);\n }\n}\n\n//# sourceMappingURL=log.js.map","import { RedirectStatusCode } from '../../client/components/redirect-status-code';\nimport { getCookieParser } from '../api-utils/get-cookie-parser';\nexport class BaseNextRequest {\n constructor(method, url, body){\n this.method = method;\n this.url = url;\n this.body = body;\n }\n // Utils implemented using the abstract methods above\n get cookies() {\n if (this._cookies) return this._cookies;\n return this._cookies = getCookieParser(this.headers)();\n }\n}\nexport class BaseNextResponse {\n constructor(destination){\n this.destination = destination;\n }\n // Utils implemented using the abstract methods above\n redirect(destination, statusCode) {\n this.setHeader('Location', destination);\n this.statusCode = statusCode;\n // Since IE11 doesn't support the 308 header add backwards\n // compatibility using refresh header\n if (statusCode === RedirectStatusCode.PermanentRedirect) {\n this.setHeader('Refresh', `0;url=${destination}`);\n }\n return this;\n }\n}\n\n//# sourceMappingURL=index.js.map","import { SYMBOL_CLEARED_COOKIES } from '../api-utils';\nimport { NEXT_REQUEST_META } from '../request-meta';\nimport { BaseNextRequest, BaseNextResponse } from './index';\nlet prop;\nexport class NodeNextRequest extends BaseNextRequest {\n static #_ = prop = _NEXT_REQUEST_META = NEXT_REQUEST_META;\n constructor(_req){\n var _this__req;\n super(_req.method.toUpperCase(), _req.url, _req), this._req = _req, this.headers = this._req.headers, this.fetchMetrics = (_this__req = this._req) == null ? void 0 : _this__req.fetchMetrics, this[_NEXT_REQUEST_META] = this._req[NEXT_REQUEST_META] || {}, this.streaming = false;\n }\n get originalRequest() {\n // Need to mimic these changes to the original req object for places where we use it:\n // render.tsx, api/ssg requests\n this._req[NEXT_REQUEST_META] = this[NEXT_REQUEST_META];\n this._req.url = this.url;\n this._req.cookies = this.cookies;\n return this._req;\n }\n set originalRequest(value) {\n this._req = value;\n }\n /**\n * Returns the request body as a Web Readable Stream. The body here can only\n * be read once as the body will start flowing as soon as the data handler\n * is attached.\n *\n * @internal\n */ stream() {\n if (this.streaming) {\n throw Object.defineProperty(new Error('Invariant: NodeNextRequest.stream() can only be called once'), \"__NEXT_ERROR_CODE\", {\n value: \"E467\",\n enumerable: false,\n configurable: true\n });\n }\n this.streaming = true;\n return new ReadableStream({\n start: (controller)=>{\n this._req.on('data', (chunk)=>{\n controller.enqueue(new Uint8Array(chunk));\n });\n this._req.on('end', ()=>{\n controller.close();\n });\n this._req.on('error', (err)=>{\n controller.error(err);\n });\n }\n });\n }\n}\nexport class NodeNextResponse extends BaseNextResponse {\n get originalResponse() {\n if (SYMBOL_CLEARED_COOKIES in this) {\n this._res[SYMBOL_CLEARED_COOKIES] = this[SYMBOL_CLEARED_COOKIES];\n }\n return this._res;\n }\n constructor(_res){\n super(_res), this._res = _res, this.textBody = undefined;\n }\n get sent() {\n return this._res.finished || this._res.headersSent;\n }\n get statusCode() {\n return this._res.statusCode;\n }\n set statusCode(value) {\n this._res.statusCode = value;\n }\n get statusMessage() {\n return this._res.statusMessage;\n }\n set statusMessage(value) {\n this._res.statusMessage = value;\n }\n setHeader(name, value) {\n this._res.setHeader(name, value);\n return this;\n }\n removeHeader(name) {\n this._res.removeHeader(name);\n return this;\n }\n getHeaderValues(name) {\n const values = this._res.getHeader(name);\n if (values === undefined) return undefined;\n return (Array.isArray(values) ? values : [\n values\n ]).map((value)=>value.toString());\n }\n hasHeader(name) {\n return this._res.hasHeader(name);\n }\n getHeader(name) {\n const values = this.getHeaderValues(name);\n return Array.isArray(values) ? values.join(',') : undefined;\n }\n getHeaders() {\n return this._res.getHeaders();\n }\n appendHeader(name, value) {\n const currentValues = this.getHeaderValues(name) ?? [];\n if (!currentValues.includes(value)) {\n this._res.setHeader(name, [\n ...currentValues,\n value\n ]);\n }\n return this;\n }\n body(value) {\n this.textBody = value;\n return this;\n }\n send() {\n this._res.end(this.textBody);\n }\n onClose(callback) {\n this.originalResponse.on('close', callback);\n }\n}\nvar _NEXT_REQUEST_META;\n\n//# sourceMappingURL=node.js.map","import { normalizeLocalePath } from '../../i18n/normalize-locale-path';\nimport { removePathPrefix } from './remove-path-prefix';\nimport { pathHasPrefix } from './path-has-prefix';\nexport function getNextPathnameInfo(pathname, options) {\n const { basePath, i18n, trailingSlash } = options.nextConfig ?? {};\n const info = {\n pathname,\n trailingSlash: pathname !== '/' ? pathname.endsWith('/') : trailingSlash\n };\n if (basePath && pathHasPrefix(info.pathname, basePath)) {\n info.pathname = removePathPrefix(info.pathname, basePath);\n info.basePath = basePath;\n }\n let pathnameNoDataPrefix = info.pathname;\n if (info.pathname.startsWith('/_next/data/') && info.pathname.endsWith('.json')) {\n const paths = info.pathname.replace(/^\\/_next\\/data\\//, '').replace(/\\.json$/, '').split('/');\n const buildId = paths[0];\n info.buildId = buildId;\n pathnameNoDataPrefix = paths[1] !== 'index' ? `/${paths.slice(1).join('/')}` : '/';\n // update pathname with normalized if enabled although\n // we use normalized to populate locale info still\n if (options.parseData === true) {\n info.pathname = pathnameNoDataPrefix;\n }\n }\n // If provided, use the locale route normalizer to detect the locale instead\n // of the function below.\n if (i18n) {\n let result = options.i18nProvider ? options.i18nProvider.analyze(info.pathname) : normalizeLocalePath(info.pathname, i18n.locales);\n info.locale = result.detectedLocale;\n info.pathname = result.pathname ?? info.pathname;\n if (!result.detectedLocale && info.buildId) {\n result = options.i18nProvider ? options.i18nProvider.analyze(pathnameNoDataPrefix) : normalizeLocalePath(pathnameNoDataPrefix, i18n.locales);\n if (result.detectedLocale) {\n info.locale = result.detectedLocale;\n }\n }\n }\n return info;\n}\n\n//# sourceMappingURL=get-next-pathname-info.js.map","/**\n * Parse cookies from the `headers` of request\n * @param req request object\n */ export function getCookieParser(headers) {\n return function parseCookie() {\n const { cookie } = headers;\n if (!cookie) {\n return {};\n }\n const { parse: parseCookieFn } = require('next/dist/compiled/cookie');\n return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie);\n };\n}\n\n//# sourceMappingURL=get-cookie-parser.js.map","/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */ export function ensureLeadingSlash(path) {\n return path.startsWith('/') ? path : `/${path}`;\n}\n\n//# sourceMappingURL=ensure-leading-slash.js.map","import { chainStreams, streamFromBuffer, streamFromString, streamToString } from './stream-utils/node-web-streams-helper';\nimport { isAbortError, pipeToNodeResponse } from './pipe-readable';\nimport { InvariantError } from '../shared/lib/invariant-error';\nexport default class RenderResult {\n static #_ = /**\n * A render result that represents an empty response. This is used to\n * represent a response that was not found or was already sent.\n */ this.EMPTY = new RenderResult(null, {\n metadata: {},\n contentType: null\n });\n /**\n * Creates a new RenderResult instance from a static response.\n *\n * @param value the static response value\n * @param contentType the content type of the response\n * @returns a new RenderResult instance\n */ static fromStatic(value, contentType) {\n return new RenderResult(value, {\n metadata: {},\n contentType\n });\n }\n constructor(response, { contentType, waitUntil, metadata }){\n this.response = response;\n this.contentType = contentType;\n this.metadata = metadata;\n this.waitUntil = waitUntil;\n }\n assignMetadata(metadata) {\n Object.assign(this.metadata, metadata);\n }\n /**\n * Returns true if the response is null. It can be null if the response was\n * not found or was already sent.\n */ get isNull() {\n return this.response === null;\n }\n /**\n * Returns false if the response is a string. It can be a string if the page\n * was prerendered. If it's not, then it was generated dynamically.\n */ get isDynamic() {\n return typeof this.response !== 'string';\n }\n toUnchunkedString(stream = false) {\n if (this.response === null) {\n // If the response is null, return an empty string. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return '';\n }\n if (typeof this.response !== 'string') {\n if (!stream) {\n throw Object.defineProperty(new InvariantError('dynamic responses cannot be unchunked. This is a bug in Next.js'), \"__NEXT_ERROR_CODE\", {\n value: \"E732\",\n enumerable: false,\n configurable: true\n });\n }\n return streamToString(this.readable);\n }\n return this.response;\n }\n /**\n * Returns a readable stream of the response.\n */ get readable() {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return new ReadableStream({\n start (controller) {\n controller.close();\n }\n });\n }\n if (typeof this.response === 'string') {\n return streamFromString(this.response);\n }\n if (Buffer.isBuffer(this.response)) {\n return streamFromBuffer(this.response);\n }\n // If the response is an array of streams, then chain them together.\n if (Array.isArray(this.response)) {\n return chainStreams(...this.response);\n }\n return this.response;\n }\n /**\n * Coerces the response to an array of streams. This will convert the response\n * to an array of streams if it is not already one.\n *\n * @returns An array of streams\n */ coerce() {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return [];\n }\n if (typeof this.response === 'string') {\n return [\n streamFromString(this.response)\n ];\n } else if (Array.isArray(this.response)) {\n return this.response;\n } else if (Buffer.isBuffer(this.response)) {\n return [\n streamFromBuffer(this.response)\n ];\n } else {\n return [\n this.response\n ];\n }\n }\n /**\n * Pipes the response through a transform stream. This converts the response\n * to a single readable stream (chaining if needed) and pipes it through the\n * provided transform.\n *\n * @param transform The transform stream to pipe through\n */ pipeThrough(transform) {\n this.response = this.readable.pipeThrough(transform);\n }\n /**\n * Unshifts a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the start of the array. When this response is piped, all of the streams\n * will be piped one after the other.\n *\n * @param readable The new stream to unshift\n */ unshift(readable) {\n // Coerce the response to an array of streams.\n this.response = this.coerce();\n // Add the new stream to the start of the array.\n this.response.unshift(readable);\n }\n /**\n * Chains a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the end. When this response is piped, all of the streams will be piped\n * one after the other.\n *\n * @param readable The new stream to chain\n */ push(readable) {\n // Coerce the response to an array of streams.\n this.response = this.coerce();\n // Add the new stream to the end of the array.\n this.response.push(readable);\n }\n /**\n * Pipes the response to a writable stream. This will close/cancel the\n * writable stream if an error is encountered. If this doesn't throw, then\n * the writable stream will be closed or aborted.\n *\n * @param writable Writable stream to pipe the response to\n */ async pipeTo(writable) {\n try {\n await this.readable.pipeTo(writable, {\n // We want to close the writable stream ourselves so that we can wait\n // for the waitUntil promise to resolve before closing it. If an error\n // is encountered, we'll abort the writable stream if we swallowed the\n // error.\n preventClose: true\n });\n // If there is a waitUntil promise, wait for it to resolve before\n // closing the writable stream.\n if (this.waitUntil) await this.waitUntil;\n // Close the writable stream.\n await writable.close();\n } catch (err) {\n // If this is an abort error, we should abort the writable stream (as we\n // took ownership of it when we started piping). We don't need to re-throw\n // because we handled the error.\n if (isAbortError(err)) {\n // Abort the writable stream if an error is encountered.\n await writable.abort(err);\n return;\n }\n // We're not aborting the writer here as when this method throws it's not\n // clear as to how so the caller should assume it's their responsibility\n // to clean up the writer.\n throw err;\n }\n }\n /**\n * Pipes the response to a node response. This will close/cancel the node\n * response if an error is encountered.\n *\n * @param res\n */ async pipeToNodeResponse(res) {\n await pipeToNodeResponse(this.readable, res, this.waitUntil);\n }\n}\n\n//# sourceMappingURL=render-result.js.map","import { detectDomainLocale } from '../../shared/lib/i18n/detect-domain-locale';\nimport { formatNextPathnameInfo } from '../../shared/lib/router/utils/format-next-pathname-info';\nimport { getHostname } from '../../shared/lib/get-hostname';\nimport { getNextPathnameInfo } from '../../shared/lib/router/utils/get-next-pathname-info';\nconst REGEX_LOCALHOST_HOSTNAME = /^(?:127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\\[::1\\]|localhost)$/;\nfunction parseURL(url, base) {\n const parsed = new URL(String(url), base && String(base));\n if (REGEX_LOCALHOST_HOSTNAME.test(parsed.hostname)) {\n parsed.hostname = 'localhost';\n }\n return parsed;\n}\nconst Internal = Symbol('NextURLInternal');\nexport class NextURL {\n constructor(input, baseOrOpts, opts){\n let base;\n let options;\n if (typeof baseOrOpts === 'object' && 'pathname' in baseOrOpts || typeof baseOrOpts === 'string') {\n base = baseOrOpts;\n options = opts || {};\n } else {\n options = opts || baseOrOpts || {};\n }\n this[Internal] = {\n url: parseURL(input, base ?? options.base),\n options: options,\n basePath: ''\n };\n this.analyze();\n }\n analyze() {\n var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig, _this_Internal_domainLocale, _this_Internal_options_nextConfig_i18n1, _this_Internal_options_nextConfig1;\n const info = getNextPathnameInfo(this[Internal].url.pathname, {\n nextConfig: this[Internal].options.nextConfig,\n parseData: !process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,\n i18nProvider: this[Internal].options.i18nProvider\n });\n const hostname = getHostname(this[Internal].url, this[Internal].options.headers);\n this[Internal].domainLocale = this[Internal].options.i18nProvider ? this[Internal].options.i18nProvider.detectDomainLocale(hostname) : detectDomainLocale((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.domains, hostname);\n const defaultLocale = ((_this_Internal_domainLocale = this[Internal].domainLocale) == null ? void 0 : _this_Internal_domainLocale.defaultLocale) || ((_this_Internal_options_nextConfig1 = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n1 = _this_Internal_options_nextConfig1.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n1.defaultLocale);\n this[Internal].url.pathname = info.pathname;\n this[Internal].defaultLocale = defaultLocale;\n this[Internal].basePath = info.basePath ?? '';\n this[Internal].buildId = info.buildId;\n this[Internal].locale = info.locale ?? defaultLocale;\n this[Internal].trailingSlash = info.trailingSlash;\n }\n formatPathname() {\n return formatNextPathnameInfo({\n basePath: this[Internal].basePath,\n buildId: this[Internal].buildId,\n defaultLocale: !this[Internal].options.forceLocale ? this[Internal].defaultLocale : undefined,\n locale: this[Internal].locale,\n pathname: this[Internal].url.pathname,\n trailingSlash: this[Internal].trailingSlash\n });\n }\n formatSearch() {\n return this[Internal].url.search;\n }\n get buildId() {\n return this[Internal].buildId;\n }\n set buildId(buildId) {\n this[Internal].buildId = buildId;\n }\n get locale() {\n return this[Internal].locale ?? '';\n }\n set locale(locale) {\n var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig;\n if (!this[Internal].locale || !((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.locales.includes(locale))) {\n throw Object.defineProperty(new TypeError(`The NextURL configuration includes no locale \"${locale}\"`), \"__NEXT_ERROR_CODE\", {\n value: \"E597\",\n enumerable: false,\n configurable: true\n });\n }\n this[Internal].locale = locale;\n }\n get defaultLocale() {\n return this[Internal].defaultLocale;\n }\n get domainLocale() {\n return this[Internal].domainLocale;\n }\n get searchParams() {\n return this[Internal].url.searchParams;\n }\n get host() {\n return this[Internal].url.host;\n }\n set host(value) {\n this[Internal].url.host = value;\n }\n get hostname() {\n return this[Internal].url.hostname;\n }\n set hostname(value) {\n this[Internal].url.hostname = value;\n }\n get port() {\n return this[Internal].url.port;\n }\n set port(value) {\n this[Internal].url.port = value;\n }\n get protocol() {\n return this[Internal].url.protocol;\n }\n set protocol(value) {\n this[Internal].url.protocol = value;\n }\n get href() {\n const pathname = this.formatPathname();\n const search = this.formatSearch();\n return `${this.protocol}//${this.host}${pathname}${search}${this.hash}`;\n }\n set href(url) {\n this[Internal].url = parseURL(url);\n this.analyze();\n }\n get origin() {\n return this[Internal].url.origin;\n }\n get pathname() {\n return this[Internal].url.pathname;\n }\n set pathname(value) {\n this[Internal].url.pathname = value;\n }\n get hash() {\n return this[Internal].url.hash;\n }\n set hash(value) {\n this[Internal].url.hash = value;\n }\n get search() {\n return this[Internal].url.search;\n }\n set search(value) {\n this[Internal].url.search = value;\n }\n get password() {\n return this[Internal].url.password;\n }\n set password(value) {\n this[Internal].url.password = value;\n }\n get username() {\n return this[Internal].url.username;\n }\n set username(value) {\n this[Internal].url.username = value;\n }\n get basePath() {\n return this[Internal].basePath;\n }\n set basePath(value) {\n this[Internal].basePath = value.startsWith('/') ? value : `/${value}`;\n }\n toString() {\n return this.href;\n }\n toJSON() {\n return this.href;\n }\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n href: this.href,\n origin: this.origin,\n protocol: this.protocol,\n username: this.username,\n password: this.password,\n host: this.host,\n hostname: this.hostname,\n port: this.port,\n pathname: this.pathname,\n search: this.search,\n searchParams: this.searchParams,\n hash: this.hash\n };\n }\n clone() {\n return new NextURL(String(this), this[Internal].options);\n }\n}\n\n//# sourceMappingURL=next-url.js.map","import { HeadersAdapter } from '../web/spec-extension/adapters/headers';\nimport { PRERENDER_REVALIDATE_HEADER, PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER } from '../../lib/constants';\nimport { getTracer } from '../lib/trace/tracer';\nimport { NodeSpan } from '../lib/trace/constants';\nexport function wrapApiHandler(page, handler) {\n return (...args)=>{\n getTracer().setRootSpanAttribute('next.route', page);\n // Call API route method\n return getTracer().trace(NodeSpan.runHandler, {\n spanName: `executing api route (pages) ${page}`\n }, ()=>handler(...args));\n };\n}\n/**\n *\n * @param res response object\n * @param statusCode `HTTP` status code of response\n */ export function sendStatusCode(res, statusCode) {\n res.statusCode = statusCode;\n return res;\n}\n/**\n *\n * @param res response object\n * @param [statusOrUrl] `HTTP` status code of redirect\n * @param url URL of redirect\n */ export function redirect(res, statusOrUrl, url) {\n if (typeof statusOrUrl === 'string') {\n url = statusOrUrl;\n statusOrUrl = 307;\n }\n if (typeof statusOrUrl !== 'number' || typeof url !== 'string') {\n throw Object.defineProperty(new Error(`Invalid redirect arguments. Please use a single argument URL, e.g. res.redirect('/destination') or use a status code and URL, e.g. res.redirect(307, '/destination').`), \"__NEXT_ERROR_CODE\", {\n value: \"E389\",\n enumerable: false,\n configurable: true\n });\n }\n res.writeHead(statusOrUrl, {\n Location: url\n });\n res.write(url);\n res.end();\n return res;\n}\nexport function checkIsOnDemandRevalidate(req, previewProps) {\n const headers = HeadersAdapter.from(req.headers);\n const previewModeId = headers.get(PRERENDER_REVALIDATE_HEADER);\n const isOnDemandRevalidate = previewModeId === previewProps.previewModeId;\n const revalidateOnlyGenerated = headers.has(PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER);\n return {\n isOnDemandRevalidate,\n revalidateOnlyGenerated\n };\n}\nexport const COOKIE_NAME_PRERENDER_BYPASS = `__prerender_bypass`;\nexport const COOKIE_NAME_PRERENDER_DATA = `__next_preview_data`;\nexport const RESPONSE_LIMIT_DEFAULT = 4 * 1024 * 1024;\nexport const SYMBOL_PREVIEW_DATA = Symbol(COOKIE_NAME_PRERENDER_DATA);\nexport const SYMBOL_CLEARED_COOKIES = Symbol(COOKIE_NAME_PRERENDER_BYPASS);\nexport function clearPreviewData(res, options = {}) {\n if (SYMBOL_CLEARED_COOKIES in res) {\n return res;\n }\n const { serialize } = require('next/dist/compiled/cookie');\n const previous = res.getHeader('Set-Cookie');\n res.setHeader(`Set-Cookie`, [\n ...typeof previous === 'string' ? [\n previous\n ] : Array.isArray(previous) ? previous : [],\n serialize(COOKIE_NAME_PRERENDER_BYPASS, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...options.path !== undefined ? {\n path: options.path\n } : undefined\n }),\n serialize(COOKIE_NAME_PRERENDER_DATA, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...options.path !== undefined ? {\n path: options.path\n } : undefined\n })\n ]);\n Object.defineProperty(res, SYMBOL_CLEARED_COOKIES, {\n value: true,\n enumerable: false\n });\n return res;\n}\n/**\n * Custom error class\n */ export class ApiError extends Error {\n constructor(statusCode, message){\n super(message);\n this.statusCode = statusCode;\n }\n}\n/**\n * Sends error in `response`\n * @param res response object\n * @param statusCode of response\n * @param message of response\n */ export function sendError(res, statusCode, message) {\n res.statusCode = statusCode;\n res.statusMessage = message;\n res.end(message);\n}\n/**\n * Execute getter function only if its needed\n * @param LazyProps `req` and `params` for lazyProp\n * @param prop name of property\n * @param getter function to get data\n */ export function setLazyProp({ req }, prop, getter) {\n const opts = {\n configurable: true,\n enumerable: true\n };\n const optsReset = {\n ...opts,\n writable: true\n };\n Object.defineProperty(req, prop, {\n ...opts,\n get: ()=>{\n const value = getter();\n // we set the property on the object to avoid recalculating it\n Object.defineProperty(req, prop, {\n ...optsReset,\n value\n });\n return value;\n },\n set: (value)=>{\n Object.defineProperty(req, prop, {\n ...optsReset,\n value\n });\n }\n });\n}\n\n//# sourceMappingURL=index.js.map","import { getRequestMeta } from '../../../request-meta';\nimport { fromNodeOutgoingHttpHeaders } from '../../utils';\nimport { NextRequest } from '../request';\nimport { isNodeNextRequest, isWebNextRequest } from '../../../base-http/helpers';\nexport const ResponseAbortedName = 'ResponseAborted';\nexport class ResponseAborted extends Error {\n constructor(...args){\n super(...args), this.name = ResponseAbortedName;\n }\n}\n/**\n * Creates an AbortController tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * If the `close` event is fired before the `finish` event, then we'll send the\n * `abort` signal.\n */ export function createAbortController(response) {\n const controller = new AbortController();\n // If `finish` fires first, then `res.end()` has been called and the close is\n // just us finishing the stream on our side. If `close` fires first, then we\n // know the client disconnected before we finished.\n response.once('close', ()=>{\n if (response.writableFinished) return;\n controller.abort(new ResponseAborted());\n });\n return controller;\n}\n/**\n * Creates an AbortSignal tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * This cannot be done with the request (IncomingMessage or Readable) because\n * the `abort` event will not fire if to data has been fully read (because that\n * will \"close\" the readable stream and nothing fires after that).\n */ export function signalFromNodeResponse(response) {\n const { errored, destroyed } = response;\n if (errored || destroyed) {\n return AbortSignal.abort(errored ?? new ResponseAborted());\n }\n const { signal } = createAbortController(response);\n return signal;\n}\nexport class NextRequestAdapter {\n static fromBaseNextRequest(request, signal) {\n if (// The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME === 'edge' && isWebNextRequest(request)) {\n return NextRequestAdapter.fromWebNextRequest(request);\n } else if (// The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME !== 'edge' && isNodeNextRequest(request)) {\n return NextRequestAdapter.fromNodeNextRequest(request, signal);\n } else {\n throw Object.defineProperty(new Error('Invariant: Unsupported NextRequest type'), \"__NEXT_ERROR_CODE\", {\n value: \"E345\",\n enumerable: false,\n configurable: true\n });\n }\n }\n static fromNodeNextRequest(request, signal) {\n // HEAD and GET requests can not have a body.\n let body = null;\n if (request.method !== 'GET' && request.method !== 'HEAD' && request.body) {\n // @ts-expect-error - this is handled by undici, when streams/web land use it instead\n body = request.body;\n }\n let url;\n if (request.url.startsWith('http')) {\n url = new URL(request.url);\n } else {\n // Grab the full URL from the request metadata.\n const base = getRequestMeta(request, 'initURL');\n if (!base || !base.startsWith('http')) {\n // Because the URL construction relies on the fact that the URL provided\n // is absolute, we need to provide a base URL. We can't use the request\n // URL because it's relative, so we use a dummy URL instead.\n url = new URL(request.url, 'http://n');\n } else {\n url = new URL(request.url, base);\n }\n }\n return new NextRequest(url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal,\n // geo\n // ip\n // nextConfig\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...signal.aborted ? {} : {\n body\n }\n });\n }\n static fromWebNextRequest(request) {\n // HEAD and GET requests can not have a body.\n let body = null;\n if (request.method !== 'GET' && request.method !== 'HEAD') {\n body = request.body;\n }\n return new NextRequest(request.url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal: request.request.signal,\n // geo\n // ip\n // nextConfig\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...request.request.signal.aborted ? {} : {\n body\n }\n });\n }\n}\n\n//# sourceMappingURL=next-request.js.map","import { CachedRouteKind, IncrementalCacheKind } from './types';\nimport RenderResult from '../render-result';\nimport { RouteKind } from '../route-kind';\nimport { HTML_CONTENT_TYPE_HEADER } from '../../lib/constants';\nexport async function fromResponseCacheEntry(cacheEntry) {\n var _cacheEntry_value, _cacheEntry_value1;\n return {\n ...cacheEntry,\n value: ((_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) === CachedRouteKind.PAGES ? {\n kind: CachedRouteKind.PAGES,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n pageData: cacheEntry.value.pageData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status\n } : ((_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind) === CachedRouteKind.APP_PAGE ? {\n kind: CachedRouteKind.APP_PAGE,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n postponed: cacheEntry.value.postponed,\n rscData: cacheEntry.value.rscData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status,\n segmentData: cacheEntry.value.segmentData\n } : cacheEntry.value\n };\n}\nexport async function toResponseCacheEntry(response) {\n var _response_value, _response_value1;\n if (!response) return null;\n return {\n isMiss: response.isMiss,\n isStale: response.isStale,\n cacheControl: response.cacheControl,\n isFallback: response.isFallback,\n value: ((_response_value = response.value) == null ? void 0 : _response_value.kind) === CachedRouteKind.PAGES ? {\n kind: CachedRouteKind.PAGES,\n html: RenderResult.fromStatic(response.value.html, HTML_CONTENT_TYPE_HEADER),\n pageData: response.value.pageData,\n headers: response.value.headers,\n status: response.value.status\n } : ((_response_value1 = response.value) == null ? void 0 : _response_value1.kind) === CachedRouteKind.APP_PAGE ? {\n kind: CachedRouteKind.APP_PAGE,\n html: RenderResult.fromStatic(response.value.html, HTML_CONTENT_TYPE_HEADER),\n rscData: response.value.rscData,\n headers: response.value.headers,\n status: response.value.status,\n postponed: response.value.postponed,\n segmentData: response.value.segmentData\n } : response.value\n };\n}\nexport function routeKindToIncrementalCacheKind(routeKind) {\n switch(routeKind){\n case RouteKind.PAGES:\n return IncrementalCacheKind.PAGES;\n case RouteKind.APP_PAGE:\n return IncrementalCacheKind.APP_PAGE;\n case RouteKind.IMAGE:\n return IncrementalCacheKind.IMAGE;\n case RouteKind.APP_ROUTE:\n return IncrementalCacheKind.APP_ROUTE;\n case RouteKind.PAGES_API:\n // Pages Router API routes are not cached in the incremental cache.\n throw Object.defineProperty(new Error(`Unexpected route kind ${routeKind}`), \"__NEXT_ERROR_CODE\", {\n value: \"E64\",\n enumerable: false,\n configurable: true\n });\n default:\n return routeKind;\n }\n}\n\n//# sourceMappingURL=utils.js.map","import { NextURL } from '../next-url';\nimport { toNodeOutgoingHttpHeaders, validateURL } from '../utils';\nimport { RemovedUAError, RemovedPageError } from '../error';\nimport { RequestCookies } from './cookies';\nexport const INTERNALS = Symbol('internal request');\n/**\n * This class extends the [Web `Request` API](https://developer.mozilla.org/docs/Web/API/Request) with additional convenience methods.\n *\n * Read more: [Next.js Docs: `NextRequest`](https://nextjs.org/docs/app/api-reference/functions/next-request)\n */ export class NextRequest extends Request {\n constructor(input, init = {}){\n const url = typeof input !== 'string' && 'url' in input ? input.url : String(input);\n validateURL(url);\n // node Request instance requires duplex option when a body\n // is present or it errors, we don't handle this for\n // Request being passed in since it would have already\n // errored if this wasn't configured\n if (process.env.NEXT_RUNTIME !== 'edge') {\n if (init.body && init.duplex !== 'half') {\n init.duplex = 'half';\n }\n }\n if (input instanceof Request) super(input, init);\n else super(url, init);\n const nextUrl = new NextURL(url, {\n headers: toNodeOutgoingHttpHeaders(this.headers),\n nextConfig: init.nextConfig\n });\n this[INTERNALS] = {\n cookies: new RequestCookies(this.headers),\n nextUrl,\n url: process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE ? url : nextUrl.toString()\n };\n }\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n cookies: this.cookies,\n nextUrl: this.nextUrl,\n url: this.url,\n // rest of props come from Request\n bodyUsed: this.bodyUsed,\n cache: this.cache,\n credentials: this.credentials,\n destination: this.destination,\n headers: Object.fromEntries(this.headers),\n integrity: this.integrity,\n keepalive: this.keepalive,\n method: this.method,\n mode: this.mode,\n redirect: this.redirect,\n referrer: this.referrer,\n referrerPolicy: this.referrerPolicy,\n signal: this.signal\n };\n }\n get cookies() {\n return this[INTERNALS].cookies;\n }\n get nextUrl() {\n return this[INTERNALS].nextUrl;\n }\n /**\n * @deprecated\n * `page` has been deprecated in favour of `URLPattern`.\n * Read more: https://nextjs.org/docs/messages/middleware-request-page\n */ get page() {\n throw new RemovedPageError();\n }\n /**\n * @deprecated\n * `ua` has been removed in favour of \\`userAgent\\` function.\n * Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n */ get ua() {\n throw new RemovedUAError();\n }\n get url() {\n return this[INTERNALS].url;\n }\n}\n\n//# sourceMappingURL=request.js.map","import { removeTrailingSlash } from './remove-trailing-slash';\nimport { addPathPrefix } from './add-path-prefix';\nimport { addPathSuffix } from './add-path-suffix';\nimport { addLocale } from './add-locale';\nexport function formatNextPathnameInfo(info) {\n let pathname = addLocale(info.pathname, info.locale, info.buildId ? undefined : info.defaultLocale, info.ignorePrefix);\n if (info.buildId || !info.trailingSlash) {\n pathname = removeTrailingSlash(pathname);\n }\n if (info.buildId) {\n pathname = addPathSuffix(addPathPrefix(pathname, `/_next/data/${info.buildId}`), info.pathname === '/' ? 'index.json' : '.json');\n }\n pathname = addPathPrefix(pathname, info.basePath);\n return !info.buildId && info.trailingSlash ? !pathname.endsWith('/') ? addPathSuffix(pathname, '/') : pathname : removeTrailingSlash(pathname);\n}\n\n//# sourceMappingURL=format-next-pathname-info.js.map","/**\n * Given a path this function will find the pathname, query and hash and return\n * them. This is useful to parse full paths on the client side.\n * @param path A path to parse e.g. /foo/bar?id=1#hash\n */ export function parsePath(path) {\n const hashIndex = path.indexOf('#');\n const queryIndex = path.indexOf('?');\n const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex);\n if (hasQuery || hashIndex > -1) {\n return {\n pathname: path.substring(0, hasQuery ? queryIndex : hashIndex),\n query: hasQuery ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined) : '',\n hash: hashIndex > -1 ? path.slice(hashIndex) : ''\n };\n }\n return {\n pathname: path,\n query: '',\n hash: ''\n };\n}\n\n//# sourceMappingURL=parse-path.js.map","import { DetachedPromise } from './detached-promise';\n/**\n * A wrapper for a function that will only allow one call to the function to\n * execute at a time.\n */ export class Batcher {\n constructor(cacheKeyFn, /**\n * A function that will be called to schedule the wrapped function to be\n * executed. This defaults to a function that will execute the function\n * immediately.\n */ schedulerFn = (fn)=>fn()){\n this.cacheKeyFn = cacheKeyFn;\n this.schedulerFn = schedulerFn;\n this.pending = new Map();\n }\n static create(options) {\n return new Batcher(options == null ? void 0 : options.cacheKeyFn, options == null ? void 0 : options.schedulerFn);\n }\n /**\n * Wraps a function in a promise that will be resolved or rejected only once\n * for a given key. This will allow multiple calls to the function to be\n * made, but only one will be executed at a time. The result of the first\n * call will be returned to all callers.\n *\n * @param key the key to use for the cache\n * @param fn the function to wrap\n * @returns a promise that resolves to the result of the function\n */ async batch(key, fn) {\n const cacheKey = this.cacheKeyFn ? await this.cacheKeyFn(key) : key;\n if (cacheKey === null) {\n return fn({\n resolve: (value)=>Promise.resolve(value),\n key\n });\n }\n const pending = this.pending.get(cacheKey);\n if (pending) return pending;\n const { promise, resolve, reject } = new DetachedPromise();\n this.pending.set(cacheKey, promise);\n this.schedulerFn(async ()=>{\n try {\n const result = await fn({\n resolve,\n key\n });\n // Resolving a promise multiple times is a no-op, so we can safely\n // resolve all pending promises with the same result.\n resolve(result);\n } catch (err) {\n reject(err);\n } finally{\n this.pending.delete(cacheKey);\n }\n });\n return promise;\n }\n}\n\n//# sourceMappingURL=batcher.js.map","import { parsePath } from './parse-path';\n/**\n * Adds the provided prefix to the given path. It first ensures that the path\n * is indeed starting with a slash.\n */ export function addPathPrefix(path, prefix) {\n if (!path.startsWith('/') || !prefix) {\n return path;\n }\n const { pathname, query, hash } = parsePath(path);\n return `${prefix}${pathname}${query}${hash}`;\n}\n\n//# sourceMappingURL=add-path-prefix.js.map","import { InvariantError } from '../../shared/lib/invariant-error';\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths';\nimport { pathHasPrefix } from '../../shared/lib/router/utils/path-has-prefix';\nimport { removePathPrefix } from '../../shared/lib/router/utils/remove-path-prefix';\nimport { workAsyncStorage } from './work-async-storage.external';\n// This is a global singleton that is, among other things, also used to\n// encode/decode bound args of server function closures. This can't be using a\n// AsyncLocalStorage as it might happen at the module level.\nconst MANIFESTS_SINGLETON = Symbol.for('next.server.manifests');\nconst globalThisWithManifests = globalThis;\nfunction createProxiedClientReferenceManifest(clientReferenceManifestsPerRoute) {\n const createMappingProxy = (prop)=>{\n return new Proxy({}, {\n get (_, id) {\n const workStore = workAsyncStorage.getStore();\n if (workStore) {\n const currentManifest = clientReferenceManifestsPerRoute.get(workStore.route);\n if (currentManifest == null ? void 0 : currentManifest[prop][id]) {\n return currentManifest[prop][id];\n }\n // In development, we also check all other manifests to see if the\n // module exists there. This is to support a scenario where React's\n // I/O tracking (dev-only) creates a connection from one page to\n // another through an emitted async I/O node that references client\n // components from the other page, e.g. in owner props.\n // TODO: Maybe we need to add a `debugBundlerConfig` option to React\n // to avoid this workaround. The current workaround has the\n // disadvantage that one might accidentally or intentionally share\n // client references across pages (e.g. by storing them in a global\n // variable), which would then only be caught in production.\n if (process.env.NODE_ENV !== 'production') {\n for (const [route, manifest] of clientReferenceManifestsPerRoute){\n if (route === workStore.route) {\n continue;\n }\n const entry = manifest[prop][id];\n if (entry !== undefined) {\n return entry;\n }\n }\n }\n } else {\n // If there's no work store defined, we can assume that a client\n // reference manifest is needed during module evaluation, e.g. to\n // create a server function using a higher-order function. This\n // might also use client components which need to be serialized by\n // Flight, and therefore client references need to be resolvable. In\n // that case we search all page manifests to find the module.\n for (const manifest of clientReferenceManifestsPerRoute.values()){\n const entry = manifest[prop][id];\n if (entry !== undefined) {\n return entry;\n }\n }\n }\n return undefined;\n }\n });\n };\n const mappingProxies = new Map();\n return new Proxy({}, {\n get (_, prop) {\n const workStore = workAsyncStorage.getStore();\n switch(prop){\n case 'moduleLoading':\n case 'entryCSSFiles':\n case 'entryJSFiles':\n {\n if (!workStore) {\n throw Object.defineProperty(new InvariantError(`Cannot access \"${prop}\" without a work store.`), \"__NEXT_ERROR_CODE\", {\n value: \"E952\",\n enumerable: false,\n configurable: true\n });\n }\n const currentManifest = clientReferenceManifestsPerRoute.get(workStore.route);\n if (!currentManifest) {\n throw Object.defineProperty(new InvariantError(`The client reference manifest for route \"${workStore.route}\" does not exist.`), \"__NEXT_ERROR_CODE\", {\n value: \"E951\",\n enumerable: false,\n configurable: true\n });\n }\n return currentManifest[prop];\n }\n case 'clientModules':\n case 'rscModuleMapping':\n case 'edgeRscModuleMapping':\n case 'ssrModuleMapping':\n case 'edgeSSRModuleMapping':\n {\n let proxy = mappingProxies.get(prop);\n if (!proxy) {\n proxy = createMappingProxy(prop);\n mappingProxies.set(prop, proxy);\n }\n return proxy;\n }\n default:\n {\n throw Object.defineProperty(new InvariantError(`This is a proxied client reference manifest. The property \"${String(prop)}\" is not handled.`), \"__NEXT_ERROR_CODE\", {\n value: \"E953\",\n enumerable: false,\n configurable: true\n });\n }\n }\n }\n });\n}\n/**\n * This function creates a Flight-acceptable server module map proxy from our\n * Server Reference Manifest similar to our client module map. This is because\n * our manifest contains a lot of internal Next.js data that are relevant to the\n * runtime, workers, etc. that React doesn't need to know.\n */ function createServerModuleMap() {\n return new Proxy({}, {\n get: (_, id)=>{\n var _getServerActionsManifest__id, _getServerActionsManifest_;\n const workers = (_getServerActionsManifest_ = getServerActionsManifest()[process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node']) == null ? void 0 : (_getServerActionsManifest__id = _getServerActionsManifest_[id]) == null ? void 0 : _getServerActionsManifest__id.workers;\n if (!workers) {\n return undefined;\n }\n const workStore = workAsyncStorage.getStore();\n let workerEntry;\n if (workStore) {\n workerEntry = workers[normalizeWorkerPageName(workStore.page)];\n } else {\n // If there's no work store defined, we can assume that a server\n // module map is needed during module evaluation, e.g. to create a\n // server action using a higher-order function. Therefore it should be\n // safe to return any entry from the manifest that matches the action\n // ID. They all refer to the same module ID, which must also exist in\n // the current page bundle. TODO: This is currently not guaranteed in\n // Turbopack, and needs to be fixed.\n workerEntry = Object.values(workers).at(0);\n }\n if (!workerEntry) {\n return undefined;\n }\n const { moduleId, async } = workerEntry;\n return {\n id: moduleId,\n name: id,\n chunks: [],\n async\n };\n }\n });\n}\n/**\n * The flight entry loader keys actions by bundlePath. bundlePath corresponds\n * with the relative path (including 'app') to the page entrypoint.\n */ function normalizeWorkerPageName(pageName) {\n if (pathHasPrefix(pageName, 'app')) {\n return pageName;\n }\n return 'app' + pageName;\n}\n/**\n * Converts a bundlePath (relative path to the entrypoint) to a routable page\n * name.\n */ function denormalizeWorkerPageName(bundlePath) {\n return normalizeAppPath(removePathPrefix(bundlePath, 'app'));\n}\n/**\n * Checks if the requested action has a worker for the current page.\n * If not, it returns the first worker that has a handler for the action.\n */ export function selectWorkerForForwarding(actionId, pageName) {\n var _serverActionsManifest__actionId;\n const serverActionsManifest = getServerActionsManifest();\n const workers = (_serverActionsManifest__actionId = serverActionsManifest[process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node'][actionId]) == null ? void 0 : _serverActionsManifest__actionId.workers;\n // There are no workers to handle this action, nothing to forward to.\n if (!workers) {\n return;\n }\n // If there is an entry for the current page, we don't need to forward.\n if (workers[normalizeWorkerPageName(pageName)]) {\n return;\n }\n // Otherwise, grab the first worker that has a handler for this action id.\n return denormalizeWorkerPageName(Object.keys(workers)[0]);\n}\nexport function setManifestsSingleton({ page, clientReferenceManifest, serverActionsManifest: rawServerActionsManifest }) {\n const existingSingleton = globalThisWithManifests[MANIFESTS_SINGLETON];\n const serverActionsManifest = {\n encryptionKey: rawServerActionsManifest.encryptionKey,\n // Use null-prototypes for the action objects to prevent prototype pollution\n // from affecting action ID lookups.\n node: Object.assign(Object.create(null), rawServerActionsManifest.node),\n edge: Object.assign(Object.create(null), rawServerActionsManifest.edge)\n };\n if (existingSingleton) {\n existingSingleton.clientReferenceManifestsPerRoute.set(normalizeAppPath(page), clientReferenceManifest);\n existingSingleton.serverActionsManifest = serverActionsManifest;\n } else {\n const clientReferenceManifestsPerRoute = new Map([\n [\n normalizeAppPath(page),\n clientReferenceManifest\n ]\n ]);\n const proxiedClientReferenceManifest = createProxiedClientReferenceManifest(clientReferenceManifestsPerRoute);\n globalThisWithManifests[MANIFESTS_SINGLETON] = {\n clientReferenceManifestsPerRoute,\n proxiedClientReferenceManifest,\n serverActionsManifest,\n serverModuleMap: createServerModuleMap()\n };\n }\n}\nfunction getManifestsSingleton() {\n const manifestSingleton = globalThisWithManifests[MANIFESTS_SINGLETON];\n if (!manifestSingleton) {\n throw Object.defineProperty(new InvariantError('The manifests singleton was not initialized.'), \"__NEXT_ERROR_CODE\", {\n value: \"E950\",\n enumerable: false,\n configurable: true\n });\n }\n return manifestSingleton;\n}\nexport function getClientReferenceManifest() {\n return getManifestsSingleton().proxiedClientReferenceManifest;\n}\nexport function getServerActionsManifest() {\n return getManifestsSingleton().serverActionsManifest;\n}\nexport function getServerModuleMap() {\n return getManifestsSingleton().serverModuleMap;\n}\n\n//# sourceMappingURL=manifests-singleton.js.map","import { Batcher } from '../../lib/batcher';\nimport { LRUCache } from '../lib/lru-cache';\nimport { warnOnce } from '../../build/output/log';\nimport { scheduleOnNextTick } from '../../lib/scheduler';\nimport { fromResponseCacheEntry, routeKindToIncrementalCacheKind, toResponseCacheEntry } from './utils';\n/**\n * Parses an environment variable as a positive integer, returning the fallback\n * if the value is missing, not a number, or not positive.\n */ function parsePositiveInt(envValue, fallback) {\n if (!envValue) return fallback;\n const parsed = parseInt(envValue, 10);\n return Number.isFinite(parsed) && parsed > 0 ? parsed : fallback;\n}\n/**\n * Default TTL (in milliseconds) for minimal mode response cache entries.\n * Used for cache hit validation as a fallback for providers that don't\n * send the x-invocation-id header yet.\n *\n * 10 seconds chosen because:\n * - Long enough to dedupe rapid successive requests (e.g., page + data)\n * - Short enough to not serve stale data across unrelated requests\n *\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_TTL` environment variable.\n */ const DEFAULT_TTL_MS = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL, 10000);\n/**\n * Default maximum number of entries in the response cache.\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE` environment variable.\n */ const DEFAULT_MAX_SIZE = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE, 150);\n/**\n * Separator used in compound cache keys to join pathname and invocationID.\n * Using null byte (\\0) since it cannot appear in valid URL paths or UUIDs.\n */ const KEY_SEPARATOR = '\\0';\n/**\n * Sentinel value used for TTL-based cache entries (when invocationID is undefined).\n * Chosen to be a clearly reserved marker for internal cache keys.\n */ const TTL_SENTINEL = '__ttl_sentinel__';\n/**\n * Creates a compound cache key from pathname and invocationID.\n */ function createCacheKey(pathname, invocationID) {\n return `${pathname}${KEY_SEPARATOR}${invocationID ?? TTL_SENTINEL}`;\n}\n/**\n * Extracts the invocationID from a compound cache key.\n * Returns undefined if the key used TTL_SENTINEL.\n */ function extractInvocationID(compoundKey) {\n const separatorIndex = compoundKey.lastIndexOf(KEY_SEPARATOR);\n if (separatorIndex === -1) return undefined;\n const invocationID = compoundKey.slice(separatorIndex + 1);\n return invocationID === TTL_SENTINEL ? undefined : invocationID;\n}\nexport * from './types';\nexport default class ResponseCache {\n constructor(minimal_mode, maxSize = DEFAULT_MAX_SIZE, ttl = DEFAULT_TTL_MS){\n this.getBatcher = Batcher.create({\n // Ensure on-demand revalidate doesn't block normal requests, it should be\n // safe to run an on-demand revalidate for the same key as a normal request.\n cacheKeyFn: ({ key, isOnDemandRevalidate })=>`${key}-${isOnDemandRevalidate ? '1' : '0'}`,\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick\n });\n this.revalidateBatcher = Batcher.create({\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick\n });\n /**\n * Set of invocation IDs that have had cache entries evicted.\n * Used to detect when the cache size may be too small.\n * Bounded to prevent memory growth.\n */ this.evictedInvocationIDs = new Set();\n this.minimal_mode = minimal_mode;\n this.maxSize = maxSize;\n this.ttl = ttl;\n // Create the LRU cache with eviction tracking\n this.cache = new LRUCache(maxSize, undefined, (compoundKey)=>{\n const invocationID = extractInvocationID(compoundKey);\n if (invocationID) {\n // Bound to 100 entries to prevent unbounded memory growth.\n // FIFO eviction is acceptable here because:\n // 1. Invocations are short-lived (single request lifecycle), so older\n // invocations are unlikely to still be active after 100 newer ones\n // 2. This warning mechanism is best-effort for developer guidance—\n // missing occasional eviction warnings doesn't affect correctness\n // 3. If a long-running invocation is somehow evicted and then has\n // another cache entry evicted, it will simply be re-added\n if (this.evictedInvocationIDs.size >= 100) {\n const first = this.evictedInvocationIDs.values().next().value;\n if (first) this.evictedInvocationIDs.delete(first);\n }\n this.evictedInvocationIDs.add(invocationID);\n }\n });\n }\n /**\n * Gets the response cache entry for the given key.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @returns The response cache entry.\n */ async get(key, responseGenerator, context) {\n // If there is no key for the cache, we can't possibly look this up in the\n // cache so just return the result of the response generator.\n if (!key) {\n return responseGenerator({\n hasResolved: false,\n previousCacheEntry: null\n });\n }\n // Check minimal mode cache before doing any other work.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID);\n const cachedItem = this.cache.get(cacheKey);\n if (cachedItem) {\n // With invocationID: exact match found - always a hit\n // With TTL mode: must check expiration\n if (context.invocationID !== undefined) {\n return toResponseCacheEntry(cachedItem.entry);\n }\n // TTL mode: check expiration\n const now = Date.now();\n if (cachedItem.expiresAt > now) {\n return toResponseCacheEntry(cachedItem.entry);\n }\n // TTL expired - clean up\n this.cache.remove(cacheKey);\n }\n // Warn if this invocation had entries evicted - indicates cache may be too small.\n if (context.invocationID && this.evictedInvocationIDs.has(context.invocationID)) {\n warnOnce(`Response cache entry was evicted for invocation ${context.invocationID}. ` + `Consider increasing NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE (current: ${this.maxSize}).`);\n }\n }\n const { incrementalCache, isOnDemandRevalidate = false, isFallback = false, isRoutePPREnabled = false, isPrefetch = false, waitUntil, routeKind, invocationID } = context;\n const response = await this.getBatcher.batch({\n key,\n isOnDemandRevalidate\n }, ({ resolve })=>{\n const promise = this.handleGet(key, responseGenerator, {\n incrementalCache,\n isOnDemandRevalidate,\n isFallback,\n isRoutePPREnabled,\n isPrefetch,\n routeKind,\n invocationID\n }, resolve);\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise);\n return promise;\n });\n return toResponseCacheEntry(response);\n }\n /**\n * Handles the get request for the response cache.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @param resolve - The resolve function to use to resolve the response cache entry.\n * @returns The response cache entry.\n */ async handleGet(key, responseGenerator, context, resolve) {\n let previousIncrementalCacheEntry = null;\n let resolved = false;\n try {\n // Get the previous cache entry if not in minimal mode\n previousIncrementalCacheEntry = !this.minimal_mode ? await context.incrementalCache.get(key, {\n kind: routeKindToIncrementalCacheKind(context.routeKind),\n isRoutePPREnabled: context.isRoutePPREnabled,\n isFallback: context.isFallback\n }) : null;\n if (previousIncrementalCacheEntry && !context.isOnDemandRevalidate) {\n resolve(previousIncrementalCacheEntry);\n resolved = true;\n if (!previousIncrementalCacheEntry.isStale || context.isPrefetch) {\n // The cached value is still valid, so we don't need to update it yet.\n return previousIncrementalCacheEntry;\n }\n }\n // Revalidate the cache entry\n const incrementalResponseCacheEntry = await this.revalidate(key, context.incrementalCache, context.isRoutePPREnabled, context.isFallback, responseGenerator, previousIncrementalCacheEntry, previousIncrementalCacheEntry !== null && !context.isOnDemandRevalidate, undefined, context.invocationID);\n // Handle null response\n if (!incrementalResponseCacheEntry) {\n // Remove the cache item if it was set so we don't use it again.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID);\n this.cache.remove(cacheKey);\n }\n return null;\n }\n // Resolve for on-demand revalidation or if not already resolved\n if (context.isOnDemandRevalidate && !resolved) {\n return incrementalResponseCacheEntry;\n }\n return incrementalResponseCacheEntry;\n } catch (err) {\n // If we've already resolved the cache entry, we can't reject as we\n // already resolved the cache entry so log the error here.\n if (resolved) {\n console.error(err);\n return null;\n }\n throw err;\n }\n }\n /**\n * Revalidates the cache entry for the given key.\n *\n * @param key - The key to revalidate the cache entry for.\n * @param incrementalCache - The incremental cache to use to revalidate the cache entry.\n * @param isRoutePPREnabled - Whether the route is PPR enabled.\n * @param isFallback - Whether the route is a fallback.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param previousIncrementalCacheEntry - The previous cache entry to use to revalidate the cache entry.\n * @param hasResolved - Whether the response has been resolved.\n * @param waitUntil - Optional function to register background work.\n * @param invocationID - The invocation ID for cache key scoping.\n * @returns The revalidated cache entry.\n */ async revalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, waitUntil, invocationID) {\n return this.revalidateBatcher.batch(key, ()=>{\n const promise = this.handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID);\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise);\n return promise;\n });\n }\n async handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID) {\n try {\n // Generate the response cache entry using the response generator.\n const responseCacheEntry = await responseGenerator({\n hasResolved,\n previousCacheEntry: previousIncrementalCacheEntry,\n isRevalidating: true\n });\n if (!responseCacheEntry) {\n return null;\n }\n // Convert the response cache entry to an incremental response cache entry.\n const incrementalResponseCacheEntry = await fromResponseCacheEntry({\n ...responseCacheEntry,\n isMiss: !previousIncrementalCacheEntry\n });\n // We want to persist the result only if it has a cache control value\n // defined.\n if (incrementalResponseCacheEntry.cacheControl) {\n if (this.minimal_mode) {\n // Set TTL expiration for cache hit validation. Entries are validated\n // by invocationID when available, with TTL as a fallback for providers\n // that don't send x-invocation-id. Memory is managed by LRU eviction.\n const cacheKey = createCacheKey(key, invocationID);\n this.cache.set(cacheKey, {\n entry: incrementalResponseCacheEntry,\n expiresAt: Date.now() + this.ttl\n });\n } else {\n await incrementalCache.set(key, incrementalResponseCacheEntry.value, {\n cacheControl: incrementalResponseCacheEntry.cacheControl,\n isRoutePPREnabled,\n isFallback\n });\n }\n }\n return incrementalResponseCacheEntry;\n } catch (err) {\n // When a path is erroring we automatically re-set the existing cache\n // with new revalidate and expire times to prevent non-stop retrying.\n if (previousIncrementalCacheEntry == null ? void 0 : previousIncrementalCacheEntry.cacheControl) {\n const revalidate = Math.min(Math.max(previousIncrementalCacheEntry.cacheControl.revalidate || 3, 3), 30);\n const expire = previousIncrementalCacheEntry.cacheControl.expire === undefined ? undefined : Math.max(revalidate + 3, previousIncrementalCacheEntry.cacheControl.expire);\n await incrementalCache.set(key, previousIncrementalCacheEntry.value, {\n cacheControl: {\n revalidate: revalidate,\n expire: expire\n },\n isRoutePPREnabled,\n isFallback\n });\n }\n // We haven't resolved yet, so let's throw to indicate an error.\n throw err;\n }\n }\n}\n\n//# sourceMappingURL=index.js.map","/**\n * Based on https://github.com/facebook/react/blob/d4e78c42a94be027b4dc7ed2659a5fddfbf9bd4e/packages/react/src/ReactFetch.js\n */ import * as React from 'react';\nimport { cloneResponse } from './clone-response';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nconst simpleCacheKey = '[\"GET\",[],null,\"follow\",null,null,null,null]' // generateCacheKey(new Request('https://blank'));\n;\n// Headers that should not affect deduplication\n// traceparent and tracestate are used for distributed tracing and should not affect cache keys\nconst headersToExcludeInCacheKey = new Set([\n 'traceparent',\n 'tracestate'\n]);\nfunction generateCacheKey(request) {\n // We pick the fields that goes into the key used to dedupe requests.\n // We don't include the `cache` field, because we end up using whatever\n // caching resulted from the first request.\n // Notably we currently don't consider non-standard (or future) options.\n // This might not be safe. TODO: warn for non-standard extensions differing.\n // IF YOU CHANGE THIS UPDATE THE simpleCacheKey ABOVE.\n const filteredHeaders = Array.from(request.headers.entries()).filter(([key])=>!headersToExcludeInCacheKey.has(key.toLowerCase()));\n return JSON.stringify([\n request.method,\n filteredHeaders,\n request.mode,\n request.redirect,\n request.credentials,\n request.referrer,\n request.referrerPolicy,\n request.integrity\n ]);\n}\nexport function createDedupeFetch(originalFetch) {\n const getCacheEntries = React.cache(// eslint-disable-next-line @typescript-eslint/no-unused-vars -- url is the cache key\n (url)=>[]);\n return function dedupeFetch(resource, options) {\n if (options && options.signal) {\n // If we're passed a signal, then we assume that\n // someone else controls the lifetime of this object and opts out of\n // caching. It's effectively the opt-out mechanism.\n // Ideally we should be able to check this on the Request but\n // it always gets initialized with its own signal so we don't\n // know if it's supposed to override - unless we also override the\n // Request constructor.\n return originalFetch(resource, options);\n }\n // Normalize the Request\n let url;\n let cacheKey;\n if (typeof resource === 'string' && !options) {\n // Fast path.\n cacheKey = simpleCacheKey;\n url = resource;\n } else {\n // Normalize the request.\n // if resource is not a string or a URL (its an instance of Request)\n // then do not instantiate a new Request but instead\n // reuse the request as to not disturb the body in the event it's a ReadableStream.\n const request = typeof resource === 'string' || resource instanceof URL ? new Request(resource, options) : resource;\n if (request.method !== 'GET' && request.method !== 'HEAD' || request.keepalive) {\n // We currently don't dedupe requests that might have side-effects. Those\n // have to be explicitly cached. We assume that the request doesn't have a\n // body if it's GET or HEAD.\n // keepalive gets treated the same as if you passed a custom cache signal.\n return originalFetch(resource, options);\n }\n cacheKey = generateCacheKey(request);\n url = request.url;\n }\n const cacheEntries = getCacheEntries(url);\n for(let i = 0, j = cacheEntries.length; i < j; i += 1){\n const [key, promise] = cacheEntries[i];\n if (key === cacheKey) {\n return promise.then(()=>{\n const response = cacheEntries[i][2];\n if (!response) throw Object.defineProperty(new InvariantError('No cached response'), \"__NEXT_ERROR_CODE\", {\n value: \"E579\",\n enumerable: false,\n configurable: true\n });\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response);\n cacheEntries[i][2] = cloned2;\n return cloned1;\n });\n }\n }\n // We pass the original arguments here in case normalizing the Request\n // doesn't include all the options in this environment.\n const promise = originalFetch(resource, options);\n const entry = [\n cacheKey,\n promise,\n null\n ];\n cacheEntries.push(entry);\n return promise.then((response)=>{\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response);\n entry[2] = cloned2;\n return cloned1;\n });\n };\n}\n\n//# sourceMappingURL=dedupe-fetch.js.map","import { ResponseAbortedName, createAbortController } from './web/spec-extension/adapters/next-request';\nimport { DetachedPromise } from '../lib/detached-promise';\nimport { getTracer } from './lib/trace/tracer';\nimport { NextNodeServerSpan } from './lib/trace/constants';\nimport { getClientComponentLoaderMetrics } from './client-component-renderer-logger';\nexport function isAbortError(e) {\n return (e == null ? void 0 : e.name) === 'AbortError' || (e == null ? void 0 : e.name) === ResponseAbortedName;\n}\nfunction createWriterFromResponse(res, waitUntilForEnd) {\n let started = false;\n // Create a promise that will resolve once the response has drained. See\n // https://nodejs.org/api/stream.html#stream_event_drain\n let drained = new DetachedPromise();\n function onDrain() {\n drained.resolve();\n }\n res.on('drain', onDrain);\n // If the finish event fires, it means we shouldn't block and wait for the\n // drain event.\n res.once('close', ()=>{\n res.off('drain', onDrain);\n drained.resolve();\n });\n // Create a promise that will resolve once the response has finished. See\n // https://nodejs.org/api/http.html#event-finish_1\n const finished = new DetachedPromise();\n res.once('finish', ()=>{\n finished.resolve();\n });\n // Create a writable stream that will write to the response.\n return new WritableStream({\n write: async (chunk)=>{\n // You'd think we'd want to use `start` instead of placing this in `write`\n // but this ensures that we don't actually flush the headers until we've\n // started writing chunks.\n if (!started) {\n started = true;\n if ('performance' in globalThis && process.env.NEXT_OTEL_PERFORMANCE_PREFIX) {\n const metrics = getClientComponentLoaderMetrics();\n if (metrics) {\n performance.measure(`${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`, {\n start: metrics.clientComponentLoadStart,\n end: metrics.clientComponentLoadStart + metrics.clientComponentLoadTimes\n });\n }\n }\n res.flushHeaders();\n getTracer().trace(NextNodeServerSpan.startResponse, {\n spanName: 'start response'\n }, ()=>undefined);\n }\n try {\n const ok = res.write(chunk);\n // Added by the `compression` middleware, this is a function that will\n // flush the partially-compressed response to the client.\n if ('flush' in res && typeof res.flush === 'function') {\n res.flush();\n }\n // If the write returns false, it means there's some backpressure, so\n // wait until it's streamed before continuing.\n if (!ok) {\n await drained.promise;\n // Reset the drained promise so that we can wait for the next drain event.\n drained = new DetachedPromise();\n }\n } catch (err) {\n res.end();\n throw Object.defineProperty(new Error('failed to write chunk to response', {\n cause: err\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E321\",\n enumerable: false,\n configurable: true\n });\n }\n },\n abort: (err)=>{\n if (res.writableFinished) return;\n res.destroy(err);\n },\n close: async ()=>{\n // if a waitUntil promise was passed, wait for it to resolve before\n // ending the response.\n if (waitUntilForEnd) {\n await waitUntilForEnd;\n }\n if (res.writableFinished) return;\n res.end();\n return finished.promise;\n }\n });\n}\nexport async function pipeToNodeResponse(readable, res, waitUntilForEnd) {\n try {\n // If the response has already errored, then just return now.\n const { errored, destroyed } = res;\n if (errored || destroyed) return;\n // Create a new AbortController so that we can abort the readable if the\n // client disconnects.\n const controller = createAbortController(res);\n const writer = createWriterFromResponse(res, waitUntilForEnd);\n await readable.pipeTo(writer, {\n signal: controller.signal\n });\n } catch (err) {\n // If this isn't related to an abort error, re-throw it.\n if (isAbortError(err)) return;\n throw Object.defineProperty(new Error('failed to pipe response', {\n cause: err\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E180\",\n enumerable: false,\n configurable: true\n });\n }\n}\n\n//# sourceMappingURL=pipe-readable.js.map","/**\n * Takes an object with a hostname property (like a parsed URL) and some\n * headers that may contain Host and returns the preferred hostname.\n * @param parsed An object containing a hostname property.\n * @param headers A dictionary with headers containing a `host`.\n */ export function getHostname(parsed, headers) {\n // Get the hostname from the headers if it exists, otherwise use the parsed\n // hostname.\n let hostname;\n if (headers?.host && !Array.isArray(headers.host)) {\n hostname = headers.host.toString().split(':', 1)[0];\n } else if (parsed.hostname) {\n hostname = parsed.hostname;\n } else return;\n return hostname.toLowerCase();\n}\n\n//# sourceMappingURL=get-hostname.js.map","/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */ export const scheduleOnNextTick = (cb)=>{\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(()=>{\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0);\n } else {\n process.nextTick(cb);\n }\n });\n};\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */ export const scheduleImmediate = (cb)=>{\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0);\n } else {\n setImmediate(cb);\n }\n};\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */ export function atLeastOneTask() {\n return new Promise((resolve)=>scheduleImmediate(resolve));\n}\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */ export function waitAtLeastOneReactRenderTask() {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r)=>setTimeout(r, 0));\n } else {\n return new Promise((r)=>setImmediate(r));\n }\n}\n\n//# sourceMappingURL=scheduler.js.map","/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */ export function isThenable(promise) {\n return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function';\n}\n\n//# sourceMappingURL=is-thenable.js.map","import { parsePath } from './parse-path';\n/**\n * Similarly to `addPathPrefix`, this function adds a suffix at the end on the\n * provided path. It also works only for paths ensuring the argument starts\n * with a slash.\n */ export function addPathSuffix(path, suffix) {\n if (!path.startsWith('/') || !suffix) {\n return path;\n }\n const { pathname, query, hash } = parsePath(path);\n return `${pathname}${suffix}${query}${hash}`;\n}\n\n//# sourceMappingURL=add-path-suffix.js.map","/**\n * A `Promise.withResolvers` implementation that exposes the `resolve` and\n * `reject` functions on a `Promise`.\n *\n * @see https://tc39.es/proposal-promise-with-resolvers/\n */ export class DetachedPromise {\n constructor(){\n let resolve;\n let reject;\n // Create the promise and assign the resolvers to the object.\n this.promise = new Promise((res, rej)=>{\n resolve = res;\n reject = rej;\n });\n // We know that resolvers is defined because the Promise constructor runs\n // synchronously.\n this.resolve = resolve;\n this.reject = reject;\n }\n}\n\n//# sourceMappingURL=detached-promise.js.map","/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */ export function removeTrailingSlash(route) {\n return route.replace(/\\/$/, '') || '/';\n}\n\n//# sourceMappingURL=remove-trailing-slash.js.map","import { addPathPrefix } from './add-path-prefix';\nimport { pathHasPrefix } from './path-has-prefix';\n/**\n * For a given path and a locale, if the locale is given, it will prefix the\n * locale. The path shouldn't be an API path. If a default locale is given the\n * prefix will be omitted if the locale is already the default locale.\n */ export function addLocale(path, locale, defaultLocale, ignorePrefix) {\n // If no locale was given or the locale is the default locale, we don't need\n // to prefix the path.\n if (!locale || locale === defaultLocale) return path;\n const lower = path.toLowerCase();\n // If the path is an API path or the path already has the locale prefix, we\n // don't need to prefix the path.\n if (!ignorePrefix) {\n if (pathHasPrefix(lower, '/api')) return path;\n if (pathHasPrefix(lower, `/${locale.toLowerCase()}`)) return path;\n }\n // Add the locale prefix to the path.\n return addPathPrefix(path, `/${locale}`);\n}\n\n//# sourceMappingURL=add-locale.js.map","import { parsePath } from './parse-path';\n/**\n * Checks if a given path starts with a given prefix. It ensures it matches\n * exactly without containing extra chars. e.g. prefix /docs should replace\n * for /docs, /docs/, /docs/a but not /docsss\n * @param path The path to check.\n * @param prefix The prefix to check against.\n */ export function pathHasPrefix(path, prefix) {\n if (typeof path !== 'string') {\n return false;\n }\n const { pathname } = parsePath(path);\n return pathname === prefix || pathname.startsWith(prefix + '/');\n}\n\n//# sourceMappingURL=path-has-prefix.js.map","import { pathHasPrefix } from './path-has-prefix';\n/**\n * Given a path and a prefix it will remove the prefix when it exists in the\n * given path. It ensures it matches exactly without containing extra chars\n * and if the prefix is not there it will be noop.\n *\n * @param path The path to remove the prefix from.\n * @param prefix The prefix to be removed.\n */ export function removePathPrefix(path, prefix) {\n // If the path doesn't start with the prefix we can return it as is. This\n // protects us from situations where the prefix is a substring of the path\n // prefix such as:\n //\n // For prefix: /blog\n //\n // /blog -> true\n // /blog/ -> true\n // /blog/1 -> true\n // /blogging -> false\n // /blogging/ -> false\n // /blogging/1 -> false\n if (!pathHasPrefix(path, prefix)) {\n return path;\n }\n // Remove the prefix from the path via slicing.\n const withoutPrefix = path.slice(prefix.length);\n // If the path without the prefix starts with a `/` we can return it as is.\n if (withoutPrefix.startsWith('/')) {\n return withoutPrefix;\n }\n // If the path without the prefix doesn't start with a `/` we need to add it\n // back to the path to make sure it's a valid path.\n return `/${withoutPrefix}`;\n}\n\n//# sourceMappingURL=remove-path-prefix.js.map","import { getTracer } from '../lib/trace/tracer';\nimport { AppRenderSpan } from '../lib/trace/constants';\nimport { DetachedPromise } from '../../lib/detached-promise';\nimport { scheduleImmediate, atLeastOneTask, waitAtLeastOneReactRenderTask } from '../../lib/scheduler';\nimport { ENCODED_TAGS } from './encoded-tags';\nimport { indexOfUint8Array, isEquivalentUint8Arrays, removeFromUint8Array } from './uint8array-helpers';\nimport { MISSING_ROOT_TAGS_ERROR } from '../../shared/lib/errors/constants';\nimport { RSC_HEADER, NEXT_ROUTER_PREFETCH_HEADER, NEXT_ROUTER_SEGMENT_PREFETCH_HEADER, NEXT_RSC_UNION_QUERY, NEXT_INSTANT_PREFETCH_HEADER } from '../../client/components/app-router-headers';\nimport { computeCacheBustingSearchParam } from '../../shared/lib/router/utils/cache-busting-search-param';\nfunction voidCatch() {\n// this catcher is designed to be used with pipeTo where we expect the underlying\n// pipe implementation to forward errors but we don't want the pipeTo promise to reject\n// and be unhandled\n}\n// We can share the same encoder instance everywhere\n// Notably we cannot do the same for TextDecoder because it is stateful\n// when handling streaming data\nconst encoder = new TextEncoder();\nexport function chainStreams(...streams) {\n // If we have no streams, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n if (streams.length === 0) {\n return new ReadableStream({\n start (controller) {\n controller.close();\n }\n });\n }\n // If we only have 1 stream we fast path it by returning just this stream\n if (streams.length === 1) {\n return streams[0];\n }\n const { readable, writable } = new TransformStream();\n // We always initiate pipeTo immediately. We know we have at least 2 streams\n // so we need to avoid closing the writable when this one finishes.\n let promise = streams[0].pipeTo(writable, {\n preventClose: true\n });\n let i = 1;\n for(; i < streams.length - 1; i++){\n const nextStream = streams[i];\n promise = promise.then(()=>nextStream.pipeTo(writable, {\n preventClose: true\n }));\n }\n // We can omit the length check because we halted before the last stream and there\n // is at least two streams so the lastStream here will always be defined\n const lastStream = streams[i];\n promise = promise.then(()=>lastStream.pipeTo(writable));\n // Catch any errors from the streams and ignore them, they will be handled\n // by whatever is consuming the readable stream.\n promise.catch(voidCatch);\n return readable;\n}\nexport function streamFromString(str) {\n return new ReadableStream({\n start (controller) {\n controller.enqueue(encoder.encode(str));\n controller.close();\n }\n });\n}\nexport function streamFromBuffer(chunk) {\n return new ReadableStream({\n start (controller) {\n controller.enqueue(chunk);\n controller.close();\n }\n });\n}\nasync function streamToChunks(stream) {\n const reader = stream.getReader();\n const chunks = [];\n while(true){\n const { done, value } = await reader.read();\n if (done) {\n break;\n }\n chunks.push(value);\n }\n return chunks;\n}\nfunction concatUint8Arrays(chunks) {\n const totalLength = chunks.reduce((sum, chunk)=>sum + chunk.length, 0);\n const result = new Uint8Array(totalLength);\n let offset = 0;\n for (const chunk of chunks){\n result.set(chunk, offset);\n offset += chunk.length;\n }\n return result;\n}\nexport async function streamToUint8Array(stream) {\n return concatUint8Arrays(await streamToChunks(stream));\n}\nexport async function streamToBuffer(stream) {\n return Buffer.concat(await streamToChunks(stream));\n}\nexport async function streamToString(stream, signal) {\n const decoder = new TextDecoder('utf-8', {\n fatal: true\n });\n let string = '';\n for await (const chunk of stream){\n if (signal == null ? void 0 : signal.aborted) {\n return string;\n }\n string += decoder.decode(chunk, {\n stream: true\n });\n }\n string += decoder.decode();\n return string;\n}\nexport function createBufferedTransformStream(options = {}) {\n const { maxBufferByteLength = Infinity } = options;\n let bufferedChunks = [];\n let bufferByteLength = 0;\n let pending;\n const flush = (controller)=>{\n try {\n if (bufferedChunks.length === 0) {\n return;\n }\n const chunk = new Uint8Array(bufferByteLength);\n let copiedBytes = 0;\n for(let i = 0; i < bufferedChunks.length; i++){\n const bufferedChunk = bufferedChunks[i];\n chunk.set(bufferedChunk, copiedBytes);\n copiedBytes += bufferedChunk.byteLength;\n }\n // We just wrote all the buffered chunks so we need to reset the bufferedChunks array\n // and our bufferByteLength to prepare for the next round of buffered chunks\n bufferedChunks.length = 0;\n bufferByteLength = 0;\n controller.enqueue(chunk);\n } catch {\n // If an error occurs while enqueuing, it can't be due to this\n // transformer. It's most likely caused by the controller having been\n // errored (for example, if the stream was cancelled).\n }\n };\n const scheduleFlush = (controller)=>{\n if (pending) {\n return;\n }\n const detached = new DetachedPromise();\n pending = detached;\n scheduleImmediate(()=>{\n try {\n flush(controller);\n } finally{\n pending = undefined;\n detached.resolve();\n }\n });\n };\n return new TransformStream({\n transform (chunk, controller) {\n // Combine the previous buffer with the new chunk.\n bufferedChunks.push(chunk);\n bufferByteLength += chunk.byteLength;\n if (bufferByteLength >= maxBufferByteLength) {\n flush(controller);\n } else {\n scheduleFlush(controller);\n }\n },\n flush () {\n return pending == null ? void 0 : pending.promise;\n }\n });\n}\n// TODO this is currently unused but once we add proper output:export support, it needs to be\n// revisited. See https://github.com/vercel/next.js/pull/89478 for more details\n//\n// function createPrefetchCommentStream(\n// isBuildTimePrerendering: boolean,\n// buildId: string\n// ): TransformStream {\n// // Insert an extra comment at the beginning of the HTML document. This must\n// // come after the DOCTYPE, which is inserted by React.\n// //\n// // The first chunk sent by React will contain the doctype. After that, we can\n// // pass through the rest of the chunks as-is.\n// let didTransformFirstChunk = false\n// return new TransformStream({\n// transform(chunk, controller) {\n// if (isBuildTimePrerendering && !didTransformFirstChunk) {\n// didTransformFirstChunk = true\n// const decoder = new TextDecoder('utf-8', { fatal: true })\n// const chunkStr = decoder.decode(chunk, {\n// stream: true,\n// })\n// const updatedChunkStr = insertBuildIdComment(chunkStr, buildId)\n// controller.enqueue(encoder.encode(updatedChunkStr))\n// return\n// }\n// controller.enqueue(chunk)\n// },\n// })\n// }\nexport function renderToInitialFizzStream({ ReactDOMServer, element, streamOptions }) {\n return getTracer().trace(AppRenderSpan.renderToReadableStream, async ()=>ReactDOMServer.renderToReadableStream(element, streamOptions));\n}\nfunction createMetadataTransformStream(insert) {\n let chunkIndex = -1;\n let isMarkRemoved = false;\n return new TransformStream({\n async transform (chunk, controller) {\n let iconMarkIndex = -1;\n let closedHeadIndex = -1;\n chunkIndex++;\n if (isMarkRemoved) {\n controller.enqueue(chunk);\n return;\n }\n let iconMarkLength = 0;\n // Only search for the closed head tag once\n if (iconMarkIndex === -1) {\n iconMarkIndex = indexOfUint8Array(chunk, ENCODED_TAGS.META.ICON_MARK);\n if (iconMarkIndex === -1) {\n controller.enqueue(chunk);\n return;\n } else {\n // When we found the `` or `>`, checking the next char to ensure we cover both cases.\n iconMarkLength = ENCODED_TAGS.META.ICON_MARK.length;\n // Check if next char is /, this is for xml mode.\n if (chunk[iconMarkIndex + iconMarkLength] === 47) {\n iconMarkLength += 2;\n } else {\n // The last char is `>`\n iconMarkLength++;\n }\n }\n }\n // Check if icon mark is inside tag in the first chunk.\n if (chunkIndex === 0) {\n closedHeadIndex = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD);\n if (iconMarkIndex !== -1) {\n // The mark icon is located in the 1st chunk before the head tag.\n // We do not need to insert the script tag in this case because it's in the head.\n // Just remove the icon mark from the chunk.\n if (iconMarkIndex < closedHeadIndex) {\n const replaced = new Uint8Array(chunk.length - iconMarkLength);\n // Remove the icon mark from the chunk.\n replaced.set(chunk.subarray(0, iconMarkIndex));\n replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex);\n chunk = replaced;\n } else {\n // The icon mark is after the head tag, replace and insert the script tag at that position.\n const insertion = await insert();\n const encodedInsertion = encoder.encode(insertion);\n const insertionLength = encodedInsertion.length;\n const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength);\n replaced.set(chunk.subarray(0, iconMarkIndex));\n replaced.set(encodedInsertion, iconMarkIndex);\n replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength);\n chunk = replaced;\n }\n isMarkRemoved = true;\n }\n // If there's no icon mark located, it will be handled later when if present in the following chunks.\n } else {\n // When it's appeared in the following chunks, we'll need to\n // remove the mark and then insert the script tag at that position.\n const insertion = await insert();\n const encodedInsertion = encoder.encode(insertion);\n const insertionLength = encodedInsertion.length;\n // Replace the icon mark with the hoist script or empty string.\n const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength);\n // Set the first part of the chunk, before the icon mark.\n replaced.set(chunk.subarray(0, iconMarkIndex));\n // Set the insertion after the icon mark.\n replaced.set(encodedInsertion, iconMarkIndex);\n // Set the rest of the chunk after the icon mark.\n replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength);\n chunk = replaced;\n isMarkRemoved = true;\n }\n controller.enqueue(chunk);\n }\n });\n}\nfunction createHeadInsertionTransformStream(insert) {\n let inserted = false;\n // We need to track if this transform saw any bytes because if it didn't\n // we won't want to insert any server HTML at all\n let hasBytes = false;\n return new TransformStream({\n async transform (chunk, controller) {\n hasBytes = true;\n const insertion = await insert();\n if (inserted) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion);\n controller.enqueue(encodedInsertion);\n }\n controller.enqueue(chunk);\n } else {\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD);\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n if (index !== -1) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion);\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, index));\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, index);\n // Append the rest of the chunk\n insertedHeadContent.set(chunk.slice(index), index + encodedInsertion.length);\n controller.enqueue(insertedHeadContent);\n } else {\n controller.enqueue(chunk);\n }\n inserted = true;\n } else {\n // This will happens in PPR rendering during next start, when the page is partially rendered.\n // When the page resumes, the head tag will be found in the middle of the chunk.\n // Where we just need to append the insertion and chunk to the current stream.\n // e.g.\n // PPR-static: ... [ resume content ] \n // PPR-resume: [ insertion ] [ rest content ]\n if (insertion) {\n controller.enqueue(encoder.encode(insertion));\n }\n controller.enqueue(chunk);\n inserted = true;\n }\n }\n },\n async flush (controller) {\n // Check before closing if there's anything remaining to insert.\n if (hasBytes) {\n const insertion = await insert();\n if (insertion) {\n controller.enqueue(encoder.encode(insertion));\n }\n }\n }\n });\n}\nasync function createClientResumeScriptInsertionTransformStream() {\n const segmentPath = '/_full';\n const cacheBustingHeader = await computeCacheBustingSearchParam('1', '/_full', undefined, undefined // headers[NEXT_URL]\n );\n const searchStr = `${NEXT_RSC_UNION_QUERY}=${cacheBustingHeader}`;\n const NEXT_CLIENT_RESUME_SCRIPT = ``;\n let didAlreadyInsert = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (didAlreadyInsert) {\n // Already inserted the script into the head. Pass through.\n controller.enqueue(chunk);\n return;\n }\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const headClosingTagIndex = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD);\n if (headClosingTagIndex === -1) {\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n controller.enqueue(chunk);\n return;\n }\n const encodedInsertion = encoder.encode(NEXT_CLIENT_RESUME_SCRIPT);\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, headClosingTagIndex));\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, headClosingTagIndex);\n // Append the rest of the chunk\n insertedHeadContent.set(chunk.slice(headClosingTagIndex), headClosingTagIndex + encodedInsertion.length);\n controller.enqueue(insertedHeadContent);\n didAlreadyInsert = true;\n }\n });\n}\n/**\n * Creates a transform stream that injects an inline script as the first\n * element inside . Used during instant navigation testing to set\n * self.__next_instant_test before any async bootstrap scripts execute.\n */ export async function createInstantTestScriptInsertionTransformStream(requestId) {\n // Kick off a fetch for the static RSC payload. This is the hydration\n // source for the locked static shell — same as the __NEXT_CLIENT_RESUME\n // fetch used for fallback routes, but with NEXT_INSTANT_PREFETCH_HEADER\n // so the server returns static-only data.\n //\n // The fetch promise is stored as self.__next_instant_test, which doubles\n // as the feature flag (truthy = instant test mode). The client processes\n // this as a fallback prerender payload for hydration.\n const segmentPath = '/_full';\n const cacheBustingHeader = await computeCacheBustingSearchParam('1', segmentPath, undefined, undefined);\n const searchStr = `${NEXT_RSC_UNION_QUERY}=${cacheBustingHeader}`;\n // In dev mode, inject self.__next_r (request ID) so that HMR WebSocket\n // and debug channel initialization don't crash. The static shell\n // bypasses renderToFizzStream which normally injects this via\n // bootstrapScriptContent.\n const requestIdScript = requestId !== null ? `self.__next_r=${JSON.stringify(requestId)};` : '';\n const INSTANT_TEST_SCRIPT = ``;\n let didAlreadyInsert = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (didAlreadyInsert) {\n // Already inserted the script into the head. Pass through.\n controller.enqueue(chunk);\n return;\n }\n // Find the opening )\n const headOpenIndex = indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.HEAD);\n if (headOpenIndex === -1) {\n controller.enqueue(chunk);\n return;\n }\n // Find the closing > of the tag\n const headCloseAngle = chunk.indexOf(62, headOpenIndex + ENCODED_TAGS.OPENING.HEAD.length);\n if (headCloseAngle === -1) {\n controller.enqueue(chunk);\n return;\n }\n const encodedInsertion = encoder.encode(INSTANT_TEST_SCRIPT);\n const insertionPoint = headCloseAngle + 1;\n // e.g.\n // chunk = ...\n // insertion = \n // output = [ ] ...\n const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);\n insertedHeadContent.set(chunk.slice(0, insertionPoint));\n insertedHeadContent.set(encodedInsertion, insertionPoint);\n insertedHeadContent.set(chunk.slice(insertionPoint), insertionPoint + encodedInsertion.length);\n controller.enqueue(insertedHeadContent);\n didAlreadyInsert = true;\n },\n flush (controller) {\n // Append closing tags so the browser can parse the full document.\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML);\n }\n });\n}\n// Suffix after main body content - scripts before ,\n// but wait for the major chunks to be enqueued.\nfunction createDeferredSuffixStream(suffix) {\n let flushed = false;\n let pending;\n const flush = (controller)=>{\n const detached = new DetachedPromise();\n pending = detached;\n scheduleImmediate(()=>{\n try {\n controller.enqueue(encoder.encode(suffix));\n } catch {\n // If an error occurs while enqueuing it can't be due to this\n // transformers fault. It's likely due to the controller being\n // errored due to the stream being cancelled.\n } finally{\n pending = undefined;\n detached.resolve();\n }\n });\n };\n return new TransformStream({\n transform (chunk, controller) {\n controller.enqueue(chunk);\n // If we've already flushed, we're done.\n if (flushed) return;\n // Schedule the flush to happen.\n flushed = true;\n flush(controller);\n },\n flush (controller) {\n if (pending) return pending.promise;\n if (flushed) return;\n // Flush now.\n controller.enqueue(encoder.encode(suffix));\n }\n });\n}\nfunction createFlightDataInjectionTransformStream(stream, delayDataUntilFirstHtmlChunk) {\n let htmlStreamFinished = false;\n let pull = null;\n let donePulling = false;\n function startOrContinuePulling(controller) {\n if (!pull) {\n pull = startPulling(controller);\n }\n return pull;\n }\n async function startPulling(controller) {\n const reader = stream.getReader();\n if (delayDataUntilFirstHtmlChunk) {\n // NOTE: streaming flush\n // We are buffering here for the inlined data stream because the\n // \"shell\" stream might be chunkenized again by the underlying stream\n // implementation, e.g. with a specific high-water mark. To ensure it's\n // the safe timing to pipe the data stream, this extra tick is\n // necessary.\n // We don't start reading until we've left the current Task to ensure\n // that it's inserted after flushing the shell. Note that this implementation\n // might get stale if impl details of Fizz change in the future.\n await atLeastOneTask();\n }\n try {\n while(true){\n const { done, value } = await reader.read();\n if (done) {\n donePulling = true;\n return;\n }\n // We want to prioritize HTML over RSC data.\n // The SSR render is based on the same RSC stream, so when we get a new RSC chunk,\n // we're likely to produce an HTML chunk as well, so give it a chance to flush first.\n if (!delayDataUntilFirstHtmlChunk && !htmlStreamFinished) {\n await atLeastOneTask();\n }\n controller.enqueue(value);\n }\n } catch (err) {\n controller.error(err);\n }\n }\n return new TransformStream({\n start (controller) {\n if (!delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller);\n }\n },\n transform (chunk, controller) {\n controller.enqueue(chunk);\n // Start the streaming if it hasn't already been started yet.\n if (delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller);\n }\n },\n flush (controller) {\n htmlStreamFinished = true;\n if (donePulling) {\n return;\n }\n return startOrContinuePulling(controller);\n }\n });\n}\nconst CLOSE_TAG = '';\n/**\n * This transform stream moves the suffix to the end of the stream, so results\n * like `` will be transformed to\n * ``.\n */ function createMoveSuffixStream() {\n let foundSuffix = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (foundSuffix) {\n return controller.enqueue(chunk);\n }\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML);\n if (index > -1) {\n foundSuffix = true;\n // If the whole chunk is the suffix, then don't write anything, it will\n // be written in the flush.\n if (chunk.length === ENCODED_TAGS.CLOSED.BODY_AND_HTML.length) {\n return;\n }\n // Write out the part before the suffix.\n const before = chunk.slice(0, index);\n controller.enqueue(before);\n // In the case where the suffix is in the middle of the chunk, we need\n // to split the chunk into two parts.\n if (chunk.length > ENCODED_TAGS.CLOSED.BODY_AND_HTML.length + index) {\n // Write out the part after the suffix.\n const after = chunk.slice(index + ENCODED_TAGS.CLOSED.BODY_AND_HTML.length);\n controller.enqueue(after);\n }\n } else {\n controller.enqueue(chunk);\n }\n },\n flush (controller) {\n // Even if we didn't find the suffix, the HTML is not valid if we don't\n // add it, so insert it at the end.\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML);\n }\n });\n}\nfunction createStripDocumentClosingTagsTransform() {\n return new TransformStream({\n transform (chunk, controller) {\n // We rely on the assumption that chunks will never break across a code unit.\n // This is reasonable because we currently concat all of React's output from a single\n // flush into one chunk before streaming it forward which means the chunk will represent\n // a single coherent utf-8 string. This is not safe to use if we change our streaming to no\n // longer do this large buffered chunk\n if (isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML) || isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY) || isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.HTML)) {\n // the entire chunk is the closing tags; return without enqueueing anything.\n return;\n }\n // We assume these tags will go at together at the end of the document and that\n // they won't appear anywhere else in the document. This is not really a safe assumption\n // but until we revamp our streaming infra this is a performant way to string the tags\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY);\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.HTML);\n controller.enqueue(chunk);\n }\n });\n}\nfunction createHtmlDataDplIdTransformStream(dplId) {\n let didTransform = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (didTransform) {\n controller.enqueue(chunk);\n return;\n }\n const htmlTagIndex = indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.HTML);\n if (htmlTagIndex === -1) {\n controller.enqueue(chunk);\n return;\n }\n // Insert the data-dpl-id attribute right after \" -1) {\n foundHtml = true;\n }\n if (!foundBody && indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.BODY) > -1) {\n foundBody = true;\n }\n controller.enqueue(chunk);\n },\n flush (controller) {\n const missingTags = [];\n if (!foundHtml) missingTags.push('html');\n if (!foundBody) missingTags.push('body');\n if (!missingTags.length) return;\n controller.enqueue(encoder.encode(`\n `<${c}>`).join(missingTags.length > 1 ? ' and ' : '')} tags in the root layout.\\nRead more at https://nextjs.org/docs/messages/missing-root-layout-tags\"\n data-next-error-digest=\"${MISSING_ROOT_TAGS_ERROR}\"\n data-next-error-stack=\"\"\n >\n `));\n }\n });\n}\nfunction chainTransformers(readable, transformers) {\n let stream = readable;\n for (const transformer of transformers){\n if (!transformer) continue;\n stream = stream.pipeThrough(transformer);\n }\n return stream;\n}\nexport async function continueFizzStream(renderStream, { suffix, inlinedDataStream, isStaticGeneration, deploymentId, getServerInsertedHTML, getServerInsertedMetadata, validateRootLayout }) {\n // Suffix itself might contain close tags at the end, so we need to split it.\n const suffixUnclosed = suffix ? suffix.split(CLOSE_TAG, 1)[0] : null;\n if (isStaticGeneration) {\n // If we're generating static HTML we need to wait for it to resolve before continuing.\n await renderStream.allReady;\n } else {\n // Otherwise, we want to make sure Fizz is done with all microtasky work\n // before we start pulling the stream and cause a flush.\n await waitAtLeastOneReactRenderTask();\n }\n return chainTransformers(renderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert suffix content\n suffixUnclosed != null && suffixUnclosed.length > 0 ? createDeferredSuffixStream(suffixUnclosed) : null,\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n inlinedDataStream ? createFlightDataInjectionTransformStream(inlinedDataStream, true) : null,\n // Validate the root layout for missing html or body tags\n validateRootLayout ? createRootLayoutValidatorStream() : null,\n // Close tags should always be deferred to the end\n createMoveSuffixStream(),\n // Special head insertions\n // TODO-APP: Insert server side html to end of head in app layout rendering, to avoid\n // hydration errors. Remove this once it's ready to be handled by react itself.\n createHeadInsertionTransformStream(getServerInsertedHTML)\n ]);\n}\nexport async function continueDynamicPrerender(prerenderStream, { getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n return chainTransformers(prerenderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n createStripDocumentClosingTagsTransform(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata)\n ]);\n}\nexport async function continueStaticPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n return chainTransformers(prerenderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Add build id comment to start of the HTML document (in export mode)\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n createFlightDataInjectionTransformStream(inlinedDataStream, true),\n // Close tags should always be deferred to the end\n createMoveSuffixStream()\n ]);\n}\nexport async function continueStaticFallbackPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n // Same as `continueStaticPrerender`, but also inserts an additional script\n // to instruct the client to start fetching the hydration data as early\n // as possible.\n return chainTransformers(prerenderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Insert the client resume script into the head\n await createClientResumeScriptInsertionTransformStream(),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n createFlightDataInjectionTransformStream(inlinedDataStream, true),\n // Close tags should always be deferred to the end\n createMoveSuffixStream()\n ]);\n}\nexport async function continueDynamicHTMLResume(renderStream, { delayDataUntilFirstHtmlChunk, inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n return chainTransformers(renderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n createFlightDataInjectionTransformStream(inlinedDataStream, delayDataUntilFirstHtmlChunk),\n // Close tags should always be deferred to the end\n createMoveSuffixStream()\n ]);\n}\nexport function createDocumentClosingStream() {\n return streamFromString(CLOSE_TAG);\n}\n// ---------------------------------------------------------------------------\n// Runtime prefetch transform (Web streams)\n// ---------------------------------------------------------------------------\n/**\n * Web TransformStream that replaces the runtime prefetch sentinel in an RSC\n * payload stream: `[]` -> `[,]`.\n *\n * This is the web equivalent of createRuntimePrefetchNodeTransform\n * in node-stream-helpers.ts.\n */ export function createRuntimePrefetchTransformStream(sentinel, isPartial, staleTime) {\n const enc = new TextEncoder();\n // Search for: []\n // Replace with: [,]\n const search = enc.encode(`[${sentinel}]`);\n const first = search[0];\n const replace = enc.encode(`[${isPartial},${staleTime}]`);\n const searchLen = search.length;\n let currentChunk = null;\n let found = false;\n function processChunk(controller, nextChunk) {\n if (found) {\n if (nextChunk) {\n controller.enqueue(nextChunk);\n }\n return;\n }\n if (currentChunk) {\n // We can't search past the index that can contain a full match\n let exclusiveUpperBound = currentChunk.length - (searchLen - 1);\n if (nextChunk) {\n // If we have any overflow bytes we can search up to the chunk's final byte\n exclusiveUpperBound += Math.min(nextChunk.length, searchLen - 1);\n }\n if (exclusiveUpperBound < 1) {\n // we can't match the current chunk.\n controller.enqueue(currentChunk);\n currentChunk = nextChunk // advance so we don't process this chunk again\n ;\n return;\n }\n let currentIndex = currentChunk.indexOf(first);\n // check the current candidate match if it is within the bounds of our search space for the currentChunk\n candidateLoop: while(-1 < currentIndex && currentIndex < exclusiveUpperBound){\n // We already know index 0 matches because we used indexOf to find the candidateIndex so we start at index 1\n let matchIndex = 1;\n while(matchIndex < searchLen){\n const candidateIndex = currentIndex + matchIndex;\n const candidateValue = candidateIndex < currentChunk.length ? currentChunk[candidateIndex] : nextChunk[candidateIndex - currentChunk.length];\n if (candidateValue !== search[matchIndex]) {\n // No match, reset and continue the search from the next position\n currentIndex = currentChunk.indexOf(first, currentIndex + 1);\n continue candidateLoop;\n }\n matchIndex++;\n }\n // We found a complete match. currentIndex is our starting point to replace the value.\n found = true;\n // enqueue everything up to the match\n controller.enqueue(currentChunk.subarray(0, currentIndex));\n // enqueue the replacement value\n controller.enqueue(replace);\n // If there are bytes in the currentChunk after the match enqueue them\n if (currentIndex + searchLen < currentChunk.length) {\n controller.enqueue(currentChunk.slice(currentIndex + searchLen));\n }\n // If we have a next chunk we enqueue it now\n if (nextChunk) {\n // if replacement spills over to the next chunk we first exclude the replaced bytes\n const overflowBytes = currentIndex + searchLen - currentChunk.length;\n const truncatedChunk = overflowBytes > 0 ? nextChunk.subarray(overflowBytes) : nextChunk;\n controller.enqueue(truncatedChunk);\n }\n // We are now in found mode and don't need to track currentChunk anymore\n currentChunk = null;\n return;\n }\n // No match found in this chunk, emit it and wait for the next one\n controller.enqueue(currentChunk);\n }\n // Advance to the next chunk\n currentChunk = nextChunk;\n }\n return new TransformStream({\n transform (chunk, controller) {\n processChunk(controller, chunk);\n },\n flush (controller) {\n processChunk(controller, null);\n }\n });\n}\n\n//# sourceMappingURL=node-web-streams-helper.js.map","import { isNodeNextResponse } from './base-http/helpers';\nimport { pipeToNodeResponse } from './pipe-readable';\nimport { splitCookiesString } from './web/utils';\n/**\n * Sends the response on the underlying next response object.\n *\n * @param req the underlying request object\n * @param res the underlying response object\n * @param response the response to send\n */ export async function sendResponse(req, res, response, waitUntil) {\n if (// The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME !== 'edge' && isNodeNextResponse(res)) {\n var // Copy over the response headers.\n _response_headers;\n // Copy over the response status.\n res.statusCode = response.status;\n res.statusMessage = response.statusText;\n // TODO: this is not spec-compliant behavior and we should not restrict\n // headers that are allowed to appear many times.\n //\n // See:\n // https://github.com/vercel/next.js/pull/70127\n const headersWithMultipleValuesAllowed = [\n // can add more headers to this list if needed\n 'set-cookie',\n 'www-authenticate',\n 'proxy-authenticate',\n 'vary'\n ];\n (_response_headers = response.headers) == null ? void 0 : _response_headers.forEach((value, name)=>{\n // `x-middleware-set-cookie` is an internal header not needed for the response\n if (name.toLowerCase() === 'x-middleware-set-cookie') {\n return;\n }\n // The append handling is special cased for `set-cookie`.\n if (name.toLowerCase() === 'set-cookie') {\n // TODO: (wyattjoh) replace with native response iteration when we can upgrade undici\n for (const cookie of splitCookiesString(value)){\n res.appendHeader(name, cookie);\n }\n } else {\n // only append the header if it is either not present in the outbound response\n // or if the header supports multiple values\n const isHeaderPresent = typeof res.getHeader(name) !== 'undefined';\n if (headersWithMultipleValuesAllowed.includes(name.toLowerCase()) || !isHeaderPresent) {\n res.appendHeader(name, value);\n }\n }\n });\n /**\n * The response can't be directly piped to the underlying response. The\n * following is duplicated from the edge runtime handler.\n *\n * See packages/next/server/next-server.ts\n */ const { originalResponse } = res;\n // A response body must not be sent for HEAD requests. See https://httpwg.org/specs/rfc9110.html#HEAD\n if (response.body && req.method !== 'HEAD') {\n await pipeToNodeResponse(response.body, originalResponse, waitUntil);\n } else {\n originalResponse.end();\n }\n }\n}\n\n//# sourceMappingURL=send-response.js.map","import { NEXT_INTERCEPTION_MARKER_PREFIX, NEXT_QUERY_PARAM_PREFIX } from '../../lib/constants';\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */ export function fromNodeOutgoingHttpHeaders(nodeHeaders) {\n const headers = new Headers();\n for (let [key, value] of Object.entries(nodeHeaders)){\n const values = Array.isArray(value) ? value : [\n value\n ];\n for (let v of values){\n if (typeof v === 'undefined') continue;\n if (typeof v === 'number') {\n v = v.toString();\n }\n headers.append(key, v);\n }\n }\n return headers;\n}\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/ export function splitCookiesString(cookiesString) {\n var cookiesStrings = [];\n var pos = 0;\n var start;\n var ch;\n var lastComma;\n var nextStart;\n var cookiesSeparatorFound;\n function skipWhitespace() {\n while(pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))){\n pos += 1;\n }\n return pos < cookiesString.length;\n }\n function notSpecialChar() {\n ch = cookiesString.charAt(pos);\n return ch !== '=' && ch !== ';' && ch !== ',';\n }\n while(pos < cookiesString.length){\n start = pos;\n cookiesSeparatorFound = false;\n while(skipWhitespace()){\n ch = cookiesString.charAt(pos);\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos;\n pos += 1;\n skipWhitespace();\n nextStart = pos;\n while(pos < cookiesString.length && notSpecialChar()){\n pos += 1;\n }\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true;\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart;\n cookiesStrings.push(cookiesString.substring(start, lastComma));\n start = pos;\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1;\n }\n } else {\n pos += 1;\n }\n }\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length));\n }\n }\n return cookiesStrings;\n}\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */ export function toNodeOutgoingHttpHeaders(headers) {\n const nodeHeaders = {};\n const cookies = [];\n if (headers) {\n for (const [key, value] of headers.entries()){\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value));\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies;\n } else {\n nodeHeaders[key] = value;\n }\n }\n }\n return nodeHeaders;\n}\n/**\n * Validate the correctness of a user-provided URL.\n */ export function validateURL(url) {\n try {\n return String(new URL(String(url)));\n } catch (error) {\n throw Object.defineProperty(new Error(`URL is malformed \"${String(url)}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`, {\n cause: error\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E61\",\n enumerable: false,\n configurable: true\n });\n }\n}\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */ export function normalizeNextQueryParam(key) {\n const prefixes = [\n NEXT_QUERY_PARAM_PREFIX,\n NEXT_INTERCEPTION_MARKER_PREFIX\n ];\n for (const prefix of prefixes){\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length);\n }\n }\n return null;\n}\n\n//# sourceMappingURL=utils.js.map","import { AppRenderSpan, NextNodeServerSpan } from './trace/constants';\nimport { getTracer, SpanKind } from './trace/tracer';\nimport { CACHE_ONE_YEAR_SECONDS, INFINITE_CACHE, NEXT_CACHE_TAG_MAX_ITEMS, NEXT_CACHE_TAG_MAX_LENGTH } from '../../lib/constants';\nimport { markCurrentScopeAsDynamic } from '../app-render/dynamic-rendering';\nimport { makeHangingPromise } from '../dynamic-rendering-utils';\nimport { createDedupeFetch } from './dedupe-fetch';\nimport { getCacheSignal } from '../app-render/work-unit-async-storage.external';\nimport { CachedRouteKind, IncrementalCacheKind } from '../response-cache';\nimport { cloneResponse } from './clone-response';\nimport { RenderStage } from '../app-render/staged-rendering';\nconst isEdgeRuntime = process.env.NEXT_RUNTIME === 'edge';\nexport const NEXT_PATCH_SYMBOL = Symbol.for('next-patch');\nfunction isFetchPatched() {\n return globalThis[NEXT_PATCH_SYMBOL] === true;\n}\nexport function validateRevalidate(revalidateVal, route) {\n try {\n let normalizedRevalidate = undefined;\n if (revalidateVal === false) {\n normalizedRevalidate = INFINITE_CACHE;\n } else if (typeof revalidateVal === 'number' && !isNaN(revalidateVal) && revalidateVal > -1) {\n normalizedRevalidate = revalidateVal;\n } else if (typeof revalidateVal !== 'undefined') {\n throw Object.defineProperty(new Error(`Invalid revalidate value \"${revalidateVal}\" on \"${route}\", must be a non-negative number or false`), \"__NEXT_ERROR_CODE\", {\n value: \"E179\",\n enumerable: false,\n configurable: true\n });\n }\n return normalizedRevalidate;\n } catch (err) {\n // handle client component error from attempting to check revalidate value\n if (err instanceof Error && err.message.includes('Invalid revalidate')) {\n throw err;\n }\n return undefined;\n }\n}\nexport function validateTags(tags, description) {\n const validTags = [];\n const invalidTags = [];\n for(let i = 0; i < tags.length; i++){\n const tag = tags[i];\n if (typeof tag !== 'string') {\n invalidTags.push({\n tag,\n reason: 'invalid type, must be a string'\n });\n } else if (tag.length > NEXT_CACHE_TAG_MAX_LENGTH) {\n invalidTags.push({\n tag,\n reason: `exceeded max length of ${NEXT_CACHE_TAG_MAX_LENGTH}`\n });\n } else {\n validTags.push(tag);\n }\n if (validTags.length > NEXT_CACHE_TAG_MAX_ITEMS) {\n console.warn(`Warning: exceeded max tag count for ${description}, dropped tags:`, tags.slice(i).join(', '));\n break;\n }\n }\n if (invalidTags.length > 0) {\n console.warn(`Warning: invalid tags passed to ${description}: `);\n for (const { tag, reason } of invalidTags){\n console.log(`tag: \"${tag}\" ${reason}`);\n }\n }\n return validTags;\n}\nfunction trackFetchMetric(workStore, ctx) {\n if (!workStore.shouldTrackFetchMetrics) {\n return;\n }\n workStore.fetchMetrics ??= [];\n workStore.fetchMetrics.push({\n ...ctx,\n end: performance.timeOrigin + performance.now(),\n idx: workStore.nextFetchId || 0\n });\n}\nasync function createCachedPrerenderResponse(res, cacheKey, incrementalCacheContext, incrementalCache, revalidate, handleUnlock) {\n // We are prerendering at build time or revalidate time with cacheComponents so we\n // need to buffer the response so we can guarantee it can be read in a\n // microtask.\n const bodyBuffer = await res.arrayBuffer();\n const fetchedData = {\n headers: Object.fromEntries(res.headers.entries()),\n body: Buffer.from(bodyBuffer).toString('base64'),\n status: res.status,\n url: res.url\n };\n // We can skip setting the serverComponentsHmrCache because we aren't in dev\n // mode.\n if (incrementalCacheContext) {\n await incrementalCache.set(cacheKey, {\n kind: CachedRouteKind.FETCH,\n data: fetchedData,\n revalidate\n }, incrementalCacheContext);\n }\n await handleUnlock();\n // We return a new Response to the caller.\n return new Response(bodyBuffer, {\n headers: res.headers,\n status: res.status,\n statusText: res.statusText\n });\n}\nasync function createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheContext, incrementalCache, serverComponentsHmrCache, revalidate, input, handleUnlock, signal) {\n // We're cloning the response using this utility because there exists a bug in\n // the undici library around response cloning. See the following pull request\n // for more details: https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(res);\n // We are dynamically rendering including dev mode. We want to return the\n // response to the caller as soon as possible because it might stream over a\n // very long time.\n const cacheSetPromise = cloned1.arrayBuffer().then(async (arrayBuffer)=>{\n const bodyBuffer = Buffer.from(arrayBuffer);\n const fetchedData = {\n headers: Object.fromEntries(cloned1.headers.entries()),\n body: bodyBuffer.toString('base64'),\n status: cloned1.status,\n url: cloned1.url\n };\n serverComponentsHmrCache == null ? void 0 : serverComponentsHmrCache.set(cacheKey, fetchedData);\n if (incrementalCacheContext) {\n await incrementalCache.set(cacheKey, {\n kind: CachedRouteKind.FETCH,\n data: fetchedData,\n revalidate\n }, incrementalCacheContext);\n }\n }).catch((error)=>{\n // Don't warn if the request was aborted intentionally.\n if (!(signal == null ? void 0 : signal.aborted)) {\n console.warn(`Failed to set fetch cache`, input, error);\n }\n }).finally(handleUnlock);\n const pendingRevalidateKey = `cache-set-${cacheKey}`;\n const pendingRevalidates = workStore.pendingRevalidates ??= {};\n let pendingRevalidatePromise = Promise.resolve();\n if (pendingRevalidateKey in pendingRevalidates) {\n // There is already a pending revalidate entry that we need to await to\n // avoid race conditions.\n pendingRevalidatePromise = pendingRevalidates[pendingRevalidateKey];\n }\n pendingRevalidates[pendingRevalidateKey] = pendingRevalidatePromise.then(()=>cacheSetPromise).finally(()=>{\n // If the pending revalidate is not present in the store, then we have\n // nothing to delete.\n if (!(pendingRevalidates == null ? void 0 : pendingRevalidates[pendingRevalidateKey])) {\n return;\n }\n delete pendingRevalidates[pendingRevalidateKey];\n });\n return cloned2;\n}\nexport function createPatchedFetcher(originFetch, { workAsyncStorage, workUnitAsyncStorage }) {\n // Create the patched fetch function.\n const patched = async function fetch(input, init) {\n var _init_method, _init_next;\n let url;\n try {\n url = new URL(input instanceof Request ? input.url : input);\n url.username = '';\n url.password = '';\n } catch {\n // Error caused by malformed URL should be handled by native fetch\n url = undefined;\n }\n const fetchUrl = (url == null ? void 0 : url.href) ?? '';\n const method = (init == null ? void 0 : (_init_method = init.method) == null ? void 0 : _init_method.toUpperCase()) || 'GET';\n // Do create a new span trace for internal fetches in the\n // non-verbose mode.\n const isInternal = (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next.internal) === true;\n const hideSpan = process.env.NEXT_OTEL_FETCH_DISABLED === '1';\n // We don't track fetch metrics for internal fetches\n // so it's not critical that we have a start time, as it won't be recorded.\n // This is to workaround a flaky issue where performance APIs might\n // not be available and will require follow-up investigation.\n const fetchStart = isInternal ? undefined : performance.timeOrigin + performance.now();\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n let cacheSignal = workUnitStore ? getCacheSignal(workUnitStore) : null;\n if (cacheSignal) {\n cacheSignal.beginRead();\n }\n const result = getTracer().trace(isInternal ? NextNodeServerSpan.internalFetch : AppRenderSpan.fetch, {\n hideSpan,\n kind: SpanKind.CLIENT,\n spanName: [\n 'fetch',\n method,\n fetchUrl\n ].filter(Boolean).join(' '),\n attributes: {\n 'http.url': fetchUrl,\n 'http.method': method,\n 'net.peer.name': url == null ? void 0 : url.hostname,\n 'net.peer.port': (url == null ? void 0 : url.port) || undefined\n }\n }, async ()=>{\n var _getRequestMeta;\n // If this is an internal fetch, we should not do any special treatment.\n if (isInternal) {\n return originFetch(input, init);\n }\n // If the workStore is not available, we can't do any\n // special treatment of fetch, therefore fallback to the original\n // fetch implementation.\n if (!workStore) {\n return originFetch(input, init);\n }\n // We should also fallback to the original fetch implementation if we\n // are in draft mode, it does not constitute a static generation.\n if (workStore.isDraftMode) {\n return originFetch(input, init);\n }\n const isRequestInput = input && typeof input === 'object' && typeof input.method === 'string';\n const getRequestMeta = (field)=>{\n // If request input is present but init is not, retrieve from input first.\n const value = init == null ? void 0 : init[field];\n return value || (isRequestInput ? input[field] : null);\n };\n let finalRevalidate = undefined;\n const getNextField = (field)=>{\n var _init_next, _init_next1, _input_next;\n return typeof (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next[field]) !== 'undefined' ? init == null ? void 0 : (_init_next1 = init.next) == null ? void 0 : _init_next1[field] : isRequestInput ? (_input_next = input.next) == null ? void 0 : _input_next[field] : undefined;\n };\n // RequestInit doesn't keep extra fields e.g. next so it's\n // only available if init is used separate\n const originalFetchRevalidate = getNextField('revalidate');\n let currentFetchRevalidate = originalFetchRevalidate;\n const tags = validateTags(getNextField('tags') || [], `fetch ${input.toString()}`);\n let revalidateStore;\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n // TODO: Stop accumulating tags in client prerender. (fallthrough)\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n revalidateStore = workUnitStore;\n break;\n case 'request':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (revalidateStore) {\n if (Array.isArray(tags)) {\n // Collect tags onto parent caches or parent prerenders.\n const collectedTags = revalidateStore.tags ?? (revalidateStore.tags = []);\n for (const tag of tags){\n if (!collectedTags.includes(tag)) {\n collectedTags.push(tag);\n }\n }\n }\n }\n const implicitTags = workUnitStore == null ? void 0 : workUnitStore.implicitTags;\n let pageFetchCacheMode = workStore.fetchCache;\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'unstable-cache':\n // Inside unstable-cache we treat it the same as force-no-store on\n // the page.\n pageFetchCacheMode = 'force-no-store';\n break;\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n const isUsingNoStore = !!workStore.isUnstableNoStore;\n let currentFetchCacheConfig = getRequestMeta('cache');\n let cacheReason = '';\n let cacheWarning;\n if (typeof currentFetchCacheConfig === 'string' && typeof currentFetchRevalidate !== 'undefined') {\n // If the revalidate value conflicts with the cache value, we should warn the user and unset the conflicting values.\n const isConflictingRevalidate = // revalidate: 0 and cache: force-cache\n currentFetchCacheConfig === 'force-cache' && currentFetchRevalidate === 0 || // revalidate: >0 or revalidate: false and cache: no-store\n currentFetchCacheConfig === 'no-store' && (currentFetchRevalidate > 0 || currentFetchRevalidate === false);\n if (isConflictingRevalidate) {\n cacheWarning = `Specified \"cache: ${currentFetchCacheConfig}\" and \"revalidate: ${currentFetchRevalidate}\", only one should be specified.`;\n currentFetchCacheConfig = undefined;\n currentFetchRevalidate = undefined;\n }\n }\n const hasExplicitFetchCacheOptOut = // fetch config itself signals not to cache\n currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store' || // the fetch isn't explicitly caching and the segment level cache config signals not to cache\n // note: `pageFetchCacheMode` is also set by being in an unstable_cache context.\n pageFetchCacheMode === 'force-no-store' || pageFetchCacheMode === 'only-no-store';\n // If no explicit fetch cache mode is set, but dynamic = `force-dynamic` is set,\n // we shouldn't consider caching the fetch. This is because the `dynamic` cache\n // is considered a \"top-level\" cache mode, whereas something like `fetchCache` is more\n // fine-grained. Top-level modes are responsible for setting reasonable defaults for the\n // other configurations.\n const noFetchConfigAndForceDynamic = !pageFetchCacheMode && !currentFetchCacheConfig && !currentFetchRevalidate && workStore.forceDynamic;\n if (// force-cache was specified without a revalidate value. We set the revalidate value to false\n // which will signal the cache to not revalidate\n currentFetchCacheConfig === 'force-cache' && typeof currentFetchRevalidate === 'undefined') {\n currentFetchRevalidate = false;\n } else if (hasExplicitFetchCacheOptOut || noFetchConfigAndForceDynamic) {\n currentFetchRevalidate = 0;\n }\n if (currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store') {\n cacheReason = `cache: ${currentFetchCacheConfig}`;\n }\n finalRevalidate = validateRevalidate(currentFetchRevalidate, workStore.route);\n const _headers = getRequestMeta('headers');\n const initHeaders = typeof (_headers == null ? void 0 : _headers.get) === 'function' ? _headers : new Headers(_headers || {});\n const hasUnCacheableHeader = initHeaders.get('authorization') || initHeaders.get('cookie');\n const isUnCacheableMethod = ![\n 'get',\n 'head'\n ].includes(((_getRequestMeta = getRequestMeta('method')) == null ? void 0 : _getRequestMeta.toLowerCase()) || 'get');\n /**\n * We automatically disable fetch caching under the following conditions:\n * - Fetch cache configs are not set. Specifically:\n * - A page fetch cache mode is not set (export const fetchCache=...)\n * - A fetch cache mode is not set in the fetch call (fetch(url, { cache: ... }))\n * or the fetch cache mode is set to 'default'\n * - A fetch revalidate value is not set in the fetch call (fetch(url, { revalidate: ... }))\n * - OR the fetch comes after a configuration that triggered dynamic rendering (e.g., reading cookies())\n * and the fetch was considered uncacheable (e.g., POST method or has authorization headers)\n */ const hasNoExplicitCacheConfig = // eslint-disable-next-line eqeqeq\n pageFetchCacheMode == undefined && // eslint-disable-next-line eqeqeq\n (currentFetchCacheConfig == undefined || // when considering whether to opt into the default \"no-cache\" fetch semantics,\n // a \"default\" cache config should be treated the same as no cache config\n currentFetchCacheConfig === 'default') && // eslint-disable-next-line eqeqeq\n currentFetchRevalidate == undefined;\n let autoNoCache = Boolean((hasUnCacheableHeader || isUnCacheableMethod) && (revalidateStore == null ? void 0 : revalidateStore.revalidate) === 0);\n let isImplicitBuildTimeCache = false;\n if (!autoNoCache && hasNoExplicitCacheConfig) {\n // We don't enable automatic no-cache behavior during build-time\n // prerendering so that we can still leverage the fetch cache between\n // export workers.\n if (workStore.isBuildTimePrerendering) {\n isImplicitBuildTimeCache = true;\n } else {\n autoNoCache = true;\n }\n }\n // If we have no cache config, and we're in Dynamic I/O prerendering,\n // it'll be a dynamic call. We don't have to issue that dynamic call.\n if (hasNoExplicitCacheConfig && workUnitStore !== undefined) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n // While we don't want to do caching in the client scope we know the\n // fetch will be dynamic for cacheComponents so we may as well avoid the\n // call here. (fallthrough)\n case 'prerender-client':\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'validation-client':\n break;\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n switch(pageFetchCacheMode){\n case 'force-no-store':\n {\n cacheReason = 'fetchCache = force-no-store';\n break;\n }\n case 'only-no-store':\n {\n if (currentFetchCacheConfig === 'force-cache' || typeof finalRevalidate !== 'undefined' && finalRevalidate > 0) {\n throw Object.defineProperty(new Error(`cache: 'force-cache' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-no-store'`), \"__NEXT_ERROR_CODE\", {\n value: \"E448\",\n enumerable: false,\n configurable: true\n });\n }\n cacheReason = 'fetchCache = only-no-store';\n break;\n }\n case 'only-cache':\n {\n if (currentFetchCacheConfig === 'no-store') {\n throw Object.defineProperty(new Error(`cache: 'no-store' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-cache'`), \"__NEXT_ERROR_CODE\", {\n value: \"E521\",\n enumerable: false,\n configurable: true\n });\n }\n break;\n }\n case 'force-cache':\n {\n if (typeof currentFetchRevalidate === 'undefined' || currentFetchRevalidate === 0) {\n cacheReason = 'fetchCache = force-cache';\n finalRevalidate = INFINITE_CACHE;\n }\n break;\n }\n case 'default-cache':\n case 'default-no-store':\n case 'auto':\n case undefined:\n break;\n default:\n pageFetchCacheMode;\n }\n if (typeof finalRevalidate === 'undefined') {\n if (pageFetchCacheMode === 'default-cache' && !isUsingNoStore) {\n finalRevalidate = INFINITE_CACHE;\n cacheReason = 'fetchCache = default-cache';\n } else if (pageFetchCacheMode === 'default-no-store') {\n finalRevalidate = 0;\n cacheReason = 'fetchCache = default-no-store';\n } else if (isUsingNoStore) {\n finalRevalidate = 0;\n cacheReason = 'noStore call';\n } else if (autoNoCache) {\n finalRevalidate = 0;\n cacheReason = 'auto no cache';\n } else {\n // TODO: should we consider this case an invariant?\n cacheReason = 'auto cache';\n finalRevalidate = revalidateStore ? revalidateStore.revalidate : INFINITE_CACHE;\n }\n } else if (!cacheReason) {\n cacheReason = `revalidate: ${finalRevalidate}`;\n }\n if (// when force static is configured we don't bail from\n // `revalidate: 0` values\n !(workStore.forceStatic && finalRevalidate === 0) && // we don't consider autoNoCache to switch to dynamic for ISR\n !autoNoCache && // If the revalidate value isn't currently set or the value is less\n // than the current revalidate value, we should update the revalidate\n // value.\n revalidateStore && finalRevalidate < revalidateStore.revalidate) {\n // If we were setting the revalidate value to 0, we should try to\n // postpone instead first.\n if (finalRevalidate === 0) {\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n // If we're in an instant validation, a dynamic fetch won't\n // have time to resolve during the validation prerender anyway,\n // so we leave it hanging. This can cause false negatives in shared parents,\n // but we accept that for now, because client data fetching is non-idiomatic.\n // eslint-disable-next-line no-fallthrough\n case 'validation-client':\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n markCurrentScopeAsDynamic(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`);\n }\n // We only want to set the revalidate store's revalidate time if it\n // was explicitly set for the fetch call, i.e.\n // originalFetchRevalidate.\n if (revalidateStore && originalFetchRevalidate === finalRevalidate) {\n revalidateStore.revalidate = finalRevalidate;\n }\n }\n const isCacheableRevalidate = typeof finalRevalidate === 'number' && finalRevalidate > 0;\n let cacheKey;\n const { incrementalCache } = workStore;\n let isHmrRefresh = false;\n let serverComponentsHmrCache;\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'request':\n case 'cache':\n case 'private-cache':\n isHmrRefresh = workUnitStore.isHmrRefresh ?? false;\n serverComponentsHmrCache = workUnitStore.serverComponentsHmrCache;\n break;\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (incrementalCache && (isCacheableRevalidate || serverComponentsHmrCache)) {\n try {\n cacheKey = await incrementalCache.generateCacheKey(fetchUrl, isRequestInput ? input : init);\n } catch (err) {\n console.error(`Failed to generate cache key for`, input);\n }\n }\n const fetchIdx = workStore.nextFetchId ?? 1;\n workStore.nextFetchId = fetchIdx + 1;\n let handleUnlock = ()=>{};\n const doOriginalFetch = async (isStale, cacheReasonOverride)=>{\n const requestInputFields = [\n 'cache',\n 'credentials',\n 'headers',\n 'integrity',\n 'keepalive',\n 'method',\n 'mode',\n 'redirect',\n 'referrer',\n 'referrerPolicy',\n 'window',\n 'duplex',\n // don't pass through signal when revalidating\n ...isStale ? [] : [\n 'signal'\n ]\n ];\n if (isRequestInput) {\n const reqInput = input;\n const reqOptions = {\n body: reqInput._ogBody || reqInput.body\n };\n for (const field of requestInputFields){\n // @ts-expect-error custom fields\n reqOptions[field] = reqInput[field];\n }\n input = new Request(reqInput.url, reqOptions);\n } else if (init) {\n const { _ogBody, body, signal, ...otherInput } = init;\n init = {\n ...otherInput,\n body: _ogBody || body,\n signal: isStale ? undefined : signal\n };\n }\n // add metadata to init without editing the original\n const clonedInit = {\n ...init,\n next: {\n ...init == null ? void 0 : init.next,\n fetchType: 'origin',\n fetchIdx\n }\n };\n return originFetch(input, clonedInit).then(async (res)=>{\n if (!isStale && fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason: cacheReasonOverride || cacheReason,\n cacheStatus: finalRevalidate === 0 || cacheReasonOverride ? 'skip' : 'miss',\n cacheWarning,\n status: res.status,\n method: clonedInit.method || 'GET'\n });\n }\n if (res.status === 200 && incrementalCache && cacheKey && (isCacheableRevalidate || serverComponentsHmrCache)) {\n const normalizedRevalidate = finalRevalidate >= INFINITE_CACHE ? CACHE_ONE_YEAR_SECONDS : finalRevalidate;\n const incrementalCacheConfig = isCacheableRevalidate ? {\n fetchCache: true,\n fetchUrl,\n fetchIdx,\n tags,\n isImplicitBuildTimeCache\n } : undefined;\n switch(workUnitStore == null ? void 0 : workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock);\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering && workUnitStore.cacheSignal && isCacheableRevalidate) {\n // We're filling caches for a staged render with an\n // explicit cache config, so we need to wait for the\n // response to finish instead of streaming. For HMR-only\n // caching (no explicit revalidate), we fall through to\n // createCachedDynamicResponse which handles streaming\n // and abort gracefully.\n return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock);\n }\n // fallthrough\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n case undefined:\n return createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheConfig, incrementalCache, serverComponentsHmrCache, normalizedRevalidate, input, handleUnlock, getRequestMeta('signal'));\n default:\n workUnitStore;\n }\n }\n // we had response that we determined shouldn't be cached so we return it\n // and don't cache it. This also needs to unlock the cache lock we acquired.\n await handleUnlock();\n return res;\n }).catch((error)=>{\n handleUnlock();\n throw error;\n });\n };\n let cacheReasonOverride;\n let isForegroundRevalidate = false;\n let isHmrRefreshCache = false;\n if (cacheKey && incrementalCache) {\n let cachedFetchData;\n if (isHmrRefresh && serverComponentsHmrCache) {\n cachedFetchData = serverComponentsHmrCache.get(cacheKey);\n isHmrRefreshCache = true;\n }\n if (isCacheableRevalidate && !cachedFetchData) {\n handleUnlock = await incrementalCache.lock(cacheKey);\n const entry = workStore.isOnDemandRevalidate ? null : await incrementalCache.get(cacheKey, {\n kind: IncrementalCacheKind.FETCH,\n revalidate: finalRevalidate,\n fetchUrl,\n fetchIdx,\n tags,\n softTags: implicitTags == null ? void 0 : implicitTags.tags\n });\n if (hasNoExplicitCacheConfig && workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n // We sometimes use the cache to dedupe fetches that do not\n // specify a cache configuration. In these cases we want to\n // make sure we still exclude them from prerenders if\n // cacheComponents is on so we introduce an artificial task boundary\n // here.\n await getTimeoutBoundary();\n break;\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (entry) {\n await handleUnlock();\n } else {\n // in dev, incremental cache response will be null in case the browser adds `cache-control: no-cache` in the request headers\n // TODO: it seems like we also hit this after revalidates in dev?\n cacheReasonOverride = 'cache-control: no-cache (hard refresh)';\n }\n if ((entry == null ? void 0 : entry.value) && entry.value.kind === CachedRouteKind.FETCH) {\n // when stale and is revalidating we wait for fresh data\n // so the revalidated entry has the updated data\n if (workStore.isStaticGeneration && entry.isStale) {\n isForegroundRevalidate = true;\n } else {\n if (entry.isStale) {\n workStore.pendingRevalidates ??= {};\n if (!workStore.pendingRevalidates[cacheKey]) {\n const pendingRevalidate = doOriginalFetch(true).then(async (response)=>({\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText\n })).finally(()=>{\n workStore.pendingRevalidates ??= {};\n delete workStore.pendingRevalidates[cacheKey || ''];\n });\n // Attach the empty catch here so we don't get a \"unhandled\n // promise rejection\" warning.\n pendingRevalidate.catch(console.error);\n workStore.pendingRevalidates[cacheKey] = pendingRevalidate;\n }\n }\n cachedFetchData = entry.value.data;\n }\n }\n }\n if (cachedFetchData) {\n if (fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason,\n cacheStatus: isHmrRefreshCache ? 'hmr' : 'hit',\n cacheWarning,\n status: cachedFetchData.status || 200,\n method: (init == null ? void 0 : init.method) || 'GET'\n });\n }\n const response = new Response(Buffer.from(cachedFetchData.body, 'base64'), {\n headers: cachedFetchData.headers,\n status: cachedFetchData.status\n });\n Object.defineProperty(response, 'url', {\n value: cachedFetchData.url\n });\n return response;\n }\n }\n if ((workStore.isStaticGeneration || process.env.NODE_ENV === 'development' && process.env.__NEXT_CACHE_COMPONENTS && workUnitStore && // eslint-disable-next-line no-restricted-syntax\n workUnitStore.type === 'request' && workUnitStore.stagedRendering) && init && typeof init === 'object') {\n const { cache } = init;\n // Delete `cache` property as Cloudflare Workers will throw an error\n if (isEdgeRuntime) delete init.cache;\n if (cache === 'no-store') {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'validation-client':\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n markCurrentScopeAsDynamic(workStore, workUnitStore, `no-store fetch ${input} ${workStore.route}`);\n }\n const hasNextConfig = 'next' in init;\n const { next = {} } = init;\n if (typeof next.revalidate === 'number' && revalidateStore && next.revalidate < revalidateStore.revalidate) {\n if (next.revalidate === 0) {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'validation-client':\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n markCurrentScopeAsDynamic(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`);\n }\n if (!workStore.forceStatic || next.revalidate !== 0) {\n revalidateStore.revalidate = next.revalidate;\n }\n }\n if (hasNextConfig) delete init.next;\n }\n // if we are revalidating the whole page via time or on-demand and\n // the fetch cache entry is stale we should still de-dupe the\n // origin hit if it's a cache-able entry\n if (cacheKey && isForegroundRevalidate) {\n const pendingRevalidateKey = cacheKey;\n workStore.pendingRevalidates ??= {};\n let pendingRevalidate = workStore.pendingRevalidates[pendingRevalidateKey];\n if (pendingRevalidate) {\n const revalidatedResult = await pendingRevalidate;\n return new Response(revalidatedResult.body, {\n headers: revalidatedResult.headers,\n status: revalidatedResult.status,\n statusText: revalidatedResult.statusText\n });\n }\n // We used to just resolve the Response and clone it however for\n // static generation with cacheComponents we need the response to be able to\n // be resolved in a microtask and cloning the response will never have\n // a body that can resolve in a microtask in node (as observed through\n // experimentation) So instead we await the body and then when it is\n // available we construct manually cloned Response objects with the\n // body as an ArrayBuffer. This will be resolvable in a microtask\n // making it compatible with cacheComponents.\n const pendingResponse = doOriginalFetch(true, cacheReasonOverride)// We're cloning the response using this utility because there\n // exists a bug in the undici library around response cloning.\n // See the following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n .then(cloneResponse);\n pendingRevalidate = pendingResponse.then(async (responses)=>{\n const response = responses[0];\n return {\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText\n };\n }).finally(()=>{\n var _workStore_pendingRevalidates;\n // If the pending revalidate is not present in the store, then\n // we have nothing to delete.\n if (!((_workStore_pendingRevalidates = workStore.pendingRevalidates) == null ? void 0 : _workStore_pendingRevalidates[pendingRevalidateKey])) {\n return;\n }\n delete workStore.pendingRevalidates[pendingRevalidateKey];\n });\n // Attach the empty catch here so we don't get a \"unhandled promise\n // rejection\" warning\n pendingRevalidate.catch(()=>{});\n workStore.pendingRevalidates[pendingRevalidateKey] = pendingRevalidate;\n return pendingResponse.then((responses)=>responses[1]);\n } else {\n return doOriginalFetch(false, cacheReasonOverride);\n }\n });\n if (cacheSignal) {\n try {\n return await result;\n } finally{\n if (cacheSignal) {\n cacheSignal.endRead();\n }\n }\n }\n return result;\n };\n // Attach the necessary properties to the patched fetch function.\n // We don't use this to determine if the fetch function has been patched,\n // but for external consumers to determine if the fetch function has been\n // patched.\n patched.__nextPatched = true;\n patched.__nextGetStaticStore = ()=>workAsyncStorage;\n patched._nextOriginalFetch = originFetch;\n globalThis[NEXT_PATCH_SYMBOL] = true;\n // Assign the function name also as a name property, so that it's preserved\n // even when mangling is enabled.\n Object.defineProperty(patched, 'name', {\n value: 'fetch',\n writable: false\n });\n return patched;\n}\n// we patch fetch to collect cache information used for\n// determining if a page is static or not\nexport function patchFetch(options) {\n // If we've already patched fetch, we should not patch it again.\n if (isFetchPatched()) return;\n // Grab the original fetch function. We'll attach this so we can use it in\n // the patched fetch function.\n const original = createDedupeFetch(globalThis.fetch);\n // Set the global fetch to the patched fetch.\n globalThis.fetch = createPatchedFetcher(original, options);\n}\nlet currentTimeoutBoundary = null;\nfunction getTimeoutBoundary() {\n if (!currentTimeoutBoundary) {\n currentTimeoutBoundary = new Promise((r)=>{\n setTimeout(()=>{\n currentTimeoutBoundary = null;\n r();\n }, 0);\n });\n }\n return currentTimeoutBoundary;\n}\n\n//# sourceMappingURL=patch-fetch.js.map","/**\n * This file provides some helpers that should be used in conjunction with\n * explicit environment checks. When combined with the environment checks, it\n * will ensure that the correct typings are used as well as enable code\n * elimination.\n */ /**\n * Type guard to determine if a request is a WebNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base request is a WebNextRequest.\n */ export const isWebNextRequest = (req)=>process.env.NEXT_RUNTIME === 'edge';\n/**\n * Type guard to determine if a response is a WebNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base response is a WebNextResponse.\n */ export const isWebNextResponse = (res)=>process.env.NEXT_RUNTIME === 'edge';\n/**\n * Type guard to determine if a request is a NodeNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base request is a NodeNextRequest.\n */ export const isNodeNextRequest = (req)=>process.env.NEXT_RUNTIME !== 'edge';\n/**\n * Type guard to determine if a response is a NodeNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base response is a NodeNextResponse.\n */ export const isNodeNextResponse = (res)=>process.env.NEXT_RUNTIME !== 'edge';\n\n//# sourceMappingURL=helpers.js.map","import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash';\nimport { isGroupSegment } from '../../segment';\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */ export function normalizeAppPath(route) {\n return ensureLeadingSlash(route.split('/').reduce((pathname, segment, index, segments)=>{\n // Empty segments are ignored.\n if (!segment) {\n return pathname;\n }\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname;\n }\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname;\n }\n // The last segment (if it's a leaf) should be ignored.\n if ((segment === 'page' || segment === 'route') && index === segments.length - 1) {\n return pathname;\n }\n return `${pathname}/${segment}`;\n }, ''));\n}\n/**\n * Comparator for sorting app paths so that parallel slot paths (containing\n * `/@`) come before the children/root page path. This ensures the last item\n * is always the children page, which is what `renderPageComponent` reads via\n * `appPaths[appPaths.length - 1]`.\n *\n * Without this, route group prefixes like `(group)` (char code 0x28) sort\n * before `@` (0x40), causing the children page to sort first instead of last\n * and leading to a manifest mismatch / 404 in webpack dev mode.\n */ export function compareAppPaths(a, b) {\n const aHasSlot = a.includes('/@');\n const bHasSlot = b.includes('/@');\n if (aHasSlot && !bHasSlot) return -1;\n if (!aHasSlot && bHasSlot) return 1;\n return a.localeCompare(b);\n}\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */ export function normalizeRscURL(url) {\n return url.replace(/\\.rsc($|\\?)/, // $1 ensures `?` is preserved\n '$1');\n}\n\n//# sourceMappingURL=app-paths.js.map","import type { DomainLocale } from '../../../server/config-shared'\n\nexport function detectDomainLocale(\n domainItems?: readonly DomainLocale[],\n hostname?: string,\n detectedLocale?: string\n) {\n if (!domainItems) return\n\n if (detectedLocale) {\n detectedLocale = detectedLocale.toLowerCase()\n }\n\n for (const item of domainItems) {\n // remove port if present\n const domainHostname = item.domain?.split(':', 1)[0].toLowerCase()\n if (\n hostname === domainHostname ||\n detectedLocale === item.defaultLocale.toLowerCase() ||\n item.locales?.some((locale) => locale.toLowerCase() === detectedLocale)\n ) {\n return item\n }\n }\n}\n","/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n","/**\n * Given a path this function will find the pathname, query and hash and return\n * them. This is useful to parse full paths on the client side.\n * @param path A path to parse e.g. /foo/bar?id=1#hash\n */\nexport function parsePath(path: string) {\n const hashIndex = path.indexOf('#')\n const queryIndex = path.indexOf('?')\n const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex)\n\n if (hasQuery || hashIndex > -1) {\n return {\n pathname: path.substring(0, hasQuery ? queryIndex : hashIndex),\n query: hasQuery\n ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined)\n : '',\n hash: hashIndex > -1 ? path.slice(hashIndex) : '',\n }\n }\n\n return { pathname: path, query: '', hash: '' }\n}\n","import { parsePath } from './parse-path'\n\n/**\n * Adds the provided prefix to the given path. It first ensures that the path\n * is indeed starting with a slash.\n */\nexport function addPathPrefix(path: string, prefix?: string) {\n if (!path.startsWith('/') || !prefix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${prefix}${pathname}${query}${hash}`\n}\n","import { parsePath } from './parse-path'\n\n/**\n * Similarly to `addPathPrefix`, this function adds a suffix at the end on the\n * provided path. It also works only for paths ensuring the argument starts\n * with a slash.\n */\nexport function addPathSuffix(path: string, suffix?: string) {\n if (!path.startsWith('/') || !suffix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${pathname}${suffix}${query}${hash}`\n}\n","import { parsePath } from './parse-path'\n\n/**\n * Checks if a given path starts with a given prefix. It ensures it matches\n * exactly without containing extra chars. e.g. prefix /docs should replace\n * for /docs, /docs/, /docs/a but not /docsss\n * @param path The path to check.\n * @param prefix The prefix to check against.\n */\nexport function pathHasPrefix(path: string, prefix: string) {\n if (typeof path !== 'string') {\n return false\n }\n\n const { pathname } = parsePath(path)\n return pathname === prefix || pathname.startsWith(prefix + '/')\n}\n","import { addPathPrefix } from './add-path-prefix'\nimport { pathHasPrefix } from './path-has-prefix'\n\n/**\n * For a given path and a locale, if the locale is given, it will prefix the\n * locale. The path shouldn't be an API path. If a default locale is given the\n * prefix will be omitted if the locale is already the default locale.\n */\nexport function addLocale(\n path: string,\n locale?: string | false,\n defaultLocale?: string,\n ignorePrefix?: boolean\n) {\n // If no locale was given or the locale is the default locale, we don't need\n // to prefix the path.\n if (!locale || locale === defaultLocale) return path\n\n const lower = path.toLowerCase()\n\n // If the path is an API path or the path already has the locale prefix, we\n // don't need to prefix the path.\n if (!ignorePrefix) {\n if (pathHasPrefix(lower, '/api')) return path\n if (pathHasPrefix(lower, `/${locale.toLowerCase()}`)) return path\n }\n\n // Add the locale prefix to the path.\n return addPathPrefix(path, `/${locale}`)\n}\n","import type { NextPathnameInfo } from './get-next-pathname-info'\nimport { removeTrailingSlash } from './remove-trailing-slash'\nimport { addPathPrefix } from './add-path-prefix'\nimport { addPathSuffix } from './add-path-suffix'\nimport { addLocale } from './add-locale'\n\ninterface ExtendedInfo extends NextPathnameInfo {\n defaultLocale?: string\n ignorePrefix?: boolean\n}\n\nexport function formatNextPathnameInfo(info: ExtendedInfo) {\n let pathname = addLocale(\n info.pathname,\n info.locale,\n info.buildId ? undefined : info.defaultLocale,\n info.ignorePrefix\n )\n\n if (info.buildId || !info.trailingSlash) {\n pathname = removeTrailingSlash(pathname)\n }\n\n if (info.buildId) {\n pathname = addPathSuffix(\n addPathPrefix(pathname, `/_next/data/${info.buildId}`),\n info.pathname === '/' ? 'index.json' : '.json'\n )\n }\n\n pathname = addPathPrefix(pathname, info.basePath)\n return !info.buildId && info.trailingSlash\n ? !pathname.endsWith('/')\n ? addPathSuffix(pathname, '/')\n : pathname\n : removeTrailingSlash(pathname)\n}\n","import type { OutgoingHttpHeaders } from 'http'\n\n/**\n * Takes an object with a hostname property (like a parsed URL) and some\n * headers that may contain Host and returns the preferred hostname.\n * @param parsed An object containing a hostname property.\n * @param headers A dictionary with headers containing a `host`.\n */\nexport function getHostname(\n parsed: { hostname?: string | null },\n headers?: OutgoingHttpHeaders\n): string | undefined {\n // Get the hostname from the headers if it exists, otherwise use the parsed\n // hostname.\n let hostname: string\n if (headers?.host && !Array.isArray(headers.host)) {\n hostname = headers.host.toString().split(':', 1)[0]\n } else if (parsed.hostname) {\n hostname = parsed.hostname\n } else return\n\n return hostname.toLowerCase()\n}\n","export interface PathLocale {\n detectedLocale?: string\n pathname: string\n}\n\n/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */\nconst cache = new WeakMap()\n\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */\nexport function normalizeLocalePath(\n pathname: string,\n locales?: readonly string[]\n): PathLocale {\n // If locales is undefined, return the pathname as is.\n if (!locales) return { pathname }\n\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales)\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale) => locale.toLowerCase())\n cache.set(locales, lowercasedLocales)\n }\n\n let detectedLocale: string | undefined\n\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2)\n\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return { pathname }\n\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase()\n\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment)\n if (index < 0) return { pathname }\n\n // Return the case-sensitive locale.\n detectedLocale = locales[index]\n\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/'\n\n return { pathname, detectedLocale }\n}\n","import { pathHasPrefix } from './path-has-prefix'\n\n/**\n * Given a path and a prefix it will remove the prefix when it exists in the\n * given path. It ensures it matches exactly without containing extra chars\n * and if the prefix is not there it will be noop.\n *\n * @param path The path to remove the prefix from.\n * @param prefix The prefix to be removed.\n */\nexport function removePathPrefix(path: string, prefix: string): string {\n // If the path doesn't start with the prefix we can return it as is. This\n // protects us from situations where the prefix is a substring of the path\n // prefix such as:\n //\n // For prefix: /blog\n //\n // /blog -> true\n // /blog/ -> true\n // /blog/1 -> true\n // /blogging -> false\n // /blogging/ -> false\n // /blogging/1 -> false\n if (!pathHasPrefix(path, prefix)) {\n return path\n }\n\n // Remove the prefix from the path via slicing.\n const withoutPrefix = path.slice(prefix.length)\n\n // If the path without the prefix starts with a `/` we can return it as is.\n if (withoutPrefix.startsWith('/')) {\n return withoutPrefix\n }\n\n // If the path without the prefix doesn't start with a `/` we need to add it\n // back to the path to make sure it's a valid path.\n return `/${withoutPrefix}`\n}\n","import { normalizeLocalePath } from '../../i18n/normalize-locale-path'\nimport { removePathPrefix } from './remove-path-prefix'\nimport { pathHasPrefix } from './path-has-prefix'\nimport type { I18NProvider } from '../../../../server/lib/i18n-provider'\n\nexport interface NextPathnameInfo {\n /**\n * The base path in case the pathname included it.\n */\n basePath?: string\n /**\n * The buildId for when the parsed URL is a data URL. Parsing it can be\n * disabled with the `parseData` option.\n */\n buildId?: string\n /**\n * If there was a locale in the pathname, this will hold its value.\n */\n locale?: string\n /**\n * The processed pathname without a base path, locale, or data URL elements\n * when parsing it is enabled.\n */\n pathname: string\n /**\n * A boolean telling if the pathname had a trailingSlash. This can be only\n * true if trailingSlash is enabled.\n */\n trailingSlash?: boolean\n}\n\ninterface Options {\n /**\n * When passed to true, this function will also parse Nextjs data URLs.\n */\n parseData?: boolean\n /**\n * A partial of the Next.js configuration to parse the URL.\n */\n nextConfig?: {\n basePath?: string\n i18n?: { locales?: readonly string[] } | null\n trailingSlash?: boolean\n }\n\n /**\n * If provided, this normalizer will be used to detect the locale instead of\n * the default locale detection.\n */\n i18nProvider?: I18NProvider\n}\n\nexport function getNextPathnameInfo(\n pathname: string,\n options: Options\n): NextPathnameInfo {\n const { basePath, i18n, trailingSlash } = options.nextConfig ?? {}\n const info: NextPathnameInfo = {\n pathname,\n trailingSlash: pathname !== '/' ? pathname.endsWith('/') : trailingSlash,\n }\n\n if (basePath && pathHasPrefix(info.pathname, basePath)) {\n info.pathname = removePathPrefix(info.pathname, basePath)\n info.basePath = basePath\n }\n let pathnameNoDataPrefix = info.pathname\n\n if (\n info.pathname.startsWith('/_next/data/') &&\n info.pathname.endsWith('.json')\n ) {\n const paths = info.pathname\n .replace(/^\\/_next\\/data\\//, '')\n .replace(/\\.json$/, '')\n .split('/')\n\n const buildId = paths[0]\n info.buildId = buildId\n pathnameNoDataPrefix =\n paths[1] !== 'index' ? `/${paths.slice(1).join('/')}` : '/'\n\n // update pathname with normalized if enabled although\n // we use normalized to populate locale info still\n if (options.parseData === true) {\n info.pathname = pathnameNoDataPrefix\n }\n }\n\n // If provided, use the locale route normalizer to detect the locale instead\n // of the function below.\n if (i18n) {\n let result = options.i18nProvider\n ? options.i18nProvider.analyze(info.pathname)\n : normalizeLocalePath(info.pathname, i18n.locales)\n\n info.locale = result.detectedLocale\n info.pathname = result.pathname ?? info.pathname\n\n if (!result.detectedLocale && info.buildId) {\n result = options.i18nProvider\n ? options.i18nProvider.analyze(pathnameNoDataPrefix)\n : normalizeLocalePath(pathnameNoDataPrefix, i18n.locales)\n\n if (result.detectedLocale) {\n info.locale = result.detectedLocale\n }\n }\n }\n return info\n}\n","import type { OutgoingHttpHeaders } from 'http'\nimport type { DomainLocale, I18NConfig } from '../config-shared'\nimport type { I18NProvider } from '../lib/i18n-provider'\n\nimport { detectDomainLocale } from '../../shared/lib/i18n/detect-domain-locale'\nimport { formatNextPathnameInfo } from '../../shared/lib/router/utils/format-next-pathname-info'\nimport { getHostname } from '../../shared/lib/get-hostname'\nimport { getNextPathnameInfo } from '../../shared/lib/router/utils/get-next-pathname-info'\n\ninterface Options {\n base?: string | URL\n headers?: OutgoingHttpHeaders\n forceLocale?: boolean\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig | null\n trailingSlash?: boolean\n }\n i18nProvider?: I18NProvider\n}\n\nconst REGEX_LOCALHOST_HOSTNAME =\n /^(?:127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\\[::1\\]|localhost)$/\n\nfunction parseURL(url: string | URL, base?: string | URL) {\n const parsed = new URL(String(url), base && String(base))\n if (REGEX_LOCALHOST_HOSTNAME.test(parsed.hostname)) {\n parsed.hostname = 'localhost'\n }\n return parsed\n}\n\nconst Internal = Symbol('NextURLInternal')\n\nexport class NextURL {\n private [Internal]: {\n basePath: string\n buildId?: string\n flightSearchParameters?: Record\n defaultLocale?: string\n domainLocale?: DomainLocale\n locale?: string\n options: Options\n trailingSlash?: boolean\n url: URL\n }\n\n constructor(input: string | URL, base?: string | URL, opts?: Options)\n constructor(input: string | URL, opts?: Options)\n constructor(\n input: string | URL,\n baseOrOpts?: string | URL | Options,\n opts?: Options\n ) {\n let base: undefined | string | URL\n let options: Options\n\n if (\n (typeof baseOrOpts === 'object' && 'pathname' in baseOrOpts) ||\n typeof baseOrOpts === 'string'\n ) {\n base = baseOrOpts\n options = opts || {}\n } else {\n options = opts || baseOrOpts || {}\n }\n\n this[Internal] = {\n url: parseURL(input, base ?? options.base),\n options: options,\n basePath: '',\n }\n\n this.analyze()\n }\n\n private analyze() {\n const info = getNextPathnameInfo(this[Internal].url.pathname, {\n nextConfig: this[Internal].options.nextConfig,\n parseData: !process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,\n i18nProvider: this[Internal].options.i18nProvider,\n })\n\n const hostname = getHostname(\n this[Internal].url,\n this[Internal].options.headers\n )\n this[Internal].domainLocale = this[Internal].options.i18nProvider\n ? this[Internal].options.i18nProvider.detectDomainLocale(hostname)\n : detectDomainLocale(\n this[Internal].options.nextConfig?.i18n?.domains,\n hostname\n )\n\n const defaultLocale =\n this[Internal].domainLocale?.defaultLocale ||\n this[Internal].options.nextConfig?.i18n?.defaultLocale\n\n this[Internal].url.pathname = info.pathname\n this[Internal].defaultLocale = defaultLocale\n this[Internal].basePath = info.basePath ?? ''\n this[Internal].buildId = info.buildId\n this[Internal].locale = info.locale ?? defaultLocale\n this[Internal].trailingSlash = info.trailingSlash\n }\n\n private formatPathname() {\n return formatNextPathnameInfo({\n basePath: this[Internal].basePath,\n buildId: this[Internal].buildId,\n defaultLocale: !this[Internal].options.forceLocale\n ? this[Internal].defaultLocale\n : undefined,\n locale: this[Internal].locale,\n pathname: this[Internal].url.pathname,\n trailingSlash: this[Internal].trailingSlash,\n })\n }\n\n private formatSearch() {\n return this[Internal].url.search\n }\n\n public get buildId() {\n return this[Internal].buildId\n }\n\n public set buildId(buildId: string | undefined) {\n this[Internal].buildId = buildId\n }\n\n public get locale() {\n return this[Internal].locale ?? ''\n }\n\n public set locale(locale: string) {\n if (\n !this[Internal].locale ||\n !this[Internal].options.nextConfig?.i18n?.locales.includes(locale)\n ) {\n throw new TypeError(\n `The NextURL configuration includes no locale \"${locale}\"`\n )\n }\n\n this[Internal].locale = locale\n }\n\n get defaultLocale() {\n return this[Internal].defaultLocale\n }\n\n get domainLocale() {\n return this[Internal].domainLocale\n }\n\n get searchParams() {\n return this[Internal].url.searchParams\n }\n\n get host() {\n return this[Internal].url.host\n }\n\n set host(value: string) {\n this[Internal].url.host = value\n }\n\n get hostname() {\n return this[Internal].url.hostname\n }\n\n set hostname(value: string) {\n this[Internal].url.hostname = value\n }\n\n get port() {\n return this[Internal].url.port\n }\n\n set port(value: string) {\n this[Internal].url.port = value\n }\n\n get protocol() {\n return this[Internal].url.protocol\n }\n\n set protocol(value: string) {\n this[Internal].url.protocol = value\n }\n\n get href() {\n const pathname = this.formatPathname()\n const search = this.formatSearch()\n return `${this.protocol}//${this.host}${pathname}${search}${this.hash}`\n }\n\n set href(url: string) {\n this[Internal].url = parseURL(url)\n this.analyze()\n }\n\n get origin() {\n return this[Internal].url.origin\n }\n\n get pathname() {\n return this[Internal].url.pathname\n }\n\n set pathname(value: string) {\n this[Internal].url.pathname = value\n }\n\n get hash() {\n return this[Internal].url.hash\n }\n\n set hash(value: string) {\n this[Internal].url.hash = value\n }\n\n get search() {\n return this[Internal].url.search\n }\n\n set search(value: string) {\n this[Internal].url.search = value\n }\n\n get password() {\n return this[Internal].url.password\n }\n\n set password(value: string) {\n this[Internal].url.password = value\n }\n\n get username() {\n return this[Internal].url.username\n }\n\n set username(value: string) {\n this[Internal].url.username = value\n }\n\n get basePath() {\n return this[Internal].basePath\n }\n\n set basePath(value: string) {\n this[Internal].basePath = value.startsWith('/') ? value : `/${value}`\n }\n\n toString() {\n return this.href\n }\n\n toJSON() {\n return this.href\n }\n\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n href: this.href,\n origin: this.origin,\n protocol: this.protocol,\n username: this.username,\n password: this.password,\n host: this.host,\n hostname: this.hostname,\n port: this.port,\n pathname: this.pathname,\n search: this.search,\n searchParams: this.searchParams,\n hash: this.hash,\n }\n }\n\n clone() {\n return new NextURL(String(this), this[Internal].options)\n }\n}\n","import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_NAV_DEPLOYMENT_ID_HEADER = 'x-nextjs-deployment-id'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\nexport const NEXT_RESUME_STATE_LENGTH_HEADER = 'x-next-resume-state-length'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\nexport const NEXT_CACHE_ROOT_PARAM_TAG_ID = '_N_RP_'\n\n// in seconds\nexport const CACHE_ONE_YEAR_SECONDS = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n","import type { OutgoingHttpHeaders } from 'http'\nimport {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../lib/constants'\n\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */\nexport function fromNodeOutgoingHttpHeaders(\n nodeHeaders: OutgoingHttpHeaders\n): Headers {\n const headers = new Headers()\n for (let [key, value] of Object.entries(nodeHeaders)) {\n const values = Array.isArray(value) ? value : [value]\n for (let v of values) {\n if (typeof v === 'undefined') continue\n if (typeof v === 'number') {\n v = v.toString()\n }\n\n headers.append(key, v)\n }\n }\n return headers\n}\n\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/\nexport function splitCookiesString(cookiesString: string) {\n var cookiesStrings = []\n var pos = 0\n var start\n var ch\n var lastComma\n var nextStart\n var cookiesSeparatorFound\n\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1\n }\n return pos < cookiesString.length\n }\n\n function notSpecialChar() {\n ch = cookiesString.charAt(pos)\n\n return ch !== '=' && ch !== ';' && ch !== ','\n }\n\n while (pos < cookiesString.length) {\n start = pos\n cookiesSeparatorFound = false\n\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos)\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos\n pos += 1\n\n skipWhitespace()\n nextStart = pos\n\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1\n }\n\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart\n cookiesStrings.push(cookiesString.substring(start, lastComma))\n start = pos\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1\n }\n } else {\n pos += 1\n }\n }\n\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length))\n }\n }\n\n return cookiesStrings\n}\n\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */\nexport function toNodeOutgoingHttpHeaders(\n headers: Headers\n): OutgoingHttpHeaders {\n const nodeHeaders: OutgoingHttpHeaders = {}\n const cookies: string[] = []\n if (headers) {\n for (const [key, value] of headers.entries()) {\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value))\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies\n } else {\n nodeHeaders[key] = value\n }\n }\n }\n return nodeHeaders\n}\n\n/**\n * Validate the correctness of a user-provided URL.\n */\nexport function validateURL(url: string | URL): string {\n try {\n return String(new URL(String(url)))\n } catch (error: any) {\n throw new Error(\n `URL is malformed \"${String(\n url\n )}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,\n { cause: error }\n )\n }\n}\n\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */\nexport function normalizeNextQueryParam(key: string): null | string {\n const prefixes = [NEXT_QUERY_PARAM_PREFIX, NEXT_INTERCEPTION_MARKER_PREFIX]\n for (const prefix of prefixes) {\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length)\n }\n }\n return null\n}\n","export class PageSignatureError extends Error {\n constructor({ page }: { page: string }) {\n super(`The middleware \"${page}\" accepts an async API directly with the form:\n \n export function middleware(request, event) {\n return NextResponse.redirect('/new-location')\n }\n \n Read more: https://nextjs.org/docs/messages/middleware-new-signature\n `)\n }\n}\n\nexport class RemovedPageError extends Error {\n constructor() {\n super(`The request.page has been deprecated in favour of \\`URLPattern\\`.\n Read more: https://nextjs.org/docs/messages/middleware-request-page\n `)\n }\n}\n\nexport class RemovedUAError extends Error {\n constructor() {\n super(`The request.ua has been removed in favour of \\`userAgent\\` function.\n Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n `)\n }\n}\n","export {\n RequestCookies,\n ResponseCookies,\n stringifyCookie,\n} from 'next/dist/compiled/@edge-runtime/cookies'\n","import type { I18NConfig } from '../../config-shared'\nimport { NextURL } from '../next-url'\nimport { toNodeOutgoingHttpHeaders, validateURL } from '../utils'\nimport { RemovedUAError, RemovedPageError } from '../error'\nimport { RequestCookies } from './cookies'\n\nexport const INTERNALS = Symbol('internal request')\n\n/**\n * This class extends the [Web `Request` API](https://developer.mozilla.org/docs/Web/API/Request) with additional convenience methods.\n *\n * Read more: [Next.js Docs: `NextRequest`](https://nextjs.org/docs/app/api-reference/functions/next-request)\n */\nexport class NextRequest extends Request {\n /** @internal */\n [INTERNALS]: {\n cookies: RequestCookies\n url: string\n nextUrl: NextURL\n }\n\n constructor(input: URL | RequestInfo, init: RequestInit = {}) {\n const url =\n typeof input !== 'string' && 'url' in input ? input.url : String(input)\n\n validateURL(url)\n\n // node Request instance requires duplex option when a body\n // is present or it errors, we don't handle this for\n // Request being passed in since it would have already\n // errored if this wasn't configured\n if (process.env.NEXT_RUNTIME !== 'edge') {\n if (init.body && init.duplex !== 'half') {\n init.duplex = 'half'\n }\n }\n\n if (input instanceof Request) super(input, init)\n else super(url, init)\n\n const nextUrl = new NextURL(url, {\n headers: toNodeOutgoingHttpHeaders(this.headers),\n nextConfig: init.nextConfig,\n })\n this[INTERNALS] = {\n cookies: new RequestCookies(this.headers),\n nextUrl,\n url: process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE\n ? url\n : nextUrl.toString(),\n }\n }\n\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n cookies: this.cookies,\n nextUrl: this.nextUrl,\n url: this.url,\n // rest of props come from Request\n bodyUsed: this.bodyUsed,\n cache: this.cache,\n credentials: this.credentials,\n destination: this.destination,\n headers: Object.fromEntries(this.headers),\n integrity: this.integrity,\n keepalive: this.keepalive,\n method: this.method,\n mode: this.mode,\n redirect: this.redirect,\n referrer: this.referrer,\n referrerPolicy: this.referrerPolicy,\n signal: this.signal,\n }\n }\n\n public get cookies() {\n return this[INTERNALS].cookies\n }\n\n public get nextUrl() {\n return this[INTERNALS].nextUrl\n }\n\n /**\n * @deprecated\n * `page` has been deprecated in favour of `URLPattern`.\n * Read more: https://nextjs.org/docs/messages/middleware-request-page\n */\n public get page() {\n throw new RemovedPageError()\n }\n\n /**\n * @deprecated\n * `ua` has been removed in favour of \\`userAgent\\` function.\n * Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n */\n public get ua() {\n throw new RemovedUAError()\n }\n\n public get url() {\n return this[INTERNALS].url\n }\n}\n\nexport interface RequestInit extends globalThis.RequestInit {\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig | null\n trailingSlash?: boolean\n }\n signal?: AbortSignal\n // see https://github.com/whatwg/fetch/pull/1457\n duplex?: 'half'\n}\n","export class ReflectAdapter {\n static get(\n target: T,\n prop: string | symbol,\n receiver: unknown\n ): any {\n const value = Reflect.get(target, prop, receiver)\n if (typeof value === 'function') {\n return value.bind(target)\n }\n\n return value\n }\n\n static set(\n target: T,\n prop: string | symbol,\n value: any,\n receiver: any\n ): boolean {\n return Reflect.set(target, prop, value, receiver)\n }\n\n static has(target: T, prop: string | symbol): boolean {\n return Reflect.has(target, prop)\n }\n\n static deleteProperty(\n target: T,\n prop: string | symbol\n ): boolean {\n return Reflect.deleteProperty(target, prop)\n }\n}\n","import { stringifyCookie } from '../../web/spec-extension/cookies'\nimport type { I18NConfig } from '../../config-shared'\nimport { NextURL } from '../next-url'\nimport { toNodeOutgoingHttpHeaders, validateURL } from '../utils'\nimport { ReflectAdapter } from './adapters/reflect'\n\nimport { ResponseCookies } from './cookies'\n\nconst INTERNALS = Symbol('internal response')\nconst REDIRECTS = new Set([301, 302, 303, 307, 308])\n\nfunction handleMiddlewareField(\n init: MiddlewareResponseInit | undefined,\n headers: Headers\n) {\n if (init?.request?.headers) {\n if (!(init.request.headers instanceof Headers)) {\n throw new Error('request.headers must be an instance of Headers')\n }\n\n const keys = []\n for (const [key, value] of init.request.headers) {\n headers.set('x-middleware-request-' + key, value)\n keys.push(key)\n }\n\n headers.set('x-middleware-override-headers', keys.join(','))\n }\n}\n\n/**\n * This class extends the [Web `Response` API](https://developer.mozilla.org/docs/Web/API/Response) with additional convenience methods.\n *\n * Read more: [Next.js Docs: `NextResponse`](https://nextjs.org/docs/app/api-reference/functions/next-response)\n */\nexport class NextResponse extends Response {\n [INTERNALS]: {\n cookies: ResponseCookies\n url?: NextURL\n body?: Body\n }\n\n constructor(body?: BodyInit | null, init: ResponseInit = {}) {\n super(body, init)\n\n const headers = this.headers\n const cookies = new ResponseCookies(headers)\n\n const cookiesProxy = new Proxy(cookies, {\n get(target, prop, receiver) {\n switch (prop) {\n case 'delete':\n case 'set': {\n return (...args: [string, string]) => {\n const result = Reflect.apply(target[prop], target, args)\n const newHeaders = new Headers(headers)\n\n if (result instanceof ResponseCookies) {\n headers.set(\n 'x-middleware-set-cookie',\n result\n .getAll()\n .map((cookie) => stringifyCookie(cookie))\n .join(',')\n )\n }\n\n handleMiddlewareField(init, newHeaders)\n return result\n }\n }\n default:\n return ReflectAdapter.get(target, prop, receiver)\n }\n },\n })\n\n this[INTERNALS] = {\n cookies: cookiesProxy,\n url: init.url\n ? new NextURL(init.url, {\n headers: toNodeOutgoingHttpHeaders(headers),\n nextConfig: init.nextConfig,\n })\n : undefined,\n }\n }\n\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n cookies: this.cookies,\n url: this.url,\n // rest of props come from Response\n body: this.body,\n bodyUsed: this.bodyUsed,\n headers: Object.fromEntries(this.headers),\n ok: this.ok,\n redirected: this.redirected,\n status: this.status,\n statusText: this.statusText,\n type: this.type,\n }\n }\n\n public get cookies() {\n return this[INTERNALS].cookies\n }\n\n static json(\n body: JsonBody,\n init?: ResponseInit\n ): NextResponse {\n const response: Response = Response.json(body, init)\n return new NextResponse(response.body, response)\n }\n\n static redirect(url: string | NextURL | URL, init?: number | ResponseInit) {\n const status = typeof init === 'number' ? init : (init?.status ?? 307)\n if (!REDIRECTS.has(status)) {\n throw new RangeError(\n 'Failed to execute \"redirect\" on \"response\": Invalid status code'\n )\n }\n const initObj = typeof init === 'object' ? init : {}\n const headers = new Headers(initObj?.headers)\n headers.set('Location', validateURL(url))\n\n return new NextResponse(null, {\n ...initObj,\n headers,\n status,\n })\n }\n\n static rewrite(\n destination: string | NextURL | URL,\n init?: MiddlewareResponseInit\n ) {\n const headers = new Headers(init?.headers)\n headers.set('x-middleware-rewrite', validateURL(destination))\n\n handleMiddlewareField(init, headers)\n return new NextResponse(null, { ...init, headers })\n }\n\n static next(init?: MiddlewareResponseInit) {\n const headers = new Headers(init?.headers)\n headers.set('x-middleware-next', '1')\n\n handleMiddlewareField(init, headers)\n return new NextResponse(null, { ...init, headers })\n }\n}\n\ninterface ResponseInit extends globalThis.ResponseInit {\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig\n trailingSlash?: boolean\n }\n url?: string\n}\n\ninterface ModifiedRequest {\n /**\n * If this is set, the request headers will be overridden with this value.\n */\n headers?: Headers\n}\n\ninterface MiddlewareResponseInit extends globalThis.ResponseInit {\n /**\n * These fields will override the request from clients.\n */\n request?: ModifiedRequest\n}\n","/**\n * @deprecated ImageResponse moved from \"next/server\" to \"next/og\" since Next.js 14, please import from \"next/og\" instead.\n * Migration with codemods: https://nextjs.org/docs/app/building-your-application/upgrading/codemods#next-og-import\n */\nexport function ImageResponse(): never {\n throw new Error(\n 'ImageResponse moved from \"next/server\" to \"next/og\" since Next.js 14, please import from \"next/og\" instead'\n )\n}\n","(()=>{var i={226:function(i,e){(function(o,a){\"use strict\";var r=\"1.0.35\",t=\"\",n=\"?\",s=\"function\",b=\"undefined\",w=\"object\",l=\"string\",d=\"major\",c=\"model\",u=\"name\",p=\"type\",m=\"vendor\",f=\"version\",h=\"architecture\",v=\"console\",g=\"mobile\",k=\"tablet\",x=\"smarttv\",_=\"wearable\",y=\"embedded\",q=350;var T=\"Amazon\",S=\"Apple\",z=\"ASUS\",N=\"BlackBerry\",A=\"Browser\",C=\"Chrome\",E=\"Edge\",O=\"Firefox\",U=\"Google\",j=\"Huawei\",P=\"LG\",R=\"Microsoft\",M=\"Motorola\",B=\"Opera\",V=\"Samsung\",D=\"Sharp\",I=\"Sony\",W=\"Viera\",F=\"Xiaomi\",G=\"Zebra\",H=\"Facebook\",L=\"Chromium OS\",Z=\"Mac OS\";var extend=function(i,e){var o={};for(var a in i){if(e[a]&&e[a].length%2===0){o[a]=e[a].concat(i[a])}else{o[a]=i[a]}}return o},enumerize=function(i){var e={};for(var o=0;o0){if(b.length===2){if(typeof b[1]==s){this[b[0]]=b[1].call(this,d)}else{this[b[0]]=b[1]}}else if(b.length===3){if(typeof b[1]===s&&!(b[1].exec&&b[1].test)){this[b[0]]=d?b[1].call(this,d,b[2]):a}else{this[b[0]]=d?d.replace(b[1],b[2]):a}}else if(b.length===4){this[b[0]]=d?b[3].call(this,d.replace(b[1],b[2])):a}}else{this[b]=d?d:a}}}}o+=2}},strMapper=function(i,e){for(var o in e){if(typeof e[o]===w&&e[o].length>0){for(var r=0;r2){i[c]=\"iPad\";i[p]=k}return i};this.getEngine=function(){var i={};i[u]=a;i[f]=a;rgxMapper.call(i,n,x.engine);return i};this.getOS=function(){var i={};i[u]=a;i[f]=a;rgxMapper.call(i,n,x.os);if(_&&!i[u]&&v&&v.platform!=\"Unknown\"){i[u]=v.platform.replace(/chrome os/i,L).replace(/macos/i,Z)}return i};this.getResult=function(){return{ua:this.getUA(),browser:this.getBrowser(),engine:this.getEngine(),os:this.getOS(),device:this.getDevice(),cpu:this.getCPU()}};this.getUA=function(){return n};this.setUA=function(i){n=typeof i===l&&i.length>q?trim(i,q):i;return this};this.setUA(n);return this};UAParser.VERSION=r;UAParser.BROWSER=enumerize([u,f,d]);UAParser.CPU=enumerize([h]);UAParser.DEVICE=enumerize([c,m,p,v,g,x,k,_,y]);UAParser.ENGINE=UAParser.OS=enumerize([u,f]);if(typeof e!==b){if(\"object\"!==b&&i.exports){e=i.exports=UAParser}e.UAParser=UAParser}else{if(typeof define===s&&define.amd){define((function(){return UAParser}))}else if(typeof o!==b){o.UAParser=UAParser}}var Q=typeof o!==b&&(o.jQuery||o.Zepto);if(Q&&!Q.ua){var Y=new UAParser;Q.ua=Y.getResult();Q.ua.get=function(){return Y.getUA()};Q.ua.set=function(i){Y.setUA(i);var e=Y.getResult();for(var o in e){Q.ua[o]=e[o]}}}})(typeof window===\"object\"?window:this)}};var e={};function __nccwpck_require__(o){var a=e[o];if(a!==undefined){return a.exports}var r=e[o]={exports:{}};var t=true;try{i[o].call(r.exports,r,r.exports,__nccwpck_require__);t=false}finally{if(t)delete e[o]}return r.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var o=__nccwpck_require__(226);module.exports=o})();","import parseua from 'next/dist/compiled/ua-parser-js'\n\ninterface UserAgent {\n isBot: boolean\n ua: string\n browser: {\n name?: string\n version?: string\n major?: string\n }\n device: {\n model?: string\n type?: string\n vendor?: string\n }\n engine: {\n name?: string\n version?: string\n }\n os: {\n name?: string\n version?: string\n }\n cpu: {\n architecture?: string\n }\n}\n\nexport function isBot(input: string): boolean {\n return /Googlebot|Mediapartners-Google|AdsBot-Google|googleweblight|Storebot-Google|Google-PageRenderer|Google-InspectionTool|Bingbot|BingPreview|Slurp|DuckDuckBot|baiduspider|yandex|sogou|LinkedInBot|bitlybot|tumblr|vkShare|quora link preview|facebookexternalhit|facebookcatalog|Twitterbot|applebot|redditbot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|ia_archiver|GPTBot/i.test(\n input\n )\n}\n\nexport function userAgentFromString(input: string | undefined): UserAgent {\n return {\n ...parseua(input),\n isBot: input === undefined ? false : isBot(input),\n }\n}\n\nexport function userAgent({ headers }: { headers: Headers }): UserAgent {\n return userAgentFromString(headers.get('user-agent') || undefined)\n}\n","const GlobalURLPattern =\n // @ts-expect-error: URLPattern is not available in Node.js\n typeof URLPattern === 'undefined' ? undefined : URLPattern\n\nexport { GlobalURLPattern as URLPattern }\n","import { workAsyncStorage } from '../app-render/work-async-storage.external'\n\nexport type AfterTask = Promise | AfterCallback\nexport type AfterCallback = () => T | Promise\n\n/**\n * This function allows you to schedule callbacks to be executed after the current request finishes.\n */\nexport function after(task: AfterTask): void {\n const workStore = workAsyncStorage.getStore()\n\n if (!workStore) {\n // TODO(after): the linked docs page talks about *dynamic* APIs, which after soon won't be anymore\n throw new Error(\n '`after` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context'\n )\n }\n\n const { afterContext } = workStore\n return afterContext.after(task)\n}\n","export * from './after'\n","const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'\n\nexport class DynamicServerError extends Error {\n digest: typeof DYNAMIC_ERROR_CODE = DYNAMIC_ERROR_CODE\n\n constructor(public readonly description: string) {\n super(`Dynamic server usage: ${description}`)\n }\n}\n\nexport function isDynamicServerError(err: unknown): err is DynamicServerError {\n if (\n typeof err !== 'object' ||\n err === null ||\n !('digest' in err) ||\n typeof err.digest !== 'string'\n ) {\n return false\n }\n\n return err.digest === DYNAMIC_ERROR_CODE\n}\n","const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'\n\nexport class StaticGenBailoutError extends Error {\n public readonly code = NEXT_STATIC_GEN_BAILOUT\n}\n\nexport function isStaticGenBailoutError(\n error: unknown\n): error is StaticGenBailoutError {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false\n }\n\n return error.code === NEXT_STATIC_GEN_BAILOUT\n}\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n","import { InvariantError } from '../../shared/lib/invariant-error'\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers'\n\nexport enum RenderStage {\n Before = 1,\n EarlyStatic = 2,\n Static = 3,\n EarlyRuntime = 4,\n Runtime = 5,\n Dynamic = 6,\n Abandoned = 7,\n}\n\nexport type AdvanceableRenderStage =\n | RenderStage.Static\n | RenderStage.EarlyRuntime\n | RenderStage.Runtime\n | RenderStage.Dynamic\n\nexport class StagedRenderingController {\n currentStage: RenderStage = RenderStage.Before\n\n syncInterruptReason: Error | null = null\n staticStageEndTime: number = Infinity\n runtimeStageEndTime: number = Infinity\n\n private staticStageListeners: Array<() => void> = []\n private earlyRuntimeStageListeners: Array<() => void> = []\n private runtimeStageListeners: Array<() => void> = []\n private dynamicStageListeners: Array<() => void> = []\n\n private staticStagePromise = createPromiseWithResolvers()\n private earlyRuntimeStagePromise = createPromiseWithResolvers()\n private runtimeStagePromise = createPromiseWithResolvers()\n private dynamicStagePromise = createPromiseWithResolvers()\n\n constructor(\n private abortSignal: AbortSignal | null,\n private abandonController: AbortController | null,\n private shouldTrackSyncIO: boolean\n ) {\n if (abortSignal) {\n abortSignal.addEventListener(\n 'abort',\n () => {\n // Reject all stage promises that haven't already been resolved.\n // If a promise was already resolved via advanceStage, the reject\n // is a no-op. The ignoreReject handler suppresses unhandled\n // rejection warnings for promises that no one is awaiting.\n const { reason } = abortSignal\n this.staticStagePromise.promise.catch(ignoreReject)\n this.staticStagePromise.reject(reason)\n this.earlyRuntimeStagePromise.promise.catch(ignoreReject)\n this.earlyRuntimeStagePromise.reject(reason)\n this.runtimeStagePromise.promise.catch(ignoreReject)\n this.runtimeStagePromise.reject(reason)\n this.dynamicStagePromise.promise.catch(ignoreReject)\n this.dynamicStagePromise.reject(reason)\n },\n { once: true }\n )\n }\n\n if (abandonController) {\n abandonController.signal.addEventListener(\n 'abort',\n () => {\n this.abandonRender()\n },\n { once: true }\n )\n }\n }\n\n onStage(stage: AdvanceableRenderStage, callback: () => void) {\n if (this.currentStage >= stage) {\n callback()\n } else if (stage === RenderStage.Static) {\n this.staticStageListeners.push(callback)\n } else if (stage === RenderStage.EarlyRuntime) {\n this.earlyRuntimeStageListeners.push(callback)\n } else if (stage === RenderStage.Runtime) {\n this.runtimeStageListeners.push(callback)\n } else if (stage === RenderStage.Dynamic) {\n this.dynamicStageListeners.push(callback)\n } else {\n // This should never happen\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n\n shouldTrackSyncInterrupt(): boolean {\n if (!this.shouldTrackSyncIO) {\n return false\n }\n\n switch (this.currentStage) {\n case RenderStage.Before:\n // If we haven't started the render yet, it can't be interrupted.\n return false\n case RenderStage.EarlyStatic:\n case RenderStage.Static:\n return true\n case RenderStage.EarlyRuntime:\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO\n // should error because it would abort a runtime prefetch.\n return true\n case RenderStage.Runtime:\n // Runtime is for non-prefetchable segments. Sync IO is fine there\n // because in practice this segment will never be runtime prefetched\n return false\n case RenderStage.Dynamic:\n case RenderStage.Abandoned:\n return false\n default:\n return false\n }\n }\n\n syncInterruptCurrentStageWithReason(reason: Error) {\n if (this.currentStage === RenderStage.Before) {\n return\n }\n\n // If the render has already been abandoned, there's nothing to interrupt.\n if (this.currentStage === RenderStage.Abandoned) {\n return\n }\n\n // If Sync IO occurs during an abandonable render, we trigger the abandon.\n // The abandon listener will call abandonRender which advances through\n // stages to let caches fill before marking as Abandoned.\n if (this.abandonController) {\n this.abandonController.abort()\n return\n }\n\n if (this.abortSignal) {\n // If this is an abortable render, we capture the interruption reason and stop advancing.\n // We don't release any more promises.\n // The caller is expected to abort the signal.\n this.syncInterruptReason = reason\n this.currentStage = RenderStage.Abandoned\n return\n }\n\n // If we're in a non-abandonable & non-abortable render,\n // we need to advance to the Dynamic stage and capture the interruption reason.\n // (in dev, this will be the restarted render)\n switch (this.currentStage) {\n case RenderStage.EarlyStatic:\n case RenderStage.Static:\n case RenderStage.EarlyRuntime: {\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO here\n // means the prefetch would be aborted too early.\n this.syncInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n return\n }\n case RenderStage.Runtime: {\n // canSyncInterrupt returns false for Runtime, so we should\n // never get here. Defensive no-op.\n return\n }\n case RenderStage.Dynamic:\n default:\n }\n }\n\n getSyncInterruptReason() {\n return this.syncInterruptReason\n }\n\n getStaticStageEndTime() {\n return this.staticStageEndTime\n }\n\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime\n }\n\n private abandonRender() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the next stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this\n switch (currentStage) {\n case RenderStage.EarlyStatic: {\n this.resolveStaticStage()\n }\n // intentional fallthrough\n case RenderStage.Static: {\n this.resolveEarlyRuntimeStage()\n }\n // intentional fallthrough\n case RenderStage.EarlyRuntime: {\n this.resolveRuntimeStage()\n }\n // intentional fallthrough\n case RenderStage.Runtime: {\n this.currentStage = RenderStage.Abandoned\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Before:\n case RenderStage.Abandoned:\n break\n default: {\n currentStage satisfies never\n }\n }\n }\n\n advanceStage(\n stage:\n | RenderStage.EarlyStatic\n | RenderStage.Static\n | RenderStage.EarlyRuntime\n | RenderStage.Runtime\n | RenderStage.Dynamic\n ) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return\n }\n\n let currentStage = this.currentStage\n this.currentStage = stage\n\n if (currentStage < RenderStage.Static && stage >= RenderStage.Static) {\n this.resolveStaticStage()\n }\n if (\n currentStage < RenderStage.EarlyRuntime &&\n stage >= RenderStage.EarlyRuntime\n ) {\n this.resolveEarlyRuntimeStage()\n }\n if (currentStage < RenderStage.Runtime && stage >= RenderStage.Runtime) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin\n this.resolveRuntimeStage()\n }\n if (currentStage < RenderStage.Dynamic && stage >= RenderStage.Dynamic) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin\n this.resolveDynamicStage()\n return\n }\n }\n\n /** Fire the `onStage` listeners for the static stage and unblock any promises waiting for it. */\n private resolveStaticStage() {\n const staticListeners = this.staticStageListeners\n for (let i = 0; i < staticListeners.length; i++) {\n staticListeners[i]()\n }\n staticListeners.length = 0\n this.staticStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the early runtime stage and unblock any promises waiting for it. */\n private resolveEarlyRuntimeStage() {\n const earlyRuntimeListeners = this.earlyRuntimeStageListeners\n for (let i = 0; i < earlyRuntimeListeners.length; i++) {\n earlyRuntimeListeners[i]()\n }\n earlyRuntimeListeners.length = 0\n this.earlyRuntimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */\n private resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners\n for (let i = 0; i < runtimeListeners.length; i++) {\n runtimeListeners[i]()\n }\n runtimeListeners.length = 0\n this.runtimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */\n private resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners\n for (let i = 0; i < dynamicListeners.length; i++) {\n dynamicListeners[i]()\n }\n dynamicListeners.length = 0\n this.dynamicStagePromise.resolve()\n }\n\n private getStagePromise(stage: AdvanceableRenderStage): Promise {\n switch (stage) {\n case RenderStage.Static: {\n return this.staticStagePromise.promise\n }\n case RenderStage.EarlyRuntime: {\n return this.earlyRuntimeStagePromise.promise\n }\n case RenderStage.Runtime: {\n return this.runtimeStagePromise.promise\n }\n case RenderStage.Dynamic: {\n return this.dynamicStagePromise.promise\n }\n default: {\n stage satisfies never\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n }\n\n waitForStage(stage: AdvanceableRenderStage) {\n return this.getStagePromise(stage)\n }\n\n delayUntilStage(\n stage: AdvanceableRenderStage,\n displayName: string | undefined,\n resolvedValue: T\n ) {\n const ioTriggerPromise = this.getStagePromise(stage)\n\n const promise = makeDevtoolsIOPromiseFromIOTrigger(\n ioTriggerPromise,\n displayName,\n resolvedValue\n )\n\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject)\n }\n return promise\n }\n}\n\nfunction ignoreReject() {}\n\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger(\n ioTrigger: Promise,\n displayName: string | undefined,\n resolvedValue: T\n): Promise {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise((resolve, reject) => {\n ioTrigger.then(resolve.bind(null, resolvedValue), reject)\n })\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName\n }\n return promise\n}\n","import {\n RenderStage,\n type AdvanceableRenderStage,\n type StagedRenderingController,\n} from './app-render/staged-rendering'\nimport type {\n PrerenderStoreModernRuntime,\n RequestStore,\n} from './app-render/work-unit-async-storage.external'\n\nexport function isHangingPromiseRejectionError(\n err: unknown\n): err is HangingPromiseRejectionError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === HANGING_PROMISE_REJECTION\n}\n\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'\n\nclass HangingPromiseRejectionError extends Error {\n public readonly digest = HANGING_PROMISE_REJECTION\n\n constructor(\n public readonly route: string,\n public readonly expression: string\n ) {\n super(\n `During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`\n )\n }\n}\n\ntype AbortListeners = Array<(err: unknown) => void>\nconst abortListenersBySignal = new WeakMap()\n\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */\nexport function makeHangingPromise(\n signal: AbortSignal,\n route: string,\n expression: string\n): Promise {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression))\n } else {\n const hangingPromise = new Promise((_, reject) => {\n const boundRejection = reject.bind(\n null,\n new HangingPromiseRejectionError(route, expression)\n )\n let currentListeners = abortListenersBySignal.get(signal)\n if (currentListeners) {\n currentListeners.push(boundRejection)\n } else {\n const listeners = [boundRejection]\n abortListenersBySignal.set(signal, listeners)\n signal.addEventListener(\n 'abort',\n () => {\n for (let i = 0; i < listeners.length; i++) {\n listeners[i]()\n }\n },\n { once: true }\n )\n }\n })\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject)\n return hangingPromise\n }\n}\n\nfunction ignoreReject() {}\n\nexport function makeDevtoolsIOAwarePromise(\n underlying: T,\n requestStore: RequestStore,\n stage: AdvanceableRenderStage\n): Promise {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(\n stage,\n undefined,\n underlying\n )\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise((resolve) => {\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(() => {\n resolve(underlying)\n }, 0)\n })\n}\n\n/**\n * Returns the appropriate runtime stage for the current point in the render.\n * Runtime-prefetchable segments render in the early stages and should wait\n * for EarlyRuntime. Non-prefetchable segments render in the later stages\n * and should wait for Runtime.\n */\nexport function getRuntimeStage(\n stagedRendering: StagedRenderingController\n): RenderStage.EarlyRuntime | RenderStage.Runtime {\n if (\n stagedRendering.currentStage === RenderStage.EarlyStatic ||\n stagedRendering.currentStage === RenderStage.EarlyRuntime\n ) {\n return RenderStage.EarlyRuntime\n }\n return RenderStage.Runtime\n}\n\n/**\n * Delays until the appropriate runtime stage based on the current stage of\n * the rendering pipeline:\n *\n * - Early stages → wait for EarlyRuntime\n * (for runtime-prefetchable segments)\n * - Later stages → wait for Runtime\n * (for segments not using runtime prefetch)\n *\n * This ensures that cookies()/headers()/etc. resolve at the right time for\n * each segment type.\n */\nexport function delayUntilRuntimeStage(\n prerenderStore: PrerenderStoreModernRuntime,\n result: Promise\n): Promise {\n const { stagedRendering } = prerenderStore\n if (!stagedRendering) {\n return result\n }\n return stagedRendering\n .waitForStage(getRuntimeStage(stagedRendering))\n .then(() => result)\n}\n","export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n","export type ScheduledFn = () => T | PromiseLike\nexport type SchedulerFn = (cb: ScheduledFn) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n","// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'\n\n/** An error that should be thrown when we want to bail out to client-side rendering. */\nexport class BailoutToCSRError extends Error {\n public readonly digest = BAILOUT_TO_CSR\n\n constructor(public readonly reason: string) {\n super(`Bail out to client-side rendering: ${reason}`)\n }\n}\n\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */\nexport function isBailoutToCSRError(err: unknown): err is BailoutToCSRError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === BAILOUT_TO_CSR\n}\n","export const INSTANT_VALIDATION_BOUNDARY_NAME =\n '__next_instant_validation_boundary__'\n","/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */\n\nimport type { WorkStore } from '../app-render/work-async-storage.external'\nimport type {\n WorkUnitStore,\n PrerenderStoreLegacy,\n PrerenderStoreModern,\n ValidationStoreClient,\n} from '../app-render/work-unit-async-storage.external'\n\n// Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react'\n\nimport { DynamicServerError } from '../../client/components/hooks-server-context'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from './work-unit-async-storage.external'\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { makeHangingPromise, getRuntimeStage } from '../dynamic-rendering-utils'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from '../../lib/framework/boundary-constants'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport { INSTANT_VALIDATION_BOUNDARY_NAME } from './instant-validation/boundary-constants'\nimport type { ValidationBoundaryTracking } from './instant-validation/boundary-tracking'\nimport type { InstantValidationSampleTracking } from './instant-validation/instant-samples'\n\nconst hasPostpone = typeof React.unstable_postpone === 'function'\n\nexport type DynamicAccess = {\n /**\n * If debugging, this will contain the stack trace of where the dynamic access\n * occurred. This is used to provide more information to the user about why\n * their page is being rendered dynamically.\n */\n stack?: string\n\n /**\n * The expression that was accessed dynamically.\n */\n expression: string\n}\n\n// Stores dynamic reasons used during an RSC render.\nexport type DynamicTrackingState = {\n /**\n * When true, stack information will also be tracked during dynamic access.\n */\n readonly isDebugDynamicAccesses: boolean | undefined\n\n /**\n * The dynamic accesses that occurred during the render.\n */\n readonly dynamicAccesses: Array\n\n syncDynamicErrorWithStack: null | Error\n}\n\n// Stores dynamic reasons used during an SSR render.\nexport type DynamicValidationState = {\n hasSuspenseAboveBody: boolean\n hasDynamicMetadata: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array\n}\n\nexport function createDynamicTrackingState(\n isDebugDynamicAccesses: boolean | undefined\n): DynamicTrackingState {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null,\n }\n}\n\nexport function createDynamicValidationState(): DynamicValidationState {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n }\n}\n\nexport function getFirstDynamicReason(\n trackingState: DynamicTrackingState\n): undefined | string {\n return trackingState.dynamicAccesses[0]?.expression\n}\n\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */\nexport function markCurrentScopeAsDynamic(\n store: WorkStore,\n workUnitStore: undefined | Exclude,\n expression: string\n): void {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n case 'generate-static-params':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return\n\n if (store.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-ppr':\n return postponeWithTracking(\n store.route,\n expression,\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n workUnitStore.revalidate = 0\n\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n case 'generate-static-params':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */\nexport function throwToInterruptStaticGeneration(\n expression: string,\n store: WorkStore,\n prerenderStore: PrerenderStoreLegacy\n): never {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n\n prerenderStore.revalidate = 0\n\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n}\n\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */\nexport function trackDynamicDataInDynamicRender(workUnitStore: WorkUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n case 'validation-client':\n case 'generate-static-params':\n break\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n}\n\nfunction abortOnSynchronousDynamicDataAccess(\n route: string,\n expression: string,\n prerenderStore: PrerenderStoreModern\n): void {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n\n const error = createPrerenderInterruptedError(reason)\n\n prerenderStore.controller.abort(error)\n\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function abortOnSynchronousPlatformIOAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): void {\n const dynamicTracking = prerenderStore.dynamicTracking\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n}\n\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */\nexport function abortAndThrowOnSynchronousRequestDataAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): never {\n const prerenderSignal = prerenderStore.controller.signal\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n }\n throw createPrerenderInterruptedError(\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n )\n}\n\n/**\n * This component will call `React.postpone` that throws the postponed error.\n */\ntype PostponeProps = {\n reason: string\n route: string\n}\nexport function Postpone({ reason, route }: PostponeProps): never {\n const prerenderStore = workUnitAsyncStorage.getStore()\n const dynamicTracking =\n prerenderStore && prerenderStore.type === 'prerender-ppr'\n ? prerenderStore.dynamicTracking\n : null\n postponeWithTracking(route, reason, dynamicTracking)\n}\n\nexport function postponeWithTracking(\n route: string,\n expression: string,\n dynamicTracking: null | DynamicTrackingState\n): never {\n assertPostpone()\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n\n React.unstable_postpone(createPostponeReason(route, expression))\n}\n\nfunction createPostponeReason(route: string, expression: string) {\n return (\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` +\n `React throws this special object to indicate where. It should not be caught by ` +\n `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`\n )\n}\n\nexport function isDynamicPostpone(err: unknown) {\n if (\n typeof err === 'object' &&\n err !== null &&\n typeof (err as any).message === 'string'\n ) {\n return isDynamicPostponeReason((err as any).message)\n }\n return false\n}\n\nfunction isDynamicPostponeReason(reason: string) {\n return (\n reason.includes(\n 'needs to bail out of prerendering at this point because it used'\n ) &&\n reason.includes(\n 'Learn more: https://nextjs.org/docs/messages/ppr-caught-error'\n )\n )\n}\n\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw new Error(\n 'Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'\n )\n}\n\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'\n\nfunction createPrerenderInterruptedError(message: string): Error {\n const error = new Error(message)\n ;(error as any).digest = NEXT_PRERENDER_INTERRUPTED\n return error\n}\n\ntype DigestError = Error & {\n digest: string\n}\n\nexport function isPrerenderInterruptedError(\n error: unknown\n): error is DigestError {\n return (\n typeof error === 'object' &&\n error !== null &&\n (error as any).digest === NEXT_PRERENDER_INTERRUPTED &&\n 'name' in error &&\n 'message' in error &&\n error instanceof Error\n )\n}\n\nexport function accessedDynamicData(\n dynamicAccesses: Array\n): boolean {\n return dynamicAccesses.length > 0\n}\n\nexport function consumeDynamicAccess(\n serverDynamic: DynamicTrackingState,\n clientDynamic: DynamicTrackingState\n): DynamicTrackingState['dynamicAccesses'] {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses)\n return serverDynamic.dynamicAccesses\n}\n\nexport function formatDynamicAPIAccesses(\n dynamicAccesses: Array\n): string[] {\n return dynamicAccesses\n .filter(\n (access): access is Required =>\n typeof access.stack === 'string' && access.stack.length > 0\n )\n .map(({ expression, stack }) => {\n stack = stack\n .split('\\n')\n // Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4)\n .filter((line) => {\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false\n }\n\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' ()')) {\n return false\n }\n\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false\n }\n\n return true\n })\n .join('\\n')\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`\n })\n}\n\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw new Error(\n `Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`\n )\n }\n}\n\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */\nexport function createRenderInBrowserAbortSignal(): AbortSignal {\n const controller = new AbortController()\n controller.abort(new BailoutToCSRError('Render in Browser'))\n return controller.signal\n}\n\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */\nexport function createHangingInputAbortSignal(\n workUnitStore: WorkUnitStore\n): AbortSignal | undefined {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController()\n\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(() => {\n controller.abort()\n })\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n if (\n // eslint-disable-next-line no-restricted-syntax -- We are discriminating between two different refined types and don't need an addition exhaustive switch here\n workUnitStore.type === 'prerender-runtime' &&\n workUnitStore.stagedRendering\n ) {\n const { stagedRendering } = workUnitStore\n stagedRendering\n .waitForStage(getRuntimeStage(stagedRendering))\n .then(() => scheduleOnNextTick(() => controller.abort()))\n } else {\n scheduleOnNextTick(() => controller.abort())\n }\n }\n\n return controller.signal\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n return undefined\n default:\n workUnitStore satisfies never\n }\n}\n\nexport function annotateDynamicAccess(\n expression: string,\n prerenderStore: PrerenderStoreModern | ValidationStoreClient\n) {\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function useDynamicRouteParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workStore && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-client':\n case 'prerender': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(\n workStore.route,\n expression,\n workUnitStore.dynamicTracking\n )\n }\n break\n }\n case 'validation-client': {\n // Don't check fallbackRouteParams here. We handle params that weren't\n // provided in the samples using a proxy that throws when accessed.\n break\n }\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'generate-static-params':\n throw new InvariantError(\n `\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`\n )\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\nexport function useDynamicSearchParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (!workStore) {\n // We assume pages router context and just return\n return\n }\n\n if (!workUnitStore) {\n throwForMissingRequestStore(expression)\n }\n\n switch (workUnitStore.type) {\n case 'validation-client':\n // During instant validation we try to behave as close to client as possible,\n // so this shouldn't hang during SSR.\n return\n case 'prerender-client': {\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n break\n }\n case 'prerender-legacy':\n case 'prerender-ppr': {\n if (workStore.forceStatic) {\n return\n }\n throw new BailoutToCSRError(expression)\n }\n case 'prerender':\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'generate-static-params':\n throw new InvariantError(\n `\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`\n )\n case 'request':\n return\n default:\n workUnitStore satisfies never\n }\n}\n\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(\\)/\n\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags =\n 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'\n\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense ()\n// at __next_root_layout_boundary__ ()\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense ()\n// at SomeComponent ()\n// at __next_root_layout_boundary__ ()\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(\n `\\\\n\\\\s+at Suspense \\\\(\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`\n)\n\nconst hasMetadataRegex = new RegExp(\n `\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasViewportRegex = new RegExp(\n `\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`)\n\nconst hasInstantValidationBoundaryRegex = new RegExp(\n `\\\\n\\\\s+at ${INSTANT_VALIDATION_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\n\nexport function trackAllowedDynamicAccess(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true\n return\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message =\n `Route \"${workStore.route}\": Uncached data was accessed outside of ` +\n '. This delays the entire page from rendering, resulting in a ' +\n 'slow user experience. Learn more: ' +\n 'https://nextjs.org/docs/messages/blocking-route'\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport enum DynamicHoleKind {\n /** We know that this hole is caused by runtime data. */\n Runtime = 1,\n /** We know that this hole is caused by dynamic data. */\n Dynamic = 2,\n}\n\n/** Stores dynamic reasons used during an SSR render in instant validation. */\nexport type InstantValidationState = {\n hasDynamicMetadata: boolean\n hasAllowedClientDynamicAboveBoundary: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array\n validationPreventingErrors: Array\n thrownErrorsOutsideBoundary: Array\n createInstantStack: (() => Error) | null\n}\n\nexport function createInstantValidationState(\n createInstantStack: (() => Error) | null\n): InstantValidationState {\n return {\n hasDynamicMetadata: false,\n hasAllowedClientDynamicAboveBoundary: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n validationPreventingErrors: [],\n thrownErrorsOutsideBoundary: [],\n createInstantStack,\n }\n}\n\nexport function trackDynamicHoleInNavigation(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: InstantValidationState,\n clientDynamic: DynamicTrackingState,\n kind: DynamicHoleKind,\n boundaryState: ValidationBoundaryTracking\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n }\n if (hasMetadataRegex.test(componentStack)) {\n const usageDescription =\n kind === DynamicHoleKind.Runtime\n ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments.`\n : `Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`.`\n const message = `Route \"${workStore.route}\": ${usageDescription} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.dynamicMetadata = error\n return\n }\n if (hasViewportRegex.test(componentStack)) {\n const usageDescription =\n kind === DynamicHoleKind.Runtime\n ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`.`\n : `Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`.`\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n\n const boundaryLocation =\n hasInstantValidationBoundaryRegex.exec(componentStack)\n if (!boundaryLocation) {\n // We don't see the validation boundary in the component stack,\n // so this hole must be coming from a shared parent.\n // Shared parents are fully resolved and don't have RSC holes,\n // but they can still suspend in a client component during SSR.\n\n // If we managed to render all the validation boundaries, that means\n // that the client holes aren't blocking validation and we can disregard them.\n // Note that we don't even care whether they have suspense or not.\n if (boundaryState.expectedIds.size === boundaryState.renderedIds.size) {\n dynamicValidation.hasAllowedClientDynamicAboveBoundary = true\n dynamicValidation.hasAllowedDynamic = true // Holes outside the boundary contribute to allowing dynamic metadata\n return\n } else {\n // TODO(instant-validation) TODO(NAR-787)\n // If shared parents blocked us from validating, we should only log\n // the errors from the innermost (segments), i.e. omit layouts whose\n // slots managed to render (because clearly they didn't block validation)\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because a Client Component in a parent segment prevented the page from rendering.`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.validationPreventingErrors.push(error)\n return\n }\n } else {\n // The hole originates inside the validation boundary.\n //\n // Check if we have a Suspense above the hole, but below the validation boundary.\n // If we do, then this dynamic usage wouldn't block a navigation to this subtree.\n // Conversely, if the nearest suspense is above the validation boundary, then this subtree would block.\n //\n // Note that in the component stack, children come before parents.\n //\n // Valid:\n // ...\n // at Suspense\n // ...\n // at __next_prefetch_validation_boundary__\n //\n // Invalid:\n // ...\n // at __next_prefetch_validation_boundary__\n // ...\n // at Suspense\n //\n const suspenseLocation = hasSuspenseRegex.exec(componentStack)\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n dynamicValidation.hasAllowedDynamic = true\n return\n } else {\n // invalid - fallthrough\n }\n }\n }\n\n if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n const syncError = clientDynamic.syncDynamicErrorWithStack\n if (\n dynamicValidation.createInstantStack !== null &&\n syncError.cause === undefined\n ) {\n syncError.cause = dynamicValidation.createInstantStack()\n }\n dynamicValidation.dynamicErrors.push(syncError)\n return\n }\n\n const usageDescription =\n kind === DynamicHoleKind.Runtime\n ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`.`\n : `Uncached data or \\`connection()\\` was accessed outside of \\`\\`.`\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.dynamicErrors.push(error)\n return\n}\n\nexport function trackThrownErrorInNavigation(\n workStore: WorkStore,\n dynamicValidation: InstantValidationState,\n thrownValue: unknown,\n componentStack: string\n) {\n const boundaryLocation =\n hasInstantValidationBoundaryRegex.exec(componentStack)\n if (!boundaryLocation) {\n // There's no validation boundary on the component stack.\n // This error may have blocked a boundary from rendering.\n\n // Wrap the error to provide component context.\n // This helps for errors from node_modules which would otherwise\n // have no useful stack information due to ignore-listing,\n // e.g. next/dynamic with `ssr: false`.\n const error = addErrorContext(\n new Error(\n 'An error occurred while attempting to validate instant UI. This error may be preventing the validation from completing.',\n { cause: thrownValue }\n ),\n componentStack,\n null\n )\n dynamicValidation.thrownErrorsOutsideBoundary.push(error)\n } else {\n // There's validation boundary on the component stack,\n // so we know this error didn't block a validation boundary from rendering.\n // However, this error might be hiding be hiding dynamic content that would\n // cause validation to fail.\n const suspenseLocation = hasSuspenseRegex.exec(componentStack)\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n // There's a Suspense below the validation boundary but above this error's location.\n // This subtree can't fail instant validation because any potential\n // dynamic holes would be guarded by the Suspense anyway,\n // so we can allow this.\n return\n } else {\n // invalid - fallthrough\n }\n }\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because an error prevented the target segment from rendering.`\n const error = addErrorContext(\n new Error(message, { cause: thrownValue }),\n componentStack,\n null // TODO(instant-validation-build): conflicting use of cause\n )\n dynamicValidation.validationPreventingErrors.push(error)\n }\n}\n\nexport function trackDynamicHoleInRuntimeShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n // TODO(instant-validation): If the page only has holes caused by runtime data,\n // we won't find out if there's a suspense-above-body and error for dynamic viewport\n // even if there is in fact a suspense-above-body\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n }\n\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n}\n\nexport function trackDynamicHoleInStaticShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n *\n * Accepts an already-created Error so the SWC error-code plugin can see the\n * `new Error(...)` call at each call site and auto-assign error codes.\n */\nfunction addErrorContext(\n error: Error,\n componentStack: string,\n createInstantStack: (() => Error) | null\n) {\n const ownerStack =\n process.env.NODE_ENV !== 'production' && React.captureOwnerStack\n ? React.captureOwnerStack()\n : null\n\n if (createInstantStack !== null) {\n error.cause = createInstantStack()\n }\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack =\n error.name + ': ' + error.message + (ownerStack || componentStack)\n return error\n}\n\nexport enum PreludeState {\n Full = 0,\n Empty = 1,\n Errored = 2,\n}\n\nexport function logDisallowedDynamicError(\n workStore: WorkStore,\n error: Error\n): void {\n console.error(error)\n\n if (process.env.NODE_ENV !== 'development') {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`)\n } else if (!process.env.__NEXT_DEV_SERVER) {\n console.error(\n `To debug the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`\n )\n }\n}\n\nexport function throwIfDisallowedDynamic(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n serverDynamic: DynamicTrackingState\n): void {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(\n workStore,\n serverDynamic.syncDynamicErrorWithStack\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude !== PreludeState.Full) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return\n }\n\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n for (let i = 0; i < dynamicErrors.length; i++) {\n logDisallowedDynamicError(workStore, dynamicErrors[i])\n }\n\n throw new StaticGenBailoutError()\n }\n\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`\n )\n throw new StaticGenBailoutError()\n }\n } else {\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.hasDynamicMetadata\n ) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n )\n throw new StaticGenBailoutError()\n }\n }\n}\n\nexport function getStaticShellDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n configAllowsBlocking: boolean\n): Array {\n if (configAllowsBlocking || dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return []\n }\n\n if (prelude !== PreludeState.Full) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicErrors.length === 0 &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n\nexport function getNavigationDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: InstantValidationState,\n validationSampleTracking: InstantValidationSampleTracking | null,\n boundaryState: ValidationBoundaryTracking\n): Array {\n // If we have errors related to missing samples, those should take precedence over everything else.\n if (validationSampleTracking) {\n const { missingSampleErrors } = validationSampleTracking\n if (missingSampleErrors.length > 0) {\n return missingSampleErrors\n }\n }\n\n const { validationPreventingErrors } = dynamicValidation\n if (validationPreventingErrors.length > 0) {\n return validationPreventingErrors\n }\n\n if (boundaryState.renderedIds.size < boundaryState.expectedIds.size) {\n const { thrownErrorsOutsideBoundary, createInstantStack } =\n dynamicValidation\n if (thrownErrorsOutsideBoundary.length === 0) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering for an unknown reason.`\n const error =\n createInstantStack !== null ? createInstantStack() : new Error()\n error.name = 'Error'\n error.message = message\n return [error]\n } else if (thrownErrorsOutsideBoundary.length === 1) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to the following error.`\n const error =\n createInstantStack !== null ? createInstantStack() : new Error()\n error.name = 'Error'\n error.message = message\n return [error, thrownErrorsOutsideBoundary[0] as Error]\n } else {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to one of the following errors.`\n const error =\n createInstantStack !== null ? createInstantStack() : new Error()\n error.name = 'Error'\n error.message = message\n return [error, ...(thrownErrorsOutsideBoundary as Error[])]\n }\n }\n\n // NOTE: We don't care about Suspense above body here,\n // we're only concerned with the validation boundary\n if (prelude !== PreludeState.Full) {\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If a client component suspended prevented us from rendering a shell\n // but didn't block validation, we don't require a prelude.\n if (dynamicValidation.hasAllowedClientDynamicAboveBoundary) {\n return []\n }\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" failed to render during instant validation and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n","import { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external'\nimport type { WorkStore } from '../app-render/work-async-storage.external'\n\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(\n route: string,\n expression: string\n): never {\n throw new StaticGenBailoutError(\n `Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n}\n\nexport function throwForSearchParamsAccessInUseCache(\n workStore: WorkStore,\n constructorOpt: Function\n): never {\n const error = new Error(\n `Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n\n Error.captureStackTrace(error, constructorOpt)\n workStore.invalidDynamicUsageError ??= error\n\n throw error\n}\n\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore()\n return afterTaskStore?.rootTaskSpawnPhase === 'action'\n}\n","import { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport {\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from '../app-render/work-unit-async-storage.external'\nimport {\n postponeWithTracking,\n throwToInterruptStaticGeneration,\n trackDynamicDataInDynamicRender,\n} from '../app-render/dynamic-rendering'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n makeHangingPromise,\n makeDevtoolsIOAwarePromise,\n} from '../dynamic-rendering-utils'\nimport { isRequestAPICallableInsideAfter } from './utils'\nimport { RenderStage } from '../app-render/staged-rendering'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\n/**\n * This function allows you to indicate that you require an actual user Request before continuing.\n *\n * During prerendering it will never resolve and during rendering it resolves immediately.\n */\nexport function connection(): Promise {\n const callingExpression = 'connection'\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (workStore) {\n if (\n workUnitStore &&\n workUnitStore.phase === 'after' &&\n !isRequestAPICallableInsideAfter()\n ) {\n throw new Error(\n `Route ${workStore.route} used \\`connection()\\` inside \\`after()\\`. The \\`connection()\\` function is used to indicate the subsequent code must only run when there is an actual Request, but \\`after()\\` executes after the request, so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/canary/app/api-reference/functions/after`\n )\n }\n\n if (workStore.forceStatic) {\n // When using forceStatic, we override all other logic and always just\n // return a resolving promise without tracking.\n return Promise.resolve(undefined)\n }\n\n if (workStore.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${workStore.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`connection()\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache': {\n const error = new Error(\n `Route ${workStore.route} used \\`connection()\\` inside \"use cache\". The \\`connection()\\` function is used to indicate the subsequent code must only run when there is an actual request, but caches must be able to be produced before a request, so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n Error.captureStackTrace(error, connection)\n workStore.invalidDynamicUsageError ??= error\n throw error\n }\n case 'private-cache': {\n // It might not be intuitive to throw for private caches as well, but\n // we don't consider runtime prefetches as \"actual requests\" (in the\n // navigation sense), despite allowing them to read cookies.\n const error = new Error(\n `Route ${workStore.route} used \\`connection()\\` inside \"use cache: private\". The \\`connection()\\` function is used to indicate the subsequent code must only run when there is an actual navigation request, but caches must be able to be produced before a navigation request, so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n Error.captureStackTrace(error, connection)\n workStore.invalidDynamicUsageError ??= error\n throw error\n }\n case 'unstable-cache':\n throw new Error(\n `Route ${workStore.route} used \\`connection()\\` inside a function cached with \\`unstable_cache()\\`. The \\`connection()\\` function is used to indicate the subsequent code must only run when there is an actual Request, but caches must be able to be produced before a Request so this function is not allowed in this scope. See more info here: https://nextjs.org/docs/app/api-reference/functions/unstable_cache`\n )\n case 'generate-static-params':\n throw new Error(\n `Route ${workStore.route} used \\`connection()\\` inside \\`generateStaticParams\\`. This is not supported because \\`generateStaticParams\\` runs at build time without an HTTP request. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context`\n )\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n // We return a promise that never resolves to allow the prerender to\n // stall at this point.\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`connection()`'\n )\n case 'validation-client': {\n // TODO(NAR-789): make this consistent with the actual browser behavior when we change it.\n // Until then, erroring is fine.\n const exportName = '`connection`'\n throw new InvariantError(\n `${exportName} must not be used within a Client Component. Next.js should be preventing ${exportName} from being included in Client Components statically, but did not in this case.`\n )\n }\n case 'prerender-ppr':\n // We use React's postpone API to interrupt rendering here to create a\n // dynamic hole\n return postponeWithTracking(\n workStore.route,\n 'connection',\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n // We throw an error here to interrupt prerendering to mark the route\n // as dynamic\n return throwToInterruptStaticGeneration(\n 'connection',\n workStore,\n workUnitStore\n )\n case 'request':\n trackDynamicDataInDynamicRender(workUnitStore)\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n if (workUnitStore.asyncApiPromises) {\n return workUnitStore.asyncApiPromises.connection\n }\n return makeDevtoolsIOAwarePromise(\n undefined,\n workUnitStore,\n RenderStage.Dynamic\n )\n } else if (workUnitStore.asyncApiPromises) {\n return workUnitStore.asyncApiPromises.connection\n } else {\n return Promise.resolve(undefined)\n }\n default:\n workUnitStore satisfies never\n }\n }\n }\n\n // If we end up here, there was no work store or work unit store present.\n // TODO(NAR-789): connection() is not currently statically prevented from being imported in client components,\n // so we always error about a missing work unit store.\n throwForMissingRequestStore(callingExpression)\n}\n","const serverExports = {\n NextRequest: require('next/dist/server/web/spec-extension/request')\n .NextRequest,\n NextResponse: require('next/dist/server/web/spec-extension/response')\n .NextResponse,\n ImageResponse: require('next/dist/server/web/spec-extension/image-response')\n .ImageResponse,\n userAgentFromString: require('next/dist/server/web/spec-extension/user-agent')\n .userAgentFromString,\n userAgent: require('next/dist/server/web/spec-extension/user-agent')\n .userAgent,\n URLPattern: require('next/dist/server/web/spec-extension/url-pattern')\n .URLPattern,\n after: require('next/dist/server/after').after,\n connection: require('next/dist/server/request/connection').connection,\n}\n\n// https://nodejs.org/api/esm.html#commonjs-namespaces\n// When importing CommonJS modules, the module.exports object is provided as the default export\nmodule.exports = serverExports\n\n// make import { xxx } from 'next/server' work\nexports.NextRequest = serverExports.NextRequest\nexports.NextResponse = serverExports.NextResponse\nexports.ImageResponse = serverExports.ImageResponse\nexports.userAgentFromString = serverExports.userAgentFromString\nexports.userAgent = serverExports.userAgent\nexports.URLPattern = serverExports.URLPattern\nexports.after = serverExports.after\nexports.connection = serverExports.connection\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK","e","t","r","Object","defineProperty","value","ContextAPI","n","a","o","i","c","NoopContextManager","getInstance","_instance","setGlobalContextManager","registerGlobal","DiagAPI","instance","active","_getContextManager","with","bind","getGlobal","disable","unregisterGlobal","_logProxy","setLogger","logLevel","DiagLogLevel","INFO","s","Error","error","stack","message","u","l","createLogLevelDiagLogger","suppressOverrideMessage","warn","createComponentLogger","DiagComponentLogger","verbose","debug","info","MetricsAPI","setGlobalMeterProvider","getMeterProvider","NOOP_METER_PROVIDER","getMeter","PropagationAPI","NoopTextMapPropagator","createBaggage","getBaggage","getActiveBaggage","setBaggage","deleteBaggage","setGlobalPropagator","inject","defaultTextMapSetter","_getGlobalPropagator","extract","defaultTextMapGetter","fields","TraceAPI","_proxyTracerProvider","ProxyTracerProvider","wrapSpanContext","isSpanContextValid","deleteSpan","getSpan","getActiveSpan","getSpanContext","setSpan","setSpanContext","setGlobalTracerProvider","setDelegate","getTracerProvider","getTracer","createContextKey","getValue","undefined","setValue","deleteValue","BaggageImpl","_entries","Map","getEntry","get","assign","getAllEntries","Array","from","entries","map","setEntry","set","removeEntry","delete","removeEntries","clear","baggageEntryMetadataSymbol","Symbol","baggageEntryMetadataFromString","__TYPE__","toString","context","ROOT_CONTEXT","call","enable","for","BaseContext","_currentContext","diag","_namespace","namespace","logProxy","unshift","DiagConsoleLogger","_consoleFunc","console","log","apply","length","NONE","ALL","_filterFunc","ERROR","WARN","DEBUG","VERBOSE","VERSION","split","_globalThis","version","isCompatible","_makeCompatibilityCheck","Set","match","major","minor","patch","prerelease","isExactmatch","_reject","add","_accept","has","metrics","ValueType","createNoopMeter","NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC","NOOP_OBSERVABLE_GAUGE_METRIC","NOOP_OBSERVABLE_COUNTER_METRIC","NOOP_UP_DOWN_COUNTER_METRIC","NOOP_HISTOGRAM_METRIC","NOOP_COUNTER_METRIC","NOOP_METER","NoopObservableUpDownCounterMetric","NoopObservableGaugeMetric","NoopObservableCounterMetric","NoopObservableMetric","NoopHistogramMetric","NoopUpDownCounterMetric","NoopCounterMetric","NoopMetric","NoopMeter","createHistogram","createCounter","createUpDownCounter","createObservableGauge","createObservableCounter","createObservableUpDownCounter","addBatchObservableCallback","removeBatchObservableCallback","record","addCallback","removeCallback","NoopMeterProvider","__createBinding","create","enumerable","__exportStar","prototype","hasOwnProperty","globalThis","propagation","keys","trace","NonRecordingSpan","INVALID_SPAN_CONTEXT","_spanContext","spanContext","setAttribute","setAttributes","addEvent","setStatus","updateName","end","isRecording","recordException","NoopTracer","startSpan","Boolean","root","isSpanContext","startActiveSpan","arguments","g","NoopTracerProvider","ProxyTracer","_provider","name","options","_getTracer","Reflect","_delegate","getDelegateTracer","getDelegate","SamplingDecision","TraceStateImpl","_internalState","_parse","_clone","unset","serialize","_keys","reduce","push","join","reverse","trim","indexOf","slice","validateKey","validateValue","size","RegExp","test","createTraceState","INVALID_TRACEID","INVALID_SPANID","traceId","spanId","traceFlags","TraceFlags","SpanKind","isValidSpanId","isValidTraceId","SpanStatusCode","__nccwpck_require__","ab","p","d","_","f","b","v","O","P","N","S","C","vendored","React","__defProp","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","__export","target","all","__copyProps","to","except","desc","key","__toCommonJS","mod","src_exports","RequestCookies","ResponseCookies","parseCookie","parseSetCookie","stringifyCookie","_a","attrs","path","expires","Date","toUTCString","maxAge","domain","secure","httpOnly","sameSite","partitioned","priority","filter","stringified","encodeURIComponent","cookie","pair","splitAt","decodeURIComponent","setCookie","attributes","httponly","maxage","samesite","fromEntries","value2","toLowerCase","replace","Number","parseSameSite","parsePriority","compact","newT","SAME_SITE","string","includes","PRIORITY","splitCookiesString","cookiesString","cookiesStrings","pos","start","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","charAt","notSpecialChar","substring","requestHeaders","_parsed","_headers","header","parsed","iterator","args","getAll","names","result","isArray","JSON","stringify","values","responseHeaders","_b","_c","getSetCookie","cookieStrings","cookieString","normalizeCookie","bag","headers","serialized","append","now","parse","TypeError","decode","substr","tryDecode","encode","isNaN","isFinite","Math","floor","RouteKind","detectDomainLocale","domainItems","hostname","detectedLocale","item","domainHostname","defaultLocale","locales","some","locale","removeTrailingSlash","route","parsePath","hashIndex","queryIndex","hasQuery","pathname","query","hash","addPathPrefix","prefix","startsWith","addPathSuffix","suffix","pathHasPrefix","addLocale","ignorePrefix","lower","formatNextPathnameInfo","buildId","trailingSlash","basePath","endsWith","getHostname","host","normalizeLocalePath","cache","WeakMap","lowercasedLocales","segments","segment","index","removePathPrefix","withoutPrefix","getNextPathnameInfo","i18n","nextConfig","pathnameNoDataPrefix","paths","parseData","i18nProvider","analyze","NextURL","REGEX_LOCALHOST_HOSTNAME","parseURL","url","base","URL","String","Internal","constructor","input","baseOrOpts","opts","__NEXT_NO_MIDDLEWARE_URL_NORMALIZE","domainLocale","domains","formatPathname","forceLocale","formatSearch","search","searchParams","port","protocol","href","origin","password","username","toJSON","clone","ACTION_SUFFIX","APP_DIR_ALIAS","CACHE_ONE_YEAR_SECONDS","DOT_NEXT_ALIAS","ESLINT_DEFAULT_DIRS","GSP_NO_RETURNED_VALUE","GSSP_COMPONENT_MEMBER_ERROR","GSSP_NO_RETURNED_VALUE","HTML_CONTENT_TYPE_HEADER","INFINITE_CACHE","INSTRUMENTATION_HOOK_FILENAME","JSON_CONTENT_TYPE_HEADER","MATCHED_PATH_HEADER","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","NEXT_BODY_SUFFIX","NEXT_CACHE_IMPLICIT_TAG_ID","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_CACHE_ROOT_PARAM_TAG_ID","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_DATA_SUFFIX","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_META_SUFFIX","NEXT_NAV_DEPLOYMENT_ID_HEADER","NEXT_QUERY_PARAM_PREFIX","NEXT_RESUME_HEADER","NEXT_RESUME_STATE_LENGTH_HEADER","NON_STANDARD_NODE_ENV","PAGES_DIR_ALIAS","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","PROXY_FILENAME","PROXY_LOCATION_REGEXP","PUBLIC_DIR_MIDDLEWARE_CONFLICT","ROOT_DIR_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","SERVER_PROPS_EXPORT_ERROR","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","SERVER_RUNTIME","SSG_FALLBACK_EXPORT_ERROR","SSG_GET_INITIAL_PROPS_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","TEXT_PLAIN_CONTENT_TYPE_HEADER","UNSTABLE_REVALIDATE_RENAME_ERROR","WEBPACK_LAYERS","WEBPACK_RESOURCE_QUERIES","WEB_SOCKET_MAX_RECONNECTIONS","edge","experimentalEdge","nodejs","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","edgeSSREntry","metadata","metadataRoute","metadataImageMeta","fromNodeOutgoingHttpHeaders","normalizeNextQueryParam","toNodeOutgoingHttpHeaders","validateURL","nodeHeaders","Headers","cookies","cause","prefixes","PageSignatureError","RemovedPageError","RemovedUAError","page","INTERNALS","NextRequest","Request","init","body","duplex","nextUrl","bodyUsed","credentials","destination","integrity","keepalive","method","mode","redirect","referrer","referrerPolicy","signal","ua","ReflectAdapter","prop","receiver","deleteProperty","NextResponse","REDIRECTS","handleMiddlewareField","request","Response","cookiesProxy","Proxy","newHeaders","ok","redirected","status","statusText","type","json","response","RangeError","initObj","rewrite","next","ImageResponse","w","m","h","k","x","y","q","T","z","A","E","U","j","R","M","B","V","D","I","W","F","G","H","L","Z","extend","concat","enumerize","toUpperCase","lowerize","majorize","rgxMapper","exec","strMapper","$","X","ME","XP","Vista","RT","K","browser","cpu","device","engine","os","UAParser","getResult","navigator","userAgent","userAgentData","getBrowser","brave","isBrave","getCPU","getDevice","mobile","standalone","maxTouchPoints","getEngine","getOS","platform","getUA","setUA","BROWSER","CPU","DEVICE","ENGINE","OS","define","amd","Q","jQuery","Zepto","Y","isBot","userAgentFromString","parseua","URLPattern","GlobalURLPattern","after","task","workStore","workAsyncStorage","getStore","afterContext","DynamicServerError","isDynamicServerError","DYNAMIC_ERROR_CODE","description","digest","err","StaticGenBailoutError","isStaticGenBailoutError","NEXT_STATIC_GEN_BAILOUT","code","InvariantError","createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej","RenderStage","StagedRenderingController","abortSignal","abandonController","shouldTrackSyncIO","currentStage","syncInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","staticStageListeners","earlyRuntimeStageListeners","runtimeStageListeners","dynamicStageListeners","staticStagePromise","earlyRuntimeStagePromise","runtimeStagePromise","dynamicStagePromise","addEventListener","reason","catch","ignoreReject","once","abandonRender","onStage","stage","callback","shouldTrackSyncInterrupt","syncInterruptCurrentStageWithReason","abort","advanceStage","getSyncInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","resolveStaticStage","resolveEarlyRuntimeStage","resolveRuntimeStage","performance","timeOrigin","resolveDynamicStage","staticListeners","earlyRuntimeListeners","runtimeListeners","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","then","delayUntilRuntimeStage","getRuntimeStage","isHangingPromiseRejectionError","makeDevtoolsIOAwarePromise","makeHangingPromise","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","expression","abortListenersBySignal","aborted","hangingPromise","boundRejection","currentListeners","listeners","underlying","requestStore","stagedRendering","setTimeout","EarlyStatic","EarlyRuntime","Runtime","prerenderStore","METADATA_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","atLeastOneTask","scheduleImmediate","scheduleOnNextTick","waitAtLeastOneReactRenderTask","cb","nextTick","setImmediate","BailoutToCSRError","isBailoutToCSRError","BAILOUT_TO_CSR","INSTANT_VALIDATION_BOUNDARY_NAME","DynamicHoleKind","Postpone","PreludeState","abortAndThrowOnSynchronousRequestDataAccess","abortOnSynchronousPlatformIOAccess","accessedDynamicData","annotateDynamicAccess","consumeDynamicAccess","createDynamicTrackingState","createDynamicValidationState","createHangingInputAbortSignal","createInstantValidationState","createRenderInBrowserAbortSignal","formatDynamicAPIAccesses","getFirstDynamicReason","getNavigationDisallowedDynamicReasons","getStaticShellDisallowedDynamicReasons","isDynamicPostpone","isPrerenderInterruptedError","logDisallowedDynamicError","markCurrentScopeAsDynamic","postponeWithTracking","throwIfDisallowedDynamic","throwToInterruptStaticGeneration","trackAllowedDynamicAccess","trackDynamicDataInDynamicRender","trackDynamicHoleInNavigation","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","trackThrownErrorInNavigation","useDynamicRouteParams","useDynamicSearchParams","hasPostpone","unstable_postpone","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","trackingState","store","workUnitStore","forceDynamic","forceStatic","dynamicShouldError","dynamicTracking","revalidate","dynamicUsageDescription","dynamicUsageStack","usedDynamic","abortOnSynchronousDynamicDataAccess","createPrerenderInterruptedError","controller","errorWithStack","prerenderSignal","workUnitAsyncStorage","assertPostpone","createPostponeReason","isDynamicPostponeReason","NEXT_PRERENDER_INTERRUPTED","serverDynamic","clientDynamic","access","line","AbortController","cacheSignal","inputReady","fallbackParams","fallbackRouteParams","use","renderSignal","throwForMissingRequestStore","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","hasMetadataRegex","hasViewportRegex","hasOutletRegex","hasInstantValidationBoundaryRegex","componentStack","dynamicValidation","addErrorContext","createInstantStack","hasAllowedClientDynamicAboveBoundary","validationPreventingErrors","thrownErrorsOutsideBoundary","kind","boundaryState","usageDescription","boundaryLocation","expectedIds","renderedIds","suspenseLocation","syncError","thrownValue","ownerStack","captureOwnerStack","__NEXT_DEV_SERVER","prelude","configAllowsBlocking","validationSampleTracking","missingSampleErrors","isRequestAPICallableInsideAfter","throwForSearchParamsAccessInUseCache","throwWithStaticGenerationBailoutErrorWithDynamicError","constructorOpt","captureStackTrace","invalidDynamicUsageError","afterTaskStore","afterTaskAsyncStorage","rootTaskSpawnPhase","connection","callingExpression","phase","exportName","asyncApiPromises","Dynamic","serverExports"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106]} \ No newline at end of file diff --git a/.next/server/chunks/[root-of-the-server]__0nwnmaq._.js b/.next/server/chunks/[root-of-the-server]__0nwnmaq._.js new file mode 100644 index 0000000..b1e1d70 --- /dev/null +++ b/.next/server/chunks/[root-of-the-server]__0nwnmaq._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(e,t,r)=>{t.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},18622,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,t,r)=>{t.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},72755,e=>{"use strict";var t=e.i(47909),r=e.i(74017),a=e.i(96250),n=e.i(59756),A=e.i(61916),o=e.i(74677),i=e.i(69741),s=e.i(16795),l=e.i(87718),d=e.i(95169),c=e.i(47587),u=e.i(66012),p=e.i(70101),R=e.i(26937),g=e.i(10372),m=e.i(93695);e.i(52474);var h=e.i(220),v=e.i(89171);let w=Buffer.from("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","base64");e.s(["GET",0,function(){return new v.NextResponse(w,{headers:{"Content-Type":"image/png","Cache-Control":"public, max-age=0, must-revalidate"}})},"dynamic",0,"force-static"],11629);var C=e.i(11629);let x=new t.AppRouteRouteModule({definition:{kind:r.RouteKind.APP_ROUTE,page:"/icon.png/route",pathname:"/icon.png",filename:"icon.png--route-entry",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/src/app/icon.png--route-entry.js",nextConfigOutput:"",userland:C,...{}}),{workAsyncStorage:y,workUnitAsyncStorage:E,serverHooks:G}=x;async function Z(e,t,a){a.requestMeta&&(0,n.setRequestMeta)(e,a.requestMeta),x.isDev&&(0,n.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let v="/icon.png/route";v=v.replace(/\/index$/,"")||"/";let w=await x.prepare(e,t,{srcPage:v,multiZoneDraftMode:!1});if(!w)return t.statusCode=400,t.end("Bad Request"),null==a.waitUntil||a.waitUntil.call(a,Promise.resolve()),null;let{buildId:C,deploymentId:y,params:E,nextConfig:G,parsedUrl:Z,isDraftMode:b,prerenderManifest:P,routerServerContext:I,isOnDemandRevalidate:f,revalidateOnlyGenerated:O,resolvedPathname:H,clientReferenceManifest:T,serverActionsManifest:U}=w,N=(0,i.normalizeAppPath)(v),B=!!(P.dynamicRoutes[N]||P.routes[H]),j=async()=>((null==I?void 0:I.render404)?await I.render404(e,t,Z,!1):t.end("This page could not be found"),null);if(B&&!b){let e=!!P.routes[H],t=P.dynamicRoutes[N];if(t&&!1===t.fallback&&!e){if(G.adapterPath)return await j();throw new m.NoFallbackError}}let Y=null;!B||x.isDev||b||(Y="/index"===(Y=H)?"/":Y);let D=!0===x.isDev||!B,M=B&&!D;U&&T&&(0,o.setManifestsSingleton)({page:v,clientReferenceManifest:T,serverActionsManifest:U});let S=e.method||"GET",W=(0,A.getTracer)(),F=W.getActiveScopeSpan(),J=!!(null==I?void 0:I.isWrappedByNextServer),k=!!(0,n.getRequestMeta)(e,"minimalMode"),Q=(0,n.getRequestMeta)(e,"incrementalCache")||await x.getIncrementalCache(e,G,P,k);null==Q||Q.resetRequestCache(),globalThis.__incrementalCache=Q;let K={params:E,previewProps:P.preview,renderOpts:{experimental:{authInterrupts:!!G.experimental.authInterrupts},cacheComponents:!!G.cacheComponents,supportsDynamicResponse:D,incrementalCache:Q,cacheLifeProfiles:G.cacheLife,waitUntil:a.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,r,a,n)=>x.onRequestError(e,t,a,n,I)},sharedContext:{buildId:C,deploymentId:y}},L=new s.NodeNextRequest(e),V=new s.NodeNextResponse(t),X=l.NextRequestAdapter.fromNodeNextRequest(L,(0,l.signalFromNodeResponse)(t));try{let n,o=async e=>x.handle(X,K).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let r=W.getRootSpanAttributes();if(!r)return;if(r.get("next.span_type")!==d.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${r.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let a=r.get("next.route");if(a){let t=`${S} ${a}`;e.setAttributes({"next.route":a,"http.route":a,"next.span_name":t}),e.updateName(t),n&&n!==e&&(n.setAttribute("http.route",a),n.updateName(t))}else e.updateName(`${S} ${v}`)}),i=async n=>{var A,i;let s=async({previousCacheEntry:r})=>{try{if(!k&&f&&O&&!r)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let A=await o(n);e.fetchMetrics=K.renderOpts.fetchMetrics;let i=K.renderOpts.pendingWaitUntil;i&&a.waitUntil&&(a.waitUntil(i),i=void 0);let s=K.renderOpts.collectedTags;if(!B)return await (0,u.sendResponse)(L,V,A,K.renderOpts.pendingWaitUntil),null;{let e=await A.blob(),t=(0,p.toNodeOutgoingHttpHeaders)(A.headers);s&&(t[g.NEXT_CACHE_TAGS_HEADER]=s),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let r=void 0!==K.renderOpts.collectedRevalidate&&!(K.renderOpts.collectedRevalidate>=g.INFINITE_CACHE)&&K.renderOpts.collectedRevalidate,a=void 0===K.renderOpts.collectedExpire||K.renderOpts.collectedExpire>=g.INFINITE_CACHE?void 0:K.renderOpts.collectedExpire;return{value:{kind:h.CachedRouteKind.APP_ROUTE,status:A.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:r,expire:a}}}}catch(t){throw(null==r?void 0:r.isStale)&&await x.onRequestError(e,t,{routerKind:"App Router",routePath:v,routeType:"route",revalidateReason:(0,c.getRevalidateReason)({isStaticGeneration:M,isOnDemandRevalidate:f})},!1,I),t}},l=await x.handleResponse({req:e,nextConfig:G,cacheKey:Y,routeKind:r.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:P,isRoutePPREnabled:!1,isOnDemandRevalidate:f,revalidateOnlyGenerated:O,responseGenerator:s,waitUntil:a.waitUntil,isMinimalMode:k});if(!B)return null;if((null==l||null==(A=l.value)?void 0:A.kind)!==h.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==l||null==(i=l.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});k||t.setHeader("x-nextjs-cache",f?"REVALIDATED":l.isMiss?"MISS":l.isStale?"STALE":"HIT"),b&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let d=(0,p.fromNodeOutgoingHttpHeaders)(l.value.headers);return k&&B||d.delete(g.NEXT_CACHE_TAGS_HEADER),!l.cacheControl||t.getHeader("Cache-Control")||d.get("Cache-Control")||d.set("Cache-Control",(0,R.getCacheControlHeader)(l.cacheControl)),await (0,u.sendResponse)(L,V,new Response(l.value.body,{headers:d,status:l.value.status||200})),null};J&&F?await i(F):(n=W.getActiveScopeSpan(),await W.withPropagatedContext(e.headers,()=>W.trace(d.BaseServerSpan.handleRequest,{spanName:`${S} ${v}`,kind:A.SpanKind.SERVER,attributes:{"http.method":S,"http.target":e.url}},i),void 0,!J))}catch(t){if(t instanceof m.NoFallbackError||await x.onRequestError(e,t,{routerKind:"App Router",routePath:N,routeType:"route",revalidateReason:(0,c.getRevalidateReason)({isStaticGeneration:M,isOnDemandRevalidate:f})},!1,I),B)throw t;return await (0,u.sendResponse)(L,V,new Response(null,{status:500})),null}}e.s(["handler",0,Z,"patchFetch",0,function(){return(0,a.patchFetch)({workAsyncStorage:y,workUnitAsyncStorage:E})},"routeModule",0,x,"serverHooks",0,G,"workAsyncStorage",0,y,"workUnitAsyncStorage",0,E],72755)}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__0nwnmaq._.js.map \ No newline at end of file diff --git a/.next/server/chunks/[root-of-the-server]__0nwnmaq._.js.map b/.next/server/chunks/[root-of-the-server]__0nwnmaq._.js.map new file mode 100644 index 0000000..7350f78 --- /dev/null +++ b/.next/server/chunks/[root-of-the-server]__0nwnmaq._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../node_modules/next/dist/esm/build/templates/app-route.js","../../../src/app/icon.png--route-entry.js"],"sourcesContent":["import { AppRouteRouteModule } from \"next/dist/esm/server/route-modules/app-route/module.compiled\";\nimport { RouteKind } from \"next/dist/esm/server/route-kind\";\nimport { patchFetch as _patchFetch } from \"next/dist/esm/server/lib/patch-fetch\";\nimport { addRequestMeta, getRequestMeta, setRequestMeta } from \"next/dist/esm/server/request-meta\";\nimport { getTracer, SpanKind } from \"next/dist/esm/server/lib/trace/tracer\";\nimport { setManifestsSingleton } from \"next/dist/esm/server/app-render/manifests-singleton\";\nimport { normalizeAppPath } from \"next/dist/esm/shared/lib/router/utils/app-paths\";\nimport { NodeNextRequest, NodeNextResponse } from \"next/dist/esm/server/base-http/node\";\nimport { NextRequestAdapter, signalFromNodeResponse } from \"next/dist/esm/server/web/spec-extension/adapters/next-request\";\nimport { BaseServerSpan } from \"next/dist/esm/server/lib/trace/constants\";\nimport { getRevalidateReason } from \"next/dist/esm/server/instrumentation/utils\";\nimport { sendResponse } from \"next/dist/esm/server/send-response\";\nimport { fromNodeOutgoingHttpHeaders, toNodeOutgoingHttpHeaders } from \"next/dist/esm/server/web/utils\";\nimport { getCacheControlHeader } from \"next/dist/esm/server/lib/cache-control\";\nimport { INFINITE_CACHE, NEXT_CACHE_TAGS_HEADER } from \"next/dist/esm/lib/constants\";\nimport { NoFallbackError } from \"next/dist/esm/shared/lib/no-fallback-error.external\";\nimport { CachedRouteKind } from \"next/dist/esm/server/response-cache\";\nimport * as userland from \"INNER_APP_ROUTE\";\n// We inject the nextConfigOutput here so that we can use them in the route\n// module.\nconst nextConfigOutput = \"\"\nconst routeModule = new AppRouteRouteModule({\n definition: {\n kind: RouteKind.APP_ROUTE,\n page: \"/icon.png/route\",\n pathname: \"/icon.png\",\n filename: \"icon.png--route-entry\",\n bundlePath: \"\"\n },\n distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',\n relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',\n resolvedPagePath: \"[project]/src/app/icon.png--route-entry.js\",\n nextConfigOutput,\n // The static import is used for initialization (methods, dynamic, etc.).\n userland: userland,\n // In Turbopack dev mode, also provide a getter that calls require() on every\n // request. This re-reads from devModuleCache so HMR updates are picked up,\n // and the async wrapper unwraps async-module Promises (ESM-only\n // serverExternalPackages) automatically.\n ...process.env.TURBOPACK && process.env.__NEXT_DEV_SERVER ? {\n getUserland: ()=>import(\"INNER_APP_ROUTE\")\n } : {}\n});\n// Pull out the exports that we need to expose from the module. This should\n// be eliminated when we've moved the other routes to the new format. These\n// are used to hook into the route.\nconst { workAsyncStorage, workUnitAsyncStorage, serverHooks } = routeModule;\nfunction patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage\n });\n}\nexport { routeModule, workAsyncStorage, workUnitAsyncStorage, serverHooks, patchFetch, };\nexport async function handler(req, res, ctx) {\n if (ctx.requestMeta) {\n setRequestMeta(req, ctx.requestMeta);\n }\n if (routeModule.isDev) {\n addRequestMeta(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint());\n }\n let srcPage = \"/icon.png/route\";\n // turbopack doesn't normalize `/index` in the page name\n // so we need to to process dynamic routes properly\n // TODO: fix turbopack providing differing value from webpack\n if (process.env.TURBOPACK) {\n srcPage = srcPage.replace(/\\/index$/, '') || '/';\n } else if (srcPage === '/index') {\n // we always normalize /index specifically\n srcPage = '/';\n }\n const multiZoneDraftMode = process.env.__NEXT_MULTI_ZONE_DRAFT_MODE;\n const prepareResult = await routeModule.prepare(req, res, {\n srcPage,\n multiZoneDraftMode\n });\n if (!prepareResult) {\n res.statusCode = 400;\n res.end('Bad Request');\n ctx.waitUntil == null ? void 0 : ctx.waitUntil.call(ctx, Promise.resolve());\n return null;\n }\n const { buildId, deploymentId, params, nextConfig, parsedUrl, isDraftMode, prerenderManifest, routerServerContext, isOnDemandRevalidate, revalidateOnlyGenerated, resolvedPathname, clientReferenceManifest, serverActionsManifest } = prepareResult;\n const normalizedSrcPage = normalizeAppPath(srcPage);\n let isIsr = Boolean(prerenderManifest.dynamicRoutes[normalizedSrcPage] || prerenderManifest.routes[resolvedPathname]);\n const render404 = async ()=>{\n // TODO: should route-module itself handle rendering the 404\n if (routerServerContext == null ? void 0 : routerServerContext.render404) {\n await routerServerContext.render404(req, res, parsedUrl, false);\n } else {\n res.end('This page could not be found');\n }\n return null;\n };\n if (isIsr && !isDraftMode) {\n const isPrerendered = Boolean(prerenderManifest.routes[resolvedPathname]);\n const prerenderInfo = prerenderManifest.dynamicRoutes[normalizedSrcPage];\n if (prerenderInfo) {\n if (prerenderInfo.fallback === false && !isPrerendered) {\n if (nextConfig.adapterPath) {\n return await render404();\n }\n throw new NoFallbackError();\n }\n }\n }\n let cacheKey = null;\n if (isIsr && !routeModule.isDev && !isDraftMode) {\n cacheKey = resolvedPathname;\n // ensure /index and / is normalized to one key\n cacheKey = cacheKey === '/index' ? '/' : cacheKey;\n }\n const supportsDynamicResponse = // If we're in development, we always support dynamic HTML\n routeModule.isDev === true || // If this is not SSG or does not have static paths, then it supports\n // dynamic HTML.\n !isIsr;\n // This is a revalidation request if the request is for a static\n // page and it is not being resumed from a postponed render and\n // it is not a dynamic RSC request then it is a revalidation\n // request.\n const isStaticGeneration = isIsr && !supportsDynamicResponse;\n // Before rendering (which initializes component tree modules), we have to\n // set the reference manifests to our global store so Server Action's\n // encryption util can access to them at the top level of the page module.\n if (serverActionsManifest && clientReferenceManifest) {\n setManifestsSingleton({\n page: srcPage,\n clientReferenceManifest,\n serverActionsManifest\n });\n }\n const method = req.method || 'GET';\n const tracer = getTracer();\n const activeSpan = tracer.getActiveScopeSpan();\n const isWrappedByNextServer = Boolean(routerServerContext == null ? void 0 : routerServerContext.isWrappedByNextServer);\n const isMinimalMode = Boolean(getRequestMeta(req, 'minimalMode'));\n const incrementalCache = getRequestMeta(req, 'incrementalCache') || await routeModule.getIncrementalCache(req, nextConfig, prerenderManifest, isMinimalMode);\n incrementalCache == null ? void 0 : incrementalCache.resetRequestCache();\n globalThis.__incrementalCache = incrementalCache;\n const context = {\n params,\n previewProps: prerenderManifest.preview,\n renderOpts: {\n experimental: {\n authInterrupts: Boolean(nextConfig.experimental.authInterrupts)\n },\n cacheComponents: Boolean(nextConfig.cacheComponents),\n supportsDynamicResponse,\n incrementalCache,\n cacheLifeProfiles: nextConfig.cacheLife,\n waitUntil: ctx.waitUntil,\n onClose: (cb)=>{\n res.on('close', cb);\n },\n onAfterTaskError: undefined,\n onInstrumentationRequestError: (error, _request, errorContext, silenceLog)=>routeModule.onRequestError(req, error, errorContext, silenceLog, routerServerContext)\n },\n sharedContext: {\n buildId,\n deploymentId\n }\n };\n const nodeNextReq = new NodeNextRequest(req);\n const nodeNextRes = new NodeNextResponse(res);\n const nextReq = NextRequestAdapter.fromNodeNextRequest(nodeNextReq, signalFromNodeResponse(res));\n try {\n let parentSpan;\n const invokeRouteModule = async (span)=>{\n return routeModule.handle(nextReq, context).finally(()=>{\n if (!span) return;\n span.setAttributes({\n 'http.status_code': res.statusCode,\n 'next.rsc': false\n });\n const rootSpanAttributes = tracer.getRootSpanAttributes();\n // We were unable to get attributes, probably OTEL is not enabled\n if (!rootSpanAttributes) {\n return;\n }\n if (rootSpanAttributes.get('next.span_type') !== BaseServerSpan.handleRequest) {\n console.warn(`Unexpected root span type '${rootSpanAttributes.get('next.span_type')}'. Please report this Next.js issue https://github.com/vercel/next.js`);\n return;\n }\n const route = rootSpanAttributes.get('next.route');\n if (route) {\n const name = `${method} ${route}`;\n span.setAttributes({\n 'next.route': route,\n 'http.route': route,\n 'next.span_name': name\n });\n span.updateName(name);\n // Propagate http.route to the parent span if one exists (e.g.\n // a platform-created HTTP span in adapter deployments).\n if (parentSpan && parentSpan !== span) {\n parentSpan.setAttribute('http.route', route);\n parentSpan.updateName(name);\n }\n } else {\n span.updateName(`${method} ${srcPage}`);\n }\n });\n };\n const handleResponse = async (currentSpan)=>{\n var _cacheEntry_value;\n const responseGenerator = async ({ previousCacheEntry })=>{\n try {\n if (!isMinimalMode && isOnDemandRevalidate && revalidateOnlyGenerated && !previousCacheEntry) {\n res.statusCode = 404;\n // on-demand revalidate always sets this header\n res.setHeader('x-nextjs-cache', 'REVALIDATED');\n res.end('This page could not be found');\n return null;\n }\n const response = await invokeRouteModule(currentSpan);\n req.fetchMetrics = context.renderOpts.fetchMetrics;\n let pendingWaitUntil = context.renderOpts.pendingWaitUntil;\n // Attempt using provided waitUntil if available\n // if it's not we fallback to sendResponse's handling\n if (pendingWaitUntil) {\n if (ctx.waitUntil) {\n ctx.waitUntil(pendingWaitUntil);\n pendingWaitUntil = undefined;\n }\n }\n const cacheTags = context.renderOpts.collectedTags;\n // If the request is for a static response, we can cache it so long\n // as it's not edge.\n if (isIsr) {\n const blob = await response.blob();\n // Copy the headers from the response.\n const headers = toNodeOutgoingHttpHeaders(response.headers);\n if (cacheTags) {\n headers[NEXT_CACHE_TAGS_HEADER] = cacheTags;\n }\n if (!headers['content-type'] && blob.type) {\n headers['content-type'] = blob.type;\n }\n const revalidate = typeof context.renderOpts.collectedRevalidate === 'undefined' || context.renderOpts.collectedRevalidate >= INFINITE_CACHE ? false : context.renderOpts.collectedRevalidate;\n const expire = typeof context.renderOpts.collectedExpire === 'undefined' || context.renderOpts.collectedExpire >= INFINITE_CACHE ? undefined : context.renderOpts.collectedExpire;\n // Create the cache entry for the response.\n const cacheEntry = {\n value: {\n kind: CachedRouteKind.APP_ROUTE,\n status: response.status,\n body: Buffer.from(await blob.arrayBuffer()),\n headers\n },\n cacheControl: {\n revalidate,\n expire\n }\n };\n return cacheEntry;\n } else {\n // send response without caching if not ISR\n await sendResponse(nodeNextReq, nodeNextRes, response, context.renderOpts.pendingWaitUntil);\n return null;\n }\n } catch (err) {\n // if this is a background revalidate we need to report\n // the request error here as it won't be bubbled\n if (previousCacheEntry == null ? void 0 : previousCacheEntry.isStale) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: srcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n throw err;\n }\n };\n const cacheEntry = await routeModule.handleResponse({\n req,\n nextConfig,\n cacheKey,\n routeKind: RouteKind.APP_ROUTE,\n isFallback: false,\n prerenderManifest,\n isRoutePPREnabled: false,\n isOnDemandRevalidate,\n revalidateOnlyGenerated,\n responseGenerator,\n waitUntil: ctx.waitUntil,\n isMinimalMode\n });\n // we don't create a cacheEntry for ISR\n if (!isIsr) {\n return null;\n }\n if ((cacheEntry == null ? void 0 : (_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) !== CachedRouteKind.APP_ROUTE) {\n var _cacheEntry_value1;\n throw Object.defineProperty(new Error(`Invariant: app-route received invalid cache entry ${cacheEntry == null ? void 0 : (_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind}`), \"__NEXT_ERROR_CODE\", {\n value: \"E701\",\n enumerable: false,\n configurable: true\n });\n }\n if (!isMinimalMode) {\n res.setHeader('x-nextjs-cache', isOnDemandRevalidate ? 'REVALIDATED' : cacheEntry.isMiss ? 'MISS' : cacheEntry.isStale ? 'STALE' : 'HIT');\n }\n // Draft mode should never be cached\n if (isDraftMode) {\n res.setHeader('Cache-Control', 'private, no-cache, no-store, max-age=0, must-revalidate');\n }\n const headers = fromNodeOutgoingHttpHeaders(cacheEntry.value.headers);\n if (!(isMinimalMode && isIsr)) {\n headers.delete(NEXT_CACHE_TAGS_HEADER);\n }\n // If cache control is already set on the response we don't\n // override it to allow users to customize it via next.config\n if (cacheEntry.cacheControl && !res.getHeader('Cache-Control') && !headers.get('Cache-Control')) {\n headers.set('Cache-Control', getCacheControlHeader(cacheEntry.cacheControl));\n }\n await sendResponse(nodeNextReq, nodeNextRes, // @ts-expect-error - Argument of type 'Buffer' is not assignable to parameter of type 'BodyInit | null | undefined'.\n new Response(cacheEntry.value.body, {\n headers,\n status: cacheEntry.value.status || 200\n }));\n return null;\n };\n // TODO: activeSpan code path is for when wrapped by\n // next-server can be removed when this is no longer used\n if (isWrappedByNextServer && activeSpan) {\n await handleResponse(activeSpan);\n } else {\n parentSpan = tracer.getActiveScopeSpan();\n await tracer.withPropagatedContext(req.headers, ()=>tracer.trace(BaseServerSpan.handleRequest, {\n spanName: `${method} ${srcPage}`,\n kind: SpanKind.SERVER,\n attributes: {\n 'http.method': method,\n 'http.target': req.url\n }\n }, handleResponse), undefined, !isWrappedByNextServer);\n }\n } catch (err) {\n if (!(err instanceof NoFallbackError)) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: normalizedSrcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n // rethrow so that we can handle serving error page\n // If this is during static generation, throw the error again.\n if (isIsr) throw err;\n // Otherwise, send a 500 response.\n await sendResponse(nodeNextReq, nodeNextRes, new Response(null, {\n status: 500\n }));\n return null;\n }\n}\n\n//# sourceMappingURL=app-route.js.map\n","import { NextResponse } from 'next/server'\n\nconst contentType = \"image/png\"\nconst cacheControl = \"public, max-age=0, must-revalidate\"\nconst buffer = Buffer.from(\"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\", 'base64')\n\nexport function GET() {\n return new NextResponse(buffer, {\n headers: {\n 'Content-Type': contentType,\n 'Cache-Control': cacheControl,\n },\n })\n}\n\nexport const dynamic = 'force-static'\n"],"names":["contentType","cacheControl","buffer","Buffer","from","GET","headers","dynamic"],"mappings":"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","ignoreList":[0]} \ No newline at end of file diff --git a/.next/server/chunks/[turbopack]_runtime.js b/.next/server/chunks/[turbopack]_runtime.js new file mode 100644 index 0000000..5b4d43c --- /dev/null +++ b/.next/server/chunks/[turbopack]_runtime.js @@ -0,0 +1,903 @@ +const RUNTIME_PUBLIC_PATH = "server/chunks/[turbopack]_runtime.js"; +const RELATIVE_ROOT_PATH = ".."; +const ASSET_PREFIX = "/"; +const WORKER_FORWARDED_GLOBALS = ["NEXT_DEPLOYMENT_ID","NEXT_CLIENT_ASSET_SUFFIX"]; +// Apply forwarded globals from workerData if running in a worker thread +if (typeof require !== 'undefined') { + try { + const { workerData } = require('worker_threads'); + if (workerData?.__turbopack_globals__) { + Object.assign(globalThis, workerData.__turbopack_globals__); + // Remove internal data so it's not visible to user code + delete workerData.__turbopack_globals__; + } + } catch (_) { + // Not in a worker thread context, ignore + } +} +/** + * This file contains runtime types and functions that are shared between all + * TurboPack ECMAScript runtimes. + * + * It will be prepended to the runtime code of each runtime. + */ /* eslint-disable @typescript-eslint/no-unused-vars */ /// +/** + * Describes why a module was instantiated. + * Shared between browser and Node.js runtimes. + */ var SourceType = /*#__PURE__*/ function(SourceType) { + /** + * The module was instantiated because it was included in an evaluated chunk's + * runtime. + * SourceData is a ChunkPath. + */ SourceType[SourceType["Runtime"] = 0] = "Runtime"; + /** + * The module was instantiated because a parent module imported it. + * SourceData is a ModuleId. + */ SourceType[SourceType["Parent"] = 1] = "Parent"; + /** + * The module was instantiated because it was included in a chunk's hot module + * update. + * SourceData is an array of ModuleIds or undefined. + */ SourceType[SourceType["Update"] = 2] = "Update"; + return SourceType; +}(SourceType || {}); +/** + * Flag indicating which module object type to create when a module is merged. Set to `true` + * by each runtime that uses ModuleWithDirection (browser dev-base.ts, nodejs dev-base.ts, + * nodejs build-base.ts). Browser production (build-base.ts) leaves it as `false` since it + * uses plain Module objects. + */ let createModuleWithDirectionFlag = false; +const REEXPORTED_OBJECTS = new WeakMap(); +/** + * Constructs the `__turbopack_context__` object for a module. + */ function Context(module, exports) { + this.m = module; + // We need to store this here instead of accessing it from the module object to: + // 1. Make it available to factories directly, since we rewrite `this` to + // `__turbopack_context__.e` in CJS modules. + // 2. Support async modules which rewrite `module.exports` to a promise, so we + // can still access the original exports object from functions like + // `esmExport` + // Ideally we could find a new approach for async modules and drop this property altogether. + this.e = exports; +} +const contextPrototype = Context.prototype; +const hasOwnProperty = Object.prototype.hasOwnProperty; +const toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag; +function defineProp(obj, name, options) { + if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options); +} +function getOverwrittenModule(moduleCache, id) { + let module = moduleCache[id]; + if (!module) { + if (createModuleWithDirectionFlag) { + // set in development modes for hmr support + module = createModuleWithDirection(id); + } else { + module = createModuleObject(id); + } + moduleCache[id] = module; + } + return module; +} +/** + * Creates the module object. Only done here to ensure all module objects have the same shape. + */ function createModuleObject(id) { + return { + exports: {}, + error: undefined, + id, + namespaceObject: undefined + }; +} +function createModuleWithDirection(id) { + return { + exports: {}, + error: undefined, + id, + namespaceObject: undefined, + parents: [], + children: [] + }; +} +const BindingTag_Value = 0; +/** + * Adds the getters to the exports object. + */ function esm(exports, bindings) { + defineProp(exports, '__esModule', { + value: true + }); + if (toStringTag) defineProp(exports, toStringTag, { + value: 'Module' + }); + let i = 0; + while(i < bindings.length){ + const propName = bindings[i++]; + const tagOrFunction = bindings[i++]; + if (typeof tagOrFunction === 'number') { + if (tagOrFunction === BindingTag_Value) { + defineProp(exports, propName, { + value: bindings[i++], + enumerable: true, + writable: false + }); + } else { + throw new Error(`unexpected tag: ${tagOrFunction}`); + } + } else { + const getterFn = tagOrFunction; + if (typeof bindings[i] === 'function') { + const setterFn = bindings[i++]; + defineProp(exports, propName, { + get: getterFn, + set: setterFn, + enumerable: true + }); + } else { + defineProp(exports, propName, { + get: getterFn, + enumerable: true + }); + } + } + } + Object.seal(exports); +} +/** + * Makes the module an ESM with exports + */ function esmExport(bindings, id) { + let module; + let exports; + if (id != null) { + module = getOverwrittenModule(this.c, id); + exports = module.exports; + } else { + module = this.m; + exports = this.e; + } + module.namespaceObject = exports; + esm(exports, bindings); +} +contextPrototype.s = esmExport; +function ensureDynamicExports(module, exports) { + let reexportedObjects = REEXPORTED_OBJECTS.get(module); + if (!reexportedObjects) { + REEXPORTED_OBJECTS.set(module, reexportedObjects = []); + module.exports = module.namespaceObject = new Proxy(exports, { + get (target, prop) { + if (hasOwnProperty.call(target, prop) || prop === 'default' || prop === '__esModule') { + return Reflect.get(target, prop); + } + for (const obj of reexportedObjects){ + const value = Reflect.get(obj, prop); + if (value !== undefined) return value; + } + return undefined; + }, + ownKeys (target) { + const keys = Reflect.ownKeys(target); + for (const obj of reexportedObjects){ + for (const key of Reflect.ownKeys(obj)){ + if (key !== 'default' && !keys.includes(key)) keys.push(key); + } + } + return keys; + } + }); + } + return reexportedObjects; +} +/** + * Dynamically exports properties from an object + */ function dynamicExport(object, id) { + let module; + let exports; + if (id != null) { + module = getOverwrittenModule(this.c, id); + exports = module.exports; + } else { + module = this.m; + exports = this.e; + } + const reexportedObjects = ensureDynamicExports(module, exports); + if (typeof object === 'object' && object !== null) { + reexportedObjects.push(object); + } +} +contextPrototype.j = dynamicExport; +function exportValue(value, id) { + let module; + if (id != null) { + module = getOverwrittenModule(this.c, id); + } else { + module = this.m; + } + module.exports = value; +} +contextPrototype.v = exportValue; +function exportNamespace(namespace, id) { + let module; + if (id != null) { + module = getOverwrittenModule(this.c, id); + } else { + module = this.m; + } + module.exports = module.namespaceObject = namespace; +} +contextPrototype.n = exportNamespace; +function createGetter(obj, key) { + return ()=>obj[key]; +} +/** + * @returns prototype of the object + */ const getProto = Object.getPrototypeOf ? (obj)=>Object.getPrototypeOf(obj) : (obj)=>obj.__proto__; +/** Prototypes that are not expanded for exports */ const LEAF_PROTOTYPES = [ + null, + getProto({}), + getProto([]), + getProto(getProto) +]; +/** + * @param raw + * @param ns + * @param allowExportDefault + * * `false`: will have the raw module as default export + * * `true`: will have the default property as default export + */ function interopEsm(raw, ns, allowExportDefault) { + const bindings = []; + let defaultLocation = -1; + for(let current = raw; (typeof current === 'object' || typeof current === 'function') && !LEAF_PROTOTYPES.includes(current); current = getProto(current)){ + for (const key of Object.getOwnPropertyNames(current)){ + bindings.push(key, createGetter(raw, key)); + if (defaultLocation === -1 && key === 'default') { + defaultLocation = bindings.length - 1; + } + } + } + // this is not really correct + // we should set the `default` getter if the imported module is a `.cjs file` + if (!(allowExportDefault && defaultLocation >= 0)) { + // Replace the binding with one for the namespace itself in order to preserve iteration order. + if (defaultLocation >= 0) { + // Replace the getter with the value + bindings.splice(defaultLocation, 1, BindingTag_Value, raw); + } else { + bindings.push('default', BindingTag_Value, raw); + } + } + esm(ns, bindings); + return ns; +} +function createNS(raw) { + if (typeof raw === 'function') { + return function(...args) { + return raw.apply(this, args); + }; + } else { + return Object.create(null); + } +} +function esmImport(id) { + const module = getOrInstantiateModuleFromParent(id, this.m); + // any ES module has to have `module.namespaceObject` defined. + if (module.namespaceObject) return module.namespaceObject; + // only ESM can be an async module, so we don't need to worry about exports being a promise here. + const raw = module.exports; + return module.namespaceObject = interopEsm(raw, createNS(raw), raw && raw.__esModule); +} +contextPrototype.i = esmImport; +function asyncLoader(moduleId) { + const loader = this.r(moduleId); + return loader(esmImport.bind(this)); +} +contextPrototype.A = asyncLoader; +// Add a simple runtime require so that environments without one can still pass +// `typeof require` CommonJS checks so that exports are correctly registered. +const runtimeRequire = // @ts-ignore +typeof require === 'function' ? require : function require1() { + throw new Error('Unexpected use of runtime require'); +}; +contextPrototype.t = runtimeRequire; +function commonJsRequire(id) { + return getOrInstantiateModuleFromParent(id, this.m).exports; +} +contextPrototype.r = commonJsRequire; +/** + * Remove fragments and query parameters since they are never part of the context map keys + * + * This matches how we parse patterns at resolving time. Arguably we should only do this for + * strings passed to `import` but the resolve does it for `import` and `require` and so we do + * here as well. + */ function parseRequest(request) { + // Per the URI spec fragments can contain `?` characters, so we should trim it off first + // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5 + const hashIndex = request.indexOf('#'); + if (hashIndex !== -1) { + request = request.substring(0, hashIndex); + } + const queryIndex = request.indexOf('?'); + if (queryIndex !== -1) { + request = request.substring(0, queryIndex); + } + return request; +} +/** + * `require.context` and require/import expression runtime. + */ function moduleContext(map) { + function moduleContext(id) { + id = parseRequest(id); + if (hasOwnProperty.call(map, id)) { + return map[id].module(); + } + const e = new Error(`Cannot find module '${id}'`); + e.code = 'MODULE_NOT_FOUND'; + throw e; + } + moduleContext.keys = ()=>{ + return Object.keys(map); + }; + moduleContext.resolve = (id)=>{ + id = parseRequest(id); + if (hasOwnProperty.call(map, id)) { + return map[id].id(); + } + const e = new Error(`Cannot find module '${id}'`); + e.code = 'MODULE_NOT_FOUND'; + throw e; + }; + moduleContext.import = async (id)=>{ + return await moduleContext(id); + }; + return moduleContext; +} +contextPrototype.f = moduleContext; +/** + * Returns the path of a chunk defined by its data. + */ function getChunkPath(chunkData) { + return typeof chunkData === 'string' ? chunkData : chunkData.path; +} +function isPromise(maybePromise) { + return maybePromise != null && typeof maybePromise === 'object' && 'then' in maybePromise && typeof maybePromise.then === 'function'; +} +function isAsyncModuleExt(obj) { + return turbopackQueues in obj; +} +function createPromise() { + let resolve; + let reject; + const promise = new Promise((res, rej)=>{ + reject = rej; + resolve = res; + }); + return { + promise, + resolve: resolve, + reject: reject + }; +} +// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map. +// The CompressedModuleFactories format is +// - 1 or more module ids +// - a module factory function +// So walking this is a little complex but the flat structure is also fast to +// traverse, we can use `typeof` operators to distinguish the two cases. +function installCompressedModuleFactories(chunkModules, offset, moduleFactories, newModuleId) { + let i = offset; + while(i < chunkModules.length){ + let end = i + 1; + // Find our factory function + while(end < chunkModules.length && typeof chunkModules[end] !== 'function'){ + end++; + } + if (end === chunkModules.length) { + throw new Error('malformed chunk format, expected a factory function'); + } + // Install the factory for each module ID that doesn't already have one. + // When some IDs in this group already have a factory, reuse that existing + // group factory for the missing IDs to keep all IDs in the group consistent. + // Otherwise, install the factory from this chunk. + const moduleFactoryFn = chunkModules[end]; + let existingGroupFactory = undefined; + for(let j = i; j < end; j++){ + const id = chunkModules[j]; + const existingFactory = moduleFactories.get(id); + if (existingFactory) { + existingGroupFactory = existingFactory; + break; + } + } + const factoryToInstall = existingGroupFactory ?? moduleFactoryFn; + let didInstallFactory = false; + for(let j = i; j < end; j++){ + const id = chunkModules[j]; + if (!moduleFactories.has(id)) { + if (!didInstallFactory) { + if (factoryToInstall === moduleFactoryFn) { + applyModuleFactoryName(moduleFactoryFn); + } + didInstallFactory = true; + } + moduleFactories.set(id, factoryToInstall); + newModuleId?.(id); + } + } + i = end + 1; // end is pointing at the last factory advance to the next id or the end of the array. + } +} +// everything below is adapted from webpack +// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13 +const turbopackQueues = Symbol('turbopack queues'); +const turbopackExports = Symbol('turbopack exports'); +const turbopackError = Symbol('turbopack error'); +function resolveQueue(queue) { + if (queue && queue.status !== 1) { + queue.status = 1; + queue.forEach((fn)=>fn.queueCount--); + queue.forEach((fn)=>fn.queueCount-- ? fn.queueCount++ : fn()); + } +} +function wrapDeps(deps) { + return deps.map((dep)=>{ + if (dep !== null && typeof dep === 'object') { + if (isAsyncModuleExt(dep)) return dep; + if (isPromise(dep)) { + const queue = Object.assign([], { + status: 0 + }); + const obj = { + [turbopackExports]: {}, + [turbopackQueues]: (fn)=>fn(queue) + }; + dep.then((res)=>{ + obj[turbopackExports] = res; + resolveQueue(queue); + }, (err)=>{ + obj[turbopackError] = err; + resolveQueue(queue); + }); + return obj; + } + } + return { + [turbopackExports]: dep, + [turbopackQueues]: ()=>{} + }; + }); +} +function asyncModule(body, hasAwait) { + const module = this.m; + const queue = hasAwait ? Object.assign([], { + status: -1 + }) : undefined; + const depQueues = new Set(); + const { resolve, reject, promise: rawPromise } = createPromise(); + const promise = Object.assign(rawPromise, { + [turbopackExports]: module.exports, + [turbopackQueues]: (fn)=>{ + queue && fn(queue); + depQueues.forEach(fn); + promise['catch'](()=>{}); + } + }); + const attributes = { + get () { + return promise; + }, + set (v) { + // Calling `esmExport` leads to this. + if (v !== promise) { + promise[turbopackExports] = v; + } + } + }; + Object.defineProperty(module, 'exports', attributes); + Object.defineProperty(module, 'namespaceObject', attributes); + function handleAsyncDependencies(deps) { + const currentDeps = wrapDeps(deps); + const getResult = ()=>currentDeps.map((d)=>{ + if (d[turbopackError]) throw d[turbopackError]; + return d[turbopackExports]; + }); + const { promise, resolve } = createPromise(); + const fn = Object.assign(()=>resolve(getResult), { + queueCount: 0 + }); + function fnQueue(q) { + if (q !== queue && !depQueues.has(q)) { + depQueues.add(q); + if (q && q.status === 0) { + fn.queueCount++; + q.push(fn); + } + } + } + currentDeps.map((dep)=>dep[turbopackQueues](fnQueue)); + return fn.queueCount ? promise : getResult(); + } + function asyncResult(err) { + if (err) { + reject(promise[turbopackError] = err); + } else { + resolve(promise[turbopackExports]); + } + resolveQueue(queue); + } + body(handleAsyncDependencies, asyncResult); + if (queue && queue.status === -1) { + queue.status = 0; + } +} +contextPrototype.a = asyncModule; +/** + * A pseudo "fake" URL object to resolve to its relative path. + * + * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this + * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid + * hydration mismatch. + * + * This is based on webpack's existing implementation: + * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js + */ const relativeURL = function relativeURL(inputUrl) { + const realUrl = new URL(inputUrl, 'x:/'); + const values = {}; + for(const key in realUrl)values[key] = realUrl[key]; + values.href = inputUrl; + values.pathname = inputUrl.replace(/[?#].*/, ''); + values.origin = values.protocol = ''; + values.toString = values.toJSON = (..._args)=>inputUrl; + for(const key in values)Object.defineProperty(this, key, { + enumerable: true, + configurable: true, + value: values[key] + }); +}; +relativeURL.prototype = URL.prototype; +contextPrototype.U = relativeURL; +/** + * Utility function to ensure all variants of an enum are handled. + */ function invariant(never, computeMessage) { + throw new Error(`Invariant: ${computeMessage(never)}`); +} +/** + * Constructs an error message for when a module factory is not available. + */ function factoryNotAvailableMessage(moduleId, sourceType, sourceData) { + let instantiationReason; + switch(sourceType){ + case 0: + instantiationReason = `as a runtime entry of chunk ${sourceData}`; + break; + case 1: + instantiationReason = `because it was required from module ${sourceData}`; + break; + case 2: + instantiationReason = 'because of an HMR update'; + break; + default: + invariant(sourceType, (sourceType)=>`Unknown source type: ${sourceType}`); + } + return `Module ${moduleId} was instantiated ${instantiationReason}, but the module factory is not available.`; +} +/** + * A stub function to make `require` available but non-functional in ESM. + */ function requireStub(_moduleId) { + throw new Error('dynamic usage of require is not supported'); +} +contextPrototype.z = requireStub; +// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable. +contextPrototype.g = globalThis; +function applyModuleFactoryName(factory) { + // Give the module factory a nice name to improve stack traces. + Object.defineProperty(factory, 'name', { + value: 'module evaluation' + }); +} +/// +/// A 'base' utilities to support runtime can have externals. +/// Currently this is for node.js / edge runtime both. +/// If a fn requires node.js specific behavior, it should be placed in `node-external-utils` instead. +async function externalImport(id) { + let raw; + try { + raw = await import(id); + } catch (err) { + // TODO(alexkirsz) This can happen when a client-side module tries to load + // an external module we don't provide a shim for (e.g. querystring, url). + // For now, we fail semi-silently, but in the future this should be a + // compilation error. + throw new Error(`Failed to load external module ${id}: ${err}`); + } + if (raw && raw.__esModule && raw.default && 'default' in raw.default) { + return interopEsm(raw.default, createNS(raw), true); + } + return raw; +} +contextPrototype.y = externalImport; +function externalRequire(id, thunk, esm = false) { + let raw; + try { + raw = thunk(); + } catch (err) { + // TODO(alexkirsz) This can happen when a client-side module tries to load + // an external module we don't provide a shim for (e.g. querystring, url). + // For now, we fail semi-silently, but in the future this should be a + // compilation error. + throw new Error(`Failed to load external module ${id}: ${err}`); + } + if (!esm || raw.__esModule) { + return raw; + } + return interopEsm(raw, createNS(raw), true); +} +externalRequire.resolve = (id, options)=>{ + return require.resolve(id, options); +}; +contextPrototype.x = externalRequire; +/* eslint-disable @typescript-eslint/no-unused-vars */ const path = require('path'); +const relativePathToRuntimeRoot = path.relative(RUNTIME_PUBLIC_PATH, '.'); +// Compute the relative path to the `distDir`. +const relativePathToDistRoot = path.join(relativePathToRuntimeRoot, RELATIVE_ROOT_PATH); +const RUNTIME_ROOT = path.resolve(__filename, relativePathToRuntimeRoot); +// Compute the absolute path to the root, by stripping distDir from the absolute path to this file. +const ABSOLUTE_ROOT = path.resolve(__filename, relativePathToDistRoot); +/** + * Returns an absolute path to the given module path. + * Module path should be relative, either path to a file or a directory. + * + * This fn allows to calculate an absolute path for some global static values, such as + * `__dirname` or `import.meta.url` that Turbopack will not embeds in compile time. + * See ImportMetaBinding::code_generation for the usage. + */ function resolveAbsolutePath(modulePath) { + if (modulePath) { + return path.join(ABSOLUTE_ROOT, modulePath); + } + return ABSOLUTE_ROOT; +} +Context.prototype.P = resolveAbsolutePath; +/* eslint-disable @typescript-eslint/no-unused-vars */ /// +function readWebAssemblyAsResponse(path) { + const { createReadStream } = require('fs'); + const { Readable } = require('stream'); + const stream = createReadStream(path); + // @ts-ignore unfortunately there's a slight type mismatch with the stream. + return new Response(Readable.toWeb(stream), { + headers: { + 'content-type': 'application/wasm' + } + }); +} +async function compileWebAssemblyFromPath(path) { + const response = readWebAssemblyAsResponse(path); + return await WebAssembly.compileStreaming(response); +} +async function instantiateWebAssemblyFromPath(path, importsObj) { + const response = readWebAssemblyAsResponse(path); + const { instance } = await WebAssembly.instantiateStreaming(response, importsObj); + return instance.exports; +} +/* eslint-disable @typescript-eslint/no-unused-vars */ /// +/// +/// +/// +/// +/** + * Base Node.js runtime shared between production and development. + * Contains chunk loading, module caching, and other non-HMR functionality. + */ process.env.TURBOPACK = '1'; +const url = require('url'); +const moduleFactories = new Map(); +const moduleCache = Object.create(null); +/** + * Returns an absolute path to the given module's id. + */ function resolvePathFromModule(moduleId) { + const exported = this.r(moduleId); + const exportedPath = exported?.default ?? exported; + if (typeof exportedPath !== 'string') { + return exported; + } + const strippedAssetPrefix = exportedPath.slice(ASSET_PREFIX.length); + const resolved = path.resolve(RUNTIME_ROOT, strippedAssetPrefix); + return url.pathToFileURL(resolved).href; +} +/** + * Exports a URL value. No suffix is added in Node.js runtime. + */ function exportUrl(urlValue, id) { + exportValue.call(this, urlValue, id); +} +function loadRuntimeChunk(sourcePath, chunkData) { + if (typeof chunkData === 'string') { + loadRuntimeChunkPath(sourcePath, chunkData); + } else { + loadRuntimeChunkPath(sourcePath, chunkData.path); + } +} +const loadedChunks = new Set(); +const unsupportedLoadChunk = Promise.resolve(undefined); +const loadedChunk = Promise.resolve(undefined); +const chunkCache = new Map(); +function clearChunkCache() { + chunkCache.clear(); + loadedChunks.clear(); +} +function loadRuntimeChunkPath(sourcePath, chunkPath) { + if (!isJs(chunkPath)) { + // We only support loading JS chunks in Node.js. + // This branch can be hit when trying to load a CSS chunk. + return; + } + if (loadedChunks.has(chunkPath)) { + return; + } + try { + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + const chunkModules = require(resolved); + installCompressedModuleFactories(chunkModules, 0, moduleFactories); + loadedChunks.add(chunkPath); + } catch (cause) { + let errorMessage = `Failed to load chunk ${chunkPath}`; + if (sourcePath) { + errorMessage += ` from runtime for chunk ${sourcePath}`; + } + const error = new Error(errorMessage, { + cause + }); + error.name = 'ChunkLoadError'; + throw error; + } +} +function loadChunkAsync(chunkData) { + const chunkPath = typeof chunkData === 'string' ? chunkData : chunkData.path; + if (!isJs(chunkPath)) { + // We only support loading JS chunks in Node.js. + // This branch can be hit when trying to load a CSS chunk. + return unsupportedLoadChunk; + } + let entry = chunkCache.get(chunkPath); + if (entry === undefined) { + try { + // resolve to an absolute path to simplify `require` handling + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + // TODO: consider switching to `import()` to enable concurrent chunk loading and async file io + // However this is incompatible with hot reloading (since `import` doesn't use the require cache) + const chunkModules = require(resolved); + installCompressedModuleFactories(chunkModules, 0, moduleFactories); + entry = loadedChunk; + } catch (cause) { + const errorMessage = `Failed to load chunk ${chunkPath} from module ${this.m.id}`; + const error = new Error(errorMessage, { + cause + }); + error.name = 'ChunkLoadError'; + // Cache the failure promise, future requests will also get this same rejection + entry = Promise.reject(error); + } + chunkCache.set(chunkPath, entry); + } + // TODO: Return an instrumented Promise that React can use instead of relying on referential equality. + return entry; +} +contextPrototype.l = loadChunkAsync; +function loadChunkAsyncByUrl(chunkUrl) { + const path1 = url.fileURLToPath(new URL(chunkUrl, RUNTIME_ROOT)); + return loadChunkAsync.call(this, path1); +} +contextPrototype.L = loadChunkAsyncByUrl; +function loadWebAssembly(chunkPath, _edgeModule, imports) { + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + return instantiateWebAssemblyFromPath(resolved, imports); +} +contextPrototype.w = loadWebAssembly; +function loadWebAssemblyModule(chunkPath, _edgeModule) { + const resolved = path.resolve(RUNTIME_ROOT, chunkPath); + return compileWebAssemblyFromPath(resolved); +} +contextPrototype.u = loadWebAssemblyModule; +/** + * Creates a Node.js worker thread by instantiating the given WorkerConstructor + * with the appropriate path and options, including forwarded globals. + * + * @param WorkerConstructor The Worker constructor from worker_threads + * @param workerPath Path to the worker entry chunk + * @param workerOptions options to pass to the Worker constructor (optional) + */ function createWorker(WorkerConstructor, workerPath, workerOptions) { + // Build the forwarded globals object + const forwardedGlobals = {}; + for (const name of WORKER_FORWARDED_GLOBALS){ + forwardedGlobals[name] = globalThis[name]; + } + // Merge workerData with forwarded globals + const existingWorkerData = workerOptions?.workerData || {}; + const options = { + ...workerOptions, + workerData: { + ...typeof existingWorkerData === 'object' ? existingWorkerData : {}, + __turbopack_globals__: forwardedGlobals + } + }; + return new WorkerConstructor(workerPath, options); +} +const regexJsUrl = /\.js(?:\?[^#]*)?(?:#.*)?$/; +/** + * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment. + */ function isJs(chunkUrlOrPath) { + return regexJsUrl.test(chunkUrlOrPath); +} +/* eslint-disable @typescript-eslint/no-unused-vars */ /// +/** + * Production Node.js runtime. + * Uses ModuleWithDirection and simple module instantiation without HMR support. + */ // moduleCache and moduleFactories are declared in runtime-base.ts +// this is read in runtime-utils.ts so it creates a module with direction for hmr +createModuleWithDirectionFlag = true; +const nodeContextPrototype = Context.prototype; +nodeContextPrototype.q = exportUrl; +nodeContextPrototype.M = moduleFactories; +// Cast moduleCache to ModuleWithDirection for production mode +nodeContextPrototype.c = moduleCache; +nodeContextPrototype.R = resolvePathFromModule; +nodeContextPrototype.b = createWorker; +nodeContextPrototype.C = clearChunkCache; +function instantiateModule(id, sourceType, sourceData) { + const moduleFactory = moduleFactories.get(id); + if (typeof moduleFactory !== 'function') { + // This can happen if modules incorrectly handle HMR disposes/updates, + // e.g. when they keep a `setTimeout` around which still executes old code + // and contains e.g. a `require("something")` call. + throw new Error(factoryNotAvailableMessage(id, sourceType, sourceData)); + } + const module1 = createModuleWithDirection(id); + const exports = module1.exports; + moduleCache[id] = module1; + const context = new Context(module1, exports); + // NOTE(alexkirsz) This can fail when the module encounters a runtime error. + try { + moduleFactory(context, module1, exports); + } catch (error) { + module1.error = error; + throw error; + } + ; + module1.loaded = true; + if (module1.namespaceObject && module1.exports !== module1.namespaceObject) { + // in case of a circular dependency: cjs1 -> esm2 -> cjs1 + interopEsm(module1.exports, module1.namespaceObject); + } + return module1; +} +/** + * Retrieves a module from the cache, or instantiate it if it is not cached. + */ // @ts-ignore +function getOrInstantiateModuleFromParent(id, sourceModule) { + const module1 = moduleCache[id]; + if (module1) { + if (module1.error) { + throw module1.error; + } + return module1; + } + return instantiateModule(id, SourceType.Parent, sourceModule.id); +} +/** + * Instantiates a runtime module. + */ function instantiateRuntimeModule(chunkPath, moduleId) { + return instantiateModule(moduleId, SourceType.Runtime, chunkPath); +} +/** + * Retrieves a module from the cache, or instantiate it as a runtime module if it is not cached. + */ // @ts-ignore TypeScript doesn't separate this module space from the browser runtime +function getOrInstantiateRuntimeModule(chunkPath, moduleId) { + const module1 = moduleCache[moduleId]; + if (module1) { + if (module1.error) { + throw module1.error; + } + return module1; + } + return instantiateRuntimeModule(chunkPath, moduleId); +} +module.exports = (sourcePath)=>({ + m: (id)=>getOrInstantiateRuntimeModule(sourcePath, id), + c: (chunkData)=>loadRuntimeChunk(sourcePath, chunkData) + }); + + +//# sourceMappingURL=%5Bturbopack%5D_runtime.js.map \ No newline at end of file diff --git a/.next/server/chunks/[turbopack]_runtime.js.map b/.next/server/chunks/[turbopack]_runtime.js.map new file mode 100644 index 0000000..092388a --- /dev/null +++ b/.next/server/chunks/[turbopack]_runtime.js.map @@ -0,0 +1,11 @@ +{ + "version": 3, + "sources": [], + "sections": [ + {"offset": {"line": 17, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared/runtime/runtime-utils.ts"],"sourcesContent":["/**\n * This file contains runtime types and functions that are shared between all\n * TurboPack ECMAScript runtimes.\n *\n * It will be prepended to the runtime code of each runtime.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\ntype EsmNamespaceObject = Record\n\n/**\n * Describes why a module was instantiated.\n * Shared between browser and Node.js runtimes.\n */\nenum SourceType {\n /**\n * The module was instantiated because it was included in an evaluated chunk's\n * runtime.\n * SourceData is a ChunkPath.\n */\n Runtime = 0,\n /**\n * The module was instantiated because a parent module imported it.\n * SourceData is a ModuleId.\n */\n Parent = 1,\n /**\n * The module was instantiated because it was included in a chunk's hot module\n * update.\n * SourceData is an array of ModuleIds or undefined.\n */\n Update = 2,\n}\n\ntype SourceData = ChunkPath | ModuleId | ModuleId[] | undefined\n\n// @ts-ignore Defined in `dev-base.ts`\ndeclare function getOrInstantiateModuleFromParent(\n id: ModuleId,\n sourceModule: M\n): M\n\n// @ts-ignore Defined in `hmr-runtime.ts` (dev mode only)\ndeclare let devModuleCache: Record | undefined\n\n/**\n * Flag indicating which module object type to create when a module is merged. Set to `true`\n * by each runtime that uses ModuleWithDirection (browser dev-base.ts, nodejs dev-base.ts,\n * nodejs build-base.ts). Browser production (build-base.ts) leaves it as `false` since it\n * uses plain Module objects.\n */\nlet createModuleWithDirectionFlag = false\n\nconst REEXPORTED_OBJECTS = new WeakMap()\n\n/**\n * Constructs the `__turbopack_context__` object for a module.\n */\nfunction Context(\n this: TurbopackBaseContext,\n module: Module,\n exports: Exports\n) {\n this.m = module\n // We need to store this here instead of accessing it from the module object to:\n // 1. Make it available to factories directly, since we rewrite `this` to\n // `__turbopack_context__.e` in CJS modules.\n // 2. Support async modules which rewrite `module.exports` to a promise, so we\n // can still access the original exports object from functions like\n // `esmExport`\n // Ideally we could find a new approach for async modules and drop this property altogether.\n this.e = exports\n}\nconst contextPrototype = Context.prototype as TurbopackBaseContext\n\ntype ModuleContextMap = Record\n\ninterface ModuleContextEntry {\n id: () => ModuleId\n module: () => any\n}\n\ninterface ModuleContext {\n // require call\n (moduleId: string): Exports | EsmNamespaceObject\n\n // async import call\n import(moduleId: string): Promise\n\n keys(): ModuleId[]\n\n resolve(moduleId: string): ModuleId\n}\n\ntype GetOrInstantiateModuleFromParent = (\n moduleId: M['id'],\n parentModule: M\n) => M\n\ndeclare function getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): Module\n\nconst hasOwnProperty = Object.prototype.hasOwnProperty\nconst toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag\n\nfunction defineProp(\n obj: any,\n name: PropertyKey,\n options: PropertyDescriptor & ThisType\n) {\n if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options)\n}\n\nfunction getOverwrittenModule(\n moduleCache: ModuleCache,\n id: ModuleId\n): Module {\n let module = moduleCache[id]\n if (!module) {\n if (createModuleWithDirectionFlag) {\n // set in development modes for hmr support\n module = createModuleWithDirection(id)\n } else {\n module = createModuleObject(id)\n }\n moduleCache[id] = module\n }\n return module\n}\n\n/**\n * Creates the module object. Only done here to ensure all module objects have the same shape.\n */\nfunction createModuleObject(id: ModuleId): Module {\n return {\n exports: {},\n error: undefined,\n id,\n namespaceObject: undefined,\n }\n}\n\nfunction createModuleWithDirection(id: ModuleId): ModuleWithDirection {\n return {\n exports: {},\n error: undefined,\n id,\n namespaceObject: undefined,\n parents: [],\n children: [],\n }\n}\n\ntype BindingTag = 0\nconst BindingTag_Value = 0 as BindingTag\n\n// an arbitrary sequence of bindings as\n// - a prop name\n// - BindingTag_Value, a value to be bound directly, or\n// - 1 or 2 functions to bind as getters and sdetters\ntype EsmBindings = Array<\n string | BindingTag | (() => unknown) | ((v: unknown) => void) | unknown\n>\n\n/**\n * Adds the getters to the exports object.\n */\nfunction esm(exports: Exports, bindings: EsmBindings) {\n defineProp(exports, '__esModule', { value: true })\n if (toStringTag) defineProp(exports, toStringTag, { value: 'Module' })\n let i = 0\n while (i < bindings.length) {\n const propName = bindings[i++] as string\n const tagOrFunction = bindings[i++]\n if (typeof tagOrFunction === 'number') {\n if (tagOrFunction === BindingTag_Value) {\n defineProp(exports, propName, {\n value: bindings[i++],\n enumerable: true,\n writable: false,\n })\n } else {\n throw new Error(`unexpected tag: ${tagOrFunction}`)\n }\n } else {\n const getterFn = tagOrFunction as () => unknown\n if (typeof bindings[i] === 'function') {\n const setterFn = bindings[i++] as (v: unknown) => void\n defineProp(exports, propName, {\n get: getterFn,\n set: setterFn,\n enumerable: true,\n })\n } else {\n defineProp(exports, propName, {\n get: getterFn,\n enumerable: true,\n })\n }\n }\n }\n Object.seal(exports)\n}\n\n/**\n * Makes the module an ESM with exports\n */\nfunction esmExport(\n this: TurbopackBaseContext,\n bindings: EsmBindings,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Module['exports']\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n module.namespaceObject = exports\n esm(exports, bindings)\n}\ncontextPrototype.s = esmExport\n\ntype ReexportedObjects = Record[]\nfunction ensureDynamicExports(\n module: Module,\n exports: Exports\n): ReexportedObjects {\n let reexportedObjects: ReexportedObjects | undefined =\n REEXPORTED_OBJECTS.get(module)\n\n if (!reexportedObjects) {\n REEXPORTED_OBJECTS.set(module, (reexportedObjects = []))\n module.exports = module.namespaceObject = new Proxy(exports, {\n get(target, prop) {\n if (\n hasOwnProperty.call(target, prop) ||\n prop === 'default' ||\n prop === '__esModule'\n ) {\n return Reflect.get(target, prop)\n }\n for (const obj of reexportedObjects!) {\n const value = Reflect.get(obj, prop)\n if (value !== undefined) return value\n }\n return undefined\n },\n ownKeys(target) {\n const keys = Reflect.ownKeys(target)\n for (const obj of reexportedObjects!) {\n for (const key of Reflect.ownKeys(obj)) {\n if (key !== 'default' && !keys.includes(key)) keys.push(key)\n }\n }\n return keys\n },\n })\n }\n return reexportedObjects\n}\n\n/**\n * Dynamically exports properties from an object\n */\nfunction dynamicExport(\n this: TurbopackBaseContext,\n object: Record,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Exports\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n const reexportedObjects = ensureDynamicExports(module, exports)\n\n if (typeof object === 'object' && object !== null) {\n reexportedObjects.push(object)\n }\n}\ncontextPrototype.j = dynamicExport\n\nfunction exportValue(\n this: TurbopackBaseContext,\n value: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = value\n}\ncontextPrototype.v = exportValue\n\nfunction exportNamespace(\n this: TurbopackBaseContext,\n namespace: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = module.namespaceObject = namespace\n}\ncontextPrototype.n = exportNamespace\n\nfunction createGetter(obj: Record, key: string | symbol) {\n return () => obj[key]\n}\n\n/**\n * @returns prototype of the object\n */\nconst getProto: (obj: any) => any = Object.getPrototypeOf\n ? (obj) => Object.getPrototypeOf(obj)\n : (obj) => obj.__proto__\n\n/** Prototypes that are not expanded for exports */\nconst LEAF_PROTOTYPES = [null, getProto({}), getProto([]), getProto(getProto)]\n\n/**\n * @param raw\n * @param ns\n * @param allowExportDefault\n * * `false`: will have the raw module as default export\n * * `true`: will have the default property as default export\n */\nfunction interopEsm(\n raw: Exports,\n ns: EsmNamespaceObject,\n allowExportDefault?: boolean\n) {\n const bindings: EsmBindings = []\n let defaultLocation = -1\n for (\n let current = raw;\n (typeof current === 'object' || typeof current === 'function') &&\n !LEAF_PROTOTYPES.includes(current);\n current = getProto(current)\n ) {\n for (const key of Object.getOwnPropertyNames(current)) {\n bindings.push(key, createGetter(raw, key))\n if (defaultLocation === -1 && key === 'default') {\n defaultLocation = bindings.length - 1\n }\n }\n }\n\n // this is not really correct\n // we should set the `default` getter if the imported module is a `.cjs file`\n if (!(allowExportDefault && defaultLocation >= 0)) {\n // Replace the binding with one for the namespace itself in order to preserve iteration order.\n if (defaultLocation >= 0) {\n // Replace the getter with the value\n bindings.splice(defaultLocation, 1, BindingTag_Value, raw)\n } else {\n bindings.push('default', BindingTag_Value, raw)\n }\n }\n\n esm(ns, bindings)\n return ns\n}\n\nfunction createNS(raw: Module['exports']): EsmNamespaceObject {\n if (typeof raw === 'function') {\n return function (this: any, ...args: any[]) {\n return raw.apply(this, args)\n }\n } else {\n return Object.create(null)\n }\n}\n\nfunction esmImport(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exclude {\n const module = getOrInstantiateModuleFromParent(id, this.m)\n\n // any ES module has to have `module.namespaceObject` defined.\n if (module.namespaceObject) return module.namespaceObject\n\n // only ESM can be an async module, so we don't need to worry about exports being a promise here.\n const raw = module.exports\n return (module.namespaceObject = interopEsm(\n raw,\n createNS(raw),\n raw && (raw as any).__esModule\n ))\n}\ncontextPrototype.i = esmImport\n\nfunction asyncLoader(\n this: TurbopackBaseContext,\n moduleId: ModuleId\n): Promise {\n const loader = this.r(moduleId) as (\n importFunction: EsmImport\n ) => Promise\n return loader(esmImport.bind(this))\n}\ncontextPrototype.A = asyncLoader\n\n// Add a simple runtime require so that environments without one can still pass\n// `typeof require` CommonJS checks so that exports are correctly registered.\nconst runtimeRequire =\n // @ts-ignore\n typeof require === 'function'\n ? // @ts-ignore\n require\n : function require() {\n throw new Error('Unexpected use of runtime require')\n }\ncontextPrototype.t = runtimeRequire\n\nfunction commonJsRequire(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exports {\n return getOrInstantiateModuleFromParent(id, this.m).exports\n}\ncontextPrototype.r = commonJsRequire\n\n/**\n * Remove fragments and query parameters since they are never part of the context map keys\n *\n * This matches how we parse patterns at resolving time. Arguably we should only do this for\n * strings passed to `import` but the resolve does it for `import` and `require` and so we do\n * here as well.\n */\nfunction parseRequest(request: string): string {\n // Per the URI spec fragments can contain `?` characters, so we should trim it off first\n // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5\n const hashIndex = request.indexOf('#')\n if (hashIndex !== -1) {\n request = request.substring(0, hashIndex)\n }\n\n const queryIndex = request.indexOf('?')\n if (queryIndex !== -1) {\n request = request.substring(0, queryIndex)\n }\n\n return request\n}\n/**\n * `require.context` and require/import expression runtime.\n */\nfunction moduleContext(map: ModuleContextMap): ModuleContext {\n function moduleContext(id: string): Exports {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].module()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.keys = (): string[] => {\n return Object.keys(map)\n }\n\n moduleContext.resolve = (id: string): ModuleId => {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].id()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.import = async (id: string) => {\n return await (moduleContext(id) as Promise)\n }\n\n return moduleContext\n}\ncontextPrototype.f = moduleContext\n\n/**\n * Returns the path of a chunk defined by its data.\n */\nfunction getChunkPath(chunkData: ChunkData): ChunkPath {\n return typeof chunkData === 'string' ? chunkData : chunkData.path\n}\n\nfunction isPromise(maybePromise: any): maybePromise is Promise {\n return (\n maybePromise != null &&\n typeof maybePromise === 'object' &&\n 'then' in maybePromise &&\n typeof maybePromise.then === 'function'\n )\n}\n\nfunction isAsyncModuleExt(obj: T): obj is AsyncModuleExt & T {\n return turbopackQueues in obj\n}\n\nfunction createPromise() {\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason?: any) => void\n\n const promise = new Promise((res, rej) => {\n reject = rej\n resolve = res\n })\n\n return {\n promise,\n resolve: resolve!,\n reject: reject!,\n }\n}\n\n// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map.\n// The CompressedModuleFactories format is\n// - 1 or more module ids\n// - a module factory function\n// So walking this is a little complex but the flat structure is also fast to\n// traverse, we can use `typeof` operators to distinguish the two cases.\nfunction installCompressedModuleFactories(\n chunkModules: CompressedModuleFactories,\n offset: number,\n moduleFactories: ModuleFactories,\n newModuleId?: (id: ModuleId) => void\n) {\n let i = offset\n while (i < chunkModules.length) {\n let end = i + 1\n // Find our factory function\n while (\n end < chunkModules.length &&\n typeof chunkModules[end] !== 'function'\n ) {\n end++\n }\n if (end === chunkModules.length) {\n throw new Error('malformed chunk format, expected a factory function')\n }\n\n // Install the factory for each module ID that doesn't already have one.\n // When some IDs in this group already have a factory, reuse that existing\n // group factory for the missing IDs to keep all IDs in the group consistent.\n // Otherwise, install the factory from this chunk.\n const moduleFactoryFn = chunkModules[end] as Function\n let existingGroupFactory: Function | undefined = undefined\n for (let j = i; j < end; j++) {\n const id = chunkModules[j] as ModuleId\n const existingFactory = moduleFactories.get(id)\n if (existingFactory) {\n existingGroupFactory = existingFactory\n break\n }\n }\n const factoryToInstall = existingGroupFactory ?? moduleFactoryFn\n\n let didInstallFactory = false\n for (let j = i; j < end; j++) {\n const id = chunkModules[j] as ModuleId\n if (!moduleFactories.has(id)) {\n if (!didInstallFactory) {\n if (factoryToInstall === moduleFactoryFn) {\n applyModuleFactoryName(moduleFactoryFn)\n }\n didInstallFactory = true\n }\n moduleFactories.set(id, factoryToInstall)\n newModuleId?.(id)\n }\n }\n i = end + 1 // end is pointing at the last factory advance to the next id or the end of the array.\n }\n}\n\n// everything below is adapted from webpack\n// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13\n\nconst turbopackQueues = Symbol('turbopack queues')\nconst turbopackExports = Symbol('turbopack exports')\nconst turbopackError = Symbol('turbopack error')\n\nconst enum QueueStatus {\n Unknown = -1,\n Unresolved = 0,\n Resolved = 1,\n}\n\ntype AsyncQueueFn = (() => void) & { queueCount: number }\ntype AsyncQueue = AsyncQueueFn[] & {\n status: QueueStatus\n}\n\nfunction resolveQueue(queue?: AsyncQueue) {\n if (queue && queue.status !== QueueStatus.Resolved) {\n queue.status = QueueStatus.Resolved\n queue.forEach((fn) => fn.queueCount--)\n queue.forEach((fn) => (fn.queueCount-- ? fn.queueCount++ : fn()))\n }\n}\n\ntype Dep = Exports | AsyncModulePromise | Promise\n\ntype AsyncModuleExt = {\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => void\n [turbopackExports]: Exports\n [turbopackError]?: any\n}\n\ntype AsyncModulePromise = Promise & AsyncModuleExt\n\nfunction wrapDeps(deps: Dep[]): AsyncModuleExt[] {\n return deps.map((dep): AsyncModuleExt => {\n if (dep !== null && typeof dep === 'object') {\n if (isAsyncModuleExt(dep)) return dep\n if (isPromise(dep)) {\n const queue: AsyncQueue = Object.assign([], {\n status: QueueStatus.Unresolved,\n })\n\n const obj: AsyncModuleExt = {\n [turbopackExports]: {},\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => fn(queue),\n }\n\n dep.then(\n (res) => {\n obj[turbopackExports] = res\n resolveQueue(queue)\n },\n (err) => {\n obj[turbopackError] = err\n resolveQueue(queue)\n }\n )\n\n return obj\n }\n }\n\n return {\n [turbopackExports]: dep,\n [turbopackQueues]: () => {},\n }\n })\n}\n\nfunction asyncModule(\n this: TurbopackBaseContext,\n body: (\n handleAsyncDependencies: (\n deps: Dep[]\n ) => Exports[] | Promise<() => Exports[]>,\n asyncResult: (err?: any) => void\n ) => void,\n hasAwait: boolean\n) {\n const module = this.m\n const queue: AsyncQueue | undefined = hasAwait\n ? Object.assign([], { status: QueueStatus.Unknown })\n : undefined\n\n const depQueues: Set = new Set()\n\n const { resolve, reject, promise: rawPromise } = createPromise()\n\n const promise: AsyncModulePromise = Object.assign(rawPromise, {\n [turbopackExports]: module.exports,\n [turbopackQueues]: (fn) => {\n queue && fn(queue)\n depQueues.forEach(fn)\n promise['catch'](() => {})\n },\n } satisfies AsyncModuleExt)\n\n const attributes: PropertyDescriptor = {\n get(): any {\n return promise\n },\n set(v: any) {\n // Calling `esmExport` leads to this.\n if (v !== promise) {\n promise[turbopackExports] = v\n }\n },\n }\n\n Object.defineProperty(module, 'exports', attributes)\n Object.defineProperty(module, 'namespaceObject', attributes)\n\n function handleAsyncDependencies(deps: Dep[]) {\n const currentDeps = wrapDeps(deps)\n\n const getResult = () =>\n currentDeps.map((d) => {\n if (d[turbopackError]) throw d[turbopackError]\n return d[turbopackExports]\n })\n\n const { promise, resolve } = createPromise<() => Exports[]>()\n\n const fn: AsyncQueueFn = Object.assign(() => resolve(getResult), {\n queueCount: 0,\n })\n\n function fnQueue(q: AsyncQueue) {\n if (q !== queue && !depQueues.has(q)) {\n depQueues.add(q)\n if (q && q.status === QueueStatus.Unresolved) {\n fn.queueCount++\n q.push(fn)\n }\n }\n }\n\n currentDeps.map((dep) => dep[turbopackQueues](fnQueue))\n\n return fn.queueCount ? promise : getResult()\n }\n\n function asyncResult(err?: any) {\n if (err) {\n reject((promise[turbopackError] = err))\n } else {\n resolve(promise[turbopackExports])\n }\n\n resolveQueue(queue)\n }\n\n body(handleAsyncDependencies, asyncResult)\n\n if (queue && queue.status === QueueStatus.Unknown) {\n queue.status = QueueStatus.Unresolved\n }\n}\ncontextPrototype.a = asyncModule\n\n/**\n * A pseudo \"fake\" URL object to resolve to its relative path.\n *\n * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this\n * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid\n * hydration mismatch.\n *\n * This is based on webpack's existing implementation:\n * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js\n */\nconst relativeURL = function relativeURL(this: any, inputUrl: string) {\n const realUrl = new URL(inputUrl, 'x:/')\n const values: Record = {}\n for (const key in realUrl) values[key] = (realUrl as any)[key]\n values.href = inputUrl\n values.pathname = inputUrl.replace(/[?#].*/, '')\n values.origin = values.protocol = ''\n values.toString = values.toJSON = (..._args: Array) => inputUrl\n for (const key in values)\n Object.defineProperty(this, key, {\n enumerable: true,\n configurable: true,\n value: values[key],\n })\n}\nrelativeURL.prototype = URL.prototype\ncontextPrototype.U = relativeURL\n\n/**\n * Utility function to ensure all variants of an enum are handled.\n */\nfunction invariant(never: never, computeMessage: (arg: any) => string): never {\n throw new Error(`Invariant: ${computeMessage(never)}`)\n}\n\n/**\n * Constructs an error message for when a module factory is not available.\n */\nfunction factoryNotAvailableMessage(\n moduleId: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): string {\n let instantiationReason: string\n switch (sourceType) {\n case SourceType.Runtime:\n instantiationReason = `as a runtime entry of chunk ${sourceData}`\n break\n case SourceType.Parent:\n instantiationReason = `because it was required from module ${sourceData}`\n break\n case SourceType.Update:\n instantiationReason = 'because of an HMR update'\n break\n default:\n invariant(\n sourceType,\n (sourceType) => `Unknown source type: ${sourceType}`\n )\n }\n return `Module ${moduleId} was instantiated ${instantiationReason}, but the module factory is not available.`\n}\n\n/**\n * A stub function to make `require` available but non-functional in ESM.\n */\nfunction requireStub(_moduleId: ModuleId): never {\n throw new Error('dynamic usage of require is not supported')\n}\ncontextPrototype.z = requireStub\n\n// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable.\ncontextPrototype.g = globalThis\n\ntype ContextConstructor = {\n new (module: Module, exports: Exports): TurbopackBaseContext\n}\n\nfunction applyModuleFactoryName(factory: Function) {\n // Give the module factory a nice name to improve stack traces.\n Object.defineProperty(factory, 'name', {\n value: 'module evaluation',\n })\n}\n"],"names":["SourceType","createModuleWithDirectionFlag","REEXPORTED_OBJECTS","WeakMap","Context","module","exports","m","e","contextPrototype","prototype","hasOwnProperty","Object","toStringTag","Symbol","defineProp","obj","name","options","call","defineProperty","getOverwrittenModule","moduleCache","id","createModuleWithDirection","createModuleObject","error","undefined","namespaceObject","parents","children","BindingTag_Value","esm","bindings","value","i","length","propName","tagOrFunction","enumerable","writable","Error","getterFn","setterFn","get","set","seal","esmExport","c","s","ensureDynamicExports","reexportedObjects","Proxy","target","prop","Reflect","ownKeys","keys","key","includes","push","dynamicExport","object","j","exportValue","v","exportNamespace","namespace","n","createGetter","getProto","getPrototypeOf","__proto__","LEAF_PROTOTYPES","interopEsm","raw","ns","allowExportDefault","defaultLocation","current","getOwnPropertyNames","splice","createNS","args","apply","create","esmImport","getOrInstantiateModuleFromParent","__esModule","asyncLoader","moduleId","loader","r","bind","A","runtimeRequire","require","require1","t","commonJsRequire","parseRequest","request","hashIndex","indexOf","substring","queryIndex","moduleContext","map","code","resolve","import","f","getChunkPath","chunkData","path","isPromise","maybePromise","then","isAsyncModuleExt","turbopackQueues","createPromise","reject","promise","Promise","res","rej","installCompressedModuleFactories","chunkModules","offset","moduleFactories","newModuleId","end","moduleFactoryFn","existingGroupFactory","existingFactory","factoryToInstall","didInstallFactory","has","applyModuleFactoryName","turbopackExports","turbopackError","resolveQueue","queue","status","forEach","fn","queueCount","wrapDeps","deps","dep","assign","err","asyncModule","body","hasAwait","depQueues","Set","rawPromise","attributes","handleAsyncDependencies","currentDeps","getResult","d","fnQueue","q","add","asyncResult","a","relativeURL","inputUrl","realUrl","URL","values","href","pathname","replace","origin","protocol","toString","toJSON","_args","configurable","U","invariant","never","computeMessage","factoryNotAvailableMessage","sourceType","sourceData","instantiationReason","requireStub","_moduleId","z","g","globalThis","factory"],"mappings":"AAAA;;;;;CAKC,GAED,oDAAoD,GAEpD,6CAA6C;AAI7C;;;CAGC,GACD,IAAA,AAAKA,oCAAAA;IACH;;;;GAIC;IAED;;;GAGC;IAED;;;;GAIC;WAhBEA;EAAAA;AA+BL;;;;;CAKC,GACD,IAAIC,gCAAgC;AAEpC,MAAMC,qBAAqB,IAAIC;AAE/B;;CAEC,GACD,SAASC,QAEPC,MAAc,EACdC,OAAgB;IAEhB,IAAI,CAACC,CAAC,GAAGF;IACT,gFAAgF;IAChF,yEAAyE;IACzE,+CAA+C;IAC/C,8EAA8E;IAC9E,sEAAsE;IACtE,iBAAiB;IACjB,4FAA4F;IAC5F,IAAI,CAACG,CAAC,GAAGF;AACX;AACA,MAAMG,mBAAmBL,QAAQM,SAAS;AA+B1C,MAAMC,iBAAiBC,OAAOF,SAAS,CAACC,cAAc;AACtD,MAAME,cAAc,OAAOC,WAAW,eAAeA,OAAOD,WAAW;AAEvE,SAASE,WACPC,GAAQ,EACRC,IAAiB,EACjBC,OAA2C;IAE3C,IAAI,CAACP,eAAeQ,IAAI,CAACH,KAAKC,OAAOL,OAAOQ,cAAc,CAACJ,KAAKC,MAAMC;AACxE;AAEA,SAASG,qBACPC,WAAgC,EAChCC,EAAY;IAEZ,IAAIlB,SAASiB,WAAW,CAACC,GAAG;IAC5B,IAAI,CAAClB,QAAQ;QACX,IAAIJ,+BAA+B;YACjC,2CAA2C;YAC3CI,SAASmB,0BAA0BD;QACrC,OAAO;YACLlB,SAASoB,mBAAmBF;QAC9B;QACAD,WAAW,CAACC,GAAG,GAAGlB;IACpB;IACA,OAAOA;AACT;AAEA;;CAEC,GACD,SAASoB,mBAAmBF,EAAY;IACtC,OAAO;QACLjB,SAAS,CAAC;QACVoB,OAAOC;QACPJ;QACAK,iBAAiBD;IACnB;AACF;AAEA,SAASH,0BAA0BD,EAAY;IAC7C,OAAO;QACLjB,SAAS,CAAC;QACVoB,OAAOC;QACPJ;QACAK,iBAAiBD;QACjBE,SAAS,EAAE;QACXC,UAAU,EAAE;IACd;AACF;AAGA,MAAMC,mBAAmB;AAUzB;;CAEC,GACD,SAASC,IAAI1B,OAAgB,EAAE2B,QAAqB;IAClDlB,WAAWT,SAAS,cAAc;QAAE4B,OAAO;IAAK;IAChD,IAAIrB,aAAaE,WAAWT,SAASO,aAAa;QAAEqB,OAAO;IAAS;IACpE,IAAIC,IAAI;IACR,MAAOA,IAAIF,SAASG,MAAM,CAAE;QAC1B,MAAMC,WAAWJ,QAAQ,CAACE,IAAI;QAC9B,MAAMG,gBAAgBL,QAAQ,CAACE,IAAI;QACnC,IAAI,OAAOG,kBAAkB,UAAU;YACrC,IAAIA,kBAAkBP,kBAAkB;gBACtChB,WAAWT,SAAS+B,UAAU;oBAC5BH,OAAOD,QAAQ,CAACE,IAAI;oBACpBI,YAAY;oBACZC,UAAU;gBACZ;YACF,OAAO;gBACL,MAAM,IAAIC,MAAM,CAAC,gBAAgB,EAAEH,eAAe;YACpD;QACF,OAAO;YACL,MAAMI,WAAWJ;YACjB,IAAI,OAAOL,QAAQ,CAACE,EAAE,KAAK,YAAY;gBACrC,MAAMQ,WAAWV,QAAQ,CAACE,IAAI;gBAC9BpB,WAAWT,SAAS+B,UAAU;oBAC5BO,KAAKF;oBACLG,KAAKF;oBACLJ,YAAY;gBACd;YACF,OAAO;gBACLxB,WAAWT,SAAS+B,UAAU;oBAC5BO,KAAKF;oBACLH,YAAY;gBACd;YACF;QACF;IACF;IACA3B,OAAOkC,IAAI,CAACxC;AACd;AAEA;;CAEC,GACD,SAASyC,UAEPd,QAAqB,EACrBV,EAAwB;IAExB,IAAIlB;IACJ,IAAIC;IACJ,IAAIiB,MAAM,MAAM;QACdlB,SAASgB,qBAAqB,IAAI,CAAC2B,CAAC,EAAEzB;QACtCjB,UAAUD,OAAOC,OAAO;IAC1B,OAAO;QACLD,SAAS,IAAI,CAACE,CAAC;QACfD,UAAU,IAAI,CAACE,CAAC;IAClB;IACAH,OAAOuB,eAAe,GAAGtB;IACzB0B,IAAI1B,SAAS2B;AACf;AACAxB,iBAAiBwC,CAAC,GAAGF;AAGrB,SAASG,qBACP7C,MAAc,EACdC,OAAgB;IAEhB,IAAI6C,oBACFjD,mBAAmB0C,GAAG,CAACvC;IAEzB,IAAI,CAAC8C,mBAAmB;QACtBjD,mBAAmB2C,GAAG,CAACxC,QAAS8C,oBAAoB,EAAE;QACtD9C,OAAOC,OAAO,GAAGD,OAAOuB,eAAe,GAAG,IAAIwB,MAAM9C,SAAS;YAC3DsC,KAAIS,MAAM,EAAEC,IAAI;gBACd,IACE3C,eAAeQ,IAAI,CAACkC,QAAQC,SAC5BA,SAAS,aACTA,SAAS,cACT;oBACA,OAAOC,QAAQX,GAAG,CAACS,QAAQC;gBAC7B;gBACA,KAAK,MAAMtC,OAAOmC,kBAAoB;oBACpC,MAAMjB,QAAQqB,QAAQX,GAAG,CAAC5B,KAAKsC;oBAC/B,IAAIpB,UAAUP,WAAW,OAAOO;gBAClC;gBACA,OAAOP;YACT;YACA6B,SAAQH,MAAM;gBACZ,MAAMI,OAAOF,QAAQC,OAAO,CAACH;gBAC7B,KAAK,MAAMrC,OAAOmC,kBAAoB;oBACpC,KAAK,MAAMO,OAAOH,QAAQC,OAAO,CAACxC,KAAM;wBACtC,IAAI0C,QAAQ,aAAa,CAACD,KAAKE,QAAQ,CAACD,MAAMD,KAAKG,IAAI,CAACF;oBAC1D;gBACF;gBACA,OAAOD;YACT;QACF;IACF;IACA,OAAON;AACT;AAEA;;CAEC,GACD,SAASU,cAEPC,MAA2B,EAC3BvC,EAAwB;IAExB,IAAIlB;IACJ,IAAIC;IACJ,IAAIiB,MAAM,MAAM;QACdlB,SAASgB,qBAAqB,IAAI,CAAC2B,CAAC,EAAEzB;QACtCjB,UAAUD,OAAOC,OAAO;IAC1B,OAAO;QACLD,SAAS,IAAI,CAACE,CAAC;QACfD,UAAU,IAAI,CAACE,CAAC;IAClB;IACA,MAAM2C,oBAAoBD,qBAAqB7C,QAAQC;IAEvD,IAAI,OAAOwD,WAAW,YAAYA,WAAW,MAAM;QACjDX,kBAAkBS,IAAI,CAACE;IACzB;AACF;AACArD,iBAAiBsD,CAAC,GAAGF;AAErB,SAASG,YAEP9B,KAAU,EACVX,EAAwB;IAExB,IAAIlB;IACJ,IAAIkB,MAAM,MAAM;QACdlB,SAASgB,qBAAqB,IAAI,CAAC2B,CAAC,EAAEzB;IACxC,OAAO;QACLlB,SAAS,IAAI,CAACE,CAAC;IACjB;IACAF,OAAOC,OAAO,GAAG4B;AACnB;AACAzB,iBAAiBwD,CAAC,GAAGD;AAErB,SAASE,gBAEPC,SAAc,EACd5C,EAAwB;IAExB,IAAIlB;IACJ,IAAIkB,MAAM,MAAM;QACdlB,SAASgB,qBAAqB,IAAI,CAAC2B,CAAC,EAAEzB;IACxC,OAAO;QACLlB,SAAS,IAAI,CAACE,CAAC;IACjB;IACAF,OAAOC,OAAO,GAAGD,OAAOuB,eAAe,GAAGuC;AAC5C;AACA1D,iBAAiB2D,CAAC,GAAGF;AAErB,SAASG,aAAarD,GAAiC,EAAE0C,GAAoB;IAC3E,OAAO,IAAM1C,GAAG,CAAC0C,IAAI;AACvB;AAEA;;CAEC,GACD,MAAMY,WAA8B1D,OAAO2D,cAAc,GACrD,CAACvD,MAAQJ,OAAO2D,cAAc,CAACvD,OAC/B,CAACA,MAAQA,IAAIwD,SAAS;AAE1B,iDAAiD,GACjD,MAAMC,kBAAkB;IAAC;IAAMH,SAAS,CAAC;IAAIA,SAAS,EAAE;IAAGA,SAASA;CAAU;AAE9E;;;;;;CAMC,GACD,SAASI,WACPC,GAAY,EACZC,EAAsB,EACtBC,kBAA4B;IAE5B,MAAM5C,WAAwB,EAAE;IAChC,IAAI6C,kBAAkB,CAAC;IACvB,IACE,IAAIC,UAAUJ,KACd,CAAC,OAAOI,YAAY,YAAY,OAAOA,YAAY,UAAU,KAC7D,CAACN,gBAAgBd,QAAQ,CAACoB,UAC1BA,UAAUT,SAASS,SACnB;QACA,KAAK,MAAMrB,OAAO9C,OAAOoE,mBAAmB,CAACD,SAAU;YACrD9C,SAAS2B,IAAI,CAACF,KAAKW,aAAaM,KAAKjB;YACrC,IAAIoB,oBAAoB,CAAC,KAAKpB,QAAQ,WAAW;gBAC/CoB,kBAAkB7C,SAASG,MAAM,GAAG;YACtC;QACF;IACF;IAEA,6BAA6B;IAC7B,6EAA6E;IAC7E,IAAI,CAAC,CAACyC,sBAAsBC,mBAAmB,CAAC,GAAG;QACjD,8FAA8F;QAC9F,IAAIA,mBAAmB,GAAG;YACxB,oCAAoC;YACpC7C,SAASgD,MAAM,CAACH,iBAAiB,GAAG/C,kBAAkB4C;QACxD,OAAO;YACL1C,SAAS2B,IAAI,CAAC,WAAW7B,kBAAkB4C;QAC7C;IACF;IAEA3C,IAAI4C,IAAI3C;IACR,OAAO2C;AACT;AAEA,SAASM,SAASP,GAAsB;IACtC,IAAI,OAAOA,QAAQ,YAAY;QAC7B,OAAO,SAAqB,GAAGQ,IAAW;YACxC,OAAOR,IAAIS,KAAK,CAAC,IAAI,EAAED;QACzB;IACF,OAAO;QACL,OAAOvE,OAAOyE,MAAM,CAAC;IACvB;AACF;AAEA,SAASC,UAEP/D,EAAY;IAEZ,MAAMlB,SAASkF,iCAAiChE,IAAI,IAAI,CAAChB,CAAC;IAE1D,8DAA8D;IAC9D,IAAIF,OAAOuB,eAAe,EAAE,OAAOvB,OAAOuB,eAAe;IAEzD,iGAAiG;IACjG,MAAM+C,MAAMtE,OAAOC,OAAO;IAC1B,OAAQD,OAAOuB,eAAe,GAAG8C,WAC/BC,KACAO,SAASP,MACTA,OAAO,AAACA,IAAYa,UAAU;AAElC;AACA/E,iBAAiB0B,CAAC,GAAGmD;AAErB,SAASG,YAEPC,QAAkB;IAElB,MAAMC,SAAS,IAAI,CAACC,CAAC,CAACF;IAGtB,OAAOC,OAAOL,UAAUO,IAAI,CAAC,IAAI;AACnC;AACApF,iBAAiBqF,CAAC,GAAGL;AAErB,+EAA+E;AAC/E,6EAA6E;AAC7E,MAAMM,iBACJ,aAAa;AACb,OAAOC,YAAY,aAEfA,UACA,SAASC;IACP,MAAM,IAAIxD,MAAM;AAClB;AACNhC,iBAAiByF,CAAC,GAAGH;AAErB,SAASI,gBAEP5E,EAAY;IAEZ,OAAOgE,iCAAiChE,IAAI,IAAI,CAAChB,CAAC,EAAED,OAAO;AAC7D;AACAG,iBAAiBmF,CAAC,GAAGO;AAErB;;;;;;CAMC,GACD,SAASC,aAAaC,OAAe;IACnC,wFAAwF;IACxF,4DAA4D;IAC5D,MAAMC,YAAYD,QAAQE,OAAO,CAAC;IAClC,IAAID,cAAc,CAAC,GAAG;QACpBD,UAAUA,QAAQG,SAAS,CAAC,GAAGF;IACjC;IAEA,MAAMG,aAAaJ,QAAQE,OAAO,CAAC;IACnC,IAAIE,eAAe,CAAC,GAAG;QACrBJ,UAAUA,QAAQG,SAAS,CAAC,GAAGC;IACjC;IAEA,OAAOJ;AACT;AACA;;CAEC,GACD,SAASK,cAAcC,GAAqB;IAC1C,SAASD,cAAcnF,EAAU;QAC/BA,KAAK6E,aAAa7E;QAClB,IAAIZ,eAAeQ,IAAI,CAACwF,KAAKpF,KAAK;YAChC,OAAOoF,GAAG,CAACpF,GAAG,CAAClB,MAAM;QACvB;QAEA,MAAMG,IAAI,IAAIiC,MAAM,CAAC,oBAAoB,EAAElB,GAAG,CAAC,CAAC;QAC9Cf,EAAUoG,IAAI,GAAG;QACnB,MAAMpG;IACR;IAEAkG,cAAcjD,IAAI,GAAG;QACnB,OAAO7C,OAAO6C,IAAI,CAACkD;IACrB;IAEAD,cAAcG,OAAO,GAAG,CAACtF;QACvBA,KAAK6E,aAAa7E;QAClB,IAAIZ,eAAeQ,IAAI,CAACwF,KAAKpF,KAAK;YAChC,OAAOoF,GAAG,CAACpF,GAAG,CAACA,EAAE;QACnB;QAEA,MAAMf,IAAI,IAAIiC,MAAM,CAAC,oBAAoB,EAAElB,GAAG,CAAC,CAAC;QAC9Cf,EAAUoG,IAAI,GAAG;QACnB,MAAMpG;IACR;IAEAkG,cAAcI,MAAM,GAAG,OAAOvF;QAC5B,OAAO,MAAOmF,cAAcnF;IAC9B;IAEA,OAAOmF;AACT;AACAjG,iBAAiBsG,CAAC,GAAGL;AAErB;;CAEC,GACD,SAASM,aAAaC,SAAoB;IACxC,OAAO,OAAOA,cAAc,WAAWA,YAAYA,UAAUC,IAAI;AACnE;AAEA,SAASC,UAAmBC,YAAiB;IAC3C,OACEA,gBAAgB,QAChB,OAAOA,iBAAiB,YACxB,UAAUA,gBACV,OAAOA,aAAaC,IAAI,KAAK;AAEjC;AAEA,SAASC,iBAA+BtG,GAAM;IAC5C,OAAOuG,mBAAmBvG;AAC5B;AAEA,SAASwG;IACP,IAAIX;IACJ,IAAIY;IAEJ,MAAMC,UAAU,IAAIC,QAAW,CAACC,KAAKC;QACnCJ,SAASI;QACThB,UAAUe;IACZ;IAEA,OAAO;QACLF;QACAb,SAASA;QACTY,QAAQA;IACV;AACF;AAEA,gFAAgF;AAChF,0CAA0C;AAC1C,yBAAyB;AACzB,8BAA8B;AAC9B,6EAA6E;AAC7E,wEAAwE;AACxE,SAASK,iCACPC,YAAuC,EACvCC,MAAc,EACdC,eAAgC,EAChCC,WAAoC;IAEpC,IAAI/F,IAAI6F;IACR,MAAO7F,IAAI4F,aAAa3F,MAAM,CAAE;QAC9B,IAAI+F,MAAMhG,IAAI;QACd,4BAA4B;QAC5B,MACEgG,MAAMJ,aAAa3F,MAAM,IACzB,OAAO2F,YAAY,CAACI,IAAI,KAAK,WAC7B;YACAA;QACF;QACA,IAAIA,QAAQJ,aAAa3F,MAAM,EAAE;YAC/B,MAAM,IAAIK,MAAM;QAClB;QAEA,wEAAwE;QACxE,0EAA0E;QAC1E,6EAA6E;QAC7E,kDAAkD;QAClD,MAAM2F,kBAAkBL,YAAY,CAACI,IAAI;QACzC,IAAIE,uBAA6C1G;QACjD,IAAK,IAAIoC,IAAI5B,GAAG4B,IAAIoE,KAAKpE,IAAK;YAC5B,MAAMxC,KAAKwG,YAAY,CAAChE,EAAE;YAC1B,MAAMuE,kBAAkBL,gBAAgBrF,GAAG,CAACrB;YAC5C,IAAI+G,iBAAiB;gBACnBD,uBAAuBC;gBACvB;YACF;QACF;QACA,MAAMC,mBAAmBF,wBAAwBD;QAEjD,IAAII,oBAAoB;QACxB,IAAK,IAAIzE,IAAI5B,GAAG4B,IAAIoE,KAAKpE,IAAK;YAC5B,MAAMxC,KAAKwG,YAAY,CAAChE,EAAE;YAC1B,IAAI,CAACkE,gBAAgBQ,GAAG,CAAClH,KAAK;gBAC5B,IAAI,CAACiH,mBAAmB;oBACtB,IAAID,qBAAqBH,iBAAiB;wBACxCM,uBAAuBN;oBACzB;oBACAI,oBAAoB;gBACtB;gBACAP,gBAAgBpF,GAAG,CAACtB,IAAIgH;gBACxBL,cAAc3G;YAChB;QACF;QACAY,IAAIgG,MAAM,GAAE,sFAAsF;IACpG;AACF;AAEA,2CAA2C;AAC3C,+HAA+H;AAE/H,MAAMZ,kBAAkBzG,OAAO;AAC/B,MAAM6H,mBAAmB7H,OAAO;AAChC,MAAM8H,iBAAiB9H,OAAO;AAa9B,SAAS+H,aAAaC,KAAkB;IACtC,IAAIA,SAASA,MAAMC,MAAM,QAA2B;QAClDD,MAAMC,MAAM;QACZD,MAAME,OAAO,CAAC,CAACC,KAAOA,GAAGC,UAAU;QACnCJ,MAAME,OAAO,CAAC,CAACC,KAAQA,GAAGC,UAAU,KAAKD,GAAGC,UAAU,KAAKD;IAC7D;AACF;AAYA,SAASE,SAASC,IAAW;IAC3B,OAAOA,KAAKzC,GAAG,CAAC,CAAC0C;QACf,IAAIA,QAAQ,QAAQ,OAAOA,QAAQ,UAAU;YAC3C,IAAI/B,iBAAiB+B,MAAM,OAAOA;YAClC,IAAIlC,UAAUkC,MAAM;gBAClB,MAAMP,QAAoBlI,OAAO0I,MAAM,CAAC,EAAE,EAAE;oBAC1CP,MAAM;gBACR;gBAEA,MAAM/H,MAAsB;oBAC1B,CAAC2H,iBAAiB,EAAE,CAAC;oBACrB,CAACpB,gBAAgB,EAAE,CAAC0B,KAAoCA,GAAGH;gBAC7D;gBAEAO,IAAIhC,IAAI,CACN,CAACO;oBACC5G,GAAG,CAAC2H,iBAAiB,GAAGf;oBACxBiB,aAAaC;gBACf,GACA,CAACS;oBACCvI,GAAG,CAAC4H,eAAe,GAAGW;oBACtBV,aAAaC;gBACf;gBAGF,OAAO9H;YACT;QACF;QAEA,OAAO;YACL,CAAC2H,iBAAiB,EAAEU;YACpB,CAAC9B,gBAAgB,EAAE,KAAO;QAC5B;IACF;AACF;AAEA,SAASiC,YAEPC,IAKS,EACTC,QAAiB;IAEjB,MAAMrJ,SAAS,IAAI,CAACE,CAAC;IACrB,MAAMuI,QAAgCY,WAClC9I,OAAO0I,MAAM,CAAC,EAAE,EAAE;QAAEP,MAAM;IAAsB,KAChDpH;IAEJ,MAAMgI,YAA6B,IAAIC;IAEvC,MAAM,EAAE/C,OAAO,EAAEY,MAAM,EAAEC,SAASmC,UAAU,EAAE,GAAGrC;IAEjD,MAAME,UAA8B9G,OAAO0I,MAAM,CAACO,YAAY;QAC5D,CAAClB,iBAAiB,EAAEtI,OAAOC,OAAO;QAClC,CAACiH,gBAAgB,EAAE,CAAC0B;YAClBH,SAASG,GAAGH;YACZa,UAAUX,OAAO,CAACC;YAClBvB,OAAO,CAAC,QAAQ,CAAC,KAAO;QAC1B;IACF;IAEA,MAAMoC,aAAiC;QACrClH;YACE,OAAO8E;QACT;QACA7E,KAAIoB,CAAM;YACR,qCAAqC;YACrC,IAAIA,MAAMyD,SAAS;gBACjBA,OAAO,CAACiB,iBAAiB,GAAG1E;YAC9B;QACF;IACF;IAEArD,OAAOQ,cAAc,CAACf,QAAQ,WAAWyJ;IACzClJ,OAAOQ,cAAc,CAACf,QAAQ,mBAAmByJ;IAEjD,SAASC,wBAAwBX,IAAW;QAC1C,MAAMY,cAAcb,SAASC;QAE7B,MAAMa,YAAY,IAChBD,YAAYrD,GAAG,CAAC,CAACuD;gBACf,IAAIA,CAAC,CAACtB,eAAe,EAAE,MAAMsB,CAAC,CAACtB,eAAe;gBAC9C,OAAOsB,CAAC,CAACvB,iBAAiB;YAC5B;QAEF,MAAM,EAAEjB,OAAO,EAAEb,OAAO,EAAE,GAAGW;QAE7B,MAAMyB,KAAmBrI,OAAO0I,MAAM,CAAC,IAAMzC,QAAQoD,YAAY;YAC/Df,YAAY;QACd;QAEA,SAASiB,QAAQC,CAAa;YAC5B,IAAIA,MAAMtB,SAAS,CAACa,UAAUlB,GAAG,CAAC2B,IAAI;gBACpCT,UAAUU,GAAG,CAACD;gBACd,IAAIA,KAAKA,EAAErB,MAAM,QAA6B;oBAC5CE,GAAGC,UAAU;oBACbkB,EAAExG,IAAI,CAACqF;gBACT;YACF;QACF;QAEAe,YAAYrD,GAAG,CAAC,CAAC0C,MAAQA,GAAG,CAAC9B,gBAAgB,CAAC4C;QAE9C,OAAOlB,GAAGC,UAAU,GAAGxB,UAAUuC;IACnC;IAEA,SAASK,YAAYf,GAAS;QAC5B,IAAIA,KAAK;YACP9B,OAAQC,OAAO,CAACkB,eAAe,GAAGW;QACpC,OAAO;YACL1C,QAAQa,OAAO,CAACiB,iBAAiB;QACnC;QAEAE,aAAaC;IACf;IAEAW,KAAKM,yBAAyBO;IAE9B,IAAIxB,SAASA,MAAMC,MAAM,SAA0B;QACjDD,MAAMC,MAAM;IACd;AACF;AACAtI,iBAAiB8J,CAAC,GAAGf;AAErB;;;;;;;;;CASC,GACD,MAAMgB,cAAc,SAASA,YAAuBC,QAAgB;IAClE,MAAMC,UAAU,IAAIC,IAAIF,UAAU;IAClC,MAAMG,SAA8B,CAAC;IACrC,IAAK,MAAMlH,OAAOgH,QAASE,MAAM,CAAClH,IAAI,GAAG,AAACgH,OAAe,CAAChH,IAAI;IAC9DkH,OAAOC,IAAI,GAAGJ;IACdG,OAAOE,QAAQ,GAAGL,SAASM,OAAO,CAAC,UAAU;IAC7CH,OAAOI,MAAM,GAAGJ,OAAOK,QAAQ,GAAG;IAClCL,OAAOM,QAAQ,GAAGN,OAAOO,MAAM,GAAG,CAAC,GAAGC,QAAsBX;IAC5D,IAAK,MAAM/G,OAAOkH,OAChBhK,OAAOQ,cAAc,CAAC,IAAI,EAAEsC,KAAK;QAC/BnB,YAAY;QACZ8I,cAAc;QACdnJ,OAAO0I,MAAM,CAAClH,IAAI;IACpB;AACJ;AACA8G,YAAY9J,SAAS,GAAGiK,IAAIjK,SAAS;AACrCD,iBAAiB6K,CAAC,GAAGd;AAErB;;CAEC,GACD,SAASe,UAAUC,KAAY,EAAEC,cAAoC;IACnE,MAAM,IAAIhJ,MAAM,CAAC,WAAW,EAAEgJ,eAAeD,QAAQ;AACvD;AAEA;;CAEC,GACD,SAASE,2BACPhG,QAAkB,EAClBiG,UAAsB,EACtBC,UAAsB;IAEtB,IAAIC;IACJ,OAAQF;QACN;YACEE,sBAAsB,CAAC,4BAA4B,EAAED,YAAY;YACjE;QACF;YACEC,sBAAsB,CAAC,oCAAoC,EAAED,YAAY;YACzE;QACF;YACEC,sBAAsB;YACtB;QACF;YACEN,UACEI,YACA,CAACA,aAAe,CAAC,qBAAqB,EAAEA,YAAY;IAE1D;IACA,OAAO,CAAC,OAAO,EAAEjG,SAAS,kBAAkB,EAAEmG,oBAAoB,0CAA0C,CAAC;AAC/G;AAEA;;CAEC,GACD,SAASC,YAAYC,SAAmB;IACtC,MAAM,IAAItJ,MAAM;AAClB;AACAhC,iBAAiBuL,CAAC,GAAGF;AAErB,kGAAkG;AAClGrL,iBAAiBwL,CAAC,GAAGC;AAMrB,SAASxD,uBAAuByD,OAAiB;IAC/C,+DAA+D;IAC/DvL,OAAOQ,cAAc,CAAC+K,SAAS,QAAQ;QACrCjK,OAAO;IACT;AACF","ignoreList":[0]}}, + {"offset": {"line": 593, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/base-externals-utils.ts"],"sourcesContent":["/// \n\n/// A 'base' utilities to support runtime can have externals.\n/// Currently this is for node.js / edge runtime both.\n/// If a fn requires node.js specific behavior, it should be placed in `node-external-utils` instead.\n\nasync function externalImport(id: DependencySpecifier) {\n let raw\n try {\n raw = await import(id)\n } catch (err) {\n // TODO(alexkirsz) This can happen when a client-side module tries to load\n // an external module we don't provide a shim for (e.g. querystring, url).\n // For now, we fail semi-silently, but in the future this should be a\n // compilation error.\n throw new Error(`Failed to load external module ${id}: ${err}`)\n }\n\n if (raw && raw.__esModule && raw.default && 'default' in raw.default) {\n return interopEsm(raw.default, createNS(raw), true)\n }\n\n return raw\n}\ncontextPrototype.y = externalImport\n\nfunction externalRequire(\n id: ModuleId,\n thunk: () => any,\n esm: boolean = false\n): Exports | EsmNamespaceObject {\n let raw\n try {\n raw = thunk()\n } catch (err) {\n // TODO(alexkirsz) This can happen when a client-side module tries to load\n // an external module we don't provide a shim for (e.g. querystring, url).\n // For now, we fail semi-silently, but in the future this should be a\n // compilation error.\n throw new Error(`Failed to load external module ${id}: ${err}`)\n }\n\n if (!esm || raw.__esModule) {\n return raw\n }\n\n return interopEsm(raw, createNS(raw), true)\n}\n\nexternalRequire.resolve = (\n id: string,\n options?: {\n paths?: string[]\n }\n) => {\n return require.resolve(id, options)\n}\ncontextPrototype.x = externalRequire\n"],"names":["externalImport","id","raw","err","Error","__esModule","default","interopEsm","createNS","contextPrototype","y","externalRequire","thunk","esm","resolve","options","require","x"],"mappings":"AAAA,2DAA2D;AAE3D,6DAA6D;AAC7D,sDAAsD;AACtD,qGAAqG;AAErG,eAAeA,eAAeC,EAAuB;IACnD,IAAIC;IACJ,IAAI;QACFA,MAAM,MAAM,MAAM,CAACD;IACrB,EAAE,OAAOE,KAAK;QACZ,0EAA0E;QAC1E,0EAA0E;QAC1E,qEAAqE;QACrE,qBAAqB;QACrB,MAAM,IAAIC,MAAM,CAAC,+BAA+B,EAAEH,GAAG,EAAE,EAAEE,KAAK;IAChE;IAEA,IAAID,OAAOA,IAAIG,UAAU,IAAIH,IAAII,OAAO,IAAI,aAAaJ,IAAII,OAAO,EAAE;QACpE,OAAOC,WAAWL,IAAII,OAAO,EAAEE,SAASN,MAAM;IAChD;IAEA,OAAOA;AACT;AACAO,iBAAiBC,CAAC,GAAGV;AAErB,SAASW,gBACPV,EAAY,EACZW,KAAgB,EAChBC,MAAe,KAAK;IAEpB,IAAIX;IACJ,IAAI;QACFA,MAAMU;IACR,EAAE,OAAOT,KAAK;QACZ,0EAA0E;QAC1E,0EAA0E;QAC1E,qEAAqE;QACrE,qBAAqB;QACrB,MAAM,IAAIC,MAAM,CAAC,+BAA+B,EAAEH,GAAG,EAAE,EAAEE,KAAK;IAChE;IAEA,IAAI,CAACU,OAAOX,IAAIG,UAAU,EAAE;QAC1B,OAAOH;IACT;IAEA,OAAOK,WAAWL,KAAKM,SAASN,MAAM;AACxC;AAEAS,gBAAgBG,OAAO,GAAG,CACxBb,IACAc;IAIA,OAAOC,QAAQF,OAAO,CAACb,IAAIc;AAC7B;AACAN,iBAAiBQ,CAAC,GAAGN","ignoreList":[0]}}, + {"offset": {"line": 634, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/node-externals-utils.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\ndeclare var RUNTIME_PUBLIC_PATH: string\ndeclare var RELATIVE_ROOT_PATH: string\ndeclare var ASSET_PREFIX: string\n\nconst path = require('path')\n\nconst relativePathToRuntimeRoot = path.relative(RUNTIME_PUBLIC_PATH, '.')\n// Compute the relative path to the `distDir`.\nconst relativePathToDistRoot = path.join(\n relativePathToRuntimeRoot,\n RELATIVE_ROOT_PATH\n)\nconst RUNTIME_ROOT = path.resolve(__filename, relativePathToRuntimeRoot)\n// Compute the absolute path to the root, by stripping distDir from the absolute path to this file.\nconst ABSOLUTE_ROOT = path.resolve(__filename, relativePathToDistRoot)\n\n/**\n * Returns an absolute path to the given module path.\n * Module path should be relative, either path to a file or a directory.\n *\n * This fn allows to calculate an absolute path for some global static values, such as\n * `__dirname` or `import.meta.url` that Turbopack will not embeds in compile time.\n * See ImportMetaBinding::code_generation for the usage.\n */\nfunction resolveAbsolutePath(modulePath?: string): string {\n if (modulePath) {\n return path.join(ABSOLUTE_ROOT, modulePath)\n }\n return ABSOLUTE_ROOT\n}\nContext.prototype.P = resolveAbsolutePath\n"],"names":["path","require","relativePathToRuntimeRoot","relative","RUNTIME_PUBLIC_PATH","relativePathToDistRoot","join","RELATIVE_ROOT_PATH","RUNTIME_ROOT","resolve","__filename","ABSOLUTE_ROOT","resolveAbsolutePath","modulePath","Context","prototype","P"],"mappings":"AAAA,oDAAoD,GAMpD,MAAMA,OAAOC,QAAQ;AAErB,MAAMC,4BAA4BF,KAAKG,QAAQ,CAACC,qBAAqB;AACrE,8CAA8C;AAC9C,MAAMC,yBAAyBL,KAAKM,IAAI,CACtCJ,2BACAK;AAEF,MAAMC,eAAeR,KAAKS,OAAO,CAACC,YAAYR;AAC9C,mGAAmG;AACnG,MAAMS,gBAAgBX,KAAKS,OAAO,CAACC,YAAYL;AAE/C;;;;;;;CAOC,GACD,SAASO,oBAAoBC,UAAmB;IAC9C,IAAIA,YAAY;QACd,OAAOb,KAAKM,IAAI,CAACK,eAAeE;IAClC;IACA,OAAOF;AACT;AACAG,QAAQC,SAAS,CAACC,CAAC,GAAGJ","ignoreList":[0]}}, + {"offset": {"line": 655, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/node-wasm-utils.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\nfunction readWebAssemblyAsResponse(path: string) {\n const { createReadStream } = require('fs') as typeof import('fs')\n const { Readable } = require('stream') as typeof import('stream')\n\n const stream = createReadStream(path)\n\n // @ts-ignore unfortunately there's a slight type mismatch with the stream.\n return new Response(Readable.toWeb(stream), {\n headers: {\n 'content-type': 'application/wasm',\n },\n })\n}\n\nasync function compileWebAssemblyFromPath(\n path: string\n): Promise {\n const response = readWebAssemblyAsResponse(path)\n\n return await WebAssembly.compileStreaming(response)\n}\n\nasync function instantiateWebAssemblyFromPath(\n path: string,\n importsObj: WebAssembly.Imports\n): Promise {\n const response = readWebAssemblyAsResponse(path)\n\n const { instance } = await WebAssembly.instantiateStreaming(\n response,\n importsObj\n )\n\n return instance.exports\n}\n"],"names":["readWebAssemblyAsResponse","path","createReadStream","require","Readable","stream","Response","toWeb","headers","compileWebAssemblyFromPath","response","WebAssembly","compileStreaming","instantiateWebAssemblyFromPath","importsObj","instance","instantiateStreaming","exports"],"mappings":"AAAA,oDAAoD,GAEpD,2DAA2D;AAE3D,SAASA,0BAA0BC,IAAY;IAC7C,MAAM,EAAEC,gBAAgB,EAAE,GAAGC,QAAQ;IACrC,MAAM,EAAEC,QAAQ,EAAE,GAAGD,QAAQ;IAE7B,MAAME,SAASH,iBAAiBD;IAEhC,2EAA2E;IAC3E,OAAO,IAAIK,SAASF,SAASG,KAAK,CAACF,SAAS;QAC1CG,SAAS;YACP,gBAAgB;QAClB;IACF;AACF;AAEA,eAAeC,2BACbR,IAAY;IAEZ,MAAMS,WAAWV,0BAA0BC;IAE3C,OAAO,MAAMU,YAAYC,gBAAgB,CAACF;AAC5C;AAEA,eAAeG,+BACbZ,IAAY,EACZa,UAA+B;IAE/B,MAAMJ,WAAWV,0BAA0BC;IAE3C,MAAM,EAAEc,QAAQ,EAAE,GAAG,MAAMJ,YAAYK,oBAAoB,CACzDN,UACAI;IAGF,OAAOC,SAASE,OAAO;AACzB","ignoreList":[0]}}, + {"offset": {"line": 676, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/nodejs/runtime/runtime-base.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n/// \n/// \n/// \n/// \n\n/**\n * Base Node.js runtime shared between production and development.\n * Contains chunk loading, module caching, and other non-HMR functionality.\n */\n\nprocess.env.TURBOPACK = '1'\n\nconst url = require('url') as typeof import('url')\n\nconst moduleFactories: ModuleFactories = new Map()\nconst moduleCache: ModuleCache = Object.create(null)\n\n/**\n * Returns an absolute path to the given module's id.\n */\nfunction resolvePathFromModule(\n this: TurbopackBaseContext,\n moduleId: string\n): string {\n const exported = this.r(moduleId)\n const exportedPath = exported?.default ?? exported\n if (typeof exportedPath !== 'string') {\n return exported as any\n }\n\n const strippedAssetPrefix = exportedPath.slice(ASSET_PREFIX.length)\n const resolved = path.resolve(RUNTIME_ROOT, strippedAssetPrefix)\n\n return url.pathToFileURL(resolved).href\n}\n\n/**\n * Exports a URL value. No suffix is added in Node.js runtime.\n */\nfunction exportUrl(\n this: TurbopackBaseContext,\n urlValue: string,\n id: ModuleId | undefined\n) {\n exportValue.call(this, urlValue, id)\n}\n\nfunction loadRuntimeChunk(sourcePath: ChunkPath, chunkData: ChunkData): void {\n if (typeof chunkData === 'string') {\n loadRuntimeChunkPath(sourcePath, chunkData)\n } else {\n loadRuntimeChunkPath(sourcePath, chunkData.path)\n }\n}\n\nconst loadedChunks = new Set()\nconst unsupportedLoadChunk = Promise.resolve(undefined)\nconst loadedChunk: Promise = Promise.resolve(undefined)\nconst chunkCache = new Map>()\n\nfunction clearChunkCache() {\n chunkCache.clear()\n loadedChunks.clear()\n}\n\nfunction loadRuntimeChunkPath(\n sourcePath: ChunkPath,\n chunkPath: ChunkPath\n): void {\n if (!isJs(chunkPath)) {\n // We only support loading JS chunks in Node.js.\n // This branch can be hit when trying to load a CSS chunk.\n return\n }\n\n if (loadedChunks.has(chunkPath)) {\n return\n }\n\n try {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n const chunkModules: CompressedModuleFactories = require(resolved)\n installCompressedModuleFactories(chunkModules, 0, moduleFactories)\n loadedChunks.add(chunkPath)\n } catch (cause) {\n let errorMessage = `Failed to load chunk ${chunkPath}`\n\n if (sourcePath) {\n errorMessage += ` from runtime for chunk ${sourcePath}`\n }\n\n const error = new Error(errorMessage, { cause })\n error.name = 'ChunkLoadError'\n throw error\n }\n}\n\nfunction loadChunkAsync(\n this: TurbopackBaseContext,\n chunkData: ChunkData\n): Promise {\n const chunkPath = typeof chunkData === 'string' ? chunkData : chunkData.path\n if (!isJs(chunkPath)) {\n // We only support loading JS chunks in Node.js.\n // This branch can be hit when trying to load a CSS chunk.\n return unsupportedLoadChunk\n }\n\n let entry = chunkCache.get(chunkPath)\n if (entry === undefined) {\n try {\n // resolve to an absolute path to simplify `require` handling\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n // TODO: consider switching to `import()` to enable concurrent chunk loading and async file io\n // However this is incompatible with hot reloading (since `import` doesn't use the require cache)\n const chunkModules: CompressedModuleFactories = require(resolved)\n installCompressedModuleFactories(chunkModules, 0, moduleFactories)\n entry = loadedChunk\n } catch (cause) {\n const errorMessage = `Failed to load chunk ${chunkPath} from module ${this.m.id}`\n const error = new Error(errorMessage, { cause })\n error.name = 'ChunkLoadError'\n\n // Cache the failure promise, future requests will also get this same rejection\n entry = Promise.reject(error)\n }\n chunkCache.set(chunkPath, entry)\n }\n // TODO: Return an instrumented Promise that React can use instead of relying on referential equality.\n return entry\n}\ncontextPrototype.l = loadChunkAsync\n\nfunction loadChunkAsyncByUrl(\n this: TurbopackBaseContext,\n chunkUrl: string\n) {\n const path = url.fileURLToPath(new URL(chunkUrl, RUNTIME_ROOT)) as ChunkPath\n return loadChunkAsync.call(this, path)\n}\ncontextPrototype.L = loadChunkAsyncByUrl\n\nfunction loadWebAssembly(\n chunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module,\n imports: WebAssembly.Imports\n) {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n\n return instantiateWebAssemblyFromPath(resolved, imports)\n}\ncontextPrototype.w = loadWebAssembly\n\nfunction loadWebAssemblyModule(\n chunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module\n) {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n\n return compileWebAssemblyFromPath(resolved)\n}\ncontextPrototype.u = loadWebAssemblyModule\n\n/**\n * Creates a Node.js worker thread by instantiating the given WorkerConstructor\n * with the appropriate path and options, including forwarded globals.\n *\n * @param WorkerConstructor The Worker constructor from worker_threads\n * @param workerPath Path to the worker entry chunk\n * @param workerOptions options to pass to the Worker constructor (optional)\n */\nfunction createWorker(\n WorkerConstructor: { new (path: string, options?: object): unknown },\n workerPath: string,\n workerOptions?: { workerData?: unknown; [key: string]: unknown }\n): unknown {\n // Build the forwarded globals object\n const forwardedGlobals: Record = {}\n for (const name of WORKER_FORWARDED_GLOBALS) {\n forwardedGlobals[name] = (globalThis as Record)[name]\n }\n\n // Merge workerData with forwarded globals\n const existingWorkerData = workerOptions?.workerData || {}\n const options = {\n ...workerOptions,\n workerData: {\n ...(typeof existingWorkerData === 'object' ? existingWorkerData : {}),\n __turbopack_globals__: forwardedGlobals,\n },\n }\n\n return new WorkerConstructor(workerPath, options)\n}\n\nconst regexJsUrl = /\\.js(?:\\?[^#]*)?(?:#.*)?$/\n/**\n * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment.\n */\nfunction isJs(chunkUrlOrPath: ChunkUrl | ChunkPath): boolean {\n return regexJsUrl.test(chunkUrlOrPath)\n}\n"],"names":["process","env","TURBOPACK","url","require","moduleFactories","Map","moduleCache","Object","create","resolvePathFromModule","moduleId","exported","r","exportedPath","default","strippedAssetPrefix","slice","ASSET_PREFIX","length","resolved","path","resolve","RUNTIME_ROOT","pathToFileURL","href","exportUrl","urlValue","id","exportValue","call","loadRuntimeChunk","sourcePath","chunkData","loadRuntimeChunkPath","loadedChunks","Set","unsupportedLoadChunk","Promise","undefined","loadedChunk","chunkCache","clearChunkCache","clear","chunkPath","isJs","has","chunkModules","installCompressedModuleFactories","add","cause","errorMessage","error","Error","name","loadChunkAsync","entry","get","m","reject","set","contextPrototype","l","loadChunkAsyncByUrl","chunkUrl","path1","fileURLToPath","URL","L","loadWebAssembly","_edgeModule","imports","instantiateWebAssemblyFromPath","w","loadWebAssemblyModule","compileWebAssemblyFromPath","u","createWorker","WorkerConstructor","workerPath","workerOptions","forwardedGlobals","WORKER_FORWARDED_GLOBALS","globalThis","existingWorkerData","workerData","options","__turbopack_globals__","regexJsUrl","chunkUrlOrPath","test"],"mappings":"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","ignoreList":[0]}}, + {"offset": {"line": 823, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/nodejs/runtime/build-base.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\n/**\n * Production Node.js runtime.\n * Uses ModuleWithDirection and simple module instantiation without HMR support.\n */\n\n// moduleCache and moduleFactories are declared in runtime-base.ts\n\n// this is read in runtime-utils.ts so it creates a module with direction for hmr\ncreateModuleWithDirectionFlag = true\n\ninterface TurbopackNodeBuildContext\n extends TurbopackBaseContext {\n R: ResolvePathFromModule\n x: ExternalRequire\n y: ExternalImport\n C: typeof clearChunkCache\n}\n\nconst nodeContextPrototype = Context.prototype as TurbopackNodeBuildContext\n\nnodeContextPrototype.q = exportUrl\nnodeContextPrototype.M = moduleFactories\n// Cast moduleCache to ModuleWithDirection for production mode\nnodeContextPrototype.c = moduleCache as ModuleCache\nnodeContextPrototype.R = resolvePathFromModule\nnodeContextPrototype.b = createWorker\nnodeContextPrototype.C = clearChunkCache\n\nfunction instantiateModule(\n id: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): ModuleWithDirection {\n const moduleFactory = moduleFactories.get(id)\n if (typeof moduleFactory !== 'function') {\n // This can happen if modules incorrectly handle HMR disposes/updates,\n // e.g. when they keep a `setTimeout` around which still executes old code\n // and contains e.g. a `require(\"something\")` call.\n throw new Error(factoryNotAvailableMessage(id, sourceType, sourceData))\n }\n\n const module: ModuleWithDirection = createModuleWithDirection(id)\n const exports = module.exports\n moduleCache[id] = module\n\n const context =\n new (Context as any as ContextConstructor)(\n module,\n exports\n )\n // NOTE(alexkirsz) This can fail when the module encounters a runtime error.\n try {\n moduleFactory(context, module, exports)\n } catch (error) {\n module.error = error as any\n throw error\n }\n\n ;(module as any).loaded = true\n if (module.namespaceObject && module.exports !== module.namespaceObject) {\n // in case of a circular dependency: cjs1 -> esm2 -> cjs1\n interopEsm(module.exports, module.namespaceObject)\n }\n\n return module\n}\n\n/**\n * Retrieves a module from the cache, or instantiate it if it is not cached.\n */\n// @ts-ignore\nfunction getOrInstantiateModuleFromParent(\n id: ModuleId,\n sourceModule: ModuleWithDirection\n): ModuleWithDirection {\n const module = moduleCache[id]\n\n if (module) {\n if (module.error) {\n throw module.error\n }\n\n return module\n }\n\n return instantiateModule(id, SourceType.Parent, sourceModule.id)\n}\n\n/**\n * Instantiates a runtime module.\n */\nfunction instantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): ModuleWithDirection {\n return instantiateModule(moduleId, SourceType.Runtime, chunkPath)\n}\n\n/**\n * Retrieves a module from the cache, or instantiate it as a runtime module if it is not cached.\n */\n// @ts-ignore TypeScript doesn't separate this module space from the browser runtime\nfunction getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): ModuleWithDirection {\n const module = moduleCache[moduleId]\n\n if (module) {\n if (module.error) {\n throw module.error\n }\n return module\n }\n\n return instantiateRuntimeModule(chunkPath, moduleId)\n}\n\nmodule.exports = (sourcePath: ChunkPath) => ({\n m: (id: ModuleId) => getOrInstantiateRuntimeModule(sourcePath, id),\n c: (chunkData: ChunkData) => loadRuntimeChunk(sourcePath, chunkData),\n})\n"],"names":["createModuleWithDirectionFlag","nodeContextPrototype","Context","prototype","q","exportUrl","M","moduleFactories","c","moduleCache","R","resolvePathFromModule","b","createWorker","C","clearChunkCache","instantiateModule","id","sourceType","sourceData","moduleFactory","get","Error","factoryNotAvailableMessage","module1","createModuleWithDirection","exports","context","error","loaded","namespaceObject","interopEsm","getOrInstantiateModuleFromParent","sourceModule","SourceType","Parent","instantiateRuntimeModule","chunkPath","moduleId","Runtime","getOrInstantiateRuntimeModule","module","sourcePath","m","chunkData","loadRuntimeChunk"],"mappings":"AAAA,oDAAoD,GAEpD,0CAA0C;AAE1C;;;CAGC,GAED,kEAAkE;AAElE,iFAAiF;AACjFA,gCAAgC;AAUhC,MAAMC,uBAAuBC,QAAQC,SAAS;AAE9CF,qBAAqBG,CAAC,GAAGC;AACzBJ,qBAAqBK,CAAC,GAAGC;AACzB,8DAA8D;AAC9DN,qBAAqBO,CAAC,GAAGC;AACzBR,qBAAqBS,CAAC,GAAGC;AACzBV,qBAAqBW,CAAC,GAAGC;AACzBZ,qBAAqBa,CAAC,GAAGC;AAEzB,SAASC,kBACPC,EAAY,EACZC,UAAsB,EACtBC,UAAsB;IAEtB,MAAMC,gBAAgBb,gBAAgBc,GAAG,CAACJ;IAC1C,IAAI,OAAOG,kBAAkB,YAAY;QACvC,sEAAsE;QACtE,0EAA0E;QAC1E,mDAAmD;QACnD,MAAM,IAAIE,MAAMC,2BAA2BN,IAAIC,YAAYC;IAC7D;IAEA,MAAMK,UAA8BC,0BAA0BR;IAC9D,MAAMS,UAAUF,QAAOE,OAAO;IAC9BjB,WAAW,CAACQ,GAAG,GAAGO;IAElB,MAAMG,UACJ,IAAKzB,QACHsB,SACAE;IAEJ,4EAA4E;IAC5E,IAAI;QACFN,cAAcO,SAASH,SAAQE;IACjC,EAAE,OAAOE,OAAO;QACdJ,QAAOI,KAAK,GAAGA;QACf,MAAMA;IACR;;IAEEJ,QAAeK,MAAM,GAAG;IAC1B,IAAIL,QAAOM,eAAe,IAAIN,QAAOE,OAAO,KAAKF,QAAOM,eAAe,EAAE;QACvE,yDAAyD;QACzDC,WAAWP,QAAOE,OAAO,EAAEF,QAAOM,eAAe;IACnD;IAEA,OAAON;AACT;AAEA;;CAEC,GACD,aAAa;AACb,SAASQ,iCACPf,EAAY,EACZgB,YAAiC;IAEjC,MAAMT,UAASf,WAAW,CAACQ,GAAG;IAE9B,IAAIO,SAAQ;QACV,IAAIA,QAAOI,KAAK,EAAE;YAChB,MAAMJ,QAAOI,KAAK;QACpB;QAEA,OAAOJ;IACT;IAEA,OAAOR,kBAAkBC,IAAIiB,WAAWC,MAAM,EAAEF,aAAahB,EAAE;AACjE;AAEA;;CAEC,GACD,SAASmB,yBACPC,SAAoB,EACpBC,QAAkB;IAElB,OAAOtB,kBAAkBsB,UAAUJ,WAAWK,OAAO,EAAEF;AACzD;AAEA;;CAEC,GACD,oFAAoF;AACpF,SAASG,8BACPH,SAAoB,EACpBC,QAAkB;IAElB,MAAMd,UAASf,WAAW,CAAC6B,SAAS;IAEpC,IAAId,SAAQ;QACV,IAAIA,QAAOI,KAAK,EAAE;YAChB,MAAMJ,QAAOI,KAAK;QACpB;QACA,OAAOJ;IACT;IAEA,OAAOY,yBAAyBC,WAAWC;AAC7C;AAEAG,OAAOf,OAAO,GAAG,CAACgB,aAA0B,CAAC;QAC3CC,GAAG,CAAC1B,KAAiBuB,8BAA8BE,YAAYzB;QAC/DT,GAAG,CAACoC,YAAyBC,iBAAiBH,YAAYE;IAC5D,CAAC","ignoreList":[0]}}] +} \ No newline at end of file diff --git a/.next/server/chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js b/.next/server/chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js new file mode 100644 index 0000000..1b5e282 --- /dev/null +++ b/.next/server/chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js @@ -0,0 +1,3 @@ +module.exports=[15934,(e,o,d)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_favicon_ico_route_actions_095lj93.js.map \ No newline at end of file diff --git a/.next/server/chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js.map b/.next/server/chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js.map new file mode 100644 index 0000000..a464c67 --- /dev/null +++ b/.next/server/chunks/_next-internal_server_app_favicon_ico_route_actions_095lj93.js.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":""} \ No newline at end of file diff --git a/.next/server/chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js b/.next/server/chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js new file mode 100644 index 0000000..2244e55 --- /dev/null +++ b/.next/server/chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js @@ -0,0 +1,3 @@ +module.exports=[37083,(e,o,d)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_icon_png_route_actions_12.gv.r.js.map \ No newline at end of file diff --git a/.next/server/chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js.map b/.next/server/chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js.map new file mode 100644 index 0000000..a464c67 --- /dev/null +++ b/.next/server/chunks/_next-internal_server_app_icon_png_route_actions_12.gv.r.js.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":""} \ No newline at end of file diff --git a/.next/server/chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js b/.next/server/chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js new file mode 100644 index 0000000..5f085c0 --- /dev/null +++ b/.next/server/chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js @@ -0,0 +1,3 @@ +module.exports=[29262,(e,o,d)=>{}]; + +//# sourceMappingURL=_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js.map \ No newline at end of file diff --git a/.next/server/chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js.map b/.next/server/chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js.map new file mode 100644 index 0000000..a464c67 --- /dev/null +++ b/.next/server/chunks/_next-internal_server_app_sitemap_xml_route_actions_036gxb_.js.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":""} \ No newline at end of file diff --git a/.next/server/chunks/node_modules_next_dist_1343e2k._.js b/.next/server/chunks/node_modules_next_dist_1343e2k._.js new file mode 100644 index 0000000..c38a9ba --- /dev/null +++ b/.next/server/chunks/node_modules_next_dist_1343e2k._.js @@ -0,0 +1,18 @@ +module.exports=[70943,(e,t,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0});var r={getOrigin:function(){return s},resolveArray:function(){return o},resolveAsArrayOrUndefined:function(){return n}};for(var i in r)Object.defineProperty(a,i,{enumerable:!0,get:r[i]});function o(e){return Array.isArray(e)?e:[e]}function n(e){if(null!=e)return o(e)}function s(e){let t;if("string"==typeof e)try{t=(e=new URL(e)).origin}catch{}return t}},73853,(e,t,a)=>{"use strict";Object.defineProperty(a,"__esModule",{value:!0});var r={resolveManifest:function(){return l},resolveRobots:function(){return n},resolveRouteData:function(){return d},resolveSitemap:function(){return s}};for(var i in r)Object.defineProperty(a,i,{enumerable:!0,get:r[i]});let o=e.r(70943);function n(e){let t="";for(let a of Array.isArray(e.rules)?e.rules:[e.rules]){for(let e of(0,o.resolveArray)(a.userAgent||["*"]))t+=`User-Agent: ${e} +`;if(a.allow)for(let e of(0,o.resolveArray)(a.allow))t+=`Allow: ${e} +`;if(a.disallow)for(let e of(0,o.resolveArray)(a.disallow))t+=`Disallow: ${e} +`;a.crawlDelay&&(t+=`Crawl-delay: ${a.crawlDelay} +`),t+="\n"}return e.host&&(t+=`Host: ${e.host} +`),e.sitemap&&(0,o.resolveArray)(e.sitemap).forEach(e=>{t+=`Sitemap: ${e} +`}),t}function s(e){let t=e.some(e=>Object.keys(e.alternates??{}).length>0),a=e.some(e=>{var t;return!!(null==(t=e.images)?void 0:t.length)}),r=e.some(e=>{var t;return!!(null==(t=e.videos)?void 0:t.length)}),i="";for(let l of(i+='\n',i+='${l.url} +`;let e=null==(o=l.alternates)?void 0:o.languages;if(e&&Object.keys(e).length)for(let t in e)i+=` +`;if(null==(n=l.images)?void 0:n.length)for(let e of l.images)i+=` +${e} + +`;if(null==(s=l.videos)?void 0:s.length)for(let e of l.videos)i+=["",`${e.title}`,`${e.thumbnail_loc}`,`${e.description}`,e.content_loc&&`${e.content_loc}`,e.player_loc&&`${e.player_loc}`,e.duration&&`${e.duration}`,e.view_count&&`${e.view_count}`,e.tag&&`${e.tag}`,e.rating&&`${e.rating}`,e.expiration_date&&`${e.expiration_date}`,e.publication_date&&`${e.publication_date}`,e.family_friendly&&`${e.family_friendly}`,e.requires_subscription&&`${e.requires_subscription}`,e.live&&`${e.live}`,e.restriction&&`${e.restriction.content}`,e.platform&&`${e.platform.content}`,e.uploader&&`${e.uploader.content}`,` +`].filter(Boolean).join("\n");if(l.lastModified){let e=l.lastModified instanceof Date?l.lastModified.toISOString():l.lastModified;i+=`${e} +`}l.changeFrequency&&(i+=`${l.changeFrequency} +`),"number"==typeof l.priority&&(i+=`${l.priority} +`),i+="\n"}return i+"\n"}function l(e){return JSON.stringify(e)}function d(e,t){return"robots"===t?n(e):"sitemap"===t?s(e):"manifest"===t?l(e):""}},83345,e=>{"use strict";var t=e.i(47909),a=e.i(74017),r=e.i(96250),i=e.i(59756),o=e.i(61916),n=e.i(74677),s=e.i(69741),l=e.i(16795),d=e.i(87718),c=e.i(95169),p=e.i(47587),u=e.i(66012),h=e.i(70101),g=e.i(26937),m=e.i(10372),y=e.i(93695);e.i(52474);var v=e.i(220),f=e.i(89171);let b="https://doormile.com",w=[{slug:"how-ai-is-transforming-last-mile-ev-delivery",title:"How Better Planning Improves Last-Mile EV Delivery",excerpt:"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.",category:"Technology",image:"/images/blog-post-pic-17.webp",date:"2025-10-02",intro:"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.",content:[{type:"paragraph",text:"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs."},{type:"heading",level:2,text:"The shift from fixed rules to daily planning"},{type:"paragraph",text:"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual."},{type:"list",items:["Order volumes by area, time slot, and customer type","Travel times based on the city's actual traffic patterns","Battery use by vehicle type, rider load, and route length","Feedback from completed deliveries, failed attempts, and late arrivals"]},{type:"heading",level:3,text:"Adjusting during the day"},{type:"paragraph",text:"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/ev-paradox.webp",alt:"Electric delivery vehicle routing visualisation",caption:"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub."},{type:"quote",text:"With EVs, a route is only useful if the vehicle can finish it and still return safely.",cite:"Doormile Operations"},{type:"heading",level:2,text:"What this means for operators"},{type:"paragraph",text:"For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window."},{type:"list",ordered:!0,items:["Record delivery times, failed attempts, traffic delays, and charging cycles.","Build travel-time estimates from the areas your riders actually serve.","Check every route against battery capacity before dispatch.","Replan when traffic, orders, or vehicle availability changes."]},{type:"paragraph",text:"The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time."}]},{slug:"42-less-distance-insights-from-our-hyderabad-hub",title:"42% Less Distance: Insights from Our Hyderabad Hub",excerpt:"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.",category:"Case Study",image:"/images/blog-post-pic-15.webp",date:"2025-09-18",intro:"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.",content:[{type:"paragraph",text:"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day."},{type:"heading",level:2,text:"The baseline"},{type:"paragraph",text:"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed."},{type:"paragraph",text:"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment."},{type:"list",items:["Zone-based allocation that missed nearby cross-zone drops","Manual stop sequencing during busy dispatch windows","ETAs checked after routing instead of before dispatch","Traffic and delay handling that depended on phone calls from riders"]},{type:"heading",level:3,text:"What changed"},{type:"paragraph",text:"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/last-mile-approach.webp",alt:"Hyderabad delivery hub routing analysis",caption:"Planning the day's deliveries together removed repeated cross-town travel."},{type:"heading",level:2,text:"The results"},{type:"list",items:["42% reduction in total distance travelled across the hub","37% fewer vehicles required for the same delivery volume","No SLA misses during the measured deployment window","Lower fuel use and fewer unnecessary kilometres per parcel"]},{type:"quote",text:"The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.",cite:"Hyderabad Hub Operations"},{type:"heading",level:3,text:"Why this applies beyond one hub"},{type:"paragraph",text:"The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes."},{type:"paragraph",text:"A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy."}]},{slug:"miletruth-ai-10-stages-to-smarter-dispatch",title:"MileTruth™: 10 Stages to Smarter Dispatch",excerpt:"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.",category:"MileTruth",image:"/images/blog-post-pic-31.webp",date:"2025-09-05",intro:"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.",content:[{type:"paragraph",text:"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day."},{type:"heading",level:2,text:"The ten stages"},{type:"list",ordered:!0,items:["Order intake: new orders, rider availability, and vehicle status are collected.","Address check: delivery points, time windows, and service notes are verified.","Stop planning: each stop gets an expected service time and delivery priority.","Travel-time check: routes are compared against time-of-day traffic.","Constraint check: capacity, shift time, customer windows, and range are applied.","Route options: several possible plans are built for the same order set.","Plan selection: the lowest-cost workable route plan is selected.","Battery check: EV routes are checked against real charge capacity.","ETA check: promised delivery times are verified before dispatch.","Dispatch output: the final route is sent to the operations team."]},{type:"heading",level:3,text:"Why staging matters"},{type:"paragraph",text:"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue."},{type:"image",src:"/images/blog-post-pic-31.webp",alt:"MileTruth routing pipeline diagram",caption:"A staged dispatch process catches address, range, and ETA issues before riders leave."},{type:"quote",text:"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.",cite:"MileTruth Engineering"},{type:"heading",level:2,text:"Comparing route options"},{type:"paragraph",text:"The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger."},{type:"list",items:["Several route plans checked before dispatch","Distance, time windows, capacity, and range considered together","Range and ETA checked before the route reaches the rider","Fast output that still leaves room for dispatcher review"]},{type:"paragraph",text:"The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub."}]},{slug:"the-ev-paradox-solving-range-anxiety-for-urban-fleets",title:"The EV Paradox: Solving Range Anxiety for Urban Fleets",excerpt:"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.",category:"EV Fleet",image:"/images/ev-paradox.webp",date:"2025-08-21",intro:"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan."},{slug:"why-mathematical-precision-beats-heuristics-in-routing",title:"Why Mathematical Precision Beats Heuristics in Routing",excerpt:"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.",category:"Technology",image:"/images/blog-post-pic-14.webp",date:"2025-08-07",intro:"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch."},{slug:"fleet-reduction-without-compromising-delivery-volume",title:"Fleet Reduction Without Compromising Delivery Volume",excerpt:"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.",category:"Fleet Management",image:"/images/blog-post-pic-8.webp",date:"2025-07-24",intro:"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom."},{slug:"building-a-greener-city-the-future-of-urban-logistics",title:"Building a Greener City: The Future of Urban Logistics",excerpt:"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.",category:"Sustainability",image:"/images/blog-post-pic-6.webp",date:"2025-07-10",intro:"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day."},{slug:"how-doormile-maintains-99-9-sla-compliance-at-scale",title:"How Doormile Maintains 99.9% SLA Compliance at Scale",excerpt:"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.",category:"Operations",image:"/images/last-mile-approach.webp",date:"2025-06-26",intro:"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk."},{slug:"battery-simulation-the-secret-to-ev-route-pre-validation",title:"Battery Simulation: The Secret to EV Route Pre-Validation",excerpt:"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.",category:"EV Fleet",image:"/images/blog-post-pic-3.webp",date:"2025-06-12",intro:"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch."}].map(e=>{var t;return{slug:e.slug,title:e.title,excerpt:e.excerpt,category:e.category,image:e.image,date:e.date,author:"Doormile Team",intro:e.intro,content:e.content??(t={title:e.title,category:e.category,image:e.image},[{type:"paragraph",text:`In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. ${t.title} looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.`},{type:"heading",level:2,text:"Why this matters for fleet teams"},{type:"paragraph",text:"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."},{type:"list",items:["Fewer vehicles needed for the same number of drops","Lower cost per drop through better stop sequencing","ETAs that match traffic, distance, and delivery windows","Less fuel or charge used per completed order"]},{type:"heading",level:3,text:"From orders to dispatch"},{type:"paragraph",text:"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."},{type:"image",src:t.image,alt:t.title,caption:`${t.category}: route planning decisions made before dispatch.`},{type:"quote",text:"A route should be checked before the rider leaves, not explained after the customer calls.",cite:"Doormile Operations"},{type:"heading",level:2,text:"Putting it into practice"},{type:"paragraph",text:"The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time."},{type:"list",ordered:!0,items:["Benchmark today's distance, fleet size, and on-time rate.","Include vehicle capacity, delivery windows, rider shifts, and battery charge.","Check routes against traffic and customer commitments before dispatch.","Compare the next dispatch cycle against the old plan."]},{type:"paragraph",text:"Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead."}])}});function x(){return[...["","/about","/contact","/blog","/air-freight","/first-mile-delivery","/mid-mile-delivery","/last-mile-delivery","/ev-logistics","/strategy-optimization","/how-it-works"].map(e=>({url:`${b}${e}`,lastModified:new Date().toISOString().split("T")[0],changeFrequency:"weekly",priority:""===e?1:.8})),...w.map(e=>({url:`${b}/blog/${e.slug}`,lastModified:e.date,changeFrequency:"monthly",priority:.6}))]}e.s(["default",0,x],63034);var k=e.i(73853);async function T(){let e=await x(),t=(0,k.resolveRouteData)(e,"sitemap");return new f.NextResponse(t,{headers:{"Content-Type":"application/xml","Cache-Control":"public, max-age=0, must-revalidate"}})}e.s(["GET",0,T],79512),e.i(79512),e.i(63034),e.s(["GET",0,T],834);var A=e.i(834);let R=new t.AppRouteRouteModule({definition:{kind:a.RouteKind.APP_ROUTE,page:"/sitemap.xml/route",pathname:"/sitemap.xml",filename:"sitemap--route-entry",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/src/app/sitemap--route-entry.js",nextConfigOutput:"",userland:A,...{}}),{workAsyncStorage:E,workUnitAsyncStorage:_,serverHooks:C}=R;async function $(e,t,r){r.requestMeta&&(0,i.setRequestMeta)(e,r.requestMeta),R.isDev&&(0,i.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let f="/sitemap.xml/route";f=f.replace(/\/index$/,"")||"/";let b=await R.prepare(e,t,{srcPage:f,multiZoneDraftMode:!1});if(!b)return t.statusCode=400,t.end("Bad Request"),null==r.waitUntil||r.waitUntil.call(r,Promise.resolve()),null;let{buildId:w,deploymentId:x,params:k,nextConfig:T,parsedUrl:A,isDraftMode:E,prerenderManifest:_,routerServerContext:C,isOnDemandRevalidate:$,revalidateOnlyGenerated:S,resolvedPathname:q,clientReferenceManifest:O,serverActionsManifest:M}=b,H=(0,s.normalizeAppPath)(f),P=!!(_.dynamicRoutes[H]||_.routes[q]),D=async()=>((null==C?void 0:C.render404)?await C.render404(e,t,A,!1):t.end("This page could not be found"),null);if(P&&!E){let e=!!_.routes[q],t=_.dynamicRoutes[H];if(t&&!1===t.fallback&&!e){if(T.adapterPath)return await D();throw new y.NoFallbackError}}let I=null;!P||R.isDev||E||(I="/index"===(I=q)?"/":I);let N=!0===R.isDev||!P,F=P&&!N;M&&O&&(0,n.setManifestsSingleton)({page:f,clientReferenceManifest:O,serverActionsManifest:M});let B=e.method||"GET",j=(0,o.getTracer)(),U=j.getActiveScopeSpan(),V=!!(null==C?void 0:C.isWrappedByNextServer),L=!!(0,i.getRequestMeta)(e,"minimalMode"),W=(0,i.getRequestMeta)(e,"incrementalCache")||await R.getIncrementalCache(e,T,_,L);null==W||W.resetRequestCache(),globalThis.__incrementalCache=W;let K={params:k,previewProps:_.preview,renderOpts:{experimental:{authInterrupts:!!T.experimental.authInterrupts},cacheComponents:!!T.cacheComponents,supportsDynamicResponse:N,incrementalCache:W,cacheLifeProfiles:T.cacheLife,waitUntil:r.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,a,r,i)=>R.onRequestError(e,t,r,i,C)},sharedContext:{buildId:w,deploymentId:x}},z=new l.NodeNextRequest(e),G=new l.NodeNextResponse(t),X=d.NextRequestAdapter.fromNodeNextRequest(z,(0,d.signalFromNodeResponse)(t));try{let i,n=async e=>R.handle(X,K).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let a=j.getRootSpanAttributes();if(!a)return;if(a.get("next.span_type")!==c.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${a.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let r=a.get("next.route");if(r){let t=`${B} ${r}`;e.setAttributes({"next.route":r,"http.route":r,"next.span_name":t}),e.updateName(t),i&&i!==e&&(i.setAttribute("http.route",r),i.updateName(t))}else e.updateName(`${B} ${f}`)}),s=async i=>{var o,s;let l=async({previousCacheEntry:a})=>{try{if(!L&&$&&S&&!a)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let o=await n(i);e.fetchMetrics=K.renderOpts.fetchMetrics;let s=K.renderOpts.pendingWaitUntil;s&&r.waitUntil&&(r.waitUntil(s),s=void 0);let l=K.renderOpts.collectedTags;if(!P)return await (0,u.sendResponse)(z,G,o,K.renderOpts.pendingWaitUntil),null;{let e=await o.blob(),t=(0,h.toNodeOutgoingHttpHeaders)(o.headers);l&&(t[m.NEXT_CACHE_TAGS_HEADER]=l),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let a=void 0!==K.renderOpts.collectedRevalidate&&!(K.renderOpts.collectedRevalidate>=m.INFINITE_CACHE)&&K.renderOpts.collectedRevalidate,r=void 0===K.renderOpts.collectedExpire||K.renderOpts.collectedExpire>=m.INFINITE_CACHE?void 0:K.renderOpts.collectedExpire;return{value:{kind:v.CachedRouteKind.APP_ROUTE,status:o.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:a,expire:r}}}}catch(t){throw(null==a?void 0:a.isStale)&&await R.onRequestError(e,t,{routerKind:"App Router",routePath:f,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:F,isOnDemandRevalidate:$})},!1,C),t}},d=await R.handleResponse({req:e,nextConfig:T,cacheKey:I,routeKind:a.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:_,isRoutePPREnabled:!1,isOnDemandRevalidate:$,revalidateOnlyGenerated:S,responseGenerator:l,waitUntil:r.waitUntil,isMinimalMode:L});if(!P)return null;if((null==d||null==(o=d.value)?void 0:o.kind)!==v.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==d||null==(s=d.value)?void 0:s.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});L||t.setHeader("x-nextjs-cache",$?"REVALIDATED":d.isMiss?"MISS":d.isStale?"STALE":"HIT"),E&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let c=(0,h.fromNodeOutgoingHttpHeaders)(d.value.headers);return L&&P||c.delete(m.NEXT_CACHE_TAGS_HEADER),!d.cacheControl||t.getHeader("Cache-Control")||c.get("Cache-Control")||c.set("Cache-Control",(0,g.getCacheControlHeader)(d.cacheControl)),await (0,u.sendResponse)(z,G,new Response(d.value.body,{headers:c,status:d.value.status||200})),null};V&&U?await s(U):(i=j.getActiveScopeSpan(),await j.withPropagatedContext(e.headers,()=>j.trace(c.BaseServerSpan.handleRequest,{spanName:`${B} ${f}`,kind:o.SpanKind.SERVER,attributes:{"http.method":B,"http.target":e.url}},s),void 0,!V))}catch(t){if(t instanceof y.NoFallbackError||await R.onRequestError(e,t,{routerKind:"App Router",routePath:H,routeType:"route",revalidateReason:(0,p.getRevalidateReason)({isStaticGeneration:F,isOnDemandRevalidate:$})},!1,C),P)throw t;return await (0,u.sendResponse)(z,G,new Response(null,{status:500})),null}}e.s(["handler",0,$,"patchFetch",0,function(){return(0,r.patchFetch)({workAsyncStorage:E,workUnitAsyncStorage:_})},"routeModule",0,R,"serverHooks",0,C,"workAsyncStorage",0,E,"workUnitAsyncStorage",0,_],83345)}]; + +//# sourceMappingURL=node_modules_next_dist_1343e2k._.js.map \ No newline at end of file diff --git a/.next/server/chunks/node_modules_next_dist_1343e2k._.js.map b/.next/server/chunks/node_modules_next_dist_1343e2k._.js.map new file mode 100644 index 0000000..79587c4 --- /dev/null +++ b/.next/server/chunks/node_modules_next_dist_1343e2k._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../node_modules/next/src/lib/metadata/generate/utils.ts","../../../node_modules/next/src/build/webpack/loaders/metadata/resolve-route-data.ts","../../../src/app/sitemap--route-entry.js","../../../node_modules/next/dist/esm/build/templates/app-route.js","../../../src/app/sitemap.ts","../../../src/data/blog.ts"],"sourcesContent":["function resolveArray(value: T | T[]): T[] {\n if (Array.isArray(value)) {\n return value as any\n }\n return [value] as any\n}\n\nfunction resolveAsArrayOrUndefined(\n value: T | T[] | undefined | null\n): T extends undefined | null ? undefined : T[] {\n if (typeof value === 'undefined' || value === null) {\n return undefined as any\n }\n return resolveArray(value) as any\n}\n\nfunction getOrigin(url: string | URL): string | undefined {\n let origin = undefined\n if (typeof url === 'string') {\n try {\n url = new URL(url)\n origin = url.origin\n } catch {}\n }\n return origin\n}\n\nexport { resolveAsArrayOrUndefined, resolveArray, getOrigin }\n","import type { MetadataRoute } from '../../../../lib/metadata/types/metadata-interface'\nimport { resolveArray } from '../../../../lib/metadata/generate/utils'\n\n// convert robots data to txt string\nexport function resolveRobots(data: MetadataRoute.Robots): string {\n let content = ''\n const rules = Array.isArray(data.rules) ? data.rules : [data.rules]\n for (const rule of rules) {\n const userAgent = resolveArray(rule.userAgent || ['*'])\n for (const agent of userAgent) {\n content += `User-Agent: ${agent}\\n`\n }\n if (rule.allow) {\n const allow = resolveArray(rule.allow)\n for (const item of allow) {\n content += `Allow: ${item}\\n`\n }\n }\n if (rule.disallow) {\n const disallow = resolveArray(rule.disallow)\n for (const item of disallow) {\n content += `Disallow: ${item}\\n`\n }\n }\n if (rule.crawlDelay) {\n content += `Crawl-delay: ${rule.crawlDelay}\\n`\n }\n content += '\\n'\n }\n if (data.host) {\n content += `Host: ${data.host}\\n`\n }\n if (data.sitemap) {\n const sitemap = resolveArray(data.sitemap)\n // TODO-METADATA: support injecting sitemap url into robots.txt\n sitemap.forEach((item) => {\n content += `Sitemap: ${item}\\n`\n })\n }\n\n return content\n}\n\n// TODO-METADATA: support multi sitemap files\n// convert sitemap data to xml string\nexport function resolveSitemap(data: MetadataRoute.Sitemap): string {\n const hasAlternates = data.some(\n (item) => Object.keys(item.alternates ?? {}).length > 0\n )\n const hasImages = data.some((item) => Boolean(item.images?.length))\n const hasVideos = data.some((item) => Boolean(item.videos?.length))\n\n let content = ''\n content += '\\n'\n content += '${item.url}\\n`\n\n const languages = item.alternates?.languages\n if (languages && Object.keys(languages).length) {\n // Since sitemap is separated from the page rendering, there's not metadataBase accessible yet.\n // we give the default setting that won't effect the languages resolving.\n for (const language in languages) {\n content += `\\n`\n }\n }\n if (item.images?.length) {\n for (const image of item.images) {\n content += `\\n${image}\\n\\n`\n }\n }\n if (item.videos?.length) {\n for (const video of item.videos) {\n let videoFields = [\n ``,\n `${video.title}`,\n `${video.thumbnail_loc}`,\n `${video.description}`,\n video.content_loc &&\n `${video.content_loc}`,\n video.player_loc &&\n `${video.player_loc}`,\n video.duration &&\n `${video.duration}`,\n video.view_count &&\n `${video.view_count}`,\n video.tag && `${video.tag}`,\n video.rating && `${video.rating}`,\n video.expiration_date &&\n `${video.expiration_date}`,\n video.publication_date &&\n `${video.publication_date}`,\n video.family_friendly &&\n `${video.family_friendly}`,\n video.requires_subscription &&\n `${video.requires_subscription}`,\n video.live && `${video.live}`,\n video.restriction &&\n `${video.restriction.content}`,\n video.platform &&\n `${video.platform.content}`,\n video.uploader &&\n `${video.uploader.content}`,\n `\\n`,\n ].filter(Boolean)\n content += videoFields.join('\\n')\n }\n }\n if (item.lastModified) {\n const serializedDate =\n item.lastModified instanceof Date\n ? item.lastModified.toISOString()\n : item.lastModified\n\n content += `${serializedDate}\\n`\n }\n\n if (item.changeFrequency) {\n content += `${item.changeFrequency}\\n`\n }\n\n if (typeof item.priority === 'number') {\n content += `${item.priority}\\n`\n }\n\n content += '\\n'\n }\n\n content += '\\n'\n\n return content\n}\n\nexport function resolveManifest(data: MetadataRoute.Manifest): string {\n return JSON.stringify(data)\n}\n\nexport function resolveRouteData(\n data: MetadataRoute.Robots | MetadataRoute.Sitemap | MetadataRoute.Manifest,\n fileType: 'robots' | 'sitemap' | 'manifest'\n): string {\n if (fileType === 'robots') {\n return resolveRobots(data as MetadataRoute.Robots)\n }\n if (fileType === 'sitemap') {\n return resolveSitemap(data as MetadataRoute.Sitemap)\n }\n if (fileType === 'manifest') {\n return resolveManifest(data as MetadataRoute.Manifest)\n }\n return ''\n}\n","import { NextResponse } from 'next/server'\nimport { default as handler } from \"./sitemap.ts\"\nimport { resolveRouteData } from 'next/dist/build/webpack/loaders/metadata/resolve-route-data'\n\nconst contentType = \"application/xml\"\nconst cacheControl = \"public, max-age=0, must-revalidate\"\nconst fileType = \"sitemap\"\n\nif (typeof handler !== 'function') {\n throw new Error('Default export is missing in \"./sitemap.ts\"')\n}\n\nexport async function GET() {\n const data = await handler()\n const content = resolveRouteData(data, fileType)\n\n return new NextResponse(content, {\n headers: {\n 'Content-Type': contentType,\n 'Cache-Control': cacheControl,\n },\n })\n}\n\nexport * from \"./sitemap.ts\"\n","import { AppRouteRouteModule } from \"next/dist/esm/server/route-modules/app-route/module.compiled\";\nimport { RouteKind } from \"next/dist/esm/server/route-kind\";\nimport { patchFetch as _patchFetch } from \"next/dist/esm/server/lib/patch-fetch\";\nimport { addRequestMeta, getRequestMeta, setRequestMeta } from \"next/dist/esm/server/request-meta\";\nimport { getTracer, SpanKind } from \"next/dist/esm/server/lib/trace/tracer\";\nimport { setManifestsSingleton } from \"next/dist/esm/server/app-render/manifests-singleton\";\nimport { normalizeAppPath } from \"next/dist/esm/shared/lib/router/utils/app-paths\";\nimport { NodeNextRequest, NodeNextResponse } from \"next/dist/esm/server/base-http/node\";\nimport { NextRequestAdapter, signalFromNodeResponse } from \"next/dist/esm/server/web/spec-extension/adapters/next-request\";\nimport { BaseServerSpan } from \"next/dist/esm/server/lib/trace/constants\";\nimport { getRevalidateReason } from \"next/dist/esm/server/instrumentation/utils\";\nimport { sendResponse } from \"next/dist/esm/server/send-response\";\nimport { fromNodeOutgoingHttpHeaders, toNodeOutgoingHttpHeaders } from \"next/dist/esm/server/web/utils\";\nimport { getCacheControlHeader } from \"next/dist/esm/server/lib/cache-control\";\nimport { INFINITE_CACHE, NEXT_CACHE_TAGS_HEADER } from \"next/dist/esm/lib/constants\";\nimport { NoFallbackError } from \"next/dist/esm/shared/lib/no-fallback-error.external\";\nimport { CachedRouteKind } from \"next/dist/esm/server/response-cache\";\nimport * as userland from \"INNER_APP_ROUTE\";\n// We inject the nextConfigOutput here so that we can use them in the route\n// module.\nconst nextConfigOutput = \"\"\nconst routeModule = new AppRouteRouteModule({\n definition: {\n kind: RouteKind.APP_ROUTE,\n page: \"/sitemap.xml/route\",\n pathname: \"/sitemap.xml\",\n filename: \"sitemap--route-entry\",\n bundlePath: \"\"\n },\n distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',\n relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',\n resolvedPagePath: \"[project]/src/app/sitemap--route-entry.js\",\n nextConfigOutput,\n // The static import is used for initialization (methods, dynamic, etc.).\n userland: userland,\n // In Turbopack dev mode, also provide a getter that calls require() on every\n // request. This re-reads from devModuleCache so HMR updates are picked up,\n // and the async wrapper unwraps async-module Promises (ESM-only\n // serverExternalPackages) automatically.\n ...process.env.TURBOPACK && process.env.__NEXT_DEV_SERVER ? {\n getUserland: ()=>import(\"INNER_APP_ROUTE\")\n } : {}\n});\n// Pull out the exports that we need to expose from the module. This should\n// be eliminated when we've moved the other routes to the new format. These\n// are used to hook into the route.\nconst { workAsyncStorage, workUnitAsyncStorage, serverHooks } = routeModule;\nfunction patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage\n });\n}\nexport { routeModule, workAsyncStorage, workUnitAsyncStorage, serverHooks, patchFetch, };\nexport async function handler(req, res, ctx) {\n if (ctx.requestMeta) {\n setRequestMeta(req, ctx.requestMeta);\n }\n if (routeModule.isDev) {\n addRequestMeta(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint());\n }\n let srcPage = \"/sitemap.xml/route\";\n // turbopack doesn't normalize `/index` in the page name\n // so we need to to process dynamic routes properly\n // TODO: fix turbopack providing differing value from webpack\n if (process.env.TURBOPACK) {\n srcPage = srcPage.replace(/\\/index$/, '') || '/';\n } else if (srcPage === '/index') {\n // we always normalize /index specifically\n srcPage = '/';\n }\n const multiZoneDraftMode = process.env.__NEXT_MULTI_ZONE_DRAFT_MODE;\n const prepareResult = await routeModule.prepare(req, res, {\n srcPage,\n multiZoneDraftMode\n });\n if (!prepareResult) {\n res.statusCode = 400;\n res.end('Bad Request');\n ctx.waitUntil == null ? void 0 : ctx.waitUntil.call(ctx, Promise.resolve());\n return null;\n }\n const { buildId, deploymentId, params, nextConfig, parsedUrl, isDraftMode, prerenderManifest, routerServerContext, isOnDemandRevalidate, revalidateOnlyGenerated, resolvedPathname, clientReferenceManifest, serverActionsManifest } = prepareResult;\n const normalizedSrcPage = normalizeAppPath(srcPage);\n let isIsr = Boolean(prerenderManifest.dynamicRoutes[normalizedSrcPage] || prerenderManifest.routes[resolvedPathname]);\n const render404 = async ()=>{\n // TODO: should route-module itself handle rendering the 404\n if (routerServerContext == null ? void 0 : routerServerContext.render404) {\n await routerServerContext.render404(req, res, parsedUrl, false);\n } else {\n res.end('This page could not be found');\n }\n return null;\n };\n if (isIsr && !isDraftMode) {\n const isPrerendered = Boolean(prerenderManifest.routes[resolvedPathname]);\n const prerenderInfo = prerenderManifest.dynamicRoutes[normalizedSrcPage];\n if (prerenderInfo) {\n if (prerenderInfo.fallback === false && !isPrerendered) {\n if (nextConfig.adapterPath) {\n return await render404();\n }\n throw new NoFallbackError();\n }\n }\n }\n let cacheKey = null;\n if (isIsr && !routeModule.isDev && !isDraftMode) {\n cacheKey = resolvedPathname;\n // ensure /index and / is normalized to one key\n cacheKey = cacheKey === '/index' ? '/' : cacheKey;\n }\n const supportsDynamicResponse = // If we're in development, we always support dynamic HTML\n routeModule.isDev === true || // If this is not SSG or does not have static paths, then it supports\n // dynamic HTML.\n !isIsr;\n // This is a revalidation request if the request is for a static\n // page and it is not being resumed from a postponed render and\n // it is not a dynamic RSC request then it is a revalidation\n // request.\n const isStaticGeneration = isIsr && !supportsDynamicResponse;\n // Before rendering (which initializes component tree modules), we have to\n // set the reference manifests to our global store so Server Action's\n // encryption util can access to them at the top level of the page module.\n if (serverActionsManifest && clientReferenceManifest) {\n setManifestsSingleton({\n page: srcPage,\n clientReferenceManifest,\n serverActionsManifest\n });\n }\n const method = req.method || 'GET';\n const tracer = getTracer();\n const activeSpan = tracer.getActiveScopeSpan();\n const isWrappedByNextServer = Boolean(routerServerContext == null ? void 0 : routerServerContext.isWrappedByNextServer);\n const isMinimalMode = Boolean(getRequestMeta(req, 'minimalMode'));\n const incrementalCache = getRequestMeta(req, 'incrementalCache') || await routeModule.getIncrementalCache(req, nextConfig, prerenderManifest, isMinimalMode);\n incrementalCache == null ? void 0 : incrementalCache.resetRequestCache();\n globalThis.__incrementalCache = incrementalCache;\n const context = {\n params,\n previewProps: prerenderManifest.preview,\n renderOpts: {\n experimental: {\n authInterrupts: Boolean(nextConfig.experimental.authInterrupts)\n },\n cacheComponents: Boolean(nextConfig.cacheComponents),\n supportsDynamicResponse,\n incrementalCache,\n cacheLifeProfiles: nextConfig.cacheLife,\n waitUntil: ctx.waitUntil,\n onClose: (cb)=>{\n res.on('close', cb);\n },\n onAfterTaskError: undefined,\n onInstrumentationRequestError: (error, _request, errorContext, silenceLog)=>routeModule.onRequestError(req, error, errorContext, silenceLog, routerServerContext)\n },\n sharedContext: {\n buildId,\n deploymentId\n }\n };\n const nodeNextReq = new NodeNextRequest(req);\n const nodeNextRes = new NodeNextResponse(res);\n const nextReq = NextRequestAdapter.fromNodeNextRequest(nodeNextReq, signalFromNodeResponse(res));\n try {\n let parentSpan;\n const invokeRouteModule = async (span)=>{\n return routeModule.handle(nextReq, context).finally(()=>{\n if (!span) return;\n span.setAttributes({\n 'http.status_code': res.statusCode,\n 'next.rsc': false\n });\n const rootSpanAttributes = tracer.getRootSpanAttributes();\n // We were unable to get attributes, probably OTEL is not enabled\n if (!rootSpanAttributes) {\n return;\n }\n if (rootSpanAttributes.get('next.span_type') !== BaseServerSpan.handleRequest) {\n console.warn(`Unexpected root span type '${rootSpanAttributes.get('next.span_type')}'. Please report this Next.js issue https://github.com/vercel/next.js`);\n return;\n }\n const route = rootSpanAttributes.get('next.route');\n if (route) {\n const name = `${method} ${route}`;\n span.setAttributes({\n 'next.route': route,\n 'http.route': route,\n 'next.span_name': name\n });\n span.updateName(name);\n // Propagate http.route to the parent span if one exists (e.g.\n // a platform-created HTTP span in adapter deployments).\n if (parentSpan && parentSpan !== span) {\n parentSpan.setAttribute('http.route', route);\n parentSpan.updateName(name);\n }\n } else {\n span.updateName(`${method} ${srcPage}`);\n }\n });\n };\n const handleResponse = async (currentSpan)=>{\n var _cacheEntry_value;\n const responseGenerator = async ({ previousCacheEntry })=>{\n try {\n if (!isMinimalMode && isOnDemandRevalidate && revalidateOnlyGenerated && !previousCacheEntry) {\n res.statusCode = 404;\n // on-demand revalidate always sets this header\n res.setHeader('x-nextjs-cache', 'REVALIDATED');\n res.end('This page could not be found');\n return null;\n }\n const response = await invokeRouteModule(currentSpan);\n req.fetchMetrics = context.renderOpts.fetchMetrics;\n let pendingWaitUntil = context.renderOpts.pendingWaitUntil;\n // Attempt using provided waitUntil if available\n // if it's not we fallback to sendResponse's handling\n if (pendingWaitUntil) {\n if (ctx.waitUntil) {\n ctx.waitUntil(pendingWaitUntil);\n pendingWaitUntil = undefined;\n }\n }\n const cacheTags = context.renderOpts.collectedTags;\n // If the request is for a static response, we can cache it so long\n // as it's not edge.\n if (isIsr) {\n const blob = await response.blob();\n // Copy the headers from the response.\n const headers = toNodeOutgoingHttpHeaders(response.headers);\n if (cacheTags) {\n headers[NEXT_CACHE_TAGS_HEADER] = cacheTags;\n }\n if (!headers['content-type'] && blob.type) {\n headers['content-type'] = blob.type;\n }\n const revalidate = typeof context.renderOpts.collectedRevalidate === 'undefined' || context.renderOpts.collectedRevalidate >= INFINITE_CACHE ? false : context.renderOpts.collectedRevalidate;\n const expire = typeof context.renderOpts.collectedExpire === 'undefined' || context.renderOpts.collectedExpire >= INFINITE_CACHE ? undefined : context.renderOpts.collectedExpire;\n // Create the cache entry for the response.\n const cacheEntry = {\n value: {\n kind: CachedRouteKind.APP_ROUTE,\n status: response.status,\n body: Buffer.from(await blob.arrayBuffer()),\n headers\n },\n cacheControl: {\n revalidate,\n expire\n }\n };\n return cacheEntry;\n } else {\n // send response without caching if not ISR\n await sendResponse(nodeNextReq, nodeNextRes, response, context.renderOpts.pendingWaitUntil);\n return null;\n }\n } catch (err) {\n // if this is a background revalidate we need to report\n // the request error here as it won't be bubbled\n if (previousCacheEntry == null ? void 0 : previousCacheEntry.isStale) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: srcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n throw err;\n }\n };\n const cacheEntry = await routeModule.handleResponse({\n req,\n nextConfig,\n cacheKey,\n routeKind: RouteKind.APP_ROUTE,\n isFallback: false,\n prerenderManifest,\n isRoutePPREnabled: false,\n isOnDemandRevalidate,\n revalidateOnlyGenerated,\n responseGenerator,\n waitUntil: ctx.waitUntil,\n isMinimalMode\n });\n // we don't create a cacheEntry for ISR\n if (!isIsr) {\n return null;\n }\n if ((cacheEntry == null ? void 0 : (_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) !== CachedRouteKind.APP_ROUTE) {\n var _cacheEntry_value1;\n throw Object.defineProperty(new Error(`Invariant: app-route received invalid cache entry ${cacheEntry == null ? void 0 : (_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind}`), \"__NEXT_ERROR_CODE\", {\n value: \"E701\",\n enumerable: false,\n configurable: true\n });\n }\n if (!isMinimalMode) {\n res.setHeader('x-nextjs-cache', isOnDemandRevalidate ? 'REVALIDATED' : cacheEntry.isMiss ? 'MISS' : cacheEntry.isStale ? 'STALE' : 'HIT');\n }\n // Draft mode should never be cached\n if (isDraftMode) {\n res.setHeader('Cache-Control', 'private, no-cache, no-store, max-age=0, must-revalidate');\n }\n const headers = fromNodeOutgoingHttpHeaders(cacheEntry.value.headers);\n if (!(isMinimalMode && isIsr)) {\n headers.delete(NEXT_CACHE_TAGS_HEADER);\n }\n // If cache control is already set on the response we don't\n // override it to allow users to customize it via next.config\n if (cacheEntry.cacheControl && !res.getHeader('Cache-Control') && !headers.get('Cache-Control')) {\n headers.set('Cache-Control', getCacheControlHeader(cacheEntry.cacheControl));\n }\n await sendResponse(nodeNextReq, nodeNextRes, // @ts-expect-error - Argument of type 'Buffer' is not assignable to parameter of type 'BodyInit | null | undefined'.\n new Response(cacheEntry.value.body, {\n headers,\n status: cacheEntry.value.status || 200\n }));\n return null;\n };\n // TODO: activeSpan code path is for when wrapped by\n // next-server can be removed when this is no longer used\n if (isWrappedByNextServer && activeSpan) {\n await handleResponse(activeSpan);\n } else {\n parentSpan = tracer.getActiveScopeSpan();\n await tracer.withPropagatedContext(req.headers, ()=>tracer.trace(BaseServerSpan.handleRequest, {\n spanName: `${method} ${srcPage}`,\n kind: SpanKind.SERVER,\n attributes: {\n 'http.method': method,\n 'http.target': req.url\n }\n }, handleResponse), undefined, !isWrappedByNextServer);\n }\n } catch (err) {\n if (!(err instanceof NoFallbackError)) {\n const silenceLog = false;\n await routeModule.onRequestError(req, err, {\n routerKind: 'App Router',\n routePath: normalizedSrcPage,\n routeType: 'route',\n revalidateReason: getRevalidateReason({\n isStaticGeneration,\n isOnDemandRevalidate\n })\n }, silenceLog, routerServerContext);\n }\n // rethrow so that we can handle serving error page\n // If this is during static generation, throw the error again.\n if (isIsr) throw err;\n // Otherwise, send a 500 response.\n await sendResponse(nodeNextReq, nodeNextRes, new Response(null, {\n status: 500\n }));\n return null;\n }\n}\n\n//# sourceMappingURL=app-route.js.map\n","import { MetadataRoute } from \"next\";\nimport { blogPosts, SITE_URL } from \"@/data/blog\";\n\nexport default function sitemap(): MetadataRoute.Sitemap {\n const staticRoutes = [\n \"\",\n \"/about\",\n \"/contact\",\n \"/blog\",\n \"/air-freight\",\n \"/first-mile-delivery\",\n \"/mid-mile-delivery\",\n \"/last-mile-delivery\",\n \"/ev-logistics\",\n \"/strategy-optimization\",\n \"/how-it-works\",\n ].map((route) => ({\n url: `${SITE_URL}${route}`,\n lastModified: new Date().toISOString().split(\"T\")[0],\n changeFrequency: \"weekly\" as const,\n priority: route === \"\" ? 1 : 0.8,\n }));\n\n const postRoutes = blogPosts.map((post) => ({\n url: `${SITE_URL}/blog/${post.slug}`,\n lastModified: post.date,\n changeFrequency: \"monthly\" as const,\n priority: 0.6,\n }));\n\n return [...staticRoutes, ...postRoutes];\n}\n","/**\n * Central blog data module: single source of truth for the listing page,\n * the /blog/[slug] route, the sidebar, related posts and prev/next nav.\n *\n * The site is a static export (next.config.ts → output: \"export\"), so all of\n * this is plain data resolved at build time. No CMS, no runtime fetching.\n */\n\nexport const SITE_URL = \"https://doormile.com\";\n\nexport type ContentBlock =\n | { type: \"paragraph\"; text: string }\n | { type: \"heading\"; level: 2 | 3; text: string }\n | { type: \"list\"; ordered?: boolean; items: string[] }\n | { type: \"quote\"; text: string; cite?: string }\n | { type: \"image\"; src: string; alt: string; caption?: string };\n\nexport interface BlogPost {\n slug: string;\n title: string;\n excerpt: string;\n category: string;\n image: string;\n date: string; // ISO (YYYY-MM-DD)\n author: string;\n intro: string;\n content: ContentBlock[];\n}\n\nconst AUTHOR = \"Doormile Team\";\n\n/**\n * Shared rich-content template for non-flagship posts. Seeded with the post's\n * own title / category so every element type (h2, h3, lists, quote, image)\n * renders and every route is complete. Flagship posts below override `content`\n * with fully authored copy.\n */\nfunction templateContent(post: {\n title: string;\n category: string;\n image: string;\n}): ContentBlock[] {\n return [\n {\n type: \"paragraph\",\n text: `In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. ${post.title} looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.`,\n },\n {\n type: \"heading\",\n level: 2,\n text: \"Why this matters for fleet teams\",\n },\n {\n type: \"paragraph\",\n text: \"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.\",\n },\n {\n type: \"list\",\n items: [\n \"Fewer vehicles needed for the same number of drops\",\n \"Lower cost per drop through better stop sequencing\",\n \"ETAs that match traffic, distance, and delivery windows\",\n \"Less fuel or charge used per completed order\",\n ],\n },\n {\n type: \"heading\",\n level: 3,\n text: \"From orders to dispatch\",\n },\n {\n type: \"paragraph\",\n text: `A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.`,\n },\n {\n type: \"image\",\n src: post.image,\n alt: post.title,\n caption: `${post.category}: route planning decisions made before dispatch.`,\n },\n {\n type: \"quote\",\n text: \"A route should be checked before the rider leaves, not explained after the customer calls.\",\n cite: \"Doormile Operations\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"Putting it into practice\",\n },\n {\n type: \"paragraph\",\n text: \"The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.\",\n },\n {\n type: \"list\",\n ordered: true,\n items: [\n \"Benchmark today's distance, fleet size, and on-time rate.\",\n \"Include vehicle capacity, delivery windows, rider shifts, and battery charge.\",\n \"Check routes against traffic and customer commitments before dispatch.\",\n \"Compare the next dispatch cycle against the old plan.\",\n ],\n },\n {\n type: \"paragraph\",\n text: \"Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.\",\n },\n ];\n}\n\ninterface SeedPost {\n slug: string;\n title: string;\n excerpt: string;\n category: string;\n image: string;\n date: string;\n intro: string;\n content?: ContentBlock[]; // present only for flagship posts\n}\n\nconst seeds: SeedPost[] = [\n // ── Flagship 1 ───────────────────────────────────────────────────────────\n {\n slug: \"how-ai-is-transforming-last-mile-ev-delivery\",\n title: \"How Better Planning Improves Last-Mile EV Delivery\",\n excerpt:\n \"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\n category: \"Technology\",\n image: \"/images/blog-post-pic-17.webp\",\n date: \"2025-10-02\",\n intro:\n \"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.\",\n content: [\n {\n type: \"paragraph\",\n text: \"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The shift from fixed rules to daily planning\",\n },\n {\n type: \"paragraph\",\n text: \"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual.\",\n },\n {\n type: \"list\",\n items: [\n \"Order volumes by area, time slot, and customer type\",\n \"Travel times based on the city's actual traffic patterns\",\n \"Battery use by vehicle type, rider load, and route length\",\n \"Feedback from completed deliveries, failed attempts, and late arrivals\",\n ],\n },\n { type: \"heading\", level: 3, text: \"Adjusting during the day\" },\n {\n type: \"paragraph\",\n text: \"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand.\",\n },\n {\n type: \"paragraph\",\n text: \"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance.\",\n },\n {\n type: \"image\",\n src: \"/images/ev-paradox.webp\",\n alt: \"Electric delivery vehicle routing visualisation\",\n caption:\n \"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub.\",\n },\n {\n type: \"quote\",\n text: \"With EVs, a route is only useful if the vehicle can finish it and still return safely.\",\n cite: \"Doormile Operations\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"What this means for operators\",\n },\n {\n type: \"paragraph\",\n text: \"For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window.\",\n },\n {\n type: \"list\",\n ordered: true,\n items: [\n \"Record delivery times, failed attempts, traffic delays, and charging cycles.\",\n \"Build travel-time estimates from the areas your riders actually serve.\",\n \"Check every route against battery capacity before dispatch.\",\n \"Replan when traffic, orders, or vehicle availability changes.\",\n ],\n },\n {\n type: \"paragraph\",\n text: \"The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time.\",\n },\n ],\n },\n\n // ── Flagship 2 ───────────────────────────────────────────────────────────\n {\n slug: \"42-less-distance-insights-from-our-hyderabad-hub\",\n title: \"42% Less Distance: Insights from Our Hyderabad Hub\",\n excerpt:\n \"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\n category: \"Case Study\",\n image: \"/images/blog-post-pic-15.webp\",\n date: \"2025-09-18\",\n intro:\n \"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.\",\n content: [\n {\n type: \"paragraph\",\n text: \"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The baseline\",\n },\n {\n type: \"paragraph\",\n text: \"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed.\",\n },\n {\n type: \"paragraph\",\n text: \"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment.\",\n },\n {\n type: \"list\",\n items: [\n \"Zone-based allocation that missed nearby cross-zone drops\",\n \"Manual stop sequencing during busy dispatch windows\",\n \"ETAs checked after routing instead of before dispatch\",\n \"Traffic and delay handling that depended on phone calls from riders\",\n ],\n },\n {\n type: \"heading\",\n level: 3,\n text: \"What changed\",\n },\n {\n type: \"paragraph\",\n text: \"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together.\",\n },\n {\n type: \"paragraph\",\n text: \"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance.\",\n },\n {\n type: \"image\",\n src: \"/images/last-mile-approach.webp\",\n alt: \"Hyderabad delivery hub routing analysis\",\n caption:\n \"Planning the day's deliveries together removed repeated cross-town travel.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The results\",\n },\n {\n type: \"list\",\n items: [\n \"42% reduction in total distance travelled across the hub\",\n \"37% fewer vehicles required for the same delivery volume\",\n \"No SLA misses during the measured deployment window\",\n \"Lower fuel use and fewer unnecessary kilometres per parcel\",\n ],\n },\n {\n type: \"quote\",\n text: \"The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.\",\n cite: \"Hyderabad Hub Operations\",\n },\n {\n type: \"heading\",\n level: 3,\n text: \"Why this applies beyond one hub\",\n },\n {\n type: \"paragraph\",\n text: \"The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes.\",\n },\n {\n type: \"paragraph\",\n text: \"A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy.\",\n },\n ],\n },\n\n // ── Flagship 3 ───────────────────────────────────────────────────────────\n {\n slug: \"miletruth-ai-10-stages-to-smarter-dispatch\",\n title: \"MileTruth™: 10 Stages to Smarter Dispatch\",\n excerpt:\n \"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\n category: \"MileTruth\",\n image: \"/images/blog-post-pic-31.webp\",\n date: \"2025-09-05\",\n intro:\n \"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.\",\n content: [\n {\n type: \"paragraph\",\n text: \"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The ten stages\",\n },\n {\n type: \"list\",\n ordered: true,\n items: [\n \"Order intake: new orders, rider availability, and vehicle status are collected.\",\n \"Address check: delivery points, time windows, and service notes are verified.\",\n \"Stop planning: each stop gets an expected service time and delivery priority.\",\n \"Travel-time check: routes are compared against time-of-day traffic.\",\n \"Constraint check: capacity, shift time, customer windows, and range are applied.\",\n \"Route options: several possible plans are built for the same order set.\",\n \"Plan selection: the lowest-cost workable route plan is selected.\",\n \"Battery check: EV routes are checked against real charge capacity.\",\n \"ETA check: promised delivery times are verified before dispatch.\",\n \"Dispatch output: the final route is sent to the operations team.\",\n ],\n },\n {\n type: \"heading\",\n level: 3,\n text: \"Why staging matters\",\n },\n {\n type: \"paragraph\",\n text: \"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue.\",\n },\n {\n type: \"image\",\n src: \"/images/blog-post-pic-31.webp\",\n alt: \"MileTruth routing pipeline diagram\",\n caption:\n \"A staged dispatch process catches address, range, and ETA issues before riders leave.\",\n },\n {\n type: \"quote\",\n text: \"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.\",\n cite: \"MileTruth Engineering\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"Comparing route options\",\n },\n {\n type: \"paragraph\",\n text: \"The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger.\",\n },\n {\n type: \"list\",\n items: [\n \"Several route plans checked before dispatch\",\n \"Distance, time windows, capacity, and range considered together\",\n \"Range and ETA checked before the route reaches the rider\",\n \"Fast output that still leaves room for dispatcher review\",\n ],\n },\n {\n type: \"paragraph\",\n text: \"The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub.\",\n },\n ],\n },\n\n // ── Template-backed posts ────────────────────────────────────────────────\n {\n slug: \"the-ev-paradox-solving-range-anxiety-for-urban-fleets\",\n title: \"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\n excerpt:\n \"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\n category: \"EV Fleet\",\n image: \"/images/ev-paradox.webp\",\n date: \"2025-08-21\",\n intro:\n \"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan.\",\n },\n {\n slug: \"why-mathematical-precision-beats-heuristics-in-routing\",\n title: \"Why Mathematical Precision Beats Heuristics in Routing\",\n excerpt:\n \"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\n category: \"Technology\",\n image: \"/images/blog-post-pic-14.webp\",\n date: \"2025-08-07\",\n intro:\n \"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch.\",\n },\n {\n slug: \"fleet-reduction-without-compromising-delivery-volume\",\n title: \"Fleet Reduction Without Compromising Delivery Volume\",\n excerpt:\n \"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\n category: \"Fleet Management\",\n image: \"/images/blog-post-pic-8.webp\",\n date: \"2025-07-24\",\n intro:\n \"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom.\",\n },\n {\n slug: \"building-a-greener-city-the-future-of-urban-logistics\",\n title: \"Building a Greener City: The Future of Urban Logistics\",\n excerpt:\n \"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\n category: \"Sustainability\",\n image: \"/images/blog-post-pic-6.webp\",\n date: \"2025-07-10\",\n intro:\n \"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day.\",\n },\n {\n slug: \"how-doormile-maintains-99-9-sla-compliance-at-scale\",\n title: \"How Doormile Maintains 99.9% SLA Compliance at Scale\",\n excerpt:\n \"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\n category: \"Operations\",\n image: \"/images/last-mile-approach.webp\",\n date: \"2025-06-26\",\n intro:\n \"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk.\",\n },\n {\n slug: \"battery-simulation-the-secret-to-ev-route-pre-validation\",\n title: \"Battery Simulation: The Secret to EV Route Pre-Validation\",\n excerpt:\n \"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\n category: \"EV Fleet\",\n image: \"/images/blog-post-pic-3.webp\",\n date: \"2025-06-12\",\n intro:\n \"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch.\",\n },\n];\n\nexport const blogPosts: BlogPost[] = seeds.map((s) => ({\n slug: s.slug,\n title: s.title,\n excerpt: s.excerpt,\n category: s.category,\n image: s.image,\n date: s.date,\n author: AUTHOR,\n intro: s.intro,\n content:\n s.content ??\n templateContent({ title: s.title, category: s.category, image: s.image }),\n}));\n\n// ── Helpers ────────────────────────────────────────────────────────────────\n\nexport function getPostBySlug(slug: string): BlogPost | undefined {\n return blogPosts.find((p) => p.slug === slug);\n}\n\nexport function getAllSlugs(): string[] {\n return blogPosts.map((p) => p.slug);\n}\n\n/** Same-category posts first (most recent), then fill by recency. Excludes self. */\nexport function getRelatedPosts(slug: string, n = 3): BlogPost[] {\n const current = getPostBySlug(slug);\n if (!current) return blogPosts.slice(0, n);\n const others = blogPosts.filter((p) => p.slug !== slug);\n const byDateDesc = (a: BlogPost, b: BlogPost) => b.date.localeCompare(a.date);\n const sameCat = others\n .filter((p) => p.category === current.category)\n .sort(byDateDesc);\n const rest = others\n .filter((p) => p.category !== current.category)\n .sort(byDateDesc);\n return [...sameCat, ...rest].slice(0, n);\n}\n\n/** Previous / next by array order (publication sequence). */\nexport function getAdjacentPosts(slug: string): {\n prev: BlogPost | null;\n next: BlogPost | null;\n} {\n const i = blogPosts.findIndex((p) => p.slug === slug);\n if (i === -1) return { prev: null, next: null };\n return {\n prev: i > 0 ? blogPosts[i - 1] : null,\n next: i < blogPosts.length - 1 ? blogPosts[i + 1] : null,\n };\n}\n\nexport function getRecentPosts(n = 4): BlogPost[] {\n return [...blogPosts].sort((a, b) => b.date.localeCompare(a.date)).slice(0, n);\n}\n\nexport function getCategories(): { name: string; count: number }[] {\n const counts = new Map();\n for (const p of blogPosts) {\n counts.set(p.category, (counts.get(p.category) ?? 0) + 1);\n }\n return Array.from(counts, ([name, count]) => ({ name, count })).sort((a, b) =>\n a.name.localeCompare(b.name)\n );\n}\n\nexport function formatDate(iso: string): string {\n // Parse as UTC to keep static output deterministic across build environments.\n const d = new Date(`${iso}T00:00:00Z`);\n return d.toLocaleDateString(\"en-US\", {\n year: \"numeric\",\n month: \"short\",\n day: \"numeric\",\n timeZone: \"UTC\",\n });\n}\n\nexport function estimateReadingTime(post: BlogPost): number {\n const wordsFromBlocks = post.content.reduce((sum, b) => {\n if (b.type === \"paragraph\" || b.type === \"quote\") {\n return sum + b.text.trim().split(/\\s+/).length;\n }\n if (b.type === \"heading\") return sum + b.text.trim().split(/\\s+/).length;\n if (b.type === \"list\") {\n return sum + b.items.join(\" \").trim().split(/\\s+/).length;\n }\n return sum;\n }, 0);\n const total = wordsFromBlocks + post.intro.trim().split(/\\s+/).length;\n return Math.max(1, Math.round(total / 200));\n}\n"],"names":["getOrigin","resolveArray","resolveAsArrayOrUndefined","value","Array","isArray","undefined","url","origin","URL","resolveManifest","resolveRobots","resolveRouteData","resolveSitemap","data","content","rules","rule","userAgent","agent","allow","item","disallow","crawlDelay","host","sitemap","forEach","hasAlternates","some","Object","keys","alternates","length","hasImages","Boolean","images","hasVideos","videos","languages","language","image","video","videoFields","title","thumbnail_loc","description","content_loc","player_loc","duration","view_count","tag","rating","expiration_date","publication_date","family_friendly","requires_subscription","live","restriction","relationship","platform","uploader","info","filter","join","lastModified","serializedDate","Date","toISOString","changeFrequency","priority","JSON","stringify","fileType","SITE_URL","AUTHOR","text","templateContent","post","type","level","items","src","alt","caption","category","cite","ordered","seeds","slug","excerpt","date","intro","blogPosts","map","s","author","getPostBySlug","find","p","getAllSlugs","getRelatedPosts","n","current","slice","others","byDateDesc","a","b","localeCompare","sameCat","sort","rest","getAdjacentPosts","i","findIndex","prev","next","getRecentPosts","getCategories","counts","Map","set","get","from","name","count","formatDate","iso","d","toLocaleDateString","year","month","day","timeZone","estimateReadingTime","wordsFromBlocks","reduce","sum","trim","split","total","Math","max","round"],"mappings":"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CE+D,KAAM,YACNH,KAAM,uNACR,EACA,CACEG,KAAM,UACNC,MAAO,EACPJ,KAAM,cACR,EACA,CACEG,KAAM,YACNH,KAAM,4LACR,EACA,CACEG,KAAM,YACNH,KAAM,mQACR,EACA,CACEG,KAAM,OACNE,MAAO,CACL,4DACA,sDACA,wDACA,sEACD,AACH,EACA,CACEF,KAAM,UACNC,MAAO,EACPJ,KAAM,cACR,EACA,CACEG,KAAM,YACNH,KAAM,uNACR,EACA,CACEG,KAAM,YACNH,KAAM,6OACR,EACA,CACEG,KAAM,QACNG,IAAK,kCACLC,IAAK,0CACLC,QACE,4EACJ,EACA,CACEL,KAAM,UACNC,MAAO,EACPJ,KAAM,aACR,EACA,CACEG,KAAM,OACNE,MAAO,CACL,2DACA,2DACA,sDACA,6DAEJ,AADG,EAEH,CACEF,KAAM,QACNH,KAAM,6IACNU,KAAM,0BACR,EACA,CACEP,KAAM,UACNC,MAAO,EACPJ,KAAM,iCACR,EACA,CACEG,KAAM,YACNH,KAAM,8MACR,EACA,CACEG,KAAM,YACNH,KAAM,yIACR,EACD,AACH,EAGA,CACEa,KAAM,6CACN7C,MAAO,4CACP8C,QACE,+GACFL,SAAU,YACV5C,MAAO,gCACPkD,KAAM,aACNC,MACE,0JACF5E,QAAS,CACP,CACE+D,KAAM,YACNH,KAAM,kLACR,EACA,CACEG,KAAM,UACNC,MAAO,EACPJ,KAAM,gBACR,EACA,CACEG,KAAM,OACNQ,SAAS,EACTN,MAAO,CACL,kFACA,gFACA,gFACA,sEACA,mFACA,0EACA,mEACA,qEACA,mEACA,mEACD,AACH,EACA,CACEF,KAAM,UACNC,MAAO,EACPJ,KAAM,qBACR,EACA,CACEG,KAAM,YACNH,KAAM,qLACR,EACA,CACEG,KAAM,QACNG,IAAK,gCACLC,IAAK,qCACLC,QACE,uFACJ,EACA,CACEL,KAAM,QACNH,KAAM,yGACNU,KAAM,uBACR,EACA,CACEP,KAAM,UACNC,MAAO,EACPJ,KAAM,yBACR,EACA,CACEG,KAAM,YACNH,KAAM,mPACR,EACA,CACEG,KAAM,OACNE,M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","ignoreList":[0,1,3]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__055c-aq._.js b/.next/server/chunks/ssr/[root-of-the-server]__055c-aq._.js new file mode 100644 index 0000000..5dd1ea6 --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__055c-aq._.js @@ -0,0 +1,15 @@ +module.exports=[37936,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"registerServerReference",{enumerable:!0,get:function(){return d.registerServerReference}});let d=a.r(11857)},27699,(a,b,c)=>{b.exports=a.x("events",()=>require("events"))},92509,(a,b,c)=>{b.exports=a.x("url",()=>require("url"))},63755,(a,b,c)=>{"use strict";let d=/^xn--/,e=/[^\0-\x7F]/,f=/[\x2E\u3002\uFF0E\uFF61]/g,g={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},h=Math.floor,i=String.fromCharCode;function j(a){throw RangeError(g[a])}function k(a,b){let c=a.split("@"),d="";return c.length>1&&(d=c[0]+"@",a=c[1]),d+(function(a,b){let c=[],d=a.length;for(;d--;)c[d]=b(a[d]);return c})((a=a.replace(f,".")).split("."),b).join(".")}function l(a){let b=[],c=0,d=a.length;for(;c=55296&&e<=56319&&c>1,a+=h(a/b);a>455;d+=36)a=h(a/35);return h(d+36*a/(a+38))},o=function(a){let b=[],c=a.length,d=0,e=128,f=72,g=a.lastIndexOf("-");g<0&&(g=0);for(let c=0;c=128&&j("not-basic"),b.push(a.charCodeAt(c));for(let k=g>0?g+1:0;k=c&&j("invalid-input");let g=(i=a.charCodeAt(k++))>=48&&i<58?26+(i-48):i>=65&&i<91?i-65:i>=97&&i<123?i-97:36;g>=36&&j("invalid-input"),g>h((0x7fffffff-d)/b)&&j("overflow"),d+=g*b;let l=e<=f?1:e>=f+26?26:e-f;if(gh(0x7fffffff/m)&&j("overflow"),b*=m}let l=b.length+1;f=n(d-g,l,0==g),h(d/l)>0x7fffffff-e&&j("overflow"),e+=h(d/l),d%=l,b.splice(d++,0,e)}return String.fromCodePoint(...b)},p=function(a){let b=[],c=(a=l(a)).length,d=128,e=0,f=72;for(let c of a)c<128&&b.push(i(c));let g=b.length,k=g;for(g&&b.push("-");k=d&&bh((0x7fffffff-e)/l)&&j("overflow"),e+=(c-d)*l,d=c,a))if(o0x7fffffff&&j("overflow"),o===d){let a=e;for(let c=36;;c+=36){let d=c<=f?1:c>=f+26?26:c-f;if(aString.fromCodePoint(...a)},decode:o,encode:p,toASCII:function(a){return k(a,function(a){return e.test(a)?"xn--"+p(a):a})},toUnicode:function(a){return k(a,function(a){return d.test(a)?o(a.slice(4).toLowerCase()):a})}}},52034,(a,b,c)=>{"use strict";let d=a.r(92509),e=a.r(63755),f="u">typeof URL&&URL||d.URL,g=/^([a-zA-Z][a-zA-Z0-9+.-]*:)(?!\/\/)(.+)$/;function h(a){try{return decodeURIComponent(a)}catch(b){return a}}b.exports.parse=(a,b)=>{let c,i,j;if(a=a||"",!f)return d.parse(a,b);let k=g.exec(a),l=k?k[1]+"//"+k[2]:a;try{c=new f(l)}catch(c){return d.parse(a,b)}let m=(j=c.hostname||"")?"["===j.charAt(0)&&"]"===j.charAt(j.length-1)?j.slice(1,-1):e.toASCII(h(j)):"",n=c.port||null,o=c.pathname||null,p=c.search||null,q=null;return(c.username||c.password)&&(q=h(c.username)+(c.password?":"+h(c.password):"")),b?(i=Object.create(null),c.searchParams.forEach((a,b)=>{Object.prototype.hasOwnProperty.call(i,b)?Array.isArray(i[b])?i[b].push(a):i[b]=[i[b],a]:i[b]=a})):i=p?p.slice(1):null,{protocol:c.protocol||null,host:c.host||null,hostname:m,port:n,pathname:o,search:p,path:(o||"")+(p||"")||null,href:c.href,auth:q,query:i}},b.exports.resolve=(a,b)=>{if(!f)return d.resolve(a,b);try{return new f(b,a).href}catch(c){return d.resolve(a,b)}}},22734,(a,b,c)=>{b.exports=a.x("fs",()=>require("fs"))},21517,(a,b,c)=>{b.exports=a.x("http",()=>require("http"))},24836,(a,b,c)=>{b.exports=a.x("https",()=>require("https"))},6461,(a,b,c)=>{b.exports=a.x("zlib",()=>require("zlib"))},88947,(a,b,c)=>{b.exports=a.x("stream",()=>require("stream"))},75569,(a,b,c)=>{"use strict";let d=a.r(52034);b.exports=class{constructor(a){this.options=a||{},this.cookies=[]}set(a,b){let c,e=d.parse(b||""),f=this.parse(a);return f.domain?(c=f.domain.replace(/^\./,""),(e.hostname.lengtha.name+"="+a.value).join("; ")}list(a){let b=[];for(let c=this.cookies.length-1;c>=0;c--){let d=this.cookies[c];if(this.isExpired(d)){this.cookies.splice(c,1);continue}this.match(d,a)&&b.unshift(d)}return b}parse(a){let b={};return(a||"").toString().split(";").forEach(a=>{let c,d=a.split("="),e=d.shift().trim().toLowerCase(),f=d.join("=").trim();if(e)switch(e){case"expires":"Invalid Date"!==(f=new Date(f)).toString()&&(b.expires=f);break;case"path":b.path=f;break;case"domain":(c=f.toLowerCase()).length&&"."!==c.charAt(0)&&(c="."+c),b.domain=c;break;case"max-age":b.expires=new Date(Date.now()+1e3*(Number(f)||0));break;case"secure":b.secure=!0;break;case"httponly":b.httponly=!0;break;default:b.name||(b.name=e,b.value=f)}}),b}match(a,b){let c=d.parse(b||"");return(c.hostname===a.domain||"."===a.domain.charAt(0)&&("."+c.hostname).substr(-a.domain.length)===a.domain)&&this.getPath(c.pathname).substr(0,a.path.length)===a.path&&(!a.secure||"https:"===c.protocol)}add(a){if(!a||!a.name)return!1;for(let b=0,c=this.cookies.length;b{b.exports={name:"nodemailer",version:"9.0.0",description:"Easy as cake e-mail sending from your Node.js applications",main:"lib/nodemailer.js",scripts:{test:"node --test --test-concurrency=1 $(find test \\( -name '*-test.js' -o -name '*.test.js' \\))","test:coverage":"c8 node --test --test-concurrency=1 $(find test \\( -name '*-test.js' -o -name '*.test.js' \\))",format:'prettier --write "**/*.{js,json,md}"',"format:check":'prettier --check "**/*.{js,json,md}"',lint:"eslint .","lint:fix":"eslint . --fix",update:"rm -rf node_modules/ package-lock.json && ncu -u && npm install","test:syntax":'docker run --rm -v "$PWD:/app:ro" -w /app node:6-alpine node test/syntax-compat.js'},repository:{type:"git",url:"https://github.com/nodemailer/nodemailer.git"},keywords:["Nodemailer"],author:"Andris Reinman",license:"MIT-0",bugs:{url:"https://github.com/nodemailer/nodemailer/issues"},homepage:"https://nodemailer.com/",devDependencies:{"@aws-sdk/client-sesv2":"3.1065.0",bunyan:"1.8.15",c8:"11.0.0",eslint:"10.4.1","eslint-config-prettier":"10.1.8",globals:"17.6.0",libbase64:"1.3.0",libmime:"5.3.8",libqp:"2.1.1",prettier:"3.8.4",proxy:"1.0.2","proxy-test-server":"1.0.0","smtp-server":"3.18.5"},engines:{node:">=6.0.0"}}},4446,(a,b,c)=>{b.exports=a.x("net",()=>require("net"))},334,(a,b,c)=>{"use strict";let d={ECONNECTION:"Connection closed unexpectedly",ETIMEDOUT:"Connection or operation timed out",ESOCKET:"Socket-level error",EDNS:"DNS resolution failed",ETLS:"TLS handshake or STARTTLS failed",EREQUIRETLS:"REQUIRETLS not supported by server (RFC 8689)",EPROTOCOL:"Invalid SMTP server response",EENVELOPE:"Invalid mail envelope (sender or recipients)",EMESSAGE:"Message delivery error",ESTREAM:"Stream processing error",EAUTH:"Authentication failed",ENOAUTH:"Authentication credentials not provided",EOAUTH2:"OAuth2 token generation or refresh error",EMAXLIMIT:"Pool resource limit reached (max messages per connection)",ESENDMAIL:"Sendmail command error",ESES:"AWS SES transport error",ECONFIG:"Invalid configuration",EPROXY:"Proxy connection error",EFILEACCESS:"File access rejected (disableFileAccess is set)",EURLACCESS:"URL access rejected (disableUrlAccess is set)",EFETCH:"HTTP fetch error"};for(let a of(b.exports={ERROR_CODES:d},Object.keys(d)))b.exports[a]=a},43461,(a,b,c)=>{"use strict";let d=a.r(21517),e=a.r(24836),f=a.r(52034),g=a.r(6461),{PassThrough:h}=a.r(88947),i=a.r(75569),j=a.r(32930),k=a.r(4446),l=a.r(334);b.exports=function(a,b){return function a(b,c){let m,n,o;(c=c||{}).fetchRes=c.fetchRes||new h,c.cookies=c.cookies||new i,c.redirects=c.redirects||0,c.maxRedirects=isNaN(c.maxRedirects)?5:c.maxRedirects,c.cookie&&([].concat(c.cookie||[]).forEach(a=>{c.cookies.set(a,b)}),c.cookie=!1);let p=c.fetchRes,q=f.parse(b),r=(c.method||"").toString().trim().toUpperCase()||"GET",s=!1,t="https:"===q.protocol?e:d,u={"accept-encoding":"gzip,deflate","user-agent":"nodemailer/"+j.version};if(Object.keys(c.headers||{}).forEach(a=>{u[a.toLowerCase().trim()]=c.headers[a]}),c.userAgent&&(u["user-agent"]=c.userAgent),q.auth&&(u.Authorization="Basic "+Buffer.from(q.auth).toString("base64")),(m=c.cookies.get(b))&&(u.cookie=m),c.body){if(!1!==c.contentType&&(u["Content-Type"]=c.contentType||"application/x-www-form-urlencoded"),"function"==typeof c.body.pipe)u["Transfer-Encoding"]="chunked",(n=c.body).on("error",a=>{s||(s=!0,a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a))});else{if(c.body instanceof Buffer)n=c.body;else if("object"==typeof c.body)try{n=Buffer.from(Object.keys(c.body).map(a=>{let b=c.body[a].toString().trim();return encodeURIComponent(a)+"="+encodeURIComponent(b)}).join("&"))}catch(a){if(s)return;s=!0,a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a);return}else n=Buffer.from(c.body.toString().trim());u["Content-Type"]=c.contentType||"application/x-www-form-urlencoded",u["Content-Length"]=n.length}r=(c.method||"").toString().trim().toUpperCase()||"POST"}let v={method:r,host:q.hostname,path:q.path,port:q.port?q.port:"https:"===q.protocol?443:80,headers:u,rejectUnauthorized:!0,agent:!1};c.tls&&Object.assign(v,c.tls),"https:"!==q.protocol||!q.hostname||q.hostname===v.host||k.isIP(q.hostname)||v.servername||(v.servername=q.hostname);try{o=t.request(v)}catch(a){return s=!0,setImmediate(()=>{a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a)}),p}return c.timeout&&o.setTimeout(c.timeout,()=>{if(s)return;s=!0,o.abort();let a=Error("Request Timeout");a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a)}),o.on("error",a=>{s||(s=!0,a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a))}),o.on("response",d=>{let e;if(!s){switch(d.headers["content-encoding"]){case"gzip":case"deflate":e=g.createUnzip()}if(d.headers["set-cookie"]&&[].concat(d.headers["set-cookie"]||[]).forEach(a=>{c.cookies.set(a,b)}),[301,302,303,307,308].includes(d.statusCode)&&d.headers.location){if(c.redirects++,c.redirects>c.maxRedirects){s=!0;let a=Error("Maximum redirect count exceeded");a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a),o.abort();return}c.method="GET",c.body=!1;let e=f.resolve(b,d.headers.location),g=f.parse(e),h=g.hostname!==q.hostname,i="https:"===q.protocol&&"http:"===g.protocol;if(c.headers&&(h||i)){let a=["authorization","cookie","proxy-authorization"];Object.keys(c.headers).forEach(b=>{a.includes(b.toLowerCase())&&delete c.headers[b]})}return a(e,c)}if(p.statusCode=d.statusCode,p.headers=d.headers,d.statusCode>=300&&!c.allowErrorResponse){s=!0;let a=Error("Invalid status code "+d.statusCode);a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a),o.abort();return}d.on("error",a=>{s||(s=!0,a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a),o.abort())}),e?(d.pipe(e).pipe(p),e.on("error",a=>{s||(s=!0,a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a),o.abort())})):d.pipe(p)}}),setImmediate(()=>{if(n)try{if("function"==typeof n.pipe)return n.pipe(o);o.write(n)}catch(a){s=!0,a.code=l.EFETCH,a.sourceUrl=b,p.emit("error",a);return}o.end()}),p}(a,b)},b.exports.Cookies=i},79594,(a,b,c)=>{b.exports=a.x("dns",()=>require("dns"))},46786,(a,b,c)=>{b.exports=a.x("os",()=>require("os"))},46414,(a,b,c)=>{"use strict";let d,e=a.r(52034),f=a.r(24361),g=a.r(22734),h=a.r(43461),i=a.r(334),j=a.r(79594),k=a.r(4446),l=a.r(46786),m=0;b.exports._lastCacheCleanup=()=>m,b.exports._resetCacheCleanup=()=>{m=0};try{d=l.networkInterfaces()}catch(a){}b.exports.networkInterfaces=d;let n=(a,c)=>{let d=b.exports.networkInterfaces;return!d||Object.keys(d).map(a=>d[a]).reduce((a,b)=>a.concat(b),[]).filter(a=>!a.internal||c).some(b=>b.family==="IPv"+a||b.family===a)},o=(a,b,c,d)=>{if(!n(a,(c=c||{}).allowInternalNetworkInterfaces))return d(null,[]);(j.Resolver?new j.Resolver(c):j)["resolve"+a](b,(a,b)=>{if(a){switch(a.code){case j.NODATA:case j.NOTFOUND:case j.NOTIMP:case j.SERVFAIL:case j.CONNREFUSED:case j.REFUSED:case"EAI_AGAIN":return d(null,[])}return d(a)}return d(null,Array.isArray(b)?b:[].concat(b||[]))})},p=b.exports.dnsCache=new Map,q=(a,b)=>{if(!a)return Object.assign({},b||{});let c=a.addresses||[],d=c.length>0?c[Math.floor(Math.random()*c.length)]:null;return Object.assign({servername:a.servername,host:d,_addresses:c},b||{})};function r(a,b){let c=!1,d=[],e=0;a.on("error",a=>{c||(c=!0,b(a))}),a.on("readable",()=>{let b;for(;null!==(b=a.read());)d.push(b),e+=b.length}),a.on("end",()=>{let a;if(!c){c=!0;try{a=Buffer.concat(d,e)}catch(a){return b(a)}b(null,a)}})}b.exports.resolveHostname=(a,b)=>{let c;if(!(a=a||{}).host&&a.servername&&(a.host=a.servername),!a.host||k.isIP(a.host))return b(null,q({addresses:[a.host],servername:a.servername||!1},{cached:!1}));if(p.has(a.host)){c=p.get(a.host);let d=Date.now();if(d-m>3e4){for(let[a,b]of(m=d,p.entries()))b.expires&&b.expires1e3){let a=Math.floor(100);Array.from(p.keys()).slice(0,a).forEach(a=>p.delete(a))}}if(!c.expires||c.expires>=d)return b(null,q(c.value,{cached:!0}))}let d=[],e=[],f=null,g=null;o(4,a.host,a,(h,i)=>{h?f=h:d=i||[],o(6,a.host,a,(h,i)=>{h?g=h:e=i||[];let k=d.concat(e);if(k.length){let c={addresses:k,servername:a.servername||a.host};return p.set(a.host,{value:c,expires:Date.now()+(a.dnsTtl||3e5)}),b(null,q(c,{cached:!1}))}if(f&&g&&c)return p.set(a.host,{value:c.value,expires:Date.now()+(a.dnsTtl||3e5)}),b(null,q(c.value,{cached:!0,error:f}));try{j.lookup(a.host,{all:!0},(d,e)=>{if(d)return c?(p.set(a.host,{value:c.value,expires:Date.now()+(a.dnsTtl||3e5)}),b(null,q(c.value,{cached:!0,error:d}))):b(d);let f=e?e.filter(a=>n(a.family)).map(a=>a.address):[];if(e&&e.length&&!f.length&&console.warn(`Failed to resolve IPv${e[0].family} addresses with current network`),!f.length&&c)return b(null,q(c.value,{cached:!0}));let g={addresses:f.length?f:[a.host],servername:a.servername||a.host};return p.set(a.host,{value:g,expires:Date.now()+(a.dnsTtl||3e5)}),b(null,q(g,{cached:!1}))})}catch(d){if(c)return p.set(a.host,{value:c.value,expires:Date.now()+(a.dnsTtl||3e5)}),b(null,q(c.value,{cached:!0,error:d}));return b(f||g||d)}})})},b.exports.parseConnectionUrl=a=>{a=a||"";let b={},c=e.parse(a,!0);switch(c.protocol){case"smtp:":b.secure=!1;break;case"smtps:":b.secure=!0;break;case"direct:":b.direct=!0}if(!isNaN(c.port)&&Number(c.port)&&(b.port=Number(c.port)),c.hostname&&(b.host=c.hostname),c.auth){let a=c.auth.split(":");b.auth={user:a.shift(),pass:a.join(":")}}return Object.keys(c.query||{}).forEach(a=>{let d=b,e=a,f=c.query[a];switch(!isNaN(f)&&(f=Number(f)),f){case"true":f=!0;break;case"false":f=!1}if(0===a.indexOf("tls."))e=a.substr(4),b.tls||(b.tls={}),d=b.tls;else if(a.indexOf(".")>=0)return;e in d||(d[e]=f)}),b},b.exports._logFunc=(a,b,c,d,e,...f)=>{let g=Object.assign({},c||{},d||{});delete g.level;let h=b;"function"!=typeof a[h]&&(h=["info","debug","log","trace","warn","error"].find(b=>"function"==typeof a[b])),h&&a[h](g,e,...f)},b.exports.getLogger=(a,c)=>{var d;let e,g,h,i,j={},k=["trace","debug","info","warn","error","fatal"];if(!(a=a||{}).logger)return k.forEach(a=>{j[a]=()=>!1}),j;let l=!0===a.logger?(e=(d=k).reduce((a,b)=>Math.max(a,b.length),0),g=new Map,d.forEach(a=>{let b=a.toUpperCase();b.length{let e="";b&&("server"===b.tnx?e="S: ":"client"===b.tnx&&(e="C: "),b.sid&&(e="["+b.sid+"] "+e),b.cid&&(e="[#"+b.cid+"] "+e)),(c=f.format(c,...d)).split(/\r?\n/).forEach(b=>{console.log("[%s] %s %s",new Date().toISOString().substr(0,19).replace(/T/," "),g.get(a),e+b)})},i={},d.forEach(a=>{i[a]=h.bind(null,a)}),i):a.logger;return k.forEach(a=>{j[a]=(d,e,...f)=>{b.exports._logFunc(l,a,c,d,e,...f)}}),j},b.exports.callbackPromise=(a,b)=>function(){let c=Array.from(arguments),d=c.shift();d?b(d):a(...c)},b.exports.parseDataURI=a=>{let b,c;if("string"!=typeof a||!a.startsWith("data:"))return null;let d=a.indexOf(",");if(-1===d)return null;let e=a.substring(d+1),f=a.substring(5,d).split(";");if(f.length>0){let a=f[f.length-1].toLowerCase().trim();["base64","utf8","utf-8"].includes(a)&&-1===a.indexOf("=")&&(b=a,f.pop())}let g=f.length>0?f.shift():"application/octet-stream",h={};for(let a=0;a0){let a=b.substring(0,c).trim(),d=b.substring(c+1).trim();a&&(h[a]=d)}}try{if("base64"===b)c=Buffer.from(e,"base64");else try{c=Buffer.from(decodeURIComponent(e))}catch(a){c=Buffer.from(e)}}catch(a){c=Buffer.alloc(0)}return{data:c,encoding:b||null,contentType:g||"application/octet-stream",params:h}},b.exports.resolveContent=(a,c,d,e)=>{let f;return e||"function"!=typeof d||(e=d,d=!1),d=d||{},e||(f=new Promise((a,c)=>{e=b.exports.callbackPromise(a,c)})),function(a,c,d,e){let f=a&&a[c]&&a[c].content||a[c],j=("object"==typeof a[c]&&a[c].encoding||"utf8").toString().toLowerCase().replace(/[-_\s]/g,"");if(!f)return e(null,f);if("object"==typeof f){if("function"==typeof f.pipe)return r(f,(b,d)=>{if(b)return e(b);a[c].content?a[c].content=d:a[c]=d,e(null,d)});else if(/^https?:\/\//i.test(f.path||f.href))return d.disableUrlAccess?setImmediate(()=>{let a=Error("Url access rejected for "+(f.path||f.href));a.code=i.EURLACCESS,e(a)}):r(h(f.path||f.href,{headers:f.httpHeaders,tls:f.tls}),e);else if(/^data:/i.test(f.path||f.href)){let a=b.exports.parseDataURI(f.path||f.href);return e(null,a&&a.data?a.data:Buffer.alloc(0))}else if(f.path)return d.disableFileAccess?setImmediate(()=>{let a=Error("File access rejected for "+f.path);a.code=i.EFILEACCESS,e(a)}):r(g.createReadStream(f.path),e)}"string"!=typeof a[c].content||["utf8","usascii","ascii"].includes(j)||(f=Buffer.from(a[c].content,j)),setImmediate(()=>e(null,f))}(a,c,d,e),f},b.exports.assign=function(){let a=Array.from(arguments),b=a.shift()||{};return a.forEach(a=>{Object.keys(a||{}).forEach(c=>{["tls","auth"].includes(c)&&a[c]&&"object"==typeof a[c]?b[c]=Object.assign(b[c]||{},a[c]):b[c]=a[c]})}),b},b.exports.encodeXText=a=>{if(!/[^\x21-\x2A\x2C-\x3C\x3E-\x7E]/.test(a))return a;let b=Buffer.from(a),c="";for(let a=0,d=b.length;a126||43===d||61===d?c+="+"+(d<16?"0":"")+d.toString(16).toUpperCase():c+=String.fromCharCode(d)}return c}},52412,(a,b,c)=>{"use strict";let d=a.r(14747),e="application/octet-stream",f=new Map([["application/acad","dwg"],["application/applixware","aw"],["application/arj","arj"],["application/atom+xml","xml"],["application/atomcat+xml","atomcat"],["application/atomsvc+xml","atomsvc"],["application/base64",["mm","mme"]],["application/binhex","hqx"],["application/binhex4","hqx"],["application/book",["book","boo"]],["application/ccxml+xml,","ccxml"],["application/cdf","cdf"],["application/cdmi-capability","cdmia"],["application/cdmi-container","cdmic"],["application/cdmi-domain","cdmid"],["application/cdmi-object","cdmio"],["application/cdmi-queue","cdmiq"],["application/clariscad","ccad"],["application/commonground","dp"],["application/cu-seeme","cu"],["application/davmount+xml","davmount"],["application/drafting","drw"],["application/dsptype","tsp"],["application/dssc+der","dssc"],["application/dssc+xml","xdssc"],["application/dxf","dxf"],["application/ecmascript",["js","es"]],["application/emma+xml","emma"],["application/envoy","evy"],["application/epub+zip","epub"],["application/excel",["xls","xl","xla","xlb","xlc","xld","xlk","xll","xlm","xlt","xlv","xlw"]],["application/exi","exi"],["application/font-tdpfr","pfr"],["application/fractals","fif"],["application/freeloader","frl"],["application/futuresplash","spl"],["application/geo+json","geojson"],["application/gnutar","tgz"],["application/groupwise","vew"],["application/hlp","hlp"],["application/hta","hta"],["application/hyperstudio","stk"],["application/i-deas","unv"],["application/iges",["iges","igs"]],["application/inf","inf"],["application/internet-property-stream","acx"],["application/ipfix","ipfix"],["application/java","class"],["application/java-archive","jar"],["application/java-byte-code","class"],["application/java-serialized-object","ser"],["application/java-vm","class"],["application/javascript","js"],["application/json","json"],["application/lha","lha"],["application/lzx","lzx"],["application/mac-binary","bin"],["application/mac-binhex","hqx"],["application/mac-binhex40","hqx"],["application/mac-compactpro","cpt"],["application/macbinary","bin"],["application/mads+xml","mads"],["application/marc","mrc"],["application/marcxml+xml","mrcx"],["application/mathematica","ma"],["application/mathml+xml","mathml"],["application/mbedlet","mbd"],["application/mbox","mbox"],["application/mcad","mcd"],["application/mediaservercontrol+xml","mscml"],["application/metalink4+xml","meta4"],["application/mets+xml","mets"],["application/mime","aps"],["application/mods+xml","mods"],["application/mp21","m21"],["application/mp4","mp4"],["application/mspowerpoint",["ppt","pot","pps","ppz"]],["application/msword",["doc","dot","w6w","wiz","word"]],["application/mswrite","wri"],["application/mxf","mxf"],["application/netmc","mcp"],["application/octet-stream",["*"]],["application/oda","oda"],["application/oebps-package+xml","opf"],["application/ogg","ogx"],["application/olescript","axs"],["application/onenote","onetoc"],["application/patch-ops-error+xml","xer"],["application/pdf","pdf"],["application/pgp-encrypted","asc"],["application/pgp-signature","pgp"],["application/pics-rules","prf"],["application/pkcs-12","p12"],["application/pkcs-crl","crl"],["application/pkcs10","p10"],["application/pkcs7-mime",["p7c","p7m"]],["application/pkcs7-signature","p7s"],["application/pkcs8","p8"],["application/pkix-attr-cert","ac"],["application/pkix-cert",["cer","crt"]],["application/pkix-crl","crl"],["application/pkix-pkipath","pkipath"],["application/pkixcmp","pki"],["application/plain","text"],["application/pls+xml","pls"],["application/postscript",["ps","ai","eps"]],["application/powerpoint","ppt"],["application/pro_eng",["part","prt"]],["application/prs.cww","cww"],["application/pskc+xml","pskcxml"],["application/rdf+xml","rdf"],["application/reginfo+xml","rif"],["application/relax-ng-compact-syntax","rnc"],["application/resource-lists+xml","rl"],["application/resource-lists-diff+xml","rld"],["application/ringing-tones","rng"],["application/rls-services+xml","rs"],["application/rsd+xml","rsd"],["application/rss+xml","xml"],["application/rtf",["rtf","rtx"]],["application/sbml+xml","sbml"],["application/scvp-cv-request","scq"],["application/scvp-cv-response","scs"],["application/scvp-vp-request","spq"],["application/scvp-vp-response","spp"],["application/sdp","sdp"],["application/sea","sea"],["application/set","set"],["application/set-payment-initiation","setpay"],["application/set-registration-initiation","setreg"],["application/shf+xml","shf"],["application/sla","stl"],["application/smil",["smi","smil"]],["application/smil+xml","smi"],["application/solids","sol"],["application/sounder","sdr"],["application/sparql-query","rq"],["application/sparql-results+xml","srx"],["application/srgs","gram"],["application/srgs+xml","grxml"],["application/sru+xml","sru"],["application/ssml+xml","ssml"],["application/step",["step","stp"]],["application/streamingmedia","ssm"],["application/tei+xml","tei"],["application/thraud+xml","tfi"],["application/timestamped-data","tsd"],["application/toolbook","tbk"],["application/vda","vda"],["application/vnd.3gpp.pic-bw-large","plb"],["application/vnd.3gpp.pic-bw-small","psb"],["application/vnd.3gpp.pic-bw-var","pvb"],["application/vnd.3gpp2.tcap","tcap"],["application/vnd.3m.post-it-notes","pwn"],["application/vnd.accpac.simply.aso","aso"],["application/vnd.accpac.simply.imp","imp"],["application/vnd.acucobol","acu"],["application/vnd.acucorp","atc"],["application/vnd.adobe.air-application-installer-package+zip","air"],["application/vnd.adobe.fxp","fxp"],["application/vnd.adobe.xdp+xml","xdp"],["application/vnd.adobe.xfdf","xfdf"],["application/vnd.ahead.space","ahead"],["application/vnd.airzip.filesecure.azf","azf"],["application/vnd.airzip.filesecure.azs","azs"],["application/vnd.amazon.ebook","azw"],["application/vnd.americandynamics.acc","acc"],["application/vnd.amiga.ami","ami"],["application/vnd.android.package-archive","apk"],["application/vnd.anser-web-certificate-issue-initiation","cii"],["application/vnd.anser-web-funds-transfer-initiation","fti"],["application/vnd.antix.game-component","atx"],["application/vnd.apple.installer+xml","mpkg"],["application/vnd.apple.mpegurl","m3u8"],["application/vnd.aristanetworks.swi","swi"],["application/vnd.audiograph","aep"],["application/vnd.blueice.multipass","mpm"],["application/vnd.bmi","bmi"],["application/vnd.businessobjects","rep"],["application/vnd.chemdraw+xml","cdxml"],["application/vnd.chipnuts.karaoke-mmd","mmd"],["application/vnd.cinderella","cdy"],["application/vnd.claymore","cla"],["application/vnd.cloanto.rp9","rp9"],["application/vnd.clonk.c4group","c4g"],["application/vnd.cluetrust.cartomobile-config","c11amc"],["application/vnd.cluetrust.cartomobile-config-pkg","c11amz"],["application/vnd.commonspace","csp"],["application/vnd.contact.cmsg","cdbcmsg"],["application/vnd.cosmocaller","cmc"],["application/vnd.crick.clicker","clkx"],["application/vnd.crick.clicker.keyboard","clkk"],["application/vnd.crick.clicker.palette","clkp"],["application/vnd.crick.clicker.template","clkt"],["application/vnd.crick.clicker.wordbank","clkw"],["application/vnd.criticaltools.wbs+xml","wbs"],["application/vnd.ctc-posml","pml"],["application/vnd.cups-ppd","ppd"],["application/vnd.curl.car","car"],["application/vnd.curl.pcurl","pcurl"],["application/vnd.data-vision.rdz","rdz"],["application/vnd.denovo.fcselayout-link","fe_launch"],["application/vnd.dna","dna"],["application/vnd.dolby.mlp","mlp"],["application/vnd.dpgraph","dpg"],["application/vnd.dreamfactory","dfac"],["application/vnd.dvb.ait","ait"],["application/vnd.dvb.service","svc"],["application/vnd.dynageo","geo"],["application/vnd.ecowin.chart","mag"],["application/vnd.enliven","nml"],["application/vnd.epson.esf","esf"],["application/vnd.epson.msf","msf"],["application/vnd.epson.quickanime","qam"],["application/vnd.epson.salt","slt"],["application/vnd.epson.ssf","ssf"],["application/vnd.eszigno3+xml","es3"],["application/vnd.ezpix-album","ez2"],["application/vnd.ezpix-package","ez3"],["application/vnd.fdf","fdf"],["application/vnd.fdsn.seed","seed"],["application/vnd.flographit","gph"],["application/vnd.fluxtime.clip","ftc"],["application/vnd.framemaker","fm"],["application/vnd.frogans.fnc","fnc"],["application/vnd.frogans.ltf","ltf"],["application/vnd.fsc.weblaunch","fsc"],["application/vnd.fujitsu.oasys","oas"],["application/vnd.fujitsu.oasys2","oa2"],["application/vnd.fujitsu.oasys3","oa3"],["application/vnd.fujitsu.oasysgp","fg5"],["application/vnd.fujitsu.oasysprs","bh2"],["application/vnd.fujixerox.ddd","ddd"],["application/vnd.fujixerox.docuworks","xdw"],["application/vnd.fujixerox.docuworks.binder","xbd"],["application/vnd.fuzzysheet","fzs"],["application/vnd.genomatix.tuxedo","txd"],["application/vnd.geogebra.file","ggb"],["application/vnd.geogebra.tool","ggt"],["application/vnd.geometry-explorer","gex"],["application/vnd.geonext","gxt"],["application/vnd.geoplan","g2w"],["application/vnd.geospace","g3w"],["application/vnd.gmx","gmx"],["application/vnd.google-earth.kml+xml","kml"],["application/vnd.google-earth.kmz","kmz"],["application/vnd.grafeq","gqf"],["application/vnd.groove-account","gac"],["application/vnd.groove-help","ghf"],["application/vnd.groove-identity-message","gim"],["application/vnd.groove-injector","grv"],["application/vnd.groove-tool-message","gtm"],["application/vnd.groove-tool-template","tpl"],["application/vnd.groove-vcard","vcg"],["application/vnd.hal+xml","hal"],["application/vnd.handheld-entertainment+xml","zmm"],["application/vnd.hbci","hbci"],["application/vnd.hhe.lesson-player","les"],["application/vnd.hp-hpgl",["hgl","hpg","hpgl"]],["application/vnd.hp-hpid","hpid"],["application/vnd.hp-hps","hps"],["application/vnd.hp-jlyt","jlt"],["application/vnd.hp-pcl","pcl"],["application/vnd.hp-pclxl","pclxl"],["application/vnd.hydrostatix.sof-data","sfd-hdstx"],["application/vnd.hzn-3d-crossword","x3d"],["application/vnd.ibm.minipay","mpy"],["application/vnd.ibm.modcap","afp"],["application/vnd.ibm.rights-management","irm"],["application/vnd.ibm.secure-container","sc"],["application/vnd.iccprofile","icc"],["application/vnd.igloader","igl"],["application/vnd.immervision-ivp","ivp"],["application/vnd.immervision-ivu","ivu"],["application/vnd.insors.igm","igm"],["application/vnd.intercon.formnet","xpw"],["application/vnd.intergeo","i2g"],["application/vnd.intu.qbo","qbo"],["application/vnd.intu.qfx","qfx"],["application/vnd.ipunplugged.rcprofile","rcprofile"],["application/vnd.irepository.package+xml","irp"],["application/vnd.is-xpr","xpr"],["application/vnd.isac.fcs","fcs"],["application/vnd.jam","jam"],["application/vnd.jcp.javame.midlet-rms","rms"],["application/vnd.jisp","jisp"],["application/vnd.joost.joda-archive","joda"],["application/vnd.kahootz","ktz"],["application/vnd.kde.karbon","karbon"],["application/vnd.kde.kchart","chrt"],["application/vnd.kde.kformula","kfo"],["application/vnd.kde.kivio","flw"],["application/vnd.kde.kontour","kon"],["application/vnd.kde.kpresenter","kpr"],["application/vnd.kde.kspread","ksp"],["application/vnd.kde.kword","kwd"],["application/vnd.kenameaapp","htke"],["application/vnd.kidspiration","kia"],["application/vnd.kinar","kne"],["application/vnd.koan","skp"],["application/vnd.kodak-descriptor","sse"],["application/vnd.las.las+xml","lasxml"],["application/vnd.llamagraphics.life-balance.desktop","lbd"],["application/vnd.llamagraphics.life-balance.exchange+xml","lbe"],["application/vnd.lotus-1-2-3","123"],["application/vnd.lotus-approach","apr"],["application/vnd.lotus-freelance","pre"],["application/vnd.lotus-notes","nsf"],["application/vnd.lotus-organizer","org"],["application/vnd.lotus-screencam","scm"],["application/vnd.lotus-wordpro","lwp"],["application/vnd.macports.portpkg","portpkg"],["application/vnd.mcd","mcd"],["application/vnd.medcalcdata","mc1"],["application/vnd.mediastation.cdkey","cdkey"],["application/vnd.mfer","mwf"],["application/vnd.mfmp","mfm"],["application/vnd.micrografx.flo","flo"],["application/vnd.micrografx.igx","igx"],["application/vnd.mif","mif"],["application/vnd.mobius.daf","daf"],["application/vnd.mobius.dis","dis"],["application/vnd.mobius.mbk","mbk"],["application/vnd.mobius.mqy","mqy"],["application/vnd.mobius.msl","msl"],["application/vnd.mobius.plc","plc"],["application/vnd.mobius.txf","txf"],["application/vnd.mophun.application","mpn"],["application/vnd.mophun.certificate","mpc"],["application/vnd.mozilla.xul+xml","xul"],["application/vnd.ms-artgalry","cil"],["application/vnd.ms-cab-compressed","cab"],["application/vnd.ms-excel",["xls","xla","xlc","xlm","xlt","xlw","xlb","xll"]],["application/vnd.ms-excel.addin.macroenabled.12","xlam"],["application/vnd.ms-excel.sheet.binary.macroenabled.12","xlsb"],["application/vnd.ms-excel.sheet.macroenabled.12","xlsm"],["application/vnd.ms-excel.template.macroenabled.12","xltm"],["application/vnd.ms-fontobject","eot"],["application/vnd.ms-htmlhelp","chm"],["application/vnd.ms-ims","ims"],["application/vnd.ms-lrm","lrm"],["application/vnd.ms-officetheme","thmx"],["application/vnd.ms-outlook","msg"],["application/vnd.ms-pki.certstore","sst"],["application/vnd.ms-pki.pko","pko"],["application/vnd.ms-pki.seccat","cat"],["application/vnd.ms-pki.stl","stl"],["application/vnd.ms-pkicertstore","sst"],["application/vnd.ms-pkiseccat","cat"],["application/vnd.ms-pkistl","stl"],["application/vnd.ms-powerpoint",["ppt","pot","pps","ppa","pwz"]],["application/vnd.ms-powerpoint.addin.macroenabled.12","ppam"],["application/vnd.ms-powerpoint.presentation.macroenabled.12","pptm"],["application/vnd.ms-powerpoint.slide.macroenabled.12","sldm"],["application/vnd.ms-powerpoint.slideshow.macroenabled.12","ppsm"],["application/vnd.ms-powerpoint.template.macroenabled.12","potm"],["application/vnd.ms-project","mpp"],["application/vnd.ms-word.document.macroenabled.12","docm"],["application/vnd.ms-word.template.macroenabled.12","dotm"],["application/vnd.ms-works",["wks","wcm","wdb","wps"]],["application/vnd.ms-wpl","wpl"],["application/vnd.ms-xpsdocument","xps"],["application/vnd.mseq","mseq"],["application/vnd.musician","mus"],["application/vnd.muvee.style","msty"],["application/vnd.neurolanguage.nlu","nlu"],["application/vnd.noblenet-directory","nnd"],["application/vnd.noblenet-sealer","nns"],["application/vnd.noblenet-web","nnw"],["application/vnd.nokia.configuration-message","ncm"],["application/vnd.nokia.n-gage.data","ngdat"],["application/vnd.nokia.n-gage.symbian.install","n-gage"],["application/vnd.nokia.radio-preset","rpst"],["application/vnd.nokia.radio-presets","rpss"],["application/vnd.nokia.ringing-tone","rng"],["application/vnd.novadigm.edm","edm"],["application/vnd.novadigm.edx","edx"],["application/vnd.novadigm.ext","ext"],["application/vnd.oasis.opendocument.chart","odc"],["application/vnd.oasis.opendocument.chart-template","otc"],["application/vnd.oasis.opendocument.database","odb"],["application/vnd.oasis.opendocument.formula","odf"],["application/vnd.oasis.opendocument.formula-template","odft"],["application/vnd.oasis.opendocument.graphics","odg"],["application/vnd.oasis.opendocument.graphics-template","otg"],["application/vnd.oasis.opendocument.image","odi"],["application/vnd.oasis.opendocument.image-template","oti"],["application/vnd.oasis.opendocument.presentation","odp"],["application/vnd.oasis.opendocument.presentation-template","otp"],["application/vnd.oasis.opendocument.spreadsheet","ods"],["application/vnd.oasis.opendocument.spreadsheet-template","ots"],["application/vnd.oasis.opendocument.text","odt"],["application/vnd.oasis.opendocument.text-master","odm"],["application/vnd.oasis.opendocument.text-template","ott"],["application/vnd.oasis.opendocument.text-web","oth"],["application/vnd.olpc-sugar","xo"],["application/vnd.oma.dd2+xml","dd2"],["application/vnd.openofficeorg.extension","oxt"],["application/vnd.openxmlformats-officedocument.presentationml.presentation","pptx"],["application/vnd.openxmlformats-officedocument.presentationml.slide","sldx"],["application/vnd.openxmlformats-officedocument.presentationml.slideshow","ppsx"],["application/vnd.openxmlformats-officedocument.presentationml.template","potx"],["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","xlsx"],["application/vnd.openxmlformats-officedocument.spreadsheetml.template","xltx"],["application/vnd.openxmlformats-officedocument.wordprocessingml.document","docx"],["application/vnd.openxmlformats-officedocument.wordprocessingml.template","dotx"],["application/vnd.osgeo.mapguide.package","mgp"],["application/vnd.osgi.dp","dp"],["application/vnd.palm","pdb"],["application/vnd.pawaafile","paw"],["application/vnd.pg.format","str"],["application/vnd.pg.osasli","ei6"],["application/vnd.picsel","efif"],["application/vnd.pmi.widget","wg"],["application/vnd.pocketlearn","plf"],["application/vnd.powerbuilder6","pbd"],["application/vnd.previewsystems.box","box"],["application/vnd.proteus.magazine","mgz"],["application/vnd.publishare-delta-tree","qps"],["application/vnd.pvi.ptid1","ptid"],["application/vnd.quark.quarkxpress","qxd"],["application/vnd.realvnc.bed","bed"],["application/vnd.recordare.musicxml","mxl"],["application/vnd.recordare.musicxml+xml","musicxml"],["application/vnd.rig.cryptonote","cryptonote"],["application/vnd.rim.cod","cod"],["application/vnd.rn-realmedia","rm"],["application/vnd.rn-realplayer","rnx"],["application/vnd.route66.link66+xml","link66"],["application/vnd.sailingtracker.track","st"],["application/vnd.seemail","see"],["application/vnd.sema","sema"],["application/vnd.semd","semd"],["application/vnd.semf","semf"],["application/vnd.shana.informed.formdata","ifm"],["application/vnd.shana.informed.formtemplate","itp"],["application/vnd.shana.informed.interchange","iif"],["application/vnd.shana.informed.package","ipk"],["application/vnd.simtech-mindmapper","twd"],["application/vnd.smaf","mmf"],["application/vnd.smart.teacher","teacher"],["application/vnd.solent.sdkm+xml","sdkm"],["application/vnd.spotfire.dxp","dxp"],["application/vnd.spotfire.sfs","sfs"],["application/vnd.stardivision.calc","sdc"],["application/vnd.stardivision.draw","sda"],["application/vnd.stardivision.impress","sdd"],["application/vnd.stardivision.math","smf"],["application/vnd.stardivision.writer","sdw"],["application/vnd.stardivision.writer-global","sgl"],["application/vnd.stepmania.stepchart","sm"],["application/vnd.sun.xml.calc","sxc"],["application/vnd.sun.xml.calc.template","stc"],["application/vnd.sun.xml.draw","sxd"],["application/vnd.sun.xml.draw.template","std"],["application/vnd.sun.xml.impress","sxi"],["application/vnd.sun.xml.impress.template","sti"],["application/vnd.sun.xml.math","sxm"],["application/vnd.sun.xml.writer","sxw"],["application/vnd.sun.xml.writer.global","sxg"],["application/vnd.sun.xml.writer.template","stw"],["application/vnd.sus-calendar","sus"],["application/vnd.svd","svd"],["application/vnd.symbian.install","sis"],["application/vnd.syncml+xml","xsm"],["application/vnd.syncml.dm+wbxml","bdm"],["application/vnd.syncml.dm+xml","xdm"],["application/vnd.tao.intent-module-archive","tao"],["application/vnd.tmobile-livetv","tmo"],["application/vnd.trid.tpt","tpt"],["application/vnd.triscape.mxs","mxs"],["application/vnd.trueapp","tra"],["application/vnd.ufdl","ufd"],["application/vnd.uiq.theme","utz"],["application/vnd.umajin","umj"],["application/vnd.unity","unityweb"],["application/vnd.uoml+xml","uoml"],["application/vnd.vcx","vcx"],["application/vnd.visio","vsd"],["application/vnd.visionary","vis"],["application/vnd.vsf","vsf"],["application/vnd.wap.wbxml","wbxml"],["application/vnd.wap.wmlc","wmlc"],["application/vnd.wap.wmlscriptc","wmlsc"],["application/vnd.webturbo","wtb"],["application/vnd.wolfram.player","nbp"],["application/vnd.wordperfect","wpd"],["application/vnd.wqd","wqd"],["application/vnd.wt.stf","stf"],["application/vnd.xara",["web","xar"]],["application/vnd.xfdl","xfdl"],["application/vnd.yamaha.hv-dic","hvd"],["application/vnd.yamaha.hv-script","hvs"],["application/vnd.yamaha.hv-voice","hvp"],["application/vnd.yamaha.openscoreformat","osf"],["application/vnd.yamaha.openscoreformat.osfpvg+xml","osfpvg"],["application/vnd.yamaha.smaf-audio","saf"],["application/vnd.yamaha.smaf-phrase","spf"],["application/vnd.yellowriver-custom-menu","cmp"],["application/vnd.zul","zir"],["application/vnd.zzazz.deck+xml","zaz"],["application/vocaltec-media-desc","vmd"],["application/vocaltec-media-file","vmf"],["application/voicexml+xml","vxml"],["application/widget","wgt"],["application/winhlp","hlp"],["application/wordperfect",["wp","wp5","wp6","wpd"]],["application/wordperfect6.0",["w60","wp5"]],["application/wordperfect6.1","w61"],["application/wsdl+xml","wsdl"],["application/wspolicy+xml","wspolicy"],["application/x-123","wk1"],["application/x-7z-compressed","7z"],["application/x-abiword","abw"],["application/x-ace-compressed","ace"],["application/x-aim","aim"],["application/x-authorware-bin","aab"],["application/x-authorware-map","aam"],["application/x-authorware-seg","aas"],["application/x-bcpio","bcpio"],["application/x-binary","bin"],["application/x-binhex40","hqx"],["application/x-bittorrent","torrent"],["application/x-bsh",["bsh","sh","shar"]],["application/x-bytecode.elisp","elc"],["application/x-bytecode.python","pyc"],["application/x-bzip","bz"],["application/x-bzip2",["boz","bz2"]],["application/x-cdf","cdf"],["application/x-cdlink","vcd"],["application/x-chat",["cha","chat"]],["application/x-chess-pgn","pgn"],["application/x-cmu-raster","ras"],["application/x-cocoa","cco"],["application/x-compactpro","cpt"],["application/x-compress","z"],["application/x-compressed",["tgz","gz","z","zip"]],["application/x-conference","nsc"],["application/x-cpio","cpio"],["application/x-cpt","cpt"],["application/x-csh","csh"],["application/x-debian-package","deb"],["application/x-deepv","deepv"],["application/x-director",["dir","dcr","dxr"]],["application/x-doom","wad"],["application/x-dtbncx+xml","ncx"],["application/x-dtbook+xml","dtb"],["application/x-dtbresource+xml","res"],["application/x-dvi","dvi"],["application/x-elc","elc"],["application/x-envoy",["env","evy"]],["application/x-esrehber","es"],["application/x-excel",["xls","xla","xlb","xlc","xld","xlk","xll","xlm","xlt","xlv","xlw"]],["application/x-font-bdf","bdf"],["application/x-font-ghostscript","gsf"],["application/x-font-linux-psf","psf"],["application/x-font-otf","otf"],["application/x-font-pcf","pcf"],["application/x-font-snf","snf"],["application/x-font-ttf","ttf"],["application/x-font-type1","pfa"],["application/x-font-woff","woff"],["application/x-frame","mif"],["application/x-freelance","pre"],["application/x-futuresplash","spl"],["application/x-gnumeric","gnumeric"],["application/x-gsp","gsp"],["application/x-gss","gss"],["application/x-gtar","gtar"],["application/x-gzip",["gz","gzip"]],["application/x-hdf","hdf"],["application/x-helpfile",["help","hlp"]],["application/x-httpd-imap","imap"],["application/x-ima","ima"],["application/x-internet-signup",["ins","isp"]],["application/x-internett-signup","ins"],["application/x-inventor","iv"],["application/x-ip2","ip"],["application/x-iphone","iii"],["application/x-java-class","class"],["application/x-java-commerce","jcm"],["application/x-java-jnlp-file","jnlp"],["application/x-javascript","js"],["application/x-koan",["skd","skm","skp","skt"]],["application/x-ksh","ksh"],["application/x-latex",["latex","ltx"]],["application/x-lha","lha"],["application/x-lisp","lsp"],["application/x-livescreen","ivy"],["application/x-lotus","wq1"],["application/x-lotusscreencam","scm"],["application/x-lzh","lzh"],["application/x-lzx","lzx"],["application/x-mac-binhex40","hqx"],["application/x-macbinary","bin"],["application/x-magic-cap-package-1.0","mc$"],["application/x-mathcad","mcd"],["application/x-meme","mm"],["application/x-midi",["mid","midi"]],["application/x-mif","mif"],["application/x-mix-transfer","nix"],["application/x-mobipocket-ebook","prc"],["application/x-mplayer2","asx"],["application/x-ms-application","application"],["application/x-ms-wmd","wmd"],["application/x-ms-wmz","wmz"],["application/x-ms-xbap","xbap"],["application/x-msaccess","mdb"],["application/x-msbinder","obd"],["application/x-mscardfile","crd"],["application/x-msclip","clp"],["application/x-msdownload",["exe","dll"]],["application/x-msexcel",["xls","xla","xlw"]],["application/x-msmediaview",["mvb","m13","m14"]],["application/x-msmetafile","wmf"],["application/x-msmoney","mny"],["application/x-mspowerpoint","ppt"],["application/x-mspublisher","pub"],["application/x-msschedule","scd"],["application/x-msterminal","trm"],["application/x-mswrite","wri"],["application/x-navi-animation","ani"],["application/x-navidoc","nvd"],["application/x-navimap","map"],["application/x-navistyle","stl"],["application/x-netcdf",["cdf","nc"]],["application/x-newton-compatible-pkg","pkg"],["application/x-nokia-9000-communicator-add-on-software","aos"],["application/x-omc","omc"],["application/x-omcdatamaker","omcd"],["application/x-omcregerator","omcr"],["application/x-pagemaker",["pm4","pm5"]],["application/x-pcl","pcl"],["application/x-perfmon",["pma","pmc","pml","pmr","pmw"]],["application/x-pixclscript","plx"],["application/x-pkcs10","p10"],["application/x-pkcs12",["p12","pfx"]],["application/x-pkcs7-certificates",["p7b","spc"]],["application/x-pkcs7-certreqresp","p7r"],["application/x-pkcs7-mime",["p7m","p7c"]],["application/x-pkcs7-signature",["p7s","p7a"]],["application/x-pointplus","css"],["application/x-portable-anymap","pnm"],["application/x-project",["mpc","mpt","mpv","mpx"]],["application/x-qpro","wb1"],["application/x-rar-compressed","rar"],["application/x-rtf","rtf"],["application/x-sdp","sdp"],["application/x-sea","sea"],["application/x-seelogo","sl"],["application/x-sh","sh"],["application/x-shar",["shar","sh"]],["application/x-shockwave-flash","swf"],["application/x-silverlight-app","xap"],["application/x-sit","sit"],["application/x-sprite",["spr","sprite"]],["application/x-stuffit","sit"],["application/x-stuffitx","sitx"],["application/x-sv4cpio","sv4cpio"],["application/x-sv4crc","sv4crc"],["application/x-tar","tar"],["application/x-tbook",["sbk","tbk"]],["application/x-tcl","tcl"],["application/x-tex","tex"],["application/x-tex-tfm","tfm"],["application/x-texinfo",["texi","texinfo"]],["application/x-troff",["roff","t","tr"]],["application/x-troff-man","man"],["application/x-troff-me","me"],["application/x-troff-ms","ms"],["application/x-troff-msvideo","avi"],["application/x-ustar","ustar"],["application/x-visio",["vsd","vst","vsw"]],["application/x-vnd.audioexplosion.mzz","mzz"],["application/x-vnd.ls-xpix","xpix"],["application/x-vrml","vrml"],["application/x-wais-source",["src","wsrc"]],["application/x-winhelp","hlp"],["application/x-wintalk","wtk"],["application/x-world",["wrl","svr"]],["application/x-wpwin","wpd"],["application/x-wri","wri"],["application/x-x509-ca-cert",["cer","crt","der"]],["application/x-x509-user-cert","crt"],["application/x-xfig","fig"],["application/x-xpinstall","xpi"],["application/x-zip-compressed","zip"],["application/xcap-diff+xml","xdf"],["application/xenc+xml","xenc"],["application/xhtml+xml","xhtml"],["application/xml","xml"],["application/xml-dtd","dtd"],["application/xop+xml","xop"],["application/xslt+xml","xslt"],["application/xspf+xml","xspf"],["application/xv+xml","mxml"],["application/yang","yang"],["application/yin+xml","yin"],["application/ynd.ms-pkipko","pko"],["application/zip","zip"],["audio/adpcm","adp"],["audio/aiff",["aiff","aif","aifc"]],["audio/basic",["snd","au"]],["audio/it","it"],["audio/make",["funk","my","pfunk"]],["audio/make.my.funk","pfunk"],["audio/mid",["mid","rmi"]],["audio/midi",["midi","kar","mid"]],["audio/mod","mod"],["audio/mp4","mp4a"],["audio/mpeg",["mpga","mp3","m2a","mp2","mpa","mpg"]],["audio/mpeg3","mp3"],["audio/nspaudio",["la","lma"]],["audio/ogg","oga"],["audio/s3m","s3m"],["audio/tsp-audio","tsi"],["audio/tsplayer","tsp"],["audio/vnd.dece.audio","uva"],["audio/vnd.digital-winds","eol"],["audio/vnd.dra","dra"],["audio/vnd.dts","dts"],["audio/vnd.dts.hd","dtshd"],["audio/vnd.lucent.voice","lvp"],["audio/vnd.ms-playready.media.pya","pya"],["audio/vnd.nuera.ecelp4800","ecelp4800"],["audio/vnd.nuera.ecelp7470","ecelp7470"],["audio/vnd.nuera.ecelp9600","ecelp9600"],["audio/vnd.qcelp","qcp"],["audio/vnd.rip","rip"],["audio/voc","voc"],["audio/voxware","vox"],["audio/wav","wav"],["audio/webm","weba"],["audio/x-aac","aac"],["audio/x-adpcm","snd"],["audio/x-aiff",["aiff","aif","aifc"]],["audio/x-au","au"],["audio/x-gsm",["gsd","gsm"]],["audio/x-jam","jam"],["audio/x-liveaudio","lam"],["audio/x-mid",["mid","midi"]],["audio/x-midi",["midi","mid"]],["audio/x-mod","mod"],["audio/x-mpeg","mp2"],["audio/x-mpeg-3","mp3"],["audio/x-mpegurl","m3u"],["audio/x-mpequrl","m3u"],["audio/x-ms-wax","wax"],["audio/x-ms-wma","wma"],["audio/x-nspaudio",["la","lma"]],["audio/x-pn-realaudio",["ra","ram","rm","rmm","rmp"]],["audio/x-pn-realaudio-plugin",["ra","rmp","rpm"]],["audio/x-psid","sid"],["audio/x-realaudio","ra"],["audio/x-twinvq","vqf"],["audio/x-twinvq-plugin",["vqe","vql"]],["audio/x-vnd.audioexplosion.mjuicemediafile","mjf"],["audio/x-voc","voc"],["audio/x-wav","wav"],["audio/xm","xm"],["chemical/x-cdx","cdx"],["chemical/x-cif","cif"],["chemical/x-cmdf","cmdf"],["chemical/x-cml","cml"],["chemical/x-csml","csml"],["chemical/x-pdb",["pdb","xyz"]],["chemical/x-xyz","xyz"],["drawing/x-dwf","dwf"],["i-world/i-vrml","ivr"],["image/bmp",["bmp","bm"]],["image/cgm","cgm"],["image/cis-cod","cod"],["image/cmu-raster",["ras","rast"]],["image/fif","fif"],["image/florian",["flo","turbot"]],["image/g3fax","g3"],["image/gif","gif"],["image/ief",["ief","iefs"]],["image/jpeg",["jpeg","jpe","jpg","jfif","jfif-tbnl"]],["image/jutvision","jut"],["image/ktx","ktx"],["image/naplps",["nap","naplps"]],["image/pict",["pic","pict"]],["image/pipeg","jfif"],["image/pjpeg",["jfif","jpe","jpeg","jpg"]],["image/png",["png","x-png"]],["image/prs.btif","btif"],["image/svg+xml","svg"],["image/tiff",["tif","tiff"]],["image/vasa","mcf"],["image/vnd.adobe.photoshop","psd"],["image/vnd.dece.graphic","uvi"],["image/vnd.djvu","djvu"],["image/vnd.dvb.subtitle","sub"],["image/vnd.dwg",["dwg","dxf","svf"]],["image/vnd.dxf","dxf"],["image/vnd.fastbidsheet","fbs"],["image/vnd.fpx","fpx"],["image/vnd.fst","fst"],["image/vnd.fujixerox.edmics-mmr","mmr"],["image/vnd.fujixerox.edmics-rlc","rlc"],["image/vnd.ms-modi","mdi"],["image/vnd.net-fpx",["fpx","npx"]],["image/vnd.rn-realflash","rf"],["image/vnd.rn-realpix","rp"],["image/vnd.wap.wbmp","wbmp"],["image/vnd.xiff","xif"],["image/webp","webp"],["image/x-cmu-raster","ras"],["image/x-cmx","cmx"],["image/x-dwg",["dwg","dxf","svf"]],["image/x-freehand","fh"],["image/x-icon","ico"],["image/x-jg","art"],["image/x-jps","jps"],["image/x-niff",["niff","nif"]],["image/x-pcx","pcx"],["image/x-pict",["pct","pic"]],["image/x-portable-anymap","pnm"],["image/x-portable-bitmap","pbm"],["image/x-portable-graymap","pgm"],["image/x-portable-greymap","pgm"],["image/x-portable-pixmap","ppm"],["image/x-quicktime",["qif","qti","qtif"]],["image/x-rgb","rgb"],["image/x-tiff",["tif","tiff"]],["image/x-windows-bmp","bmp"],["image/x-xbitmap","xbm"],["image/x-xbm","xbm"],["image/x-xpixmap",["xpm","pm"]],["image/x-xwd","xwd"],["image/x-xwindowdump","xwd"],["image/xbm","xbm"],["image/xpm","xpm"],["message/rfc822",["eml","mht","mhtml","nws","mime"]],["model/iges",["iges","igs"]],["model/mesh","msh"],["model/vnd.collada+xml","dae"],["model/vnd.dwf","dwf"],["model/vnd.gdl","gdl"],["model/vnd.gtw","gtw"],["model/vnd.mts","mts"],["model/vnd.vtu","vtu"],["model/vrml",["vrml","wrl","wrz"]],["model/x-pov","pov"],["multipart/x-gzip","gzip"],["multipart/x-ustar","ustar"],["multipart/x-zip","zip"],["music/crescendo",["mid","midi"]],["music/x-karaoke","kar"],["paleovu/x-pv","pvu"],["text/asp","asp"],["text/calendar","ics"],["text/css","css"],["text/csv","csv"],["text/ecmascript","js"],["text/h323","323"],["text/html",["html","htm","stm","acgi","htmls","htx","shtml"]],["text/iuls","uls"],["text/javascript","js"],["text/mcf","mcf"],["text/n3","n3"],["text/pascal","pas"],["text/plain",["txt","bas","c","h","c++","cc","com","conf","cxx","def","f","f90","for","g","hh","idc","jav","java","list","log","lst","m","mar","pl","sdml","text"]],["text/plain-bas","par"],["text/prs.lines.tag","dsc"],["text/richtext",["rtx","rt","rtf"]],["text/scriplet","wsc"],["text/scriptlet","sct"],["text/sgml",["sgm","sgml"]],["text/tab-separated-values","tsv"],["text/troff","t"],["text/turtle","ttl"],["text/uri-list",["uni","unis","uri","uris"]],["text/vnd.abc","abc"],["text/vnd.curl","curl"],["text/vnd.curl.dcurl","dcurl"],["text/vnd.curl.mcurl","mcurl"],["text/vnd.curl.scurl","scurl"],["text/vnd.fly","fly"],["text/vnd.fmi.flexstor","flx"],["text/vnd.graphviz","gv"],["text/vnd.in3d.3dml","3dml"],["text/vnd.in3d.spot","spot"],["text/vnd.rn-realtext","rt"],["text/vnd.sun.j2me.app-descriptor","jad"],["text/vnd.wap.wml","wml"],["text/vnd.wap.wmlscript","wmls"],["text/webviewhtml","htt"],["text/x-asm",["asm","s"]],["text/x-audiosoft-intra","aip"],["text/x-c",["c","cc","cpp"]],["text/x-component","htc"],["text/x-fortran",["for","f","f77","f90"]],["text/x-h",["h","hh"]],["text/x-java-source",["java","jav"]],["text/x-java-source,java","java"],["text/x-la-asf","lsx"],["text/x-m","m"],["text/x-pascal","p"],["text/x-script","hlb"],["text/x-script.csh","csh"],["text/x-script.elisp","el"],["text/x-script.guile","scm"],["text/x-script.ksh","ksh"],["text/x-script.lisp","lsp"],["text/x-script.perl","pl"],["text/x-script.perl-module","pm"],["text/x-script.phyton","py"],["text/x-script.rexx","rexx"],["text/x-script.scheme","scm"],["text/x-script.sh","sh"],["text/x-script.tcl","tcl"],["text/x-script.tcsh","tcsh"],["text/x-script.zsh","zsh"],["text/x-server-parsed-html",["shtml","ssi"]],["text/x-setext","etx"],["text/x-sgml",["sgm","sgml"]],["text/x-speech",["spc","talk"]],["text/x-uil","uil"],["text/x-uuencode",["uu","uue"]],["text/x-vcalendar","vcs"],["text/x-vcard","vcf"],["text/xml","xml"],["video/3gpp","3gp"],["video/3gpp2","3g2"],["video/animaflex","afl"],["video/avi","avi"],["video/avs-video","avs"],["video/dl","dl"],["video/fli","fli"],["video/gl","gl"],["video/h261","h261"],["video/h263","h263"],["video/h264","h264"],["video/jpeg","jpgv"],["video/jpm","jpm"],["video/mj2","mj2"],["video/mp4","mp4"],["video/mpeg",["mpeg","mp2","mpa","mpe","mpg","mpv2","m1v","m2v","mp3"]],["video/msvideo","avi"],["video/ogg","ogv"],["video/quicktime",["mov","qt","moov"]],["video/vdo","vdo"],["video/vivo",["viv","vivo"]],["video/vnd.dece.hd","uvh"],["video/vnd.dece.mobile","uvm"],["video/vnd.dece.pd","uvp"],["video/vnd.dece.sd","uvs"],["video/vnd.dece.video","uvv"],["video/vnd.fvt","fvt"],["video/vnd.mpegurl","mxu"],["video/vnd.ms-playready.media.pyv","pyv"],["video/vnd.rn-realvideo","rv"],["video/vnd.uvvu.mp4","uvu"],["video/vnd.vivo",["viv","vivo"]],["video/vosaic","vos"],["video/webm","webm"],["video/x-amt-demorun","xdr"],["video/x-amt-showrun","xsr"],["video/x-atomic3d-feature","fmf"],["video/x-dl","dl"],["video/x-dv",["dif","dv"]],["video/x-f4v","f4v"],["video/x-fli","fli"],["video/x-flv","flv"],["video/x-gl","gl"],["video/x-isvideo","isu"],["video/x-la-asf",["lsf","lsx"]],["video/x-m4v","m4v"],["video/x-motion-jpeg","mjpg"],["video/x-mpeg",["mp3","mp2"]],["video/x-mpeq2a","mp2"],["video/x-ms-asf",["asf","asr","asx"]],["video/x-ms-asf-plugin","asx"],["video/x-ms-wm","wm"],["video/x-ms-wmv","wmv"],["video/x-ms-wmx","wmx"],["video/x-ms-wvx","wvx"],["video/x-msvideo","avi"],["video/x-qtc","qtc"],["video/x-scm","scm"],["video/x-sgi-movie",["movie","mv"]],["windows/metafile","wmf"],["www/mime","mime"],["x-conference/x-cooltalk","ice"],["x-music/x-midi",["mid","midi"]],["x-world/x-3dmf",["3dm","3dmf","qd3","qd3d"]],["x-world/x-svr","svr"],["x-world/x-vrml",["flr","vrml","wrl","wrz","xaf","xof"]],["x-world/x-vrt","vrt"],["xgl/drawing","xgz"],["xgl/movie","xmz"]]),g=new Map([["123","application/vnd.lotus-1-2-3"],["323","text/h323"],["*","application/octet-stream"],["3dm","x-world/x-3dmf"],["3dmf","x-world/x-3dmf"],["3dml","text/vnd.in3d.3dml"],["3g2","video/3gpp2"],["3gp","video/3gpp"],["7z","application/x-7z-compressed"],["a","application/octet-stream"],["aab","application/x-authorware-bin"],["aac","audio/x-aac"],["aam","application/x-authorware-map"],["aas","application/x-authorware-seg"],["abc","text/vnd.abc"],["abw","application/x-abiword"],["ac","application/pkix-attr-cert"],["acc","application/vnd.americandynamics.acc"],["ace","application/x-ace-compressed"],["acgi","text/html"],["acu","application/vnd.acucobol"],["acx","application/internet-property-stream"],["adp","audio/adpcm"],["aep","application/vnd.audiograph"],["afl","video/animaflex"],["afp","application/vnd.ibm.modcap"],["ahead","application/vnd.ahead.space"],["ai","application/postscript"],["aif",["audio/aiff","audio/x-aiff"]],["aifc",["audio/aiff","audio/x-aiff"]],["aiff",["audio/aiff","audio/x-aiff"]],["aim","application/x-aim"],["aip","text/x-audiosoft-intra"],["air","application/vnd.adobe.air-application-installer-package+zip"],["ait","application/vnd.dvb.ait"],["ami","application/vnd.amiga.ami"],["ani","application/x-navi-animation"],["aos","application/x-nokia-9000-communicator-add-on-software"],["apk","application/vnd.android.package-archive"],["application","application/x-ms-application"],["apr","application/vnd.lotus-approach"],["aps","application/mime"],["arc","application/octet-stream"],["arj",["application/arj","application/octet-stream"]],["art","image/x-jg"],["asf","video/x-ms-asf"],["asm","text/x-asm"],["aso","application/vnd.accpac.simply.aso"],["asp","text/asp"],["asr","video/x-ms-asf"],["asx",["video/x-ms-asf","application/x-mplayer2","video/x-ms-asf-plugin"]],["atc","application/vnd.acucorp"],["atomcat","application/atomcat+xml"],["atomsvc","application/atomsvc+xml"],["atx","application/vnd.antix.game-component"],["au",["audio/basic","audio/x-au"]],["avi",["video/avi","video/msvideo","application/x-troff-msvideo","video/x-msvideo"]],["avs","video/avs-video"],["aw","application/applixware"],["axs","application/olescript"],["azf","application/vnd.airzip.filesecure.azf"],["azs","application/vnd.airzip.filesecure.azs"],["azw","application/vnd.amazon.ebook"],["bas","text/plain"],["bcpio","application/x-bcpio"],["bdf","application/x-font-bdf"],["bdm","application/vnd.syncml.dm+wbxml"],["bed","application/vnd.realvnc.bed"],["bh2","application/vnd.fujitsu.oasysprs"],["bin",["application/octet-stream","application/mac-binary","application/macbinary","application/x-macbinary","application/x-binary"]],["bm","image/bmp"],["bmi","application/vnd.bmi"],["bmp",["image/bmp","image/x-windows-bmp"]],["boo","application/book"],["book","application/book"],["box","application/vnd.previewsystems.box"],["boz","application/x-bzip2"],["bsh","application/x-bsh"],["btif","image/prs.btif"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["c",["text/plain","text/x-c"]],["c++","text/plain"],["c11amc","application/vnd.cluetrust.cartomobile-config"],["c11amz","application/vnd.cluetrust.cartomobile-config-pkg"],["c4g","application/vnd.clonk.c4group"],["cab","application/vnd.ms-cab-compressed"],["car","application/vnd.curl.car"],["cat",["application/vnd.ms-pkiseccat","application/vnd.ms-pki.seccat"]],["cc",["text/plain","text/x-c"]],["ccad","application/clariscad"],["cco","application/x-cocoa"],["ccxml","application/ccxml+xml,"],["cdbcmsg","application/vnd.contact.cmsg"],["cdf",["application/cdf","application/x-cdf","application/x-netcdf"]],["cdkey","application/vnd.mediastation.cdkey"],["cdmia","application/cdmi-capability"],["cdmic","application/cdmi-container"],["cdmid","application/cdmi-domain"],["cdmio","application/cdmi-object"],["cdmiq","application/cdmi-queue"],["cdx","chemical/x-cdx"],["cdxml","application/vnd.chemdraw+xml"],["cdy","application/vnd.cinderella"],["cer",["application/pkix-cert","application/x-x509-ca-cert"]],["cgm","image/cgm"],["cha","application/x-chat"],["chat","application/x-chat"],["chm","application/vnd.ms-htmlhelp"],["chrt","application/vnd.kde.kchart"],["cif","chemical/x-cif"],["cii","application/vnd.anser-web-certificate-issue-initiation"],["cil","application/vnd.ms-artgalry"],["cla","application/vnd.claymore"],["class",["application/octet-stream","application/java","application/java-byte-code","application/java-vm","application/x-java-class"]],["clkk","application/vnd.crick.clicker.keyboard"],["clkp","application/vnd.crick.clicker.palette"],["clkt","application/vnd.crick.clicker.template"],["clkw","application/vnd.crick.clicker.wordbank"],["clkx","application/vnd.crick.clicker"],["clp","application/x-msclip"],["cmc","application/vnd.cosmocaller"],["cmdf","chemical/x-cmdf"],["cml","chemical/x-cml"],["cmp","application/vnd.yellowriver-custom-menu"],["cmx","image/x-cmx"],["cod",["image/cis-cod","application/vnd.rim.cod"]],["com",["application/octet-stream","text/plain"]],["conf","text/plain"],["cpio","application/x-cpio"],["cpp","text/x-c"],["cpt",["application/mac-compactpro","application/x-compactpro","application/x-cpt"]],["crd","application/x-mscardfile"],["crl",["application/pkix-crl","application/pkcs-crl"]],["crt",["application/pkix-cert","application/x-x509-user-cert","application/x-x509-ca-cert"]],["cryptonote","application/vnd.rig.cryptonote"],["csh",["text/x-script.csh","application/x-csh"]],["csml","chemical/x-csml"],["csp","application/vnd.commonspace"],["css",["text/css","application/x-pointplus"]],["csv","text/csv"],["cu","application/cu-seeme"],["curl","text/vnd.curl"],["cww","application/prs.cww"],["cxx","text/plain"],["dae","model/vnd.collada+xml"],["daf","application/vnd.mobius.daf"],["davmount","application/davmount+xml"],["dcr","application/x-director"],["dcurl","text/vnd.curl.dcurl"],["dd2","application/vnd.oma.dd2+xml"],["ddd","application/vnd.fujixerox.ddd"],["deb","application/x-debian-package"],["deepv","application/x-deepv"],["def","text/plain"],["der","application/x-x509-ca-cert"],["dfac","application/vnd.dreamfactory"],["dif","video/x-dv"],["dir","application/x-director"],["dis","application/vnd.mobius.dis"],["djvu","image/vnd.djvu"],["dl",["video/dl","video/x-dl"]],["dll","application/x-msdownload"],["dms","application/octet-stream"],["dna","application/vnd.dna"],["doc","application/msword"],["docm","application/vnd.ms-word.document.macroenabled.12"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["dot","application/msword"],["dotm","application/vnd.ms-word.template.macroenabled.12"],["dotx","application/vnd.openxmlformats-officedocument.wordprocessingml.template"],["dp",["application/commonground","application/vnd.osgi.dp"]],["dpg","application/vnd.dpgraph"],["dra","audio/vnd.dra"],["drw","application/drafting"],["dsc","text/prs.lines.tag"],["dssc","application/dssc+der"],["dtb","application/x-dtbook+xml"],["dtd","application/xml-dtd"],["dts","audio/vnd.dts"],["dtshd","audio/vnd.dts.hd"],["dump","application/octet-stream"],["dv","video/x-dv"],["dvi","application/x-dvi"],["dwf",["model/vnd.dwf","drawing/x-dwf"]],["dwg",["application/acad","image/vnd.dwg","image/x-dwg"]],["dxf",["application/dxf","image/vnd.dwg","image/vnd.dxf","image/x-dwg"]],["dxp","application/vnd.spotfire.dxp"],["dxr","application/x-director"],["ecelp4800","audio/vnd.nuera.ecelp4800"],["ecelp7470","audio/vnd.nuera.ecelp7470"],["ecelp9600","audio/vnd.nuera.ecelp9600"],["edm","application/vnd.novadigm.edm"],["edx","application/vnd.novadigm.edx"],["efif","application/vnd.picsel"],["ei6","application/vnd.pg.osasli"],["el","text/x-script.elisp"],["elc",["application/x-elc","application/x-bytecode.elisp"]],["eml","message/rfc822"],["emma","application/emma+xml"],["env","application/x-envoy"],["eol","audio/vnd.digital-winds"],["eot","application/vnd.ms-fontobject"],["eps","application/postscript"],["epub","application/epub+zip"],["es",["application/ecmascript","application/x-esrehber"]],["es3","application/vnd.eszigno3+xml"],["esf","application/vnd.epson.esf"],["etx","text/x-setext"],["evy",["application/envoy","application/x-envoy"]],["exe",["application/octet-stream","application/x-msdownload"]],["exi","application/exi"],["ext","application/vnd.novadigm.ext"],["ez2","application/vnd.ezpix-album"],["ez3","application/vnd.ezpix-package"],["f",["text/plain","text/x-fortran"]],["f4v","video/x-f4v"],["f77","text/x-fortran"],["f90",["text/plain","text/x-fortran"]],["fbs","image/vnd.fastbidsheet"],["fcs","application/vnd.isac.fcs"],["fdf","application/vnd.fdf"],["fe_launch","application/vnd.denovo.fcselayout-link"],["fg5","application/vnd.fujitsu.oasysgp"],["fh","image/x-freehand"],["fif",["application/fractals","image/fif"]],["fig","application/x-xfig"],["fli",["video/fli","video/x-fli"]],["flo",["image/florian","application/vnd.micrografx.flo"]],["flr","x-world/x-vrml"],["flv","video/x-flv"],["flw","application/vnd.kde.kivio"],["flx","text/vnd.fmi.flexstor"],["fly","text/vnd.fly"],["fm","application/vnd.framemaker"],["fmf","video/x-atomic3d-feature"],["fnc","application/vnd.frogans.fnc"],["for",["text/plain","text/x-fortran"]],["fpx",["image/vnd.fpx","image/vnd.net-fpx"]],["frl","application/freeloader"],["fsc","application/vnd.fsc.weblaunch"],["fst","image/vnd.fst"],["ftc","application/vnd.fluxtime.clip"],["fti","application/vnd.anser-web-funds-transfer-initiation"],["funk","audio/make"],["fvt","video/vnd.fvt"],["fxp","application/vnd.adobe.fxp"],["fzs","application/vnd.fuzzysheet"],["g","text/plain"],["g2w","application/vnd.geoplan"],["g3","image/g3fax"],["g3w","application/vnd.geospace"],["gac","application/vnd.groove-account"],["gdl","model/vnd.gdl"],["geo","application/vnd.dynageo"],["geojson","application/geo+json"],["gex","application/vnd.geometry-explorer"],["ggb","application/vnd.geogebra.file"],["ggt","application/vnd.geogebra.tool"],["ghf","application/vnd.groove-help"],["gif","image/gif"],["gim","application/vnd.groove-identity-message"],["gl",["video/gl","video/x-gl"]],["gmx","application/vnd.gmx"],["gnumeric","application/x-gnumeric"],["gph","application/vnd.flographit"],["gqf","application/vnd.grafeq"],["gram","application/srgs"],["grv","application/vnd.groove-injector"],["grxml","application/srgs+xml"],["gsd","audio/x-gsm"],["gsf","application/x-font-ghostscript"],["gsm","audio/x-gsm"],["gsp","application/x-gsp"],["gss","application/x-gss"],["gtar","application/x-gtar"],["gtm","application/vnd.groove-tool-message"],["gtw","model/vnd.gtw"],["gv","text/vnd.graphviz"],["gxt","application/vnd.geonext"],["gz",["application/x-gzip","application/x-compressed"]],["gzip",["multipart/x-gzip","application/x-gzip"]],["h",["text/plain","text/x-h"]],["h261","video/h261"],["h263","video/h263"],["h264","video/h264"],["hal","application/vnd.hal+xml"],["hbci","application/vnd.hbci"],["hdf","application/x-hdf"],["help","application/x-helpfile"],["hgl","application/vnd.hp-hpgl"],["hh",["text/plain","text/x-h"]],["hlb","text/x-script"],["hlp",["application/winhlp","application/hlp","application/x-helpfile","application/x-winhelp"]],["hpg","application/vnd.hp-hpgl"],["hpgl","application/vnd.hp-hpgl"],["hpid","application/vnd.hp-hpid"],["hps","application/vnd.hp-hps"],["hqx",["application/mac-binhex40","application/binhex","application/binhex4","application/mac-binhex","application/x-binhex40","application/x-mac-binhex40"]],["hta","application/hta"],["htc","text/x-component"],["htke","application/vnd.kenameaapp"],["htm","text/html"],["html","text/html"],["htmls","text/html"],["htt","text/webviewhtml"],["htx","text/html"],["hvd","application/vnd.yamaha.hv-dic"],["hvp","application/vnd.yamaha.hv-voice"],["hvs","application/vnd.yamaha.hv-script"],["i2g","application/vnd.intergeo"],["icc","application/vnd.iccprofile"],["ice","x-conference/x-cooltalk"],["ico","image/x-icon"],["ics","text/calendar"],["idc","text/plain"],["ief","image/ief"],["iefs","image/ief"],["ifm","application/vnd.shana.informed.formdata"],["iges",["application/iges","model/iges"]],["igl","application/vnd.igloader"],["igm","application/vnd.insors.igm"],["igs",["application/iges","model/iges"]],["igx","application/vnd.micrografx.igx"],["iif","application/vnd.shana.informed.interchange"],["iii","application/x-iphone"],["ima","application/x-ima"],["imap","application/x-httpd-imap"],["imp","application/vnd.accpac.simply.imp"],["ims","application/vnd.ms-ims"],["inf","application/inf"],["ins",["application/x-internet-signup","application/x-internett-signup"]],["ip","application/x-ip2"],["ipfix","application/ipfix"],["ipk","application/vnd.shana.informed.package"],["irm","application/vnd.ibm.rights-management"],["irp","application/vnd.irepository.package+xml"],["isp","application/x-internet-signup"],["isu","video/x-isvideo"],["it","audio/it"],["itp","application/vnd.shana.informed.formtemplate"],["iv","application/x-inventor"],["ivp","application/vnd.immervision-ivp"],["ivr","i-world/i-vrml"],["ivu","application/vnd.immervision-ivu"],["ivy","application/x-livescreen"],["jad","text/vnd.sun.j2me.app-descriptor"],["jam",["application/vnd.jam","audio/x-jam"]],["jar","application/java-archive"],["jav",["text/plain","text/x-java-source"]],["java",["text/plain","text/x-java-source,java","text/x-java-source"]],["jcm","application/x-java-commerce"],["jfif",["image/pipeg","image/jpeg","image/pjpeg"]],["jfif-tbnl","image/jpeg"],["jisp","application/vnd.jisp"],["jlt","application/vnd.hp-jlyt"],["jnlp","application/x-java-jnlp-file"],["joda","application/vnd.joost.joda-archive"],["jpe",["image/jpeg","image/pjpeg"]],["jpeg",["image/jpeg","image/pjpeg"]],["jpg",["image/jpeg","image/pjpeg"]],["jpgv","video/jpeg"],["jpm","video/jpm"],["jps","image/x-jps"],["js",["application/javascript","application/ecmascript","text/javascript","text/ecmascript","application/x-javascript"]],["json","application/json"],["jut","image/jutvision"],["kar",["audio/midi","music/x-karaoke"]],["karbon","application/vnd.kde.karbon"],["kfo","application/vnd.kde.kformula"],["kia","application/vnd.kidspiration"],["kml","application/vnd.google-earth.kml+xml"],["kmz","application/vnd.google-earth.kmz"],["kne","application/vnd.kinar"],["kon","application/vnd.kde.kontour"],["kpr","application/vnd.kde.kpresenter"],["ksh",["application/x-ksh","text/x-script.ksh"]],["ksp","application/vnd.kde.kspread"],["ktx","image/ktx"],["ktz","application/vnd.kahootz"],["kwd","application/vnd.kde.kword"],["la",["audio/nspaudio","audio/x-nspaudio"]],["lam","audio/x-liveaudio"],["lasxml","application/vnd.las.las+xml"],["latex","application/x-latex"],["lbd","application/vnd.llamagraphics.life-balance.desktop"],["lbe","application/vnd.llamagraphics.life-balance.exchange+xml"],["les","application/vnd.hhe.lesson-player"],["lha",["application/octet-stream","application/lha","application/x-lha"]],["lhx","application/octet-stream"],["link66","application/vnd.route66.link66+xml"],["list","text/plain"],["lma",["audio/nspaudio","audio/x-nspaudio"]],["log","text/plain"],["lrm","application/vnd.ms-lrm"],["lsf","video/x-la-asf"],["lsp",["application/x-lisp","text/x-script.lisp"]],["lst","text/plain"],["lsx",["video/x-la-asf","text/x-la-asf"]],["ltf","application/vnd.frogans.ltf"],["ltx","application/x-latex"],["lvp","audio/vnd.lucent.voice"],["lwp","application/vnd.lotus-wordpro"],["lzh",["application/octet-stream","application/x-lzh"]],["lzx",["application/lzx","application/octet-stream","application/x-lzx"]],["m",["text/plain","text/x-m"]],["m13","application/x-msmediaview"],["m14","application/x-msmediaview"],["m1v","video/mpeg"],["m21","application/mp21"],["m2a","audio/mpeg"],["m2v","video/mpeg"],["m3u",["audio/x-mpegurl","audio/x-mpequrl"]],["m3u8","application/vnd.apple.mpegurl"],["m4v","video/x-m4v"],["ma","application/mathematica"],["mads","application/mads+xml"],["mag","application/vnd.ecowin.chart"],["man","application/x-troff-man"],["map","application/x-navimap"],["mar","text/plain"],["mathml","application/mathml+xml"],["mbd","application/mbedlet"],["mbk","application/vnd.mobius.mbk"],["mbox","application/mbox"],["mc$","application/x-magic-cap-package-1.0"],["mc1","application/vnd.medcalcdata"],["mcd",["application/mcad","application/vnd.mcd","application/x-mathcad"]],["mcf",["image/vasa","text/mcf"]],["mcp","application/netmc"],["mcurl","text/vnd.curl.mcurl"],["mdb","application/x-msaccess"],["mdi","image/vnd.ms-modi"],["me","application/x-troff-me"],["meta4","application/metalink4+xml"],["mets","application/mets+xml"],["mfm","application/vnd.mfmp"],["mgp","application/vnd.osgeo.mapguide.package"],["mgz","application/vnd.proteus.magazine"],["mht","message/rfc822"],["mhtml","message/rfc822"],["mid",["audio/mid","audio/midi","music/crescendo","x-music/x-midi","audio/x-midi","application/x-midi","audio/x-mid"]],["midi",["audio/midi","music/crescendo","x-music/x-midi","audio/x-midi","application/x-midi","audio/x-mid"]],["mif",["application/vnd.mif","application/x-mif","application/x-frame"]],["mime",["message/rfc822","www/mime"]],["mj2","video/mj2"],["mjf","audio/x-vnd.audioexplosion.mjuicemediafile"],["mjpg","video/x-motion-jpeg"],["mlp","application/vnd.dolby.mlp"],["mm",["application/base64","application/x-meme"]],["mmd","application/vnd.chipnuts.karaoke-mmd"],["mme","application/base64"],["mmf","application/vnd.smaf"],["mmr","image/vnd.fujixerox.edmics-mmr"],["mny","application/x-msmoney"],["mod",["audio/mod","audio/x-mod"]],["mods","application/mods+xml"],["moov","video/quicktime"],["mov","video/quicktime"],["movie","video/x-sgi-movie"],["mp2",["video/mpeg","audio/mpeg","video/x-mpeg","audio/x-mpeg","video/x-mpeq2a"]],["mp3",["audio/mpeg","audio/mpeg3","video/mpeg","audio/x-mpeg-3","video/x-mpeg"]],["mp4",["video/mp4","application/mp4"]],["mp4a","audio/mp4"],["mpa",["video/mpeg","audio/mpeg"]],["mpc",["application/vnd.mophun.certificate","application/x-project"]],["mpe","video/mpeg"],["mpeg","video/mpeg"],["mpg",["video/mpeg","audio/mpeg"]],["mpga","audio/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["mpm","application/vnd.blueice.multipass"],["mpn","application/vnd.mophun.application"],["mpp","application/vnd.ms-project"],["mpt","application/x-project"],["mpv","application/x-project"],["mpv2","video/mpeg"],["mpx","application/x-project"],["mpy","application/vnd.ibm.minipay"],["mqy","application/vnd.mobius.mqy"],["mrc","application/marc"],["mrcx","application/marcxml+xml"],["ms","application/x-troff-ms"],["mscml","application/mediaservercontrol+xml"],["mseq","application/vnd.mseq"],["msf","application/vnd.epson.msf"],["msg","application/vnd.ms-outlook"],["msh","model/mesh"],["msl","application/vnd.mobius.msl"],["msty","application/vnd.muvee.style"],["mts","model/vnd.mts"],["mus","application/vnd.musician"],["musicxml","application/vnd.recordare.musicxml+xml"],["mv","video/x-sgi-movie"],["mvb","application/x-msmediaview"],["mwf","application/vnd.mfer"],["mxf","application/mxf"],["mxl","application/vnd.recordare.musicxml"],["mxml","application/xv+xml"],["mxs","application/vnd.triscape.mxs"],["mxu","video/vnd.mpegurl"],["my","audio/make"],["mzz","application/x-vnd.audioexplosion.mzz"],["n-gage","application/vnd.nokia.n-gage.symbian.install"],["n3","text/n3"],["nap","image/naplps"],["naplps","image/naplps"],["nbp","application/vnd.wolfram.player"],["nc","application/x-netcdf"],["ncm","application/vnd.nokia.configuration-message"],["ncx","application/x-dtbncx+xml"],["ngdat","application/vnd.nokia.n-gage.data"],["nif","image/x-niff"],["niff","image/x-niff"],["nix","application/x-mix-transfer"],["nlu","application/vnd.neurolanguage.nlu"],["nml","application/vnd.enliven"],["nnd","application/vnd.noblenet-directory"],["nns","application/vnd.noblenet-sealer"],["nnw","application/vnd.noblenet-web"],["npx","image/vnd.net-fpx"],["nsc","application/x-conference"],["nsf","application/vnd.lotus-notes"],["nvd","application/x-navidoc"],["nws","message/rfc822"],["o","application/octet-stream"],["oa2","application/vnd.fujitsu.oasys2"],["oa3","application/vnd.fujitsu.oasys3"],["oas","application/vnd.fujitsu.oasys"],["obd","application/x-msbinder"],["oda","application/oda"],["odb","application/vnd.oasis.opendocument.database"],["odc","application/vnd.oasis.opendocument.chart"],["odf","application/vnd.oasis.opendocument.formula"],["odft","application/vnd.oasis.opendocument.formula-template"],["odg","application/vnd.oasis.opendocument.graphics"],["odi","application/vnd.oasis.opendocument.image"],["odm","application/vnd.oasis.opendocument.text-master"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["omc","application/x-omc"],["omcd","application/x-omcdatamaker"],["omcr","application/x-omcregerator"],["onetoc","application/onenote"],["opf","application/oebps-package+xml"],["org","application/vnd.lotus-organizer"],["osf","application/vnd.yamaha.openscoreformat"],["osfpvg","application/vnd.yamaha.openscoreformat.osfpvg+xml"],["otc","application/vnd.oasis.opendocument.chart-template"],["otf","application/x-font-otf"],["otg","application/vnd.oasis.opendocument.graphics-template"],["oth","application/vnd.oasis.opendocument.text-web"],["oti","application/vnd.oasis.opendocument.image-template"],["otp","application/vnd.oasis.opendocument.presentation-template"],["ots","application/vnd.oasis.opendocument.spreadsheet-template"],["ott","application/vnd.oasis.opendocument.text-template"],["oxt","application/vnd.openofficeorg.extension"],["p","text/x-pascal"],["p10",["application/pkcs10","application/x-pkcs10"]],["p12",["application/pkcs-12","application/x-pkcs12"]],["p7a","application/x-pkcs7-signature"],["p7b","application/x-pkcs7-certificates"],["p7c",["application/pkcs7-mime","application/x-pkcs7-mime"]],["p7m",["application/pkcs7-mime","application/x-pkcs7-mime"]],["p7r","application/x-pkcs7-certreqresp"],["p7s",["application/pkcs7-signature","application/x-pkcs7-signature"]],["p8","application/pkcs8"],["par","text/plain-bas"],["part","application/pro_eng"],["pas","text/pascal"],["paw","application/vnd.pawaafile"],["pbd","application/vnd.powerbuilder6"],["pbm","image/x-portable-bitmap"],["pcf","application/x-font-pcf"],["pcl",["application/vnd.hp-pcl","application/x-pcl"]],["pclxl","application/vnd.hp-pclxl"],["pct","image/x-pict"],["pcurl","application/vnd.curl.pcurl"],["pcx","image/x-pcx"],["pdb",["application/vnd.palm","chemical/x-pdb"]],["pdf","application/pdf"],["pfa","application/x-font-type1"],["pfr","application/font-tdpfr"],["pfunk",["audio/make","audio/make.my.funk"]],["pfx","application/x-pkcs12"],["pgm",["image/x-portable-graymap","image/x-portable-greymap"]],["pgn","application/x-chess-pgn"],["pgp","application/pgp-signature"],["pic",["image/pict","image/x-pict"]],["pict","image/pict"],["pkg","application/x-newton-compatible-pkg"],["pki","application/pkixcmp"],["pkipath","application/pkix-pkipath"],["pko",["application/ynd.ms-pkipko","application/vnd.ms-pki.pko"]],["pl",["text/plain","text/x-script.perl"]],["plb","application/vnd.3gpp.pic-bw-large"],["plc","application/vnd.mobius.plc"],["plf","application/vnd.pocketlearn"],["pls","application/pls+xml"],["plx","application/x-pixclscript"],["pm",["text/x-script.perl-module","image/x-xpixmap"]],["pm4","application/x-pagemaker"],["pm5","application/x-pagemaker"],["pma","application/x-perfmon"],["pmc","application/x-perfmon"],["pml",["application/vnd.ctc-posml","application/x-perfmon"]],["pmr","application/x-perfmon"],["pmw","application/x-perfmon"],["png","image/png"],["pnm",["application/x-portable-anymap","image/x-portable-anymap"]],["portpkg","application/vnd.macports.portpkg"],["pot",["application/vnd.ms-powerpoint","application/mspowerpoint"]],["potm","application/vnd.ms-powerpoint.template.macroenabled.12"],["potx","application/vnd.openxmlformats-officedocument.presentationml.template"],["pov","model/x-pov"],["ppa","application/vnd.ms-powerpoint"],["ppam","application/vnd.ms-powerpoint.addin.macroenabled.12"],["ppd","application/vnd.cups-ppd"],["ppm","image/x-portable-pixmap"],["pps",["application/vnd.ms-powerpoint","application/mspowerpoint"]],["ppsm","application/vnd.ms-powerpoint.slideshow.macroenabled.12"],["ppsx","application/vnd.openxmlformats-officedocument.presentationml.slideshow"],["ppt",["application/vnd.ms-powerpoint","application/mspowerpoint","application/powerpoint","application/x-mspowerpoint"]],["pptm","application/vnd.ms-powerpoint.presentation.macroenabled.12"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["ppz","application/mspowerpoint"],["prc","application/x-mobipocket-ebook"],["pre",["application/vnd.lotus-freelance","application/x-freelance"]],["prf","application/pics-rules"],["prt","application/pro_eng"],["ps","application/postscript"],["psb","application/vnd.3gpp.pic-bw-small"],["psd",["application/octet-stream","image/vnd.adobe.photoshop"]],["psf","application/x-font-linux-psf"],["pskcxml","application/pskc+xml"],["ptid","application/vnd.pvi.ptid1"],["pub","application/x-mspublisher"],["pvb","application/vnd.3gpp.pic-bw-var"],["pvu","paleovu/x-pv"],["pwn","application/vnd.3m.post-it-notes"],["pwz","application/vnd.ms-powerpoint"],["py","text/x-script.phyton"],["pya","audio/vnd.ms-playready.media.pya"],["pyc","application/x-bytecode.python"],["pyv","video/vnd.ms-playready.media.pyv"],["qam","application/vnd.epson.quickanime"],["qbo","application/vnd.intu.qbo"],["qcp","audio/vnd.qcelp"],["qd3","x-world/x-3dmf"],["qd3d","x-world/x-3dmf"],["qfx","application/vnd.intu.qfx"],["qif","image/x-quicktime"],["qps","application/vnd.publishare-delta-tree"],["qt","video/quicktime"],["qtc","video/x-qtc"],["qti","image/x-quicktime"],["qtif","image/x-quicktime"],["qxd","application/vnd.quark.quarkxpress"],["ra",["audio/x-realaudio","audio/x-pn-realaudio","audio/x-pn-realaudio-plugin"]],["ram","audio/x-pn-realaudio"],["rar","application/x-rar-compressed"],["ras",["image/cmu-raster","application/x-cmu-raster","image/x-cmu-raster"]],["rast","image/cmu-raster"],["rcprofile","application/vnd.ipunplugged.rcprofile"],["rdf","application/rdf+xml"],["rdz","application/vnd.data-vision.rdz"],["rep","application/vnd.businessobjects"],["res","application/x-dtbresource+xml"],["rexx","text/x-script.rexx"],["rf","image/vnd.rn-realflash"],["rgb","image/x-rgb"],["rif","application/reginfo+xml"],["rip","audio/vnd.rip"],["rl","application/resource-lists+xml"],["rlc","image/vnd.fujixerox.edmics-rlc"],["rld","application/resource-lists-diff+xml"],["rm",["application/vnd.rn-realmedia","audio/x-pn-realaudio"]],["rmi","audio/mid"],["rmm","audio/x-pn-realaudio"],["rmp",["audio/x-pn-realaudio-plugin","audio/x-pn-realaudio"]],["rms","application/vnd.jcp.javame.midlet-rms"],["rnc","application/relax-ng-compact-syntax"],["rng",["application/ringing-tones","application/vnd.nokia.ringing-tone"]],["rnx","application/vnd.rn-realplayer"],["roff","application/x-troff"],["rp","image/vnd.rn-realpix"],["rp9","application/vnd.cloanto.rp9"],["rpm","audio/x-pn-realaudio-plugin"],["rpss","application/vnd.nokia.radio-presets"],["rpst","application/vnd.nokia.radio-preset"],["rq","application/sparql-query"],["rs","application/rls-services+xml"],["rsd","application/rsd+xml"],["rt",["text/richtext","text/vnd.rn-realtext"]],["rtf",["application/rtf","text/richtext","application/x-rtf"]],["rtx",["text/richtext","application/rtf"]],["rv","video/vnd.rn-realvideo"],["s","text/x-asm"],["s3m","audio/s3m"],["saf","application/vnd.yamaha.smaf-audio"],["saveme","application/octet-stream"],["sbk","application/x-tbook"],["sbml","application/sbml+xml"],["sc","application/vnd.ibm.secure-container"],["scd","application/x-msschedule"],["scm",["application/vnd.lotus-screencam","video/x-scm","text/x-script.guile","application/x-lotusscreencam","text/x-script.scheme"]],["scq","application/scvp-cv-request"],["scs","application/scvp-cv-response"],["sct","text/scriptlet"],["scurl","text/vnd.curl.scurl"],["sda","application/vnd.stardivision.draw"],["sdc","application/vnd.stardivision.calc"],["sdd","application/vnd.stardivision.impress"],["sdkm","application/vnd.solent.sdkm+xml"],["sdml","text/plain"],["sdp",["application/sdp","application/x-sdp"]],["sdr","application/sounder"],["sdw","application/vnd.stardivision.writer"],["sea",["application/sea","application/x-sea"]],["see","application/vnd.seemail"],["seed","application/vnd.fdsn.seed"],["sema","application/vnd.sema"],["semd","application/vnd.semd"],["semf","application/vnd.semf"],["ser","application/java-serialized-object"],["set","application/set"],["setpay","application/set-payment-initiation"],["setreg","application/set-registration-initiation"],["sfd-hdstx","application/vnd.hydrostatix.sof-data"],["sfs","application/vnd.spotfire.sfs"],["sgl","application/vnd.stardivision.writer-global"],["sgm",["text/sgml","text/x-sgml"]],["sgml",["text/sgml","text/x-sgml"]],["sh",["application/x-shar","application/x-bsh","application/x-sh","text/x-script.sh"]],["shar",["application/x-bsh","application/x-shar"]],["shf","application/shf+xml"],["shtml",["text/html","text/x-server-parsed-html"]],["sid","audio/x-psid"],["sis","application/vnd.symbian.install"],["sit",["application/x-stuffit","application/x-sit"]],["sitx","application/x-stuffitx"],["skd","application/x-koan"],["skm","application/x-koan"],["skp",["application/vnd.koan","application/x-koan"]],["skt","application/x-koan"],["sl","application/x-seelogo"],["sldm","application/vnd.ms-powerpoint.slide.macroenabled.12"],["sldx","application/vnd.openxmlformats-officedocument.presentationml.slide"],["slt","application/vnd.epson.salt"],["sm","application/vnd.stepmania.stepchart"],["smf","application/vnd.stardivision.math"],["smi",["application/smil","application/smil+xml"]],["smil","application/smil"],["snd",["audio/basic","audio/x-adpcm"]],["snf","application/x-font-snf"],["sol","application/solids"],["spc",["text/x-speech","application/x-pkcs7-certificates"]],["spf","application/vnd.yamaha.smaf-phrase"],["spl",["application/futuresplash","application/x-futuresplash"]],["spot","text/vnd.in3d.spot"],["spp","application/scvp-vp-response"],["spq","application/scvp-vp-request"],["spr","application/x-sprite"],["sprite","application/x-sprite"],["src","application/x-wais-source"],["sru","application/sru+xml"],["srx","application/sparql-results+xml"],["sse","application/vnd.kodak-descriptor"],["ssf","application/vnd.epson.ssf"],["ssi","text/x-server-parsed-html"],["ssm","application/streamingmedia"],["ssml","application/ssml+xml"],["sst",["application/vnd.ms-pkicertstore","application/vnd.ms-pki.certstore"]],["st","application/vnd.sailingtracker.track"],["stc","application/vnd.sun.xml.calc.template"],["std","application/vnd.sun.xml.draw.template"],["step","application/step"],["stf","application/vnd.wt.stf"],["sti","application/vnd.sun.xml.impress.template"],["stk","application/hyperstudio"],["stl",["application/vnd.ms-pkistl","application/sla","application/vnd.ms-pki.stl","application/x-navistyle"]],["stm","text/html"],["stp","application/step"],["str","application/vnd.pg.format"],["stw","application/vnd.sun.xml.writer.template"],["sub","image/vnd.dvb.subtitle"],["sus","application/vnd.sus-calendar"],["sv4cpio","application/x-sv4cpio"],["sv4crc","application/x-sv4crc"],["svc","application/vnd.dvb.service"],["svd","application/vnd.svd"],["svf",["image/vnd.dwg","image/x-dwg"]],["svg","image/svg+xml"],["svr",["x-world/x-svr","application/x-world"]],["swf","application/x-shockwave-flash"],["swi","application/vnd.aristanetworks.swi"],["sxc","application/vnd.sun.xml.calc"],["sxd","application/vnd.sun.xml.draw"],["sxg","application/vnd.sun.xml.writer.global"],["sxi","application/vnd.sun.xml.impress"],["sxm","application/vnd.sun.xml.math"],["sxw","application/vnd.sun.xml.writer"],["t",["text/troff","application/x-troff"]],["talk","text/x-speech"],["tao","application/vnd.tao.intent-module-archive"],["tar","application/x-tar"],["tbk",["application/toolbook","application/x-tbook"]],["tcap","application/vnd.3gpp2.tcap"],["tcl",["text/x-script.tcl","application/x-tcl"]],["tcsh","text/x-script.tcsh"],["teacher","application/vnd.smart.teacher"],["tei","application/tei+xml"],["tex","application/x-tex"],["texi","application/x-texinfo"],["texinfo","application/x-texinfo"],["text",["application/plain","text/plain"]],["tfi","application/thraud+xml"],["tfm","application/x-tex-tfm"],["tgz",["application/gnutar","application/x-compressed"]],["thmx","application/vnd.ms-officetheme"],["tif",["image/tiff","image/x-tiff"]],["tiff",["image/tiff","image/x-tiff"]],["tmo","application/vnd.tmobile-livetv"],["torrent","application/x-bittorrent"],["tpl","application/vnd.groove-tool-template"],["tpt","application/vnd.trid.tpt"],["tr","application/x-troff"],["tra","application/vnd.trueapp"],["trm","application/x-msterminal"],["tsd","application/timestamped-data"],["tsi","audio/tsp-audio"],["tsp",["application/dsptype","audio/tsplayer"]],["tsv","text/tab-separated-values"],["ttf","application/x-font-ttf"],["ttl","text/turtle"],["turbot","image/florian"],["twd","application/vnd.simtech-mindmapper"],["txd","application/vnd.genomatix.tuxedo"],["txf","application/vnd.mobius.txf"],["txt","text/plain"],["ufd","application/vnd.ufdl"],["uil","text/x-uil"],["uls","text/iuls"],["umj","application/vnd.umajin"],["uni","text/uri-list"],["unis","text/uri-list"],["unityweb","application/vnd.unity"],["unv","application/i-deas"],["uoml","application/vnd.uoml+xml"],["uri","text/uri-list"],["uris","text/uri-list"],["ustar",["application/x-ustar","multipart/x-ustar"]],["utz","application/vnd.uiq.theme"],["uu",["application/octet-stream","text/x-uuencode"]],["uue","text/x-uuencode"],["uva","audio/vnd.dece.audio"],["uvh","video/vnd.dece.hd"],["uvi","image/vnd.dece.graphic"],["uvm","video/vnd.dece.mobile"],["uvp","video/vnd.dece.pd"],["uvs","video/vnd.dece.sd"],["uvu","video/vnd.uvvu.mp4"],["uvv","video/vnd.dece.video"],["vcd","application/x-cdlink"],["vcf","text/x-vcard"],["vcg","application/vnd.groove-vcard"],["vcs","text/x-vcalendar"],["vcx","application/vnd.vcx"],["vda","application/vda"],["vdo","video/vdo"],["vew","application/groupwise"],["vis","application/vnd.visionary"],["viv",["video/vivo","video/vnd.vivo"]],["vivo",["video/vivo","video/vnd.vivo"]],["vmd","application/vocaltec-media-desc"],["vmf","application/vocaltec-media-file"],["voc",["audio/voc","audio/x-voc"]],["vos","video/vosaic"],["vox","audio/voxware"],["vqe","audio/x-twinvq-plugin"],["vqf","audio/x-twinvq"],["vql","audio/x-twinvq-plugin"],["vrml",["model/vrml","x-world/x-vrml","application/x-vrml"]],["vrt","x-world/x-vrt"],["vsd",["application/vnd.visio","application/x-visio"]],["vsf","application/vnd.vsf"],["vst","application/x-visio"],["vsw","application/x-visio"],["vtu","model/vnd.vtu"],["vxml","application/voicexml+xml"],["w60","application/wordperfect6.0"],["w61","application/wordperfect6.1"],["w6w","application/msword"],["wad","application/x-doom"],["wav",["audio/wav","audio/x-wav"]],["wax","audio/x-ms-wax"],["wb1","application/x-qpro"],["wbmp","image/vnd.wap.wbmp"],["wbs","application/vnd.criticaltools.wbs+xml"],["wbxml","application/vnd.wap.wbxml"],["wcm","application/vnd.ms-works"],["wdb","application/vnd.ms-works"],["web","application/vnd.xara"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["wg","application/vnd.pmi.widget"],["wgt","application/widget"],["wiz","application/msword"],["wk1","application/x-123"],["wks","application/vnd.ms-works"],["wm","video/x-ms-wm"],["wma","audio/x-ms-wma"],["wmd","application/x-ms-wmd"],["wmf",["windows/metafile","application/x-msmetafile"]],["wml","text/vnd.wap.wml"],["wmlc","application/vnd.wap.wmlc"],["wmls","text/vnd.wap.wmlscript"],["wmlsc","application/vnd.wap.wmlscriptc"],["wmv","video/x-ms-wmv"],["wmx","video/x-ms-wmx"],["wmz","application/x-ms-wmz"],["woff","application/x-font-woff"],["word","application/msword"],["wp","application/wordperfect"],["wp5",["application/wordperfect","application/wordperfect6.0"]],["wp6","application/wordperfect"],["wpd",["application/wordperfect","application/vnd.wordperfect","application/x-wpwin"]],["wpl","application/vnd.ms-wpl"],["wps","application/vnd.ms-works"],["wq1","application/x-lotus"],["wqd","application/vnd.wqd"],["wri",["application/mswrite","application/x-wri","application/x-mswrite"]],["wrl",["model/vrml","x-world/x-vrml","application/x-world"]],["wrz",["model/vrml","x-world/x-vrml"]],["wsc","text/scriplet"],["wsdl","application/wsdl+xml"],["wspolicy","application/wspolicy+xml"],["wsrc","application/x-wais-source"],["wtb","application/vnd.webturbo"],["wtk","application/x-wintalk"],["wvx","video/x-ms-wvx"],["x-png","image/png"],["x3d","application/vnd.hzn-3d-crossword"],["xaf","x-world/x-vrml"],["xap","application/x-silverlight-app"],["xar","application/vnd.xara"],["xbap","application/x-ms-xbap"],["xbd","application/vnd.fujixerox.docuworks.binder"],["xbm",["image/xbm","image/x-xbm","image/x-xbitmap"]],["xdf","application/xcap-diff+xml"],["xdm","application/vnd.syncml.dm+xml"],["xdp","application/vnd.adobe.xdp+xml"],["xdr","video/x-amt-demorun"],["xdssc","application/dssc+xml"],["xdw","application/vnd.fujixerox.docuworks"],["xenc","application/xenc+xml"],["xer","application/patch-ops-error+xml"],["xfdf","application/vnd.adobe.xfdf"],["xfdl","application/vnd.xfdl"],["xgz","xgl/drawing"],["xhtml","application/xhtml+xml"],["xif","image/vnd.xiff"],["xl","application/excel"],["xla",["application/vnd.ms-excel","application/excel","application/x-msexcel","application/x-excel"]],["xlam","application/vnd.ms-excel.addin.macroenabled.12"],["xlb",["application/excel","application/vnd.ms-excel","application/x-excel"]],["xlc",["application/vnd.ms-excel","application/excel","application/x-excel"]],["xld",["application/excel","application/x-excel"]],["xlk",["application/excel","application/x-excel"]],["xll",["application/excel","application/vnd.ms-excel","application/x-excel"]],["xlm",["application/vnd.ms-excel","application/excel","application/x-excel"]],["xls",["application/vnd.ms-excel","application/excel","application/x-msexcel","application/x-excel"]],["xlsb","application/vnd.ms-excel.sheet.binary.macroenabled.12"],["xlsm","application/vnd.ms-excel.sheet.macroenabled.12"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xlt",["application/vnd.ms-excel","application/excel","application/x-excel"]],["xltm","application/vnd.ms-excel.template.macroenabled.12"],["xltx","application/vnd.openxmlformats-officedocument.spreadsheetml.template"],["xlv",["application/excel","application/x-excel"]],["xlw",["application/vnd.ms-excel","application/excel","application/x-msexcel","application/x-excel"]],["xm","audio/xm"],["xml",["application/xml","text/xml","application/atom+xml","application/rss+xml"]],["xmz","xgl/movie"],["xo","application/vnd.olpc-sugar"],["xof","x-world/x-vrml"],["xop","application/xop+xml"],["xpi","application/x-xpinstall"],["xpix","application/x-vnd.ls-xpix"],["xpm",["image/xpm","image/x-xpixmap"]],["xpr","application/vnd.is-xpr"],["xps","application/vnd.ms-xpsdocument"],["xpw","application/vnd.intercon.formnet"],["xslt","application/xslt+xml"],["xsm","application/vnd.syncml+xml"],["xspf","application/xspf+xml"],["xsr","video/x-amt-showrun"],["xul","application/vnd.mozilla.xul+xml"],["xwd",["image/x-xwd","image/x-xwindowdump"]],["xyz",["chemical/x-xyz","chemical/x-pdb"]],["yang","application/yang"],["yin","application/yin+xml"],["z",["application/x-compressed","application/x-compress"]],["zaz","application/vnd.zzazz.deck+xml"],["zip",["application/zip","multipart/x-zip","application/x-zip-compressed","application/x-compressed"]],["zir","application/vnd.zul"],["zmm","application/vnd.handheld-entertainment+xml"],["zoo","application/octet-stream"],["zsh","text/x-script.zsh"]]);b.exports={detectMimeType(a){if(!a)return e;let b=d.parse(a),c=(b.ext.substr(1)||b.name||"").split("?").shift().trim().toLowerCase(),f=g.has(c)?g.get(c):e;return Array.isArray(f)?f[0]:f},detectExtension(a){if(!a)return"bin";let b=a.toLowerCase().trim().split("/"),c=b.shift().trim(),d=b.join("/").trim();if(f.has(c+"/"+d)){let a=f.get(c+"/"+d);return Array.isArray(a)?a[0]:a}return"text"===c?"txt":"bin"}}},54799,(a,b,c)=>{b.exports=a.x("crypto",()=>require("crypto"))},28166,(a,b,c)=>{"use strict";let{Transform:d}=a.r(88947);function e(a){return"string"==typeof a&&(a=Buffer.from(a,"utf-8")),a.toString("base64")}function f(a,b){if(a=(a||"").toString(),b=b||76,a.length<=b)return a;let c=[],d=0,e=1024*b,f=RegExp(".{"+b+"}","g");for(;d{"use strict";let{Transform:d}=a.r(88947),e=[[9],[10],[13],[32,60],[62,126]];function f(a){let b;"string"==typeof a&&(a=Buffer.from(a,"utf-8"));let c="";for(let d=0,f=a.length;d=0;c--){let d=b[c];if(d.length&&(1===d.length&&a===d[0]||2===d.length&&a>=d[0]&&a<=d[1]))return!0}return!1}(b=a[d],e)&&(32!==b&&9!==b||d!==f-1&&10!==a[d+1]&&13!==a[d+1])){c+=String.fromCharCode(b);continue}c+="="+(b<16?"0":"")+b.toString(16).toUpperCase()}return c}function g(a,b){let c,d,e;if(a=(a||"").toString(),b=b||76,a.length<=b)return a;let f=0,g=a.length,h=Math.floor(b/3),i="";for(;fb-h&&(c=e.substr(-h).match(/[ \t.,!?][^ \t.,!?]*$/)))e=e.substr(0,e.length-(c[0].length-1));else if(e.match(/[=][\da-f]{0,2}$/i))for((c=e.match(/[=][\da-f]{0,1}$/i))&&(e=e.substr(0,e.length-c[0].length));e.length>3&&e.length=192)););f+e.length(this._curLine=c,b)))&&(this.outputBytes+=d.length,this.push(d)):(d=f(a),this.outputBytes+=d.length,this.push(d,"ascii")),c()}_flush(a){this._curLine&&(this.outputBytes+=this._curLine.length,this.push(this._curLine,"ascii")),a()}}}},36545,(a,b,c)=>{"use strict";let d=a.r(28166),e=a.r(97017),f=a.r(52412);b.exports={isPlainText:(a,b)=>"string"==typeof a&&!(b?/[\x00-\x08\x0b\x0c\x0e-\x1f"\u0080-\uFFFF]/:/[\x00-\x08\x0b\x0c\x0e-\x1f\u0080-\uFFFF]/).test(a),hasLongerLines:(a,b)=>a.length>131072||RegExp("^.{"+(b+1)+",}","m").test(a),encodeWord(a,b,c){let f;b=(b||"Q").toString().toUpperCase().trim().charAt(0);let g="UTF-8";if((c=c||0)&&c>7+g.length&&(c-=7+g.length),"Q"===b?f=e.encode(a).replace(/[^a-z0-9!*+\-/=]/gi,a=>{let b=a.charCodeAt(0).toString(16).toUpperCase();return" "===a?"_":"="+(1===b.length?"0"+b:b)}):"B"===b&&(f="string"==typeof a?a:d.encode(a),c=c?Math.max(3,(c-c%4)/4*3):0),c&&("B"!==b?f:d.encode(a)).length>c)if("Q"===b)f=this.splitMimeEncodedString(f,c).join("?= =?"+g+"?"+b+"?");else{let a=[],e="";for(let b=0,g=f.length;b1?a.join("?= =?"+g+"?"+b+"?"):a.join("")}else"B"===b&&(f=d.encode(a));return"=?"+g+"?"+b+"?"+f+("?="===f.substr(-2)?"":"?=")},encodeWords(a,b,c,d){c=c||0;let e=a.match(/(?:^|\s)([^\s]*["\u0080-\uFFFF])/);if(!e)return a;if(d)return this.encodeWord(a,b,c);let f=a.match(/(["\u0080-\uFFFF][^\s]*)[^"\u0080-\uFFFF]*$/);if(!f)return a;let g=e.index+(e[0].match(/[^\s]/)||{index:0}).index,h=f.index+(f[1]||"").length;return(g?a.substr(0,g):"")+this.encodeWord(a.substring(g,h),b||"Q",c)+(h{let d=a.params[c];!this.isPlainText(d,!0)||d.length>=75?this.buildHeaderParam(c,d,50).forEach(a=>{/[\s"\\;:/=(),<>@[\]?]|^[-']|'$/.test(a.value)&&"*"!==a.key.substr(-1)?b.push(a.key+"="+JSON.stringify(a.value)):b.push(a.key+"="+a.value)}):/[\s'"\\;:/=(),<>@[\]?]|^-/.test(d)?b.push(c+"="+JSON.stringify(d)):b.push(c+"="+d)}),a.value+(b.length?"; "+b.join("; "):"")},buildHeaderParam(a,b,c){let d,e,f,g,h,i=[],j="string"==typeof b?b:(b||"").toString(),k=0;if(c=c||50,this.isPlainText(b,!0)){if(j.length<=c)return[{key:a,value:j}];(j=j.replace(RegExp(".{"+c+"}","g"),a=>(i.push({line:a}),"")))&&i.push({line:j})}else{if(/[\uD800-\uDBFF]/.test(j)){let a=[];for(g=0,h=j.length;g=55296&&e<=56319&&g=c)i.push({line:f,encoded:a}),f="",k=g-1;else{a=!0,g=k,f="";continue}(f+d).length>=c?(i.push({line:f,encoded:a}),f=d=" "===j[g]?" ":this.safeEncodeURIComponent(j[g]),d===j[g]?(a=!1,k=g-1):a=!0):f+=d}f&&i.push({line:f,encoded:a})}return i.map((b,c)=>({key:a+"*"+c+(b.encoded?"*":""),value:b.line}))},parseHeaderValue(a){let b,c={value:!1,params:{}},d=!1,e="",f="value",g=!1,h=!1;for(let i=0,j=a.length;i{let b,d,e,f;(e=a.match(/(\*(\d+)|\*(\d+)\*|\*)$/))&&(b=a.substr(0,e.index),d=Number(e[2]||e[3])||0,c.params[b]&&"object"==typeof c.params[b]||(c.params[b]={charset:!1,values:[]}),f=c.params[a],0===d&&"*"===e[0].substr(-1)&&(e=f.match(/^([^']*)'[^']*'(.*)$/))&&(c.params[b].charset=e[1]||"iso-8859-1",f=e[2]),c.params[b].values[d]=f,delete c.params[a])}),Object.keys(c.params).forEach(a=>{let b;c.params[a]&&Array.isArray(c.params[a].values)&&(b=c.params[a].values.map(a=>a||"").join(""),c.params[a].charset?c.params[a]="=?"+c.params[a].charset+"?Q?"+b.replace(/[=?_\s]/g,a=>{let b=a.charCodeAt(0).toString(16);return" "===a?"_":"%"+(b.length<2?"0":"")+b}).replace(/%/g,"=")+"?=":c.params[a]=b)}),c},detectExtension:a=>f.detectExtension(a),detectMimeType:a=>f.detectMimeType(a),foldLines(a,b,c){let d,e;a=(a||"").toString(),b=b||76;let f=0,g=a.length,h="";for(;f{let c,d,e,f,g=[];for(b=Math.max(b||0,12);a.length;){for((d=(c=a.substr(0,b)).match(/[=][0-9A-F]?$/i))&&(c=c.substr(0,d.index)),f=!1;!f;)f=!0,(d=a.substr(c.length).match(/^[=]([0-9A-F]{2})/i))&&(e=parseInt(d[1],16))<194&&e>127&&(c=c.substr(0,c.length-3),f=!1);c.length&&g.push(c),a=a.substr(c.length)}return g},encodeURICharComponent:a=>{let b="",c=a.charCodeAt(0).toString(16).toUpperCase();if(c.length%2&&(c="0"+c),c.length>2)for(let a=0,d=c.length/2;a@,;:\\"[\]?=\u007F-\uFFFF]+/g,"")}return a.replace(/[\x00-\x1F *'()<>@,;:\\"[\]?=\u007F-\uFFFF]/g,a=>this.encodeURICharComponent(a))}}},81528,(a,b,c)=>{"use strict";class d{constructor(a){this.str=(a||"").toString(),this.operatorCurrent="",this.operatorExpecting="",this.node=null,this.escaped=!1,this.list=[],this.operators={'"':'"',"(":")","<":">",",":"",":":";",";":""}}tokenize(){let a=[];for(let a=0,b=this.str.length;a{b.value=(b.value||"").toString().trim(),b.value&&a.push(b)}),a}checkChar(a,b){if(this.escaped);else if(a===this.operatorExpecting){this.node={type:"operator",value:a},b&&![" "," ","\r","\n",",",";"].includes(b)&&(this.node.noBreak=!0),this.list.push(this.node),this.node=null,this.operatorExpecting="",this.escaped=!1;return}else if(!this.operatorExpecting&&a in this.operators){this.node={type:"operator",value:a},this.list.push(this.node),this.node=null,this.operatorExpecting=this.operators[a],this.escaped=!1;return}else if(['"',"'"].includes(this.operatorExpecting)&&"\\"===a){this.escaped=!0;return}this.node||(this.node={type:"text",value:""},this.list.push(this.node)),"\n"===a&&(a=" "),(a.charCodeAt(0)>=33||[" "," "].includes(a))&&(this.node.value+=a),this.escaped=!1}}b.exports=function a(b,c){let e=(c=c||{})._depth||0;if(e>50)return[];let f=new d(b).tokenize(),g=[],h=[],i=[];f.forEach(a=>{"operator"===a.type&&(","===a.value||";"===a.value)?(h.length&&g.push(h),h=[]):h.push(a)}),h.length&&g.push(h),g.forEach(b=>{let c=function(b,c){let d=!1,e="text",f=[],g={address:[],comment:[],group:[],text:[],textWasQuoted:[]},h=!1;for(let a=0,c=b.length;a{a.group?b=b.concat(a.group):b.push(a)}),f.push({name:g.text||"",group:b})}else{if(!g.address.length&&g.text.length){for(let a=g.text.length-1;a>=0;a--)if(!g.textWasQuoted[a]&&/^[^@\s]+@[^@\s]+$/.test(g.text[a])){g.address=g.text.splice(a,1),g.textWasQuoted.splice(a,1);break}if(!g.address.length){let a=!1;for(let b=g.text.length-1;b>=0&&(g.textWasQuoted[b]||(g.text[b]=g.text[b].replace(/\s*\b[^@\s]+@[^\s]+\b\s*/,b=>a?b:(g.address=[b.trim()],a=!0," ")).trim(),!a));b--);}}!g.text.length&&g.comment.length&&(g.text=g.comment,g.comment=[]),g.address.length>1&&(g.text=g.text.concat(g.address.splice(1))),g.text=g.text.join(" "),g.address=g.address.join(" ");let a={address:g.address||g.text||"",name:g.text||g.address||""};a.address===a.name&&(/@/.test(a.address||"")?a.name="":a.address=""),f.push(a)}return f}(b,e);c.length&&(i=i.concat(c))});for(let a=i.length-2;a>=0;a--){let b=i[a],c=i[a+1];""===b.address&&b.name&&!b.group&&c.address&&c.name&&(c.name=b.name+", "+c.name,i.splice(a,1))}if(c.flatten){let a=[],b=c=>{c.forEach(c=>{if(c.group)return b(c.group);a.push(c)})};return b(i),a}return i}},91628,(a,b,c)=>{"use strict";let{Transform:d}=a.r(88947);b.exports=class extends d{constructor(){super(),this.lastByte=!1}_transform(a,b,c){a.length&&(this.lastByte=a[a.length-1]),this.push(a),c()}_flush(a){return 10===this.lastByte||(13===this.lastByte?this.push(Buffer.from("\n")):this.push(Buffer.from("\r\n"))),a()}}},69493,(a,b,c)=>{"use strict";let{Transform:d}=a.r(88947);b.exports=class extends d{constructor(a){super(a),this.lastByte=!1}_transform(a,b,c){let d,e=0;for(let b=0,c=a.length;be&&(d=a.slice(e,b),this.push(d)),this.push(Buffer.from("\r\n")),e=b+1);e&&e{"use strict";let{Transform:d}=a.r(88947);b.exports=class extends d{constructor(a){super(a)}_transform(a,b,c){let d,e=0;for(let b=0,c=a.length;b{"use strict";let d=a.r(54799),e=a.r(22734),f=a.r(63755),{PassThrough:g}=a.r(88947),h=a.r(46414),i=a.r(36545),j=a.r(97017),k=a.r(28166),l=a.r(81528),m=a.r(43461),n=a.r(334),o=a.r(91628),p=a.r(69493),q=a.r(74372),r=["From","Sender","To","Cc","Bcc","Reply-To","Date","References"];class s{constructor(a,b){this.nodeCounter=0,b=b||{},this.baseBoundary=b.baseBoundary||d.randomBytes(8).toString("hex"),this.boundaryPrefix=b.boundaryPrefix||"--_NmP",this.disableFileAccess=!!b.disableFileAccess,this.disableUrlAccess=!!b.disableUrlAccess,this.normalizeHeaderKey=b.normalizeHeaderKey,this.date=b.parentNode?null:new Date,this.rootNode=b.rootNode||this,this.keepBcc=!!b.keepBcc,b.filename&&(this.filename=b.filename,a||(a=i.detectMimeType(this.filename.split(".").pop()))),this.textEncoding=(b.textEncoding||"").toString().trim().charAt(0).toUpperCase(),this.parentNode=b.parentNode,this.hostname=b.hostname,this.newline=b.newline,this.childNodes=[],this._nodeId=++this.rootNode.nodeCounter,this._headers=[],this._isPlainText=!1,this._hasLongLines=!1,this._envelope=!1,this._raw=!1,this._transforms=[],this._processFuncs=[],a&&this.setHeader("Content-Type",a)}createChild(a,b){b||"object"!=typeof a||(b=a,a=void 0);let c=new s(a,b);return this.appendChild(c),c}appendChild(a){return a.rootNode!==this.rootNode&&(a.rootNode=this.rootNode,a._nodeId=++this.rootNode.nodeCounter),a.parentNode=this,this.childNodes.push(a),a}replace(a){return a===this?this:(this.parentNode.childNodes.forEach((b,c)=>{b===this&&(a.rootNode=this.rootNode,a.parentNode=this.parentNode,a._nodeId=this._nodeId,this.rootNode=this,this.parentNode=void 0,a.parentNode.childNodes[c]=a)}),a)}remove(){if(!this.parentNode)return this;for(let a=this.parentNode.childNodes.length-1;a>=0;a--)if(this.parentNode.childNodes[a]===this)return this.parentNode.childNodes.splice(a,1),this.parentNode=void 0,this.rootNode=this,this}setHeader(a,b){let c=!1;if(!b&&a&&"object"==typeof a)return a.key&&"value"in a?this.setHeader(a.key,a.value):Array.isArray(a)?a.forEach(a=>{this.setHeader(a.key,a.value)}):Object.keys(a).forEach(b=>{this.setHeader(b,a[b])}),this;let d={key:a=this._normalizeHeaderKey(a),value:b};for(let b=0,e=this._headers.length;b{this.addHeader(a.key,a.value)}):Object.keys(a).forEach(b=>{this.addHeader(b,a[b])}):Array.isArray(b)?b.forEach(b=>{this.addHeader(a,b)}):this._headers.push({key:this._normalizeHeaderKey(a),value:b}),this}getHeader(a){a=this._normalizeHeaderKey(a);for(let b=0,c=this._headers.length;b{this.content.removeListener("error",this._contentErrorHandler),this.content=a},this.content.once("error",this._contentErrorHandler)):"string"==typeof this.content&&(this._isPlainText=i.isPlainText(this.content),this._isPlainText&&i.hasLongerLines(this.content,76)&&(this._hasLongLines=!0)),this}build(a){let b;a||(b=new Promise((b,c)=>{a=h.callbackPromise(b,c)}));let c=this.createReadStream(),d=[],e=0,f=!1;return c.on("readable",()=>{let a;for(;null!==(a=c.read());)d.push(a),e+=a.length}),c.once("error",b=>{if(!f)return f=!0,a(b)}),c.once("end",b=>{if(!f)return f=!0,b&&b.length&&(d.push(b),e+=b.length),a(null,Buffer.concat(d,e))}),b}getTransferEncoding(){let a=!1,b=(this.getHeader("Content-Type")||"").toString().toLowerCase().trim();return this.content&&((a=(this.getHeader("Content-Transfer-Encoding")||"").toString().toLowerCase().trim())&&["base64","quoted-printable"].includes(a)||(/^text\//i.test(b)?a=this._isPlainText&&!this._hasLongLines?"7bit":"string"==typeof this.content||this.content instanceof Buffer?"Q"===this._getTextEncoding(this.content)?"quoted-printable":"base64":"B"===this.textEncoding?"base64":"quoted-printable":/^(multipart|message)\//i.test(b)||(a=a||"base64"))),a}buildHeaders(){let a=this.getTransferEncoding(),b=[];if(a&&this.setHeader("Content-Transfer-Encoding",a),this.filename&&!this.getHeader("Content-Disposition")&&this.setHeader("Content-Disposition","attachment"),this.rootNode===this){this.getHeader("Date")||this.setHeader("Date",this.date.toUTCString().replace(/GMT/,"+0000")),this.messageId(),this.getHeader("MIME-Version")||this.setHeader("MIME-Version","1.0");for(let a=this._headers.length-2;a>=0;a--){let b=this._headers[a];"Content-Type"===b.key&&(this._headers.splice(a,1),this._headers.push(b))}}return this._headers.forEach(a=>{let c,d,e=a.key,f=a.value,g={};if(!f||"object"!=typeof f||r.includes(e)||(Object.keys(f).forEach(a=>{"value"!==a&&(g[a]=f[a])}),(f=(f.value||"").toString()).trim())){if(g.prepared)return void(g.foldLines?b.push(i.foldLines(e+": "+f)):b.push(e+": "+f));switch(a.key){case"Content-Disposition":c=i.parseHeaderValue(f),this.filename&&(c.params.filename=this.filename),f=i.buildHeaderValue(c);break;case"Content-Type":c=i.parseHeaderValue(f),this._handleContentType(c),c.value.match(/^text\/plain\b/)&&"string"==typeof this.content&&/[\u0080-\uFFFF]/.test(this.content)&&(c.params.charset="utf-8"),f=i.buildHeaderValue(c),this.filename&&(((d=this._encodeWords(this.filename))!==this.filename||/[\s'"\\;:/=(),<>@[\]?]|^-/.test(d))&&(d='"'+d+'"'),f+="; name="+d);break;case"Bcc":if(!this.keepBcc)return}if(((f=this._encodeHeaderValue(e,f))||"").toString().trim()){if("function"==typeof this.normalizeHeaderKey){let a=this.normalizeHeaderKey(e,f);a&&"string"==typeof a&&a.length&&(e=a)}b.push(i.foldLines(e+": "+f,76))}}}),b.join("\r\n")}createReadStream(a){let b,c=new g(a=a||{}),d=c;this.stream(c,a,a=>{a?d.emit("error",a):c.end()});for(let a=0,c=this._transforms.length;a{b.emit("error",a)}),d=d.pipe(b);b=new o,d.once("error",a=>{b.emit("error",a)}),d=d.pipe(b);for(let a=0,c=this._processFuncs.length;ab.emit("error",a)),b}return d}transform(a){this._transforms.push(a)}processFunc(a){this._processFuncs.push(a)}stream(a,b,c){let d,e,f=this.getTransferEncoding(),g=!1,h=a=>{g||(g=!0,c(a))},i=()=>{let c=0,d=()=>{if(c>=this.childNodes.length)return a.write("\r\n--"+this.boundary+"--\r\n"),h();let e=this.childNodes[c++];a.write((c>1?"\r\n":"")+"--"+this.boundary+"\r\n"),e.stream(a,b,a=>{if(a)return h(a);setImmediate(d)})};if(!this.multipart)return h();setImmediate(d)},l=()=>{if(this.content){if("[object Error]"===Object.prototype.toString.call(this.content))return h(this.content);"function"==typeof this.content.pipe&&(this.content.removeListener("error",this._contentErrorHandler),this._contentErrorHandler=a=>h(a),this.content.once("error",this._contentErrorHandler));let c=()=>{["quoted-printable","base64"].includes(f)?((d=new("base64"===f?k:j).Encoder(b)).pipe(a,{end:!1}),d.once("end",i),d.once("error",a=>h(a)),(e=this._getStream(this.content)).pipe(d)):((e=this._getStream(this.content)).pipe(a,{end:!1}),e.once("end",i)),e.once("error",a=>h(a))};if(this.content._resolve){let a=[],b=0,d=!1,e=this._getStream(this.content);e.on("error",a=>{d||(d=!0,h(a))}),e.on("readable",()=>{let c;for(;null!==(c=e.read());)a.push(c),b+=c.length}),e.on("end",()=>{d||(d=!0,this.content._resolve=!1,this.content._resolvedValue=Buffer.concat(a,b),setImmediate(c))})}else setImmediate(c);return}return setImmediate(i)};this._raw?setImmediate(()=>{if("[object Error]"===Object.prototype.toString.call(this._raw))return h(this._raw);"function"==typeof this._raw.pipe&&this._raw.removeListener("error",this._contentErrorHandler);let b=this._getStream(this._raw);b.pipe(a,{end:!1}),b.on("error",b=>a.emit("error",b)),b.on("end",i)}):(a.write(this.buildHeaders()+"\r\n\r\n"),setImmediate(l))}setEnvelope(a){let b;this._envelope={from:!1,to:[]},a.from&&(b=[],this._convertAddresses(this._parseAddresses(a.from),b),(b=b.filter(a=>a&&a.address)).length&&b[0]&&(this._envelope.from=b[0].address)),["to","cc","bcc"].forEach(b=>{a[b]&&this._convertAddresses(this._parseAddresses(a[b]),this._envelope.to)}),this._envelope.to=this._envelope.to.map(a=>a.address).filter(a=>a);let c=["to","cc","bcc","from"];return Object.keys(a).forEach(b=>{c.includes(b)||(this._envelope[b]=a[b])}),this}getAddresses(){let a={};return this._headers.forEach(b=>{let c=b.key.toLowerCase();["from","sender","reply-to","to","cc","bcc"].includes(c)&&(Array.isArray(a[c])||(a[c]=[]),this._convertAddresses(this._parseAddresses(b.value),a[c]))}),a}getEnvelope(){if(this._envelope)return this._envelope;let a={from:!1,to:[]};return this._headers.forEach(b=>{let c=[];"From"===b.key||!a.from&&["Reply-To","Sender"].includes(b.key)?(this._convertAddresses(this._parseAddresses(b.value),c),c.length&&c[0]&&(a.from=c[0].address)):["To","Cc","Bcc"].includes(b.key)&&this._convertAddresses(this._parseAddresses(b.value),a.to)}),a.to=a.to.map(a=>a.address),a}messageId(){let a=this.getHeader("Message-ID");return a||(a=this._generateMessageId(),this.setHeader("Message-ID",a)),a}setRaw(a){return this._raw=a,this._raw&&"function"==typeof this._raw.pipe&&(this._contentErrorHandler=a=>{this._raw.removeListener("error",this._contentErrorHandler),this._raw=a},this._raw.once("error",this._contentErrorHandler)),this}_getStream(a){let b;return a._resolvedValue?(b=new g,setImmediate(()=>{try{b.end(a._resolvedValue)}catch(a){b.emit("error",a)}}),b):"function"==typeof a.pipe?a:a&&"string"==typeof a.path&&!a.href?this.disableFileAccess?(b=new g,setImmediate(()=>{let c=Error("File access rejected for "+a.path);c.code=n.EFILEACCESS,b.emit("error",c)}),b):e.createReadStream(a.path):a&&"string"==typeof a.href?this.disableUrlAccess?(b=new g,setImmediate(()=>{let c=Error("Url access rejected for "+a.href);c.code=n.EURLACCESS,b.emit("error",c)}),b):m(a.href,{headers:a.httpHeaders,tls:a.tls}):(b=new g,setImmediate(()=>{try{b.end(a||"")}catch(a){b.emit("error",a)}}),b)}_parseAddresses(a){return[].concat.apply([],[].concat(a).map(a=>a&&a.address?(a.address=this._normalizeAddress(a.address),a.name=a.name||"",[a]):l(a)))}_normalizeHeaderKey(a){return a=(a||"").toString().replace(/\r?\n|\r/g," ").trim().toLowerCase().replace(/^X-SMTPAPI$|^(MIME|DKIM|ARC|BIMI)\b|^[a-z]|-(SPF|FBL|ID|MD5)$|-[a-z]/gi,a=>a.toUpperCase()).replace(/^Content-Features$/i,"Content-features")}_handleContentType(a){this.contentType=a.value.trim().toLowerCase(),this.multipart=!!/^multipart\//i.test(this.contentType)&&this.contentType.substr(this.contentType.indexOf("/")+1),this.multipart?this.boundary=a.params.boundary=a.params.boundary||this.boundary||this._generateBoundary():this.boundary=!1}_generateBoundary(){return this.rootNode.boundaryPrefix+"-"+this.rootNode.baseBoundary+"-Part_"+this._nodeId}_encodeHeaderValue(a,b){switch(a=this._normalizeHeaderKey(a)){case"From":case"Sender":case"To":case"Cc":case"Bcc":case"Reply-To":return this._convertAddresses(this._parseAddresses(b));case"Message-ID":case"In-Reply-To":case"Content-Id":return"<"!==(b=(b||"").toString().replace(/\r?\n|\r/g," ")).charAt(0)&&(b="<"+b),">"!==b.charAt(b.length-1)&&(b+=">"),b;case"References":return(b=[].concat.apply([],[].concat(b||"").map(a=>(a=(a||"").toString().replace(/\r?\n|\r/g," ").trim()).replace(/<[^>]*>/g,a=>a.replace(/\s/g,"")).split(/\s+/))).map(a=>("<"!==a.charAt(0)&&(a="<"+a),">"!==a.charAt(a.length-1)&&(a+=">"),a))).join(" ").trim();case"Date":if("[object Date]"===Object.prototype.toString.call(b))return b.toUTCString().replace(/GMT/,"+0000");return b=(b||"").toString().replace(/\r?\n|\r/g," "),this._encodeWords(b);case"Content-Type":case"Content-Disposition":return(b||"").toString().replace(/\r?\n|\r/g," ");default:return b=(b||"").toString().replace(/\r?\n|\r/g," "),this._encodeWords(b)}}_convertAddresses(a,b){let c=[];return b=b||[],[].concat(a||[]).forEach(a=>{if(a.address)a.address=this._normalizeAddress(a.address),a.name?c.push(`${this._encodeAddressName(a.name)} <${a.address}>`):c.push(a.address.indexOf(" ")>=0?`<${a.address}>`:`${a.address}`),b.some(b=>b.address===a.address)||b.push(a);else if(a.group){let d=(a.group.length?this._convertAddresses(a.group,b):"").trim();c.push(`${this._encodeAddressName(a.name)}:${d};`)}}),c.join(", ")}_normalizeAddress(a){let b=(a=(a||"").toString().replace(/[\x00-\x1F<>]+/g," ").trim()).lastIndexOf("@");if(b<0)return a;let c=a.substr(0,b),d=a.substr(b+1),e=d;try{e=/[\x80-\uFFFF]/.test(c)?f.toUnicode(d.toLowerCase()):f.toASCII(d.toLowerCase())}catch(a){}return c.indexOf(" ")>=0&&('"'!==c.charAt(0)&&(c='"'+c),'"'!==c.substr(-1)&&(c+='"')),`${c}@${e}`}_encodeAddressName(a){if(!/^[\w ]*$/.test(a))if(/^[\x20-\x7e]*$/.test(a))return'"'+a.replace(/([\\"])/g,"\\$1")+'"';else return i.encodeWord(a,this._getTextEncoding(a),52);return a}_encodeWords(a){return i.encodeWords(a,this._getTextEncoding(a),52,!0)}_getTextEncoding(a){if(a=(a||"").toString(),this.textEncoding)return this.textEncoding;let b=0,c=0;for(let d=0,e=a.length;d=0&&e<=8||11===e||12===e||e>=14&&e<=31||e>=128?b++:(e>=65&&e<=90||e>=97&&e<=122)&&c++}return ba+"-"+d.randomBytes(b).toString("hex"),d.randomBytes(4).toString("hex"))+"@"+(this.getEnvelope().from||this.hostname||"localhost").split("@").pop()+">"}}b.exports=s},59338,(a,b,c)=>{"use strict";let d=a.r(33752),e=a.r(36545),{parseDataURI:f}=a.r(46414);b.exports=class{constructor(a){this.mail=a||{},this.message=!1}compile(){return this._alternatives=this.getAlternatives(),this._htmlNode=this._alternatives.filter(a=>/^text\/html\b/i.test(a.contentType)).pop(),this._attachments=this.getAttachments(!!this._htmlNode),this._useRelated=!!(this._htmlNode&&this._attachments.related.length),this._useAlternative=this._alternatives.length>1,this._useMixed=this._attachments.attached.length>1||this._alternatives.length&&1===this._attachments.attached.length,this.mail.raw?this.message=new d("message/rfc822",{newline:this.mail.newline}).setRaw(this.mail.raw):this._useMixed?this.message=this._createMixed():this._useAlternative?this.message=this._createAlternative():this._useRelated?this.message=this._createRelated():this.message=this._createContentNode(!1,[].concat(this._alternatives||[]).concat(this._attachments.attached||[]).shift()||{contentType:"text/plain",content:""}),this.mail.headers&&this.message.addHeader(this.mail.headers),["from","sender","to","cc","bcc","reply-to","in-reply-to","references","subject","message-id","date"].forEach(a=>{let b=a.replace(/-(\w)/g,(a,b)=>b.toUpperCase());this.mail[b]&&this.message.setHeader(a,this.mail[b])}),this.mail.envelope&&this.message.setEnvelope(this.mail.envelope),this.message.messageId(),this.message}getAttachments(a){let b,c=[].concat(this.mail.attachments||[]).map((a,b)=>{/^data:/i.test(a.path||a.href)&&(a=this._processDataUrl(a));let c=a.contentType||e.detectMimeType(a.filename||a.path||a.href||"bin"),d=/^image\//i.test(c),f=/^message\//i.test(c),g={contentType:c,contentDisposition:a.contentDisposition||(f||d&&a.cid?"inline":"attachment"),contentTransferEncoding:"contentTransferEncoding"in a?a.contentTransferEncoding:f?"8bit":"base64"};return a.filename?g.filename=a.filename:!f&&!1!==a.filename&&(g.filename=(a.path||a.href||"").split("/").pop().split("?").shift()||"attachment-"+(b+1),0>g.filename.indexOf(".")&&(g.filename+="."+e.detectExtension(g.contentType))),/^https?:\/\//i.test(a.path)&&(a.href=a.path,a.path=void 0),a.cid&&(g.cid=a.cid),a.raw?g.raw=a.raw:a.path?g.content={path:a.path}:a.href?g.content={href:a.href,httpHeaders:a.httpHeaders,tls:a.tls}:g.content=a.content||"",a.encoding&&(g.encoding=a.encoding),a.headers&&(g.headers=a.headers),g});return(this.mail.icalEvent&&((b=Object.assign({},this._getIcalEvent())).contentType="application/ics",b.headers||(b.headers={}),b.filename=b.filename||"invite.ics",b.headers["Content-Disposition"]="attachment",b.headers["Content-Transfer-Encoding"]="base64"),a)?{attached:c.filter(a=>!a.cid).concat(b||[]),related:c.filter(a=>!!a.cid)}:{attached:c.concat(b||[]),related:[]}}_getIcalEvent(){if(!this._icalEvent){let a;a="object"==typeof this.mail.icalEvent&&(this.mail.icalEvent.content||this.mail.icalEvent.path||this.mail.icalEvent.href||this.mail.icalEvent.raw)?Object.assign({},this.mail.icalEvent):{content:this.mail.icalEvent},/^data:/i.test(a.path||a.href)&&(a=this._processDataUrl(a)),/^https?:\/\//i.test(a.path)&&(a.href=a.path,a.path=void 0),!a.raw&&(a.path?(a.content={path:a.path},a.path=void 0):a.href&&(a.content={href:a.href,httpHeaders:a.httpHeaders},a.href=void 0)),a.content&&"object"==typeof a.content&&(a.content._resolve=!0),this._icalEvent=a}return this._icalEvent}getAlternatives(){let a,b,c,d,f,g=[];return this.mail.text&&((a="object"==typeof this.mail.text&&(this.mail.text.content||this.mail.text.path||this.mail.text.href||this.mail.text.raw)?this.mail.text:{content:this.mail.text}).contentType="text/plain; charset=utf-8"),this.mail.watchHtml&&((c="object"==typeof this.mail.watchHtml&&(this.mail.watchHtml.content||this.mail.watchHtml.path||this.mail.watchHtml.href||this.mail.watchHtml.raw)?this.mail.watchHtml:{content:this.mail.watchHtml}).contentType="text/watch-html; charset=utf-8"),this.mail.amp&&((d="object"==typeof this.mail.amp&&(this.mail.amp.content||this.mail.amp.path||this.mail.amp.href||this.mail.amp.raw)?this.mail.amp:{content:this.mail.amp}).contentType="text/x-amp-html; charset=utf-8"),this.mail.icalEvent&&((f=Object.assign({},this._getIcalEvent())).filename=!1,f.contentType="text/calendar; charset=utf-8; method="+(f.method||"PUBLISH").toString().trim().toUpperCase(),f.headers||(f.headers={})),this.mail.html&&((b="object"==typeof this.mail.html&&(this.mail.html.content||this.mail.html.path||this.mail.html.href||this.mail.html.raw)?this.mail.html:{content:this.mail.html}).contentType="text/html; charset=utf-8"),[].concat(a||[]).concat(c||[]).concat(d||[]).concat(b||[]).concat(f||[]).concat(this.mail.alternatives||[]).forEach(a=>{/^data:/i.test(a.path||a.href)&&(a=this._processDataUrl(a));let b={contentType:a.contentType||e.detectMimeType(a.filename||a.path||a.href||"txt"),contentTransferEncoding:a.contentTransferEncoding};a.filename&&(b.filename=a.filename),/^https?:\/\//i.test(a.path)&&(a.href=a.path,a.path=void 0),a.raw?b.raw=a.raw:a.path?b.content={path:a.path}:a.href?b.content={href:a.href}:b.content=a.content||"",a.encoding&&(b.encoding=a.encoding),a.headers&&(b.headers=a.headers),g.push(b)}),g}_createMixed(a){let b=a?a.createChild("multipart/mixed",{disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline}):new d("multipart/mixed",{baseBoundary:this.mail.baseBoundary,textEncoding:this.mail.textEncoding,boundaryPrefix:this.mail.boundaryPrefix,disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline});return this._useAlternative?this._createAlternative(b):this._useRelated&&this._createRelated(b),[].concat(!this._useAlternative&&this._alternatives||[]).concat(this._attachments.attached||[]).forEach(a=>{this._useRelated&&a===this._htmlNode||this._createContentNode(b,a)}),b}_createAlternative(a){let b=a?a.createChild("multipart/alternative",{disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline}):new d("multipart/alternative",{baseBoundary:this.mail.baseBoundary,textEncoding:this.mail.textEncoding,boundaryPrefix:this.mail.boundaryPrefix,disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline});return this._alternatives.forEach(a=>{this._useRelated&&this._htmlNode===a?this._createRelated(b):this._createContentNode(b,a)}),b}_createRelated(a){let b=a?a.createChild('multipart/related; type="text/html"',{disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline}):new d('multipart/related; type="text/html"',{baseBoundary:this.mail.baseBoundary,textEncoding:this.mail.textEncoding,boundaryPrefix:this.mail.boundaryPrefix,disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline});return this._createContentNode(b,this._htmlNode),this._attachments.related.forEach(a=>this._createContentNode(b,a)),b}_createContentNode(a,b){(b=b||{}).content=b.content||"";let c=(b.encoding||"utf8").toString().toLowerCase().replace(/[-_\s]/g,""),e=a?a.createChild(b.contentType,{filename:b.filename,textEncoding:this.mail.textEncoding,disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline}):new d(b.contentType,{filename:b.filename,baseBoundary:this.mail.baseBoundary,textEncoding:this.mail.textEncoding,boundaryPrefix:this.mail.boundaryPrefix,disableUrlAccess:this.mail.disableUrlAccess,disableFileAccess:this.mail.disableFileAccess,normalizeHeaderKey:this.mail.normalizeHeaderKey,newline:this.mail.newline});return b.headers&&e.addHeader(b.headers),b.cid&&e.setHeader("Content-Id","<"+b.cid.replace(/[<>]/g,"")+">"),b.contentTransferEncoding?e.setHeader("Content-Transfer-Encoding",b.contentTransferEncoding):this.mail.encoding&&/^text\//i.test(b.contentType)&&e.setHeader("Content-Transfer-Encoding",this.mail.encoding),(!/^text\//i.test(b.contentType)||b.contentDisposition)&&e.setHeader("Content-Disposition",b.contentDisposition||(b.cid&&/^image\//i.test(b.contentType)?"inline":"attachment")),"string"!=typeof b.content||["utf8","usascii","ascii"].includes(c)||(b.content=Buffer.from(b.content,c)),b.raw?e.setRaw(b.raw):e.setContent(b.content),e}_processDataUrl(a){let b,c=a.path||a.href;if(!c||"string"!=typeof c||!c.startsWith("data:"))return a;if(c.length>0x3200000){let b="application/octet-stream",d=c.indexOf(",");if(d>0&&d<200){let a=c.substring(5,d).split(";");a[0]&&a[0].includes("/")&&(b=a[0].trim())}return Object.assign({},a,{path:!1,href:!1,content:Buffer.alloc(0),contentType:a.contentType||b})}try{b=f(c)}catch(b){return a}return b&&(a.content=b.data,a.contentType=a.contentType||b.contentType,"path"in a&&(a.path=!1),"href"in a&&(a.href=!1)),a}}},53355,(a,b,c)=>{"use strict";let{Transform:d}=a.r(88947);b.exports=class extends d{constructor(a){super(a),this.lastBytes=Buffer.alloc(4),this.headersParsed=!1,this.headerBytes=0,this.headerChunks=[],this.rawHeaders=!1,this.bodySize=0}updateLastBytes(a){let b=this.lastBytes.length,c=Math.min(a.length,b);for(let a=0,d=b-c;a1&&(d-2c){let b=a.slice(c);this.bodySize+=b.length,setImmediate(()=>this.push(b))}return!1}return this.headerBytes+=a.length,this.headerChunks.push(a),this.updateLastBytes(a),!1}_transform(a,b,c){let d;if(!a||!a.length)return c();"string"==typeof a&&(a=Buffer.from(a,b));try{d=this.checkHeaders(a)}catch(a){return c(a)}d&&(this.bodySize+=a.length,this.push(a)),setImmediate(c)}_flush(a){if(this.headerChunks){let a=Buffer.concat(this.headerChunks,this.headerBytes);this.bodySize+=a.length,this.push(a),this.headerChunks=null}a()}parseHeaders(){let a=(this.rawHeaders||"").toString().split(/\r?\n/);for(let b=a.length-1;b>0;b--)/^\s/.test(a[b])&&(a[b-1]+="\n"+a[b],a.splice(b,1));return a.filter(a=>a.trim()).map(a=>({key:a.substr(0,a.indexOf(":")).trim().toLowerCase(),line:a}))}}},49439,(a,b,c)=>{"use strict";let{Transform:d}=a.r(88947),e=a.r(54799);b.exports=class extends d{constructor(a){super(),a=a||{},this.chunkBuffer=[],this.chunkBufferLen=0,this.bodyHash=e.createHash(a.hashAlgo||"sha1"),this.remainder="",this.byteLength=0,this.debug=a.debug,this._debugBody=!!a.debug&&[]}updateHash(a){let b,c="",d="file";for(let b=a.length-1;b>=0;b--){let e=a[b];if("file"===d&&(10===e||13===e));else if("file"===d&&(9===e||32===e))d="line";else if("line"===d&&(9===e||32===e));else if(("file"===d||"line"===d)&&(d="body",b===a.length-1))break;if(0===b){if("file"===d&&(!this.remainder||/[\r\n]$/.test(this.remainder))||"line"===d&&(!this.remainder||/[ \t]$/.test(this.remainder))){this.remainder+=a.toString("binary");return}else if("line"===d||"file"===d){c=a.toString("binary"),a=!1;break}}if("body"===d){c=a.slice(b+1).toString("binary"),a=a.slice(0,b+1);break}}let e=!!this.remainder;if(a&&!e){for(let b=0,c=a.length;b2&&this.bodyHash.update(Buffer.from("\r\n")),this.byteLength||this.push(Buffer.from("\r\n")),this.emit("hash",this.bodyHash.digest("base64"),!!this.debug&&Buffer.concat(this._debugBody)),a()}}},24225,(a,b,c)=>{"use strict";let d=a.r(63755),e=a.r(36545),f=a.r(54799);function g(a,b,c){let d=new Set,e=new Set,f=new Map;(c||"").toLowerCase().split(":").forEach(a=>{e.add(a.trim())}),(b||"").toLowerCase().split(":").filter(a=>!e.has(a.trim())).forEach(a=>{d.add(a.trim())});for(let b=a.length-1;b>=0;b--){let c=a[b];d.has(c.key)&&!f.has(c.key)&&f.set(c.key,h(c.line))}let g=[],i=[];return d.forEach(a=>{f.has(a)&&(i.push(a),g.push(a+":"+f.get(a)))}),{headers:g.join("\r\n")+"\r\n",fieldNames:i.join(":")}}function h(a){return a.substr(a.indexOf(":")+1).replace(/\r?\n/g,"").replace(/\s+/g," ").trim()}b.exports=(a,b,c,i)=>{var j,k,l,m,n;let o,p,q=g(a,(i=i||{}).headerFieldNames||"From:Sender:Reply-To:Subject:Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive",i.skipFields),r=(j=i.domainName,k=i.keySelector,l=q.fieldNames,m=b,n=c,p=["v=1","a=rsa-"+m,"c=relaxed/relaxed","d="+d.toASCII(j),"q=dns/txt","s="+k,"bh="+n,"h="+l].join("; "),e.foldLines("DKIM-Signature: "+p,76)+";\r\n b=");q.headers+="dkim-signature:"+h(r);let s=f.createSign(("rsa-"+b).toUpperCase());s.update(q.headers);try{o=s.sign(i.privateKey,"base64")}catch(a){return!1}return r+o.replace(/(^.{73}|.{75}(?!\r?\n|\r))/g,"$&\r\n ").trim()},b.exports.relaxedHeaders=g},19688,(a,b,c)=>{"use strict";let d=a.r(53355),e=a.r(49439),f=a.r(24225),{PassThrough:g}=a.r(88947),h=a.r(22734),i=a.r(14747),j=a.r(54799);class k{constructor(a,b,c,d){this.options=a||{},this.keys=b,this.cacheTreshold=Number(this.options.cacheTreshold)||2097152,this.hashAlgo=this.options.hashAlgo||"sha256",this.cacheDir=this.options.cacheDir||!1,this.chunks=[],this.chunklen=0,this.readPos=0,this.cachePath=!!this.cacheDir&&i.join(this.cacheDir,"message."+Date.now()+"-"+j.randomBytes(14).toString("hex")),this.cache=!1,this.headers=!1,this.bodyHash=!1,this.parser=!1,this.relaxedBody=!1,this.input=c,this.output=d,this.output.usingCache=!1,this.hasErrored=!1,this.input.on("error",a=>{this.hasErrored=!0,this.cleanup(),d.emit("error",a)})}cleanup(){this.cache&&this.cachePath&&h.unlink(this.cachePath,()=>!1)}createReadCache(){this.cache=h.createReadStream(this.cachePath),this.cache.once("error",a=>{this.cleanup(),this.output.emit("error",a)}),this.cache.once("close",()=>{this.cleanup()}),this.cache.pipe(this.output)}sendNextChunk(){if(this.hasErrored)return;if(this.readPos>=this.chunks.length)return this.cache?this.createReadCache():this.output.end();let a=this.chunks[this.readPos++];if(!1===this.output.write(a))return this.output.once("drain",()=>{this.sendNextChunk()});setImmediate(()=>this.sendNextChunk())}sendSignedOutput(){let a=0,b=()=>{if(a>=this.keys.length)return this.output.write(this.parser.rawHeaders),setImmediate(()=>this.sendNextChunk());let c=this.keys[a++],d=f(this.headers,this.hashAlgo,this.bodyHash,{domainName:c.domainName,keySelector:c.keySelector,privateKey:c.privateKey,headerFieldNames:this.options.headerFieldNames,skipFields:this.options.skipFields});return d&&this.output.write(Buffer.from(d+"\r\n")),setImmediate(b)};if(this.bodyHash&&this.headers)return b();this.output.write(this.parser.rawHeaders),this.sendNextChunk()}createWriteCache(){this.output.usingCache=!0,this.cache=h.createWriteStream(this.cachePath),this.cache.once("error",a=>{this.cleanup(),this.relaxedBody.unpipe(this.cache),this.relaxedBody.on("readable",()=>{for(;null!==this.relaxedBody.read(););}),this.hasErrored=!0,this.output.emit("error",a)}),this.cache.once("close",()=>{this.sendSignedOutput()}),this.relaxedBody.removeAllListeners("readable"),this.relaxedBody.pipe(this.cache)}signStream(){this.parser=new d,this.relaxedBody=new e({hashAlgo:this.hashAlgo}),this.parser.on("headers",a=>{this.headers=a}),this.relaxedBody.on("hash",a=>{this.bodyHash=a}),this.relaxedBody.on("readable",()=>{let a;if(!this.cache){for(;null!==(a=this.relaxedBody.read());)if(this.chunks.push(a),this.chunklen+=a.length,this.chunklen>=this.cacheTreshold&&this.cachePath)return this.createWriteCache()}}),this.relaxedBody.on("end",()=>{this.cache||this.sendSignedOutput()}),this.parser.pipe(this.relaxedBody),setImmediate(()=>this.input.pipe(this.parser))}}b.exports=class{constructor(a){this.options=a||{},this.keys=[].concat(this.options.keys||{domainName:a.domainName,keySelector:a.keySelector,privateKey:a.privateKey})}sign(a,b){let c=new g,d=a,e=!1;Buffer.isBuffer(a)?(e=a,d=new g):"string"==typeof a&&(e=Buffer.from(a),d=new g);let f=this.options;b&&Object.keys(b).length&&(f=Object.assign({},b,this.options));let h=new k(f,this.keys,d,c);return setImmediate(()=>{h.signStream(),e&&setImmediate(()=>{d.end(e)})}),c}}},55004,(a,b,c)=>{b.exports=a.x("tls",()=>require("tls"))},3276,(a,b,c)=>{"use strict";let d=a.r(4446),e=a.r(55004),f=a.r(52034),g=a.r(334);b.exports=function a(b,c,h,i,j){let k,l;"function"==typeof i&&(j=i,i={}),i=i||{};let m=f.parse(b),n={host:m.hostname,port:Number(m.port)?Number(m.port):"https:"===m.protocol?443:80};"https:"===m.protocol?(n.rejectUnauthorized=!1!==i.rejectUnauthorized,k=e.connect.bind(e)):k=d.connect.bind(d);let o=!1,p=a=>{if(!o){o=!0;try{l.destroy()}catch(a){}j(a)}},q=()=>{let a=Error("Proxy socket timed out");a.code="ETIMEDOUT",p(a)};(l=k(n,()=>{if(o)return;let a={Host:h+":"+c,Connection:"close"};m.auth&&(a["Proxy-Authorization"]="Basic "+Buffer.from(m.auth).toString("base64")),l.write("CONNECT "+h+":"+c+" HTTP/1.1\r\n"+Object.keys(a).map(b=>b+": "+a[b]).join("\r\n")+"\r\n\r\n");let b="",d=a=>{let c,e;if(!o&&(b+=a.toString("binary"),c=b.match(/\r\n\r\n/))){if(l.removeListener("data",d),e=b.substr(c.index+c[0].length),b=b.substr(0,c.index),e&&l.unshift(Buffer.from(e,"binary")),o=!0,!(c=b.match(/^HTTP\/\d+\.\d+ (\d+)/i))||"2"!==(c[1]||"").charAt(0)){try{l.destroy()}catch(a){}let a=Error("Invalid response from proxy"+(c&&": "+c[1]||""));return a.code=g.EPROXY,j(a)}return l.removeListener("error",p),l.removeListener("timeout",q),l.setTimeout(0),j(null,l)}};l.on("data",d)})).setTimeout(a.timeout||3e4),l.on("timeout",q),l.once("error",p)}},63118,(a,b,c)=>{"use strict";let d=a.r(46414),e=a.r(33752),f=a.r(36545);b.exports=class{constructor(a,b){this.mailer=a,this.data={},this.message=null,b=b||{};const c=a.options||{},d=a._defaults||{};Object.assign(this.data,b),this.data.headers=this.data.headers||{},Object.keys(d).forEach(a=>{a in this.data?"headers"===a&&Object.keys(d.headers).forEach(a=>{a in this.data.headers||(this.data.headers[a]=d.headers[a])}):this.data[a]=d[a]}),["disableFileAccess","disableUrlAccess","normalizeHeaderKey"].forEach(a=>{a in c&&(this.data[a]=c[a])})}resolveContent(...a){return d.resolveContent(...a)}resolveAll(a){let b=[[this.data,"html"],[this.data,"text"],[this.data,"watchHtml"],[this.data,"amp"],[this.data,"icalEvent"]];this.data.alternatives&&this.data.alternatives.length&&this.data.alternatives.forEach((a,c)=>{b.push([this.data.alternatives,c])}),this.data.attachments&&this.data.attachments.length&&this.data.attachments.forEach((a,c)=>{!a.filename&&(a.filename=(a.path||a.href||"").split("/").pop().split("?").shift()||"attachment-"+(c+1),0>a.filename.indexOf(".")&&(a.filename+="."+f.detectExtension(a.contentType))),a.contentType||(a.contentType=f.detectMimeType(a.filename||a.path||a.href||"bin")),b.push([this.data.attachments,c])});let c=new e;["from","to","cc","bcc","sender","replyTo"].forEach(a=>{let b;this.message?b=[].concat(c._parseAddresses(this.message.getHeader("replyTo"===a?"reply-to":a))||[]):this.data[a]&&(b=[].concat(c._parseAddresses(this.data[a])||[])),b&&b.length?this.data[a]=b:a in this.data&&(this.data[a]=null)}),["from","sender"].forEach(a=>{this.data[a]&&(this.data[a]=this.data[a].shift())});let g=0,h=()=>{if(g>=b.length)return a(null,this.data);let c=b[g++];if(!c[0]||!c[0][c[1]])return h();d.resolveContent(...c,{disableFileAccess:this.data.disableFileAccess,disableUrlAccess:this.data.disableUrlAccess},(b,d)=>{if(b)return a(b);let e={content:d};c[0][c[1]]&&"object"==typeof c[0][c[1]]&&!Buffer.isBuffer(c[0][c[1]])&&Object.keys(c[0][c[1]]).forEach(a=>{a in e||["content","path","href","raw"].includes(a)||(e[a]=c[0][c[1]][a])}),c[0][c[1]]=e,h()})};setImmediate(()=>h())}normalize(a){let b=this.data.envelope||this.message.getEnvelope(),c=this.message.messageId();this.resolveAll((d,e)=>d?a(d):(e.envelope=b,e.messageId=c,["html","text","watchHtml","amp"].forEach(a=>{e[a]&&e[a].content&&("string"==typeof e[a].content?e[a]=e[a].content:Buffer.isBuffer(e[a].content)&&(e[a]=e[a].content.toString()))}),e.icalEvent&&Buffer.isBuffer(e.icalEvent.content)&&(e.icalEvent.content=e.icalEvent.content.toString("base64"),e.icalEvent.encoding="base64"),e.alternatives&&e.alternatives.length&&e.alternatives.forEach(a=>{a&&a.content&&Buffer.isBuffer(a.content)&&(a.content=a.content.toString("base64"),a.encoding="base64")}),e.attachments&&e.attachments.length&&e.attachments.forEach(a=>{a&&a.content&&Buffer.isBuffer(a.content)&&(a.content=a.content.toString("base64"),a.encoding="base64")}),e.normalizedHeaders={},Object.keys(e.headers||{}).forEach(a=>{let b=[].concat(e.headers[a]||[]).shift();(b=b&&b.value||b)&&(["references","in-reply-to","message-id","content-id"].includes(a)&&(b=this.message._encodeHeaderValue(a,b)),e.normalizedHeaders[a]=b)}),e.list&&"object"==typeof e.list&&this._getListHeaders(e.list).forEach(a=>{e.normalizedHeaders[a.key]=a.value.map(a=>a&&a.value||a).join(", ")}),e.references&&(e.normalizedHeaders.references=this.message._encodeHeaderValue("references",e.references)),e.inReplyTo&&(e.normalizedHeaders["in-reply-to"]=this.message._encodeHeaderValue("in-reply-to",e.inReplyTo)),a(null,e)))}setMailerHeader(){this.message&&this.data.xMailer&&this.message.setHeader("X-Mailer",this.data.xMailer)}setPriorityHeaders(){if(this.message&&this.data.priority)switch((this.data.priority||"").toString().toLowerCase()){case"high":this.message.setHeader("X-Priority","1 (Highest)"),this.message.setHeader("X-MSMail-Priority","High"),this.message.setHeader("Importance","High");break;case"low":this.message.setHeader("X-Priority","5 (Lowest)"),this.message.setHeader("X-MSMail-Priority","Low"),this.message.setHeader("Importance","Low")}}setListHeaders(){this.message&&this.data.list&&"object"==typeof this.data.list&&this._getListHeaders(this.data.list).forEach(a=>{a.value.forEach(b=>{this.message.addHeader(a.key,b)})})}_getListHeaders(a){return Object.keys(a).map(b=>({key:"list-"+b.toLowerCase().trim(),value:[].concat(a[b]||[]).map(a=>({prepared:!0,foldLines:!0,value:[].concat(a||[]).map(a=>{if("string"==typeof a&&(a={url:a}),a&&a.url){if("id"===b.toLowerCase().trim()){let b=(a.comment||"").toString().replace(/\r?\n|\r/g," ");return b=f.isPlainText(b)?'"'+b+'"':f.encodeWord(b),(a.comment?b+" ":"")+this._formatListUrl(a.url).replace(/^<[^:]+:\/{0,2}/,"<")}let c=(a.comment||"").toString().replace(/\r?\n|\r/g," ");return f.isPlainText(c)||(c=f.encodeWord(c)),this._formatListUrl(a.url)+(a.comment?" ("+c+")":"")}return""}).filter(a=>a).join(", ")}))}))}_formatListUrl(a){return(a=a.replace(/[\s<]+|[\s>]+/g,""),/^(https?|mailto|ftp):/.test(a))?"<"+a+">":/^[^@]+@[^@]+$/.test(a)?"":""}}},40051,(a,b,c)=>{"use strict";let d=a.r(27699),e=a.r(46414),f=a.r(52412),g=a.r(59338),h=a.r(19688),i=a.r(3276),j=a.r(334),k=a.r(24361),l=a.r(52034),m=a.r(32930),n=a.r(63118),o=a.r(4446),p=a.r(79594),q=a.r(54799);b.exports=class extends d{constructor(a,b,c){super(),this.options=b||{},this._defaults=c||{},this._defaultPlugins={compile:[(...a)=>this._convertDataImages(...a)],stream:[]},this._userPlugins={compile:[],stream:[]},this.meta=new Map,this.dkim=!!this.options.dkim&&new h(this.options.dkim),this.transporter=a,this.transporter.mailer=this,this.logger=e.getLogger(this.options,{component:this.options.component||"mail"}),this.logger.debug({tnx:"create"},"Creating transport: %s",this.getVersionString()),"function"==typeof this.transporter.on&&(this.transporter.on("log",a=>{this.logger.debug({tnx:"transport"},"%s: %s",a.type,a.message)}),this.transporter.on("error",a=>{this.logger.error({err:a,tnx:"transport"},"Transport Error: %s",a.message),this.emit("error",a)}),this.transporter.on("idle",(...a)=>{this.emit("idle",...a)}),this.transporter.on("clear",(...a)=>{this.emit("clear",...a)})),["close","isIdle","verify"].forEach(a=>{this[a]=(...b)=>"function"==typeof this.transporter[a]?("verify"===a&&"function"==typeof this.getSocket&&(this.transporter.getSocket=this.getSocket,this.getSocket=!1),this.transporter[a](...b)):(this.logger.warn({tnx:"transport",methodName:a},"Non existing method %s called for transport",a),!1)}),this.options.proxy&&"string"==typeof this.options.proxy&&this.setupProxy(this.options.proxy)}use(a,b){return a=(a||"").toString(),this._userPlugins.hasOwnProperty(a)?this._userPlugins[a].push(b):this._userPlugins[a]=[b],this}sendMail(a,b=null){let c;b||(c=new Promise((a,c)=>{b=e.callbackPromise(a,c)})),"function"==typeof this.getSocket&&(this.transporter.getSocket=this.getSocket,this.getSocket=!1);let d=new n(this,a);return this.logger.debug({tnx:"transport",name:this.transporter.name,version:this.transporter.version,action:"send"},"Sending mail using %s/%s",this.transporter.name,this.transporter.version),this._processPlugins("compile",d,a=>{if(a)return this.logger.error({err:a,tnx:"plugin",action:"compile"},"PluginCompile Error: %s",a.message),b(a);d.message=new g(d.data).compile(),d.setMailerHeader(),d.setPriorityHeaders(),d.setListHeaders(),this._processPlugins("stream",d,a=>{if(a)return this.logger.error({err:a,tnx:"plugin",action:"stream"},"PluginStream Error: %s",a.message),b(a);(d.data.dkim||this.dkim)&&d.message.processFunc(a=>{let b=d.data.dkim?new h(d.data.dkim):this.dkim;return this.logger.debug({tnx:"DKIM",messageId:d.message.messageId(),dkimDomains:b.keys.map(a=>a.keySelector+"."+a.domainName).join(", ")},"Signing outgoing message with %s keys",b.keys.length),b.sign(a,d.data._dkim)}),this.transporter.send(d,(...a)=>{a[0]&&this.logger.error({err:a[0],tnx:"transport",action:"send"},"Send Error: %s",a[0].message),b(...a)})})}),c}getVersionString(){return k.format("%s (%s; +%s; %s/%s)",m.name,m.version,m.homepage,this.transporter.name,this.transporter.version)}_processPlugins(a,b,c){if(a=(a||"").toString(),!this._userPlugins.hasOwnProperty(a))return c();let d=this._userPlugins[a]||[],e=this._defaultPlugins[a]||[];if(d.length&&this.logger.debug({tnx:"transaction",pluginCount:d.length,step:a},"Using %s plugins for %s",d.length,a),d.length+e.length===0)return c();let f=0,g="default",h=()=>{let a="default"===g?e:d;if(f>=a.length)if("default"!==g||!d.length)return c();else g="user",f=0,a=d;(0,a[f++])(b,a=>{if(a)return c(a);h()})};h()}setupProxy(a){let b=l.parse(a);this.getSocket=(a,c)=>{let d=b.protocol.replace(/:$/,"").toLowerCase();if(this.meta.has("proxy_handler_"+d))return this.meta.get("proxy_handler_"+d)(b,a,c);switch(d){case"http":case"https":i(b.href,a.port,a.host,this.options.tls||{},(a,b)=>a?c(a):c(null,{connection:b}));return;case"socks":case"socks5":case"socks4":case"socks4a":{if(!this.meta.has("proxy_socks_module")){let a=Error("Socks module not loaded");return a.code=j.EPROXY,c(a)}let d=d=>{let e=!!this.meta.get("proxy_socks_module").SocksClient,f=e?this.meta.get("proxy_socks_module").SocksClient:this.meta.get("proxy_socks_module"),g=Number(b.protocol.replace(/\D/g,""))||5,h={proxy:{ipaddress:d,port:Number(b.port),type:g},[e?"destination":"target"]:{host:a.host,port:a.port},command:"connect"};if(b.auth){let a=decodeURIComponent(b.auth.split(":").shift()),c=decodeURIComponent(b.auth.split(":").pop());e?(h.proxy.userId=a,h.proxy.password=c):4===g?h.userid=a:h.authentication={username:a,password:c}}f.createConnection(h,(a,b)=>a?c(a):c(null,{connection:b.socket||b}))};if(o.isIP(b.hostname))return d(b.hostname);return p.resolve(b.hostname,(a,b)=>{if(a)return c(a);d(Array.isArray(b)?b[0]:b)})}}let e=Error("Unknown proxy configuration");e.code=j.EPROXY,c(e)}}_convertDataImages(a,b){if(!this.options.attachDataUrls&&!a.data.attachDataUrls||!a.data.html)return b();a.resolveContent(a.data,"html",{disableFileAccess:a.data.disableFileAccess,disableUrlAccess:a.data.disableUrlAccess},(c,d)=>{if(c)return b(c);let e=0;d=(d||"").toString().replace(/(]{0,1024} src\s{0,20}=[\s"']{0,20})(data:([^;]+);[^"'>\s]+)/gi,(b,c,d,g)=>{let h=q.randomBytes(10).toString("hex")+"@localhost";return a.data.attachments||(a.data.attachments=[]),Array.isArray(a.data.attachments)||(a.data.attachments=[].concat(a.data.attachments||[])),a.data.attachments.push({path:d,cid:h,filename:"image-"+ ++e+"."+f.detectExtension(g)}),c+"cid:"+h}),a.data.html=d,b()})}set(a,b){return this.meta.set(a,b)}get(a){return this.meta.get(a)}}},75710,(a,b,c)=>{"use strict";let{Transform:d}=a.r(88947);b.exports=class extends d{constructor(a){super(a),this.options=a||{},this.inByteCount=0,this.outByteCount=0,this.lastByte=!1}_transform(a,b,c){let d,e=[],f=0,g,h,i=0;if(!a||!a.length)return c();for("string"==typeof a&&(a=Buffer.from(a)),this.inByteCount+=a.length,g=0,h=a.length;gi?(d=a.slice(i,g),e.push(d),f+=d.length+2):f+=2,e.push(Buffer.from("\r\n")),i=g+1);f?(i{"use strict";let d=a.r(32930),{EventEmitter:e}=a.r(27699),f=a.r(4446),g=a.r(55004),h=a.r(46786),i=a.r(54799),j=a.r(75710),{PassThrough:k}=a.r(88947),l=a.r(46414),m=()=>{};function n(a){if(!a)return a;let b=Buffer.from(a,"binary").toString("utf8");return b.includes("�")?a:b}b.exports=class extends e{constructor(a){for(const b of(super(a),this.id=i.randomBytes(8).toString("base64").replace(/\W/g,""),this.stage="init",this.options=a||{},this.secureConnection=!!this.options.secure,this.alreadySecured=!!this.options.secured,this.port=Number(this.options.port)||(this.secureConnection?465:587),this.host=this.options.host||"localhost",this.servername=this.options.servername?this.options.servername:!f.isIP(this.host)&&this.host,this.allowInternalNetworkInterfaces=this.options.allowInternalNetworkInterfaces||!1,void 0===this.options.secure&&465===this.port&&(this.secureConnection=!0),this.name=(this.options.name||this._getHostname()).toString().replace(/[\r\n]+/g,""),this.logger=l.getLogger(this.options,{component:this.options.component||"smtp-connection",sid:this.id}),this.customAuth=new Map,Object.keys(this.options.customAuth||{}))){const a=(b||"").toString().trim().toUpperCase();a&&this.customAuth.set(a,this.options.customAuth[b])}this.version=d.version,this.authenticated=!1,this.destroyed=!1,this.secure=!!this.secureConnection,this._remainder="",this._responseQueue=[],this.lastServerResponse=!1,this._socket=!1,this._supportedAuth=[],this.allowsAuth=!1,this._envelope=!1,this._supportedExtensions=[],this._maxAllowedSize=0,this._responseActions=[],this._recipientQueue=[],this._greetingTimeout=!1,this._connectionTimeout=!1,this._destroyed=!1,this._closing=!1,this._currentDataStream=!1,this._onSocketData=a=>this._onData(a),this._onSocketError=a=>this._onError(a,"ESOCKET",!1,"CONN"),this._onSocketClose=()=>this._onClose(),this._onSocketEnd=()=>this._onEnd(),this._onSocketTimeout=()=>this._onTimeout(),this._onConnectionSocketError=a=>this._onConnectionError(a,"ESOCKET"),this._connectionAttemptId=0}connect(a){if("function"==typeof a){this.once("connect",()=>{this.logger.debug({tnx:"smtp"},"SMTP handshake finished"),a()});let b=this._isDestroyedMessage("connect");if(b)return a(this._formatError(b,"ECONNECTION",!1,"CONN"))}let b={port:this.port,host:this.host,allowInternalNetworkInterfaces:this.allowInternalNetworkInterfaces,timeout:this.options.dnsTimeout||3e4};if(this.options.localAddress&&(b.localAddress=this.options.localAddress),this.options.connection){this._socket=this.options.connection,this._setupConnectionHandlers(),this.secureConnection&&!this.alreadySecured?setImmediate(()=>this._upgradeConnection(a=>{a?this._onError(Error("Error initiating TLS - "+(a.message||a)),"ETLS",!1,"CONN"):this._onConnect()})):setImmediate(()=>this._onConnect());return}return this.options.socket?(this._socket=this.options.socket,this._resolveAndConnect(b,a=>{try{this._socket.connect(this.port,this.host,()=>{this._socket.setKeepAlive(!0),this._onConnect()}),this._setupConnectionHandlers()}catch(a){return setImmediate(()=>this._onError(a,"ECONNECTION",!1,"CONN"))}})):(this.secureConnection&&(Object.assign(b,this.options.tls||{}),this.servername&&!b.servername&&(b.servername=this.servername)),this._resolveAndConnect(b,a=>{this._fallbackAddresses=(a._addresses||[]).filter(a=>a!==b.host),this._connectOpts=Object.assign({},b),this._connectToHost(b,this.secureConnection)}))}_resolveAndConnect(a,b){return l.resolveHostname(a,(c,d)=>{if(c)return setImmediate(()=>this._onError(c,"EDNS",!1,"CONN"));for(let b of(this.logger.debug({tnx:"dns",source:a.host,resolved:d.host,cached:!!d.cached},"Resolved %s as %s [cache %s]",a.host,d.host,d.cached?"hit":"miss"),Object.keys(d)))"_"!==b.charAt(0)&&d[b]&&(a[b]=d[b]);b(d)})}_connectToHost(a,b){this._connectionAttemptId++;let c=this._connectionAttemptId,d=b?g.connect:f.connect;try{this._socket=d(a,()=>{this._connectionAttemptId===c&&(this._socket.setKeepAlive(!0),this._onConnect())}),this._setupConnectionHandlers()}catch(a){return setImmediate(()=>this._onError(a,"ECONNECTION",!1,"CONN"))}}_setupConnectionHandlers(){this._connectionTimeout=setTimeout(()=>{this._onConnectionError("Connection timeout","ETIMEDOUT")},this.options.connectionTimeout||12e4),this._socket.on("error",this._onConnectionSocketError)}_onConnectionError(a,b){if(clearTimeout(this._connectionTimeout),!(this._fallbackAddresses&&this._fallbackAddresses.length&&"init"===this.stage&&!this._destroyed))return void this._onError(a,b,!1,"CONN");let c=this._fallbackAddresses.shift();if(this.logger.info({tnx:"network",failedHost:this._connectOpts.host,nextHost:c,error:a.message||a},"Connection to %s failed, trying %s",this._connectOpts.host,c),this._socket){try{this._socket.removeListener("error",this._onConnectionSocketError),this._socket.destroy()}catch(a){}this._socket=null}this._connectOpts.host=c,this._connectToHost(this._connectOpts,this.secureConnection)}quit(){this._sendCommand("QUIT"),this._responseActions.push(this.close)}close(){if(clearTimeout(this._connectionTimeout),clearTimeout(this._greetingTimeout),this._responseActions=[],this._closing)return;this._closing=!0;let a="init"===this.stage?"destroy":"end";this.logger.debug({tnx:"smtp"},'Closing connection to the server using "%s"',a);let b=this._socket&&this._socket.socket||this._socket;if(this._currentDataStream){try{this._currentDataStream.unpipe(this._socket)}catch(a){}this._currentDataStream=!1}if(b&&!b.destroyed)try{b.setTimeout(0),b.removeListener("data",this._onSocketData),b.removeListener("timeout",this._onSocketTimeout),b.removeListener("close",this._onSocketClose),b.removeListener("end",this._onSocketEnd),b.removeListener("error",this._onSocketError),b.removeListener("error",this._onConnectionSocketError),b.on("error",m),b[a]()}catch(a){}this._destroy()}login(a,b){let c=this._isDestroyedMessage("login");if(c)return b(this._formatError(c,"ECONNECTION",!1,"API"));if(this._auth=a||{},this._authMethod=(this._auth.method||"").toString().trim().toUpperCase()||!1,this._authMethod||!this._auth.oauth2||this._auth.credentials?this._authMethod&&("XOAUTH2"!==this._authMethod||this._auth.oauth2)||(this._authMethod=(this._supportedAuth[0]||"PLAIN").toUpperCase().trim()):this._authMethod="XOAUTH2","XOAUTH2"!==this._authMethod&&(!this._auth.credentials||!this._auth.credentials.user||!this._auth.credentials.pass))if(!(this._auth.user&&this._auth.pass||this.customAuth.has(this._authMethod)))return b(this._formatError('Missing credentials for "'+this._authMethod+'"',"EAUTH",!1,"API"));else this._auth.credentials={user:this._auth.user,pass:this._auth.pass,options:this._auth.options};if(this.customAuth.has(this._authMethod)){let a,c=this.customAuth.get(this._authMethod),d=!1,e=()=>{d||(d=!0,this.logger.info({tnx:"smtp",username:this._auth.user,action:"authenticated",method:this._authMethod},"User %s authenticated",JSON.stringify(this._auth.user)),this.authenticated=!0,b(null,!0))},f=c=>{d||(d=!0,b(this._formatError(c,"EAUTH",a,"AUTH "+this._authMethod)))},g=c({auth:this._auth,method:this._authMethod,extensions:[].concat(this._supportedExtensions),authMethods:[].concat(this._supportedAuth),maxAllowedSize:this._maxAllowedSize||!1,sendCommand:(b,c)=>{let d;return c||(d=new Promise((a,b)=>{c=l.callbackPromise(a,b)})),this._responseActions.push(d=>{a=d;let e=d.match(/^(\d+)(?:\s(\d+\.\d+\.\d+))?\s/),f={command:b,response:d};e?(f.status=Number(e[1])||0,e[2]&&(f.code=e[2]),f.text=d.substr(e[0].length)):(f.text=d,f.status=0),c(null,f)}),setImmediate(()=>this._sendCommand(b)),d},resolve:e,reject:f});g&&"function"==typeof g.catch&&g.then(e).catch(f);return}switch(this._authMethod){case"XOAUTH2":this._handleXOauth2Token(!1,b);return;case"LOGIN":this._responseActions.push(a=>{this._actionAUTH_LOGIN_USER(a,b)}),this._sendCommand("AUTH LOGIN");return;case"PLAIN":this._responseActions.push(a=>{this._actionAUTHComplete(a,b)}),this._sendCommand("AUTH PLAIN "+Buffer.from("\0"+this._auth.credentials.user+"\0"+this._auth.credentials.pass,"utf-8").toString("base64"),"AUTH PLAIN "+Buffer.from("\0"+this._auth.credentials.user+"\0/* secret */","utf-8").toString("base64"));return;case"CRAM-MD5":this._responseActions.push(a=>{this._actionAUTH_CRAM_MD5(a,b)}),this._sendCommand("AUTH CRAM-MD5");return}return b(this._formatError('Unknown authentication method "'+this._authMethod+'"',"EAUTH",!1,"API"))}send(a,b,c){if(!b)return c(this._formatError("Empty message","EMESSAGE",!1,"API"));let d=this._isDestroyedMessage("send message");if(d)return c(this._formatError(d,"ECONNECTION",!1,"API"));if(this._maxAllowedSize&&a.size>this._maxAllowedSize)return setImmediate(()=>{c(this._formatError("Message size larger than allowed "+this._maxAllowedSize,"EMESSAGE",!1,"MAIL FROM"))});let e=!1,f=function(){e||(e=!0,c(...arguments))};"function"==typeof b.on&&b.on("error",a=>f(this._formatError(a,"ESTREAM",!1,"API")));let g=Date.now();this._setEnvelope(a,(a,c)=>{if(a){let c=new k;return"function"==typeof b.pipe?b.pipe(c):(c.write(b),c.end()),f(a)}let d=Date.now(),e=this._createSendStream((a,b)=>a?f(a):(c.envelopeTime=d-g,c.messageTime=Date.now()-d,c.messageSize=e.outByteCount,c.response=b,f(null,c)));"function"==typeof b.pipe?b.pipe(e):(e.write(b),e.end())})}reset(a){this._sendCommand("RSET"),this._responseActions.push(b=>"2"!==b.charAt(0)?a(this._formatError("Could not reset session state. response="+b,"EPROTOCOL",b,"RSET")):(this._envelope=!1,a(null,!0)))}_onConnect(){(clearTimeout(this._connectionTimeout),this.logger.info({tnx:"network",localAddress:this._socket.localAddress,localPort:this._socket.localPort,remoteAddress:this._socket.remoteAddress,remotePort:this._socket.remotePort},"%s established to %s:%s",this.secure?"Secure connection":"Connection",this._socket.remoteAddress,this._socket.remotePort),this._destroyed)?this.close():(this.stage="connected",this._socket.removeListener("data",this._onSocketData),this._socket.removeListener("timeout",this._onSocketTimeout),this._socket.removeListener("close",this._onSocketClose),this._socket.removeListener("end",this._onSocketEnd),this._socket.removeListener("error",this._onConnectionSocketError),this._socket.on("error",this._onSocketError),this._socket.on("data",this._onSocketData),this._socket.once("close",this._onSocketClose),this._socket.once("end",this._onSocketEnd),this._socket.setTimeout(this.options.socketTimeout||6e5),this._socket.on("timeout",this._onSocketTimeout),this._greetingTimeout=setTimeout(()=>{this._socket&&!this._destroyed&&this._responseActions[0]===this._actionGreeting&&this._onError("Greeting never received","ETIMEDOUT",!1,"CONN")},this.options.greetingTimeout||3e4),this._responseActions.push(this._actionGreeting),this._socket.resume())}_onData(a){let b;if(this._destroyed||!a||!a.length)return;let c=a.toString("binary"),d=(this._remainder+c).split(/\r?\n/);this._remainder=d.pop();for(let a=0,c=d.length;a{b.removeListener("close",this._onSocketClose),b.removeListener("end",this._onSocketEnd),b.removeListener("error",this._onSocketError)};this.upgrading=!0;try{this._socket=g.connect(c,()=>(this.secure=!0,this.upgrading=!1,this._socket.on("data",this._onSocketData),d(),a(null,!0)))}catch(b){return d(),a(b)}this._socket.on("error",this._onSocketError),this._socket.once("close",this._onSocketClose),this._socket.once("end",this._onSocketEnd),this._socket.setTimeout(this.options.socketTimeout||6e5),this._socket.on("timeout",this._onSocketTimeout),b.resume()}_processResponse(){if(!this._responseQueue.length)return!1;let a=this.lastServerResponse=n((this._responseQueue.shift()||"").toString());if(/^\d+-/.test(a.split("\n").pop()))return;(this.options.debug||this.options.transactionLog)&&this.logger.debug({tnx:"server"},a.replace(/\r?\n$/,"")),a.trim()||setImmediate(()=>this._processResponse());let b=this._responseActions.shift();if("function"!=typeof b)return this._onError(Error("Unexpected Response"),"EPROTOCOL",a,"CONN");b.call(this,a),setImmediate(()=>this._processResponse())}_sendCommand(a,b){if(!this._destroyed){if(this._socket.destroyed)return this.close();(this.options.debug||this.options.transactionLog)&&this.logger.debug({tnx:"client"},(b||a||"").toString().replace(/\r?\n$/,"")),this._socket.write(Buffer.from(a+"\r\n","utf-8"))}}_setEnvelope(a,b){let c=[],d=!1;if(this._envelope=a||{},this._envelope.from=(this._envelope.from&&this._envelope.from.address||this._envelope.from||"").toString().trim(),this._envelope.to=[].concat(this._envelope.to||[]).map(a=>(a&&a.address||a||"").toString().trim()),!this._envelope.to.length)return b(this._formatError("No recipients defined","EENVELOPE",!1,"API"));if(this._envelope.from&&/[\r\n<>]/.test(this._envelope.from))return b(this._formatError("Invalid sender "+JSON.stringify(this._envelope.from),"EENVELOPE",!1,"API"));/[\x80-\uFFFF]/.test(this._envelope.from)&&(d=!0);for(let a=0,c=this._envelope.to.length;a]/.test(this._envelope.to[a]))return b(this._formatError("Invalid recipient "+JSON.stringify(this._envelope.to[a]),"EENVELOPE",!1,"API"));/[\x80-\uFFFF]/.test(this._envelope.to[a])&&(d=!0)}if(this._envelope.rcptQueue=[].concat(this._envelope.to||[]),this._envelope.rejected=[],this._envelope.rejectedErrors=[],this._envelope.accepted=[],this._envelope.dsn)try{this._envelope.dsn=this._setDsnEnvelope(this._envelope.dsn)}catch(a){return b(this._formatError("Invalid DSN "+a.message,"EENVELOPE",!1,"API"))}if(this._responseActions.push(a=>{this._actionMAIL(a,b)}),d&&this._supportedExtensions.includes("SMTPUTF8")&&(c.push("SMTPUTF8"),this._usingSmtpUtf8=!0),this._envelope.use8BitMime&&this._supportedExtensions.includes("8BITMIME")&&(c.push("BODY=8BITMIME"),this._using8BitMime=!0),this._envelope.size&&this._supportedExtensions.includes("SIZE")){let a=Number(this._envelope.size)||0;a>0&&c.push("SIZE="+a)}if(this._envelope.dsn&&this._supportedExtensions.includes("DSN")&&(this._envelope.dsn.ret&&c.push("RET="+l.encodeXText(this._envelope.dsn.ret)),this._envelope.dsn.envid&&c.push("ENVID="+l.encodeXText(this._envelope.dsn.envid))),this._envelope.requireTLSExtensionEnabled){if(!this.secure)return b(this._formatError("REQUIRETLS can only be used over TLS connections (RFC 8689)","EREQUIRETLS",!1,"MAIL FROM"));if(!this._supportedExtensions.includes("REQUIRETLS"))return b(this._formatError("Server does not support REQUIRETLS extension (RFC 8689)","EREQUIRETLS",!1,"MAIL FROM"));c.push("REQUIRETLS")}this._sendCommand("MAIL FROM:<"+this._envelope.from+">"+(c.length?" "+c.join(" "):""))}_setDsnEnvelope(a){let b=(a.ret||a.return||"").toString().toUpperCase()||null;if(b)switch(b){case"HDRS":case"HEADERS":b="HDRS";break;case"FULL":case"BODY":b="FULL"}if(b&&!["FULL","HDRS"].includes(b))throw Error("ret: "+JSON.stringify(b));let c=(a.envid||a.id||"").toString()||null,d=a.notify||null;if(d){"string"==typeof d&&(d=d.split(","));let a=["NEVER","SUCCESS","FAILURE","DELAY"];if((d=d.map(a=>a.trim().toUpperCase())).filter(b=>!a.includes(b)).length||d.length>1&&d.includes("NEVER"))throw Error("notify: "+JSON.stringify(d.join(",")));d=d.join(",")}let e=(a.recipient||a.orcpt||"").toString()||null;return e&&0>e.indexOf(";")&&(e="rfc822;"+e),{ret:b,envid:c,notify:d,orcpt:e}}_getDsnRcptToArgs(){let a=[];return this._envelope.dsn&&this._supportedExtensions.includes("DSN")&&(this._envelope.dsn.notify&&a.push("NOTIFY="+l.encodeXText(this._envelope.dsn.notify)),this._envelope.dsn.orcpt&&a.push("ORCPT="+l.encodeXText(this._envelope.dsn.orcpt))),a.length?" "+a.join(" "):""}_createSendStream(a){let b=new j;if(this.options.lmtp?this._envelope.accepted.forEach((b,c)=>{let d=c===this._envelope.accepted.length-1;this._responseActions.push(c=>{this._actionLMTPStream(b,d,c,a)})}):this._responseActions.push(b=>{this._actionSMTPStream(b,a)}),this._currentDataStream=b,b.pipe(this._socket,{end:!1}),this.options.debug){let a=new k;a.on("readable",()=>{let b;for(;b=a.read();)this.logger.debug({tnx:"message"},b.toString("binary").replace(/\r?\n$/,""))}),b.pipe(a)}return b.once("end",()=>{this._currentDataStream===b&&(this._currentDataStream=!1),this.logger.info({tnx:"message",inByteCount:b.inByteCount,outByteCount:b.outByteCount},"<%s bytes encoded mime message (source size %s bytes)>",b.outByteCount,b.inByteCount)}),b}_actionGreeting(a){(clearTimeout(this._greetingTimeout),"220"!==a.substr(0,3))?this._onError(Error("Invalid greeting. response="+a),"EPROTOCOL",a,"CONN"):this.options.lmtp?(this._responseActions.push(this._actionLHLO),this._sendCommand("LHLO "+this.name)):(this._responseActions.push(this._actionEHLO),this._sendCommand("EHLO "+this.name))}_actionLHLO(a){"2"!==a.charAt(0)?this._onError(Error("Invalid LHLO. response="+a),"EPROTOCOL",a,"LHLO"):this._actionEHLO(a)}_actionEHLO(a){let b;if("421"===a.substr(0,3))return void this._onError(Error("Server terminates connection. response="+a),"ECONNECTION",a,"EHLO");if("2"!==a.charAt(0))return this.options.requireTLS?void this._onError(Error("EHLO failed but HELO does not support required STARTTLS. response="+a),"ECONNECTION",a,"EHLO"):(this._responseActions.push(this._actionHELO),void this._sendCommand("HELO "+this.name));if(this._ehloLines=a.split(/\r?\n/).map(a=>a.replace(/^\d+[ -]/,"").trim()).filter(a=>a).slice(1),!this.secure&&!this.options.ignoreTLS&&(/[ -]STARTTLS\b/im.test(a)||this.options.requireTLS)){this._sendCommand("STARTTLS"),this._responseActions.push(this._actionSTARTTLS);return}/[ -]SMTPUTF8\b/im.test(a)&&this._supportedExtensions.push("SMTPUTF8"),/[ -]DSN\b/im.test(a)&&this._supportedExtensions.push("DSN"),/[ -]8BITMIME\b/im.test(a)&&this._supportedExtensions.push("8BITMIME"),/[ -]REQUIRETLS\b/im.test(a)&&this._supportedExtensions.push("REQUIRETLS"),/[ -]PIPELINING\b/im.test(a)&&this._supportedExtensions.push("PIPELINING"),/[ -]AUTH\b/i.test(a)&&(this.allowsAuth=!0),/[ -]AUTH(?:(\s+|=)[^\n]*\s+|\s+|=)PLAIN/i.test(a)&&this._supportedAuth.push("PLAIN"),/[ -]AUTH(?:(\s+|=)[^\n]*\s+|\s+|=)LOGIN/i.test(a)&&this._supportedAuth.push("LOGIN"),/[ -]AUTH(?:(\s+|=)[^\n]*\s+|\s+|=)CRAM-MD5/i.test(a)&&this._supportedAuth.push("CRAM-MD5"),/[ -]AUTH(?:(\s+|=)[^\n]*\s+|\s+|=)XOAUTH2/i.test(a)&&this._supportedAuth.push("XOAUTH2"),(b=a.match(/[ -]SIZE(?:[ \t]+(\d+))?/im))&&(this._supportedExtensions.push("SIZE"),this._maxAllowedSize=Number(b[1])||0),this.emit("connect")}_actionHELO(a){"2"!==a.charAt(0)?this._onError(Error("Invalid HELO. response="+a),"EPROTOCOL",a,"HELO"):(this.allowsAuth=!0,this.emit("connect"))}_actionSTARTTLS(a){if("2"!==a.charAt(0))return this.options.opportunisticTLS?(this.logger.info({tnx:"smtp"},"Failed STARTTLS upgrade, continuing unencrypted"),this.emit("connect")):void this._onError(Error("Error upgrading connection with STARTTLS"),"ETLS",a,"STARTTLS");this._upgradeConnection((a,b)=>{a?this._onError(Error("Error initiating TLS - "+(a.message||a)),"ETLS",!1,"STARTTLS"):(this.logger.info({tnx:"smtp"},"Connection upgraded with STARTTLS"),b?this.options.lmtp?(this._responseActions.push(this._actionLHLO),this._sendCommand("LHLO "+this.name)):(this._responseActions.push(this._actionEHLO),this._sendCommand("EHLO "+this.name)):this.emit("connect"))})}_actionAUTH_LOGIN_USER(a,b){/^334[ -]/.test(a)?(this._responseActions.push(a=>{this._actionAUTH_LOGIN_PASS(a,b)}),this._sendCommand(Buffer.from(this._auth.credentials.user+"","utf-8").toString("base64"))):b(this._formatError('Invalid login sequence while waiting for "334 VXNlcm5hbWU6"',"EAUTH",a,"AUTH LOGIN"))}_actionAUTH_CRAM_MD5(a,b){let c=a.match(/^334\s+(.+)$/);if(!c)return b(this._formatError("Invalid login sequence while waiting for server challenge string","EAUTH",a,"AUTH CRAM-MD5"));let d=Buffer.from(c[1],"base64").toString("ascii"),e=i.createHmac("md5",this._auth.credentials.pass);e.update(d);let f=this._auth.credentials.user+" "+e.digest("hex");this._responseActions.push(a=>{this._actionAUTH_CRAM_MD5_PASS(a,b)}),this._sendCommand(Buffer.from(f).toString("base64"),Buffer.from(this._auth.credentials.user+" /* secret */").toString("base64"))}_actionAUTH_CRAM_MD5_PASS(a,b){if(!a.match(/^235\s+/))return b(this._formatError('Invalid login sequence while waiting for "235"',"EAUTH",a,"AUTH CRAM-MD5"));this.logger.info({tnx:"smtp",username:this._auth.user,action:"authenticated",method:this._authMethod},"User %s authenticated",JSON.stringify(this._auth.user)),this.authenticated=!0,b(null,!0)}_actionAUTH_LOGIN_PASS(a,b){if(!/^334[ -]/.test(a))return b(this._formatError('Invalid login sequence while waiting for "334 UGFzc3dvcmQ6"',"EAUTH",a,"AUTH LOGIN"));this._responseActions.push(a=>{this._actionAUTHComplete(a,b)}),this._sendCommand(Buffer.from((this._auth.credentials.pass||"").toString(),"utf-8").toString("base64"),Buffer.from("/* secret */","utf-8").toString("base64"))}_actionAUTHComplete(a,b,c){if(c||"function"!=typeof b||(c=b,b=!1),"334"===a.substr(0,3)){this._responseActions.push(a=>{b||"XOAUTH2"!==this._authMethod?this._actionAUTHComplete(a,!0,c):setImmediate(()=>this._handleXOauth2Token(!0,c))}),this._sendCommand("");return}if("2"!==a.charAt(0))return this.logger.info({tnx:"smtp",username:this._auth.user,action:"authfail",method:this._authMethod},"User %s failed to authenticate",JSON.stringify(this._auth.user)),c(this._formatError("Invalid login","EAUTH",a,"AUTH "+this._authMethod));this.logger.info({tnx:"smtp",username:this._auth.user,action:"authenticated",method:this._authMethod},"User %s authenticated",JSON.stringify(this._auth.user)),this.authenticated=!0,c(null,!0)}_actionMAIL(a,b){if(2!==Number(a.charAt(0))){let c=this._usingSmtpUtf8&&/^550 /.test(a)&&/[\x80-\uFFFF]/.test(this._envelope.from)?"Internationalized mailbox name not allowed":"Mail command failed";return b(this._formatError(c,"EENVELOPE",a,"MAIL FROM"))}if(!this._envelope.rcptQueue.length)return b(this._formatError("Can't send mail - no recipients defined","EENVELOPE",!1,"API"));this._recipientQueue=[];let c=this._supportedExtensions.includes("PIPELINING");do{let a=this._envelope.rcptQueue.shift();this._recipientQueue.push(a),this._responseActions.push(a=>{this._actionRCPT(a,b)}),this._sendCommand("RCPT TO:<"+a+">"+this._getDsnRcptToArgs())}while(c&&this._envelope.rcptQueue.length)}_actionRCPT(a,b){let c,d=this._recipientQueue.shift();if(2!==Number(a.charAt(0))){let b=this._usingSmtpUtf8&&/^553 /.test(a)&&/[\x80-\uFFFF]/.test(d)?"Internationalized mailbox name not allowed":"Recipient command failed";this._envelope.rejected.push(d),(c=this._formatError(b,"EENVELOPE",a,"RCPT TO")).recipient=d,this._envelope.rejectedErrors.push(c)}else this._envelope.accepted.push(d);if(this._envelope.rcptQueue.length||this._recipientQueue.length){if(this._envelope.rcptQueue.length){let a=this._envelope.rcptQueue.shift();this._recipientQueue.push(a),this._responseActions.push(a=>{this._actionRCPT(a,b)}),this._sendCommand("RCPT TO:<"+a+">"+this._getDsnRcptToArgs())}}else{if(!(this._envelope.rejected.length{this._actionDATA(a,b)}),this._sendCommand("DATA")}}_actionDATA(a,b){if(!/^[23]/.test(a))return b(this._formatError("Data command failed","EENVELOPE",a,"DATA"));let c={accepted:this._envelope.accepted,rejected:this._envelope.rejected};this._ehloLines&&this._ehloLines.length&&(c.ehlo=this._ehloLines),this._envelope.rejectedErrors.length&&(c.rejectedErrors=this._envelope.rejectedErrors),b(null,c)}_actionSMTPStream(a,b){return 2!==Number(a.charAt(0))?b(this._formatError("Message failed","EMESSAGE",a,"DATA")):b(null,a)}_actionLMTPStream(a,b,c,d){let e;if(2!==Number(c.charAt(0))){(e=this._formatError("Message failed for recipient "+a,"EMESSAGE",c,"DATA")).recipient=a,this._envelope.rejected.push(a),this._envelope.rejectedErrors.push(e);for(let b=0,c=this._envelope.accepted.length;b{if(c)return this.logger.info({tnx:"smtp",username:this._auth.user,action:"authfail",method:this._authMethod},"User %s failed to authenticate",JSON.stringify(this._auth.user)),b(this._formatError(c,"EAUTH",!1,"AUTH XOAUTH2"));this._responseActions.push(c=>{this._actionAUTHComplete(c,a,b)}),this._sendCommand("AUTH XOAUTH2 "+this._auth.oauth2.buildXOAuth2Token(d),"AUTH XOAUTH2 "+this._auth.oauth2.buildXOAuth2Token("/* secret */"))})}_isDestroyedMessage(a){if(this._destroyed)return"Cannot "+a+" - smtp connection is already destroyed.";if(this._socket){if(this._socket.destroyed)return"Cannot "+a+" - smtp connection socket is already destroyed.";if(!this._socket.writable)return"Cannot "+a+" - smtp connection socket is already half-closed."}}_getHostname(){let a;try{a=h.hostname()||""}catch(b){a="localhost"}return(!a||0>a.indexOf("."))&&(a="[127.0.0.1]"),a.match(/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/)&&(a="["+a+"]"),a}}},32131,(a,b,c)=>{"use strict";let{Stream:d}=a.r(88947),e=a.r(43461),f=a.r(54799),g=a.r(46414),h=a.r(334);b.exports=class extends d{constructor(a,b){if(super(),this.options=a||{},a&&a.serviceClient){if(!a.privateKey||!a.user){const a=Error('Options "privateKey" and "user" are required for service account!');a.code=h.EOAUTH2,setImmediate(()=>this.emit("error",a));return}const b=Math.min(Math.max(Number(this.options.serviceRequestTimeout)||0,0),3600);this.options.serviceRequestTimeout=b||300}if(this.logger=g.getLogger({logger:b},{component:this.options.component||"OAuth2"}),this.provisionCallback="function"==typeof this.options.provisionCallback&&this.options.provisionCallback,this.options.accessUrl=this.options.accessUrl||"https://accounts.google.com/o/oauth2/token",this.options.customHeaders=this.options.customHeaders||{},this.options.customParams=this.options.customParams||{},this.accessToken=this.options.accessToken||!1,this.options.expires&&Number(this.options.expires))this.expires=this.options.expires;else{const a=Math.max(Number(this.options.timeout)||0,0);this.expires=a&&Date.now()+1e3*a||0}this.renewing=!1,this.renewalQueue=[]}getToken(a,b){if(!a&&this.accessToken&&(!this.expires||this.expires>Date.now()))return this.logger.debug({tnx:"OAUTH2",user:this.options.user,action:"reuse"},"Reusing existing access token for %s",this.options.user),b(null,this.accessToken);if(!this.provisionCallback&&!this.options.refreshToken&&!this.options.serviceClient){if(this.accessToken)return this.logger.debug({tnx:"OAUTH2",user:this.options.user,action:"reuse"},"Reusing existing access token (no refresh capability) for %s",this.options.user),b(null,this.accessToken);this.logger.error({tnx:"OAUTH2",user:this.options.user,action:"renew"},"Cannot renew access token for %s: No refresh mechanism available",this.options.user);let a=Error("Can't create new access token for user");return a.code=h.EOAUTH2,b(a)}if(this.renewing)return this.renewalQueue.push({renew:a,callback:b});this.renewing=!0;let c=(a,c)=>{this.renewalQueue.forEach(b=>b.callback(a,c)),this.renewalQueue=[],this.renewing=!1,a?this.logger.error({err:a,tnx:"OAUTH2",user:this.options.user,action:"renew"},"Failed generating new Access Token for %s",this.options.user):this.logger.info({tnx:"OAUTH2",user:this.options.user,action:"renew"},"Generated new Access Token for %s",this.options.user),b(a,c)};this.provisionCallback?this.provisionCallback(this.options.user,!!a,(a,b,d)=>{!a&&b&&(this.accessToken=b,this.expires=d||0),c(a,b)}):this.generateToken(c)}updateToken(a,b){this.accessToken=a,b=Math.max(Number(b)||0,0),this.expires=b&&Date.now()+1e3*b||0,this.emit("token",{user:this.options.user,accessToken:a||"",expires:this.expires})}generateToken(a){let b,c;if(this.options.serviceClient){let d,e=Math.floor(Date.now()/1e3),f={iss:this.options.serviceClient,scope:this.options.scope||"https://mail.google.com/",sub:this.options.user,aud:this.options.accessUrl,iat:e,exp:e+this.options.serviceRequestTimeout};try{d=this.jwtSignRS256(f)}catch(c){let b=Error("Can't generate token. Check your auth options");return b.code=h.EOAUTH2,a(b)}b={grant_type:"urn:ietf:params:oauth:grant-type:jwt-bearer",assertion:d},c={grant_type:"urn:ietf:params:oauth:grant-type:jwt-bearer",assertion:f}}else{if(!this.options.refreshToken){let b=Error("Can't create new access token for user");return b.code=h.EOAUTH2,a(b)}b={client_id:this.options.clientId||"",client_secret:this.options.clientSecret||"",refresh_token:this.options.refreshToken,grant_type:"refresh_token"},c={client_id:this.options.clientId||"",client_secret:(this.options.clientSecret||"").substr(0,6)+"...",refresh_token:(this.options.refreshToken||"").substr(0,6)+"...",grant_type:"refresh_token"}}Object.assign(b,this.options.customParams),Object.assign(c,this.options.customParams),this.logger.debug({tnx:"OAUTH2",user:this.options.user,action:"generate"},"Requesting token using: %s",JSON.stringify(c)),this.postRequest(this.options.accessUrl,b,this.options,(b,c)=>{let d;if(b)return a(b);try{d=JSON.parse(c.toString())}catch(b){return a(b)}if(!d||"object"!=typeof d){this.logger.debug({tnx:"OAUTH2",user:this.options.user,action:"post"},"Response: %s",(c||"").toString());let b=Error("Invalid authentication response");return b.code=h.EOAUTH2,a(b)}let e=Object.assign({},d);if(e.access_token&&(e.access_token=(e.access_token||"").toString().substr(0,6)+"..."),this.logger.debug({tnx:"OAUTH2",user:this.options.user,action:"post"},"Response: %s",JSON.stringify(e)),d.error){let b=d.error;d.error_description&&(b+=": "+d.error_description),d.error_uri&&(b+=" ("+d.error_uri+")");let c=Error(b);return c.code=h.EOAUTH2,a(c)}if(d.access_token)return this.updateToken(d.access_token,d.expires_in),a(null,this.accessToken);let f=Error("No access token");return f.code=h.EOAUTH2,a(f)})}buildXOAuth2Token(a){let b=["user="+(this.options.user||""),"auth=Bearer "+(a||this.accessToken),"",""];return Buffer.from(b.join("\x01"),"utf-8").toString("base64")}postRequest(a,b,c,d){let f=!1,g=[],h=0,i={method:"post",headers:c.customHeaders,body:b,allowErrorResponse:!0};/^https:/i.test(a)&&(i.tls=Object.assign({rejectUnauthorized:!0},c.tls||{}));let j=e(a,i);j.on("readable",()=>{let a;for(;null!==(a=j.read());)g.push(a),h+=a.length}),j.once("error",a=>{if(!f)return f=!0,d(a)}),j.once("end",()=>{if(!f)return f=!0,d(null,Buffer.concat(g,h))})}toBase64URL(a){return"string"==typeof a&&(a=Buffer.from(a)),a.toString("base64").replace(/[=]+/g,"").replace(/\+/g,"-").replace(/\//g,"_")}jwtSignRS256(a){a=['{"alg":"RS256","typ":"JWT"}',JSON.stringify(a)].map(a=>this.toBase64URL(a)).join(".");let b=f.createSign("RSA-SHA256").update(a).sign(this.options.privateKey);return a+"."+this.toBase64URL(b)}}},73061,(a,b,c)=>{"use strict";let d=a.r(62852),e=a.r(46414).assign,f=a.r(32131),g=a.r(334),h=a.r(27699);b.exports=class extends h{constructor(a){if(super(),this.pool=a,this.options=a.options,this.logger=this.pool.logger,this.options.auth)switch((this.options.auth.type||"").toString().toUpperCase()){case"OAUTH2":{const a=new f(this.options.auth,this.logger);a.provisionCallback=this.pool.mailer&&this.pool.mailer.get("oauth2_provision_cb")||a.provisionCallback,this.auth={type:"OAUTH2",user:this.options.auth.user,oauth2:a,method:"XOAUTH2"},a.on("token",a=>this.pool.mailer.emit("token",a)),a.on("error",a=>this.emit("error",a));break}default:if(!this.options.auth.user&&!this.options.auth.pass)break;this.auth={type:(this.options.auth.type||"").toString().toUpperCase()||"LOGIN",user:this.options.auth.user,credentials:{user:this.options.auth.user||"",pass:this.options.auth.pass,options:this.options.auth.options},method:(this.options.auth.method||"").trim().toUpperCase()||this.options.authMethod||!1}}this._connection=!1,this._connected=!1,this.messages=0,this.available=!0}connect(a){this.pool.getSocket(this.options,(b,c)=>{if(b)return a(b);let f=!1,h=this.options;c&&c.connection&&(this.logger.info({tnx:"proxy",remoteAddress:c.connection.remoteAddress,remotePort:c.connection.remotePort,destHost:h.host||"",destPort:h.port||"",action:"connected"},"Using proxied socket from %s:%s to %s:%s",c.connection.remoteAddress,c.connection.remotePort,h.host||"",h.port||""),h=Object.assign(e(!1,h),c)),this.connection=new d(h),this.connection.once("error",b=>{if(this.emit("error",b),!f)return f=!0,a(b)}),this.connection.once("end",()=>{if(this.close(),f)return;f=!0;let b=setTimeout(()=>{if(f)return;let b=Error("Unexpected socket close");this.connection&&this.connection._socket&&this.connection._socket.upgrading&&(b.code=g.ETLS),a(b)},1e3);try{b.unref()}catch(a){}}),this.connection.connect(()=>{if(!f)if(!this.auth||!this.connection.allowsAuth&&!h.forceAuth)return f=!0,this._connected=!0,a(null,!0);else this.connection.login(this.auth,b=>{if(!f){if(f=!0,b)return this.connection.close(),this.emit("error",b),a(b);this._connected=!0,a(null,!0)}})})})}send(a,b){if(!this._connected)return this.connect(c=>c?b(c):this.send(a,b));let c=a.message.getEnvelope(),d=a.message.messageId(),e=[].concat(c.to||[]);e.length>3&&e.push("...and "+e.splice(2).length+" more"),this.logger.info({tnx:"send",messageId:d,cid:this.id},"Sending message %s using #%s to <%s>",d,this.id,e.join(", ")),a.data.dsn&&(c.dsn=a.data.dsn),a.data.requireTLSExtensionEnabled&&(c.requireTLSExtensionEnabled=a.data.requireTLSExtensionEnabled),this.connection.send(c,a.message.createReadStream(),(a,e)=>{if(this.messages++,a)return this.connection.close(),this.emit("error",a),b(a);e.envelope={from:c.from,to:c.to},e.messageId=d,setImmediate(()=>{if(this.messages>=this.options.maxMessages){let a=Error("Resource exhausted");a.code=g.EMAXLIMIT,this.connection.close(),this.emit("error",a)}else this.pool._checkRateLimit(()=>{this.available=!0,this.emit("available")})}),b(null,e)})}close(){this._connected=!1,this.auth&&this.auth.oauth2&&this.auth.oauth2.removeAllListeners(),this.connection&&this.connection.close(),this.emit("close")}}},6650,(a,b,c)=>{b.exports=JSON.parse('{"1und1":{"description":"1&1 Mail (German hosting provider)","host":"smtp.1und1.de","port":465,"secure":true,"authMethod":"LOGIN"},"126":{"description":"126 Mail (NetEase)","host":"smtp.126.com","port":465,"secure":true},"163":{"description":"163 Mail (NetEase)","host":"smtp.163.com","port":465,"secure":true},"Aliyun":{"description":"Alibaba Cloud Mail","domains":["aliyun.com"],"host":"smtp.aliyun.com","port":465,"secure":true},"AliyunQiye":{"description":"Alibaba Cloud Enterprise Mail","host":"smtp.qiye.aliyun.com","port":465,"secure":true},"AOL":{"description":"AOL Mail","domains":["aol.com"],"host":"smtp.aol.com","port":587},"Aruba":{"description":"Aruba PEC (Italian email provider)","domains":["aruba.it","pec.aruba.it"],"aliases":["Aruba PEC"],"host":"smtps.aruba.it","port":465,"secure":true,"authMethod":"LOGIN"},"Bluewin":{"description":"Bluewin (Swiss email provider)","host":"smtpauths.bluewin.ch","domains":["bluewin.ch"],"port":465},"BOL":{"description":"BOL Mail (Brazilian provider)","domains":["bol.com.br"],"host":"smtp.bol.com.br","port":587,"requireTLS":true},"DebugMail":{"description":"DebugMail (email testing service)","host":"debugmail.io","port":25},"Disroot":{"description":"Disroot (privacy-focused provider)","domains":["disroot.org"],"host":"disroot.org","port":587,"secure":false,"authMethod":"LOGIN"},"DynectEmail":{"description":"Dyn Email Delivery","aliases":["Dynect"],"host":"smtp.dynect.net","port":25},"ElasticEmail":{"description":"Elastic Email","aliases":["Elastic Email"],"host":"smtp.elasticemail.com","port":465,"secure":true},"Ethereal":{"description":"Ethereal Email (email testing service)","aliases":["ethereal.email"],"host":"smtp.ethereal.email","port":587},"FastMail":{"description":"FastMail","domains":["fastmail.fm"],"host":"smtp.fastmail.com","port":465,"secure":true},"Feishu Mail":{"description":"Feishu Mail (Lark)","aliases":["Feishu","FeishuMail"],"domains":["www.feishu.cn"],"host":"smtp.feishu.cn","port":465,"secure":true},"Forward Email":{"description":"Forward Email (email forwarding service)","aliases":["FE","ForwardEmail"],"domains":["forwardemail.net"],"host":"smtp.forwardemail.net","port":465,"secure":true},"GandiMail":{"description":"Gandi Mail","aliases":["Gandi","Gandi Mail"],"host":"mail.gandi.net","port":587},"Gmail":{"description":"Gmail","aliases":["Google Mail"],"domains":["gmail.com","googlemail.com"],"host":"smtp.gmail.com","port":465,"secure":true},"GmailWorkspace":{"description":"Gmail Workspace","aliases":["Google Workspace Mail"],"host":"smtp-relay.gmail.com","port":465,"secure":true},"GMX":{"description":"GMX Mail","domains":["gmx.com","gmx.net","gmx.de"],"host":"mail.gmx.com","port":587},"Godaddy":{"description":"GoDaddy Email (US)","host":"smtpout.secureserver.net","port":25},"GodaddyAsia":{"description":"GoDaddy Email (Asia)","host":"smtp.asia.secureserver.net","port":25},"GodaddyEurope":{"description":"GoDaddy Email (Europe)","host":"smtp.europe.secureserver.net","port":25},"hot.ee":{"description":"Hot.ee (Estonian email provider)","host":"mail.hot.ee"},"Hotmail":{"description":"Outlook.com / Hotmail","aliases":["Outlook","Outlook.com","Hotmail.com"],"domains":["hotmail.com","outlook.com"],"host":"smtp-mail.outlook.com","port":587},"iCloud":{"description":"iCloud Mail","aliases":["Me","Mac"],"domains":["me.com","mac.com"],"host":"smtp.mail.me.com","port":587},"Infomaniak":{"description":"Infomaniak Mail (Swiss hosting provider)","host":"mail.infomaniak.com","domains":["ik.me","ikmail.com","etik.com"],"port":587},"KolabNow":{"description":"KolabNow (secure email service)","domains":["kolabnow.com"],"aliases":["Kolab"],"host":"smtp.kolabnow.com","port":465,"secure":true,"authMethod":"LOGIN"},"Loopia":{"description":"Loopia (Swedish hosting provider)","host":"mailcluster.loopia.se","port":465},"Loops":{"description":"Loops","host":"smtp.loops.so","port":587},"mail.ee":{"description":"Mail.ee (Estonian email provider)","host":"smtp.mail.ee"},"Mail.ru":{"description":"Mail.ru","host":"smtp.mail.ru","port":465,"secure":true},"Mailcatch.app":{"description":"Mailcatch (email testing service)","host":"sandbox-smtp.mailcatch.app","port":2525},"Maildev":{"description":"MailDev (local email testing)","port":1025,"ignoreTLS":true},"MailerSend":{"description":"MailerSend","host":"smtp.mailersend.net","port":587},"Mailgun":{"description":"Mailgun","host":"smtp.mailgun.org","port":465,"secure":true},"Mailjet":{"description":"Mailjet","host":"in.mailjet.com","port":587},"Mailosaur":{"description":"Mailosaur (email testing service)","host":"mailosaur.io","port":25},"Mailtrap":{"description":"Mailtrap","host":"live.smtp.mailtrap.io","port":587},"Mandrill":{"description":"Mandrill (by Mailchimp)","host":"smtp.mandrillapp.com","port":587},"Naver":{"description":"Naver Mail (Korean email provider)","host":"smtp.naver.com","port":587},"OhMySMTP":{"description":"OhMySMTP (email delivery service)","host":"smtp.ohmysmtp.com","port":587,"secure":false},"One":{"description":"One.com Email","host":"send.one.com","port":465,"secure":true},"OpenMailBox":{"description":"OpenMailBox","aliases":["OMB","openmailbox.org"],"host":"smtp.openmailbox.org","port":465,"secure":true},"Outlook365":{"description":"Microsoft 365 / Office 365","host":"smtp.office365.com","port":587,"secure":false},"Postmark":{"description":"Postmark","aliases":["PostmarkApp"],"host":"smtp.postmarkapp.com","port":2525},"Proton":{"description":"Proton Mail","aliases":["ProtonMail","Proton.me","Protonmail.com","Protonmail.ch"],"domains":["proton.me","protonmail.com","pm.me","protonmail.ch"],"host":"smtp.protonmail.ch","port":587,"requireTLS":true},"qiye.aliyun":{"description":"Alibaba Mail Enterprise Edition","host":"smtp.mxhichina.com","port":"465","secure":true},"QQ":{"description":"QQ Mail","domains":["qq.com"],"host":"smtp.qq.com","port":465,"secure":true},"QQex":{"description":"QQ Enterprise Mail","aliases":["QQ Enterprise"],"domains":["exmail.qq.com"],"host":"smtp.exmail.qq.com","port":465,"secure":true},"Resend":{"description":"Resend","host":"smtp.resend.com","port":465,"secure":true},"Runbox":{"description":"Runbox (Norwegian email provider)","domains":["runbox.com"],"host":"smtp.runbox.com","port":465,"secure":true},"SendCloud":{"description":"SendCloud (Chinese email delivery)","host":"smtp.sendcloud.net","port":2525},"SendGrid":{"description":"SendGrid","host":"smtp.sendgrid.net","port":587},"SendinBlue":{"description":"Brevo (formerly Sendinblue)","aliases":["Brevo"],"host":"smtp-relay.brevo.com","port":587},"SendPulse":{"description":"SendPulse","host":"smtp-pulse.com","port":465,"secure":true},"SES":{"description":"AWS SES US East (N. Virginia)","host":"email-smtp.us-east-1.amazonaws.com","port":465,"secure":true},"SES-AP-NORTHEAST-1":{"description":"AWS SES Asia Pacific (Tokyo)","host":"email-smtp.ap-northeast-1.amazonaws.com","port":465,"secure":true},"SES-AP-NORTHEAST-2":{"description":"AWS SES Asia Pacific (Seoul)","host":"email-smtp.ap-northeast-2.amazonaws.com","port":465,"secure":true},"SES-AP-NORTHEAST-3":{"description":"AWS SES Asia Pacific (Osaka)","host":"email-smtp.ap-northeast-3.amazonaws.com","port":465,"secure":true},"SES-AP-SOUTH-1":{"description":"AWS SES Asia Pacific (Mumbai)","host":"email-smtp.ap-south-1.amazonaws.com","port":465,"secure":true},"SES-AP-SOUTHEAST-1":{"description":"AWS SES Asia Pacific (Singapore)","host":"email-smtp.ap-southeast-1.amazonaws.com","port":465,"secure":true},"SES-AP-SOUTHEAST-2":{"description":"AWS SES Asia Pacific (Sydney)","host":"email-smtp.ap-southeast-2.amazonaws.com","port":465,"secure":true},"SES-CA-CENTRAL-1":{"description":"AWS SES Canada (Central)","host":"email-smtp.ca-central-1.amazonaws.com","port":465,"secure":true},"SES-EU-CENTRAL-1":{"description":"AWS SES Europe (Frankfurt)","host":"email-smtp.eu-central-1.amazonaws.com","port":465,"secure":true},"SES-EU-NORTH-1":{"description":"AWS SES Europe (Stockholm)","host":"email-smtp.eu-north-1.amazonaws.com","port":465,"secure":true},"SES-EU-WEST-1":{"description":"AWS SES Europe (Ireland)","host":"email-smtp.eu-west-1.amazonaws.com","port":465,"secure":true},"SES-EU-WEST-2":{"description":"AWS SES Europe (London)","host":"email-smtp.eu-west-2.amazonaws.com","port":465,"secure":true},"SES-EU-WEST-3":{"description":"AWS SES Europe (Paris)","host":"email-smtp.eu-west-3.amazonaws.com","port":465,"secure":true},"SES-SA-EAST-1":{"description":"AWS SES South America (São Paulo)","host":"email-smtp.sa-east-1.amazonaws.com","port":465,"secure":true},"SES-US-EAST-1":{"description":"AWS SES US East (N. Virginia)","host":"email-smtp.us-east-1.amazonaws.com","port":465,"secure":true},"SES-US-EAST-2":{"description":"AWS SES US East (Ohio)","host":"email-smtp.us-east-2.amazonaws.com","port":465,"secure":true},"SES-US-GOV-EAST-1":{"description":"AWS SES GovCloud (US-East)","host":"email-smtp.us-gov-east-1.amazonaws.com","port":465,"secure":true},"SES-US-GOV-WEST-1":{"description":"AWS SES GovCloud (US-West)","host":"email-smtp.us-gov-west-1.amazonaws.com","port":465,"secure":true},"SES-US-WEST-1":{"description":"AWS SES US West (N. California)","host":"email-smtp.us-west-1.amazonaws.com","port":465,"secure":true},"SES-US-WEST-2":{"description":"AWS SES US West (Oregon)","host":"email-smtp.us-west-2.amazonaws.com","port":465,"secure":true},"Seznam":{"description":"Seznam Email (Czech email provider)","aliases":["Seznam Email"],"domains":["seznam.cz","email.cz","post.cz","spoluzaci.cz"],"host":"smtp.seznam.cz","port":465,"secure":true},"SMTP2GO":{"description":"SMTP2GO","host":"mail.smtp2go.com","port":2525},"Sparkpost":{"description":"SparkPost","aliases":["SparkPost","SparkPost Mail"],"domains":["sparkpost.com"],"host":"smtp.sparkpostmail.com","port":587,"secure":false},"Tipimail":{"description":"Tipimail (email delivery service)","host":"smtp.tipimail.com","port":587},"Tutanota":{"description":"Tutanota (Tuta Mail)","domains":["tutanota.com","tuta.com","tutanota.de","tuta.io"],"host":"smtp.tutanota.com","port":465,"secure":true},"Yahoo":{"description":"Yahoo Mail","domains":["yahoo.com"],"host":"smtp.mail.yahoo.com","port":465,"secure":true},"Yandex":{"description":"Yandex Mail","domains":["yandex.ru"],"host":"smtp.yandex.ru","port":465,"secure":true},"Zimbra":{"description":"Zimbra Mail Server","aliases":["Zimbra Collaboration"],"host":"smtp.zimbra.com","port":587,"requireTLS":true},"Zoho":{"description":"Zoho Mail","host":"smtp.zoho.com","port":465,"secure":true,"authMethod":"LOGIN"}}')},91146,(a,b,c)=>{"use strict";let d=a.r(6650),e={};function f(a){return a.replace(/[^a-zA-Z0-9.-]/g,"").toLowerCase()}Object.keys(d).forEach(a=>{var b;let c,g=d[a],h=(c={},Object.keys(b=g).forEach(a=>{["domains","aliases"].includes(a)||(c[a]=b[a])}),c);e[f(a)]=h,[].concat(g.aliases||[]).forEach(a=>{e[f(a)]=h}),[].concat(g.domains||[]).forEach(a=>{e[f(a)]=h})}),b.exports=function(a){return e[a=f(a.split("@").pop())]||!1}},66339,(a,b,c)=>{"use strict";let d=a.r(27699),e=a.r(73061),f=a.r(62852),g=a.r(91146),h=a.r(46414),i=a.r(334),j=a.r(32930);b.exports=class extends d{constructor(a){let b;super(),"string"==typeof(a=a||{})&&(a={url:a});let c=a.service;"function"==typeof a.getSocket&&(this.getSocket=a.getSocket),a.url&&(b=h.parseConnectionUrl(a.url),c=c||b.service),this.options=h.assign(!1,a,b,c&&g(c)),this.options.maxConnections=this.options.maxConnections||5,this.options.maxMessages=this.options.maxMessages||100,this.logger=h.getLogger(this.options,{component:this.options.component||"smtp-pool"}),this.name="SMTP (pool)",this.version=j.version+"[client:"+j.version+"]",this._rateLimit={counter:0,timeout:null,waiting:[],checkpoint:!1,delta:Number(this.options.rateDelta)||1e3,limit:Number(this.options.rateLimit)||0},this._closed=!1,this._queue=[],this._connections=[],this._connectionCounter=0,this.idling=!0,setImmediate(()=>{this.idling&&this.emit("idle")})}getSocket(a,b){return setImmediate(()=>b(null,!1))}send(a,b){return!this._closed&&(this._queue.push({mail:a,requeueAttempts:0,callback:b}),this.idling&&this._queue.length>=this.options.maxConnections&&(this.idling=!1),setImmediate(()=>this._processMessages()),!0)}close(){let a,b=this._connections.length;if(this._closed=!0,clearTimeout(this._rateLimit.timeout),!b&&!this._queue.length)return;for(let c=b-1;c>=0;c--)this._connections[c]&&this._connections[c].available&&((a=this._connections[c]).close(),this.logger.info({tnx:"connection",cid:a.id,action:"removed"},"Connection #%s removed",a.id));if(b&&!this._connections.length&&this.logger.debug({tnx:"connection"},"All connections removed"),!this._queue.length)return;let c=()=>{if(!this._queue.length)return void this.logger.debug({tnx:"connection"},"Pending queue entries cleared");let b=this._queue.shift();if(b&&"function"==typeof b.callback)try{b.callback(Error("Connection pool was closed"))}catch(b){this.logger.error({err:b,tnx:"callback",cid:a.id},"Callback error for #%s: %s",a.id,b.message)}setImmediate(c)};setImmediate(c)}_processMessages(){if(this._closed)return;if(!this._queue.length){this.idling||(this.idling=!0,this.emit("idle"));return}let a=this._connections.find(a=>a.available);if(!a&&this._connections.length\s]/g,""),a.available=!1,this.logger.debug({tnx:"pool",cid:a.id,messageId:b.messageId,action:"assign"},"Assigned message <%s> to #%s (%s)",b.messageId,a.id,a.messages+1),this._rateLimit.limit&&(this._rateLimit.counter++,this._rateLimit.checkpoint||(this._rateLimit.checkpoint=Date.now())),a.send(b.mail,(c,d)=>{if(b===a.queueEntry){try{b.callback(c,d)}catch(b){this.logger.error({err:b,tnx:"callback",cid:a.id},"Callback error for #%s: %s",a.id,b.message)}a.queueEntry=!1}})}_createConnection(){let a=new e(this);return a.id=++this._connectionCounter,this.logger.info({tnx:"pool",cid:a.id,action:"conection"},"Created new pool resource #%s",a.id),a.on("available",()=>{this.logger.debug({tnx:"connection",cid:a.id,action:"available"},"Connection #%s became available",a.id),this._closed?this.close():this._processMessages()}),a.once("error",b=>{if(b.code!==i.EMAXLIMIT?this.logger.warn({err:b,tnx:"pool",cid:a.id},"Pool Error for #%s: %s",a.id,b.message):this.logger.debug({tnx:"pool",cid:a.id,action:"maxlimit"},"Max messages limit exchausted for #%s",a.id),a.queueEntry){try{a.queueEntry.callback(b)}catch(b){this.logger.error({err:b,tnx:"callback",cid:a.id},"Callback error for #%s: %s",a.id,b.message)}a.queueEntry=!1}this._removeConnection(a),this._continueProcessing()}),a.once("close",()=>{this.logger.info({tnx:"connection",cid:a.id,action:"closed"},"Connection #%s was closed",a.id),this._removeConnection(a),a.queueEntry?setTimeout(()=>{a.queueEntry&&(this._shouldRequeuOnConnectionClose(a.queueEntry)?this._requeueEntryOnConnectionClose(a):this._failDeliveryOnConnectionClose(a)),this._continueProcessing()},50):(this._closed||!this.idling||this._connections.length||this.emit("clear"),this._continueProcessing())}),this._connections.push(a),a}_shouldRequeuOnConnectionClose(a){return void 0===this.options.maxRequeues||this.options.maxRequeues<0||a.requeueAttempts for #%s. Attempt: #%s",a.queueEntry.messageId,a.id,a.queueEntry.requeueAttempts),this._queue.unshift(a.queueEntry),a.queueEntry=!1}_continueProcessing(){this._closed?this.close():setTimeout(()=>this._processMessages(),100)}_removeConnection(a){let b=this._connections.indexOf(a);-1!==b&&this._connections.splice(b,1)}_checkRateLimit(a){if(!this._rateLimit.limit)return a();let b=Date.now();return this._rateLimit.counterthis._clearRateLimit(),this._rateLimit.delta-(b-this._rateLimit.checkpoint)),this._rateLimit.checkpoint=b))}_clearRateLimit(){for(clearTimeout(this._rateLimit.timeout),this._rateLimit.timeout=null,this._rateLimit.counter=0,this._rateLimit.checkpoint=!1;this._rateLimit.waiting.length;)setImmediate(this._rateLimit.waiting.shift())}isIdle(){return this.idling}verify(a){let b;a||(b=new Promise((b,c)=>{a=h.callbackPromise(b,c)}));let c=new e(this).auth;return this.getSocket(this.options,(b,d)=>{if(b)return a(b);let e=this.options;d&&d.connection&&(this.logger.info({tnx:"proxy",remoteAddress:d.connection.remoteAddress,remotePort:d.connection.remotePort,destHost:e.host||"",destPort:e.port||"",action:"connected"},"Using proxied socket from %s:%s to %s:%s",d.connection.remoteAddress,d.connection.remotePort,e.host||"",e.port||""),e=Object.assign(h.assign(!1,e),d));let g=new f(e),j=!1;g.once("error",b=>{if(!j)return j=!0,g.close(),a(b)}),g.once("end",()=>{if(!j)return j=!0,a(Error("Connection closed"))});let k=()=>{if(!j)return j=!0,g.quit(),a(null,!0)};g.connect(()=>{if(!j)if(c&&(g.allowsAuth||e.forceAuth))g.login(c,b=>{if(!j){if(b)return j=!0,g.close(),a(b);k()}});else if(!c&&g.allowsAuth&&e.forceAuth){let b=Error("Authentication info was not provided");return b.code=i.ENOAUTH,j=!0,g.close(),a(b)}else k()})}),b}}},139,(a,b,c)=>{"use strict";let d=a.r(27699),e=a.r(62852),f=a.r(91146),g=a.r(46414),h=a.r(32131),i=a.r(334),j=a.r(32930);b.exports=class extends d{constructor(a){let b;super(),"string"==typeof(a=a||{})&&(a={url:a});let c=a.service;"function"==typeof a.getSocket&&(this.getSocket=a.getSocket),a.url&&(b=g.parseConnectionUrl(a.url),c=c||b.service),this.options=g.assign(!1,a,b,c&&f(c)),this.logger=g.getLogger(this.options,{component:this.options.component||"smtp-transport"}),this.name="SMTP",this.version=j.version+"[client:"+j.version+"]",this.options.auth&&(this.auth=this.getAuth({}))}getSocket(a,b){return setImmediate(()=>b(null,!1))}getAuth(a){if(!a)return this.auth&&this.auth.oauth2&&this.mailer&&(this.auth.oauth2.provisionCallback=this.mailer.get("oauth2_provision_cb")||this.auth.oauth2.provisionCallback),this.auth;let b=Object.assign({},this.options.auth&&"object"==typeof this.options.auth?this.options.auth:{},"object"==typeof a?a:{});if(0===Object.keys(b).length)return!1;if("OAUTH2"!==(b.type||"").toString().toUpperCase())return{type:(b.type||"").toString().toUpperCase()||"LOGIN",user:b.user,credentials:{user:b.user||"",pass:b.pass,options:b.options},method:(b.method||"").trim().toUpperCase()||this.options.authMethod||!1};{if(!b.service&&!b.user)return!1;let a=new h(b,this.logger);return a.provisionCallback=this.mailer&&this.mailer.get("oauth2_provision_cb")||a.provisionCallback,a.on("token",a=>this.mailer.emit("token",a)),a.on("error",a=>this.emit("error",a)),{type:"OAUTH2",user:b.user,oauth2:a,method:"XOAUTH2"}}}send(a,b){this.getSocket(this.options,(c,d)=>{let f;if(c)return b(c);let h=!1,j=this.options;d&&d.connection&&(this.logger.info({tnx:"proxy",remoteAddress:d.connection.remoteAddress,remotePort:d.connection.remotePort,destHost:j.host||"",destPort:j.port||"",action:"connected"},"Using proxied socket from %s:%s to %s:%s",d.connection.remoteAddress,d.connection.remotePort,j.host||"",j.port||""),j=Object.assign(g.assign(!1,j),d));let k=new e(j),l=()=>{f&&f!==this.auth&&f.oauth2&&f.oauth2.removeAllListeners(),f=null};k.once("error",a=>{if(!h)return h=!0,l(),k.close(),b(a)}),k.once("end",()=>{if(h)return;let a=setTimeout(()=>{if(h)return;h=!0,l();let a=Error("Unexpected socket close");k&&k._socket&&k._socket.upgrading&&(a.code=i.ETLS),b(a)},1e3);try{a.unref()}catch(a){}});let m=()=>{let c=a.message.getEnvelope(),d=a.message.messageId(),e=[].concat(c.to||[]);e.length>3&&e.push("...and "+e.splice(2).length+" more"),a.data.dsn&&(c.dsn=a.data.dsn),a.data.requireTLSExtensionEnabled&&(c.requireTLSExtensionEnabled=a.data.requireTLSExtensionEnabled),this.logger.info({tnx:"send",messageId:d},"Sending message %s to <%s>",d,e.join(", ")),k.send(c,a.message.createReadStream(),(a,e)=>{if(h=!0,l(),k.close(),a)return this.logger.error({err:a,tnx:"send"},"Send error for %s: %s",d,a.message),b(a);e.envelope={from:c.from,to:c.to},e.messageId=d;try{return b(null,e)}catch(a){this.logger.error({err:a,tnx:"callback"},"Callback error for %s: %s",d,a.message)}})};k.connect(()=>{h||((f=this.getAuth(a.data.auth))&&(k.allowsAuth||j.forceAuth)?k.login(f,a=>{if(l(),!h){if(a)return h=!0,k.close(),b(a);m()}}):m())})})}verify(a){let b;return a||(b=new Promise((b,c)=>{a=g.callbackPromise(b,c)})),this.getSocket(this.options,(b,c)=>{let d;if(b)return a(b);let f=this.options;c&&c.connection&&(this.logger.info({tnx:"proxy",remoteAddress:c.connection.remoteAddress,remotePort:c.connection.remotePort,destHost:f.host||"",destPort:f.port||"",action:"connected"},"Using proxied socket from %s:%s to %s:%s",c.connection.remoteAddress,c.connection.remotePort,f.host||"",f.port||""),f=Object.assign(g.assign(!1,f),c));let h=new e(f),j=!1,k=()=>{d&&d!==this.auth&&d.oauth2&&d.oauth2.removeAllListeners(),d=null};h.once("error",b=>{if(!j)return j=!0,k(),h.close(),a(b)}),h.once("end",()=>{if(!j)return j=!0,k(),a(Error("Connection closed"))});let l=()=>{if(!j)return j=!0,k(),h.quit(),a(null,!0)};h.connect(()=>{if(!j)if((d=this.getAuth({}))&&(h.allowsAuth||f.forceAuth))h.login(d,b=>{if(k(),!j){if(b)return j=!0,h.close(),a(b);l()}});else if(!d&&h.allowsAuth&&f.forceAuth){let b=Error("Authentication info was not provided");return b.code=i.ENOAUTH,j=!0,k(),h.close(),a(b)}else l()})}),b}close(){this.auth&&this.auth.oauth2&&this.auth.oauth2.removeAllListeners(),this.emit("close")}}},33405,(a,b,c)=>{b.exports=a.x("child_process",()=>require("child_process"))},75831,(a,b,c)=>{"use strict";let{spawn:d}=a.r(33405),e=a.r(32930),f=a.r(46414),g=a.r(334),h=a.r(69493),i=a.r(74372);b.exports=class{constructor(a){a=a||{},this._spawn=d,this.options=a,this.name="Sendmail",this.version=e.version,this.path="sendmail",this.args=!1,this.logger=f.getLogger(this.options,{component:this.options.component||"sendmail"}),"string"==typeof a?this.path=a:"object"==typeof a&&(a.path&&(this.path=a.path),Array.isArray(a.args)&&(this.args=a.args)),this.winbreak=["win","windows","dos","\r\n"].includes((a.newline||"").toString().toLowerCase())}send(a,b){let c,d;a.message.keepBcc=!0;let e=a.data.envelope||a.message.getEnvelope(),f=a.message.messageId();if([].concat(e.from||[]).concat(e.to||[]).some(a=>/^-/.test(a))){let a=Error("Can not send mail. Invalid envelope addresses.");return a.code=g.ESENDMAIL,b(a)}let j=this.args?["-i"].concat(this.args).concat(e.to):["-i"].concat(e.from?["-f",e.from]:[]).concat(e.to),k=a=>{if(!c&&(c=!0,"function"==typeof b))return a?b(a):b(null,{envelope:e,messageId:f,response:"Messages queued for delivery"})};try{d=this._spawn(this.path,j)}catch(a){return this.logger.error({err:a,tnx:"spawn",messageId:f},"Error occurred while spawning sendmail. %s",a.message),k(a)}if(d){d.on("error",a=>{this.logger.error({err:a,tnx:"spawn",messageId:f},"Error occurred when sending message %s. %s",f,a.message),k(a)}),d.once("exit",a=>{if(!a)return k();let b=Error(127===a?"Sendmail command not found, process exited with code "+a:"Sendmail exited with code "+a);b.code=g.ESENDMAIL,this.logger.error({err:b,tnx:"stdin",messageId:f},"Error sending message %s to sendmail. %s",f,b.message),k(b)}),d.once("close",k),d.stdin.on("error",a=>{this.logger.error({err:a,tnx:"stdin",messageId:f},"Error occurred when piping message %s to sendmail. %s",f,a.message),k(a)});let b=[].concat(e.to||[]);b.length>3&&b.push("...and "+b.splice(2).length+" more"),this.logger.info({tnx:"send",messageId:f},"Sending message %s to <%s>",f,b.join(", "));let c=a.message.createReadStream(),j=c;this.options.newline&&(j=c.pipe(this.winbreak?new h:new i),c.once("error",a=>j.emit("error",a))),j.once("error",a=>{this.logger.error({err:a,tnx:"stdin",messageId:f},"Error occurred when generating message %s. %s",f,a.message),d.kill("SIGINT"),k(a)}),j.pipe(d.stdin)}else{let a=Error("sendmail was not found");return a.code=g.ESENDMAIL,k(a)}}}},96473,(a,b,c)=>{"use strict";let d=a.r(32930),e=a.r(46414),f=a.r(69493),g=a.r(74372);b.exports=class{constructor(a){a=a||{},this.options=a,this.name="StreamTransport",this.version=d.version,this.logger=e.getLogger(this.options,{component:this.options.component||"stream-transport"}),this.winbreak=["win","windows","dos","\r\n"].includes((a.newline||"").toString().toLowerCase())}send(a,b){a.message.keepBcc=!0;let c=a.data.envelope||a.message.getEnvelope(),d=a.message.messageId(),e=[].concat(c.to||[]);e.length>3&&e.push("...and "+e.splice(2).length+" more"),this.logger.info({tnx:"send",messageId:d},"Sending message %s to <%s> using %s line breaks",d,e.join(", "),this.winbreak?"":""),setImmediate(()=>{let e;try{if(e=a.message.createReadStream(),this.options.newline){let a=e;e=a.pipe(this.winbreak?new f:new g),a.once("error",a=>e.emit("error",a))}}catch(a){return this.logger.error({err:a,tnx:"send",messageId:d},"Creating send stream failed for %s. %s",d,a.message),b(a)}if(!this.options.buffer)return e.once("error",a=>{this.logger.error({err:a,tnx:"send",messageId:d},"Failed creating message for %s. %s",d,a.message)}),b(null,{envelope:c,messageId:d,message:e});let h=[],i=0;e.on("readable",()=>{let a;for(;null!==(a=e.read());)h.push(a),i+=a.length}),e.once("error",a=>(this.logger.error({err:a,tnx:"send",messageId:d},"Failed creating message for %s. %s",d,a.message),b(a))),e.on("end",()=>b(null,{envelope:c,messageId:d,message:Buffer.concat(h,i)}))})}}},21183,(a,b,c)=>{"use strict";let d=a.r(32930),e=a.r(46414);b.exports=class{constructor(a){a=a||{},this.options=a,this.name="JSONTransport",this.version=d.version,this.logger=e.getLogger(this.options,{component:this.options.component||"json-transport"})}send(a,b){a.message.keepBcc=!0;let c=a.data.envelope||a.message.getEnvelope(),d=a.message.messageId(),e=[].concat(c.to||[]);e.length>3&&e.push("...and "+e.splice(2).length+" more"),this.logger.info({tnx:"send",messageId:d},"Composing JSON structure of %s to <%s>",d,e.join(", ")),setImmediate(()=>{a.normalize((a,e)=>a?(this.logger.error({err:a,tnx:"send",messageId:d},"Failed building JSON structure for %s. %s",d,a.message),b(a)):(delete e.envelope,delete e.normalizedHeaders,b(null,{envelope:c,messageId:d,message:this.options.skipEncoding?e:JSON.stringify(e)})))})}}},90934,(a,b,c)=>{"use strict";let d=a.r(27699),e=a.r(32930),f=a.r(46414),g=a.r(334),h=a.r(69493),i=a.r(33752);function j(a){return a&&"object"==typeof a&&!a.code&&(a.code=g.ESES),a}b.exports=class extends d{constructor(a){super(),a=a||{},this.options=a,this.ses=this.options.SES,this.name="SESTransport",this.version=e.version,this.logger=f.getLogger(this.options,{component:this.options.component||"ses-transport"})}getRegion(a){return this.ses.sesClient.config&&"function"==typeof this.ses.sesClient.config.region?this.ses.sesClient.config.region().then(b=>a(null,b)).catch(b=>a(b)):a(null,!1)}send(a,b){let c=a.message._headers.find(a=>/^from$/i.test(a.key));if(c){let a=new i("text/plain");c=a._convertAddresses(a._parseAddresses(c.value))}let d=a.data.envelope||a.message.getEnvelope(),e=a.message.messageId(),f=[].concat(d.to||[]);f.length>3&&f.push("...and "+f.splice(2).length+" more"),this.logger.info({tnx:"send",messageId:e},"Sending message %s to <%s>",e,f.join(", ")),setImmediate(()=>{var f;let g,i,k,l;return f=(f,g)=>{if(f)return this.logger.error({err:f,tnx:"send",messageId:e},"Failed creating message for %s. %s",e,f.message),b(f);let h=Object.assign({Content:{Raw:{Data:g}},FromEmailAddress:c||d.from,Destination:{ToAddresses:d.to}},a.data.ses||{});this.getRegion((a,c)=>{(a||!c)&&(c="us-east-1");let f=new this.ses.SendEmailCommand(h);this.ses.sesClient.send(f).then(a=>{"us-east-1"===c&&(c="email"),b(null,{envelope:{from:d.from,to:d.to},messageId:"<"+a.MessageId+(/@/.test(a.MessageId)?"":"@"+c+".amazonses.com")+">",response:a.MessageId,raw:g})}).catch(a=>{j(a),this.logger.error({err:a,tnx:"send"},"Send error for %s: %s",e,a.message),b(a)})})},a.data._dkim||(a.data._dkim={}),a.data._dkim.skipFields&&"string"==typeof a.data._dkim.skipFields?a.data._dkim.skipFields+=":date:message-id":a.data._dkim.skipFields="date:message-id",i=(g=a.message.createReadStream()).pipe(new h),k=[],l=0,void(i.on("readable",()=>{let a;for(;null!==(a=i.read());)k.push(a),l+=a.length}),g.once("error",a=>i.emit("error",a)),i.once("error",a=>f(a)),i.once("end",()=>f(null,Buffer.concat(k,l))))})}verify(a){let b;a||(b=new Promise((b,c)=>{a=f.callbackPromise(b,c)}));let c=b=>b&&!["InvalidParameterValue","MessageRejected"].includes(b.code||b.Code||b.name)?a(j(b)):a(null,!0),d={Content:{Raw:{Data:Buffer.from("From: \r\nTo: \r\n Subject: Invalid\r\n\r\nInvalid")}},FromEmailAddress:"invalid@invalid",Destination:{ToAddresses:["invalid@invalid"]}};return this.getRegion(()=>{let a=new this.ses.SendEmailCommand(d);this.ses.sesClient.send(a).then(()=>c(null)).catch(a=>c(a))}),b}}},48531,(a,b,c)=>{"use strict";let d=a.r(40051),e=a.r(46414),f=a.r(66339),g=a.r(139),h=a.r(75831),i=a.r(96473),j=a.r(21183),k=a.r(90934),l=a.r(334),m=a.r(43461),n=a.r(32930),o=(process.env.ETHEREAL_API||"https://api.nodemailer.com").replace(/\/+$/,""),p=(process.env.ETHEREAL_WEB||"https://ethereal.email").replace(/\/+$/,""),q=(process.env.ETHEREAL_API_KEY||"").replace(/\s*/g,"")||null,r=["true","yes","y","1"].includes((process.env.ETHEREAL_CACHE||"yes").toString().trim().toLowerCase()),s=!1;b.exports.createTransport=function(a,b){let c;if("object"==typeof a&&"function"!=typeof a.send||"string"==typeof a&&/^(smtps?|direct):/i.test(a)){let b="string"==typeof a?a:a.url;if((c=b?e.parseConnectionUrl(b):a).pool)a=new f(c);else if(c.sendmail)a=new h(c);else if(c.streamTransport)a=new i(c);else if(c.jsonTransport)a=new j(c);else if(c.SES){if(c.SES.ses&&c.SES.aws){let a=Error("Using legacy SES configuration, expecting @aws-sdk/client-sesv2, see https://nodemailer.com/transports/ses/");throw a.code=l.ECONFIG,a}a=new k(c)}else a=new g(c)}return new d(a,c,b)},b.exports.createTestAccount=function(a,b){let c;if(b||"function"!=typeof a||(b=a,a=!1),b||(c=new Promise((a,c)=>{b=e.callbackPromise(a,c)})),r&&s)return setImmediate(()=>b(null,s)),c;a=a||o;let d=[],f=0,g={},h={requestor:n.name,version:n.version};q&&(g.Authorization="Bearer "+q);let i={contentType:"application/json",method:"POST",headers:g,body:Buffer.from(JSON.stringify(h))};/^https:/i.test(a)&&(i.tls={rejectUnauthorized:!0});let j=m(a+"/user",i);return j.on("readable",()=>{let a;for(;null!==(a=j.read());)d.push(a),f+=a.length}),j.once("error",a=>b(a)),j.once("end",()=>{let a,c=Buffer.concat(d,f);try{a=JSON.parse(c.toString())}catch(a){return b(a)}if("success"!==a.status||a.error)return b(Error(a.error||"Request failed"));delete a.status,b(null,s=a)}),c},b.exports.getTestMessageUrl=function(a){if(!a||!a.response)return!1;let b=new Map,c=a.response.toString();if(c.length>2&&"]"===c.charAt(c.length-1)){let a=c.indexOf("[",c.lastIndexOf("]",c.length-2)+1);a>=0&&a{b.set(c,d)})}return!!(b.has("STATUS")&&b.has("MSGID"))&&(s.web||p)+"/message/"+b.get("MSGID")}},13095,(a,b,c)=>{"use strict";function d(a){for(let b=0;b{"use strict";var b=a.i(37936),c=a.i(48531);async function d(a){let{fullName:b,email:d,subject:e,message:f}=a;if(!b||!d||!f)return{success:!1,error:"Name, email, and message are required."};let g=process.env.SMTP_PASSWORD||"";g.startsWith('"')&&g.endsWith('"')&&(g=g.slice(1,-1)),g=g.replace(/\s+/g,"");let h=c.default.createTransport({host:process.env.SMTP_HOST,port:Number(process.env.SMTP_PORT)||465,secure:!0,auth:{user:process.env.SMTP_USER,pass:g}});try{return await h.sendMail({from:`"${b}" <${process.env.SMTP_USER}>`,to:process.env.CONTACT_RECEIVER,replyTo:d,subject:`New Contact Form Submission: ${e||"No Subject"}`,html:` +
+

New Contact Form Submission

+

Name: ${b}

+

Email: ${d}

+

Subject: ${e}

+

Message:

+
+ ${f.replace(/\n/g,"
")} +
+
+ `}),{success:!0}}catch(a){return console.error("Email send error:",a),{success:!1,error:(a instanceof Error?a.message:String(a))||"Failed to send the email. Please try again later."}}}(0,a.i(13095).ensureServerEntryExports)([d]),(0,b.registerServerReference)(d,"40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",null),a.s(["sendEmailAction",0,d])}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__055c-aq._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__055c-aq._.js.map b/.next/server/chunks/ssr/[root-of-the-server]__055c-aq._.js.map new file mode 100644 index 0000000..da3408a --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__055c-aq._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/build/webpack/loaders/next-flight-loader/server-reference.ts","../../../../node_modules/nodemailer/lib/punycode/index.js","../../../../node_modules/nodemailer/lib/shared/url.js","../../../../node_modules/nodemailer/lib/fetch/cookies.js","../../../../node_modules/nodemailer/package.json.%5Bjson%5D.cjs/turbopack%3A///node_modules/nodemailer/package.json","../../../../node_modules/nodemailer/lib/errors.js","../../../../node_modules/nodemailer/lib/fetch/index.js","../../../../node_modules/nodemailer/lib/shared/index.js","../../../../node_modules/nodemailer/lib/mime-funcs/mime-types.js","../../../../node_modules/nodemailer/lib/base64/index.js","../../../../node_modules/nodemailer/lib/qp/index.js","../../../../node_modules/nodemailer/lib/mime-funcs/index.js","../../../../node_modules/nodemailer/lib/addressparser/index.js","../../../../node_modules/nodemailer/lib/mime-node/last-newline.js","../../../../node_modules/nodemailer/lib/mime-node/le-windows.js","../../../../node_modules/nodemailer/lib/mime-node/le-unix.js","../../../../node_modules/nodemailer/lib/mime-node/index.js","../../../../node_modules/nodemailer/lib/mail-composer/index.js","../../../../node_modules/nodemailer/lib/dkim/message-parser.js","../../../../node_modules/nodemailer/lib/dkim/relaxed-body.js","../../../../node_modules/nodemailer/lib/dkim/sign.js","../../../../node_modules/nodemailer/lib/dkim/index.js","../../../../node_modules/nodemailer/lib/smtp-connection/http-proxy-client.js","../../../../node_modules/nodemailer/lib/mailer/mail-message.js","../../../../node_modules/nodemailer/lib/mailer/index.js","../../../../node_modules/nodemailer/lib/smtp-connection/data-stream.js","../../../../node_modules/nodemailer/lib/smtp-connection/index.js","../../../../node_modules/nodemailer/lib/xoauth2/index.js","../../../../node_modules/nodemailer/lib/smtp-pool/pool-resource.js","../../../../node_modules/nodemailer/lib/well-known/services.json.%5Bjson%5D.cjs/turbopack%3A///node_modules/nodemailer/lib/well-known/services.json","../../../../node_modules/nodemailer/lib/well-known/index.js","../../../../node_modules/nodemailer/lib/smtp-pool/index.js","../../../../node_modules/nodemailer/lib/smtp-transport/index.js","../../../../node_modules/nodemailer/lib/sendmail-transport/index.js","../../../../node_modules/nodemailer/lib/stream-transport/index.js","../../../../node_modules/nodemailer/lib/json-transport/index.js","../../../../node_modules/nodemailer/lib/ses-transport/index.js","../../../../node_modules/nodemailer/lib/nodemailer.js","../../../../node_modules/next/src/build/webpack/loaders/next-flight-loader/action-validate.ts","../../../../src/actions/sendEmail.ts"],"sourcesContent":["/* eslint-disable import/no-extraneous-dependencies */\nexport { registerServerReference } from 'react-server-dom-webpack/server'\n","/*\n\nCopied from https://github.com/mathiasbynens/punycode.js/blob/ef3505c8abb5143a00d53ce59077c9f7f4b2ac47/punycode.js\n\nCopyright Mathias Bynens \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n*/\n/* eslint callback-return: 0, no-bitwise: 0, eqeqeq: 0, prefer-arrow-callback: 0, object-shorthand: 0 */\n\n'use strict';\n\n/** Highest positive signed 32-bit float value */\nconst maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nconst base = 36;\nconst tMin = 1;\nconst tMax = 26;\nconst skew = 38;\nconst damp = 700;\nconst initialBias = 72;\nconst initialN = 128; // 0x80\nconst delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nconst regexPunycode = /^xn--/;\nconst regexNonASCII = /[^\\0-\\x7F]/; // Note: U+007F DEL is excluded too.\nconst regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nconst errors = {\n overflow: 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nconst baseMinusTMin = base - tMin;\nconst floor = Math.floor;\nconst stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, callback) {\n const result = [];\n let length = array.length;\n while (length--) {\n result[length] = callback(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {String} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(domain, callback) {\n const parts = domain.split('@');\n let result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n domain = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n domain = domain.replace(regexSeparators, '\\x2E');\n const labels = domain.split('.');\n const encoded = map(labels, callback).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n const output = [];\n let counter = 0;\n const length = string.length;\n while (counter < length) {\n const value = string.charCodeAt(counter++);\n if (value >= 0xd800 && value <= 0xdbff && counter < length) {\n // It's a high surrogate, and there is a next character.\n const extra = string.charCodeAt(counter++);\n if ((extra & 0xfc00) == 0xdc00) {\n // Low surrogate.\n output.push(((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000);\n } else {\n // It's an unmatched surrogate; only append this code unit, in case the\n // next code unit is the high surrogate of a surrogate pair.\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nconst ucs2encode = codePoints => String.fromCodePoint(...codePoints);\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nconst basicToDigit = function (codePoint) {\n if (codePoint >= 0x30 && codePoint < 0x3a) {\n return 26 + (codePoint - 0x30);\n }\n if (codePoint >= 0x41 && codePoint < 0x5b) {\n return codePoint - 0x41;\n }\n if (codePoint >= 0x61 && codePoint < 0x7b) {\n return codePoint - 0x61;\n }\n return base;\n};\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nconst digitToBasic = function (digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n};\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nconst adapt = function (delta, numPoints, firstTime) {\n let k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for (; /* no initialization */ delta > (baseMinusTMin * tMax) >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + ((baseMinusTMin + 1) * delta) / (delta + skew));\n};\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nconst decode = function (input) {\n // Don't use UCS-2.\n const output = [];\n const inputLength = input.length;\n let i = 0;\n let n = initialN;\n let bias = initialBias;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n let basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (let j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (let index = basic > 0 ? basic + 1 : 0; index < inputLength /* no final expression */; ) {\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n const oldi = i;\n for (let w = 1, k = base /* no condition */; ; k += base) {\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n const digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base) {\n error('invalid-input');\n }\n if (digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n const t = k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias;\n\n if (digit < t) {\n break;\n }\n\n const baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n }\n\n const out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output.\n output.splice(i++, 0, n);\n }\n\n return String.fromCodePoint(...output);\n};\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nconst encode = function (input) {\n const output = [];\n\n // Convert the input in UCS-2 to an array of Unicode code points.\n input = ucs2decode(input);\n\n // Cache the length.\n const inputLength = input.length;\n\n // Initialize the state.\n let n = initialN;\n let delta = 0;\n let bias = initialBias;\n\n // Handle the basic code points.\n for (const currentValue of input) {\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n const basicLength = output.length;\n let handledCPCount = basicLength;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string with a delimiter unless it's empty.\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n let m = maxInt;\n for (const currentValue of input) {\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow.\n const handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (const currentValue of input) {\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n if (currentValue === n) {\n // Represent delta as a generalized variable-length integer.\n let q = delta;\n for (let k = base /* no condition */; ; k += base) {\n const t = k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias;\n if (q < t) {\n break;\n }\n const qMinusT = q - t;\n const baseMinusT = base - t;\n output.push(stringFromCharCode(digitToBasic(t + (qMinusT % baseMinusT), 0)));\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount === basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n }\n return output.join('');\n};\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nconst toUnicode = function (input) {\n return mapDomain(input, function (string) {\n return regexPunycode.test(string) ? decode(string.slice(4).toLowerCase()) : string;\n });\n};\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nconst toASCII = function (input) {\n return mapDomain(input, function (string) {\n return regexNonASCII.test(string) ? 'xn--' + encode(string) : string;\n });\n};\n\n/*--------------------------------------------------------------------------*/\n\n/** Define the public API */\nconst punycode = {\n /**\n * A string representing the current Punycode.js version number.\n * @memberOf punycode\n * @type String\n */\n version: '2.3.1',\n /**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n ucs2: {\n decode: ucs2decode,\n encode: ucs2encode\n },\n decode: decode,\n encode: encode,\n toASCII: toASCII,\n toUnicode: toUnicode\n};\n\nmodule.exports = punycode;\n","'use strict';\n\n// URL parsing wrapper. Prefers the WHATWG `URL` (a global on Node 10+, and\n// available as `require('url').URL` since Node 6.13+) and only falls back to the\n// legacy, deprecation-warning-emitting `url.parse()` / `url.resolve()` on ancient\n// Node versions that predate the WHATWG implementation.\n//\n// The WHATWG `URL` exposes a different shape than the legacy parser, so results\n// are normalized back into the legacy field names the rest of the codebase reads\n// (`protocol`, `hostname`, `port`, `pathname`, `path`, `search`, `auth`, `query`,\n// `href`). This keeps every existing call site unchanged.\n//\n// Known, accepted divergences from the legacy parser:\n// - non-special schemes (smtp:/smtps:/direct:) are not host-lowercased by\n// WHATWG; cosmetic only, SMTP/DNS hosts are case-insensitive. (IDNA mapping\n// and IPv6 brackets are normalized back by normalizeHostname below.)\n// - a literal unescaped ':' inside a password is percent-encoded by WHATWG;\n// such passwords should be percent-encoded by the caller anyway.\n\nconst urllib = require('url');\nconst punycode = require('../punycode');\n\n// WHATWG URL constructor if available, otherwise undefined (Node < 6.13).\nconst URLImpl = (typeof URL !== 'undefined' && URL) || urllib.URL;\n\n// Matches a \"scheme:\" not followed by \"//\" (and with something after it), used\n// to re-insert the authority separator the legacy parser did not require.\nconst SLASHLESS_AUTHORITY = /^([a-zA-Z][a-zA-Z0-9+.-]*:)(?!\\/\\/)(.+)$/;\n\n// decodeURIComponent that never throws. Legacy url.parse() decodes the auth\n// component but tolerates malformed percent sequences, so mirror that.\nfunction safeDecode(str) {\n try {\n return decodeURIComponent(str);\n } catch (_err) {\n return str;\n }\n}\n\n// Derives the legacy-shaped bare hostname from a WHATWG URL. WHATWG keeps IPv6\n// literals bracketed ('[::1]') and, for non-special schemes (smtp:/smtps:/socks:),\n// percent-encodes a non-ASCII host instead of IDNA-mapping it. Both forms are\n// un-resolvable when handed to net/dns/http.request — which is what every call\n// site does — so map them back to what legacy url.parse() returned: the bare\n// address and the punycode form. Idempotent on plain ASCII and already-punycode\n// hosts, so special-scheme hosts (already IDNA-mapped by WHATWG) pass through.\nfunction normalizeHostname(raw) {\n let hostname = raw || '';\n if (!hostname) {\n // Host-less URL (e.g. 'direct:'): legacy returned '' here, not null;\n // consumers do `hostname.length` / `'.' + hostname`, so keep it a string.\n return '';\n }\n if (hostname.charAt(0) === '[' && hostname.charAt(hostname.length - 1) === ']') {\n return hostname.slice(1, -1);\n }\n return punycode.toASCII(safeDecode(hostname));\n}\n\nmodule.exports.parse = (input, parseQueryString) => {\n input = input || '';\n\n if (!URLImpl) {\n // Node < 6.13: no WHATWG URL available, use the legacy parser.\n return urllib.parse(input, parseQueryString);\n }\n\n // Legacy url.parse() parses a \"user:pass@host:port\" authority that follows\n // the scheme even without the \"//\" separator, for schemes outside its\n // built-in slashed-protocol list (smtp:/smtps:/socks:/...). The WHATWG\n // parser instead treats a scheme not followed by \"//\" as an opaque path.\n // Re-insert the \"//\" so slash-less connection/proxy URLs keep resolving to\n // an authority, as they did before. This assumes a slash-authority scheme,\n // which every consumer here uses (http/https/smtp/smtps/socks/direct); an\n // opaque scheme like mailto:/data:/tel: would be mis-split, but none reach\n // this module.\n const slashless = SLASHLESS_AUTHORITY.exec(input);\n const normalized = slashless ? slashless[1] + '//' + slashless[2] : input;\n\n let u;\n try {\n u = new URLImpl(normalized);\n } catch (_err) {\n // WHATWG rejects some input the legacy parser tolerated (empty/relative\n // strings, scheme-relative '//host/path', out-of-range ports, ...). Fall\n // back to the legacy parser so behavior — including the downstream errors\n // callers rely on — is preserved. This is the only path that can still\n // emit a deprecation warning; it fires for anything WHATWG cannot\n // represent, including legitimate relative URLs, not just malformed input.\n return urllib.parse(input, parseQueryString);\n }\n\n const hostname = normalizeHostname(u.hostname);\n const port = u.port || null;\n const pathname = u.pathname || null;\n const search = u.search || null;\n\n // Legacy `.auth` is the decoded \"user[:pass]\" string; WHATWG keeps the\n // username/password percent-encoded, so decode to stay byte-compatible with\n // existing consumers (parseConnectionUrl, Basic/Proxy-Authorization headers).\n let auth = null;\n if (u.username || u.password) {\n // Gate on password too: legacy url.parse('smtps://:pass@host').auth was\n // ':pass'. Dropping it would silently connect unauthenticated.\n auth = safeDecode(u.username) + (u.password ? ':' + safeDecode(u.password) : '');\n }\n\n let query;\n if (parseQueryString) {\n // Mirror querystring.parse(): null-prototype object, repeated keys → array.\n query = Object.create(null);\n u.searchParams.forEach((value, key) => {\n if (Object.prototype.hasOwnProperty.call(query, key)) {\n if (Array.isArray(query[key])) {\n query[key].push(value);\n } else {\n query[key] = [query[key], value];\n }\n } else {\n query[key] = value;\n }\n });\n } else {\n query = search ? search.slice(1) : null;\n }\n\n return {\n protocol: u.protocol || null,\n host: u.host || null,\n hostname,\n port,\n pathname,\n search,\n path: (pathname || '') + (search || '') || null,\n href: u.href,\n auth,\n query\n };\n};\n\nmodule.exports.resolve = (from, to) => {\n if (!URLImpl) {\n return urllib.resolve(from, to);\n }\n try {\n return new URLImpl(to, from).href;\n } catch (_err) {\n // Malformed target — fall back to the legacy resolver.\n return urllib.resolve(from, to);\n }\n};\n","'use strict';\n\n// module to handle cookies\n\nconst urllib = require('../shared/url');\n\nconst SESSION_TIMEOUT = 1800; // 30 min\n\n/**\n * Creates a biskviit cookie jar for managing cookie values in memory\n *\n * @constructor\n * @param {Object} [options] Optional options object\n */\nclass Cookies {\n constructor(options) {\n this.options = options || {};\n this.cookies = [];\n }\n\n /**\n * Stores a cookie string to the cookie storage\n *\n * @param {String} cookieStr Value from the 'Set-Cookie:' header\n * @param {String} url Current URL\n */\n set(cookieStr, url) {\n const urlparts = urllib.parse(url || '');\n const cookie = this.parse(cookieStr);\n let domain;\n\n if (cookie.domain) {\n domain = cookie.domain.replace(/^\\./, '');\n\n // do not allow cross origin cookies\n if (\n // can't be valid if the requested domain is shorter than current hostname\n urlparts.hostname.length < domain.length ||\n // prefix domains with dot to be sure that partial matches are not used\n ('.' + urlparts.hostname).substr(-domain.length + 1) !== '.' + domain\n ) {\n cookie.domain = urlparts.hostname;\n }\n } else {\n cookie.domain = urlparts.hostname;\n }\n\n if (!cookie.path) {\n cookie.path = this.getPath(urlparts.pathname);\n }\n\n // if no expire date, then use sessionTimeout value\n if (!cookie.expires) {\n cookie.expires = new Date(Date.now() + (Number(this.options.sessionTimeout || SESSION_TIMEOUT) || SESSION_TIMEOUT) * 1000);\n }\n\n return this.add(cookie);\n }\n\n /**\n * Returns cookie string for the 'Cookie:' header.\n *\n * @param {String} url URL to check for\n * @returns {String} Cookie header or empty string if no matches were found\n */\n get(url) {\n return this.list(url)\n .map(cookie => cookie.name + '=' + cookie.value)\n .join('; ');\n }\n\n /**\n * Lists all valied cookie objects for the specified URL\n *\n * @param {String} url URL to check for\n * @returns {Array} An array of cookie objects\n */\n list(url) {\n const result = [];\n\n for (let i = this.cookies.length - 1; i >= 0; i--) {\n const cookie = this.cookies[i];\n\n if (this.isExpired(cookie)) {\n this.cookies.splice(i, 1);\n continue;\n }\n\n if (this.match(cookie, url)) {\n result.unshift(cookie);\n }\n }\n\n return result;\n }\n\n /**\n * Parses cookie string from the 'Set-Cookie:' header\n *\n * @param {String} cookieStr String from the 'Set-Cookie:' header\n * @returns {Object} Cookie object\n */\n parse(cookieStr) {\n const cookie = {};\n\n (cookieStr || '')\n .toString()\n .split(';')\n .forEach(cookiePart => {\n const valueParts = cookiePart.split('=');\n const key = valueParts.shift().trim().toLowerCase();\n let value = valueParts.join('=').trim();\n let domain;\n\n if (!key) {\n // skip empty parts\n return;\n }\n\n switch (key) {\n case 'expires':\n value = new Date(value);\n // ignore date if can not parse it\n if (value.toString() !== 'Invalid Date') {\n cookie.expires = value;\n }\n break;\n\n case 'path':\n cookie.path = value;\n break;\n\n case 'domain':\n domain = value.toLowerCase();\n if (domain.length && domain.charAt(0) !== '.') {\n domain = '.' + domain; // ensure preceeding dot for user set domains\n }\n cookie.domain = domain;\n break;\n\n case 'max-age':\n cookie.expires = new Date(Date.now() + (Number(value) || 0) * 1000);\n break;\n\n case 'secure':\n cookie.secure = true;\n break;\n\n case 'httponly':\n cookie.httponly = true;\n break;\n\n default:\n if (!cookie.name) {\n cookie.name = key;\n cookie.value = value;\n }\n }\n });\n\n return cookie;\n }\n\n /**\n * Checks if a cookie object is valid for a specified URL\n *\n * @param {Object} cookie Cookie object\n * @param {String} url URL to check for\n * @returns {Boolean} true if cookie is valid for specifiec URL\n */\n match(cookie, url) {\n const urlparts = urllib.parse(url || '');\n\n // check if hostname matches\n // .foo.com also matches subdomains, foo.com does not\n if (\n urlparts.hostname !== cookie.domain &&\n (cookie.domain.charAt(0) !== '.' || ('.' + urlparts.hostname).substr(-cookie.domain.length) !== cookie.domain)\n ) {\n return false;\n }\n\n // check if path matches\n const path = this.getPath(urlparts.pathname);\n if (path.substr(0, cookie.path.length) !== cookie.path) {\n return false;\n }\n\n // check secure argument\n if (cookie.secure && urlparts.protocol !== 'https:') {\n return false;\n }\n\n return true;\n }\n\n /**\n * Adds (or updates/removes if needed) a cookie object to the cookie storage\n *\n * @param {Object} cookie Cookie value to be stored\n */\n add(cookie) {\n // nothing to do here\n if (!cookie || !cookie.name) {\n return false;\n }\n\n // overwrite if has same params\n for (let i = 0, len = this.cookies.length; i < len; i++) {\n if (this.compare(this.cookies[i], cookie)) {\n // check if the cookie needs to be removed instead\n if (this.isExpired(cookie)) {\n this.cookies.splice(i, 1); // remove expired/unset cookie\n return false;\n }\n\n this.cookies[i] = cookie;\n return true;\n }\n }\n\n // add as new if not already expired\n if (!this.isExpired(cookie)) {\n this.cookies.push(cookie);\n }\n\n return true;\n }\n\n /**\n * Checks if two cookie objects are the same\n *\n * @param {Object} a Cookie to check against\n * @param {Object} b Cookie to check against\n * @returns {Boolean} True, if the cookies are the same\n */\n compare(a, b) {\n return a.name === b.name && a.path === b.path && a.domain === b.domain && a.secure === b.secure && a.httponly === b.httponly;\n }\n\n /**\n * Checks if a cookie is expired\n *\n * @param {Object} cookie Cookie object to check against\n * @returns {Boolean} True, if the cookie is expired\n */\n isExpired(cookie) {\n return (cookie.expires && cookie.expires < new Date()) || !cookie.value;\n }\n\n /**\n * Returns normalized cookie path for an URL path argument\n *\n * @param {String} pathname\n * @returns {String} Normalized path\n */\n getPath(pathname) {\n let path = (pathname || '/').split('/');\n path.pop(); // remove filename part\n path = path.join('/').trim();\n\n // ensure path prefix /\n if (path.charAt(0) !== '/') {\n path = '/' + path;\n }\n\n // ensure path suffix /\n if (path.substr(-1) !== '/') {\n path += '/';\n }\n\n return path;\n }\n}\n\nmodule.exports = Cookies;\n","{\"name\":\"nodemailer\",\"version\":\"9.0.0\",\"description\":\"Easy as cake e-mail sending from your Node.js applications\",\"main\":\"lib/nodemailer.js\",\"scripts\":{\"test\":\"node --test --test-concurrency=1 $(find test \\\\( -name '*-test.js' -o -name '*.test.js' \\\\))\",\"test:coverage\":\"c8 node --test --test-concurrency=1 $(find test \\\\( -name '*-test.js' -o -name '*.test.js' \\\\))\",\"format\":\"prettier --write \\\"**/*.{js,json,md}\\\"\",\"format:check\":\"prettier --check \\\"**/*.{js,json,md}\\\"\",\"lint\":\"eslint .\",\"lint:fix\":\"eslint . --fix\",\"update\":\"rm -rf node_modules/ package-lock.json && ncu -u && npm install\",\"test:syntax\":\"docker run --rm -v \\\"$PWD:/app:ro\\\" -w /app node:6-alpine node test/syntax-compat.js\"},\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/nodemailer/nodemailer.git\"},\"keywords\":[\"Nodemailer\"],\"author\":\"Andris Reinman\",\"license\":\"MIT-0\",\"bugs\":{\"url\":\"https://github.com/nodemailer/nodemailer/issues\"},\"homepage\":\"https://nodemailer.com/\",\"devDependencies\":{\"@aws-sdk/client-sesv2\":\"3.1065.0\",\"bunyan\":\"1.8.15\",\"c8\":\"11.0.0\",\"eslint\":\"10.4.1\",\"eslint-config-prettier\":\"10.1.8\",\"globals\":\"17.6.0\",\"libbase64\":\"1.3.0\",\"libmime\":\"5.3.8\",\"libqp\":\"2.1.1\",\"prettier\":\"3.8.4\",\"proxy\":\"1.0.2\",\"proxy-test-server\":\"1.0.0\",\"smtp-server\":\"3.18.5\"},\"engines\":{\"node\":\">=6.0.0\"}}","'use strict';\n\n/**\n * Nodemailer Error Codes\n *\n * Centralized error code definitions for consistent error handling.\n *\n * Usage:\n * const errors = require('./errors');\n * let err = new Error('Connection closed');\n * err.code = errors.ECONNECTION;\n */\n\n/**\n * Error code descriptions for documentation and debugging\n */\nconst ERROR_CODES = {\n // Connection errors\n ECONNECTION: 'Connection closed unexpectedly',\n ETIMEDOUT: 'Connection or operation timed out',\n ESOCKET: 'Socket-level error',\n EDNS: 'DNS resolution failed',\n\n // TLS/Security errors\n ETLS: 'TLS handshake or STARTTLS failed',\n EREQUIRETLS: 'REQUIRETLS not supported by server (RFC 8689)',\n\n // Protocol errors\n EPROTOCOL: 'Invalid SMTP server response',\n EENVELOPE: 'Invalid mail envelope (sender or recipients)',\n EMESSAGE: 'Message delivery error',\n ESTREAM: 'Stream processing error',\n\n // Authentication errors\n EAUTH: 'Authentication failed',\n ENOAUTH: 'Authentication credentials not provided',\n EOAUTH2: 'OAuth2 token generation or refresh error',\n\n // Resource errors\n EMAXLIMIT: 'Pool resource limit reached (max messages per connection)',\n\n // Transport-specific errors\n ESENDMAIL: 'Sendmail command error',\n ESES: 'AWS SES transport error',\n\n // Configuration and access errors\n ECONFIG: 'Invalid configuration',\n EPROXY: 'Proxy connection error',\n EFILEACCESS: 'File access rejected (disableFileAccess is set)',\n EURLACCESS: 'URL access rejected (disableUrlAccess is set)',\n EFETCH: 'HTTP fetch error'\n};\n\n// Export error codes as string constants and the full definitions object\nmodule.exports = { ERROR_CODES };\nfor (const code of Object.keys(ERROR_CODES)) {\n module.exports[code] = code;\n}\n","'use strict';\n\nconst http = require('http');\nconst https = require('https');\nconst urllib = require('../shared/url');\nconst zlib = require('zlib');\nconst { PassThrough } = require('stream');\nconst Cookies = require('./cookies');\nconst packageData = require('../../package.json');\nconst net = require('net');\nconst errors = require('../errors');\n\nconst MAX_REDIRECTS = 5;\n\nmodule.exports = function (url, options) {\n return nmfetch(url, options);\n};\n\nmodule.exports.Cookies = Cookies;\n\nfunction nmfetch(url, options) {\n options = options || {};\n\n options.fetchRes = options.fetchRes || new PassThrough();\n options.cookies = options.cookies || new Cookies();\n options.redirects = options.redirects || 0;\n options.maxRedirects = isNaN(options.maxRedirects) ? MAX_REDIRECTS : options.maxRedirects;\n\n if (options.cookie) {\n [].concat(options.cookie || []).forEach(cookie => {\n options.cookies.set(cookie, url);\n });\n options.cookie = false;\n }\n\n const fetchRes = options.fetchRes;\n const parsed = urllib.parse(url);\n let method = (options.method || '').toString().trim().toUpperCase() || 'GET';\n let finished = false;\n let cookies;\n let body;\n\n const handler = parsed.protocol === 'https:' ? https : http;\n\n const headers = {\n 'accept-encoding': 'gzip,deflate',\n 'user-agent': 'nodemailer/' + packageData.version\n };\n\n Object.keys(options.headers || {}).forEach(key => {\n headers[key.toLowerCase().trim()] = options.headers[key];\n });\n\n if (options.userAgent) {\n headers['user-agent'] = options.userAgent;\n }\n\n if (parsed.auth) {\n headers.Authorization = 'Basic ' + Buffer.from(parsed.auth).toString('base64');\n }\n\n if ((cookies = options.cookies.get(url))) {\n headers.cookie = cookies;\n }\n\n if (options.body) {\n if (options.contentType !== false) {\n headers['Content-Type'] = options.contentType || 'application/x-www-form-urlencoded';\n }\n\n if (typeof options.body.pipe === 'function') {\n // it's a stream\n headers['Transfer-Encoding'] = 'chunked';\n body = options.body;\n body.on('error', err => {\n if (finished) {\n return;\n }\n finished = true;\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n });\n } else {\n if (options.body instanceof Buffer) {\n body = options.body;\n } else if (typeof options.body === 'object') {\n try {\n // encodeURIComponent can fail on invalid input (partial emoji etc.)\n body = Buffer.from(\n Object.keys(options.body)\n .map(key => {\n const value = options.body[key].toString().trim();\n return encodeURIComponent(key) + '=' + encodeURIComponent(value);\n })\n .join('&')\n );\n } catch (E) {\n if (finished) {\n return;\n }\n finished = true;\n E.code = errors.EFETCH;\n E.sourceUrl = url;\n fetchRes.emit('error', E);\n return;\n }\n } else {\n body = Buffer.from(options.body.toString().trim());\n }\n\n headers['Content-Type'] = options.contentType || 'application/x-www-form-urlencoded';\n headers['Content-Length'] = body.length;\n }\n // if method is not provided, use POST instead of GET\n method = (options.method || '').toString().trim().toUpperCase() || 'POST';\n }\n\n let req;\n const reqOptions = {\n method,\n host: parsed.hostname,\n path: parsed.path,\n port: parsed.port ? parsed.port : parsed.protocol === 'https:' ? 443 : 80,\n headers,\n // Validate TLS certificates by default. Callers that genuinely need to\n // reach a self-signed/internal host opt out explicitly with\n // options.tls = { rejectUnauthorized: false }.\n rejectUnauthorized: true,\n agent: false\n };\n\n if (options.tls) {\n Object.assign(reqOptions, options.tls);\n }\n\n if (\n parsed.protocol === 'https:' &&\n parsed.hostname &&\n parsed.hostname !== reqOptions.host &&\n !net.isIP(parsed.hostname) &&\n !reqOptions.servername\n ) {\n reqOptions.servername = parsed.hostname;\n }\n\n try {\n req = handler.request(reqOptions);\n } catch (E) {\n finished = true;\n setImmediate(() => {\n E.code = errors.EFETCH;\n E.sourceUrl = url;\n fetchRes.emit('error', E);\n });\n return fetchRes;\n }\n\n if (options.timeout) {\n req.setTimeout(options.timeout, () => {\n if (finished) {\n return;\n }\n finished = true;\n req.abort();\n const err = new Error('Request Timeout');\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n });\n }\n\n req.on('error', err => {\n if (finished) {\n return;\n }\n finished = true;\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n });\n\n req.on('response', res => {\n let inflate;\n\n if (finished) {\n return;\n }\n\n switch (res.headers['content-encoding']) {\n case 'gzip':\n case 'deflate':\n inflate = zlib.createUnzip();\n break;\n }\n\n if (res.headers['set-cookie']) {\n [].concat(res.headers['set-cookie'] || []).forEach(cookie => {\n options.cookies.set(cookie, url);\n });\n }\n\n if ([301, 302, 303, 307, 308].includes(res.statusCode) && res.headers.location) {\n // redirect\n options.redirects++;\n if (options.redirects > options.maxRedirects) {\n finished = true;\n const err = new Error('Maximum redirect count exceeded');\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n req.abort();\n return;\n }\n // redirect does not include POST body\n options.method = 'GET';\n options.body = false;\n\n const redirectUrl = urllib.resolve(url, res.headers.location);\n const redirectParsed = urllib.parse(redirectUrl);\n\n // Do not forward credentials when the redirect leaves the original\n // security context: a different host, or a downgrade from https to\n // http (which would otherwise put them on the wire in cleartext).\n // Strip sensitive request headers so an attacker who controls the\n // redirect target cannot harvest them.\n const crossHost = redirectParsed.hostname !== parsed.hostname;\n const downgrade = parsed.protocol === 'https:' && redirectParsed.protocol === 'http:';\n if (options.headers && (crossHost || downgrade)) {\n const sensitive = ['authorization', 'cookie', 'proxy-authorization'];\n Object.keys(options.headers).forEach(key => {\n if (sensitive.includes(key.toLowerCase())) {\n delete options.headers[key];\n }\n });\n }\n\n return nmfetch(redirectUrl, options);\n }\n\n fetchRes.statusCode = res.statusCode;\n fetchRes.headers = res.headers;\n\n if (res.statusCode >= 300 && !options.allowErrorResponse) {\n finished = true;\n const err = new Error('Invalid status code ' + res.statusCode);\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n req.abort();\n return;\n }\n\n res.on('error', err => {\n if (finished) {\n return;\n }\n finished = true;\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n req.abort();\n });\n\n if (inflate) {\n res.pipe(inflate).pipe(fetchRes);\n inflate.on('error', err => {\n if (finished) {\n return;\n }\n finished = true;\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n req.abort();\n });\n } else {\n res.pipe(fetchRes);\n }\n });\n\n setImmediate(() => {\n if (body) {\n try {\n if (typeof body.pipe === 'function') {\n return body.pipe(req);\n }\n req.write(body);\n } catch (err) {\n finished = true;\n err.code = errors.EFETCH;\n err.sourceUrl = url;\n fetchRes.emit('error', err);\n return;\n }\n }\n req.end();\n });\n\n return fetchRes;\n}\n","/* eslint no-console: 0 */\n\n'use strict';\n\nconst urllib = require('./url');\nconst util = require('util');\nconst fs = require('fs');\nconst nmfetch = require('../fetch');\nconst errors = require('../errors');\nconst dns = require('dns');\nconst net = require('net');\nconst os = require('os');\n\nconst DNS_TTL = 5 * 60 * 1000;\nconst CACHE_CLEANUP_INTERVAL = 30 * 1000; // Minimum 30 seconds between cleanups\nconst MAX_CACHE_SIZE = 1000; // Maximum number of entries in cache\n\nlet lastCacheCleanup = 0;\nmodule.exports._lastCacheCleanup = () => lastCacheCleanup;\nmodule.exports._resetCacheCleanup = () => {\n lastCacheCleanup = 0;\n};\n\nlet networkInterfaces;\ntry {\n networkInterfaces = os.networkInterfaces();\n} catch (_err) {\n // fails on some systems\n}\n\nmodule.exports.networkInterfaces = networkInterfaces;\n\nconst isFamilySupported = (family, allowInternal) => {\n const ifaces = module.exports.networkInterfaces;\n if (!ifaces) {\n // hope for the best\n return true;\n }\n\n return Object.keys(ifaces)\n .map(key => ifaces[key])\n .reduce((acc, val) => acc.concat(val), [])\n .filter(i => !i.internal || allowInternal)\n .some(i => i.family === 'IPv' + family || i.family === family);\n};\n\nconst resolve = (family, hostname, options, callback) => {\n options = options || {};\n\n if (!isFamilySupported(family, options.allowInternalNetworkInterfaces)) {\n return callback(null, []);\n }\n\n const dnsResolver = dns.Resolver ? new dns.Resolver(options) : dns;\n dnsResolver['resolve' + family](hostname, (err, addresses) => {\n if (err) {\n switch (err.code) {\n case dns.NODATA:\n case dns.NOTFOUND:\n case dns.NOTIMP:\n case dns.SERVFAIL:\n case dns.CONNREFUSED:\n case dns.REFUSED:\n case 'EAI_AGAIN':\n return callback(null, []);\n }\n return callback(err);\n }\n return callback(null, Array.isArray(addresses) ? addresses : [].concat(addresses || []));\n });\n};\n\nconst dnsCache = (module.exports.dnsCache = new Map());\n\nconst formatDNSValue = (value, extra) => {\n if (!value) {\n return Object.assign({}, extra || {});\n }\n\n const addresses = value.addresses || [];\n\n // Select a random address from available addresses, or null if none\n const host = addresses.length > 0 ? addresses[Math.floor(Math.random() * addresses.length)] : null;\n\n return Object.assign(\n {\n servername: value.servername,\n host,\n // Include all addresses for connection fallback support\n _addresses: addresses\n },\n extra || {}\n );\n};\n\nmodule.exports.resolveHostname = (options, callback) => {\n options = options || {};\n\n if (!options.host && options.servername) {\n options.host = options.servername;\n }\n\n if (!options.host || net.isIP(options.host)) {\n // nothing to do here\n const value = {\n addresses: [options.host],\n servername: options.servername || false\n };\n return callback(\n null,\n formatDNSValue(value, {\n cached: false\n })\n );\n }\n\n let cached;\n if (dnsCache.has(options.host)) {\n cached = dnsCache.get(options.host);\n\n // Lazy cleanup with time throttling\n const now = Date.now();\n if (now - lastCacheCleanup > CACHE_CLEANUP_INTERVAL) {\n lastCacheCleanup = now;\n\n // Clean up expired entries\n for (const [host, entry] of dnsCache.entries()) {\n if (entry.expires && entry.expires < now) {\n dnsCache.delete(host);\n }\n }\n\n // If cache is still too large, remove oldest entries\n if (dnsCache.size > MAX_CACHE_SIZE) {\n const toDelete = Math.floor(MAX_CACHE_SIZE * 0.1); // Remove 10% of entries\n const keys = Array.from(dnsCache.keys()).slice(0, toDelete);\n keys.forEach(key => dnsCache.delete(key));\n }\n }\n\n if (!cached.expires || cached.expires >= now) {\n return callback(\n null,\n formatDNSValue(cached.value, {\n cached: true\n })\n );\n }\n }\n\n // Resolve both IPv4 and IPv6 addresses for fallback support\n let ipv4Addresses = [];\n let ipv6Addresses = [];\n let ipv4Error = null;\n let ipv6Error = null;\n\n resolve(4, options.host, options, (err, addresses) => {\n if (err) {\n ipv4Error = err;\n } else {\n ipv4Addresses = addresses || [];\n }\n\n resolve(6, options.host, options, (err, addresses) => {\n if (err) {\n ipv6Error = err;\n } else {\n ipv6Addresses = addresses || [];\n }\n\n // Combine addresses: IPv4 first, then IPv6\n const allAddresses = ipv4Addresses.concat(ipv6Addresses);\n\n if (allAddresses.length) {\n const value = {\n addresses: allAddresses,\n servername: options.servername || options.host\n };\n\n dnsCache.set(options.host, {\n value,\n expires: Date.now() + (options.dnsTtl || DNS_TTL)\n });\n\n return callback(\n null,\n formatDNSValue(value, {\n cached: false\n })\n );\n }\n\n // No addresses from resolve4/resolve6, try dns.lookup as fallback\n if (ipv4Error && ipv6Error) {\n // Both resolvers had errors\n if (cached) {\n dnsCache.set(options.host, {\n value: cached.value,\n expires: Date.now() + (options.dnsTtl || DNS_TTL)\n });\n\n return callback(\n null,\n formatDNSValue(cached.value, {\n cached: true,\n error: ipv4Error\n })\n );\n }\n }\n\n try {\n dns.lookup(options.host, { all: true }, (err, addresses) => {\n if (err) {\n if (cached) {\n dnsCache.set(options.host, {\n value: cached.value,\n expires: Date.now() + (options.dnsTtl || DNS_TTL)\n });\n\n return callback(\n null,\n formatDNSValue(cached.value, {\n cached: true,\n error: err\n })\n );\n }\n return callback(err);\n }\n\n // Get all supported addresses from dns.lookup\n const supportedAddresses = addresses\n ? addresses.filter(addr => isFamilySupported(addr.family)).map(addr => addr.address)\n : [];\n\n if (addresses && addresses.length && !supportedAddresses.length) {\n // there are addresses but none can be used\n console.warn(`Failed to resolve IPv${addresses[0].family} addresses with current network`);\n }\n\n if (!supportedAddresses.length && cached) {\n // nothing was found, fallback to cached value\n return callback(\n null,\n formatDNSValue(cached.value, {\n cached: true\n })\n );\n }\n\n const value = {\n addresses: supportedAddresses.length ? supportedAddresses : [options.host],\n servername: options.servername || options.host\n };\n\n dnsCache.set(options.host, {\n value,\n expires: Date.now() + (options.dnsTtl || DNS_TTL)\n });\n\n return callback(\n null,\n formatDNSValue(value, {\n cached: false\n })\n );\n });\n } catch (lookupErr) {\n if (cached) {\n dnsCache.set(options.host, {\n value: cached.value,\n expires: Date.now() + (options.dnsTtl || DNS_TTL)\n });\n\n return callback(\n null,\n formatDNSValue(cached.value, {\n cached: true,\n error: lookupErr\n })\n );\n }\n return callback(ipv4Error || ipv6Error || lookupErr);\n }\n });\n });\n};\n/**\n * Parses connection url to a structured configuration object\n *\n * @param {String} str Connection url\n * @return {Object} Configuration object\n */\nmodule.exports.parseConnectionUrl = str => {\n str = str || '';\n const options = {};\n const url = urllib.parse(str, true);\n\n switch (url.protocol) {\n case 'smtp:':\n options.secure = false;\n break;\n case 'smtps:':\n options.secure = true;\n break;\n case 'direct:':\n options.direct = true;\n break;\n }\n\n if (!isNaN(url.port) && Number(url.port)) {\n options.port = Number(url.port);\n }\n\n if (url.hostname) {\n options.host = url.hostname;\n }\n\n if (url.auth) {\n const auth = url.auth.split(':');\n options.auth = {\n user: auth.shift(),\n pass: auth.join(':')\n };\n }\n\n Object.keys(url.query || {}).forEach(key => {\n let obj = options;\n let lKey = key;\n let value = url.query[key];\n\n if (!isNaN(value)) {\n value = Number(value);\n }\n\n switch (value) {\n case 'true':\n value = true;\n break;\n case 'false':\n value = false;\n break;\n }\n\n // tls is nested object\n if (key.indexOf('tls.') === 0) {\n lKey = key.substr(4);\n if (!options.tls) {\n options.tls = {};\n }\n obj = options.tls;\n } else if (key.indexOf('.') >= 0) {\n // ignore nested properties besides tls\n return;\n }\n\n if (!(lKey in obj)) {\n obj[lKey] = value;\n }\n });\n\n return options;\n};\n\nmodule.exports._logFunc = (logger, level, defaults, data, message, ...args) => {\n const entry = Object.assign({}, defaults || {}, data || {});\n delete entry.level;\n\n let logLevel = level;\n if (typeof logger[logLevel] !== 'function') {\n // Provided logger does not implement this level. Fall back to a\n // lower-severity handler instead of throwing.\n logLevel = ['info', 'debug', 'log', 'trace', 'warn', 'error'].find(name => typeof logger[name] === 'function');\n }\n\n if (logLevel) {\n logger[logLevel](entry, message, ...args);\n }\n};\n\n/**\n * Returns a bunyan-compatible logger interface. Uses either provided logger or\n * creates a default console logger\n *\n * @param {Object} [options] Options object that might include 'logger' value\n * @return {Object} bunyan compatible logger\n */\nmodule.exports.getLogger = (options, defaults) => {\n options = options || {};\n\n const response = {};\n const levels = ['trace', 'debug', 'info', 'warn', 'error', 'fatal'];\n\n if (!options.logger) {\n // use vanity logger\n levels.forEach(level => {\n response[level] = () => false;\n });\n return response;\n }\n\n const logger = options.logger === true ? createDefaultLogger(levels) : options.logger;\n\n levels.forEach(level => {\n response[level] = (data, message, ...args) => {\n module.exports._logFunc(logger, level, defaults, data, message, ...args);\n };\n });\n\n return response;\n};\n\n/**\n * Wrapper for creating a callback that either resolves or rejects a promise\n * based on input\n *\n * @param {Function} resolve Function to run if callback is called\n * @param {Function} reject Function to run if callback ends with an error\n */\nmodule.exports.callbackPromise = (resolve, reject) =>\n function () {\n const args = Array.from(arguments);\n const err = args.shift();\n if (err) {\n reject(err);\n } else {\n resolve(...args);\n }\n };\n\nmodule.exports.parseDataURI = uri => {\n if (typeof uri !== 'string') {\n return null;\n }\n\n // Early return for non-data URIs to avoid unnecessary processing\n if (!uri.startsWith('data:')) {\n return null;\n }\n\n // Find the first comma safely - this prevents ReDoS\n const commaPos = uri.indexOf(',');\n if (commaPos === -1) {\n return null;\n }\n\n const data = uri.substring(commaPos + 1);\n const metaStr = uri.substring('data:'.length, commaPos);\n\n let encoding;\n const metaEntries = metaStr.split(';');\n\n if (metaEntries.length > 0) {\n const lastEntry = metaEntries[metaEntries.length - 1].toLowerCase().trim();\n // Only recognize valid encoding types to prevent manipulation\n if (['base64', 'utf8', 'utf-8'].includes(lastEntry) && lastEntry.indexOf('=') === -1) {\n encoding = lastEntry;\n metaEntries.pop();\n }\n }\n\n const contentType = metaEntries.length > 0 ? metaEntries.shift() : 'application/octet-stream';\n const params = {};\n\n for (let i = 0; i < metaEntries.length; i++) {\n const entry = metaEntries[i];\n const sepPos = entry.indexOf('=');\n if (sepPos > 0) {\n // Ensure there's a key before the '='\n const key = entry.substring(0, sepPos).trim();\n const value = entry.substring(sepPos + 1).trim();\n if (key) {\n params[key] = value;\n }\n }\n }\n\n // Decode data based on encoding with proper error handling\n let bufferData;\n try {\n if (encoding === 'base64') {\n bufferData = Buffer.from(data, 'base64');\n } else {\n try {\n bufferData = Buffer.from(decodeURIComponent(data));\n } catch (_decodeError) {\n bufferData = Buffer.from(data);\n }\n }\n } catch (_bufferError) {\n bufferData = Buffer.alloc(0);\n }\n\n return {\n data: bufferData,\n encoding: encoding || null,\n contentType: contentType || 'application/octet-stream',\n params\n };\n};\n\n/**\n * Resolves a String or a Buffer value for content value. Useful if the value\n * is a Stream or a file or an URL. If the value is a Stream, overwrites\n * the stream object with the resolved value (you can't stream a value twice).\n *\n * This is useful when you want to create a plugin that needs a content value,\n * for example the `html` or `text` value as a String or a Buffer but not as\n * a file path or an URL.\n *\n * @param {Object} data An object or an Array you want to resolve an element for\n * @param {String|Number} key Property name or an Array index\n * @param {Object} [options] Optional access policy: { disableFileAccess, disableUrlAccess }\n * @param {Function} callback Callback function with (err, value)\n */\nmodule.exports.resolveContent = (data, key, options, callback) => {\n // options is optional; support the legacy resolveContent(data, key, callback) signature\n if (!callback && typeof options === 'function') {\n callback = options;\n options = false;\n }\n options = options || {};\n\n let promise;\n\n if (!callback) {\n promise = new Promise((resolve, reject) => {\n callback = module.exports.callbackPromise(resolve, reject);\n });\n }\n\n resolveContentValue(data, key, options, callback);\n\n return promise;\n};\n\nfunction resolveContentValue(data, key, options, callback) {\n let content = (data && data[key] && data[key].content) || data[key];\n const encoding = ((typeof data[key] === 'object' && data[key].encoding) || 'utf8')\n .toString()\n .toLowerCase()\n .replace(/[-_\\s]/g, '');\n\n if (!content) {\n return callback(null, content);\n }\n\n if (typeof content === 'object') {\n if (typeof content.pipe === 'function') {\n return resolveStream(content, (err, value) => {\n if (err) {\n return callback(err);\n }\n // we can't stream twice the same content, so we need\n // to replace the stream object with the streaming result\n if (data[key].content) {\n data[key].content = value;\n } else {\n data[key] = value;\n }\n callback(null, value);\n });\n } else if (/^https?:\\/\\//i.test(content.path || content.href)) {\n if (options.disableUrlAccess) {\n return setImmediate(() => {\n const err = new Error('Url access rejected for ' + (content.path || content.href));\n err.code = errors.EURLACCESS;\n callback(err);\n });\n }\n return resolveStream(nmfetch(content.path || content.href, { headers: content.httpHeaders, tls: content.tls }), callback);\n } else if (/^data:/i.test(content.path || content.href)) {\n const parsedDataUri = module.exports.parseDataURI(content.path || content.href);\n\n return callback(null, parsedDataUri && parsedDataUri.data ? parsedDataUri.data : Buffer.alloc(0));\n } else if (content.path) {\n if (options.disableFileAccess) {\n return setImmediate(() => {\n const err = new Error('File access rejected for ' + content.path);\n err.code = errors.EFILEACCESS;\n callback(err);\n });\n }\n return resolveStream(fs.createReadStream(content.path), callback);\n }\n }\n\n if (typeof data[key].content === 'string' && !['utf8', 'usascii', 'ascii'].includes(encoding)) {\n content = Buffer.from(data[key].content, encoding);\n }\n\n // default action, return as is\n setImmediate(() => callback(null, content));\n}\n\n/**\n * Copies properties from source objects to target objects\n */\nmodule.exports.assign = function (/* target, ... sources */) {\n const args = Array.from(arguments);\n const target = args.shift() || {};\n\n args.forEach(source => {\n Object.keys(source || {}).forEach(key => {\n if (['tls', 'auth'].includes(key) && source[key] && typeof source[key] === 'object') {\n // tls and auth are special keys that need to be enumerated separately\n // other objects are passed as is\n target[key] = Object.assign(target[key] || {}, source[key]);\n } else {\n target[key] = source[key];\n }\n });\n });\n return target;\n};\n\nmodule.exports.encodeXText = str => {\n // ! 0x21\n // + 0x2B\n // = 0x3D\n // ~ 0x7E\n if (!/[^\\x21-\\x2A\\x2C-\\x3C\\x3E-\\x7E]/.test(str)) {\n return str;\n }\n const buf = Buffer.from(str);\n let result = '';\n for (let i = 0, len = buf.length; i < len; i++) {\n const c = buf[i];\n if (c < 0x21 || c > 0x7e || c === 0x2b || c === 0x3d) {\n result += '+' + (c < 0x10 ? '0' : '') + c.toString(16).toUpperCase();\n } else {\n result += String.fromCharCode(c);\n }\n }\n return result;\n};\n\n/**\n * Streams a stream value into a Buffer\n *\n * @param {Object} stream Readable stream\n * @param {Function} callback Callback function with (err, value)\n */\nfunction resolveStream(stream, callback) {\n let responded = false;\n const chunks = [];\n let chunklen = 0;\n\n stream.on('error', err => {\n if (responded) {\n return;\n }\n\n responded = true;\n callback(err);\n });\n\n stream.on('readable', () => {\n let chunk;\n while ((chunk = stream.read()) !== null) {\n chunks.push(chunk);\n chunklen += chunk.length;\n }\n });\n\n stream.on('end', () => {\n if (responded) {\n return;\n }\n responded = true;\n\n let value;\n\n try {\n value = Buffer.concat(chunks, chunklen);\n } catch (E) {\n return callback(E);\n }\n callback(null, value);\n });\n}\n\n/**\n * Generates a bunyan-like logger that prints to console\n *\n * @returns {Object} Bunyan logger instance\n */\nfunction createDefaultLogger(levels) {\n const levelMaxLen = levels.reduce((max, level) => Math.max(max, level.length), 0);\n const levelNames = new Map();\n\n levels.forEach(level => {\n let levelName = level.toUpperCase();\n if (levelName.length < levelMaxLen) {\n levelName += ' '.repeat(levelMaxLen - levelName.length);\n }\n levelNames.set(level, levelName);\n });\n\n const print = (level, entry, message, ...args) => {\n let prefix = '';\n if (entry) {\n if (entry.tnx === 'server') {\n prefix = 'S: ';\n } else if (entry.tnx === 'client') {\n prefix = 'C: ';\n }\n\n if (entry.sid) {\n prefix = '[' + entry.sid + '] ' + prefix;\n }\n\n if (entry.cid) {\n prefix = '[#' + entry.cid + '] ' + prefix;\n }\n }\n\n message = util.format(message, ...args);\n message.split(/\\r?\\n/).forEach(line => {\n console.log('[%s] %s %s', new Date().toISOString().substr(0, 19).replace(/T/, ' '), levelNames.get(level), prefix + line);\n });\n };\n\n const logger = {};\n levels.forEach(level => {\n logger[level] = print.bind(null, level);\n });\n\n return logger;\n}\n","/* eslint quote-props: 0 */\n\n'use strict';\n\nconst path = require('path');\n\nconst defaultMimeType = 'application/octet-stream';\nconst defaultExtension = 'bin';\n\nconst mimeTypes = new Map([\n ['application/acad', 'dwg'],\n ['application/applixware', 'aw'],\n ['application/arj', 'arj'],\n ['application/atom+xml', 'xml'],\n ['application/atomcat+xml', 'atomcat'],\n ['application/atomsvc+xml', 'atomsvc'],\n ['application/base64', ['mm', 'mme']],\n ['application/binhex', 'hqx'],\n ['application/binhex4', 'hqx'],\n ['application/book', ['book', 'boo']],\n ['application/ccxml+xml,', 'ccxml'],\n ['application/cdf', 'cdf'],\n ['application/cdmi-capability', 'cdmia'],\n ['application/cdmi-container', 'cdmic'],\n ['application/cdmi-domain', 'cdmid'],\n ['application/cdmi-object', 'cdmio'],\n ['application/cdmi-queue', 'cdmiq'],\n ['application/clariscad', 'ccad'],\n ['application/commonground', 'dp'],\n ['application/cu-seeme', 'cu'],\n ['application/davmount+xml', 'davmount'],\n ['application/drafting', 'drw'],\n ['application/dsptype', 'tsp'],\n ['application/dssc+der', 'dssc'],\n ['application/dssc+xml', 'xdssc'],\n ['application/dxf', 'dxf'],\n ['application/ecmascript', ['js', 'es']],\n ['application/emma+xml', 'emma'],\n ['application/envoy', 'evy'],\n ['application/epub+zip', 'epub'],\n ['application/excel', ['xls', 'xl', 'xla', 'xlb', 'xlc', 'xld', 'xlk', 'xll', 'xlm', 'xlt', 'xlv', 'xlw']],\n ['application/exi', 'exi'],\n ['application/font-tdpfr', 'pfr'],\n ['application/fractals', 'fif'],\n ['application/freeloader', 'frl'],\n ['application/futuresplash', 'spl'],\n ['application/geo+json', 'geojson'],\n ['application/gnutar', 'tgz'],\n ['application/groupwise', 'vew'],\n ['application/hlp', 'hlp'],\n ['application/hta', 'hta'],\n ['application/hyperstudio', 'stk'],\n ['application/i-deas', 'unv'],\n ['application/iges', ['iges', 'igs']],\n ['application/inf', 'inf'],\n ['application/internet-property-stream', 'acx'],\n ['application/ipfix', 'ipfix'],\n ['application/java', 'class'],\n ['application/java-archive', 'jar'],\n ['application/java-byte-code', 'class'],\n ['application/java-serialized-object', 'ser'],\n ['application/java-vm', 'class'],\n ['application/javascript', 'js'],\n ['application/json', 'json'],\n ['application/lha', 'lha'],\n ['application/lzx', 'lzx'],\n ['application/mac-binary', 'bin'],\n ['application/mac-binhex', 'hqx'],\n ['application/mac-binhex40', 'hqx'],\n ['application/mac-compactpro', 'cpt'],\n ['application/macbinary', 'bin'],\n ['application/mads+xml', 'mads'],\n ['application/marc', 'mrc'],\n ['application/marcxml+xml', 'mrcx'],\n ['application/mathematica', 'ma'],\n ['application/mathml+xml', 'mathml'],\n ['application/mbedlet', 'mbd'],\n ['application/mbox', 'mbox'],\n ['application/mcad', 'mcd'],\n ['application/mediaservercontrol+xml', 'mscml'],\n ['application/metalink4+xml', 'meta4'],\n ['application/mets+xml', 'mets'],\n ['application/mime', 'aps'],\n ['application/mods+xml', 'mods'],\n ['application/mp21', 'm21'],\n ['application/mp4', 'mp4'],\n ['application/mspowerpoint', ['ppt', 'pot', 'pps', 'ppz']],\n ['application/msword', ['doc', 'dot', 'w6w', 'wiz', 'word']],\n ['application/mswrite', 'wri'],\n ['application/mxf', 'mxf'],\n ['application/netmc', 'mcp'],\n ['application/octet-stream', ['*']],\n ['application/oda', 'oda'],\n ['application/oebps-package+xml', 'opf'],\n ['application/ogg', 'ogx'],\n ['application/olescript', 'axs'],\n ['application/onenote', 'onetoc'],\n ['application/patch-ops-error+xml', 'xer'],\n ['application/pdf', 'pdf'],\n ['application/pgp-encrypted', 'asc'],\n ['application/pgp-signature', 'pgp'],\n ['application/pics-rules', 'prf'],\n ['application/pkcs-12', 'p12'],\n ['application/pkcs-crl', 'crl'],\n ['application/pkcs10', 'p10'],\n ['application/pkcs7-mime', ['p7c', 'p7m']],\n ['application/pkcs7-signature', 'p7s'],\n ['application/pkcs8', 'p8'],\n ['application/pkix-attr-cert', 'ac'],\n ['application/pkix-cert', ['cer', 'crt']],\n ['application/pkix-crl', 'crl'],\n ['application/pkix-pkipath', 'pkipath'],\n ['application/pkixcmp', 'pki'],\n ['application/plain', 'text'],\n ['application/pls+xml', 'pls'],\n ['application/postscript', ['ps', 'ai', 'eps']],\n ['application/powerpoint', 'ppt'],\n ['application/pro_eng', ['part', 'prt']],\n ['application/prs.cww', 'cww'],\n ['application/pskc+xml', 'pskcxml'],\n ['application/rdf+xml', 'rdf'],\n ['application/reginfo+xml', 'rif'],\n ['application/relax-ng-compact-syntax', 'rnc'],\n ['application/resource-lists+xml', 'rl'],\n ['application/resource-lists-diff+xml', 'rld'],\n ['application/ringing-tones', 'rng'],\n ['application/rls-services+xml', 'rs'],\n ['application/rsd+xml', 'rsd'],\n ['application/rss+xml', 'xml'],\n ['application/rtf', ['rtf', 'rtx']],\n ['application/sbml+xml', 'sbml'],\n ['application/scvp-cv-request', 'scq'],\n ['application/scvp-cv-response', 'scs'],\n ['application/scvp-vp-request', 'spq'],\n ['application/scvp-vp-response', 'spp'],\n ['application/sdp', 'sdp'],\n ['application/sea', 'sea'],\n ['application/set', 'set'],\n ['application/set-payment-initiation', 'setpay'],\n ['application/set-registration-initiation', 'setreg'],\n ['application/shf+xml', 'shf'],\n ['application/sla', 'stl'],\n ['application/smil', ['smi', 'smil']],\n ['application/smil+xml', 'smi'],\n ['application/solids', 'sol'],\n ['application/sounder', 'sdr'],\n ['application/sparql-query', 'rq'],\n ['application/sparql-results+xml', 'srx'],\n ['application/srgs', 'gram'],\n ['application/srgs+xml', 'grxml'],\n ['application/sru+xml', 'sru'],\n ['application/ssml+xml', 'ssml'],\n ['application/step', ['step', 'stp']],\n ['application/streamingmedia', 'ssm'],\n ['application/tei+xml', 'tei'],\n ['application/thraud+xml', 'tfi'],\n ['application/timestamped-data', 'tsd'],\n ['application/toolbook', 'tbk'],\n ['application/vda', 'vda'],\n ['application/vnd.3gpp.pic-bw-large', 'plb'],\n ['application/vnd.3gpp.pic-bw-small', 'psb'],\n ['application/vnd.3gpp.pic-bw-var', 'pvb'],\n ['application/vnd.3gpp2.tcap', 'tcap'],\n ['application/vnd.3m.post-it-notes', 'pwn'],\n ['application/vnd.accpac.simply.aso', 'aso'],\n ['application/vnd.accpac.simply.imp', 'imp'],\n ['application/vnd.acucobol', 'acu'],\n ['application/vnd.acucorp', 'atc'],\n ['application/vnd.adobe.air-application-installer-package+zip', 'air'],\n ['application/vnd.adobe.fxp', 'fxp'],\n ['application/vnd.adobe.xdp+xml', 'xdp'],\n ['application/vnd.adobe.xfdf', 'xfdf'],\n ['application/vnd.ahead.space', 'ahead'],\n ['application/vnd.airzip.filesecure.azf', 'azf'],\n ['application/vnd.airzip.filesecure.azs', 'azs'],\n ['application/vnd.amazon.ebook', 'azw'],\n ['application/vnd.americandynamics.acc', 'acc'],\n ['application/vnd.amiga.ami', 'ami'],\n ['application/vnd.android.package-archive', 'apk'],\n ['application/vnd.anser-web-certificate-issue-initiation', 'cii'],\n ['application/vnd.anser-web-funds-transfer-initiation', 'fti'],\n ['application/vnd.antix.game-component', 'atx'],\n ['application/vnd.apple.installer+xml', 'mpkg'],\n ['application/vnd.apple.mpegurl', 'm3u8'],\n ['application/vnd.aristanetworks.swi', 'swi'],\n ['application/vnd.audiograph', 'aep'],\n ['application/vnd.blueice.multipass', 'mpm'],\n ['application/vnd.bmi', 'bmi'],\n ['application/vnd.businessobjects', 'rep'],\n ['application/vnd.chemdraw+xml', 'cdxml'],\n ['application/vnd.chipnuts.karaoke-mmd', 'mmd'],\n ['application/vnd.cinderella', 'cdy'],\n ['application/vnd.claymore', 'cla'],\n ['application/vnd.cloanto.rp9', 'rp9'],\n ['application/vnd.clonk.c4group', 'c4g'],\n ['application/vnd.cluetrust.cartomobile-config', 'c11amc'],\n ['application/vnd.cluetrust.cartomobile-config-pkg', 'c11amz'],\n ['application/vnd.commonspace', 'csp'],\n ['application/vnd.contact.cmsg', 'cdbcmsg'],\n ['application/vnd.cosmocaller', 'cmc'],\n ['application/vnd.crick.clicker', 'clkx'],\n ['application/vnd.crick.clicker.keyboard', 'clkk'],\n ['application/vnd.crick.clicker.palette', 'clkp'],\n ['application/vnd.crick.clicker.template', 'clkt'],\n ['application/vnd.crick.clicker.wordbank', 'clkw'],\n ['application/vnd.criticaltools.wbs+xml', 'wbs'],\n ['application/vnd.ctc-posml', 'pml'],\n ['application/vnd.cups-ppd', 'ppd'],\n ['application/vnd.curl.car', 'car'],\n ['application/vnd.curl.pcurl', 'pcurl'],\n ['application/vnd.data-vision.rdz', 'rdz'],\n ['application/vnd.denovo.fcselayout-link', 'fe_launch'],\n ['application/vnd.dna', 'dna'],\n ['application/vnd.dolby.mlp', 'mlp'],\n ['application/vnd.dpgraph', 'dpg'],\n ['application/vnd.dreamfactory', 'dfac'],\n ['application/vnd.dvb.ait', 'ait'],\n ['application/vnd.dvb.service', 'svc'],\n ['application/vnd.dynageo', 'geo'],\n ['application/vnd.ecowin.chart', 'mag'],\n ['application/vnd.enliven', 'nml'],\n ['application/vnd.epson.esf', 'esf'],\n ['application/vnd.epson.msf', 'msf'],\n ['application/vnd.epson.quickanime', 'qam'],\n ['application/vnd.epson.salt', 'slt'],\n ['application/vnd.epson.ssf', 'ssf'],\n ['application/vnd.eszigno3+xml', 'es3'],\n ['application/vnd.ezpix-album', 'ez2'],\n ['application/vnd.ezpix-package', 'ez3'],\n ['application/vnd.fdf', 'fdf'],\n ['application/vnd.fdsn.seed', 'seed'],\n ['application/vnd.flographit', 'gph'],\n ['application/vnd.fluxtime.clip', 'ftc'],\n ['application/vnd.framemaker', 'fm'],\n ['application/vnd.frogans.fnc', 'fnc'],\n ['application/vnd.frogans.ltf', 'ltf'],\n ['application/vnd.fsc.weblaunch', 'fsc'],\n ['application/vnd.fujitsu.oasys', 'oas'],\n ['application/vnd.fujitsu.oasys2', 'oa2'],\n ['application/vnd.fujitsu.oasys3', 'oa3'],\n ['application/vnd.fujitsu.oasysgp', 'fg5'],\n ['application/vnd.fujitsu.oasysprs', 'bh2'],\n ['application/vnd.fujixerox.ddd', 'ddd'],\n ['application/vnd.fujixerox.docuworks', 'xdw'],\n ['application/vnd.fujixerox.docuworks.binder', 'xbd'],\n ['application/vnd.fuzzysheet', 'fzs'],\n ['application/vnd.genomatix.tuxedo', 'txd'],\n ['application/vnd.geogebra.file', 'ggb'],\n ['application/vnd.geogebra.tool', 'ggt'],\n ['application/vnd.geometry-explorer', 'gex'],\n ['application/vnd.geonext', 'gxt'],\n ['application/vnd.geoplan', 'g2w'],\n ['application/vnd.geospace', 'g3w'],\n ['application/vnd.gmx', 'gmx'],\n ['application/vnd.google-earth.kml+xml', 'kml'],\n ['application/vnd.google-earth.kmz', 'kmz'],\n ['application/vnd.grafeq', 'gqf'],\n ['application/vnd.groove-account', 'gac'],\n ['application/vnd.groove-help', 'ghf'],\n ['application/vnd.groove-identity-message', 'gim'],\n ['application/vnd.groove-injector', 'grv'],\n ['application/vnd.groove-tool-message', 'gtm'],\n ['application/vnd.groove-tool-template', 'tpl'],\n ['application/vnd.groove-vcard', 'vcg'],\n ['application/vnd.hal+xml', 'hal'],\n ['application/vnd.handheld-entertainment+xml', 'zmm'],\n ['application/vnd.hbci', 'hbci'],\n ['application/vnd.hhe.lesson-player', 'les'],\n ['application/vnd.hp-hpgl', ['hgl', 'hpg', 'hpgl']],\n ['application/vnd.hp-hpid', 'hpid'],\n ['application/vnd.hp-hps', 'hps'],\n ['application/vnd.hp-jlyt', 'jlt'],\n ['application/vnd.hp-pcl', 'pcl'],\n ['application/vnd.hp-pclxl', 'pclxl'],\n ['application/vnd.hydrostatix.sof-data', 'sfd-hdstx'],\n ['application/vnd.hzn-3d-crossword', 'x3d'],\n ['application/vnd.ibm.minipay', 'mpy'],\n ['application/vnd.ibm.modcap', 'afp'],\n ['application/vnd.ibm.rights-management', 'irm'],\n ['application/vnd.ibm.secure-container', 'sc'],\n ['application/vnd.iccprofile', 'icc'],\n ['application/vnd.igloader', 'igl'],\n ['application/vnd.immervision-ivp', 'ivp'],\n ['application/vnd.immervision-ivu', 'ivu'],\n ['application/vnd.insors.igm', 'igm'],\n ['application/vnd.intercon.formnet', 'xpw'],\n ['application/vnd.intergeo', 'i2g'],\n ['application/vnd.intu.qbo', 'qbo'],\n ['application/vnd.intu.qfx', 'qfx'],\n ['application/vnd.ipunplugged.rcprofile', 'rcprofile'],\n ['application/vnd.irepository.package+xml', 'irp'],\n ['application/vnd.is-xpr', 'xpr'],\n ['application/vnd.isac.fcs', 'fcs'],\n ['application/vnd.jam', 'jam'],\n ['application/vnd.jcp.javame.midlet-rms', 'rms'],\n ['application/vnd.jisp', 'jisp'],\n ['application/vnd.joost.joda-archive', 'joda'],\n ['application/vnd.kahootz', 'ktz'],\n ['application/vnd.kde.karbon', 'karbon'],\n ['application/vnd.kde.kchart', 'chrt'],\n ['application/vnd.kde.kformula', 'kfo'],\n ['application/vnd.kde.kivio', 'flw'],\n ['application/vnd.kde.kontour', 'kon'],\n ['application/vnd.kde.kpresenter', 'kpr'],\n ['application/vnd.kde.kspread', 'ksp'],\n ['application/vnd.kde.kword', 'kwd'],\n ['application/vnd.kenameaapp', 'htke'],\n ['application/vnd.kidspiration', 'kia'],\n ['application/vnd.kinar', 'kne'],\n ['application/vnd.koan', 'skp'],\n ['application/vnd.kodak-descriptor', 'sse'],\n ['application/vnd.las.las+xml', 'lasxml'],\n ['application/vnd.llamagraphics.life-balance.desktop', 'lbd'],\n ['application/vnd.llamagraphics.life-balance.exchange+xml', 'lbe'],\n ['application/vnd.lotus-1-2-3', '123'],\n ['application/vnd.lotus-approach', 'apr'],\n ['application/vnd.lotus-freelance', 'pre'],\n ['application/vnd.lotus-notes', 'nsf'],\n ['application/vnd.lotus-organizer', 'org'],\n ['application/vnd.lotus-screencam', 'scm'],\n ['application/vnd.lotus-wordpro', 'lwp'],\n ['application/vnd.macports.portpkg', 'portpkg'],\n ['application/vnd.mcd', 'mcd'],\n ['application/vnd.medcalcdata', 'mc1'],\n ['application/vnd.mediastation.cdkey', 'cdkey'],\n ['application/vnd.mfer', 'mwf'],\n ['application/vnd.mfmp', 'mfm'],\n ['application/vnd.micrografx.flo', 'flo'],\n ['application/vnd.micrografx.igx', 'igx'],\n ['application/vnd.mif', 'mif'],\n ['application/vnd.mobius.daf', 'daf'],\n ['application/vnd.mobius.dis', 'dis'],\n ['application/vnd.mobius.mbk', 'mbk'],\n ['application/vnd.mobius.mqy', 'mqy'],\n ['application/vnd.mobius.msl', 'msl'],\n ['application/vnd.mobius.plc', 'plc'],\n ['application/vnd.mobius.txf', 'txf'],\n ['application/vnd.mophun.application', 'mpn'],\n ['application/vnd.mophun.certificate', 'mpc'],\n ['application/vnd.mozilla.xul+xml', 'xul'],\n ['application/vnd.ms-artgalry', 'cil'],\n ['application/vnd.ms-cab-compressed', 'cab'],\n ['application/vnd.ms-excel', ['xls', 'xla', 'xlc', 'xlm', 'xlt', 'xlw', 'xlb', 'xll']],\n ['application/vnd.ms-excel.addin.macroenabled.12', 'xlam'],\n ['application/vnd.ms-excel.sheet.binary.macroenabled.12', 'xlsb'],\n ['application/vnd.ms-excel.sheet.macroenabled.12', 'xlsm'],\n ['application/vnd.ms-excel.template.macroenabled.12', 'xltm'],\n ['application/vnd.ms-fontobject', 'eot'],\n ['application/vnd.ms-htmlhelp', 'chm'],\n ['application/vnd.ms-ims', 'ims'],\n ['application/vnd.ms-lrm', 'lrm'],\n ['application/vnd.ms-officetheme', 'thmx'],\n ['application/vnd.ms-outlook', 'msg'],\n ['application/vnd.ms-pki.certstore', 'sst'],\n ['application/vnd.ms-pki.pko', 'pko'],\n ['application/vnd.ms-pki.seccat', 'cat'],\n ['application/vnd.ms-pki.stl', 'stl'],\n ['application/vnd.ms-pkicertstore', 'sst'],\n ['application/vnd.ms-pkiseccat', 'cat'],\n ['application/vnd.ms-pkistl', 'stl'],\n ['application/vnd.ms-powerpoint', ['ppt', 'pot', 'pps', 'ppa', 'pwz']],\n ['application/vnd.ms-powerpoint.addin.macroenabled.12', 'ppam'],\n ['application/vnd.ms-powerpoint.presentation.macroenabled.12', 'pptm'],\n ['application/vnd.ms-powerpoint.slide.macroenabled.12', 'sldm'],\n ['application/vnd.ms-powerpoint.slideshow.macroenabled.12', 'ppsm'],\n ['application/vnd.ms-powerpoint.template.macroenabled.12', 'potm'],\n ['application/vnd.ms-project', 'mpp'],\n ['application/vnd.ms-word.document.macroenabled.12', 'docm'],\n ['application/vnd.ms-word.template.macroenabled.12', 'dotm'],\n ['application/vnd.ms-works', ['wks', 'wcm', 'wdb', 'wps']],\n ['application/vnd.ms-wpl', 'wpl'],\n ['application/vnd.ms-xpsdocument', 'xps'],\n ['application/vnd.mseq', 'mseq'],\n ['application/vnd.musician', 'mus'],\n ['application/vnd.muvee.style', 'msty'],\n ['application/vnd.neurolanguage.nlu', 'nlu'],\n ['application/vnd.noblenet-directory', 'nnd'],\n ['application/vnd.noblenet-sealer', 'nns'],\n ['application/vnd.noblenet-web', 'nnw'],\n ['application/vnd.nokia.configuration-message', 'ncm'],\n ['application/vnd.nokia.n-gage.data', 'ngdat'],\n ['application/vnd.nokia.n-gage.symbian.install', 'n-gage'],\n ['application/vnd.nokia.radio-preset', 'rpst'],\n ['application/vnd.nokia.radio-presets', 'rpss'],\n ['application/vnd.nokia.ringing-tone', 'rng'],\n ['application/vnd.novadigm.edm', 'edm'],\n ['application/vnd.novadigm.edx', 'edx'],\n ['application/vnd.novadigm.ext', 'ext'],\n ['application/vnd.oasis.opendocument.chart', 'odc'],\n ['application/vnd.oasis.opendocument.chart-template', 'otc'],\n ['application/vnd.oasis.opendocument.database', 'odb'],\n ['application/vnd.oasis.opendocument.formula', 'odf'],\n ['application/vnd.oasis.opendocument.formula-template', 'odft'],\n ['application/vnd.oasis.opendocument.graphics', 'odg'],\n ['application/vnd.oasis.opendocument.graphics-template', 'otg'],\n ['application/vnd.oasis.opendocument.image', 'odi'],\n ['application/vnd.oasis.opendocument.image-template', 'oti'],\n ['application/vnd.oasis.opendocument.presentation', 'odp'],\n ['application/vnd.oasis.opendocument.presentation-template', 'otp'],\n ['application/vnd.oasis.opendocument.spreadsheet', 'ods'],\n ['application/vnd.oasis.opendocument.spreadsheet-template', 'ots'],\n ['application/vnd.oasis.opendocument.text', 'odt'],\n ['application/vnd.oasis.opendocument.text-master', 'odm'],\n ['application/vnd.oasis.opendocument.text-template', 'ott'],\n ['application/vnd.oasis.opendocument.text-web', 'oth'],\n ['application/vnd.olpc-sugar', 'xo'],\n ['application/vnd.oma.dd2+xml', 'dd2'],\n ['application/vnd.openofficeorg.extension', 'oxt'],\n ['application/vnd.openxmlformats-officedocument.presentationml.presentation', 'pptx'],\n ['application/vnd.openxmlformats-officedocument.presentationml.slide', 'sldx'],\n ['application/vnd.openxmlformats-officedocument.presentationml.slideshow', 'ppsx'],\n ['application/vnd.openxmlformats-officedocument.presentationml.template', 'potx'],\n ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'xlsx'],\n ['application/vnd.openxmlformats-officedocument.spreadsheetml.template', 'xltx'],\n ['application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'docx'],\n ['application/vnd.openxmlformats-officedocument.wordprocessingml.template', 'dotx'],\n ['application/vnd.osgeo.mapguide.package', 'mgp'],\n ['application/vnd.osgi.dp', 'dp'],\n ['application/vnd.palm', 'pdb'],\n ['application/vnd.pawaafile', 'paw'],\n ['application/vnd.pg.format', 'str'],\n ['application/vnd.pg.osasli', 'ei6'],\n ['application/vnd.picsel', 'efif'],\n ['application/vnd.pmi.widget', 'wg'],\n ['application/vnd.pocketlearn', 'plf'],\n ['application/vnd.powerbuilder6', 'pbd'],\n ['application/vnd.previewsystems.box', 'box'],\n ['application/vnd.proteus.magazine', 'mgz'],\n ['application/vnd.publishare-delta-tree', 'qps'],\n ['application/vnd.pvi.ptid1', 'ptid'],\n ['application/vnd.quark.quarkxpress', 'qxd'],\n ['application/vnd.realvnc.bed', 'bed'],\n ['application/vnd.recordare.musicxml', 'mxl'],\n ['application/vnd.recordare.musicxml+xml', 'musicxml'],\n ['application/vnd.rig.cryptonote', 'cryptonote'],\n ['application/vnd.rim.cod', 'cod'],\n ['application/vnd.rn-realmedia', 'rm'],\n ['application/vnd.rn-realplayer', 'rnx'],\n ['application/vnd.route66.link66+xml', 'link66'],\n ['application/vnd.sailingtracker.track', 'st'],\n ['application/vnd.seemail', 'see'],\n ['application/vnd.sema', 'sema'],\n ['application/vnd.semd', 'semd'],\n ['application/vnd.semf', 'semf'],\n ['application/vnd.shana.informed.formdata', 'ifm'],\n ['application/vnd.shana.informed.formtemplate', 'itp'],\n ['application/vnd.shana.informed.interchange', 'iif'],\n ['application/vnd.shana.informed.package', 'ipk'],\n ['application/vnd.simtech-mindmapper', 'twd'],\n ['application/vnd.smaf', 'mmf'],\n ['application/vnd.smart.teacher', 'teacher'],\n ['application/vnd.solent.sdkm+xml', 'sdkm'],\n ['application/vnd.spotfire.dxp', 'dxp'],\n ['application/vnd.spotfire.sfs', 'sfs'],\n ['application/vnd.stardivision.calc', 'sdc'],\n ['application/vnd.stardivision.draw', 'sda'],\n ['application/vnd.stardivision.impress', 'sdd'],\n ['application/vnd.stardivision.math', 'smf'],\n ['application/vnd.stardivision.writer', 'sdw'],\n ['application/vnd.stardivision.writer-global', 'sgl'],\n ['application/vnd.stepmania.stepchart', 'sm'],\n ['application/vnd.sun.xml.calc', 'sxc'],\n ['application/vnd.sun.xml.calc.template', 'stc'],\n ['application/vnd.sun.xml.draw', 'sxd'],\n ['application/vnd.sun.xml.draw.template', 'std'],\n ['application/vnd.sun.xml.impress', 'sxi'],\n ['application/vnd.sun.xml.impress.template', 'sti'],\n ['application/vnd.sun.xml.math', 'sxm'],\n ['application/vnd.sun.xml.writer', 'sxw'],\n ['application/vnd.sun.xml.writer.global', 'sxg'],\n ['application/vnd.sun.xml.writer.template', 'stw'],\n ['application/vnd.sus-calendar', 'sus'],\n ['application/vnd.svd', 'svd'],\n ['application/vnd.symbian.install', 'sis'],\n ['application/vnd.syncml+xml', 'xsm'],\n ['application/vnd.syncml.dm+wbxml', 'bdm'],\n ['application/vnd.syncml.dm+xml', 'xdm'],\n ['application/vnd.tao.intent-module-archive', 'tao'],\n ['application/vnd.tmobile-livetv', 'tmo'],\n ['application/vnd.trid.tpt', 'tpt'],\n ['application/vnd.triscape.mxs', 'mxs'],\n ['application/vnd.trueapp', 'tra'],\n ['application/vnd.ufdl', 'ufd'],\n ['application/vnd.uiq.theme', 'utz'],\n ['application/vnd.umajin', 'umj'],\n ['application/vnd.unity', 'unityweb'],\n ['application/vnd.uoml+xml', 'uoml'],\n ['application/vnd.vcx', 'vcx'],\n ['application/vnd.visio', 'vsd'],\n ['application/vnd.visionary', 'vis'],\n ['application/vnd.vsf', 'vsf'],\n ['application/vnd.wap.wbxml', 'wbxml'],\n ['application/vnd.wap.wmlc', 'wmlc'],\n ['application/vnd.wap.wmlscriptc', 'wmlsc'],\n ['application/vnd.webturbo', 'wtb'],\n ['application/vnd.wolfram.player', 'nbp'],\n ['application/vnd.wordperfect', 'wpd'],\n ['application/vnd.wqd', 'wqd'],\n ['application/vnd.wt.stf', 'stf'],\n ['application/vnd.xara', ['web', 'xar']],\n ['application/vnd.xfdl', 'xfdl'],\n ['application/vnd.yamaha.hv-dic', 'hvd'],\n ['application/vnd.yamaha.hv-script', 'hvs'],\n ['application/vnd.yamaha.hv-voice', 'hvp'],\n ['application/vnd.yamaha.openscoreformat', 'osf'],\n ['application/vnd.yamaha.openscoreformat.osfpvg+xml', 'osfpvg'],\n ['application/vnd.yamaha.smaf-audio', 'saf'],\n ['application/vnd.yamaha.smaf-phrase', 'spf'],\n ['application/vnd.yellowriver-custom-menu', 'cmp'],\n ['application/vnd.zul', 'zir'],\n ['application/vnd.zzazz.deck+xml', 'zaz'],\n ['application/vocaltec-media-desc', 'vmd'],\n ['application/vocaltec-media-file', 'vmf'],\n ['application/voicexml+xml', 'vxml'],\n ['application/widget', 'wgt'],\n ['application/winhlp', 'hlp'],\n ['application/wordperfect', ['wp', 'wp5', 'wp6', 'wpd']],\n ['application/wordperfect6.0', ['w60', 'wp5']],\n ['application/wordperfect6.1', 'w61'],\n ['application/wsdl+xml', 'wsdl'],\n ['application/wspolicy+xml', 'wspolicy'],\n ['application/x-123', 'wk1'],\n ['application/x-7z-compressed', '7z'],\n ['application/x-abiword', 'abw'],\n ['application/x-ace-compressed', 'ace'],\n ['application/x-aim', 'aim'],\n ['application/x-authorware-bin', 'aab'],\n ['application/x-authorware-map', 'aam'],\n ['application/x-authorware-seg', 'aas'],\n ['application/x-bcpio', 'bcpio'],\n ['application/x-binary', 'bin'],\n ['application/x-binhex40', 'hqx'],\n ['application/x-bittorrent', 'torrent'],\n ['application/x-bsh', ['bsh', 'sh', 'shar']],\n ['application/x-bytecode.elisp', 'elc'],\n ['application/x-bytecode.python', 'pyc'],\n ['application/x-bzip', 'bz'],\n ['application/x-bzip2', ['boz', 'bz2']],\n ['application/x-cdf', 'cdf'],\n ['application/x-cdlink', 'vcd'],\n ['application/x-chat', ['cha', 'chat']],\n ['application/x-chess-pgn', 'pgn'],\n ['application/x-cmu-raster', 'ras'],\n ['application/x-cocoa', 'cco'],\n ['application/x-compactpro', 'cpt'],\n ['application/x-compress', 'z'],\n ['application/x-compressed', ['tgz', 'gz', 'z', 'zip']],\n ['application/x-conference', 'nsc'],\n ['application/x-cpio', 'cpio'],\n ['application/x-cpt', 'cpt'],\n ['application/x-csh', 'csh'],\n ['application/x-debian-package', 'deb'],\n ['application/x-deepv', 'deepv'],\n ['application/x-director', ['dir', 'dcr', 'dxr']],\n ['application/x-doom', 'wad'],\n ['application/x-dtbncx+xml', 'ncx'],\n ['application/x-dtbook+xml', 'dtb'],\n ['application/x-dtbresource+xml', 'res'],\n ['application/x-dvi', 'dvi'],\n ['application/x-elc', 'elc'],\n ['application/x-envoy', ['env', 'evy']],\n ['application/x-esrehber', 'es'],\n ['application/x-excel', ['xls', 'xla', 'xlb', 'xlc', 'xld', 'xlk', 'xll', 'xlm', 'xlt', 'xlv', 'xlw']],\n ['application/x-font-bdf', 'bdf'],\n ['application/x-font-ghostscript', 'gsf'],\n ['application/x-font-linux-psf', 'psf'],\n ['application/x-font-otf', 'otf'],\n ['application/x-font-pcf', 'pcf'],\n ['application/x-font-snf', 'snf'],\n ['application/x-font-ttf', 'ttf'],\n ['application/x-font-type1', 'pfa'],\n ['application/x-font-woff', 'woff'],\n ['application/x-frame', 'mif'],\n ['application/x-freelance', 'pre'],\n ['application/x-futuresplash', 'spl'],\n ['application/x-gnumeric', 'gnumeric'],\n ['application/x-gsp', 'gsp'],\n ['application/x-gss', 'gss'],\n ['application/x-gtar', 'gtar'],\n ['application/x-gzip', ['gz', 'gzip']],\n ['application/x-hdf', 'hdf'],\n ['application/x-helpfile', ['help', 'hlp']],\n ['application/x-httpd-imap', 'imap'],\n ['application/x-ima', 'ima'],\n ['application/x-internet-signup', ['ins', 'isp']],\n ['application/x-internett-signup', 'ins'],\n ['application/x-inventor', 'iv'],\n ['application/x-ip2', 'ip'],\n ['application/x-iphone', 'iii'],\n ['application/x-java-class', 'class'],\n ['application/x-java-commerce', 'jcm'],\n ['application/x-java-jnlp-file', 'jnlp'],\n ['application/x-javascript', 'js'],\n ['application/x-koan', ['skd', 'skm', 'skp', 'skt']],\n ['application/x-ksh', 'ksh'],\n ['application/x-latex', ['latex', 'ltx']],\n ['application/x-lha', 'lha'],\n ['application/x-lisp', 'lsp'],\n ['application/x-livescreen', 'ivy'],\n ['application/x-lotus', 'wq1'],\n ['application/x-lotusscreencam', 'scm'],\n ['application/x-lzh', 'lzh'],\n ['application/x-lzx', 'lzx'],\n ['application/x-mac-binhex40', 'hqx'],\n ['application/x-macbinary', 'bin'],\n ['application/x-magic-cap-package-1.0', 'mc$'],\n ['application/x-mathcad', 'mcd'],\n ['application/x-meme', 'mm'],\n ['application/x-midi', ['mid', 'midi']],\n ['application/x-mif', 'mif'],\n ['application/x-mix-transfer', 'nix'],\n ['application/x-mobipocket-ebook', 'prc'],\n ['application/x-mplayer2', 'asx'],\n ['application/x-ms-application', 'application'],\n ['application/x-ms-wmd', 'wmd'],\n ['application/x-ms-wmz', 'wmz'],\n ['application/x-ms-xbap', 'xbap'],\n ['application/x-msaccess', 'mdb'],\n ['application/x-msbinder', 'obd'],\n ['application/x-mscardfile', 'crd'],\n ['application/x-msclip', 'clp'],\n ['application/x-msdownload', ['exe', 'dll']],\n ['application/x-msexcel', ['xls', 'xla', 'xlw']],\n ['application/x-msmediaview', ['mvb', 'm13', 'm14']],\n ['application/x-msmetafile', 'wmf'],\n ['application/x-msmoney', 'mny'],\n ['application/x-mspowerpoint', 'ppt'],\n ['application/x-mspublisher', 'pub'],\n ['application/x-msschedule', 'scd'],\n ['application/x-msterminal', 'trm'],\n ['application/x-mswrite', 'wri'],\n ['application/x-navi-animation', 'ani'],\n ['application/x-navidoc', 'nvd'],\n ['application/x-navimap', 'map'],\n ['application/x-navistyle', 'stl'],\n ['application/x-netcdf', ['cdf', 'nc']],\n ['application/x-newton-compatible-pkg', 'pkg'],\n ['application/x-nokia-9000-communicator-add-on-software', 'aos'],\n ['application/x-omc', 'omc'],\n ['application/x-omcdatamaker', 'omcd'],\n ['application/x-omcregerator', 'omcr'],\n ['application/x-pagemaker', ['pm4', 'pm5']],\n ['application/x-pcl', 'pcl'],\n ['application/x-perfmon', ['pma', 'pmc', 'pml', 'pmr', 'pmw']],\n ['application/x-pixclscript', 'plx'],\n ['application/x-pkcs10', 'p10'],\n ['application/x-pkcs12', ['p12', 'pfx']],\n ['application/x-pkcs7-certificates', ['p7b', 'spc']],\n ['application/x-pkcs7-certreqresp', 'p7r'],\n ['application/x-pkcs7-mime', ['p7m', 'p7c']],\n ['application/x-pkcs7-signature', ['p7s', 'p7a']],\n ['application/x-pointplus', 'css'],\n ['application/x-portable-anymap', 'pnm'],\n ['application/x-project', ['mpc', 'mpt', 'mpv', 'mpx']],\n ['application/x-qpro', 'wb1'],\n ['application/x-rar-compressed', 'rar'],\n ['application/x-rtf', 'rtf'],\n ['application/x-sdp', 'sdp'],\n ['application/x-sea', 'sea'],\n ['application/x-seelogo', 'sl'],\n ['application/x-sh', 'sh'],\n ['application/x-shar', ['shar', 'sh']],\n ['application/x-shockwave-flash', 'swf'],\n ['application/x-silverlight-app', 'xap'],\n ['application/x-sit', 'sit'],\n ['application/x-sprite', ['spr', 'sprite']],\n ['application/x-stuffit', 'sit'],\n ['application/x-stuffitx', 'sitx'],\n ['application/x-sv4cpio', 'sv4cpio'],\n ['application/x-sv4crc', 'sv4crc'],\n ['application/x-tar', 'tar'],\n ['application/x-tbook', ['sbk', 'tbk']],\n ['application/x-tcl', 'tcl'],\n ['application/x-tex', 'tex'],\n ['application/x-tex-tfm', 'tfm'],\n ['application/x-texinfo', ['texi', 'texinfo']],\n ['application/x-troff', ['roff', 't', 'tr']],\n ['application/x-troff-man', 'man'],\n ['application/x-troff-me', 'me'],\n ['application/x-troff-ms', 'ms'],\n ['application/x-troff-msvideo', 'avi'],\n ['application/x-ustar', 'ustar'],\n ['application/x-visio', ['vsd', 'vst', 'vsw']],\n ['application/x-vnd.audioexplosion.mzz', 'mzz'],\n ['application/x-vnd.ls-xpix', 'xpix'],\n ['application/x-vrml', 'vrml'],\n ['application/x-wais-source', ['src', 'wsrc']],\n ['application/x-winhelp', 'hlp'],\n ['application/x-wintalk', 'wtk'],\n ['application/x-world', ['wrl', 'svr']],\n ['application/x-wpwin', 'wpd'],\n ['application/x-wri', 'wri'],\n ['application/x-x509-ca-cert', ['cer', 'crt', 'der']],\n ['application/x-x509-user-cert', 'crt'],\n ['application/x-xfig', 'fig'],\n ['application/x-xpinstall', 'xpi'],\n ['application/x-zip-compressed', 'zip'],\n ['application/xcap-diff+xml', 'xdf'],\n ['application/xenc+xml', 'xenc'],\n ['application/xhtml+xml', 'xhtml'],\n ['application/xml', 'xml'],\n ['application/xml-dtd', 'dtd'],\n ['application/xop+xml', 'xop'],\n ['application/xslt+xml', 'xslt'],\n ['application/xspf+xml', 'xspf'],\n ['application/xv+xml', 'mxml'],\n ['application/yang', 'yang'],\n ['application/yin+xml', 'yin'],\n ['application/ynd.ms-pkipko', 'pko'],\n ['application/zip', 'zip'],\n ['audio/adpcm', 'adp'],\n ['audio/aiff', ['aiff', 'aif', 'aifc']],\n ['audio/basic', ['snd', 'au']],\n ['audio/it', 'it'],\n ['audio/make', ['funk', 'my', 'pfunk']],\n ['audio/make.my.funk', 'pfunk'],\n ['audio/mid', ['mid', 'rmi']],\n ['audio/midi', ['midi', 'kar', 'mid']],\n ['audio/mod', 'mod'],\n ['audio/mp4', 'mp4a'],\n ['audio/mpeg', ['mpga', 'mp3', 'm2a', 'mp2', 'mpa', 'mpg']],\n ['audio/mpeg3', 'mp3'],\n ['audio/nspaudio', ['la', 'lma']],\n ['audio/ogg', 'oga'],\n ['audio/s3m', 's3m'],\n ['audio/tsp-audio', 'tsi'],\n ['audio/tsplayer', 'tsp'],\n ['audio/vnd.dece.audio', 'uva'],\n ['audio/vnd.digital-winds', 'eol'],\n ['audio/vnd.dra', 'dra'],\n ['audio/vnd.dts', 'dts'],\n ['audio/vnd.dts.hd', 'dtshd'],\n ['audio/vnd.lucent.voice', 'lvp'],\n ['audio/vnd.ms-playready.media.pya', 'pya'],\n ['audio/vnd.nuera.ecelp4800', 'ecelp4800'],\n ['audio/vnd.nuera.ecelp7470', 'ecelp7470'],\n ['audio/vnd.nuera.ecelp9600', 'ecelp9600'],\n ['audio/vnd.qcelp', 'qcp'],\n ['audio/vnd.rip', 'rip'],\n ['audio/voc', 'voc'],\n ['audio/voxware', 'vox'],\n ['audio/wav', 'wav'],\n ['audio/webm', 'weba'],\n ['audio/x-aac', 'aac'],\n ['audio/x-adpcm', 'snd'],\n ['audio/x-aiff', ['aiff', 'aif', 'aifc']],\n ['audio/x-au', 'au'],\n ['audio/x-gsm', ['gsd', 'gsm']],\n ['audio/x-jam', 'jam'],\n ['audio/x-liveaudio', 'lam'],\n ['audio/x-mid', ['mid', 'midi']],\n ['audio/x-midi', ['midi', 'mid']],\n ['audio/x-mod', 'mod'],\n ['audio/x-mpeg', 'mp2'],\n ['audio/x-mpeg-3', 'mp3'],\n ['audio/x-mpegurl', 'm3u'],\n ['audio/x-mpequrl', 'm3u'],\n ['audio/x-ms-wax', 'wax'],\n ['audio/x-ms-wma', 'wma'],\n ['audio/x-nspaudio', ['la', 'lma']],\n ['audio/x-pn-realaudio', ['ra', 'ram', 'rm', 'rmm', 'rmp']],\n ['audio/x-pn-realaudio-plugin', ['ra', 'rmp', 'rpm']],\n ['audio/x-psid', 'sid'],\n ['audio/x-realaudio', 'ra'],\n ['audio/x-twinvq', 'vqf'],\n ['audio/x-twinvq-plugin', ['vqe', 'vql']],\n ['audio/x-vnd.audioexplosion.mjuicemediafile', 'mjf'],\n ['audio/x-voc', 'voc'],\n ['audio/x-wav', 'wav'],\n ['audio/xm', 'xm'],\n ['chemical/x-cdx', 'cdx'],\n ['chemical/x-cif', 'cif'],\n ['chemical/x-cmdf', 'cmdf'],\n ['chemical/x-cml', 'cml'],\n ['chemical/x-csml', 'csml'],\n ['chemical/x-pdb', ['pdb', 'xyz']],\n ['chemical/x-xyz', 'xyz'],\n ['drawing/x-dwf', 'dwf'],\n ['i-world/i-vrml', 'ivr'],\n ['image/bmp', ['bmp', 'bm']],\n ['image/cgm', 'cgm'],\n ['image/cis-cod', 'cod'],\n ['image/cmu-raster', ['ras', 'rast']],\n ['image/fif', 'fif'],\n ['image/florian', ['flo', 'turbot']],\n ['image/g3fax', 'g3'],\n ['image/gif', 'gif'],\n ['image/ief', ['ief', 'iefs']],\n ['image/jpeg', ['jpeg', 'jpe', 'jpg', 'jfif', 'jfif-tbnl']],\n ['image/jutvision', 'jut'],\n ['image/ktx', 'ktx'],\n ['image/naplps', ['nap', 'naplps']],\n ['image/pict', ['pic', 'pict']],\n ['image/pipeg', 'jfif'],\n ['image/pjpeg', ['jfif', 'jpe', 'jpeg', 'jpg']],\n ['image/png', ['png', 'x-png']],\n ['image/prs.btif', 'btif'],\n ['image/svg+xml', 'svg'],\n ['image/tiff', ['tif', 'tiff']],\n ['image/vasa', 'mcf'],\n ['image/vnd.adobe.photoshop', 'psd'],\n ['image/vnd.dece.graphic', 'uvi'],\n ['image/vnd.djvu', 'djvu'],\n ['image/vnd.dvb.subtitle', 'sub'],\n ['image/vnd.dwg', ['dwg', 'dxf', 'svf']],\n ['image/vnd.dxf', 'dxf'],\n ['image/vnd.fastbidsheet', 'fbs'],\n ['image/vnd.fpx', 'fpx'],\n ['image/vnd.fst', 'fst'],\n ['image/vnd.fujixerox.edmics-mmr', 'mmr'],\n ['image/vnd.fujixerox.edmics-rlc', 'rlc'],\n ['image/vnd.ms-modi', 'mdi'],\n ['image/vnd.net-fpx', ['fpx', 'npx']],\n ['image/vnd.rn-realflash', 'rf'],\n ['image/vnd.rn-realpix', 'rp'],\n ['image/vnd.wap.wbmp', 'wbmp'],\n ['image/vnd.xiff', 'xif'],\n ['image/webp', 'webp'],\n ['image/x-cmu-raster', 'ras'],\n ['image/x-cmx', 'cmx'],\n ['image/x-dwg', ['dwg', 'dxf', 'svf']],\n ['image/x-freehand', 'fh'],\n ['image/x-icon', 'ico'],\n ['image/x-jg', 'art'],\n ['image/x-jps', 'jps'],\n ['image/x-niff', ['niff', 'nif']],\n ['image/x-pcx', 'pcx'],\n ['image/x-pict', ['pct', 'pic']],\n ['image/x-portable-anymap', 'pnm'],\n ['image/x-portable-bitmap', 'pbm'],\n ['image/x-portable-graymap', 'pgm'],\n ['image/x-portable-greymap', 'pgm'],\n ['image/x-portable-pixmap', 'ppm'],\n ['image/x-quicktime', ['qif', 'qti', 'qtif']],\n ['image/x-rgb', 'rgb'],\n ['image/x-tiff', ['tif', 'tiff']],\n ['image/x-windows-bmp', 'bmp'],\n ['image/x-xbitmap', 'xbm'],\n ['image/x-xbm', 'xbm'],\n ['image/x-xpixmap', ['xpm', 'pm']],\n ['image/x-xwd', 'xwd'],\n ['image/x-xwindowdump', 'xwd'],\n ['image/xbm', 'xbm'],\n ['image/xpm', 'xpm'],\n ['message/rfc822', ['eml', 'mht', 'mhtml', 'nws', 'mime']],\n ['model/iges', ['iges', 'igs']],\n ['model/mesh', 'msh'],\n ['model/vnd.collada+xml', 'dae'],\n ['model/vnd.dwf', 'dwf'],\n ['model/vnd.gdl', 'gdl'],\n ['model/vnd.gtw', 'gtw'],\n ['model/vnd.mts', 'mts'],\n ['model/vnd.vtu', 'vtu'],\n ['model/vrml', ['vrml', 'wrl', 'wrz']],\n ['model/x-pov', 'pov'],\n ['multipart/x-gzip', 'gzip'],\n ['multipart/x-ustar', 'ustar'],\n ['multipart/x-zip', 'zip'],\n ['music/crescendo', ['mid', 'midi']],\n ['music/x-karaoke', 'kar'],\n ['paleovu/x-pv', 'pvu'],\n ['text/asp', 'asp'],\n ['text/calendar', 'ics'],\n ['text/css', 'css'],\n ['text/csv', 'csv'],\n ['text/ecmascript', 'js'],\n ['text/h323', '323'],\n ['text/html', ['html', 'htm', 'stm', 'acgi', 'htmls', 'htx', 'shtml']],\n ['text/iuls', 'uls'],\n ['text/javascript', 'js'],\n ['text/mcf', 'mcf'],\n ['text/n3', 'n3'],\n ['text/pascal', 'pas'],\n [\n 'text/plain',\n [\n 'txt',\n 'bas',\n 'c',\n 'h',\n 'c++',\n 'cc',\n 'com',\n 'conf',\n 'cxx',\n 'def',\n 'f',\n 'f90',\n 'for',\n 'g',\n 'hh',\n 'idc',\n 'jav',\n 'java',\n 'list',\n 'log',\n 'lst',\n 'm',\n 'mar',\n 'pl',\n 'sdml',\n 'text'\n ]\n ],\n ['text/plain-bas', 'par'],\n ['text/prs.lines.tag', 'dsc'],\n ['text/richtext', ['rtx', 'rt', 'rtf']],\n ['text/scriplet', 'wsc'],\n ['text/scriptlet', 'sct'],\n ['text/sgml', ['sgm', 'sgml']],\n ['text/tab-separated-values', 'tsv'],\n ['text/troff', 't'],\n ['text/turtle', 'ttl'],\n ['text/uri-list', ['uni', 'unis', 'uri', 'uris']],\n ['text/vnd.abc', 'abc'],\n ['text/vnd.curl', 'curl'],\n ['text/vnd.curl.dcurl', 'dcurl'],\n ['text/vnd.curl.mcurl', 'mcurl'],\n ['text/vnd.curl.scurl', 'scurl'],\n ['text/vnd.fly', 'fly'],\n ['text/vnd.fmi.flexstor', 'flx'],\n ['text/vnd.graphviz', 'gv'],\n ['text/vnd.in3d.3dml', '3dml'],\n ['text/vnd.in3d.spot', 'spot'],\n ['text/vnd.rn-realtext', 'rt'],\n ['text/vnd.sun.j2me.app-descriptor', 'jad'],\n ['text/vnd.wap.wml', 'wml'],\n ['text/vnd.wap.wmlscript', 'wmls'],\n ['text/webviewhtml', 'htt'],\n ['text/x-asm', ['asm', 's']],\n ['text/x-audiosoft-intra', 'aip'],\n ['text/x-c', ['c', 'cc', 'cpp']],\n ['text/x-component', 'htc'],\n ['text/x-fortran', ['for', 'f', 'f77', 'f90']],\n ['text/x-h', ['h', 'hh']],\n ['text/x-java-source', ['java', 'jav']],\n ['text/x-java-source,java', 'java'],\n ['text/x-la-asf', 'lsx'],\n ['text/x-m', 'm'],\n ['text/x-pascal', 'p'],\n ['text/x-script', 'hlb'],\n ['text/x-script.csh', 'csh'],\n ['text/x-script.elisp', 'el'],\n ['text/x-script.guile', 'scm'],\n ['text/x-script.ksh', 'ksh'],\n ['text/x-script.lisp', 'lsp'],\n ['text/x-script.perl', 'pl'],\n ['text/x-script.perl-module', 'pm'],\n ['text/x-script.phyton', 'py'],\n ['text/x-script.rexx', 'rexx'],\n ['text/x-script.scheme', 'scm'],\n ['text/x-script.sh', 'sh'],\n ['text/x-script.tcl', 'tcl'],\n ['text/x-script.tcsh', 'tcsh'],\n ['text/x-script.zsh', 'zsh'],\n ['text/x-server-parsed-html', ['shtml', 'ssi']],\n ['text/x-setext', 'etx'],\n ['text/x-sgml', ['sgm', 'sgml']],\n ['text/x-speech', ['spc', 'talk']],\n ['text/x-uil', 'uil'],\n ['text/x-uuencode', ['uu', 'uue']],\n ['text/x-vcalendar', 'vcs'],\n ['text/x-vcard', 'vcf'],\n ['text/xml', 'xml'],\n ['video/3gpp', '3gp'],\n ['video/3gpp2', '3g2'],\n ['video/animaflex', 'afl'],\n ['video/avi', 'avi'],\n ['video/avs-video', 'avs'],\n ['video/dl', 'dl'],\n ['video/fli', 'fli'],\n ['video/gl', 'gl'],\n ['video/h261', 'h261'],\n ['video/h263', 'h263'],\n ['video/h264', 'h264'],\n ['video/jpeg', 'jpgv'],\n ['video/jpm', 'jpm'],\n ['video/mj2', 'mj2'],\n ['video/mp4', 'mp4'],\n ['video/mpeg', ['mpeg', 'mp2', 'mpa', 'mpe', 'mpg', 'mpv2', 'm1v', 'm2v', 'mp3']],\n ['video/msvideo', 'avi'],\n ['video/ogg', 'ogv'],\n ['video/quicktime', ['mov', 'qt', 'moov']],\n ['video/vdo', 'vdo'],\n ['video/vivo', ['viv', 'vivo']],\n ['video/vnd.dece.hd', 'uvh'],\n ['video/vnd.dece.mobile', 'uvm'],\n ['video/vnd.dece.pd', 'uvp'],\n ['video/vnd.dece.sd', 'uvs'],\n ['video/vnd.dece.video', 'uvv'],\n ['video/vnd.fvt', 'fvt'],\n ['video/vnd.mpegurl', 'mxu'],\n ['video/vnd.ms-playready.media.pyv', 'pyv'],\n ['video/vnd.rn-realvideo', 'rv'],\n ['video/vnd.uvvu.mp4', 'uvu'],\n ['video/vnd.vivo', ['viv', 'vivo']],\n ['video/vosaic', 'vos'],\n ['video/webm', 'webm'],\n ['video/x-amt-demorun', 'xdr'],\n ['video/x-amt-showrun', 'xsr'],\n ['video/x-atomic3d-feature', 'fmf'],\n ['video/x-dl', 'dl'],\n ['video/x-dv', ['dif', 'dv']],\n ['video/x-f4v', 'f4v'],\n ['video/x-fli', 'fli'],\n ['video/x-flv', 'flv'],\n ['video/x-gl', 'gl'],\n ['video/x-isvideo', 'isu'],\n ['video/x-la-asf', ['lsf', 'lsx']],\n ['video/x-m4v', 'm4v'],\n ['video/x-motion-jpeg', 'mjpg'],\n ['video/x-mpeg', ['mp3', 'mp2']],\n ['video/x-mpeq2a', 'mp2'],\n ['video/x-ms-asf', ['asf', 'asr', 'asx']],\n ['video/x-ms-asf-plugin', 'asx'],\n ['video/x-ms-wm', 'wm'],\n ['video/x-ms-wmv', 'wmv'],\n ['video/x-ms-wmx', 'wmx'],\n ['video/x-ms-wvx', 'wvx'],\n ['video/x-msvideo', 'avi'],\n ['video/x-qtc', 'qtc'],\n ['video/x-scm', 'scm'],\n ['video/x-sgi-movie', ['movie', 'mv']],\n ['windows/metafile', 'wmf'],\n ['www/mime', 'mime'],\n ['x-conference/x-cooltalk', 'ice'],\n ['x-music/x-midi', ['mid', 'midi']],\n ['x-world/x-3dmf', ['3dm', '3dmf', 'qd3', 'qd3d']],\n ['x-world/x-svr', 'svr'],\n ['x-world/x-vrml', ['flr', 'vrml', 'wrl', 'wrz', 'xaf', 'xof']],\n ['x-world/x-vrt', 'vrt'],\n ['xgl/drawing', 'xgz'],\n ['xgl/movie', 'xmz']\n]);\nconst extensions = new Map([\n ['123', 'application/vnd.lotus-1-2-3'],\n ['323', 'text/h323'],\n ['*', 'application/octet-stream'],\n ['3dm', 'x-world/x-3dmf'],\n ['3dmf', 'x-world/x-3dmf'],\n ['3dml', 'text/vnd.in3d.3dml'],\n ['3g2', 'video/3gpp2'],\n ['3gp', 'video/3gpp'],\n ['7z', 'application/x-7z-compressed'],\n ['a', 'application/octet-stream'],\n ['aab', 'application/x-authorware-bin'],\n ['aac', 'audio/x-aac'],\n ['aam', 'application/x-authorware-map'],\n ['aas', 'application/x-authorware-seg'],\n ['abc', 'text/vnd.abc'],\n ['abw', 'application/x-abiword'],\n ['ac', 'application/pkix-attr-cert'],\n ['acc', 'application/vnd.americandynamics.acc'],\n ['ace', 'application/x-ace-compressed'],\n ['acgi', 'text/html'],\n ['acu', 'application/vnd.acucobol'],\n ['acx', 'application/internet-property-stream'],\n ['adp', 'audio/adpcm'],\n ['aep', 'application/vnd.audiograph'],\n ['afl', 'video/animaflex'],\n ['afp', 'application/vnd.ibm.modcap'],\n ['ahead', 'application/vnd.ahead.space'],\n ['ai', 'application/postscript'],\n ['aif', ['audio/aiff', 'audio/x-aiff']],\n ['aifc', ['audio/aiff', 'audio/x-aiff']],\n ['aiff', ['audio/aiff', 'audio/x-aiff']],\n ['aim', 'application/x-aim'],\n ['aip', 'text/x-audiosoft-intra'],\n ['air', 'application/vnd.adobe.air-application-installer-package+zip'],\n ['ait', 'application/vnd.dvb.ait'],\n ['ami', 'application/vnd.amiga.ami'],\n ['ani', 'application/x-navi-animation'],\n ['aos', 'application/x-nokia-9000-communicator-add-on-software'],\n ['apk', 'application/vnd.android.package-archive'],\n ['application', 'application/x-ms-application'],\n ['apr', 'application/vnd.lotus-approach'],\n ['aps', 'application/mime'],\n ['arc', 'application/octet-stream'],\n ['arj', ['application/arj', 'application/octet-stream']],\n ['art', 'image/x-jg'],\n ['asf', 'video/x-ms-asf'],\n ['asm', 'text/x-asm'],\n ['aso', 'application/vnd.accpac.simply.aso'],\n ['asp', 'text/asp'],\n ['asr', 'video/x-ms-asf'],\n ['asx', ['video/x-ms-asf', 'application/x-mplayer2', 'video/x-ms-asf-plugin']],\n ['atc', 'application/vnd.acucorp'],\n ['atomcat', 'application/atomcat+xml'],\n ['atomsvc', 'application/atomsvc+xml'],\n ['atx', 'application/vnd.antix.game-component'],\n ['au', ['audio/basic', 'audio/x-au']],\n ['avi', ['video/avi', 'video/msvideo', 'application/x-troff-msvideo', 'video/x-msvideo']],\n ['avs', 'video/avs-video'],\n ['aw', 'application/applixware'],\n ['axs', 'application/olescript'],\n ['azf', 'application/vnd.airzip.filesecure.azf'],\n ['azs', 'application/vnd.airzip.filesecure.azs'],\n ['azw', 'application/vnd.amazon.ebook'],\n ['bas', 'text/plain'],\n ['bcpio', 'application/x-bcpio'],\n ['bdf', 'application/x-font-bdf'],\n ['bdm', 'application/vnd.syncml.dm+wbxml'],\n ['bed', 'application/vnd.realvnc.bed'],\n ['bh2', 'application/vnd.fujitsu.oasysprs'],\n [\n 'bin',\n ['application/octet-stream', 'application/mac-binary', 'application/macbinary', 'application/x-macbinary', 'application/x-binary']\n ],\n ['bm', 'image/bmp'],\n ['bmi', 'application/vnd.bmi'],\n ['bmp', ['image/bmp', 'image/x-windows-bmp']],\n ['boo', 'application/book'],\n ['book', 'application/book'],\n ['box', 'application/vnd.previewsystems.box'],\n ['boz', 'application/x-bzip2'],\n ['bsh', 'application/x-bsh'],\n ['btif', 'image/prs.btif'],\n ['bz', 'application/x-bzip'],\n ['bz2', 'application/x-bzip2'],\n ['c', ['text/plain', 'text/x-c']],\n ['c++', 'text/plain'],\n ['c11amc', 'application/vnd.cluetrust.cartomobile-config'],\n ['c11amz', 'application/vnd.cluetrust.cartomobile-config-pkg'],\n ['c4g', 'application/vnd.clonk.c4group'],\n ['cab', 'application/vnd.ms-cab-compressed'],\n ['car', 'application/vnd.curl.car'],\n ['cat', ['application/vnd.ms-pkiseccat', 'application/vnd.ms-pki.seccat']],\n ['cc', ['text/plain', 'text/x-c']],\n ['ccad', 'application/clariscad'],\n ['cco', 'application/x-cocoa'],\n ['ccxml', 'application/ccxml+xml,'],\n ['cdbcmsg', 'application/vnd.contact.cmsg'],\n ['cdf', ['application/cdf', 'application/x-cdf', 'application/x-netcdf']],\n ['cdkey', 'application/vnd.mediastation.cdkey'],\n ['cdmia', 'application/cdmi-capability'],\n ['cdmic', 'application/cdmi-container'],\n ['cdmid', 'application/cdmi-domain'],\n ['cdmio', 'application/cdmi-object'],\n ['cdmiq', 'application/cdmi-queue'],\n ['cdx', 'chemical/x-cdx'],\n ['cdxml', 'application/vnd.chemdraw+xml'],\n ['cdy', 'application/vnd.cinderella'],\n ['cer', ['application/pkix-cert', 'application/x-x509-ca-cert']],\n ['cgm', 'image/cgm'],\n ['cha', 'application/x-chat'],\n ['chat', 'application/x-chat'],\n ['chm', 'application/vnd.ms-htmlhelp'],\n ['chrt', 'application/vnd.kde.kchart'],\n ['cif', 'chemical/x-cif'],\n ['cii', 'application/vnd.anser-web-certificate-issue-initiation'],\n ['cil', 'application/vnd.ms-artgalry'],\n ['cla', 'application/vnd.claymore'],\n [\n 'class',\n ['application/octet-stream', 'application/java', 'application/java-byte-code', 'application/java-vm', 'application/x-java-class']\n ],\n ['clkk', 'application/vnd.crick.clicker.keyboard'],\n ['clkp', 'application/vnd.crick.clicker.palette'],\n ['clkt', 'application/vnd.crick.clicker.template'],\n ['clkw', 'application/vnd.crick.clicker.wordbank'],\n ['clkx', 'application/vnd.crick.clicker'],\n ['clp', 'application/x-msclip'],\n ['cmc', 'application/vnd.cosmocaller'],\n ['cmdf', 'chemical/x-cmdf'],\n ['cml', 'chemical/x-cml'],\n ['cmp', 'application/vnd.yellowriver-custom-menu'],\n ['cmx', 'image/x-cmx'],\n ['cod', ['image/cis-cod', 'application/vnd.rim.cod']],\n ['com', ['application/octet-stream', 'text/plain']],\n ['conf', 'text/plain'],\n ['cpio', 'application/x-cpio'],\n ['cpp', 'text/x-c'],\n ['cpt', ['application/mac-compactpro', 'application/x-compactpro', 'application/x-cpt']],\n ['crd', 'application/x-mscardfile'],\n ['crl', ['application/pkix-crl', 'application/pkcs-crl']],\n ['crt', ['application/pkix-cert', 'application/x-x509-user-cert', 'application/x-x509-ca-cert']],\n ['cryptonote', 'application/vnd.rig.cryptonote'],\n ['csh', ['text/x-script.csh', 'application/x-csh']],\n ['csml', 'chemical/x-csml'],\n ['csp', 'application/vnd.commonspace'],\n ['css', ['text/css', 'application/x-pointplus']],\n ['csv', 'text/csv'],\n ['cu', 'application/cu-seeme'],\n ['curl', 'text/vnd.curl'],\n ['cww', 'application/prs.cww'],\n ['cxx', 'text/plain'],\n ['dae', 'model/vnd.collada+xml'],\n ['daf', 'application/vnd.mobius.daf'],\n ['davmount', 'application/davmount+xml'],\n ['dcr', 'application/x-director'],\n ['dcurl', 'text/vnd.curl.dcurl'],\n ['dd2', 'application/vnd.oma.dd2+xml'],\n ['ddd', 'application/vnd.fujixerox.ddd'],\n ['deb', 'application/x-debian-package'],\n ['deepv', 'application/x-deepv'],\n ['def', 'text/plain'],\n ['der', 'application/x-x509-ca-cert'],\n ['dfac', 'application/vnd.dreamfactory'],\n ['dif', 'video/x-dv'],\n ['dir', 'application/x-director'],\n ['dis', 'application/vnd.mobius.dis'],\n ['djvu', 'image/vnd.djvu'],\n ['dl', ['video/dl', 'video/x-dl']],\n ['dll', 'application/x-msdownload'],\n ['dms', 'application/octet-stream'],\n ['dna', 'application/vnd.dna'],\n ['doc', 'application/msword'],\n ['docm', 'application/vnd.ms-word.document.macroenabled.12'],\n ['docx', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'],\n ['dot', 'application/msword'],\n ['dotm', 'application/vnd.ms-word.template.macroenabled.12'],\n ['dotx', 'application/vnd.openxmlformats-officedocument.wordprocessingml.template'],\n ['dp', ['application/commonground', 'application/vnd.osgi.dp']],\n ['dpg', 'application/vnd.dpgraph'],\n ['dra', 'audio/vnd.dra'],\n ['drw', 'application/drafting'],\n ['dsc', 'text/prs.lines.tag'],\n ['dssc', 'application/dssc+der'],\n ['dtb', 'application/x-dtbook+xml'],\n ['dtd', 'application/xml-dtd'],\n ['dts', 'audio/vnd.dts'],\n ['dtshd', 'audio/vnd.dts.hd'],\n ['dump', 'application/octet-stream'],\n ['dv', 'video/x-dv'],\n ['dvi', 'application/x-dvi'],\n ['dwf', ['model/vnd.dwf', 'drawing/x-dwf']],\n ['dwg', ['application/acad', 'image/vnd.dwg', 'image/x-dwg']],\n ['dxf', ['application/dxf', 'image/vnd.dwg', 'image/vnd.dxf', 'image/x-dwg']],\n ['dxp', 'application/vnd.spotfire.dxp'],\n ['dxr', 'application/x-director'],\n ['ecelp4800', 'audio/vnd.nuera.ecelp4800'],\n ['ecelp7470', 'audio/vnd.nuera.ecelp7470'],\n ['ecelp9600', 'audio/vnd.nuera.ecelp9600'],\n ['edm', 'application/vnd.novadigm.edm'],\n ['edx', 'application/vnd.novadigm.edx'],\n ['efif', 'application/vnd.picsel'],\n ['ei6', 'application/vnd.pg.osasli'],\n ['el', 'text/x-script.elisp'],\n ['elc', ['application/x-elc', 'application/x-bytecode.elisp']],\n ['eml', 'message/rfc822'],\n ['emma', 'application/emma+xml'],\n ['env', 'application/x-envoy'],\n ['eol', 'audio/vnd.digital-winds'],\n ['eot', 'application/vnd.ms-fontobject'],\n ['eps', 'application/postscript'],\n ['epub', 'application/epub+zip'],\n ['es', ['application/ecmascript', 'application/x-esrehber']],\n ['es3', 'application/vnd.eszigno3+xml'],\n ['esf', 'application/vnd.epson.esf'],\n ['etx', 'text/x-setext'],\n ['evy', ['application/envoy', 'application/x-envoy']],\n ['exe', ['application/octet-stream', 'application/x-msdownload']],\n ['exi', 'application/exi'],\n ['ext', 'application/vnd.novadigm.ext'],\n ['ez2', 'application/vnd.ezpix-album'],\n ['ez3', 'application/vnd.ezpix-package'],\n ['f', ['text/plain', 'text/x-fortran']],\n ['f4v', 'video/x-f4v'],\n ['f77', 'text/x-fortran'],\n ['f90', ['text/plain', 'text/x-fortran']],\n ['fbs', 'image/vnd.fastbidsheet'],\n ['fcs', 'application/vnd.isac.fcs'],\n ['fdf', 'application/vnd.fdf'],\n ['fe_launch', 'application/vnd.denovo.fcselayout-link'],\n ['fg5', 'application/vnd.fujitsu.oasysgp'],\n ['fh', 'image/x-freehand'],\n ['fif', ['application/fractals', 'image/fif']],\n ['fig', 'application/x-xfig'],\n ['fli', ['video/fli', 'video/x-fli']],\n ['flo', ['image/florian', 'application/vnd.micrografx.flo']],\n ['flr', 'x-world/x-vrml'],\n ['flv', 'video/x-flv'],\n ['flw', 'application/vnd.kde.kivio'],\n ['flx', 'text/vnd.fmi.flexstor'],\n ['fly', 'text/vnd.fly'],\n ['fm', 'application/vnd.framemaker'],\n ['fmf', 'video/x-atomic3d-feature'],\n ['fnc', 'application/vnd.frogans.fnc'],\n ['for', ['text/plain', 'text/x-fortran']],\n ['fpx', ['image/vnd.fpx', 'image/vnd.net-fpx']],\n ['frl', 'application/freeloader'],\n ['fsc', 'application/vnd.fsc.weblaunch'],\n ['fst', 'image/vnd.fst'],\n ['ftc', 'application/vnd.fluxtime.clip'],\n ['fti', 'application/vnd.anser-web-funds-transfer-initiation'],\n ['funk', 'audio/make'],\n ['fvt', 'video/vnd.fvt'],\n ['fxp', 'application/vnd.adobe.fxp'],\n ['fzs', 'application/vnd.fuzzysheet'],\n ['g', 'text/plain'],\n ['g2w', 'application/vnd.geoplan'],\n ['g3', 'image/g3fax'],\n ['g3w', 'application/vnd.geospace'],\n ['gac', 'application/vnd.groove-account'],\n ['gdl', 'model/vnd.gdl'],\n ['geo', 'application/vnd.dynageo'],\n ['geojson', 'application/geo+json'],\n ['gex', 'application/vnd.geometry-explorer'],\n ['ggb', 'application/vnd.geogebra.file'],\n ['ggt', 'application/vnd.geogebra.tool'],\n ['ghf', 'application/vnd.groove-help'],\n ['gif', 'image/gif'],\n ['gim', 'application/vnd.groove-identity-message'],\n ['gl', ['video/gl', 'video/x-gl']],\n ['gmx', 'application/vnd.gmx'],\n ['gnumeric', 'application/x-gnumeric'],\n ['gph', 'application/vnd.flographit'],\n ['gqf', 'application/vnd.grafeq'],\n ['gram', 'application/srgs'],\n ['grv', 'application/vnd.groove-injector'],\n ['grxml', 'application/srgs+xml'],\n ['gsd', 'audio/x-gsm'],\n ['gsf', 'application/x-font-ghostscript'],\n ['gsm', 'audio/x-gsm'],\n ['gsp', 'application/x-gsp'],\n ['gss', 'application/x-gss'],\n ['gtar', 'application/x-gtar'],\n ['gtm', 'application/vnd.groove-tool-message'],\n ['gtw', 'model/vnd.gtw'],\n ['gv', 'text/vnd.graphviz'],\n ['gxt', 'application/vnd.geonext'],\n ['gz', ['application/x-gzip', 'application/x-compressed']],\n ['gzip', ['multipart/x-gzip', 'application/x-gzip']],\n ['h', ['text/plain', 'text/x-h']],\n ['h261', 'video/h261'],\n ['h263', 'video/h263'],\n ['h264', 'video/h264'],\n ['hal', 'application/vnd.hal+xml'],\n ['hbci', 'application/vnd.hbci'],\n ['hdf', 'application/x-hdf'],\n ['help', 'application/x-helpfile'],\n ['hgl', 'application/vnd.hp-hpgl'],\n ['hh', ['text/plain', 'text/x-h']],\n ['hlb', 'text/x-script'],\n ['hlp', ['application/winhlp', 'application/hlp', 'application/x-helpfile', 'application/x-winhelp']],\n ['hpg', 'application/vnd.hp-hpgl'],\n ['hpgl', 'application/vnd.hp-hpgl'],\n ['hpid', 'application/vnd.hp-hpid'],\n ['hps', 'application/vnd.hp-hps'],\n [\n 'hqx',\n [\n 'application/mac-binhex40',\n 'application/binhex',\n 'application/binhex4',\n 'application/mac-binhex',\n 'application/x-binhex40',\n 'application/x-mac-binhex40'\n ]\n ],\n ['hta', 'application/hta'],\n ['htc', 'text/x-component'],\n ['htke', 'application/vnd.kenameaapp'],\n ['htm', 'text/html'],\n ['html', 'text/html'],\n ['htmls', 'text/html'],\n ['htt', 'text/webviewhtml'],\n ['htx', 'text/html'],\n ['hvd', 'application/vnd.yamaha.hv-dic'],\n ['hvp', 'application/vnd.yamaha.hv-voice'],\n ['hvs', 'application/vnd.yamaha.hv-script'],\n ['i2g', 'application/vnd.intergeo'],\n ['icc', 'application/vnd.iccprofile'],\n ['ice', 'x-conference/x-cooltalk'],\n ['ico', 'image/x-icon'],\n ['ics', 'text/calendar'],\n ['idc', 'text/plain'],\n ['ief', 'image/ief'],\n ['iefs', 'image/ief'],\n ['ifm', 'application/vnd.shana.informed.formdata'],\n ['iges', ['application/iges', 'model/iges']],\n ['igl', 'application/vnd.igloader'],\n ['igm', 'application/vnd.insors.igm'],\n ['igs', ['application/iges', 'model/iges']],\n ['igx', 'application/vnd.micrografx.igx'],\n ['iif', 'application/vnd.shana.informed.interchange'],\n ['iii', 'application/x-iphone'],\n ['ima', 'application/x-ima'],\n ['imap', 'application/x-httpd-imap'],\n ['imp', 'application/vnd.accpac.simply.imp'],\n ['ims', 'application/vnd.ms-ims'],\n ['inf', 'application/inf'],\n ['ins', ['application/x-internet-signup', 'application/x-internett-signup']],\n ['ip', 'application/x-ip2'],\n ['ipfix', 'application/ipfix'],\n ['ipk', 'application/vnd.shana.informed.package'],\n ['irm', 'application/vnd.ibm.rights-management'],\n ['irp', 'application/vnd.irepository.package+xml'],\n ['isp', 'application/x-internet-signup'],\n ['isu', 'video/x-isvideo'],\n ['it', 'audio/it'],\n ['itp', 'application/vnd.shana.informed.formtemplate'],\n ['iv', 'application/x-inventor'],\n ['ivp', 'application/vnd.immervision-ivp'],\n ['ivr', 'i-world/i-vrml'],\n ['ivu', 'application/vnd.immervision-ivu'],\n ['ivy', 'application/x-livescreen'],\n ['jad', 'text/vnd.sun.j2me.app-descriptor'],\n ['jam', ['application/vnd.jam', 'audio/x-jam']],\n ['jar', 'application/java-archive'],\n ['jav', ['text/plain', 'text/x-java-source']],\n ['java', ['text/plain', 'text/x-java-source,java', 'text/x-java-source']],\n ['jcm', 'application/x-java-commerce'],\n ['jfif', ['image/pipeg', 'image/jpeg', 'image/pjpeg']],\n ['jfif-tbnl', 'image/jpeg'],\n ['jisp', 'application/vnd.jisp'],\n ['jlt', 'application/vnd.hp-jlyt'],\n ['jnlp', 'application/x-java-jnlp-file'],\n ['joda', 'application/vnd.joost.joda-archive'],\n ['jpe', ['image/jpeg', 'image/pjpeg']],\n ['jpeg', ['image/jpeg', 'image/pjpeg']],\n ['jpg', ['image/jpeg', 'image/pjpeg']],\n ['jpgv', 'video/jpeg'],\n ['jpm', 'video/jpm'],\n ['jps', 'image/x-jps'],\n ['js', ['application/javascript', 'application/ecmascript', 'text/javascript', 'text/ecmascript', 'application/x-javascript']],\n ['json', 'application/json'],\n ['jut', 'image/jutvision'],\n ['kar', ['audio/midi', 'music/x-karaoke']],\n ['karbon', 'application/vnd.kde.karbon'],\n ['kfo', 'application/vnd.kde.kformula'],\n ['kia', 'application/vnd.kidspiration'],\n ['kml', 'application/vnd.google-earth.kml+xml'],\n ['kmz', 'application/vnd.google-earth.kmz'],\n ['kne', 'application/vnd.kinar'],\n ['kon', 'application/vnd.kde.kontour'],\n ['kpr', 'application/vnd.kde.kpresenter'],\n ['ksh', ['application/x-ksh', 'text/x-script.ksh']],\n ['ksp', 'application/vnd.kde.kspread'],\n ['ktx', 'image/ktx'],\n ['ktz', 'application/vnd.kahootz'],\n ['kwd', 'application/vnd.kde.kword'],\n ['la', ['audio/nspaudio', 'audio/x-nspaudio']],\n ['lam', 'audio/x-liveaudio'],\n ['lasxml', 'application/vnd.las.las+xml'],\n ['latex', 'application/x-latex'],\n ['lbd', 'application/vnd.llamagraphics.life-balance.desktop'],\n ['lbe', 'application/vnd.llamagraphics.life-balance.exchange+xml'],\n ['les', 'application/vnd.hhe.lesson-player'],\n ['lha', ['application/octet-stream', 'application/lha', 'application/x-lha']],\n ['lhx', 'application/octet-stream'],\n ['link66', 'application/vnd.route66.link66+xml'],\n ['list', 'text/plain'],\n ['lma', ['audio/nspaudio', 'audio/x-nspaudio']],\n ['log', 'text/plain'],\n ['lrm', 'application/vnd.ms-lrm'],\n ['lsf', 'video/x-la-asf'],\n ['lsp', ['application/x-lisp', 'text/x-script.lisp']],\n ['lst', 'text/plain'],\n ['lsx', ['video/x-la-asf', 'text/x-la-asf']],\n ['ltf', 'application/vnd.frogans.ltf'],\n ['ltx', 'application/x-latex'],\n ['lvp', 'audio/vnd.lucent.voice'],\n ['lwp', 'application/vnd.lotus-wordpro'],\n ['lzh', ['application/octet-stream', 'application/x-lzh']],\n ['lzx', ['application/lzx', 'application/octet-stream', 'application/x-lzx']],\n ['m', ['text/plain', 'text/x-m']],\n ['m13', 'application/x-msmediaview'],\n ['m14', 'application/x-msmediaview'],\n ['m1v', 'video/mpeg'],\n ['m21', 'application/mp21'],\n ['m2a', 'audio/mpeg'],\n ['m2v', 'video/mpeg'],\n ['m3u', ['audio/x-mpegurl', 'audio/x-mpequrl']],\n ['m3u8', 'application/vnd.apple.mpegurl'],\n ['m4v', 'video/x-m4v'],\n ['ma', 'application/mathematica'],\n ['mads', 'application/mads+xml'],\n ['mag', 'application/vnd.ecowin.chart'],\n ['man', 'application/x-troff-man'],\n ['map', 'application/x-navimap'],\n ['mar', 'text/plain'],\n ['mathml', 'application/mathml+xml'],\n ['mbd', 'application/mbedlet'],\n ['mbk', 'application/vnd.mobius.mbk'],\n ['mbox', 'application/mbox'],\n ['mc$', 'application/x-magic-cap-package-1.0'],\n ['mc1', 'application/vnd.medcalcdata'],\n ['mcd', ['application/mcad', 'application/vnd.mcd', 'application/x-mathcad']],\n ['mcf', ['image/vasa', 'text/mcf']],\n ['mcp', 'application/netmc'],\n ['mcurl', 'text/vnd.curl.mcurl'],\n ['mdb', 'application/x-msaccess'],\n ['mdi', 'image/vnd.ms-modi'],\n ['me', 'application/x-troff-me'],\n ['meta4', 'application/metalink4+xml'],\n ['mets', 'application/mets+xml'],\n ['mfm', 'application/vnd.mfmp'],\n ['mgp', 'application/vnd.osgeo.mapguide.package'],\n ['mgz', 'application/vnd.proteus.magazine'],\n ['mht', 'message/rfc822'],\n ['mhtml', 'message/rfc822'],\n ['mid', ['audio/mid', 'audio/midi', 'music/crescendo', 'x-music/x-midi', 'audio/x-midi', 'application/x-midi', 'audio/x-mid']],\n ['midi', ['audio/midi', 'music/crescendo', 'x-music/x-midi', 'audio/x-midi', 'application/x-midi', 'audio/x-mid']],\n ['mif', ['application/vnd.mif', 'application/x-mif', 'application/x-frame']],\n ['mime', ['message/rfc822', 'www/mime']],\n ['mj2', 'video/mj2'],\n ['mjf', 'audio/x-vnd.audioexplosion.mjuicemediafile'],\n ['mjpg', 'video/x-motion-jpeg'],\n ['mlp', 'application/vnd.dolby.mlp'],\n ['mm', ['application/base64', 'application/x-meme']],\n ['mmd', 'application/vnd.chipnuts.karaoke-mmd'],\n ['mme', 'application/base64'],\n ['mmf', 'application/vnd.smaf'],\n ['mmr', 'image/vnd.fujixerox.edmics-mmr'],\n ['mny', 'application/x-msmoney'],\n ['mod', ['audio/mod', 'audio/x-mod']],\n ['mods', 'application/mods+xml'],\n ['moov', 'video/quicktime'],\n ['mov', 'video/quicktime'],\n ['movie', 'video/x-sgi-movie'],\n ['mp2', ['video/mpeg', 'audio/mpeg', 'video/x-mpeg', 'audio/x-mpeg', 'video/x-mpeq2a']],\n ['mp3', ['audio/mpeg', 'audio/mpeg3', 'video/mpeg', 'audio/x-mpeg-3', 'video/x-mpeg']],\n ['mp4', ['video/mp4', 'application/mp4']],\n ['mp4a', 'audio/mp4'],\n ['mpa', ['video/mpeg', 'audio/mpeg']],\n ['mpc', ['application/vnd.mophun.certificate', 'application/x-project']],\n ['mpe', 'video/mpeg'],\n ['mpeg', 'video/mpeg'],\n ['mpg', ['video/mpeg', 'audio/mpeg']],\n ['mpga', 'audio/mpeg'],\n ['mpkg', 'application/vnd.apple.installer+xml'],\n ['mpm', 'application/vnd.blueice.multipass'],\n ['mpn', 'application/vnd.mophun.application'],\n ['mpp', 'application/vnd.ms-project'],\n ['mpt', 'application/x-project'],\n ['mpv', 'application/x-project'],\n ['mpv2', 'video/mpeg'],\n ['mpx', 'application/x-project'],\n ['mpy', 'application/vnd.ibm.minipay'],\n ['mqy', 'application/vnd.mobius.mqy'],\n ['mrc', 'application/marc'],\n ['mrcx', 'application/marcxml+xml'],\n ['ms', 'application/x-troff-ms'],\n ['mscml', 'application/mediaservercontrol+xml'],\n ['mseq', 'application/vnd.mseq'],\n ['msf', 'application/vnd.epson.msf'],\n ['msg', 'application/vnd.ms-outlook'],\n ['msh', 'model/mesh'],\n ['msl', 'application/vnd.mobius.msl'],\n ['msty', 'application/vnd.muvee.style'],\n ['mts', 'model/vnd.mts'],\n ['mus', 'application/vnd.musician'],\n ['musicxml', 'application/vnd.recordare.musicxml+xml'],\n ['mv', 'video/x-sgi-movie'],\n ['mvb', 'application/x-msmediaview'],\n ['mwf', 'application/vnd.mfer'],\n ['mxf', 'application/mxf'],\n ['mxl', 'application/vnd.recordare.musicxml'],\n ['mxml', 'application/xv+xml'],\n ['mxs', 'application/vnd.triscape.mxs'],\n ['mxu', 'video/vnd.mpegurl'],\n ['my', 'audio/make'],\n ['mzz', 'application/x-vnd.audioexplosion.mzz'],\n ['n-gage', 'application/vnd.nokia.n-gage.symbian.install'],\n ['n3', 'text/n3'],\n ['nap', 'image/naplps'],\n ['naplps', 'image/naplps'],\n ['nbp', 'application/vnd.wolfram.player'],\n ['nc', 'application/x-netcdf'],\n ['ncm', 'application/vnd.nokia.configuration-message'],\n ['ncx', 'application/x-dtbncx+xml'],\n ['ngdat', 'application/vnd.nokia.n-gage.data'],\n ['nif', 'image/x-niff'],\n ['niff', 'image/x-niff'],\n ['nix', 'application/x-mix-transfer'],\n ['nlu', 'application/vnd.neurolanguage.nlu'],\n ['nml', 'application/vnd.enliven'],\n ['nnd', 'application/vnd.noblenet-directory'],\n ['nns', 'application/vnd.noblenet-sealer'],\n ['nnw', 'application/vnd.noblenet-web'],\n ['npx', 'image/vnd.net-fpx'],\n ['nsc', 'application/x-conference'],\n ['nsf', 'application/vnd.lotus-notes'],\n ['nvd', 'application/x-navidoc'],\n ['nws', 'message/rfc822'],\n ['o', 'application/octet-stream'],\n ['oa2', 'application/vnd.fujitsu.oasys2'],\n ['oa3', 'application/vnd.fujitsu.oasys3'],\n ['oas', 'application/vnd.fujitsu.oasys'],\n ['obd', 'application/x-msbinder'],\n ['oda', 'application/oda'],\n ['odb', 'application/vnd.oasis.opendocument.database'],\n ['odc', 'application/vnd.oasis.opendocument.chart'],\n ['odf', 'application/vnd.oasis.opendocument.formula'],\n ['odft', 'application/vnd.oasis.opendocument.formula-template'],\n ['odg', 'application/vnd.oasis.opendocument.graphics'],\n ['odi', 'application/vnd.oasis.opendocument.image'],\n ['odm', 'application/vnd.oasis.opendocument.text-master'],\n ['odp', 'application/vnd.oasis.opendocument.presentation'],\n ['ods', 'application/vnd.oasis.opendocument.spreadsheet'],\n ['odt', 'application/vnd.oasis.opendocument.text'],\n ['oga', 'audio/ogg'],\n ['ogv', 'video/ogg'],\n ['ogx', 'application/ogg'],\n ['omc', 'application/x-omc'],\n ['omcd', 'application/x-omcdatamaker'],\n ['omcr', 'application/x-omcregerator'],\n ['onetoc', 'application/onenote'],\n ['opf', 'application/oebps-package+xml'],\n ['org', 'application/vnd.lotus-organizer'],\n ['osf', 'application/vnd.yamaha.openscoreformat'],\n ['osfpvg', 'application/vnd.yamaha.openscoreformat.osfpvg+xml'],\n ['otc', 'application/vnd.oasis.opendocument.chart-template'],\n ['otf', 'application/x-font-otf'],\n ['otg', 'application/vnd.oasis.opendocument.graphics-template'],\n ['oth', 'application/vnd.oasis.opendocument.text-web'],\n ['oti', 'application/vnd.oasis.opendocument.image-template'],\n ['otp', 'application/vnd.oasis.opendocument.presentation-template'],\n ['ots', 'application/vnd.oasis.opendocument.spreadsheet-template'],\n ['ott', 'application/vnd.oasis.opendocument.text-template'],\n ['oxt', 'application/vnd.openofficeorg.extension'],\n ['p', 'text/x-pascal'],\n ['p10', ['application/pkcs10', 'application/x-pkcs10']],\n ['p12', ['application/pkcs-12', 'application/x-pkcs12']],\n ['p7a', 'application/x-pkcs7-signature'],\n ['p7b', 'application/x-pkcs7-certificates'],\n ['p7c', ['application/pkcs7-mime', 'application/x-pkcs7-mime']],\n ['p7m', ['application/pkcs7-mime', 'application/x-pkcs7-mime']],\n ['p7r', 'application/x-pkcs7-certreqresp'],\n ['p7s', ['application/pkcs7-signature', 'application/x-pkcs7-signature']],\n ['p8', 'application/pkcs8'],\n ['par', 'text/plain-bas'],\n ['part', 'application/pro_eng'],\n ['pas', 'text/pascal'],\n ['paw', 'application/vnd.pawaafile'],\n ['pbd', 'application/vnd.powerbuilder6'],\n ['pbm', 'image/x-portable-bitmap'],\n ['pcf', 'application/x-font-pcf'],\n ['pcl', ['application/vnd.hp-pcl', 'application/x-pcl']],\n ['pclxl', 'application/vnd.hp-pclxl'],\n ['pct', 'image/x-pict'],\n ['pcurl', 'application/vnd.curl.pcurl'],\n ['pcx', 'image/x-pcx'],\n ['pdb', ['application/vnd.palm', 'chemical/x-pdb']],\n ['pdf', 'application/pdf'],\n ['pfa', 'application/x-font-type1'],\n ['pfr', 'application/font-tdpfr'],\n ['pfunk', ['audio/make', 'audio/make.my.funk']],\n ['pfx', 'application/x-pkcs12'],\n ['pgm', ['image/x-portable-graymap', 'image/x-portable-greymap']],\n ['pgn', 'application/x-chess-pgn'],\n ['pgp', 'application/pgp-signature'],\n ['pic', ['image/pict', 'image/x-pict']],\n ['pict', 'image/pict'],\n ['pkg', 'application/x-newton-compatible-pkg'],\n ['pki', 'application/pkixcmp'],\n ['pkipath', 'application/pkix-pkipath'],\n ['pko', ['application/ynd.ms-pkipko', 'application/vnd.ms-pki.pko']],\n ['pl', ['text/plain', 'text/x-script.perl']],\n ['plb', 'application/vnd.3gpp.pic-bw-large'],\n ['plc', 'application/vnd.mobius.plc'],\n ['plf', 'application/vnd.pocketlearn'],\n ['pls', 'application/pls+xml'],\n ['plx', 'application/x-pixclscript'],\n ['pm', ['text/x-script.perl-module', 'image/x-xpixmap']],\n ['pm4', 'application/x-pagemaker'],\n ['pm5', 'application/x-pagemaker'],\n ['pma', 'application/x-perfmon'],\n ['pmc', 'application/x-perfmon'],\n ['pml', ['application/vnd.ctc-posml', 'application/x-perfmon']],\n ['pmr', 'application/x-perfmon'],\n ['pmw', 'application/x-perfmon'],\n ['png', 'image/png'],\n ['pnm', ['application/x-portable-anymap', 'image/x-portable-anymap']],\n ['portpkg', 'application/vnd.macports.portpkg'],\n ['pot', ['application/vnd.ms-powerpoint', 'application/mspowerpoint']],\n ['potm', 'application/vnd.ms-powerpoint.template.macroenabled.12'],\n ['potx', 'application/vnd.openxmlformats-officedocument.presentationml.template'],\n ['pov', 'model/x-pov'],\n ['ppa', 'application/vnd.ms-powerpoint'],\n ['ppam', 'application/vnd.ms-powerpoint.addin.macroenabled.12'],\n ['ppd', 'application/vnd.cups-ppd'],\n ['ppm', 'image/x-portable-pixmap'],\n ['pps', ['application/vnd.ms-powerpoint', 'application/mspowerpoint']],\n ['ppsm', 'application/vnd.ms-powerpoint.slideshow.macroenabled.12'],\n ['ppsx', 'application/vnd.openxmlformats-officedocument.presentationml.slideshow'],\n ['ppt', ['application/vnd.ms-powerpoint', 'application/mspowerpoint', 'application/powerpoint', 'application/x-mspowerpoint']],\n ['pptm', 'application/vnd.ms-powerpoint.presentation.macroenabled.12'],\n ['pptx', 'application/vnd.openxmlformats-officedocument.presentationml.presentation'],\n ['ppz', 'application/mspowerpoint'],\n ['prc', 'application/x-mobipocket-ebook'],\n ['pre', ['application/vnd.lotus-freelance', 'application/x-freelance']],\n ['prf', 'application/pics-rules'],\n ['prt', 'application/pro_eng'],\n ['ps', 'application/postscript'],\n ['psb', 'application/vnd.3gpp.pic-bw-small'],\n ['psd', ['application/octet-stream', 'image/vnd.adobe.photoshop']],\n ['psf', 'application/x-font-linux-psf'],\n ['pskcxml', 'application/pskc+xml'],\n ['ptid', 'application/vnd.pvi.ptid1'],\n ['pub', 'application/x-mspublisher'],\n ['pvb', 'application/vnd.3gpp.pic-bw-var'],\n ['pvu', 'paleovu/x-pv'],\n ['pwn', 'application/vnd.3m.post-it-notes'],\n ['pwz', 'application/vnd.ms-powerpoint'],\n ['py', 'text/x-script.phyton'],\n ['pya', 'audio/vnd.ms-playready.media.pya'],\n ['pyc', 'application/x-bytecode.python'],\n ['pyv', 'video/vnd.ms-playready.media.pyv'],\n ['qam', 'application/vnd.epson.quickanime'],\n ['qbo', 'application/vnd.intu.qbo'],\n ['qcp', 'audio/vnd.qcelp'],\n ['qd3', 'x-world/x-3dmf'],\n ['qd3d', 'x-world/x-3dmf'],\n ['qfx', 'application/vnd.intu.qfx'],\n ['qif', 'image/x-quicktime'],\n ['qps', 'application/vnd.publishare-delta-tree'],\n ['qt', 'video/quicktime'],\n ['qtc', 'video/x-qtc'],\n ['qti', 'image/x-quicktime'],\n ['qtif', 'image/x-quicktime'],\n ['qxd', 'application/vnd.quark.quarkxpress'],\n ['ra', ['audio/x-realaudio', 'audio/x-pn-realaudio', 'audio/x-pn-realaudio-plugin']],\n ['ram', 'audio/x-pn-realaudio'],\n ['rar', 'application/x-rar-compressed'],\n ['ras', ['image/cmu-raster', 'application/x-cmu-raster', 'image/x-cmu-raster']],\n ['rast', 'image/cmu-raster'],\n ['rcprofile', 'application/vnd.ipunplugged.rcprofile'],\n ['rdf', 'application/rdf+xml'],\n ['rdz', 'application/vnd.data-vision.rdz'],\n ['rep', 'application/vnd.businessobjects'],\n ['res', 'application/x-dtbresource+xml'],\n ['rexx', 'text/x-script.rexx'],\n ['rf', 'image/vnd.rn-realflash'],\n ['rgb', 'image/x-rgb'],\n ['rif', 'application/reginfo+xml'],\n ['rip', 'audio/vnd.rip'],\n ['rl', 'application/resource-lists+xml'],\n ['rlc', 'image/vnd.fujixerox.edmics-rlc'],\n ['rld', 'application/resource-lists-diff+xml'],\n ['rm', ['application/vnd.rn-realmedia', 'audio/x-pn-realaudio']],\n ['rmi', 'audio/mid'],\n ['rmm', 'audio/x-pn-realaudio'],\n ['rmp', ['audio/x-pn-realaudio-plugin', 'audio/x-pn-realaudio']],\n ['rms', 'application/vnd.jcp.javame.midlet-rms'],\n ['rnc', 'application/relax-ng-compact-syntax'],\n ['rng', ['application/ringing-tones', 'application/vnd.nokia.ringing-tone']],\n ['rnx', 'application/vnd.rn-realplayer'],\n ['roff', 'application/x-troff'],\n ['rp', 'image/vnd.rn-realpix'],\n ['rp9', 'application/vnd.cloanto.rp9'],\n ['rpm', 'audio/x-pn-realaudio-plugin'],\n ['rpss', 'application/vnd.nokia.radio-presets'],\n ['rpst', 'application/vnd.nokia.radio-preset'],\n ['rq', 'application/sparql-query'],\n ['rs', 'application/rls-services+xml'],\n ['rsd', 'application/rsd+xml'],\n ['rt', ['text/richtext', 'text/vnd.rn-realtext']],\n ['rtf', ['application/rtf', 'text/richtext', 'application/x-rtf']],\n ['rtx', ['text/richtext', 'application/rtf']],\n ['rv', 'video/vnd.rn-realvideo'],\n ['s', 'text/x-asm'],\n ['s3m', 'audio/s3m'],\n ['saf', 'application/vnd.yamaha.smaf-audio'],\n ['saveme', 'application/octet-stream'],\n ['sbk', 'application/x-tbook'],\n ['sbml', 'application/sbml+xml'],\n ['sc', 'application/vnd.ibm.secure-container'],\n ['scd', 'application/x-msschedule'],\n [\n 'scm',\n ['application/vnd.lotus-screencam', 'video/x-scm', 'text/x-script.guile', 'application/x-lotusscreencam', 'text/x-script.scheme']\n ],\n ['scq', 'application/scvp-cv-request'],\n ['scs', 'application/scvp-cv-response'],\n ['sct', 'text/scriptlet'],\n ['scurl', 'text/vnd.curl.scurl'],\n ['sda', 'application/vnd.stardivision.draw'],\n ['sdc', 'application/vnd.stardivision.calc'],\n ['sdd', 'application/vnd.stardivision.impress'],\n ['sdkm', 'application/vnd.solent.sdkm+xml'],\n ['sdml', 'text/plain'],\n ['sdp', ['application/sdp', 'application/x-sdp']],\n ['sdr', 'application/sounder'],\n ['sdw', 'application/vnd.stardivision.writer'],\n ['sea', ['application/sea', 'application/x-sea']],\n ['see', 'application/vnd.seemail'],\n ['seed', 'application/vnd.fdsn.seed'],\n ['sema', 'application/vnd.sema'],\n ['semd', 'application/vnd.semd'],\n ['semf', 'application/vnd.semf'],\n ['ser', 'application/java-serialized-object'],\n ['set', 'application/set'],\n ['setpay', 'application/set-payment-initiation'],\n ['setreg', 'application/set-registration-initiation'],\n ['sfd-hdstx', 'application/vnd.hydrostatix.sof-data'],\n ['sfs', 'application/vnd.spotfire.sfs'],\n ['sgl', 'application/vnd.stardivision.writer-global'],\n ['sgm', ['text/sgml', 'text/x-sgml']],\n ['sgml', ['text/sgml', 'text/x-sgml']],\n ['sh', ['application/x-shar', 'application/x-bsh', 'application/x-sh', 'text/x-script.sh']],\n ['shar', ['application/x-bsh', 'application/x-shar']],\n ['shf', 'application/shf+xml'],\n ['shtml', ['text/html', 'text/x-server-parsed-html']],\n ['sid', 'audio/x-psid'],\n ['sis', 'application/vnd.symbian.install'],\n ['sit', ['application/x-stuffit', 'application/x-sit']],\n ['sitx', 'application/x-stuffitx'],\n ['skd', 'application/x-koan'],\n ['skm', 'application/x-koan'],\n ['skp', ['application/vnd.koan', 'application/x-koan']],\n ['skt', 'application/x-koan'],\n ['sl', 'application/x-seelogo'],\n ['sldm', 'application/vnd.ms-powerpoint.slide.macroenabled.12'],\n ['sldx', 'application/vnd.openxmlformats-officedocument.presentationml.slide'],\n ['slt', 'application/vnd.epson.salt'],\n ['sm', 'application/vnd.stepmania.stepchart'],\n ['smf', 'application/vnd.stardivision.math'],\n ['smi', ['application/smil', 'application/smil+xml']],\n ['smil', 'application/smil'],\n ['snd', ['audio/basic', 'audio/x-adpcm']],\n ['snf', 'application/x-font-snf'],\n ['sol', 'application/solids'],\n ['spc', ['text/x-speech', 'application/x-pkcs7-certificates']],\n ['spf', 'application/vnd.yamaha.smaf-phrase'],\n ['spl', ['application/futuresplash', 'application/x-futuresplash']],\n ['spot', 'text/vnd.in3d.spot'],\n ['spp', 'application/scvp-vp-response'],\n ['spq', 'application/scvp-vp-request'],\n ['spr', 'application/x-sprite'],\n ['sprite', 'application/x-sprite'],\n ['src', 'application/x-wais-source'],\n ['sru', 'application/sru+xml'],\n ['srx', 'application/sparql-results+xml'],\n ['sse', 'application/vnd.kodak-descriptor'],\n ['ssf', 'application/vnd.epson.ssf'],\n ['ssi', 'text/x-server-parsed-html'],\n ['ssm', 'application/streamingmedia'],\n ['ssml', 'application/ssml+xml'],\n ['sst', ['application/vnd.ms-pkicertstore', 'application/vnd.ms-pki.certstore']],\n ['st', 'application/vnd.sailingtracker.track'],\n ['stc', 'application/vnd.sun.xml.calc.template'],\n ['std', 'application/vnd.sun.xml.draw.template'],\n ['step', 'application/step'],\n ['stf', 'application/vnd.wt.stf'],\n ['sti', 'application/vnd.sun.xml.impress.template'],\n ['stk', 'application/hyperstudio'],\n ['stl', ['application/vnd.ms-pkistl', 'application/sla', 'application/vnd.ms-pki.stl', 'application/x-navistyle']],\n ['stm', 'text/html'],\n ['stp', 'application/step'],\n ['str', 'application/vnd.pg.format'],\n ['stw', 'application/vnd.sun.xml.writer.template'],\n ['sub', 'image/vnd.dvb.subtitle'],\n ['sus', 'application/vnd.sus-calendar'],\n ['sv4cpio', 'application/x-sv4cpio'],\n ['sv4crc', 'application/x-sv4crc'],\n ['svc', 'application/vnd.dvb.service'],\n ['svd', 'application/vnd.svd'],\n ['svf', ['image/vnd.dwg', 'image/x-dwg']],\n ['svg', 'image/svg+xml'],\n ['svr', ['x-world/x-svr', 'application/x-world']],\n ['swf', 'application/x-shockwave-flash'],\n ['swi', 'application/vnd.aristanetworks.swi'],\n ['sxc', 'application/vnd.sun.xml.calc'],\n ['sxd', 'application/vnd.sun.xml.draw'],\n ['sxg', 'application/vnd.sun.xml.writer.global'],\n ['sxi', 'application/vnd.sun.xml.impress'],\n ['sxm', 'application/vnd.sun.xml.math'],\n ['sxw', 'application/vnd.sun.xml.writer'],\n ['t', ['text/troff', 'application/x-troff']],\n ['talk', 'text/x-speech'],\n ['tao', 'application/vnd.tao.intent-module-archive'],\n ['tar', 'application/x-tar'],\n ['tbk', ['application/toolbook', 'application/x-tbook']],\n ['tcap', 'application/vnd.3gpp2.tcap'],\n ['tcl', ['text/x-script.tcl', 'application/x-tcl']],\n ['tcsh', 'text/x-script.tcsh'],\n ['teacher', 'application/vnd.smart.teacher'],\n ['tei', 'application/tei+xml'],\n ['tex', 'application/x-tex'],\n ['texi', 'application/x-texinfo'],\n ['texinfo', 'application/x-texinfo'],\n ['text', ['application/plain', 'text/plain']],\n ['tfi', 'application/thraud+xml'],\n ['tfm', 'application/x-tex-tfm'],\n ['tgz', ['application/gnutar', 'application/x-compressed']],\n ['thmx', 'application/vnd.ms-officetheme'],\n ['tif', ['image/tiff', 'image/x-tiff']],\n ['tiff', ['image/tiff', 'image/x-tiff']],\n ['tmo', 'application/vnd.tmobile-livetv'],\n ['torrent', 'application/x-bittorrent'],\n ['tpl', 'application/vnd.groove-tool-template'],\n ['tpt', 'application/vnd.trid.tpt'],\n ['tr', 'application/x-troff'],\n ['tra', 'application/vnd.trueapp'],\n ['trm', 'application/x-msterminal'],\n ['tsd', 'application/timestamped-data'],\n ['tsi', 'audio/tsp-audio'],\n ['tsp', ['application/dsptype', 'audio/tsplayer']],\n ['tsv', 'text/tab-separated-values'],\n ['ttf', 'application/x-font-ttf'],\n ['ttl', 'text/turtle'],\n ['turbot', 'image/florian'],\n ['twd', 'application/vnd.simtech-mindmapper'],\n ['txd', 'application/vnd.genomatix.tuxedo'],\n ['txf', 'application/vnd.mobius.txf'],\n ['txt', 'text/plain'],\n ['ufd', 'application/vnd.ufdl'],\n ['uil', 'text/x-uil'],\n ['uls', 'text/iuls'],\n ['umj', 'application/vnd.umajin'],\n ['uni', 'text/uri-list'],\n ['unis', 'text/uri-list'],\n ['unityweb', 'application/vnd.unity'],\n ['unv', 'application/i-deas'],\n ['uoml', 'application/vnd.uoml+xml'],\n ['uri', 'text/uri-list'],\n ['uris', 'text/uri-list'],\n ['ustar', ['application/x-ustar', 'multipart/x-ustar']],\n ['utz', 'application/vnd.uiq.theme'],\n ['uu', ['application/octet-stream', 'text/x-uuencode']],\n ['uue', 'text/x-uuencode'],\n ['uva', 'audio/vnd.dece.audio'],\n ['uvh', 'video/vnd.dece.hd'],\n ['uvi', 'image/vnd.dece.graphic'],\n ['uvm', 'video/vnd.dece.mobile'],\n ['uvp', 'video/vnd.dece.pd'],\n ['uvs', 'video/vnd.dece.sd'],\n ['uvu', 'video/vnd.uvvu.mp4'],\n ['uvv', 'video/vnd.dece.video'],\n ['vcd', 'application/x-cdlink'],\n ['vcf', 'text/x-vcard'],\n ['vcg', 'application/vnd.groove-vcard'],\n ['vcs', 'text/x-vcalendar'],\n ['vcx', 'application/vnd.vcx'],\n ['vda', 'application/vda'],\n ['vdo', 'video/vdo'],\n ['vew', 'application/groupwise'],\n ['vis', 'application/vnd.visionary'],\n ['viv', ['video/vivo', 'video/vnd.vivo']],\n ['vivo', ['video/vivo', 'video/vnd.vivo']],\n ['vmd', 'application/vocaltec-media-desc'],\n ['vmf', 'application/vocaltec-media-file'],\n ['voc', ['audio/voc', 'audio/x-voc']],\n ['vos', 'video/vosaic'],\n ['vox', 'audio/voxware'],\n ['vqe', 'audio/x-twinvq-plugin'],\n ['vqf', 'audio/x-twinvq'],\n ['vql', 'audio/x-twinvq-plugin'],\n ['vrml', ['model/vrml', 'x-world/x-vrml', 'application/x-vrml']],\n ['vrt', 'x-world/x-vrt'],\n ['vsd', ['application/vnd.visio', 'application/x-visio']],\n ['vsf', 'application/vnd.vsf'],\n ['vst', 'application/x-visio'],\n ['vsw', 'application/x-visio'],\n ['vtu', 'model/vnd.vtu'],\n ['vxml', 'application/voicexml+xml'],\n ['w60', 'application/wordperfect6.0'],\n ['w61', 'application/wordperfect6.1'],\n ['w6w', 'application/msword'],\n ['wad', 'application/x-doom'],\n ['wav', ['audio/wav', 'audio/x-wav']],\n ['wax', 'audio/x-ms-wax'],\n ['wb1', 'application/x-qpro'],\n ['wbmp', 'image/vnd.wap.wbmp'],\n ['wbs', 'application/vnd.criticaltools.wbs+xml'],\n ['wbxml', 'application/vnd.wap.wbxml'],\n ['wcm', 'application/vnd.ms-works'],\n ['wdb', 'application/vnd.ms-works'],\n ['web', 'application/vnd.xara'],\n ['weba', 'audio/webm'],\n ['webm', 'video/webm'],\n ['webp', 'image/webp'],\n ['wg', 'application/vnd.pmi.widget'],\n ['wgt', 'application/widget'],\n ['wiz', 'application/msword'],\n ['wk1', 'application/x-123'],\n ['wks', 'application/vnd.ms-works'],\n ['wm', 'video/x-ms-wm'],\n ['wma', 'audio/x-ms-wma'],\n ['wmd', 'application/x-ms-wmd'],\n ['wmf', ['windows/metafile', 'application/x-msmetafile']],\n ['wml', 'text/vnd.wap.wml'],\n ['wmlc', 'application/vnd.wap.wmlc'],\n ['wmls', 'text/vnd.wap.wmlscript'],\n ['wmlsc', 'application/vnd.wap.wmlscriptc'],\n ['wmv', 'video/x-ms-wmv'],\n ['wmx', 'video/x-ms-wmx'],\n ['wmz', 'application/x-ms-wmz'],\n ['woff', 'application/x-font-woff'],\n ['word', 'application/msword'],\n ['wp', 'application/wordperfect'],\n ['wp5', ['application/wordperfect', 'application/wordperfect6.0']],\n ['wp6', 'application/wordperfect'],\n ['wpd', ['application/wordperfect', 'application/vnd.wordperfect', 'application/x-wpwin']],\n ['wpl', 'application/vnd.ms-wpl'],\n ['wps', 'application/vnd.ms-works'],\n ['wq1', 'application/x-lotus'],\n ['wqd', 'application/vnd.wqd'],\n ['wri', ['application/mswrite', 'application/x-wri', 'application/x-mswrite']],\n ['wrl', ['model/vrml', 'x-world/x-vrml', 'application/x-world']],\n ['wrz', ['model/vrml', 'x-world/x-vrml']],\n ['wsc', 'text/scriplet'],\n ['wsdl', 'application/wsdl+xml'],\n ['wspolicy', 'application/wspolicy+xml'],\n ['wsrc', 'application/x-wais-source'],\n ['wtb', 'application/vnd.webturbo'],\n ['wtk', 'application/x-wintalk'],\n ['wvx', 'video/x-ms-wvx'],\n ['x-png', 'image/png'],\n ['x3d', 'application/vnd.hzn-3d-crossword'],\n ['xaf', 'x-world/x-vrml'],\n ['xap', 'application/x-silverlight-app'],\n ['xar', 'application/vnd.xara'],\n ['xbap', 'application/x-ms-xbap'],\n ['xbd', 'application/vnd.fujixerox.docuworks.binder'],\n ['xbm', ['image/xbm', 'image/x-xbm', 'image/x-xbitmap']],\n ['xdf', 'application/xcap-diff+xml'],\n ['xdm', 'application/vnd.syncml.dm+xml'],\n ['xdp', 'application/vnd.adobe.xdp+xml'],\n ['xdr', 'video/x-amt-demorun'],\n ['xdssc', 'application/dssc+xml'],\n ['xdw', 'application/vnd.fujixerox.docuworks'],\n ['xenc', 'application/xenc+xml'],\n ['xer', 'application/patch-ops-error+xml'],\n ['xfdf', 'application/vnd.adobe.xfdf'],\n ['xfdl', 'application/vnd.xfdl'],\n ['xgz', 'xgl/drawing'],\n ['xhtml', 'application/xhtml+xml'],\n ['xif', 'image/vnd.xiff'],\n ['xl', 'application/excel'],\n ['xla', ['application/vnd.ms-excel', 'application/excel', 'application/x-msexcel', 'application/x-excel']],\n ['xlam', 'application/vnd.ms-excel.addin.macroenabled.12'],\n ['xlb', ['application/excel', 'application/vnd.ms-excel', 'application/x-excel']],\n ['xlc', ['application/vnd.ms-excel', 'application/excel', 'application/x-excel']],\n ['xld', ['application/excel', 'application/x-excel']],\n ['xlk', ['application/excel', 'application/x-excel']],\n ['xll', ['application/excel', 'application/vnd.ms-excel', 'application/x-excel']],\n ['xlm', ['application/vnd.ms-excel', 'application/excel', 'application/x-excel']],\n ['xls', ['application/vnd.ms-excel', 'application/excel', 'application/x-msexcel', 'application/x-excel']],\n ['xlsb', 'application/vnd.ms-excel.sheet.binary.macroenabled.12'],\n ['xlsm', 'application/vnd.ms-excel.sheet.macroenabled.12'],\n ['xlsx', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'],\n ['xlt', ['application/vnd.ms-excel', 'application/excel', 'application/x-excel']],\n ['xltm', 'application/vnd.ms-excel.template.macroenabled.12'],\n ['xltx', 'application/vnd.openxmlformats-officedocument.spreadsheetml.template'],\n ['xlv', ['application/excel', 'application/x-excel']],\n ['xlw', ['application/vnd.ms-excel', 'application/excel', 'application/x-msexcel', 'application/x-excel']],\n ['xm', 'audio/xm'],\n ['xml', ['application/xml', 'text/xml', 'application/atom+xml', 'application/rss+xml']],\n ['xmz', 'xgl/movie'],\n ['xo', 'application/vnd.olpc-sugar'],\n ['xof', 'x-world/x-vrml'],\n ['xop', 'application/xop+xml'],\n ['xpi', 'application/x-xpinstall'],\n ['xpix', 'application/x-vnd.ls-xpix'],\n ['xpm', ['image/xpm', 'image/x-xpixmap']],\n ['xpr', 'application/vnd.is-xpr'],\n ['xps', 'application/vnd.ms-xpsdocument'],\n ['xpw', 'application/vnd.intercon.formnet'],\n ['xslt', 'application/xslt+xml'],\n ['xsm', 'application/vnd.syncml+xml'],\n ['xspf', 'application/xspf+xml'],\n ['xsr', 'video/x-amt-showrun'],\n ['xul', 'application/vnd.mozilla.xul+xml'],\n ['xwd', ['image/x-xwd', 'image/x-xwindowdump']],\n ['xyz', ['chemical/x-xyz', 'chemical/x-pdb']],\n ['yang', 'application/yang'],\n ['yin', 'application/yin+xml'],\n ['z', ['application/x-compressed', 'application/x-compress']],\n ['zaz', 'application/vnd.zzazz.deck+xml'],\n ['zip', ['application/zip', 'multipart/x-zip', 'application/x-zip-compressed', 'application/x-compressed']],\n ['zir', 'application/vnd.zul'],\n ['zmm', 'application/vnd.handheld-entertainment+xml'],\n ['zoo', 'application/octet-stream'],\n ['zsh', 'text/x-script.zsh']\n]);\n\nmodule.exports = {\n detectMimeType(filename) {\n if (!filename) {\n return defaultMimeType;\n }\n\n const parsed = path.parse(filename);\n const extension = (parsed.ext.substr(1) || parsed.name || '').split('?').shift().trim().toLowerCase();\n const value = extensions.has(extension) ? extensions.get(extension) : defaultMimeType;\n\n if (Array.isArray(value)) {\n return value[0];\n }\n return value;\n },\n\n detectExtension(mimeType) {\n if (!mimeType) {\n return defaultExtension;\n }\n const parts = mimeType.toLowerCase().trim().split('/');\n const rootType = parts.shift().trim();\n const subType = parts.join('/').trim();\n\n if (mimeTypes.has(rootType + '/' + subType)) {\n const value = mimeTypes.get(rootType + '/' + subType);\n if (Array.isArray(value)) {\n return value[0];\n }\n return value;\n }\n\n switch (rootType) {\n case 'text':\n return 'txt';\n default:\n return 'bin';\n }\n }\n};\n","'use strict';\n\nconst { Transform } = require('stream');\n\n/**\n * Encodes a Buffer into a base64 encoded string\n *\n * @param {Buffer} buffer Buffer to convert\n * @returns {String} base64 encoded string\n */\nfunction encode(buffer) {\n if (typeof buffer === 'string') {\n buffer = Buffer.from(buffer, 'utf-8');\n }\n\n return buffer.toString('base64');\n}\n\n/**\n * Adds soft line breaks to a base64 string\n *\n * @param {String} str base64 encoded string that might need line wrapping\n * @param {Number} [lineLength=76] Maximum allowed length for a line\n * @returns {String} Soft-wrapped base64 encoded string\n */\nfunction wrap(str, lineLength) {\n str = (str || '').toString();\n lineLength = lineLength || 76;\n\n if (str.length <= lineLength) {\n return str;\n }\n\n const result = [];\n let pos = 0;\n const chunkLength = lineLength * 1024;\n const wrapRegex = new RegExp('.{' + lineLength + '}', 'g');\n while (pos < str.length) {\n const wrappedLines = str.substr(pos, chunkLength).replace(wrapRegex, '$&\\r\\n').trim();\n result.push(wrappedLines);\n pos += chunkLength;\n }\n\n return result.join('\\r\\n').trim();\n}\n\n/**\n * Creates a transform stream for encoding data to base64 encoding\n *\n * @constructor\n * @param {Object} options Stream options\n * @param {Number} [options.lineLength=76] Maximum length for lines, set to false to disable wrapping\n */\nclass Encoder extends Transform {\n constructor(options) {\n super();\n this.options = options || {};\n\n if (this.options.lineLength !== false) {\n this.options.lineLength = this.options.lineLength || 76;\n }\n\n this._curLine = '';\n this._remainingBytes = false;\n\n this.inputBytes = 0;\n this.outputBytes = 0;\n }\n\n _transform(chunk, encoding, done) {\n if (encoding !== 'buffer') {\n chunk = Buffer.from(chunk, encoding);\n }\n\n if (!chunk || !chunk.length) {\n return setImmediate(done);\n }\n\n this.inputBytes += chunk.length;\n\n if (this._remainingBytes && this._remainingBytes.length) {\n chunk = Buffer.concat([this._remainingBytes, chunk], this._remainingBytes.length + chunk.length);\n this._remainingBytes = false;\n }\n\n if (chunk.length % 3) {\n this._remainingBytes = chunk.slice(chunk.length - (chunk.length % 3));\n chunk = chunk.slice(0, chunk.length - (chunk.length % 3));\n } else {\n this._remainingBytes = false;\n }\n\n let b64 = this._curLine + encode(chunk);\n\n if (this.options.lineLength) {\n b64 = wrap(b64, this.options.lineLength);\n\n // remove last line as it is still most probably incomplete\n const lastLF = b64.lastIndexOf('\\n');\n if (lastLF < 0) {\n this._curLine = b64;\n b64 = '';\n } else if (lastLF === b64.length - 1) {\n this._curLine = '';\n } else {\n this._curLine = b64.substring(lastLF + 1);\n b64 = b64.substring(0, lastLF + 1);\n }\n }\n\n if (b64) {\n this.outputBytes += b64.length;\n this.push(Buffer.from(b64, 'ascii'));\n }\n\n setImmediate(done);\n }\n\n _flush(done) {\n if (this._remainingBytes && this._remainingBytes.length) {\n this._curLine += encode(this._remainingBytes);\n }\n\n if (this._curLine) {\n this._curLine = wrap(this._curLine, this.options.lineLength);\n this.outputBytes += this._curLine.length;\n this.push(Buffer.from(this._curLine, 'ascii'));\n this._curLine = '';\n }\n done();\n }\n}\n\nmodule.exports = {\n encode,\n wrap,\n Encoder\n};\n","'use strict';\n\nconst { Transform } = require('stream');\n\n/**\n * Encodes a Buffer into a Quoted-Printable encoded string\n *\n * @param {Buffer} buffer Buffer to convert\n * @returns {String} Quoted-Printable encoded string\n */\n// usable characters that do not need encoding\n// https://tools.ietf.org/html/rfc2045#section-6.7\nconst QP_RANGES = [\n [0x09], // \n [0x0a], // \n [0x0d], // \n [0x20, 0x3c], // !\"#$%&'()*+,-./0123456789:;\n [0x3e, 0x7e] // >?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}\n];\n\nfunction encode(buffer) {\n if (typeof buffer === 'string') {\n buffer = Buffer.from(buffer, 'utf-8');\n }\n\n let result = '';\n let ord;\n\n for (let i = 0, len = buffer.length; i < len; i++) {\n ord = buffer[i];\n // if the char is in allowed range, then keep as is, unless it is a WS in the end of a line\n if (\n checkRanges(ord, QP_RANGES) &&\n !((ord === 0x20 || ord === 0x09) && (i === len - 1 || buffer[i + 1] === 0x0a || buffer[i + 1] === 0x0d))\n ) {\n result += String.fromCharCode(ord);\n continue;\n }\n result += '=' + (ord < 0x10 ? '0' : '') + ord.toString(16).toUpperCase();\n }\n\n return result;\n}\n\n/**\n * Adds soft line breaks to a Quoted-Printable string\n *\n * @param {String} str Quoted-Printable encoded string that might need line wrapping\n * @param {Number} [lineLength=76] Maximum allowed length for a line\n * @returns {String} Soft-wrapped Quoted-Printable encoded string\n */\nfunction wrap(str, lineLength) {\n str = (str || '').toString();\n lineLength = lineLength || 76;\n\n if (str.length <= lineLength) {\n return str;\n }\n\n let pos = 0;\n const len = str.length;\n let match, code, line;\n const lineMargin = Math.floor(lineLength / 3);\n let result = '';\n\n // insert soft linebreaks where needed\n while (pos < len) {\n line = str.substr(pos, lineLength);\n if ((match = line.match(/\\r\\n/))) {\n line = line.substr(0, match.index + match[0].length);\n result += line;\n pos += line.length;\n continue;\n }\n\n if (line.substr(-1) === '\\n') {\n result += line;\n pos += line.length;\n continue;\n }\n\n if ((match = line.substr(-lineMargin).match(/\\n.*?$/))) {\n // truncate to nearest line break\n line = line.substr(0, line.length - (match[0].length - 1));\n result += line;\n pos += line.length;\n continue;\n }\n\n if (line.length > lineLength - lineMargin && (match = line.substr(-lineMargin).match(/[ \\t.,!?][^ \\t.,!?]*$/))) {\n // truncate to nearest space\n line = line.substr(0, line.length - (match[0].length - 1));\n } else if (line.match(/[=][\\da-f]{0,2}$/i)) {\n // push incomplete encoding sequences to the next line\n if ((match = line.match(/[=][\\da-f]{0,1}$/i))) {\n line = line.substr(0, line.length - match[0].length);\n }\n\n // ensure that utf-8 sequences are not split\n while (\n line.length > 3 &&\n line.length < len - pos &&\n !line.match(/^(?:=[\\da-f]{2}){1,4}$/i) &&\n (match = line.match(/[=][\\da-f]{2}$/gi))\n ) {\n code = parseInt(match[0].substr(1, 2), 16);\n if (code < 128) {\n break;\n }\n\n line = line.substr(0, line.length - 3);\n\n if (code >= 0xc0) {\n break;\n }\n }\n }\n\n if (pos + line.length < len && line.substr(-1) !== '\\n') {\n if (line.length === lineLength && line.match(/[=][\\da-f]{2}$/i)) {\n line = line.substr(0, line.length - 3);\n } else if (line.length === lineLength) {\n line = line.substr(0, line.length - 1);\n }\n pos += line.length;\n line += '=\\r\\n';\n } else {\n pos += line.length;\n }\n\n result += line;\n }\n\n return result;\n}\n\n/**\n * Helper function to check if a number is inside provided ranges\n *\n * @param {Number} nr Number to check for\n * @param {Array} ranges An Array of allowed values\n * @returns {Boolean} True if the value was found inside allowed ranges, false otherwise\n */\nfunction checkRanges(nr, ranges) {\n for (let i = ranges.length - 1; i >= 0; i--) {\n const range = ranges[i];\n if (!range.length) {\n continue;\n }\n if (range.length === 1 && nr === range[0]) {\n return true;\n }\n if (range.length === 2 && nr >= range[0] && nr <= range[1]) {\n return true;\n }\n }\n return false;\n}\n\n/**\n * Creates a transform stream for encoding data to Quoted-Printable encoding\n *\n * @constructor\n * @param {Object} options Stream options\n * @param {Number} [options.lineLength=76] Maximum length for lines, set to false to disable wrapping\n */\nclass Encoder extends Transform {\n constructor(options) {\n super();\n\n this.options = options || {};\n\n if (this.options.lineLength !== false) {\n this.options.lineLength = this.options.lineLength || 76;\n }\n\n this._curLine = '';\n\n this.inputBytes = 0;\n this.outputBytes = 0;\n }\n\n _transform(chunk, encoding, done) {\n let qp;\n\n if (encoding !== 'buffer') {\n chunk = Buffer.from(chunk, encoding);\n }\n\n if (!chunk || !chunk.length) {\n return done();\n }\n\n this.inputBytes += chunk.length;\n\n if (this.options.lineLength) {\n qp = this._curLine + encode(chunk);\n qp = wrap(qp, this.options.lineLength);\n qp = qp.replace(/(^|\\n)([^\\n]*)$/, (match, lineBreak, lastLine) => {\n this._curLine = lastLine;\n return lineBreak;\n });\n\n if (qp) {\n this.outputBytes += qp.length;\n this.push(qp);\n }\n } else {\n qp = encode(chunk);\n this.outputBytes += qp.length;\n this.push(qp, 'ascii');\n }\n\n done();\n }\n\n _flush(done) {\n if (this._curLine) {\n this.outputBytes += this._curLine.length;\n this.push(this._curLine, 'ascii');\n }\n done();\n }\n}\n\nmodule.exports = {\n encode,\n wrap,\n Encoder\n};\n","/* eslint no-control-regex:0 */\n\n'use strict';\n\nconst base64 = require('../base64');\nconst qp = require('../qp');\nconst mimeTypes = require('./mime-types');\n\nmodule.exports = {\n /**\n * Checks if a value is plaintext string (uses only printable 7bit chars)\n *\n * @param {String} value String to be tested\n * @returns {Boolean} true if it is a plaintext string\n */\n isPlainText(value, isParam) {\n const re = isParam ? /[\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\"\\u0080-\\uFFFF]/ : /[\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\u0080-\\uFFFF]/;\n return typeof value === 'string' && !re.test(value);\n },\n\n /**\n * Checks if a multi line string containes lines longer than the selected value.\n *\n * Useful when detecting if a mail message needs any processing at all –\n * if only plaintext characters are used and lines are short, then there is\n * no need to encode the values in any way. If the value is plaintext but has\n * longer lines then allowed, then use format=flowed\n *\n * @param {Number} lineLength Max line length to check for\n * @returns {Boolean} Returns true if there is at least one line longer than lineLength chars\n */\n hasLongerLines(str, lineLength) {\n if (str.length > 128 * 1024) {\n // do not test strings longer than 128kB\n return true;\n }\n return new RegExp('^.{' + (lineLength + 1) + ',}', 'm').test(str);\n },\n\n /**\n * Encodes a string or an Buffer to an UTF-8 MIME Word (rfc2047)\n *\n * @param {String|Buffer} data String to be encoded\n * @param {String} mimeWordEncoding='Q' Encoding for the mime word, either Q or B\n * @param {Number} [maxLength=0] If set, split mime words into several chunks if needed\n * @return {String} Single or several mime words joined together\n */\n encodeWord(data, mimeWordEncoding, maxLength) {\n mimeWordEncoding = (mimeWordEncoding || 'Q').toString().toUpperCase().trim().charAt(0);\n maxLength = maxLength || 0;\n\n let encodedStr;\n const toCharset = 'UTF-8';\n\n if (maxLength && maxLength > 7 + toCharset.length) {\n maxLength -= 7 + toCharset.length;\n }\n\n if (mimeWordEncoding === 'Q') {\n // https://tools.ietf.org/html/rfc2047#section-5 rule (3)\n encodedStr = qp.encode(data).replace(/[^a-z0-9!*+\\-/=]/gi, chr => {\n const ord = chr.charCodeAt(0).toString(16).toUpperCase();\n if (chr === ' ') {\n return '_';\n }\n return '=' + (ord.length === 1 ? '0' + ord : ord);\n });\n } else if (mimeWordEncoding === 'B') {\n encodedStr = typeof data === 'string' ? data : base64.encode(data);\n maxLength = maxLength ? Math.max(3, ((maxLength - (maxLength % 4)) / 4) * 3) : 0;\n }\n\n if (maxLength && (mimeWordEncoding !== 'B' ? encodedStr : base64.encode(data)).length > maxLength) {\n if (mimeWordEncoding === 'Q') {\n encodedStr = this.splitMimeEncodedString(encodedStr, maxLength).join('?= =?' + toCharset + '?' + mimeWordEncoding + '?');\n } else {\n // RFC2047 6.3 (2) states that encoded-word must include an integral number of characters, so no chopping unicode sequences\n const parts = [];\n let lpart = '';\n for (let i = 0, len = encodedStr.length; i < len; i++) {\n let chr = encodedStr.charAt(i);\n\n if (/[\\ud83c\\ud83d\\ud83e]/.test(chr) && i < len - 1) {\n // composite emoji byte, so add the next byte as well\n chr += encodedStr.charAt(++i);\n }\n\n // check if we can add this character to the existing string\n // without breaking byte length limit\n if (Buffer.byteLength(lpart + chr) <= maxLength || i === 0) {\n lpart += chr;\n } else {\n // we hit the length limit, so push the existing string and start over\n parts.push(base64.encode(lpart));\n lpart = chr;\n }\n }\n if (lpart) {\n parts.push(base64.encode(lpart));\n }\n\n if (parts.length > 1) {\n encodedStr = parts.join('?= =?' + toCharset + '?' + mimeWordEncoding + '?');\n } else {\n encodedStr = parts.join('');\n }\n }\n } else if (mimeWordEncoding === 'B') {\n encodedStr = base64.encode(data);\n }\n\n return '=?' + toCharset + '?' + mimeWordEncoding + '?' + encodedStr + (encodedStr.substr(-2) === '?=' ? '' : '?=');\n },\n\n /**\n * Finds word sequences with non ascii text and converts these to mime words\n *\n * @param {String} value String to be encoded\n * @param {String} mimeWordEncoding='Q' Encoding for the mime word, either Q or B\n * @param {Number} [maxLength=0] If set, split mime words into several chunks if needed\n * @param {Boolean} [encodeAll=false] If true and the value needs encoding then encodes entire string, not just the smallest match\n * @return {String} String with possible mime words\n */\n encodeWords(value, mimeWordEncoding, maxLength, encodeAll) {\n maxLength = maxLength || 0;\n\n // find first word with a non-printable ascii or special symbol in it\n const firstMatch = value.match(/(?:^|\\s)([^\\s]*[\"\\u0080-\\uFFFF])/);\n if (!firstMatch) {\n return value;\n }\n\n if (encodeAll) {\n // if it is requested to encode everything or the string contains something that resebles encoded word, then encode everything\n return this.encodeWord(value, mimeWordEncoding, maxLength);\n }\n\n // find the last word with a non-printable ascii in it\n const lastMatch = value.match(/([\"\\u0080-\\uFFFF][^\\s]*)[^\"\\u0080-\\uFFFF]*$/);\n if (!lastMatch) {\n // should not happen\n return value;\n }\n\n const startIndex =\n firstMatch.index +\n (\n firstMatch[0].match(/[^\\s]/) || {\n index: 0\n }\n ).index;\n const endIndex = lastMatch.index + (lastMatch[1] || '').length;\n\n return (\n (startIndex ? value.substr(0, startIndex) : '') +\n this.encodeWord(value.substring(startIndex, endIndex), mimeWordEncoding || 'Q', maxLength) +\n (endIndex < value.length ? value.substr(endIndex) : '')\n );\n },\n\n /**\n * Joins parsed header value together as 'value; param1=value1; param2=value2'\n * PS: We are following RFC 822 for the list of special characters that we need to keep in quotes.\n * Refer: https://www.w3.org/Protocols/rfc1341/4_Content-Type.html\n * @param {Object} structured Parsed header value\n * @return {String} joined header value\n */\n buildHeaderValue(structured) {\n const paramsArray = [];\n\n Object.keys(structured.params || {}).forEach(param => {\n // filename might include unicode characters so it is a special case\n // other values probably do not\n const value = structured.params[param];\n if (!this.isPlainText(value, true) || value.length >= 75) {\n this.buildHeaderParam(param, value, 50).forEach(encodedParam => {\n if (!/[\\s\"\\\\;:/=(),<>@[\\]?]|^[-']|'$/.test(encodedParam.value) || encodedParam.key.substr(-1) === '*') {\n paramsArray.push(encodedParam.key + '=' + encodedParam.value);\n } else {\n paramsArray.push(encodedParam.key + '=' + JSON.stringify(encodedParam.value));\n }\n });\n } else if (/[\\s'\"\\\\;:/=(),<>@[\\]?]|^-/.test(value)) {\n paramsArray.push(param + '=' + JSON.stringify(value));\n } else {\n paramsArray.push(param + '=' + value);\n }\n });\n\n return structured.value + (paramsArray.length ? '; ' + paramsArray.join('; ') : '');\n },\n\n /**\n * Encodes a string or an Buffer to an UTF-8 Parameter Value Continuation encoding (rfc2231)\n * Useful for splitting long parameter values.\n *\n * For example\n * title=\"unicode string\"\n * becomes\n * title*0*=utf-8''unicode\n * title*1*=%20string\n *\n * @param {String|Buffer} data String to be encoded\n * @param {Number} [maxLength=50] Max length for generated chunks\n * @param {String} [fromCharset='UTF-8'] Source sharacter set\n * @return {Array} A list of encoded keys and headers\n */\n buildHeaderParam(key, data, maxLength) {\n const list = [];\n let encodedStr = typeof data === 'string' ? data : (data || '').toString();\n let chr, ord;\n let line;\n let startPos = 0;\n let i, len;\n\n maxLength = maxLength || 50;\n\n // process ascii only text\n if (this.isPlainText(data, true)) {\n // check if conversion is even needed\n if (encodedStr.length <= maxLength) {\n return [\n {\n key,\n value: encodedStr\n }\n ];\n }\n\n encodedStr = encodedStr.replace(new RegExp('.{' + maxLength + '}', 'g'), str => {\n list.push({\n line: str\n });\n return '';\n });\n\n if (encodedStr) {\n list.push({\n line: encodedStr\n });\n }\n } else {\n if (/[\\uD800-\\uDBFF]/.test(encodedStr)) {\n // string containts surrogate pairs, so normalize it to an array of bytes\n const encodedStrArr = [];\n for (i = 0, len = encodedStr.length; i < len; i++) {\n chr = encodedStr.charAt(i);\n ord = chr.charCodeAt(0);\n if (ord >= 0xd800 && ord <= 0xdbff && i < len - 1) {\n chr += encodedStr.charAt(i + 1);\n encodedStrArr.push(chr);\n i++;\n } else {\n encodedStrArr.push(chr);\n }\n }\n encodedStr = encodedStrArr;\n }\n\n // first line includes the charset and language info and needs to be encoded\n // even if it does not contain any unicode characters\n line = \"utf-8''\";\n let encoded = true;\n startPos = 0;\n\n // process text with unicode or special chars\n for (i = 0, len = encodedStr.length; i < len; i++) {\n chr = encodedStr[i];\n\n if (encoded) {\n chr = this.safeEncodeURIComponent(chr);\n } else {\n // try to urlencode current char\n chr = chr === ' ' ? chr : this.safeEncodeURIComponent(chr);\n // By default it is not required to encode a line, the need\n // only appears when the string contains unicode or special chars\n // in this case we start processing the line over and encode all chars\n if (chr !== encodedStr[i]) {\n // Check if it is even possible to add the encoded char to the line\n // If not, there is no reason to use this line, just push it to the list\n // and start a new line with the char that needs encoding\n if ((this.safeEncodeURIComponent(line) + chr).length >= maxLength) {\n list.push({\n line,\n encoded\n });\n line = '';\n startPos = i - 1;\n } else {\n encoded = true;\n i = startPos;\n line = '';\n continue;\n }\n }\n }\n\n // if the line is already too long, push it to the list and start a new one\n if ((line + chr).length >= maxLength) {\n list.push({\n line,\n encoded\n });\n line = chr = encodedStr[i] === ' ' ? ' ' : this.safeEncodeURIComponent(encodedStr[i]);\n if (chr === encodedStr[i]) {\n encoded = false;\n startPos = i - 1;\n } else {\n encoded = true;\n }\n } else {\n line += chr;\n }\n }\n\n if (line) {\n list.push({\n line,\n encoded\n });\n }\n }\n\n return list.map((item, i) => ({\n // encoded lines: {name}*{part}*\n // unencoded lines: {name}*{part}\n // if any line needs to be encoded then the first line (part==0) is always encoded\n key: key + '*' + i + (item.encoded ? '*' : ''),\n value: item.line\n }));\n },\n\n /**\n * Parses a header value with key=value arguments into a structured\n * object.\n *\n * parseHeaderValue('content-type: text/plain; CHARSET='UTF-8'') ->\n * {\n * 'value': 'text/plain',\n * 'params': {\n * 'charset': 'UTF-8'\n * }\n * }\n *\n * @param {String} str Header value\n * @return {Object} Header value as a parsed structure\n */\n parseHeaderValue(str) {\n const response = {\n value: false,\n params: {}\n };\n let key = false;\n let value = '';\n let type = 'value';\n let quote = false;\n let escaped = false;\n let chr;\n\n for (let i = 0, len = str.length; i < len; i++) {\n chr = str.charAt(i);\n if (type === 'key') {\n if (chr === '=') {\n key = value.trim().toLowerCase();\n type = 'value';\n value = '';\n continue;\n }\n value += chr;\n } else {\n if (escaped) {\n value += chr;\n } else if (chr === '\\\\') {\n escaped = true;\n continue;\n } else if (quote && chr === quote) {\n quote = false;\n } else if (!quote && chr === '\"') {\n quote = chr;\n } else if (!quote && chr === ';') {\n if (key === false) {\n response.value = value.trim();\n } else {\n response.params[key] = value.trim();\n }\n type = 'key';\n value = '';\n } else {\n value += chr;\n }\n escaped = false;\n }\n }\n\n if (type === 'value') {\n if (key === false) {\n response.value = value.trim();\n } else {\n response.params[key] = value.trim();\n }\n } else if (value.trim()) {\n response.params[value.trim().toLowerCase()] = '';\n }\n\n // handle parameter value continuations\n // https://tools.ietf.org/html/rfc2231#section-3\n\n // preprocess values\n Object.keys(response.params).forEach(key => {\n let actualKey, nr, match, value;\n if ((match = key.match(/(\\*(\\d+)|\\*(\\d+)\\*|\\*)$/))) {\n actualKey = key.substr(0, match.index);\n nr = Number(match[2] || match[3]) || 0;\n\n if (!response.params[actualKey] || typeof response.params[actualKey] !== 'object') {\n response.params[actualKey] = {\n charset: false,\n values: []\n };\n }\n\n value = response.params[key];\n\n if (nr === 0 && match[0].substr(-1) === '*' && (match = value.match(/^([^']*)'[^']*'(.*)$/))) {\n response.params[actualKey].charset = match[1] || 'iso-8859-1';\n value = match[2];\n }\n\n response.params[actualKey].values[nr] = value;\n\n // remove the old reference\n delete response.params[key];\n }\n });\n\n // concatenate split rfc2231 strings and convert encoded strings to mime encoded words\n Object.keys(response.params).forEach(key => {\n let value;\n if (response.params[key] && Array.isArray(response.params[key].values)) {\n value = response.params[key].values.map(val => val || '').join('');\n\n if (response.params[key].charset) {\n // convert \"%AB\" to \"=?charset?Q?=AB?=\"\n response.params[key] =\n '=?' +\n response.params[key].charset +\n '?Q?' +\n value\n // fix invalidly encoded chars\n .replace(/[=?_\\s]/g, s => {\n const c = s.charCodeAt(0).toString(16);\n if (s === ' ') {\n return '_';\n }\n return '%' + (c.length < 2 ? '0' : '') + c;\n })\n // change from urlencoding to percent encoding\n .replace(/%/g, '=') +\n '?=';\n } else {\n response.params[key] = value;\n }\n }\n });\n\n return response;\n },\n\n /**\n * Returns file extension for a content type string. If no suitable extensions\n * are found, 'bin' is used as the default extension\n *\n * @param {String} mimeType Content type to be checked for\n * @return {String} File extension\n */\n detectExtension: mimeType => mimeTypes.detectExtension(mimeType),\n\n /**\n * Returns content type for a file extension. If no suitable content types\n * are found, 'application/octet-stream' is used as the default content type\n *\n * @param {String} extension Extension to be checked for\n * @return {String} File extension\n */\n detectMimeType: extension => mimeTypes.detectMimeType(extension),\n\n /**\n * Folds long lines, useful for folding header lines (afterSpace=false) and\n * flowed text (afterSpace=true)\n *\n * @param {String} str String to be folded\n * @param {Number} [lineLength=76] Maximum length of a line\n * @param {Boolean} afterSpace If true, leave a space in th end of a line\n * @return {String} String with folded lines\n */\n foldLines(str, lineLength, afterSpace) {\n str = (str || '').toString();\n lineLength = lineLength || 76;\n\n let pos = 0;\n const len = str.length;\n let result = '';\n let line, match;\n\n while (pos < len) {\n line = str.substr(pos, lineLength);\n if (line.length < lineLength) {\n result += line;\n break;\n }\n if ((match = line.match(/^[^\\n\\r]*(\\r?\\n|\\r)/))) {\n line = match[0];\n result += line;\n pos += line.length;\n continue;\n } else if ((match = line.match(/(\\s+)[^\\s]*$/)) && match[0].length - (afterSpace ? (match[1] || '').length : 0) < line.length) {\n line = line.substr(0, line.length - (match[0].length - (afterSpace ? (match[1] || '').length : 0)));\n } else if ((match = str.substr(pos + line.length).match(/^[^\\s]+(\\s*)/))) {\n line = line + match[0].substr(0, match[0].length - (!afterSpace ? (match[1] || '').length : 0));\n }\n\n result += line;\n pos += line.length;\n if (pos < len) {\n result += '\\r\\n';\n }\n }\n\n return result;\n },\n\n /**\n * Splits a mime encoded string. Needed for dividing mime words into smaller chunks\n *\n * @param {String} str Mime encoded string to be split up\n * @param {Number} maxlen Maximum length of characters for one part (minimum 12)\n * @return {Array} Split string\n */\n splitMimeEncodedString: (str, maxlen) => {\n const lines = [];\n let curLine, match, chr, done;\n\n // require at least 12 symbols to fit possible 4 octet UTF-8 sequences\n maxlen = Math.max(maxlen || 0, 12);\n\n while (str.length) {\n curLine = str.substr(0, maxlen);\n\n // move incomplete escaped char back to main\n if ((match = curLine.match(/[=][0-9A-F]?$/i))) {\n curLine = curLine.substr(0, match.index);\n }\n\n done = false;\n while (!done) {\n done = true;\n // check if not middle of a unicode char sequence\n if ((match = str.substr(curLine.length).match(/^[=]([0-9A-F]{2})/i))) {\n chr = parseInt(match[1], 16);\n // invalid sequence, move one char back anc recheck\n if (chr < 0xc2 && chr > 0x7f) {\n curLine = curLine.substr(0, curLine.length - 3);\n done = false;\n }\n }\n }\n\n if (curLine.length) {\n lines.push(curLine);\n }\n str = str.substr(curLine.length);\n }\n\n return lines;\n },\n\n encodeURICharComponent: chr => {\n let res = '';\n let ord = chr.charCodeAt(0).toString(16).toUpperCase();\n\n if (ord.length % 2) {\n ord = '0' + ord;\n }\n\n if (ord.length > 2) {\n for (let i = 0, len = ord.length / 2; i < len; i++) {\n res += '%' + ord.substr(i, 2);\n }\n } else {\n res += '%' + ord;\n }\n\n return res;\n },\n\n safeEncodeURIComponent(str) {\n str = (str || '').toString();\n\n try {\n // might throw if we try to encode invalid sequences, eg. partial emoji\n str = encodeURIComponent(str);\n } catch (_E) {\n // should never run\n return str.replace(/[^\\x00-\\x1F *'()<>@,;:\\\\\"[\\]?=\\u007F-\\uFFFF]+/g, '');\n }\n\n // ensure chars that are not handled by encodeURICompent are converted as well\n return str.replace(/[\\x00-\\x1F *'()<>@,;:\\\\\"[\\]?=\\u007F-\\uFFFF]/g, chr => this.encodeURICharComponent(chr));\n }\n};\n","'use strict';\n\n/**\n * Converts tokens for a single address into an address object\n *\n * @param {Array} tokens Tokens object\n * @param {Number} depth Current recursion depth for nested group protection\n * @return {Object} Address object\n */\nfunction _handleAddress(tokens, depth) {\n let isGroup = false;\n let state = 'text';\n const addresses = [];\n const data = {\n address: [],\n comment: [],\n group: [],\n text: [],\n textWasQuoted: []\n };\n let insideQuotes = false;\n\n // Filter out , (comments) and regular text\n for (let i = 0, len = tokens.length; i < len; i++) {\n const token = tokens[i];\n const prevToken = i ? tokens[i - 1] : null;\n if (token.type === 'operator') {\n switch (token.value) {\n case '<':\n state = 'address';\n insideQuotes = false;\n break;\n case '(':\n state = 'comment';\n insideQuotes = false;\n break;\n case ':':\n state = 'group';\n isGroup = true;\n insideQuotes = false;\n break;\n case '\"':\n insideQuotes = !insideQuotes;\n state = 'text';\n break;\n default:\n state = 'text';\n insideQuotes = false;\n break;\n }\n } else if (token.value) {\n if (state === 'address') {\n // Handle unquoted name that includes a \"<\".\n // Apple Mail truncates everything between an unexpected < and an address.\n token.value = token.value.replace(/^[^<]*<\\s*/, '');\n }\n\n if (prevToken && prevToken.noBreak && data[state].length) {\n data[state][data[state].length - 1] += token.value;\n if (state === 'text' && insideQuotes) {\n data.textWasQuoted[data.textWasQuoted.length - 1] = true;\n }\n } else {\n data[state].push(token.value);\n if (state === 'text') {\n data.textWasQuoted.push(insideQuotes);\n }\n }\n }\n }\n\n // If there is no text but a comment, replace the two\n if (!data.text.length && data.comment.length) {\n data.text = data.comment;\n data.comment = [];\n }\n\n if (isGroup) {\n // http://tools.ietf.org/html/rfc2822#appendix-A.1.3\n data.text = data.text.join(' ');\n\n // Parse group members, but flatten any nested groups (RFC 5322 doesn't allow nesting)\n let groupMembers = [];\n if (data.group.length) {\n const parsedGroup = addressparser(data.group.join(','), { _depth: depth + 1 });\n parsedGroup.forEach(member => {\n if (member.group) {\n groupMembers = groupMembers.concat(member.group);\n } else {\n groupMembers.push(member);\n }\n });\n }\n\n addresses.push({\n name: data.text || '',\n group: groupMembers\n });\n } else {\n // If no address was found, try to detect one from regular text\n if (!data.address.length && data.text.length) {\n for (let i = data.text.length - 1; i >= 0; i--) {\n // Security: Do not extract email addresses from quoted strings.\n // RFC 5321 allows @ inside quoted local-parts like \"user@domain\"@example.com.\n // Extracting emails from quoted text leads to misrouting vulnerabilities.\n if (!data.textWasQuoted[i] && /^[^@\\s]+@[^@\\s]+$/.test(data.text[i])) {\n data.address = data.text.splice(i, 1);\n data.textWasQuoted.splice(i, 1);\n break;\n }\n }\n\n // Try a looser regex match if strict match found nothing\n if (!data.address.length) {\n let extracted = false;\n for (let i = data.text.length - 1; i >= 0; i--) {\n // Security: Do not extract email addresses from quoted strings\n if (!data.textWasQuoted[i]) {\n data.text[i] = data.text[i]\n .replace(/\\s*\\b[^@\\s]+@[^\\s]+\\b\\s*/, match => {\n if (!extracted) {\n data.address = [match.trim()];\n extracted = true;\n return ' ';\n }\n return match;\n })\n .trim();\n if (extracted) {\n break;\n }\n }\n }\n }\n }\n\n // If there's still no text but a comment exists, replace the two\n if (!data.text.length && data.comment.length) {\n data.text = data.comment;\n data.comment = [];\n }\n\n // Keep only the first address occurrence, push others to regular text\n if (data.address.length > 1) {\n data.text = data.text.concat(data.address.splice(1));\n }\n\n // Join values with spaces\n data.text = data.text.join(' ');\n data.address = data.address.join(' ');\n\n const address = {\n address: data.address || data.text || '',\n name: data.text || data.address || ''\n };\n\n if (address.address === address.name) {\n if (/@/.test(address.address || '')) {\n address.name = '';\n } else {\n address.address = '';\n }\n }\n\n addresses.push(address);\n }\n\n return addresses;\n}\n\n/**\n * Creates a Tokenizer object for tokenizing address field strings\n *\n * @constructor\n * @param {String} str Address field string\n */\nclass Tokenizer {\n constructor(str) {\n this.str = (str || '').toString();\n this.operatorCurrent = '';\n this.operatorExpecting = '';\n this.node = null;\n this.escaped = false;\n\n this.list = [];\n /**\n * Operator tokens and which tokens are expected to end the sequence\n */\n this.operators = {\n '\"': '\"',\n '(': ')',\n '<': '>',\n ',': '',\n ':': ';',\n // Semicolons are not a legal delimiter per the RFC2822 grammar other\n // than for terminating a group, but they are also not valid for any\n // other use in this context. Given that some mail clients have\n // historically allowed the semicolon as a delimiter equivalent to the\n // comma in their UI, it makes sense to treat them the same as a comma\n // when used outside of a group.\n ';': ''\n };\n }\n\n /**\n * Tokenizes the original input string\n *\n * @return {Array} An array of operator|text tokens\n */\n tokenize() {\n const list = [];\n\n for (let i = 0, len = this.str.length; i < len; i++) {\n const chr = this.str.charAt(i);\n const nextChr = i < len - 1 ? this.str.charAt(i + 1) : null;\n this.checkChar(chr, nextChr);\n }\n\n this.list.forEach(node => {\n node.value = (node.value || '').toString().trim();\n if (node.value) {\n list.push(node);\n }\n });\n\n return list;\n }\n\n /**\n * Checks if a character is an operator or text and acts accordingly\n *\n * @param {String} chr Character from the address field\n */\n checkChar(chr, nextChr) {\n if (this.escaped) {\n // ignore next condition blocks\n } else if (chr === this.operatorExpecting) {\n this.node = {\n type: 'operator',\n value: chr\n };\n\n if (nextChr && ![' ', '\\t', '\\r', '\\n', ',', ';'].includes(nextChr)) {\n this.node.noBreak = true;\n }\n\n this.list.push(this.node);\n this.node = null;\n this.operatorExpecting = '';\n this.escaped = false;\n\n return;\n } else if (!this.operatorExpecting && chr in this.operators) {\n this.node = {\n type: 'operator',\n value: chr\n };\n this.list.push(this.node);\n this.node = null;\n this.operatorExpecting = this.operators[chr];\n this.escaped = false;\n return;\n } else if (['\"', \"'\"].includes(this.operatorExpecting) && chr === '\\\\') {\n this.escaped = true;\n return;\n }\n\n if (!this.node) {\n this.node = {\n type: 'text',\n value: ''\n };\n this.list.push(this.node);\n }\n\n if (chr === '\\n') {\n // Convert newlines to spaces. Carriage return is ignored as \\r and \\n usually\n // go together anyway and there already is a WS for \\n. Lone \\r means something is fishy.\n chr = ' ';\n }\n\n if (chr.charCodeAt(0) >= 0x21 || [' ', '\\t'].includes(chr)) {\n // skip command bytes\n this.node.value += chr;\n }\n\n this.escaped = false;\n }\n}\n\n/**\n * Maximum recursion depth for parsing nested groups.\n * RFC 5322 doesn't allow nested groups, so this is a safeguard against\n * malicious input that could cause stack overflow.\n */\nconst MAX_NESTED_GROUP_DEPTH = 50;\n\n/**\n * Parses structured e-mail addresses from an address field\n *\n * Example:\n *\n * 'Name '\n *\n * will be converted to\n *\n * [{name: 'Name', address: 'address@domain'}]\n *\n * @param {String} str Address field\n * @param {Object} options Optional options object\n * @param {Number} options._depth Internal recursion depth counter (do not set manually)\n * @return {Array} An array of address objects\n */\nfunction addressparser(str, options) {\n options = options || {};\n const depth = options._depth || 0;\n\n // Prevent stack overflow from deeply nested groups (DoS protection)\n if (depth > MAX_NESTED_GROUP_DEPTH) {\n return [];\n }\n\n const tokenizer = new Tokenizer(str);\n const tokens = tokenizer.tokenize();\n\n const addresses = [];\n let address = [];\n let parsedAddresses = [];\n\n tokens.forEach(token => {\n if (token.type === 'operator' && (token.value === ',' || token.value === ';')) {\n if (address.length) {\n addresses.push(address);\n }\n address = [];\n } else {\n address.push(token);\n }\n });\n\n if (address.length) {\n addresses.push(address);\n }\n\n addresses.forEach(addr => {\n const handled = _handleAddress(addr, depth);\n if (handled.length) {\n parsedAddresses = parsedAddresses.concat(handled);\n }\n });\n\n // Merge fragments produced when unquoted display names contain commas.\n // \"Joe Foo, PhD \" is split on the comma into\n // [{name:\"Joe Foo\", address:\"\"}, {name:\"PhD\", address:\"joe@example.com\"}].\n // Recombine: a name-only entry followed by an entry with both name and address.\n for (let i = parsedAddresses.length - 2; i >= 0; i--) {\n const current = parsedAddresses[i];\n const next = parsedAddresses[i + 1];\n if (current.address === '' && current.name && !current.group && next.address && next.name) {\n next.name = current.name + ', ' + next.name;\n parsedAddresses.splice(i, 1);\n }\n }\n\n if (options.flatten) {\n const flatAddresses = [];\n const walkAddressList = list => {\n list.forEach(entry => {\n if (entry.group) {\n return walkAddressList(entry.group);\n }\n flatAddresses.push(entry);\n });\n };\n walkAddressList(parsedAddresses);\n return flatAddresses;\n }\n\n return parsedAddresses;\n}\n\nmodule.exports = addressparser;\n","'use strict';\n\nconst { Transform } = require('stream');\n\nclass LastNewline extends Transform {\n constructor() {\n super();\n this.lastByte = false;\n }\n\n _transform(chunk, encoding, done) {\n if (chunk.length) {\n this.lastByte = chunk[chunk.length - 1];\n }\n\n this.push(chunk);\n done();\n }\n\n _flush(done) {\n if (this.lastByte === 0x0a) {\n return done();\n }\n if (this.lastByte === 0x0d) {\n this.push(Buffer.from('\\n'));\n return done();\n }\n this.push(Buffer.from('\\r\\n'));\n return done();\n }\n}\n\nmodule.exports = LastNewline;\n","'use strict';\n\nconst { Transform } = require('stream');\n\n/**\n * Ensures that only sequences are used for linebreaks\n *\n * @param {Object} options Stream options\n */\nclass LeWindows extends Transform {\n constructor(options) {\n super(options);\n this.lastByte = false;\n }\n\n /**\n * Escapes dots\n */\n _transform(chunk, encoding, done) {\n let buf;\n let lastPos = 0;\n\n for (let i = 0, len = chunk.length; i < len; i++) {\n if (chunk[i] === 0x0a) {\n // \\n\n if ((i && chunk[i - 1] !== 0x0d) || (!i && this.lastByte !== 0x0d)) {\n if (i > lastPos) {\n buf = chunk.slice(lastPos, i);\n this.push(buf);\n }\n this.push(Buffer.from('\\r\\n'));\n lastPos = i + 1;\n }\n }\n }\n\n if (lastPos && lastPos < chunk.length) {\n buf = chunk.slice(lastPos);\n this.push(buf);\n } else if (!lastPos) {\n this.push(chunk);\n }\n\n this.lastByte = chunk[chunk.length - 1];\n done();\n }\n}\n\nmodule.exports = LeWindows;\n","'use strict';\n\nconst { Transform } = require('stream');\n\n/**\n * Ensures that only is used for linebreaks\n *\n * @param {Object} options Stream options\n */\nclass LeUnix extends Transform {\n constructor(options) {\n super(options);\n }\n\n /**\n * Escapes dots\n */\n _transform(chunk, encoding, done) {\n let buf;\n let lastPos = 0;\n\n for (let i = 0, len = chunk.length; i < len; i++) {\n if (chunk[i] === 0x0d) {\n // \\r\n buf = chunk.slice(lastPos, i);\n lastPos = i + 1;\n this.push(buf);\n }\n }\n if (lastPos && lastPos < chunk.length) {\n buf = chunk.slice(lastPos);\n this.push(buf);\n } else if (!lastPos) {\n this.push(chunk);\n }\n done();\n }\n}\n\nmodule.exports = LeUnix;\n","/* eslint no-undefined: 0, prefer-spread: 0, no-control-regex: 0 */\n\n'use strict';\n\nconst crypto = require('crypto');\nconst fs = require('fs');\nconst punycode = require('../punycode');\nconst { PassThrough } = require('stream');\nconst shared = require('../shared');\n\nconst mimeFuncs = require('../mime-funcs');\nconst qp = require('../qp');\nconst base64 = require('../base64');\nconst addressparser = require('../addressparser');\nconst nmfetch = require('../fetch');\nconst errors = require('../errors');\nconst LastNewline = require('./last-newline');\n\nconst LeWindows = require('./le-windows');\nconst LeUnix = require('./le-unix');\n\nconst FORMATTED_HEADERS = ['From', 'Sender', 'To', 'Cc', 'Bcc', 'Reply-To', 'Date', 'References'];\n\n/**\n * Creates a new mime tree node. Assumes 'multipart/*' as the content type\n * if it is a branch, anything else counts as leaf. If rootNode is missing from\n * the options, assumes this is the root.\n *\n * @param {String} contentType Define the content type for the node. Can be left blank for attachments (derived from filename)\n * @param {Object} [options] optional options\n * @param {Object} [options.rootNode] root node for this tree\n * @param {Object} [options.parentNode] immediate parent for this node\n * @param {Object} [options.filename] filename for an attachment node\n * @param {String} [options.baseBoundary] shared part of the unique multipart boundary\n * @param {Boolean} [options.keepBcc] If true, do not exclude Bcc from the generated headers\n * @param {Function} [options.normalizeHeaderKey] method to normalize header keys for custom caseing\n * @param {String} [options.textEncoding] either 'Q' (the default) or 'B'\n */\nclass MimeNode {\n constructor(contentType, options) {\n this.nodeCounter = 0;\n\n options = options || {};\n\n /**\n * shared part of the unique multipart boundary\n */\n this.baseBoundary = options.baseBoundary || crypto.randomBytes(8).toString('hex');\n this.boundaryPrefix = options.boundaryPrefix || '--_NmP';\n\n this.disableFileAccess = !!options.disableFileAccess;\n this.disableUrlAccess = !!options.disableUrlAccess;\n\n this.normalizeHeaderKey = options.normalizeHeaderKey;\n\n /**\n * If date headers is missing and current node is the root, this value is used instead\n */\n this.date = options.parentNode ? null : new Date();\n\n /**\n * Root node for current mime tree\n */\n this.rootNode = options.rootNode || this;\n\n /**\n * If true include Bcc in generated headers (if available)\n */\n this.keepBcc = !!options.keepBcc;\n\n /**\n * If filename is specified but contentType is not (probably an attachment)\n * detect the content type from filename extension\n */\n if (options.filename) {\n /**\n * Filename for this node. Useful with attachments\n */\n this.filename = options.filename;\n if (!contentType) {\n contentType = mimeFuncs.detectMimeType(this.filename.split('.').pop());\n }\n }\n\n /**\n * Indicates which encoding should be used for header strings: \"Q\" or \"B\"\n */\n this.textEncoding = (options.textEncoding || '').toString().trim().charAt(0).toUpperCase();\n\n /**\n * Immediate parent for this node (or undefined if not set)\n */\n this.parentNode = options.parentNode;\n\n /**\n * Hostname for default message-id values\n */\n this.hostname = options.hostname;\n\n /**\n * If set to 'win' then uses \\r\\n, if 'linux' then \\n. If not set (or `raw` is used) then newlines are kept as is.\n */\n this.newline = options.newline;\n\n /**\n * An array for possible child nodes\n */\n this.childNodes = [];\n\n /**\n * Used for generating unique boundaries (prepended to the shared base)\n */\n this._nodeId = ++this.rootNode.nodeCounter;\n\n /**\n * A list of header values for this node in the form of [{key:'', value:''}]\n */\n this._headers = [];\n\n /**\n * True if the content only uses ASCII printable characters\n * @type {Boolean}\n */\n this._isPlainText = false;\n\n /**\n * True if the content is plain text but has longer lines than allowed\n * @type {Boolean}\n */\n this._hasLongLines = false;\n\n /**\n * If set, use instead this value for envelopes instead of generating one\n * @type {Boolean}\n */\n this._envelope = false;\n\n /**\n * If set then use this value as the stream content instead of building it\n * @type {String|Buffer|Stream}\n */\n this._raw = false;\n\n /**\n * Additional transform streams that the message will be piped before\n * exposing by createReadStream\n * @type {Array}\n */\n this._transforms = [];\n\n /**\n * Additional process functions that the message will be piped through before\n * exposing by createReadStream. These functions are run after transforms\n * @type {Array}\n */\n this._processFuncs = [];\n\n /**\n * If content type is set (or derived from the filename) add it to headers\n */\n if (contentType) {\n this.setHeader('Content-Type', contentType);\n }\n }\n\n /////// PUBLIC METHODS\n\n /**\n * Creates and appends a child node.Arguments provided are passed to MimeNode constructor\n *\n * @param {String} [contentType] Optional content type\n * @param {Object} [options] Optional options object\n * @return {Object} Created node object\n */\n createChild(contentType, options) {\n if (!options && typeof contentType === 'object') {\n options = contentType;\n contentType = undefined;\n }\n const node = new MimeNode(contentType, options);\n this.appendChild(node);\n return node;\n }\n\n /**\n * Appends an existing node to the mime tree. Removes the node from an existing\n * tree if needed\n *\n * @param {Object} childNode node to be appended\n * @return {Object} Appended node object\n */\n appendChild(childNode) {\n if (childNode.rootNode !== this.rootNode) {\n childNode.rootNode = this.rootNode;\n childNode._nodeId = ++this.rootNode.nodeCounter;\n }\n\n childNode.parentNode = this;\n\n this.childNodes.push(childNode);\n return childNode;\n }\n\n /**\n * Replaces current node with another node\n *\n * @param {Object} node Replacement node\n * @return {Object} Replacement node\n */\n replace(node) {\n if (node === this) {\n return this;\n }\n\n this.parentNode.childNodes.forEach((childNode, i) => {\n if (childNode === this) {\n node.rootNode = this.rootNode;\n node.parentNode = this.parentNode;\n node._nodeId = this._nodeId;\n\n this.rootNode = this;\n this.parentNode = undefined;\n\n node.parentNode.childNodes[i] = node;\n }\n });\n\n return node;\n }\n\n /**\n * Removes current node from the mime tree\n *\n * @return {Object} removed node\n */\n remove() {\n if (!this.parentNode) {\n return this;\n }\n\n for (let i = this.parentNode.childNodes.length - 1; i >= 0; i--) {\n if (this.parentNode.childNodes[i] === this) {\n this.parentNode.childNodes.splice(i, 1);\n this.parentNode = undefined;\n this.rootNode = this;\n return this;\n }\n }\n }\n\n /**\n * Sets a header value. If the value for selected key exists, it is overwritten.\n * You can set multiple values as well by using [{key:'', value:''}] or\n * {key: 'value'} as the first argument.\n *\n * @param {String|Array|Object} key Header key or a list of key value pairs\n * @param {String} value Header value\n * @return {Object} current node\n */\n setHeader(key, value) {\n let added = false;\n\n // Allow setting multiple headers at once\n if (!value && key && typeof key === 'object') {\n // allow {key:'content-type', value: 'text/plain'}\n if (key.key && 'value' in key) {\n this.setHeader(key.key, key.value);\n } else if (Array.isArray(key)) {\n // allow [{key:'content-type', value: 'text/plain'}]\n key.forEach(i => {\n this.setHeader(i.key, i.value);\n });\n } else {\n // allow {'content-type': 'text/plain'}\n Object.keys(key).forEach(i => {\n this.setHeader(i, key[i]);\n });\n }\n return this;\n }\n\n key = this._normalizeHeaderKey(key);\n\n const headerValue = {\n key,\n value\n };\n\n // Check if the value exists and overwrite\n for (let i = 0, len = this._headers.length; i < len; i++) {\n if (this._headers[i].key === key) {\n if (!added) {\n // replace the first match\n this._headers[i] = headerValue;\n added = true;\n } else {\n // remove following matches\n this._headers.splice(i, 1);\n i--;\n len--;\n }\n }\n }\n\n // match not found, append the value\n if (!added) {\n this._headers.push(headerValue);\n }\n\n return this;\n }\n\n /**\n * Adds a header value. If the value for selected key exists, the value is appended\n * as a new field and old one is not touched.\n * You can set multiple values as well by using [{key:'', value:''}] or\n * {key: 'value'} as the first argument.\n *\n * @param {String|Array|Object} key Header key or a list of key value pairs\n * @param {String} value Header value\n * @return {Object} current node\n */\n addHeader(key, value) {\n // Allow setting multiple headers at once\n if (!value && key && typeof key === 'object') {\n // allow {key:'content-type', value: 'text/plain'}\n if (key.key && key.value) {\n this.addHeader(key.key, key.value);\n } else if (Array.isArray(key)) {\n // allow [{key:'content-type', value: 'text/plain'}]\n key.forEach(i => {\n this.addHeader(i.key, i.value);\n });\n } else {\n // allow {'content-type': 'text/plain'}\n Object.keys(key).forEach(i => {\n this.addHeader(i, key[i]);\n });\n }\n return this;\n } else if (Array.isArray(value)) {\n value.forEach(val => {\n this.addHeader(key, val);\n });\n return this;\n }\n\n this._headers.push({\n key: this._normalizeHeaderKey(key),\n value\n });\n\n return this;\n }\n\n /**\n * Retrieves the first mathcing value of a selected key\n *\n * @param {String} key Key to search for\n * @retun {String} Value for the key\n */\n getHeader(key) {\n key = this._normalizeHeaderKey(key);\n for (let i = 0, len = this._headers.length; i < len; i++) {\n if (this._headers[i].key === key) {\n return this._headers[i].value;\n }\n }\n }\n\n /**\n * Sets body content for current node. If the value is a string, charset is added automatically\n * to Content-Type (if it is text/*). If the value is a Buffer, you need to specify\n * the charset yourself\n *\n * @param (String|Buffer) content Body content\n * @return {Object} current node\n */\n setContent(content) {\n this.content = content;\n if (typeof this.content.pipe === 'function') {\n // pre-stream handler. might be triggered if a stream is set as content\n // and 'error' fires before anything is done with this stream\n this._contentErrorHandler = err => {\n this.content.removeListener('error', this._contentErrorHandler);\n this.content = err;\n };\n this.content.once('error', this._contentErrorHandler);\n } else if (typeof this.content === 'string') {\n this._isPlainText = mimeFuncs.isPlainText(this.content);\n if (this._isPlainText && mimeFuncs.hasLongerLines(this.content, 76)) {\n // If there are lines longer than 76 symbols/bytes do not use 7bit\n this._hasLongLines = true;\n }\n }\n return this;\n }\n\n build(callback) {\n let promise;\n\n if (!callback) {\n promise = new Promise((resolve, reject) => {\n callback = shared.callbackPromise(resolve, reject);\n });\n }\n\n const stream = this.createReadStream();\n const buf = [];\n let buflen = 0;\n let returned = false;\n\n stream.on('readable', () => {\n let chunk;\n\n while ((chunk = stream.read()) !== null) {\n buf.push(chunk);\n buflen += chunk.length;\n }\n });\n\n stream.once('error', err => {\n if (returned) {\n return;\n }\n returned = true;\n\n return callback(err);\n });\n\n stream.once('end', chunk => {\n if (returned) {\n return;\n }\n returned = true;\n\n if (chunk && chunk.length) {\n buf.push(chunk);\n buflen += chunk.length;\n }\n return callback(null, Buffer.concat(buf, buflen));\n });\n\n return promise;\n }\n\n getTransferEncoding() {\n let transferEncoding = false;\n const contentType = (this.getHeader('Content-Type') || '').toString().toLowerCase().trim();\n\n if (this.content) {\n transferEncoding = (this.getHeader('Content-Transfer-Encoding') || '').toString().toLowerCase().trim();\n if (!transferEncoding || !['base64', 'quoted-printable'].includes(transferEncoding)) {\n if (/^text\\//i.test(contentType)) {\n // If there are no special symbols, no need to modify the text\n if (this._isPlainText && !this._hasLongLines) {\n transferEncoding = '7bit';\n } else if (typeof this.content === 'string' || this.content instanceof Buffer) {\n // detect preferred encoding for string value\n transferEncoding = this._getTextEncoding(this.content) === 'Q' ? 'quoted-printable' : 'base64';\n } else {\n // we can not check content for a stream, so either use preferred encoding or fallback to QP\n transferEncoding = this.textEncoding === 'B' ? 'base64' : 'quoted-printable';\n }\n } else if (!/^(multipart|message)\\//i.test(contentType)) {\n transferEncoding = transferEncoding || 'base64';\n }\n }\n }\n return transferEncoding;\n }\n\n /**\n * Builds the header block for the mime node. Append \\r\\n\\r\\n before writing the content\n *\n * @returns {String} Headers\n */\n buildHeaders() {\n const transferEncoding = this.getTransferEncoding();\n const headers = [];\n\n if (transferEncoding) {\n this.setHeader('Content-Transfer-Encoding', transferEncoding);\n }\n\n if (this.filename && !this.getHeader('Content-Disposition')) {\n this.setHeader('Content-Disposition', 'attachment');\n }\n\n // Ensure mandatory header fields\n if (this.rootNode === this) {\n if (!this.getHeader('Date')) {\n this.setHeader('Date', this.date.toUTCString().replace(/GMT/, '+0000'));\n }\n\n // ensure that Message-Id is present\n this.messageId();\n\n if (!this.getHeader('MIME-Version')) {\n this.setHeader('MIME-Version', '1.0');\n }\n\n // Ensure that Content-Type is the last header for the root node\n for (let i = this._headers.length - 2; i >= 0; i--) {\n const header = this._headers[i];\n if (header.key === 'Content-Type') {\n this._headers.splice(i, 1);\n this._headers.push(header);\n }\n }\n }\n\n this._headers.forEach(header => {\n let key = header.key;\n let value = header.value;\n let structured;\n let param;\n const options = {};\n const formattedHeaders = FORMATTED_HEADERS;\n\n if (value && typeof value === 'object' && !formattedHeaders.includes(key)) {\n Object.keys(value).forEach(key => {\n if (key !== 'value') {\n options[key] = value[key];\n }\n });\n value = (value.value || '').toString();\n if (!value.trim()) {\n return;\n }\n }\n\n if (options.prepared) {\n // header value is\n if (options.foldLines) {\n headers.push(mimeFuncs.foldLines(key + ': ' + value));\n } else {\n headers.push(key + ': ' + value);\n }\n return;\n }\n\n switch (header.key) {\n case 'Content-Disposition':\n structured = mimeFuncs.parseHeaderValue(value);\n if (this.filename) {\n structured.params.filename = this.filename;\n }\n value = mimeFuncs.buildHeaderValue(structured);\n break;\n\n case 'Content-Type':\n structured = mimeFuncs.parseHeaderValue(value);\n\n this._handleContentType(structured);\n\n if (\n structured.value.match(/^text\\/plain\\b/) &&\n typeof this.content === 'string' &&\n /[\\u0080-\\uFFFF]/.test(this.content)\n ) {\n structured.params.charset = 'utf-8';\n }\n\n value = mimeFuncs.buildHeaderValue(structured);\n\n if (this.filename) {\n // add support for non-compliant clients like QQ webmail\n // we can't build the value with buildHeaderValue as the value is non standard and\n // would be converted to parameter continuation encoding that we do not want\n param = this._encodeWords(this.filename);\n\n if (param !== this.filename || /[\\s'\"\\\\;:/=(),<>@[\\]?]|^-/.test(param)) {\n // include value in quotes if needed\n param = '\"' + param + '\"';\n }\n value += '; name=' + param;\n }\n break;\n\n case 'Bcc':\n if (!this.keepBcc) {\n // skip BCC values\n return;\n }\n break;\n }\n\n value = this._encodeHeaderValue(key, value);\n\n // skip empty lines\n if (!(value || '').toString().trim()) {\n return;\n }\n\n if (typeof this.normalizeHeaderKey === 'function') {\n const normalized = this.normalizeHeaderKey(key, value);\n if (normalized && typeof normalized === 'string' && normalized.length) {\n key = normalized;\n }\n }\n\n headers.push(mimeFuncs.foldLines(key + ': ' + value, 76));\n });\n\n return headers.join('\\r\\n');\n }\n\n /**\n * Streams the rfc2822 message from the current node. If this is a root node,\n * mandatory header fields are set if missing (Date, Message-Id, MIME-Version)\n *\n * @return {String} Compiled message\n */\n createReadStream(options) {\n options = options || {};\n\n const stream = new PassThrough(options);\n let outputStream = stream;\n let transform;\n\n this.stream(stream, options, err => {\n if (err) {\n outputStream.emit('error', err);\n return;\n }\n stream.end();\n });\n\n for (let i = 0, len = this._transforms.length; i < len; i++) {\n transform = typeof this._transforms[i] === 'function' ? this._transforms[i]() : this._transforms[i];\n outputStream.once('error', err => {\n transform.emit('error', err);\n });\n outputStream = outputStream.pipe(transform);\n }\n\n // ensure terminating newline after possible user transforms\n transform = new LastNewline();\n outputStream.once('error', err => {\n transform.emit('error', err);\n });\n outputStream = outputStream.pipe(transform);\n\n // dkim and stuff\n for (let i = 0, len = this._processFuncs.length; i < len; i++) {\n transform = this._processFuncs[i];\n outputStream = transform(outputStream);\n }\n\n if (this.newline) {\n const winbreak = ['win', 'windows', 'dos', '\\r\\n'].includes(this.newline.toString().toLowerCase());\n const newlineTransform = winbreak ? new LeWindows() : new LeUnix();\n\n const stream = outputStream.pipe(newlineTransform);\n outputStream.on('error', err => stream.emit('error', err));\n return stream;\n }\n\n return outputStream;\n }\n\n /**\n * Appends a transform stream object to the transforms list. Final output\n * is passed through this stream before exposing\n *\n * @param {Object} transform Read-Write stream\n */\n transform(transform) {\n this._transforms.push(transform);\n }\n\n /**\n * Appends a post process function. The functon is run after transforms and\n * uses the following syntax\n *\n * processFunc(input) -> outputStream\n *\n * @param {Object} processFunc Read-Write stream\n */\n processFunc(processFunc) {\n this._processFuncs.push(processFunc);\n }\n\n stream(outputStream, options, done) {\n const transferEncoding = this.getTransferEncoding();\n let contentStream;\n let localStream;\n\n // protect actual callback against multiple triggering\n let returned = false;\n const callback = err => {\n if (returned) {\n return;\n }\n returned = true;\n done(err);\n };\n\n // for multipart nodes, push child nodes\n // for content nodes end the stream\n const finalize = () => {\n let childId = 0;\n const processChildNode = () => {\n if (childId >= this.childNodes.length) {\n outputStream.write('\\r\\n--' + this.boundary + '--\\r\\n');\n return callback();\n }\n const child = this.childNodes[childId++];\n outputStream.write((childId > 1 ? '\\r\\n' : '') + '--' + this.boundary + '\\r\\n');\n child.stream(outputStream, options, err => {\n if (err) {\n return callback(err);\n }\n setImmediate(processChildNode);\n });\n };\n\n if (this.multipart) {\n setImmediate(processChildNode);\n } else {\n return callback();\n }\n };\n\n // pushes node content\n const sendContent = () => {\n if (this.content) {\n if (Object.prototype.toString.call(this.content) === '[object Error]') {\n // content is already errored\n return callback(this.content);\n }\n\n if (typeof this.content.pipe === 'function') {\n this.content.removeListener('error', this._contentErrorHandler);\n this._contentErrorHandler = err => callback(err);\n this.content.once('error', this._contentErrorHandler);\n }\n\n const createStream = () => {\n if (['quoted-printable', 'base64'].includes(transferEncoding)) {\n contentStream = new (transferEncoding === 'base64' ? base64 : qp).Encoder(options);\n\n contentStream.pipe(outputStream, {\n end: false\n });\n contentStream.once('end', finalize);\n contentStream.once('error', err => callback(err));\n\n localStream = this._getStream(this.content);\n localStream.pipe(contentStream);\n } else {\n // anything that is not QP or Base54 passes as-is\n localStream = this._getStream(this.content);\n localStream.pipe(outputStream, {\n end: false\n });\n localStream.once('end', finalize);\n }\n\n localStream.once('error', err => callback(err));\n };\n\n if (this.content._resolve) {\n const chunks = [];\n let chunklen = 0;\n let returned = false;\n const sourceStream = this._getStream(this.content);\n sourceStream.on('error', err => {\n if (returned) {\n return;\n }\n returned = true;\n callback(err);\n });\n sourceStream.on('readable', () => {\n let chunk;\n while ((chunk = sourceStream.read()) !== null) {\n chunks.push(chunk);\n chunklen += chunk.length;\n }\n });\n sourceStream.on('end', () => {\n if (returned) {\n return;\n }\n returned = true;\n this.content._resolve = false;\n this.content._resolvedValue = Buffer.concat(chunks, chunklen);\n setImmediate(createStream);\n });\n } else {\n setImmediate(createStream);\n }\n return;\n }\n return setImmediate(finalize);\n };\n\n if (this._raw) {\n setImmediate(() => {\n if (Object.prototype.toString.call(this._raw) === '[object Error]') {\n // content is already errored\n return callback(this._raw);\n }\n\n // remove default error handler (if set)\n if (typeof this._raw.pipe === 'function') {\n this._raw.removeListener('error', this._contentErrorHandler);\n }\n\n const raw = this._getStream(this._raw);\n raw.pipe(outputStream, {\n end: false\n });\n raw.on('error', err => outputStream.emit('error', err));\n raw.on('end', finalize);\n });\n } else {\n outputStream.write(this.buildHeaders() + '\\r\\n\\r\\n');\n setImmediate(sendContent);\n }\n }\n\n /**\n * Sets envelope to be used instead of the generated one\n *\n * @return {Object} SMTP envelope in the form of {from: 'from@example.com', to: ['to@example.com']}\n */\n setEnvelope(envelope) {\n let list;\n\n this._envelope = {\n from: false,\n to: []\n };\n\n if (envelope.from) {\n list = [];\n this._convertAddresses(this._parseAddresses(envelope.from), list);\n list = list.filter(address => address && address.address);\n if (list.length && list[0]) {\n this._envelope.from = list[0].address;\n }\n }\n ['to', 'cc', 'bcc'].forEach(key => {\n if (envelope[key]) {\n this._convertAddresses(this._parseAddresses(envelope[key]), this._envelope.to);\n }\n });\n\n this._envelope.to = this._envelope.to.map(to => to.address).filter(address => address);\n\n const standardFields = ['to', 'cc', 'bcc', 'from'];\n Object.keys(envelope).forEach(key => {\n if (!standardFields.includes(key)) {\n this._envelope[key] = envelope[key];\n }\n });\n\n return this;\n }\n\n /**\n * Generates and returns an object with parsed address fields\n *\n * @return {Object} Address object\n */\n getAddresses() {\n const addresses = {};\n\n this._headers.forEach(header => {\n const key = header.key.toLowerCase();\n if (['from', 'sender', 'reply-to', 'to', 'cc', 'bcc'].includes(key)) {\n if (!Array.isArray(addresses[key])) {\n addresses[key] = [];\n }\n\n this._convertAddresses(this._parseAddresses(header.value), addresses[key]);\n }\n });\n\n return addresses;\n }\n\n /**\n * Generates and returns SMTP envelope with the sender address and a list of recipients addresses\n *\n * @return {Object} SMTP envelope in the form of {from: 'from@example.com', to: ['to@example.com']}\n */\n getEnvelope() {\n if (this._envelope) {\n return this._envelope;\n }\n\n const envelope = {\n from: false,\n to: []\n };\n this._headers.forEach(header => {\n const list = [];\n if (header.key === 'From' || (!envelope.from && ['Reply-To', 'Sender'].includes(header.key))) {\n this._convertAddresses(this._parseAddresses(header.value), list);\n if (list.length && list[0]) {\n envelope.from = list[0].address;\n }\n } else if (['To', 'Cc', 'Bcc'].includes(header.key)) {\n this._convertAddresses(this._parseAddresses(header.value), envelope.to);\n }\n });\n\n envelope.to = envelope.to.map(to => to.address);\n\n return envelope;\n }\n\n /**\n * Returns Message-Id value. If it does not exist, then creates one\n *\n * @return {String} Message-Id value\n */\n messageId() {\n let messageId = this.getHeader('Message-ID');\n // You really should define your own Message-Id field!\n if (!messageId) {\n messageId = this._generateMessageId();\n this.setHeader('Message-ID', messageId);\n }\n return messageId;\n }\n\n /**\n * Sets pregenerated content that will be used as the output of this node\n *\n * @param {String|Buffer|Stream} Raw MIME contents\n */\n setRaw(raw) {\n this._raw = raw;\n\n if (this._raw && typeof this._raw.pipe === 'function') {\n // pre-stream handler. might be triggered if a stream is set as content\n // and 'error' fires before anything is done with this stream\n this._contentErrorHandler = err => {\n this._raw.removeListener('error', this._contentErrorHandler);\n this._raw = err;\n };\n this._raw.once('error', this._contentErrorHandler);\n }\n\n return this;\n }\n\n /////// PRIVATE METHODS\n\n /**\n * Detects and returns handle to a stream related with the content.\n *\n * @param {Mixed} content Node content\n * @returns {Object} Stream object\n */\n _getStream(content) {\n let contentStream;\n\n if (content._resolvedValue) {\n // pass string or buffer content as a stream\n contentStream = new PassThrough();\n\n setImmediate(() => {\n try {\n contentStream.end(content._resolvedValue);\n } catch (_err) {\n contentStream.emit('error', _err);\n }\n });\n\n return contentStream;\n }\n\n if (typeof content.pipe === 'function') {\n // assume as stream\n return content;\n }\n\n if (content && typeof content.path === 'string' && !content.href) {\n if (this.disableFileAccess) {\n contentStream = new PassThrough();\n setImmediate(() => {\n const err = new Error('File access rejected for ' + content.path);\n err.code = errors.EFILEACCESS;\n contentStream.emit('error', err);\n });\n return contentStream;\n }\n // read file\n return fs.createReadStream(content.path);\n }\n\n if (content && typeof content.href === 'string') {\n if (this.disableUrlAccess) {\n contentStream = new PassThrough();\n setImmediate(() => {\n const err = new Error('Url access rejected for ' + content.href);\n err.code = errors.EURLACCESS;\n contentStream.emit('error', err);\n });\n return contentStream;\n }\n // fetch URL\n return nmfetch(content.href, { headers: content.httpHeaders, tls: content.tls });\n }\n\n // pass string or buffer content as a stream\n contentStream = new PassThrough();\n\n setImmediate(() => {\n try {\n contentStream.end(content || '');\n } catch (_err) {\n contentStream.emit('error', _err);\n }\n });\n return contentStream;\n }\n\n /**\n * Parses addresses. Takes in a single address or an array or an\n * array of address arrays (eg. To: [[first group], [second group],...])\n *\n * @param {Mixed} addresses Addresses to be parsed\n * @return {Array} An array of address objects\n */\n _parseAddresses(addresses) {\n return [].concat.apply(\n [],\n [].concat(addresses).map(address => {\n if (address && address.address) {\n address.address = this._normalizeAddress(address.address);\n address.name = address.name || '';\n return [address];\n }\n return addressparser(address);\n })\n );\n }\n\n /**\n * Normalizes a header key, uses Camel-Case form, except for uppercase MIME-\n *\n * @param {String} key Key to be normalized\n * @return {String} key in Camel-Case form\n */\n _normalizeHeaderKey(key) {\n key = (key || '')\n .toString()\n // no newlines in keys\n .replace(/\\r?\\n|\\r/g, ' ')\n .trim()\n .toLowerCase()\n // use uppercase words, except MIME\n .replace(/^X-SMTPAPI$|^(MIME|DKIM|ARC|BIMI)\\b|^[a-z]|-(SPF|FBL|ID|MD5)$|-[a-z]/gi, c => c.toUpperCase())\n // special case\n .replace(/^Content-Features$/i, 'Content-features');\n\n return key;\n }\n\n /**\n * Checks if the content type is multipart and defines boundary if needed.\n * Doesn't return anything, modifies object argument instead.\n *\n * @param {Object} structured Parsed header value for 'Content-Type' key\n */\n _handleContentType(structured) {\n this.contentType = structured.value.trim().toLowerCase();\n\n this.multipart = /^multipart\\//i.test(this.contentType) ? this.contentType.substr(this.contentType.indexOf('/') + 1) : false;\n\n if (this.multipart) {\n this.boundary = structured.params.boundary = structured.params.boundary || this.boundary || this._generateBoundary();\n } else {\n this.boundary = false;\n }\n }\n\n /**\n * Generates a multipart boundary value\n *\n * @return {String} boundary value\n */\n _generateBoundary() {\n return this.rootNode.boundaryPrefix + '-' + this.rootNode.baseBoundary + '-Part_' + this._nodeId;\n }\n\n /**\n * Encodes a header value for use in the generated rfc2822 email.\n *\n * @param {String} key Header key\n * @param {String} value Header value\n */\n _encodeHeaderValue(key, value) {\n key = this._normalizeHeaderKey(key);\n\n switch (key) {\n // Structured headers\n case 'From':\n case 'Sender':\n case 'To':\n case 'Cc':\n case 'Bcc':\n case 'Reply-To':\n return this._convertAddresses(this._parseAddresses(value));\n\n // values enclosed in <>\n case 'Message-ID':\n case 'In-Reply-To':\n case 'Content-Id':\n value = (value || '').toString().replace(/\\r?\\n|\\r/g, ' ');\n\n if (value.charAt(0) !== '<') {\n value = '<' + value;\n }\n\n if (value.charAt(value.length - 1) !== '>') {\n value = value + '>';\n }\n return value;\n\n // space separated list of values enclosed in <>\n case 'References':\n value = [].concat\n .apply(\n [],\n [].concat(value || '').map(elm => {\n elm = (elm || '')\n .toString()\n .replace(/\\r?\\n|\\r/g, ' ')\n .trim();\n return elm.replace(/<[^>]*>/g, str => str.replace(/\\s/g, '')).split(/\\s+/);\n })\n )\n .map(elm => {\n if (elm.charAt(0) !== '<') {\n elm = '<' + elm;\n }\n if (elm.charAt(elm.length - 1) !== '>') {\n elm = elm + '>';\n }\n return elm;\n });\n\n return value.join(' ').trim();\n\n case 'Date':\n if (Object.prototype.toString.call(value) === '[object Date]') {\n return value.toUTCString().replace(/GMT/, '+0000');\n }\n\n value = (value || '').toString().replace(/\\r?\\n|\\r/g, ' ');\n return this._encodeWords(value);\n\n case 'Content-Type':\n case 'Content-Disposition':\n // if it includes a filename then it is already encoded\n return (value || '').toString().replace(/\\r?\\n|\\r/g, ' ');\n\n default:\n value = (value || '').toString().replace(/\\r?\\n|\\r/g, ' ');\n // encodeWords only encodes if needed, otherwise the original string is returned\n return this._encodeWords(value);\n }\n }\n\n /**\n * Rebuilds address object using punycode and other adjustments\n *\n * @param {Array} addresses An array of address objects\n * @param {Array} [uniqueList] An array to be populated with addresses\n * @return {String} address string\n */\n _convertAddresses(addresses, uniqueList) {\n const values = [];\n\n uniqueList = uniqueList || [];\n\n [].concat(addresses || []).forEach(address => {\n if (address.address) {\n address.address = this._normalizeAddress(address.address);\n\n if (!address.name) {\n values.push(address.address.indexOf(' ') >= 0 ? `<${address.address}>` : `${address.address}`);\n } else {\n values.push(`${this._encodeAddressName(address.name)} <${address.address}>`);\n }\n\n if (!uniqueList.some(a => a.address === address.address)) {\n uniqueList.push(address);\n }\n } else if (address.group) {\n const groupListAddresses = (address.group.length ? this._convertAddresses(address.group, uniqueList) : '').trim();\n values.push(`${this._encodeAddressName(address.name)}:${groupListAddresses};`);\n }\n });\n\n return values.join(', ');\n }\n\n /**\n * Normalizes an email address\n *\n * @param {Array} address An array of address objects\n * @return {String} address string\n */\n _normalizeAddress(address) {\n address = (address || '')\n .toString()\n .replace(/[\\x00-\\x1F<>]+/g, ' ') // remove unallowed characters\n .trim();\n\n const lastAt = address.lastIndexOf('@');\n if (lastAt < 0) {\n // Bare username\n return address;\n }\n\n let user = address.substr(0, lastAt);\n const domain = address.substr(lastAt + 1);\n\n // Usernames are not touched and are kept as is even if these include unicode.\n // Domains are punycoded when the local part is ASCII ('safe@jõgeva.ee' -> 'safe@xn--jgeva-dua.ee').\n // When the local part contains non-ASCII bytes the address already requires SMTPUTF8,\n // so the domain is kept (or decoded back) as UTF-8 for symmetry on both sides of '@'.\n\n let encodedDomain = domain;\n\n try {\n if (/[\\x80-\\uFFFF]/.test(user)) {\n encodedDomain = punycode.toUnicode(domain.toLowerCase());\n } else {\n encodedDomain = punycode.toASCII(domain.toLowerCase());\n }\n } catch (_err) {\n // keep domain as supplied\n }\n\n if (user.indexOf(' ') >= 0) {\n if (user.charAt(0) !== '\"') {\n user = '\"' + user;\n }\n if (user.substr(-1) !== '\"') {\n user = user + '\"';\n }\n }\n\n return `${user}@${encodedDomain}`;\n }\n\n /**\n * If needed, mime encodes the name part\n *\n * @param {String} name Name part of an address\n * @returns {String} Mime word encoded string if needed\n */\n _encodeAddressName(name) {\n if (!/^[\\w ]*$/.test(name)) {\n if (/^[\\x20-\\x7e]*$/.test(name)) {\n return '\"' + name.replace(/([\\\\\"])/g, '\\\\$1') + '\"';\n } else {\n return mimeFuncs.encodeWord(name, this._getTextEncoding(name), 52);\n }\n }\n return name;\n }\n\n /**\n * If needed, mime encodes the name part\n *\n * @param {String} name Name part of an address\n * @returns {String} Mime word encoded string if needed\n */\n _encodeWords(value) {\n // set encodeAll parameter to true even though it is against the recommendation of RFC2047,\n // by default only words that include non-ascii should be converted into encoded words\n // but some clients (eg. Zimbra) do not handle it properly and remove surrounding whitespace\n return mimeFuncs.encodeWords(value, this._getTextEncoding(value), 52, true);\n }\n\n /**\n * Detects best mime encoding for a text value\n *\n * @param {String} value Value to check for\n * @return {String} either 'Q' or 'B'\n */\n _getTextEncoding(value) {\n value = (value || '').toString();\n\n if (this.textEncoding) {\n return this.textEncoding;\n }\n\n // count latin alphabet symbols and 8-bit range symbols + control symbols\n // if there are more latin characters, then use quoted-printable\n // encoding, otherwise use base64\n let nonLatinLen = 0;\n let latinLen = 0;\n for (let i = 0, len = value.length; i < len; i++) {\n const code = value.charCodeAt(i);\n if ((code >= 0x00 && code <= 0x08) || code === 0x0b || code === 0x0c || (code >= 0x0e && code <= 0x1f) || code >= 0x80) {\n nonLatinLen++;\n } else if ((code >= 0x41 && code <= 0x5a) || (code >= 0x61 && code <= 0x7a)) {\n latinLen++;\n }\n }\n // if there are more latin symbols than binary/unicode, then prefer Q, otherwise B\n return nonLatinLen < latinLen ? 'Q' : 'B';\n }\n\n /**\n * Generates a message id\n *\n * @return {String} Random Message-ID value\n */\n _generateMessageId() {\n return (\n '<' +\n [2, 2, 2, 6].reduce(\n // crux to generate UUID-like random strings\n (prev, len) => prev + '-' + crypto.randomBytes(len).toString('hex'),\n crypto.randomBytes(4).toString('hex')\n ) +\n '@' +\n // try to use the domain of the FROM address or fallback to server hostname\n (this.getEnvelope().from || this.hostname || 'localhost').split('@').pop() +\n '>'\n );\n }\n}\n\nmodule.exports = MimeNode;\n","/* eslint no-undefined: 0 */\n\n'use strict';\n\nconst MimeNode = require('../mime-node');\nconst mimeFuncs = require('../mime-funcs');\nconst { parseDataURI } = require('../shared');\n\n/**\n * Creates the object for composing a MimeNode instance out from the mail options\n *\n * @constructor\n * @param {Object} mail Mail options\n */\nclass MailComposer {\n constructor(mail) {\n this.mail = mail || {};\n this.message = false;\n }\n\n /**\n * Builds MimeNode instance\n */\n compile() {\n this._alternatives = this.getAlternatives();\n this._htmlNode = this._alternatives.filter(alternative => /^text\\/html\\b/i.test(alternative.contentType)).pop();\n this._attachments = this.getAttachments(!!this._htmlNode);\n\n this._useRelated = !!(this._htmlNode && this._attachments.related.length);\n this._useAlternative = this._alternatives.length > 1;\n this._useMixed = this._attachments.attached.length > 1 || (this._alternatives.length && this._attachments.attached.length === 1);\n\n // Compose MIME tree\n if (this.mail.raw) {\n this.message = new MimeNode('message/rfc822', { newline: this.mail.newline }).setRaw(this.mail.raw);\n } else if (this._useMixed) {\n this.message = this._createMixed();\n } else if (this._useAlternative) {\n this.message = this._createAlternative();\n } else if (this._useRelated) {\n this.message = this._createRelated();\n } else {\n this.message = this._createContentNode(\n false,\n []\n .concat(this._alternatives || [])\n .concat(this._attachments.attached || [])\n .shift() || {\n contentType: 'text/plain',\n content: ''\n }\n );\n }\n\n // Add custom headers\n if (this.mail.headers) {\n this.message.addHeader(this.mail.headers);\n }\n\n // Add headers to the root node, always overrides custom headers\n ['from', 'sender', 'to', 'cc', 'bcc', 'reply-to', 'in-reply-to', 'references', 'subject', 'message-id', 'date'].forEach(header => {\n const key = header.replace(/-(\\w)/g, (o, c) => c.toUpperCase());\n if (this.mail[key]) {\n this.message.setHeader(header, this.mail[key]);\n }\n });\n\n // Sets custom envelope\n if (this.mail.envelope) {\n this.message.setEnvelope(this.mail.envelope);\n }\n\n // ensure Message-Id value\n this.message.messageId();\n\n return this.message;\n }\n\n /**\n * List all attachments. Resulting attachment objects can be used as input for MimeNode nodes\n *\n * @param {Boolean} findRelated If true separate related attachments from attached ones\n * @returns {Object} An object of arrays (`related` and `attached`)\n */\n getAttachments(findRelated) {\n let eventObject;\n const attachments = [].concat(this.mail.attachments || []).map((attachment, i) => {\n if (/^data:/i.test(attachment.path || attachment.href)) {\n attachment = this._processDataUrl(attachment);\n }\n\n const contentType =\n attachment.contentType || mimeFuncs.detectMimeType(attachment.filename || attachment.path || attachment.href || 'bin');\n\n const isImage = /^image\\//i.test(contentType);\n const isMessageNode = /^message\\//i.test(contentType);\n\n const contentDisposition =\n attachment.contentDisposition || (isMessageNode || (isImage && attachment.cid) ? 'inline' : 'attachment');\n\n let contentTransferEncoding;\n if ('contentTransferEncoding' in attachment) {\n // also contains `false`, to set\n contentTransferEncoding = attachment.contentTransferEncoding;\n } else if (isMessageNode) {\n // the content might include non-ASCII bytes but at this point we do not know it yet\n contentTransferEncoding = '8bit';\n } else {\n contentTransferEncoding = 'base64'; // the default\n }\n\n const data = {\n contentType,\n contentDisposition,\n contentTransferEncoding\n };\n\n if (attachment.filename) {\n data.filename = attachment.filename;\n } else if (!isMessageNode && attachment.filename !== false) {\n data.filename = (attachment.path || attachment.href || '').split('/').pop().split('?').shift() || 'attachment-' + (i + 1);\n if (data.filename.indexOf('.') < 0) {\n data.filename += '.' + mimeFuncs.detectExtension(data.contentType);\n }\n }\n\n if (/^https?:\\/\\//i.test(attachment.path)) {\n attachment.href = attachment.path;\n attachment.path = undefined;\n }\n\n if (attachment.cid) {\n data.cid = attachment.cid;\n }\n\n if (attachment.raw) {\n data.raw = attachment.raw;\n } else if (attachment.path) {\n data.content = {\n path: attachment.path\n };\n } else if (attachment.href) {\n data.content = {\n href: attachment.href,\n httpHeaders: attachment.httpHeaders,\n tls: attachment.tls\n };\n } else {\n data.content = attachment.content || '';\n }\n\n if (attachment.encoding) {\n data.encoding = attachment.encoding;\n }\n\n if (attachment.headers) {\n data.headers = attachment.headers;\n }\n\n return data;\n });\n\n if (this.mail.icalEvent) {\n eventObject = Object.assign({}, this._getIcalEvent());\n\n eventObject.contentType = 'application/ics';\n if (!eventObject.headers) {\n eventObject.headers = {};\n }\n eventObject.filename = eventObject.filename || 'invite.ics';\n eventObject.headers['Content-Disposition'] = 'attachment';\n eventObject.headers['Content-Transfer-Encoding'] = 'base64';\n }\n\n if (!findRelated) {\n return {\n attached: attachments.concat(eventObject || []),\n related: []\n };\n }\n\n return {\n attached: attachments.filter(attachment => !attachment.cid).concat(eventObject || []),\n related: attachments.filter(attachment => !!attachment.cid)\n };\n }\n\n /**\n * Returns the icalEvent value with `path`/`href`/data uri input normalized into\n * a `content` entry, the same way as for regular attachments. The same event is\n * included twice (as a text/calendar alternative and as an application/ics\n * attachment), so the shared content object is marked to be resolved just once\n * and the buffered result is reused by the second node.\n *\n * @returns {Object} Normalized icalEvent data\n */\n _getIcalEvent() {\n if (!this._icalEvent) {\n let icalEvent;\n if (\n typeof this.mail.icalEvent === 'object' &&\n (this.mail.icalEvent.content || this.mail.icalEvent.path || this.mail.icalEvent.href || this.mail.icalEvent.raw)\n ) {\n icalEvent = Object.assign({}, this.mail.icalEvent);\n } else {\n icalEvent = {\n content: this.mail.icalEvent\n };\n }\n\n if (/^data:/i.test(icalEvent.path || icalEvent.href)) {\n icalEvent = this._processDataUrl(icalEvent);\n }\n\n if (/^https?:\\/\\//i.test(icalEvent.path)) {\n icalEvent.href = icalEvent.path;\n icalEvent.path = undefined;\n }\n\n if (!icalEvent.raw) {\n // map file path and URL values into `content`, otherwise the content\n // nodes would render an empty body\n if (icalEvent.path) {\n icalEvent.content = {\n path: icalEvent.path\n };\n icalEvent.path = undefined;\n } else if (icalEvent.href) {\n icalEvent.content = {\n href: icalEvent.href,\n httpHeaders: icalEvent.httpHeaders\n };\n icalEvent.href = undefined;\n }\n }\n\n if (icalEvent.content && typeof icalEvent.content === 'object') {\n // we are going to have the same attachment twice, so mark this to be\n // resolved just once\n icalEvent.content._resolve = true;\n }\n\n this._icalEvent = icalEvent;\n }\n\n return this._icalEvent;\n }\n\n /**\n * List alternatives. Resulting objects can be used as input for MimeNode nodes\n *\n * @returns {Array} An array of alternative elements. Includes the `text` and `html` values as well\n */\n getAlternatives() {\n const alternatives = [];\n let text, html, watchHtml, amp, eventObject;\n\n if (this.mail.text) {\n if (\n typeof this.mail.text === 'object' &&\n (this.mail.text.content || this.mail.text.path || this.mail.text.href || this.mail.text.raw)\n ) {\n text = this.mail.text;\n } else {\n text = {\n content: this.mail.text\n };\n }\n text.contentType = 'text/plain; charset=utf-8';\n }\n\n if (this.mail.watchHtml) {\n if (\n typeof this.mail.watchHtml === 'object' &&\n (this.mail.watchHtml.content || this.mail.watchHtml.path || this.mail.watchHtml.href || this.mail.watchHtml.raw)\n ) {\n watchHtml = this.mail.watchHtml;\n } else {\n watchHtml = {\n content: this.mail.watchHtml\n };\n }\n watchHtml.contentType = 'text/watch-html; charset=utf-8';\n }\n\n if (this.mail.amp) {\n if (\n typeof this.mail.amp === 'object' &&\n (this.mail.amp.content || this.mail.amp.path || this.mail.amp.href || this.mail.amp.raw)\n ) {\n amp = this.mail.amp;\n } else {\n amp = {\n content: this.mail.amp\n };\n }\n amp.contentType = 'text/x-amp-html; charset=utf-8';\n }\n\n // NB! when including attachments with a calendar alternative you might end up in a blank screen on some clients\n if (this.mail.icalEvent) {\n eventObject = Object.assign({}, this._getIcalEvent());\n\n eventObject.filename = false;\n eventObject.contentType =\n 'text/calendar; charset=utf-8; method=' + (eventObject.method || 'PUBLISH').toString().trim().toUpperCase();\n if (!eventObject.headers) {\n eventObject.headers = {};\n }\n }\n\n if (this.mail.html) {\n if (\n typeof this.mail.html === 'object' &&\n (this.mail.html.content || this.mail.html.path || this.mail.html.href || this.mail.html.raw)\n ) {\n html = this.mail.html;\n } else {\n html = {\n content: this.mail.html\n };\n }\n html.contentType = 'text/html; charset=utf-8';\n }\n\n []\n .concat(text || [])\n .concat(watchHtml || [])\n .concat(amp || [])\n .concat(html || [])\n .concat(eventObject || [])\n .concat(this.mail.alternatives || [])\n .forEach(alternative => {\n if (/^data:/i.test(alternative.path || alternative.href)) {\n alternative = this._processDataUrl(alternative);\n }\n\n const data = {\n contentType:\n alternative.contentType ||\n mimeFuncs.detectMimeType(alternative.filename || alternative.path || alternative.href || 'txt'),\n contentTransferEncoding: alternative.contentTransferEncoding\n };\n\n if (alternative.filename) {\n data.filename = alternative.filename;\n }\n\n if (/^https?:\\/\\//i.test(alternative.path)) {\n alternative.href = alternative.path;\n alternative.path = undefined;\n }\n\n if (alternative.raw) {\n data.raw = alternative.raw;\n } else if (alternative.path) {\n data.content = {\n path: alternative.path\n };\n } else if (alternative.href) {\n data.content = {\n href: alternative.href\n };\n } else {\n data.content = alternative.content || '';\n }\n\n if (alternative.encoding) {\n data.encoding = alternative.encoding;\n }\n\n if (alternative.headers) {\n data.headers = alternative.headers;\n }\n\n alternatives.push(data);\n });\n\n return alternatives;\n }\n\n /**\n * Builds multipart/mixed node. It should always contain different type of elements on the same level\n * eg. text + attachments\n *\n * @param {Object} parentNode Parent for this note. If it does not exist, a root node is created\n * @returns {Object} MimeNode node element\n */\n _createMixed(parentNode) {\n const node = parentNode\n ? parentNode.createChild('multipart/mixed', {\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n })\n : new MimeNode('multipart/mixed', {\n baseBoundary: this.mail.baseBoundary,\n textEncoding: this.mail.textEncoding,\n boundaryPrefix: this.mail.boundaryPrefix,\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n });\n\n if (this._useAlternative) {\n this._createAlternative(node);\n } else if (this._useRelated) {\n this._createRelated(node);\n }\n\n []\n .concat((!this._useAlternative && this._alternatives) || [])\n .concat(this._attachments.attached || [])\n .forEach(element => {\n // if the element is a html node from related subpart then ignore it\n if (!this._useRelated || element !== this._htmlNode) {\n this._createContentNode(node, element);\n }\n });\n\n return node;\n }\n\n /**\n * Builds multipart/alternative node. It should always contain same type of elements on the same level\n * eg. text + html view of the same data\n *\n * @param {Object} parentNode Parent for this note. If it does not exist, a root node is created\n * @returns {Object} MimeNode node element\n */\n _createAlternative(parentNode) {\n const node = parentNode\n ? parentNode.createChild('multipart/alternative', {\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n })\n : new MimeNode('multipart/alternative', {\n baseBoundary: this.mail.baseBoundary,\n textEncoding: this.mail.textEncoding,\n boundaryPrefix: this.mail.boundaryPrefix,\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n });\n\n this._alternatives.forEach(alternative => {\n if (this._useRelated && this._htmlNode === alternative) {\n this._createRelated(node);\n } else {\n this._createContentNode(node, alternative);\n }\n });\n\n return node;\n }\n\n /**\n * Builds multipart/related node. It should always contain html node with related attachments\n *\n * @param {Object} parentNode Parent for this note. If it does not exist, a root node is created\n * @returns {Object} MimeNode node element\n */\n _createRelated(parentNode) {\n const node = parentNode\n ? parentNode.createChild('multipart/related; type=\"text/html\"', {\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n })\n : new MimeNode('multipart/related; type=\"text/html\"', {\n baseBoundary: this.mail.baseBoundary,\n textEncoding: this.mail.textEncoding,\n boundaryPrefix: this.mail.boundaryPrefix,\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n });\n\n this._createContentNode(node, this._htmlNode);\n\n this._attachments.related.forEach(alternative => this._createContentNode(node, alternative));\n\n return node;\n }\n\n /**\n * Creates a regular node with contents\n *\n * @param {Object} parentNode Parent for this note. If it does not exist, a root node is created\n * @param {Object} element Node data\n * @returns {Object} MimeNode node element\n */\n _createContentNode(parentNode, element) {\n element = element || {};\n element.content = element.content || '';\n\n const encoding = (element.encoding || 'utf8')\n .toString()\n .toLowerCase()\n .replace(/[-_\\s]/g, '');\n\n const node = parentNode\n ? parentNode.createChild(element.contentType, {\n filename: element.filename,\n textEncoding: this.mail.textEncoding,\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n })\n : new MimeNode(element.contentType, {\n filename: element.filename,\n baseBoundary: this.mail.baseBoundary,\n textEncoding: this.mail.textEncoding,\n boundaryPrefix: this.mail.boundaryPrefix,\n disableUrlAccess: this.mail.disableUrlAccess,\n disableFileAccess: this.mail.disableFileAccess,\n normalizeHeaderKey: this.mail.normalizeHeaderKey,\n newline: this.mail.newline\n });\n\n // add custom headers\n if (element.headers) {\n node.addHeader(element.headers);\n }\n\n if (element.cid) {\n node.setHeader('Content-Id', '<' + element.cid.replace(/[<>]/g, '') + '>');\n }\n\n if (element.contentTransferEncoding) {\n node.setHeader('Content-Transfer-Encoding', element.contentTransferEncoding);\n } else if (this.mail.encoding && /^text\\//i.test(element.contentType)) {\n node.setHeader('Content-Transfer-Encoding', this.mail.encoding);\n }\n\n if (!/^text\\//i.test(element.contentType) || element.contentDisposition) {\n node.setHeader(\n 'Content-Disposition',\n element.contentDisposition || (element.cid && /^image\\//i.test(element.contentType) ? 'inline' : 'attachment')\n );\n }\n\n if (typeof element.content === 'string' && !['utf8', 'usascii', 'ascii'].includes(encoding)) {\n element.content = Buffer.from(element.content, encoding);\n }\n\n // prefer pregenerated raw content\n if (element.raw) {\n node.setRaw(element.raw);\n } else {\n node.setContent(element.content);\n }\n\n return node;\n }\n\n /**\n * Parses data uri and converts it to a Buffer\n *\n * @param {Object} element Content element\n * @return {Object} Parsed element\n */\n _processDataUrl(element) {\n const dataUrl = element.path || element.href;\n\n // Early validation to prevent ReDoS\n if (!dataUrl || typeof dataUrl !== 'string') {\n return element;\n }\n\n if (!dataUrl.startsWith('data:')) {\n return element;\n }\n\n if (dataUrl.length > 52428800) {\n // 52428800 chars = 50MB limit for data URL string (~37.5MB decoded image)\n // Extract content type before rejecting to preserve MIME type\n let detectedType = 'application/octet-stream';\n const commaPos = dataUrl.indexOf(',');\n\n if (commaPos > 0 && commaPos < 200) {\n // Parse header safely with size limit\n const header = dataUrl.substring(5, commaPos); // skip 'data:'\n const parts = header.split(';');\n if (parts[0] && parts[0].includes('/')) {\n detectedType = parts[0].trim();\n }\n }\n\n // Return empty content for excessively long data URLs\n return Object.assign({}, element, {\n path: false,\n href: false,\n content: Buffer.alloc(0),\n contentType: element.contentType || detectedType\n });\n }\n\n let parsedDataUri;\n try {\n parsedDataUri = parseDataURI(dataUrl);\n } catch (_err) {\n return element;\n }\n\n if (!parsedDataUri) {\n return element;\n }\n\n element.content = parsedDataUri.data;\n element.contentType = element.contentType || parsedDataUri.contentType;\n\n if ('path' in element) {\n element.path = false;\n }\n\n if ('href' in element) {\n element.href = false;\n }\n\n return element;\n }\n}\n\nmodule.exports = MailComposer;\n","'use strict';\n\nconst { Transform } = require('stream');\n\n/**\n * MessageParser instance is a transform stream that separates message headers\n * from the rest of the body. Headers are emitted with the 'headers' event. Message\n * body is passed on as the resulting stream.\n */\nclass MessageParser extends Transform {\n constructor(options) {\n super(options);\n this.lastBytes = Buffer.alloc(4);\n this.headersParsed = false;\n this.headerBytes = 0;\n this.headerChunks = [];\n this.rawHeaders = false;\n this.bodySize = 0;\n }\n\n /**\n * Keeps count of the last 4 bytes in order to detect line breaks on chunk boundaries\n *\n * @param {Buffer} data Next data chunk from the stream\n */\n updateLastBytes(data) {\n const lblen = this.lastBytes.length;\n const nblen = Math.min(data.length, lblen);\n\n // shift existing bytes\n for (let i = 0, len = lblen - nblen; i < len; i++) {\n this.lastBytes[i] = this.lastBytes[i + nblen];\n }\n\n // add new bytes\n for (let i = 1; i <= nblen; i++) {\n this.lastBytes[lblen - i] = data[data.length - i];\n }\n }\n\n /**\n * Finds and removes message headers from the remaining body. We want to keep\n * headers separated until final delivery to be able to modify these\n *\n * @param {Buffer} data Next chunk of data\n * @return {Boolean} Returns true if headers are already found or false otherwise\n */\n checkHeaders(data) {\n if (this.headersParsed) {\n return true;\n }\n\n const lblen = this.lastBytes.length;\n let headerPos = 0;\n for (let i = 0, len = this.lastBytes.length + data.length; i < len; i++) {\n let chr;\n if (i < lblen) {\n chr = this.lastBytes[i];\n } else {\n chr = data[i - lblen];\n }\n if (chr === 0x0a && i) {\n const pr1 = i - 1 < lblen ? this.lastBytes[i - 1] : data[i - 1 - lblen];\n const pr2 = i > 1 ? (i - 2 < lblen ? this.lastBytes[i - 2] : data[i - 2 - lblen]) : false;\n if (pr1 === 0x0a) {\n this.headersParsed = true;\n headerPos = i - lblen + 1;\n this.headerBytes += headerPos;\n break;\n } else if (pr1 === 0x0d && pr2 === 0x0a) {\n this.headersParsed = true;\n headerPos = i - lblen + 1;\n this.headerBytes += headerPos;\n break;\n }\n }\n }\n\n if (this.headersParsed) {\n this.headerChunks.push(data.slice(0, headerPos));\n this.rawHeaders = Buffer.concat(this.headerChunks, this.headerBytes);\n this.headerChunks = null;\n this.emit('headers', this.parseHeaders());\n if (data.length - 1 > headerPos) {\n const chunk = data.slice(headerPos);\n this.bodySize += chunk.length;\n // this would be the first chunk of data sent downstream\n setImmediate(() => this.push(chunk));\n }\n return false;\n }\n\n this.headerBytes += data.length;\n this.headerChunks.push(data);\n\n // store last 4 bytes to catch header break\n this.updateLastBytes(data);\n\n return false;\n }\n\n _transform(chunk, encoding, callback) {\n if (!chunk || !chunk.length) {\n return callback();\n }\n\n if (typeof chunk === 'string') {\n chunk = Buffer.from(chunk, encoding);\n }\n\n let headersFound;\n\n try {\n headersFound = this.checkHeaders(chunk);\n } catch (E) {\n return callback(E);\n }\n\n if (headersFound) {\n this.bodySize += chunk.length;\n this.push(chunk);\n }\n\n setImmediate(callback);\n }\n\n _flush(callback) {\n if (this.headerChunks) {\n const chunk = Buffer.concat(this.headerChunks, this.headerBytes);\n this.bodySize += chunk.length;\n this.push(chunk);\n this.headerChunks = null;\n }\n callback();\n }\n\n parseHeaders() {\n const lines = (this.rawHeaders || '').toString().split(/\\r?\\n/);\n for (let i = lines.length - 1; i > 0; i--) {\n if (/^\\s/.test(lines[i])) {\n lines[i - 1] += '\\n' + lines[i];\n lines.splice(i, 1);\n }\n }\n return lines\n .filter(line => line.trim())\n .map(line => ({\n key: line.substr(0, line.indexOf(':')).trim().toLowerCase(),\n line\n }));\n }\n}\n\nmodule.exports = MessageParser;\n","'use strict';\n\n// streams through a message body and calculates relaxed body hash\n\nconst { Transform } = require('stream');\nconst crypto = require('crypto');\n\nclass RelaxedBody extends Transform {\n constructor(options) {\n super();\n options = options || {};\n this.chunkBuffer = [];\n this.chunkBufferLen = 0;\n this.bodyHash = crypto.createHash(options.hashAlgo || 'sha1');\n this.remainder = '';\n this.byteLength = 0;\n\n this.debug = options.debug;\n this._debugBody = options.debug ? [] : false;\n }\n\n updateHash(chunk) {\n let bodyStr;\n\n // find next remainder\n let nextRemainder = '';\n\n // This crux finds and removes the spaces from the last line and the newline characters after the last non-empty line\n // If we get another chunk that does not match this description then we can restore the previously processed data\n let state = 'file';\n for (let i = chunk.length - 1; i >= 0; i--) {\n const c = chunk[i];\n\n if (state === 'file' && (c === 0x0a || c === 0x0d)) {\n // do nothing, found \\n or \\r at the end of chunk, stil end of file\n } else if (state === 'file' && (c === 0x09 || c === 0x20)) {\n // switch to line ending mode, this is the last non-empty line\n state = 'line';\n } else if (state === 'line' && (c === 0x09 || c === 0x20)) {\n // do nothing, found ' ' or \\t at the end of line, keep processing the last non-empty line\n } else if (state === 'file' || state === 'line') {\n // non line/file ending character found, switch to body mode\n state = 'body';\n if (i === chunk.length - 1) {\n // final char is not part of line end or file end, so do nothing\n break;\n }\n }\n\n if (i === 0) {\n // reached to the beginning of the chunk, check if it is still about the ending\n // and if the remainder also matches\n if (\n (state === 'file' && (!this.remainder || /[\\r\\n]$/.test(this.remainder))) ||\n (state === 'line' && (!this.remainder || /[ \\t]$/.test(this.remainder)))\n ) {\n // keep everything\n this.remainder += chunk.toString('binary');\n return;\n } else if (state === 'line' || state === 'file') {\n // process existing remainder as normal line but store the current chunk\n nextRemainder = chunk.toString('binary');\n chunk = false;\n break;\n }\n }\n\n if (state !== 'body') {\n continue;\n }\n\n // reached first non ending byte\n nextRemainder = chunk.slice(i + 1).toString('binary');\n chunk = chunk.slice(0, i + 1);\n break;\n }\n\n let needsFixing = !!this.remainder;\n if (chunk && !needsFixing) {\n // check if we even need to change anything\n for (let i = 0, len = chunk.length; i < len; i++) {\n if (i && chunk[i] === 0x0a && chunk[i - 1] !== 0x0d) {\n // missing \\r before \\n\n needsFixing = true;\n break;\n } else if (i && chunk[i] === 0x0d && chunk[i - 1] === 0x20) {\n // trailing WSP found\n needsFixing = true;\n break;\n } else if (i && chunk[i] === 0x20 && chunk[i - 1] === 0x20) {\n // multiple spaces found, needs to be replaced with just one\n needsFixing = true;\n break;\n } else if (chunk[i] === 0x09) {\n // TAB found, needs to be replaced with a space\n needsFixing = true;\n break;\n }\n }\n }\n\n if (needsFixing) {\n bodyStr = this.remainder + (chunk ? chunk.toString('binary') : '');\n this.remainder = nextRemainder;\n bodyStr = bodyStr\n .replace(/\\r?\\n/g, '\\n') // use js line endings\n .replace(/[ \\t]*$/gm, '') // remove line endings, rtrim\n .replace(/[ \\t]+/gm, ' ') // single spaces\n .replace(/\\n/g, '\\r\\n'); // restore rfc822 line endings\n chunk = Buffer.from(bodyStr, 'binary');\n } else if (nextRemainder) {\n this.remainder = nextRemainder;\n }\n\n if (this.debug) {\n this._debugBody.push(chunk);\n }\n this.bodyHash.update(chunk);\n }\n\n _transform(chunk, encoding, callback) {\n if (!chunk || !chunk.length) {\n return callback();\n }\n\n if (typeof chunk === 'string') {\n chunk = Buffer.from(chunk, encoding);\n }\n\n this.updateHash(chunk);\n\n this.byteLength += chunk.length;\n this.push(chunk);\n callback();\n }\n\n _flush(callback) {\n // generate final hash and emit it\n if (/[\\r\\n]$/.test(this.remainder) && this.byteLength > 2) {\n // add terminating line end\n this.bodyHash.update(Buffer.from('\\r\\n'));\n }\n if (!this.byteLength) {\n // emit empty line buffer to keep the stream flowing\n this.push(Buffer.from('\\r\\n'));\n // this.bodyHash.update(Buffer.from('\\r\\n'));\n }\n\n this.emit('hash', this.bodyHash.digest('base64'), this.debug ? Buffer.concat(this._debugBody) : false);\n callback();\n }\n}\n\nmodule.exports = RelaxedBody;\n","'use strict';\n\nconst punycode = require('../punycode');\nconst mimeFuncs = require('../mime-funcs');\nconst crypto = require('crypto');\n\n/**\n * Returns DKIM signature header line\n *\n * @param {Object} headers Parsed headers object from MessageParser\n * @param {String} bodyHash Base64 encoded hash of the message\n * @param {Object} options DKIM options\n * @param {String} options.domainName Domain name to be signed for\n * @param {String} options.keySelector DKIM key selector to use\n * @param {String} options.privateKey DKIM private key to use\n * @return {String} Complete header line\n */\n\nmodule.exports = (headers, hashAlgo, bodyHash, options) => {\n options = options || {};\n\n // all listed fields from RFC4871 #5.5\n const defaultFieldNames =\n 'From:Sender:Reply-To:Subject:Date:Message-ID:To:' +\n 'Cc:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID:' +\n 'Content-Description:Resent-Date:Resent-From:Resent-Sender:' +\n 'Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:' +\n 'List-Id:List-Help:List-Unsubscribe:List-Subscribe:List-Post:' +\n 'List-Owner:List-Archive';\n\n const fieldNames = options.headerFieldNames || defaultFieldNames;\n\n const canonicalizedHeaderData = relaxedHeaders(headers, fieldNames, options.skipFields);\n const dkimHeader = generateDKIMHeader(options.domainName, options.keySelector, canonicalizedHeaderData.fieldNames, hashAlgo, bodyHash);\n\n canonicalizedHeaderData.headers += 'dkim-signature:' + relaxedHeaderLine(dkimHeader);\n\n const signer = crypto.createSign(('rsa-' + hashAlgo).toUpperCase());\n signer.update(canonicalizedHeaderData.headers);\n let signature;\n try {\n signature = signer.sign(options.privateKey, 'base64');\n } catch (_E) {\n return false;\n }\n\n return dkimHeader + signature.replace(/(^.{73}|.{75}(?!\\r?\\n|\\r))/g, '$&\\r\\n ').trim();\n};\n\nmodule.exports.relaxedHeaders = relaxedHeaders;\n\nfunction generateDKIMHeader(domainName, keySelector, fieldNames, hashAlgo, bodyHash) {\n const dkim = [\n 'v=1',\n 'a=rsa-' + hashAlgo,\n 'c=relaxed/relaxed',\n 'd=' + punycode.toASCII(domainName),\n 'q=dns/txt',\n 's=' + keySelector,\n 'bh=' + bodyHash,\n 'h=' + fieldNames\n ].join('; ');\n\n return mimeFuncs.foldLines('DKIM-Signature: ' + dkim, 76) + ';\\r\\n b=';\n}\n\nfunction relaxedHeaders(headers, fieldNames, skipFields) {\n const includedFields = new Set();\n const skip = new Set();\n const headerFields = new Map();\n\n (skipFields || '')\n .toLowerCase()\n .split(':')\n .forEach(field => {\n skip.add(field.trim());\n });\n\n (fieldNames || '')\n .toLowerCase()\n .split(':')\n .filter(field => !skip.has(field.trim()))\n .forEach(field => {\n includedFields.add(field.trim());\n });\n\n for (let i = headers.length - 1; i >= 0; i--) {\n const line = headers[i];\n // only include the first value from bottom to top\n if (includedFields.has(line.key) && !headerFields.has(line.key)) {\n headerFields.set(line.key, relaxedHeaderLine(line.line));\n }\n }\n\n const headersList = [];\n const fields = [];\n includedFields.forEach(field => {\n if (headerFields.has(field)) {\n fields.push(field);\n headersList.push(field + ':' + headerFields.get(field));\n }\n });\n\n return {\n headers: headersList.join('\\r\\n') + '\\r\\n',\n fieldNames: fields.join(':')\n };\n}\n\nfunction relaxedHeaderLine(line) {\n return line\n .substr(line.indexOf(':') + 1)\n .replace(/\\r?\\n/g, '')\n .replace(/\\s+/g, ' ')\n .trim();\n}\n","'use strict';\n\n// FIXME:\n// replace this Transform mess with a method that pipes input argument to output argument\n\nconst MessageParser = require('./message-parser');\nconst RelaxedBody = require('./relaxed-body');\nconst sign = require('./sign');\nconst { PassThrough } = require('stream');\nconst fs = require('fs');\nconst path = require('path');\nconst crypto = require('crypto');\n\nconst DKIM_ALGO = 'sha256';\nconst MAX_MESSAGE_SIZE = 2 * 1024 * 1024; // buffer messages larger than this to disk\n\n/*\n// Usage:\n\nlet dkim = new DKIM({\n domainName: 'example.com',\n keySelector: 'key-selector',\n privateKey,\n cacheDir: '/tmp'\n});\ndkim.sign(input).pipe(process.stdout);\n\n// Where inputStream is a rfc822 message (either a stream, string or Buffer)\n// and outputStream is a DKIM signed rfc822 message\n*/\n\nclass DKIMSigner {\n constructor(options, keys, input, output) {\n this.options = options || {};\n this.keys = keys;\n\n this.cacheTreshold = Number(this.options.cacheTreshold) || MAX_MESSAGE_SIZE;\n this.hashAlgo = this.options.hashAlgo || DKIM_ALGO;\n\n this.cacheDir = this.options.cacheDir || false;\n\n this.chunks = [];\n this.chunklen = 0;\n this.readPos = 0;\n this.cachePath = this.cacheDir\n ? path.join(this.cacheDir, 'message.' + Date.now() + '-' + crypto.randomBytes(14).toString('hex'))\n : false;\n this.cache = false;\n\n this.headers = false;\n this.bodyHash = false;\n this.parser = false;\n this.relaxedBody = false;\n\n this.input = input;\n this.output = output;\n this.output.usingCache = false;\n\n this.hasErrored = false;\n\n this.input.on('error', err => {\n this.hasErrored = true;\n this.cleanup();\n output.emit('error', err);\n });\n }\n\n cleanup() {\n if (!this.cache || !this.cachePath) {\n return;\n }\n fs.unlink(this.cachePath, () => false);\n }\n\n createReadCache() {\n // pipe remainings to cache file\n this.cache = fs.createReadStream(this.cachePath);\n this.cache.once('error', err => {\n this.cleanup();\n this.output.emit('error', err);\n });\n this.cache.once('close', () => {\n this.cleanup();\n });\n this.cache.pipe(this.output);\n }\n\n sendNextChunk() {\n if (this.hasErrored) {\n return;\n }\n\n if (this.readPos >= this.chunks.length) {\n if (!this.cache) {\n return this.output.end();\n }\n return this.createReadCache();\n }\n const chunk = this.chunks[this.readPos++];\n if (this.output.write(chunk) === false) {\n return this.output.once('drain', () => {\n this.sendNextChunk();\n });\n }\n setImmediate(() => this.sendNextChunk());\n }\n\n sendSignedOutput() {\n let keyPos = 0;\n const signNextKey = () => {\n if (keyPos >= this.keys.length) {\n this.output.write(this.parser.rawHeaders);\n return setImmediate(() => this.sendNextChunk());\n }\n const key = this.keys[keyPos++];\n const dkimField = sign(this.headers, this.hashAlgo, this.bodyHash, {\n domainName: key.domainName,\n keySelector: key.keySelector,\n privateKey: key.privateKey,\n headerFieldNames: this.options.headerFieldNames,\n skipFields: this.options.skipFields\n });\n if (dkimField) {\n this.output.write(Buffer.from(dkimField + '\\r\\n'));\n }\n return setImmediate(signNextKey);\n };\n\n if (this.bodyHash && this.headers) {\n return signNextKey();\n }\n\n this.output.write(this.parser.rawHeaders);\n this.sendNextChunk();\n }\n\n createWriteCache() {\n this.output.usingCache = true;\n // pipe remainings to cache file\n this.cache = fs.createWriteStream(this.cachePath);\n this.cache.once('error', err => {\n this.cleanup();\n // drain input\n this.relaxedBody.unpipe(this.cache);\n this.relaxedBody.on('readable', () => {\n while (this.relaxedBody.read() !== null) {\n // do nothing\n }\n });\n this.hasErrored = true;\n // emit error\n this.output.emit('error', err);\n });\n this.cache.once('close', () => {\n this.sendSignedOutput();\n });\n this.relaxedBody.removeAllListeners('readable');\n this.relaxedBody.pipe(this.cache);\n }\n\n signStream() {\n this.parser = new MessageParser();\n this.relaxedBody = new RelaxedBody({\n hashAlgo: this.hashAlgo\n });\n\n this.parser.on('headers', value => {\n this.headers = value;\n });\n\n this.relaxedBody.on('hash', value => {\n this.bodyHash = value;\n });\n\n this.relaxedBody.on('readable', () => {\n let chunk;\n if (this.cache) {\n return;\n }\n while ((chunk = this.relaxedBody.read()) !== null) {\n this.chunks.push(chunk);\n this.chunklen += chunk.length;\n if (this.chunklen >= this.cacheTreshold && this.cachePath) {\n return this.createWriteCache();\n }\n }\n });\n\n this.relaxedBody.on('end', () => {\n if (this.cache) {\n return;\n }\n this.sendSignedOutput();\n });\n\n this.parser.pipe(this.relaxedBody);\n setImmediate(() => this.input.pipe(this.parser));\n }\n}\n\nclass DKIM {\n constructor(options) {\n this.options = options || {};\n this.keys = [].concat(\n this.options.keys || {\n domainName: options.domainName,\n keySelector: options.keySelector,\n privateKey: options.privateKey\n }\n );\n }\n\n sign(input, extraOptions) {\n const output = new PassThrough();\n let inputStream = input;\n let writeValue = false;\n\n if (Buffer.isBuffer(input)) {\n writeValue = input;\n inputStream = new PassThrough();\n } else if (typeof input === 'string') {\n writeValue = Buffer.from(input);\n inputStream = new PassThrough();\n }\n\n let options = this.options;\n if (extraOptions && Object.keys(extraOptions).length) {\n options = Object.assign({}, extraOptions, this.options);\n }\n\n const signer = new DKIMSigner(options, this.keys, inputStream, output);\n setImmediate(() => {\n signer.signStream();\n if (writeValue) {\n setImmediate(() => {\n inputStream.end(writeValue);\n });\n }\n });\n\n return output;\n }\n}\n\nmodule.exports = DKIM;\n","'use strict';\n\n/**\n * Minimal HTTP/S proxy client\n */\n\nconst net = require('net');\nconst tls = require('tls');\nconst urllib = require('../shared/url');\nconst errors = require('../errors');\n\n/**\n * Establishes proxied connection to destinationPort\n *\n * httpProxyClient(\"http://localhost:3128/\", 80, \"google.com\", function(err, socket){\n * socket.write(\"GET / HTTP/1.0\\r\\n\\r\\n\");\n * });\n *\n * @param {String} proxyUrl proxy configuration, etg \"http://proxy.host:3128/\"\n * @param {Number} destinationPort Port to open in destination host\n * @param {String} destinationHost Destination hostname\n * @param {Object} [tlsOptions] Optional TLS options for an HTTPS proxy (e.g. { rejectUnauthorized: false })\n * @param {Function} callback Callback to run with the rocket object once connection is established\n */\nfunction httpProxyClient(proxyUrl, destinationPort, destinationHost, tlsOptions, callback) {\n if (typeof tlsOptions === 'function') {\n callback = tlsOptions;\n tlsOptions = {};\n }\n tlsOptions = tlsOptions || {};\n\n const proxy = urllib.parse(proxyUrl);\n\n const connectOptions = {\n host: proxy.hostname,\n port: Number(proxy.port) ? Number(proxy.port) : proxy.protocol === 'https:' ? 443 : 80\n };\n\n let connect;\n if (proxy.protocol === 'https:') {\n // Validate the proxy's TLS certificate by default. A caller that uses a\n // self-signed proxy (e.g. integration tests) opts out explicitly with\n // tls.rejectUnauthorized === false.\n connectOptions.rejectUnauthorized = tlsOptions.rejectUnauthorized !== false;\n connect = tls.connect.bind(tls);\n } else {\n connect = net.connect.bind(net);\n }\n\n let socket;\n\n // Error harness for initial connection. Once connection is established, the responsibility\n // to handle errors is passed to whoever uses this socket\n let finished = false;\n const tempSocketErr = err => {\n if (finished) {\n return;\n }\n finished = true;\n try {\n socket.destroy();\n } catch (_E) {\n // ignore\n }\n callback(err);\n };\n\n const timeoutErr = () => {\n const err = new Error('Proxy socket timed out');\n err.code = 'ETIMEDOUT';\n tempSocketErr(err);\n };\n\n socket = connect(connectOptions, () => {\n if (finished) {\n return;\n }\n\n const reqHeaders = {\n Host: destinationHost + ':' + destinationPort,\n Connection: 'close'\n };\n if (proxy.auth) {\n reqHeaders['Proxy-Authorization'] = 'Basic ' + Buffer.from(proxy.auth).toString('base64');\n }\n\n socket.write(\n // HTTP method\n 'CONNECT ' +\n destinationHost +\n ':' +\n destinationPort +\n ' HTTP/1.1\\r\\n' +\n // HTTP request headers\n Object.keys(reqHeaders)\n .map(key => key + ': ' + reqHeaders[key])\n .join('\\r\\n') +\n // End request\n '\\r\\n\\r\\n'\n );\n\n let headers = '';\n const onSocketData = chunk => {\n let match;\n let remainder;\n\n if (finished) {\n return;\n }\n\n headers += chunk.toString('binary');\n if ((match = headers.match(/\\r\\n\\r\\n/))) {\n socket.removeListener('data', onSocketData);\n\n remainder = headers.substr(match.index + match[0].length);\n headers = headers.substr(0, match.index);\n if (remainder) {\n socket.unshift(Buffer.from(remainder, 'binary'));\n }\n\n // proxy connection is now established\n finished = true;\n\n // check response code\n match = headers.match(/^HTTP\\/\\d+\\.\\d+ (\\d+)/i);\n if (!match || (match[1] || '').charAt(0) !== '2') {\n try {\n socket.destroy();\n } catch (_E) {\n // ignore\n }\n const err = new Error('Invalid response from proxy' + ((match && ': ' + match[1]) || ''));\n err.code = errors.EPROXY;\n return callback(err);\n }\n\n socket.removeListener('error', tempSocketErr);\n socket.removeListener('timeout', timeoutErr);\n socket.setTimeout(0);\n\n return callback(null, socket);\n }\n };\n socket.on('data', onSocketData);\n });\n\n socket.setTimeout(httpProxyClient.timeout || 30 * 1000);\n socket.on('timeout', timeoutErr);\n\n socket.once('error', tempSocketErr);\n}\n\nmodule.exports = httpProxyClient;\n","'use strict';\n\nconst shared = require('../shared');\nconst MimeNode = require('../mime-node');\nconst mimeFuncs = require('../mime-funcs');\n\nclass MailMessage {\n constructor(mailer, data) {\n this.mailer = mailer;\n this.data = {};\n this.message = null;\n\n data = data || {};\n const options = mailer.options || {};\n const defaults = mailer._defaults || {};\n\n Object.assign(this.data, data);\n\n this.data.headers = this.data.headers || {};\n\n // apply defaults\n Object.keys(defaults).forEach(key => {\n if (!(key in this.data)) {\n this.data[key] = defaults[key];\n } else if (key === 'headers') {\n // headers is a special case. Allow setting individual default headers\n Object.keys(defaults.headers).forEach(key => {\n if (!(key in this.data.headers)) {\n this.data.headers[key] = defaults.headers[key];\n }\n });\n }\n });\n\n // force specific keys from transporter options\n ['disableFileAccess', 'disableUrlAccess', 'normalizeHeaderKey'].forEach(key => {\n if (key in options) {\n this.data[key] = options[key];\n }\n });\n }\n\n resolveContent(...args) {\n return shared.resolveContent(...args);\n }\n\n resolveAll(callback) {\n const keys = [\n [this.data, 'html'],\n [this.data, 'text'],\n [this.data, 'watchHtml'],\n [this.data, 'amp'],\n [this.data, 'icalEvent']\n ];\n\n if (this.data.alternatives && this.data.alternatives.length) {\n this.data.alternatives.forEach((alternative, i) => {\n keys.push([this.data.alternatives, i]);\n });\n }\n\n if (this.data.attachments && this.data.attachments.length) {\n this.data.attachments.forEach((attachment, i) => {\n if (!attachment.filename) {\n attachment.filename =\n (attachment.path || attachment.href || '').split('/').pop().split('?').shift() || 'attachment-' + (i + 1);\n if (attachment.filename.indexOf('.') < 0) {\n attachment.filename += '.' + mimeFuncs.detectExtension(attachment.contentType);\n }\n }\n\n if (!attachment.contentType) {\n attachment.contentType = mimeFuncs.detectMimeType(attachment.filename || attachment.path || attachment.href || 'bin');\n }\n\n keys.push([this.data.attachments, i]);\n });\n }\n\n const mimeNode = new MimeNode();\n\n const addressKeys = ['from', 'to', 'cc', 'bcc', 'sender', 'replyTo'];\n\n addressKeys.forEach(address => {\n let value;\n if (this.message) {\n value = [].concat(mimeNode._parseAddresses(this.message.getHeader(address === 'replyTo' ? 'reply-to' : address)) || []);\n } else if (this.data[address]) {\n value = [].concat(mimeNode._parseAddresses(this.data[address]) || []);\n }\n if (value && value.length) {\n this.data[address] = value;\n } else if (address in this.data) {\n this.data[address] = null;\n }\n });\n\n const singleKeys = ['from', 'sender'];\n singleKeys.forEach(address => {\n if (this.data[address]) {\n this.data[address] = this.data[address].shift();\n }\n });\n\n let pos = 0;\n const resolveNext = () => {\n if (pos >= keys.length) {\n return callback(null, this.data);\n }\n const args = keys[pos++];\n if (!args[0] || !args[0][args[1]]) {\n return resolveNext();\n }\n shared.resolveContent(\n ...args,\n { disableFileAccess: this.data.disableFileAccess, disableUrlAccess: this.data.disableUrlAccess },\n (err, value) => {\n if (err) {\n return callback(err);\n }\n\n const node = {\n content: value\n };\n if (args[0][args[1]] && typeof args[0][args[1]] === 'object' && !Buffer.isBuffer(args[0][args[1]])) {\n Object.keys(args[0][args[1]]).forEach(key => {\n if (!(key in node) && !['content', 'path', 'href', 'raw'].includes(key)) {\n node[key] = args[0][args[1]][key];\n }\n });\n }\n\n args[0][args[1]] = node;\n resolveNext();\n }\n );\n };\n\n setImmediate(() => resolveNext());\n }\n\n normalize(callback) {\n const envelope = this.data.envelope || this.message.getEnvelope();\n const messageId = this.message.messageId();\n\n this.resolveAll((err, data) => {\n if (err) {\n return callback(err);\n }\n\n data.envelope = envelope;\n data.messageId = messageId;\n\n ['html', 'text', 'watchHtml', 'amp'].forEach(key => {\n if (data[key] && data[key].content) {\n if (typeof data[key].content === 'string') {\n data[key] = data[key].content;\n } else if (Buffer.isBuffer(data[key].content)) {\n data[key] = data[key].content.toString();\n }\n }\n });\n\n if (data.icalEvent && Buffer.isBuffer(data.icalEvent.content)) {\n data.icalEvent.content = data.icalEvent.content.toString('base64');\n data.icalEvent.encoding = 'base64';\n }\n\n if (data.alternatives && data.alternatives.length) {\n data.alternatives.forEach(alternative => {\n if (alternative && alternative.content && Buffer.isBuffer(alternative.content)) {\n alternative.content = alternative.content.toString('base64');\n alternative.encoding = 'base64';\n }\n });\n }\n\n if (data.attachments && data.attachments.length) {\n data.attachments.forEach(attachment => {\n if (attachment && attachment.content && Buffer.isBuffer(attachment.content)) {\n attachment.content = attachment.content.toString('base64');\n attachment.encoding = 'base64';\n }\n });\n }\n\n data.normalizedHeaders = {};\n Object.keys(data.headers || {}).forEach(key => {\n let value = [].concat(data.headers[key] || []).shift();\n value = (value && value.value) || value;\n if (value) {\n if (['references', 'in-reply-to', 'message-id', 'content-id'].includes(key)) {\n value = this.message._encodeHeaderValue(key, value);\n }\n data.normalizedHeaders[key] = value;\n }\n });\n\n if (data.list && typeof data.list === 'object') {\n const listHeaders = this._getListHeaders(data.list);\n listHeaders.forEach(entry => {\n data.normalizedHeaders[entry.key] = entry.value.map(val => (val && val.value) || val).join(', ');\n });\n }\n\n if (data.references) {\n data.normalizedHeaders.references = this.message._encodeHeaderValue('references', data.references);\n }\n\n if (data.inReplyTo) {\n data.normalizedHeaders['in-reply-to'] = this.message._encodeHeaderValue('in-reply-to', data.inReplyTo);\n }\n\n return callback(null, data);\n });\n }\n\n setMailerHeader() {\n if (!this.message || !this.data.xMailer) {\n return;\n }\n this.message.setHeader('X-Mailer', this.data.xMailer);\n }\n\n setPriorityHeaders() {\n if (!this.message || !this.data.priority) {\n return;\n }\n switch ((this.data.priority || '').toString().toLowerCase()) {\n case 'high':\n this.message.setHeader('X-Priority', '1 (Highest)');\n this.message.setHeader('X-MSMail-Priority', 'High');\n this.message.setHeader('Importance', 'High');\n break;\n case 'low':\n this.message.setHeader('X-Priority', '5 (Lowest)');\n this.message.setHeader('X-MSMail-Priority', 'Low');\n this.message.setHeader('Importance', 'Low');\n break;\n default:\n // do not add anything, since all messages are 'Normal' by default\n }\n }\n\n setListHeaders() {\n if (!this.message || !this.data.list || typeof this.data.list !== 'object') {\n return;\n }\n // add optional List-* headers\n this._getListHeaders(this.data.list).forEach(listHeader => {\n listHeader.value.forEach(value => {\n this.message.addHeader(listHeader.key, value);\n });\n });\n }\n\n _getListHeaders(listData) {\n // make sure an url looks like \n return Object.keys(listData).map(key => ({\n key: 'list-' + key.toLowerCase().trim(),\n value: [].concat(listData[key] || []).map(value => ({\n prepared: true,\n foldLines: true,\n value: []\n .concat(value || [])\n .map(value => {\n if (typeof value === 'string') {\n value = {\n url: value\n };\n }\n\n if (value && value.url) {\n if (key.toLowerCase().trim() === 'id') {\n // List-ID: \"comment\" \n // strip CR/LF so a comment can't inject extra header lines\n let comment = (value.comment || '').toString().replace(/\\r?\\n|\\r/g, ' ');\n if (mimeFuncs.isPlainText(comment)) {\n comment = '\"' + comment + '\"';\n } else {\n comment = mimeFuncs.encodeWord(comment);\n }\n\n // List-ID expects a bare domain-like identifier, so strip the\n // scheme prefix that _formatListUrl adds or passes through\n return (\n (value.comment ? comment + ' ' : '') + this._formatListUrl(value.url).replace(/^<[^:]+:\\/{0,2}/, '<')\n );\n }\n\n // List-*: (comment)\n // strip CR/LF so a comment can't inject extra header lines\n let comment = (value.comment || '').toString().replace(/\\r?\\n|\\r/g, ' ');\n if (!mimeFuncs.isPlainText(comment)) {\n comment = mimeFuncs.encodeWord(comment);\n }\n\n return this._formatListUrl(value.url) + (value.comment ? ' (' + comment + ')' : '');\n }\n\n return '';\n })\n .filter(value => value)\n .join(', ')\n }))\n }));\n }\n\n _formatListUrl(url) {\n url = url.replace(/[\\s<]+|[\\s>]+/g, '');\n if (/^(https?|mailto|ftp):/.test(url)) {\n return '<' + url + '>';\n }\n if (/^[^@]+@[^@]+$/.test(url)) {\n return '';\n }\n\n return '';\n }\n}\n\nmodule.exports = MailMessage;\n","'use strict';\n\nconst EventEmitter = require('events');\nconst shared = require('../shared');\nconst mimeTypes = require('../mime-funcs/mime-types');\nconst MailComposer = require('../mail-composer');\nconst DKIM = require('../dkim');\nconst httpProxyClient = require('../smtp-connection/http-proxy-client');\nconst errors = require('../errors');\nconst util = require('util');\nconst urllib = require('../shared/url');\nconst packageData = require('../../package.json');\nconst MailMessage = require('./mail-message');\nconst net = require('net');\nconst dns = require('dns');\nconst crypto = require('crypto');\n\n/**\n * Creates an object for exposing the Mail API\n *\n * @constructor\n * @param {Object} transporter Transport object instance to pass the mails to\n */\nclass Mail extends EventEmitter {\n constructor(transporter, options, defaults) {\n super();\n\n this.options = options || {};\n this._defaults = defaults || {};\n\n this._defaultPlugins = {\n compile: [(...args) => this._convertDataImages(...args)],\n stream: []\n };\n\n this._userPlugins = {\n compile: [],\n stream: []\n };\n\n this.meta = new Map();\n\n this.dkim = this.options.dkim ? new DKIM(this.options.dkim) : false;\n\n this.transporter = transporter;\n this.transporter.mailer = this;\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'mail'\n });\n\n this.logger.debug(\n {\n tnx: 'create'\n },\n 'Creating transport: %s',\n this.getVersionString()\n );\n\n // setup emit handlers for the transporter\n if (typeof this.transporter.on === 'function') {\n // deprecated log interface\n this.transporter.on('log', log => {\n this.logger.debug(\n {\n tnx: 'transport'\n },\n '%s: %s',\n log.type,\n log.message\n );\n });\n\n // transporter errors\n this.transporter.on('error', err => {\n this.logger.error(\n {\n err,\n tnx: 'transport'\n },\n 'Transport Error: %s',\n err.message\n );\n this.emit('error', err);\n });\n\n // indicates if the sender has became idle\n this.transporter.on('idle', (...args) => {\n this.emit('idle', ...args);\n });\n\n // indicates if the sender has became idle and all connections are terminated\n this.transporter.on('clear', (...args) => {\n this.emit('clear', ...args);\n });\n }\n\n /**\n * Optional methods passed to the underlying transport object\n */\n ['close', 'isIdle', 'verify'].forEach(method => {\n this[method] = (...args) => {\n if (typeof this.transporter[method] === 'function') {\n if (method === 'verify' && typeof this.getSocket === 'function') {\n this.transporter.getSocket = this.getSocket;\n this.getSocket = false;\n }\n return this.transporter[method](...args);\n }\n\n this.logger.warn(\n {\n tnx: 'transport',\n methodName: method\n },\n 'Non existing method %s called for transport',\n method\n );\n return false;\n };\n });\n\n // setup proxy handling\n if (this.options.proxy && typeof this.options.proxy === 'string') {\n this.setupProxy(this.options.proxy);\n }\n }\n\n use(step, plugin) {\n step = (step || '').toString();\n if (!this._userPlugins.hasOwnProperty(step)) {\n this._userPlugins[step] = [plugin];\n } else {\n this._userPlugins[step].push(plugin);\n }\n\n return this;\n }\n\n /**\n * Sends an email using the preselected transport object\n *\n * @param {Object} data E-data description\n * @param {Function?} callback Callback to run once the sending succeeded or failed\n */\n sendMail(data, callback = null) {\n let promise;\n\n if (!callback) {\n promise = new Promise((resolve, reject) => {\n callback = shared.callbackPromise(resolve, reject);\n });\n }\n\n if (typeof this.getSocket === 'function') {\n this.transporter.getSocket = this.getSocket;\n this.getSocket = false;\n }\n\n const mail = new MailMessage(this, data);\n\n this.logger.debug(\n {\n tnx: 'transport',\n name: this.transporter.name,\n version: this.transporter.version,\n action: 'send'\n },\n 'Sending mail using %s/%s',\n this.transporter.name,\n this.transporter.version\n );\n\n this._processPlugins('compile', mail, err => {\n if (err) {\n this.logger.error(\n {\n err,\n tnx: 'plugin',\n action: 'compile'\n },\n 'PluginCompile Error: %s',\n err.message\n );\n return callback(err);\n }\n\n mail.message = new MailComposer(mail.data).compile();\n\n mail.setMailerHeader();\n mail.setPriorityHeaders();\n mail.setListHeaders();\n\n this._processPlugins('stream', mail, err => {\n if (err) {\n this.logger.error(\n {\n err,\n tnx: 'plugin',\n action: 'stream'\n },\n 'PluginStream Error: %s',\n err.message\n );\n return callback(err);\n }\n\n if (mail.data.dkim || this.dkim) {\n mail.message.processFunc(input => {\n const dkim = mail.data.dkim ? new DKIM(mail.data.dkim) : this.dkim;\n this.logger.debug(\n {\n tnx: 'DKIM',\n messageId: mail.message.messageId(),\n dkimDomains: dkim.keys.map(key => key.keySelector + '.' + key.domainName).join(', ')\n },\n 'Signing outgoing message with %s keys',\n dkim.keys.length\n );\n return dkim.sign(input, mail.data._dkim);\n });\n }\n\n this.transporter.send(mail, (...args) => {\n if (args[0]) {\n this.logger.error(\n {\n err: args[0],\n tnx: 'transport',\n action: 'send'\n },\n 'Send Error: %s',\n args[0].message\n );\n }\n callback(...args);\n });\n });\n });\n\n return promise;\n }\n\n getVersionString() {\n return util.format(\n '%s (%s; +%s; %s/%s)',\n packageData.name,\n packageData.version,\n packageData.homepage,\n this.transporter.name,\n this.transporter.version\n );\n }\n\n _processPlugins(step, mail, callback) {\n step = (step || '').toString();\n\n if (!this._userPlugins.hasOwnProperty(step)) {\n return callback();\n }\n\n const userPlugins = this._userPlugins[step] || [];\n const defaultPlugins = this._defaultPlugins[step] || [];\n\n if (userPlugins.length) {\n this.logger.debug(\n {\n tnx: 'transaction',\n pluginCount: userPlugins.length,\n step\n },\n 'Using %s plugins for %s',\n userPlugins.length,\n step\n );\n }\n\n if (userPlugins.length + defaultPlugins.length === 0) {\n return callback();\n }\n\n let pos = 0;\n let block = 'default';\n const processPlugins = () => {\n let curplugins = block === 'default' ? defaultPlugins : userPlugins;\n if (pos >= curplugins.length) {\n if (block === 'default' && userPlugins.length) {\n block = 'user';\n pos = 0;\n curplugins = userPlugins;\n } else {\n return callback();\n }\n }\n const plugin = curplugins[pos++];\n plugin(mail, err => {\n if (err) {\n return callback(err);\n }\n processPlugins();\n });\n };\n\n processPlugins();\n }\n\n /**\n * Sets up proxy handler for a Nodemailer object\n *\n * @param {String} proxyUrl Proxy configuration url\n */\n setupProxy(proxyUrl) {\n const proxy = urllib.parse(proxyUrl);\n\n // setup socket handler for the mailer object\n this.getSocket = (options, callback) => {\n const protocol = proxy.protocol.replace(/:$/, '').toLowerCase();\n\n if (this.meta.has('proxy_handler_' + protocol)) {\n return this.meta.get('proxy_handler_' + protocol)(proxy, options, callback);\n }\n\n switch (protocol) {\n // Connect using a HTTP CONNECT method\n case 'http':\n case 'https':\n httpProxyClient(proxy.href, options.port, options.host, this.options.tls || {}, (err, socket) => {\n if (err) {\n return callback(err);\n }\n return callback(null, {\n connection: socket\n });\n });\n return;\n case 'socks':\n case 'socks5':\n case 'socks4':\n case 'socks4a': {\n if (!this.meta.has('proxy_socks_module')) {\n let err = new Error('Socks module not loaded');\n err.code = errors.EPROXY;\n return callback(err);\n }\n const connect = ipaddress => {\n const proxyV2 = !!this.meta.get('proxy_socks_module').SocksClient;\n const socksClient = proxyV2 ? this.meta.get('proxy_socks_module').SocksClient : this.meta.get('proxy_socks_module');\n const proxyType = Number(proxy.protocol.replace(/\\D/g, '')) || 5;\n const connectionOpts = {\n proxy: {\n ipaddress,\n port: Number(proxy.port),\n type: proxyType\n },\n [proxyV2 ? 'destination' : 'target']: {\n host: options.host,\n port: options.port\n },\n command: 'connect'\n };\n\n if (proxy.auth) {\n const username = decodeURIComponent(proxy.auth.split(':').shift());\n const password = decodeURIComponent(proxy.auth.split(':').pop());\n if (proxyV2) {\n connectionOpts.proxy.userId = username;\n connectionOpts.proxy.password = password;\n } else if (proxyType === 4) {\n connectionOpts.userid = username;\n } else {\n connectionOpts.authentication = {\n username,\n password\n };\n }\n }\n\n socksClient.createConnection(connectionOpts, (err, info) => {\n if (err) {\n return callback(err);\n }\n return callback(null, {\n connection: info.socket || info\n });\n });\n };\n\n if (net.isIP(proxy.hostname)) {\n return connect(proxy.hostname);\n }\n\n return dns.resolve(proxy.hostname, (err, address) => {\n if (err) {\n return callback(err);\n }\n connect(Array.isArray(address) ? address[0] : address);\n });\n }\n }\n let err = new Error('Unknown proxy configuration');\n err.code = errors.EPROXY;\n callback(err);\n };\n }\n\n _convertDataImages(mail, callback) {\n if ((!this.options.attachDataUrls && !mail.data.attachDataUrls) || !mail.data.html) {\n return callback();\n }\n mail.resolveContent(\n mail.data,\n 'html',\n { disableFileAccess: mail.data.disableFileAccess, disableUrlAccess: mail.data.disableUrlAccess },\n (err, html) => {\n if (err) {\n return callback(err);\n }\n let cidCounter = 0;\n html = (html || '')\n .toString()\n .replace(\n /(]{0,1024} src\\s{0,20}=[\\s\"']{0,20})(data:([^;]+);[^\"'>\\s]+)/gi,\n (match, prefix, dataUri, mimeType) => {\n const cid = crypto.randomBytes(10).toString('hex') + '@localhost';\n if (!mail.data.attachments) {\n mail.data.attachments = [];\n }\n if (!Array.isArray(mail.data.attachments)) {\n mail.data.attachments = [].concat(mail.data.attachments || []);\n }\n mail.data.attachments.push({\n path: dataUri,\n cid,\n filename: 'image-' + ++cidCounter + '.' + mimeTypes.detectExtension(mimeType)\n });\n return prefix + 'cid:' + cid;\n }\n );\n mail.data.html = html;\n callback();\n }\n );\n }\n\n set(key, value) {\n return this.meta.set(key, value);\n }\n\n get(key) {\n return this.meta.get(key);\n }\n}\n\nmodule.exports = Mail;\n","'use strict';\n\nconst { Transform } = require('stream');\n\n/**\n * Escapes dots in the beginning of lines. Ends the stream with .\n * Also makes sure that only sequences are used for linebreaks\n *\n * @param {Object} options Stream options\n */\nclass DataStream extends Transform {\n constructor(options) {\n super(options);\n this.options = options || {};\n\n this.inByteCount = 0;\n this.outByteCount = 0;\n this.lastByte = false;\n }\n\n /**\n * Escapes dots\n */\n _transform(chunk, encoding, done) {\n const chunks = [];\n let chunklen = 0;\n let i,\n len,\n lastPos = 0;\n let buf;\n\n if (!chunk || !chunk.length) {\n return done();\n }\n\n if (typeof chunk === 'string') {\n chunk = Buffer.from(chunk);\n }\n\n this.inByteCount += chunk.length;\n\n for (i = 0, len = chunk.length; i < len; i++) {\n if (chunk[i] === 0x2e) {\n // .\n if ((i && chunk[i - 1] === 0x0a) || (!i && (!this.lastByte || this.lastByte === 0x0a))) {\n buf = chunk.slice(lastPos, i + 1);\n chunks.push(buf);\n chunks.push(Buffer.from('.'));\n chunklen += buf.length + 1;\n lastPos = i + 1;\n }\n } else if (chunk[i] === 0x0a) {\n // \\n\n if ((i && chunk[i - 1] !== 0x0d) || (!i && this.lastByte !== 0x0d)) {\n if (i > lastPos) {\n buf = chunk.slice(lastPos, i);\n chunks.push(buf);\n chunklen += buf.length + 2;\n } else {\n chunklen += 2;\n }\n chunks.push(Buffer.from('\\r\\n'));\n lastPos = i + 1;\n }\n }\n }\n\n if (chunklen) {\n // add last piece\n if (lastPos < chunk.length) {\n buf = chunk.slice(lastPos);\n chunks.push(buf);\n chunklen += buf.length;\n }\n\n this.outByteCount += chunklen;\n this.push(Buffer.concat(chunks, chunklen));\n } else {\n this.outByteCount += chunk.length;\n this.push(chunk);\n }\n\n this.lastByte = chunk[chunk.length - 1];\n done();\n }\n\n /**\n * Finalizes the stream with a dot on a single line\n */\n _flush(done) {\n let buf;\n if (this.lastByte === 0x0a) {\n buf = Buffer.from('.\\r\\n');\n } else if (this.lastByte === 0x0d) {\n buf = Buffer.from('\\n.\\r\\n');\n } else {\n buf = Buffer.from('\\r\\n.\\r\\n');\n }\n this.outByteCount += buf.length;\n this.push(buf);\n done();\n }\n}\n\nmodule.exports = DataStream;\n","'use strict';\n\nconst packageInfo = require('../../package.json');\nconst { EventEmitter } = require('events');\nconst net = require('net');\nconst tls = require('tls');\nconst os = require('os');\nconst crypto = require('crypto');\nconst DataStream = require('./data-stream');\nconst { PassThrough } = require('stream');\nconst shared = require('../shared');\n\n// default timeout values in ms\nconst CONNECTION_TIMEOUT = 2 * 60 * 1000; // how much to wait for the connection to be established\nconst SOCKET_TIMEOUT = 10 * 60 * 1000; // how much to wait for socket inactivity before disconnecting the client\nconst GREETING_TIMEOUT = 30 * 1000; // how much to wait after connection is established but SMTP greeting is not receieved\nconst DNS_TIMEOUT = 30 * 1000; // how much to wait for resolveHostname\nconst TEARDOWN_NOOP = () => {}; // reusable no-op handler for absorbing errors during socket teardown\n\n/**\n * Re-interpret a server response stored in fake 8-bit byte-container form\n * (the result of chunk.toString('binary') in _onData) as UTF-8.\n *\n * Server reply text has no formally defined charset (RFC 5321 §4.2.1), but\n * modern MTAs commonly use UTF-8. The byte-container plumbing in _onData is\n * required to reassemble multi-byte sequences split across socket chunks;\n * this helper performs the actual decode at the line boundary, falling back\n * to the byte-container form when the bytes are not valid UTF-8 so that\n * legacy 8-bit replies are still recoverable byte-for-byte.\n */\nfunction decodeServerResponse(str) {\n if (!str) {\n return str;\n }\n const utf8 = Buffer.from(str, 'binary').toString('utf8');\n // The input is a byte container (each char is in U+0000..U+00FF) so it can never\n // already contain U+FFFD; any \\uFFFD in the result was inserted by Node's UTF-8\n // decoder for invalid bytes, which means we should return the original bytes intact.\n return utf8.includes('\\uFFFD') ? str : utf8;\n}\n\n/**\n * Generates a SMTP connection object\n *\n * Optional options object takes the following possible properties:\n *\n * * **port** - is the port to connect to (defaults to 587 or 465)\n * * **host** - is the hostname or IP address to connect to (defaults to 'localhost')\n * * **secure** - use SSL\n * * **ignoreTLS** - ignore server support for STARTTLS\n * * **requireTLS** - forces the client to use STARTTLS\n * * **name** - the name of the client server\n * * **localAddress** - outbound address to bind to (see: http://nodejs.org/api/net.html#net_net_connect_options_connectionlistener)\n * * **greetingTimeout** - Time to wait in ms until greeting message is received from the server (defaults to 30 seconds)\n * * **connectionTimeout** - how many milliseconds to wait for the connection to establish (defaults to 2 minutes)\n * * **socketTimeout** - Time of inactivity until the connection is closed (defaults to 10 minutes)\n * * **dnsTimeout** - Time to wait in ms for the DNS requests to be resolved (defaults to 30 seconds)\n * * **lmtp** - if true, uses LMTP instead of SMTP protocol\n * * **logger** - bunyan compatible logger interface\n * * **debug** - if true pass SMTP traffic to the logger\n * * **tls** - options for createCredentials\n * * **socket** - existing socket to use instead of creating a new one (see: http://nodejs.org/api/net.html#net_class_net_socket)\n * * **secured** - boolean indicates that the provided socket has already been upgraded to tls\n *\n * @constructor\n * @namespace SMTP Client module\n * @param {Object} [options] Option properties\n */\nclass SMTPConnection extends EventEmitter {\n constructor(options) {\n super(options);\n\n this.id = crypto.randomBytes(8).toString('base64').replace(/\\W/g, '');\n this.stage = 'init';\n\n this.options = options || {};\n\n this.secureConnection = !!this.options.secure;\n this.alreadySecured = !!this.options.secured;\n\n this.port = Number(this.options.port) || (this.secureConnection ? 465 : 587);\n this.host = this.options.host || 'localhost';\n\n this.servername = this.options.servername ? this.options.servername : !net.isIP(this.host) ? this.host : false;\n\n this.allowInternalNetworkInterfaces = this.options.allowInternalNetworkInterfaces || false;\n\n if (typeof this.options.secure === 'undefined' && this.port === 465) {\n // if secure option is not set but port is 465, then default to secure\n this.secureConnection = true;\n }\n\n this.name = (this.options.name || this._getHostname()).toString().replace(/[\\r\\n]+/g, '');\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'smtp-connection',\n sid: this.id\n });\n\n this.customAuth = new Map();\n for (const key of Object.keys(this.options.customAuth || {})) {\n const mapKey = (key || '').toString().trim().toUpperCase();\n if (mapKey) {\n this.customAuth.set(mapKey, this.options.customAuth[key]);\n }\n }\n\n /**\n * Expose version nr, just for the reference\n * @type {String}\n */\n this.version = packageInfo.version;\n\n /**\n * If true, then the user is authenticated\n * @type {Boolean}\n */\n this.authenticated = false;\n\n /**\n * If set to true, this instance is no longer active\n * @private\n */\n this.destroyed = false;\n\n /**\n * Defines if the current connection is secure or not. If not,\n * STARTTLS can be used if available\n * @private\n */\n this.secure = !!this.secureConnection;\n\n /**\n * Store incomplete messages coming from the server\n * @private\n */\n this._remainder = '';\n\n /**\n * Unprocessed responses from the server\n * @type {Array}\n */\n this._responseQueue = [];\n\n this.lastServerResponse = false;\n\n /**\n * The socket connecting to the server\n * @public\n */\n this._socket = false;\n\n /**\n * Lists supported auth mechanisms\n * @private\n */\n this._supportedAuth = [];\n\n /**\n * Set to true, if EHLO response includes \"AUTH\".\n * If false then authentication is not tried\n */\n this.allowsAuth = false;\n\n /**\n * Includes current envelope (from, to)\n * @private\n */\n this._envelope = false;\n\n /**\n * Lists supported extensions\n * @private\n */\n this._supportedExtensions = [];\n\n /**\n * Defines the maximum allowed size for a single message\n * @private\n */\n this._maxAllowedSize = 0;\n\n /**\n * Function queue to run if a data chunk comes from the server\n * @private\n */\n this._responseActions = [];\n this._recipientQueue = [];\n\n /**\n * Timeout variable for waiting the greeting\n * @private\n */\n this._greetingTimeout = false;\n\n /**\n * Timeout variable for waiting the connection to start\n * @private\n */\n this._connectionTimeout = false;\n\n /**\n * If the socket is deemed already closed\n * @private\n */\n this._destroyed = false;\n\n /**\n * If the socket is already being closed\n * @private\n */\n this._closing = false;\n\n /**\n * Message DATA stream currently piped to the socket, if any. Tracked so\n * close() can unpipe it before tearing the socket down.\n * @private\n */\n this._currentDataStream = false;\n\n /**\n * Callbacks for socket's listeners\n */\n this._onSocketData = chunk => this._onData(chunk);\n this._onSocketError = error => this._onError(error, 'ESOCKET', false, 'CONN');\n this._onSocketClose = () => this._onClose();\n this._onSocketEnd = () => this._onEnd();\n this._onSocketTimeout = () => this._onTimeout();\n\n /**\n * Connection-phase error handler (supports fallback to alternative addresses)\n */\n this._onConnectionSocketError = err => this._onConnectionError(err, 'ESOCKET');\n\n /**\n * Connection attempt counter for fallback race condition protection\n * @private\n */\n this._connectionAttemptId = 0;\n }\n\n /**\n * Creates a connection to a SMTP server and sets up connection\n * listener\n */\n connect(connectCallback) {\n if (typeof connectCallback === 'function') {\n this.once('connect', () => {\n this.logger.debug(\n {\n tnx: 'smtp'\n },\n 'SMTP handshake finished'\n );\n connectCallback();\n });\n\n const isDestroyedMessage = this._isDestroyedMessage('connect');\n if (isDestroyedMessage) {\n return connectCallback(this._formatError(isDestroyedMessage, 'ECONNECTION', false, 'CONN'));\n }\n }\n\n let opts = {\n port: this.port,\n host: this.host,\n allowInternalNetworkInterfaces: this.allowInternalNetworkInterfaces,\n timeout: this.options.dnsTimeout || DNS_TIMEOUT\n };\n\n if (this.options.localAddress) {\n opts.localAddress = this.options.localAddress;\n }\n\n if (this.options.connection) {\n // connection is already opened\n this._socket = this.options.connection;\n this._setupConnectionHandlers();\n\n if (this.secureConnection && !this.alreadySecured) {\n setImmediate(() =>\n this._upgradeConnection(err => {\n if (err) {\n this._onError(new Error('Error initiating TLS - ' + (err.message || err)), 'ETLS', false, 'CONN');\n return;\n }\n this._onConnect();\n })\n );\n } else {\n setImmediate(() => this._onConnect());\n }\n return;\n } else if (this.options.socket) {\n // socket object is set up but not yet connected\n this._socket = this.options.socket;\n return this._resolveAndConnect(opts, _resolved => {\n try {\n this._socket.connect(this.port, this.host, () => {\n this._socket.setKeepAlive(true);\n this._onConnect();\n });\n this._setupConnectionHandlers();\n } catch (E) {\n return setImmediate(() => this._onError(E, 'ECONNECTION', false, 'CONN'));\n }\n });\n } else {\n if (this.secureConnection) {\n Object.assign(opts, this.options.tls || {});\n\n // ensure servername for SNI\n if (this.servername && !opts.servername) {\n opts.servername = this.servername;\n }\n }\n\n return this._resolveAndConnect(opts, resolved => {\n // Store fallback addresses for retry on connection failure\n this._fallbackAddresses = (resolved._addresses || []).filter(addr => addr !== opts.host);\n this._connectOpts = Object.assign({}, opts);\n\n this._connectToHost(opts, this.secureConnection);\n });\n }\n }\n\n /**\n * Resolves the hostname and applies resolved values to opts,\n * then calls the provided callback with the resolved data\n *\n * @param {Object} opts Connection options (modified in place)\n * @param {Function} callback Called with resolved data on success\n */\n _resolveAndConnect(opts, callback) {\n return shared.resolveHostname(opts, (err, resolved) => {\n if (err) {\n return setImmediate(() => this._onError(err, 'EDNS', false, 'CONN'));\n }\n this.logger.debug(\n {\n tnx: 'dns',\n source: opts.host,\n resolved: resolved.host,\n cached: !!resolved.cached\n },\n 'Resolved %s as %s [cache %s]',\n opts.host,\n resolved.host,\n resolved.cached ? 'hit' : 'miss'\n );\n for (const key of Object.keys(resolved)) {\n if (key.charAt(0) !== '_' && resolved[key]) {\n opts[key] = resolved[key];\n }\n }\n callback(resolved);\n });\n }\n\n /**\n * Attempts to connect to the specified host address\n *\n * @param {Object} opts Connection options\n * @param {Boolean} secure Whether to use TLS\n */\n _connectToHost(opts, secure) {\n this._connectionAttemptId++;\n const currentAttemptId = this._connectionAttemptId;\n\n const connectFn = secure ? tls.connect : net.connect;\n try {\n this._socket = connectFn(opts, () => {\n // Ignore callback if this is a stale connection attempt\n if (this._connectionAttemptId !== currentAttemptId) {\n return;\n }\n this._socket.setKeepAlive(true);\n this._onConnect();\n });\n this._setupConnectionHandlers();\n } catch (E) {\n return setImmediate(() => this._onError(E, 'ECONNECTION', false, 'CONN'));\n }\n }\n\n /**\n * Sets up connection timeout and error handlers\n */\n _setupConnectionHandlers() {\n this._connectionTimeout = setTimeout(() => {\n this._onConnectionError('Connection timeout', 'ETIMEDOUT');\n }, this.options.connectionTimeout || CONNECTION_TIMEOUT);\n\n this._socket.on('error', this._onConnectionSocketError);\n }\n\n /**\n * Handles connection errors with fallback to alternative addresses\n *\n * @param {Error|String} err Error object or message\n * @param {String} code Error code\n */\n _onConnectionError(err, code) {\n clearTimeout(this._connectionTimeout);\n\n // Check if we have fallback addresses to try\n const canFallback = this._fallbackAddresses && this._fallbackAddresses.length && this.stage === 'init' && !this._destroyed;\n\n if (!canFallback) {\n // No more fallback addresses, report the error\n this._onError(err, code, false, 'CONN');\n return;\n }\n\n const nextHost = this._fallbackAddresses.shift();\n\n this.logger.info(\n {\n tnx: 'network',\n failedHost: this._connectOpts.host,\n nextHost,\n error: err.message || err\n },\n 'Connection to %s failed, trying %s',\n this._connectOpts.host,\n nextHost\n );\n\n // Clean up current socket\n if (this._socket) {\n try {\n this._socket.removeListener('error', this._onConnectionSocketError);\n this._socket.destroy();\n } catch (_E) {\n // ignore\n }\n this._socket = null;\n }\n\n // Update host and retry\n this._connectOpts.host = nextHost;\n this._connectToHost(this._connectOpts, this.secureConnection);\n }\n\n /**\n * Sends QUIT\n */\n quit() {\n this._sendCommand('QUIT');\n this._responseActions.push(this.close);\n }\n\n /**\n * Closes the connection to the server\n */\n close() {\n clearTimeout(this._connectionTimeout);\n clearTimeout(this._greetingTimeout);\n this._responseActions = [];\n\n // allow to run this function only once\n if (this._closing) {\n return;\n }\n this._closing = true;\n\n const closeMethod = this.stage === 'init' ? 'destroy' : 'end';\n\n this.logger.debug(\n {\n tnx: 'smtp'\n },\n 'Closing connection to the server using \"%s\"',\n closeMethod\n );\n\n const socket = (this._socket && this._socket.socket) || this._socket;\n\n // Detach any in-flight DATA stream from the socket so the source stream\n // can be garbage-collected once the socket is gone.\n if (this._currentDataStream) {\n try {\n this._currentDataStream.unpipe(this._socket);\n } catch (_E) {\n // ignore\n }\n this._currentDataStream = false;\n }\n\n if (socket && !socket.destroyed) {\n try {\n // Clear socket timeout to prevent timer leaks\n socket.setTimeout(0);\n // Remove all listeners to allow proper garbage collection\n socket.removeListener('data', this._onSocketData);\n socket.removeListener('timeout', this._onSocketTimeout);\n socket.removeListener('close', this._onSocketClose);\n socket.removeListener('end', this._onSocketEnd);\n socket.removeListener('error', this._onSocketError);\n socket.removeListener('error', this._onConnectionSocketError);\n // Absorb errors that may fire during socket teardown (e.g. server\n // sending cleartext after TLS shutdown triggers ERR_SSL_BAD_RECORD_TYPE)\n socket.on('error', TEARDOWN_NOOP);\n socket[closeMethod]();\n } catch (_E) {\n // just ignore\n }\n }\n\n this._destroy();\n }\n\n /**\n * Authenticate user\n */\n login(authData, callback) {\n const isDestroyedMessage = this._isDestroyedMessage('login');\n if (isDestroyedMessage) {\n return callback(this._formatError(isDestroyedMessage, 'ECONNECTION', false, 'API'));\n }\n\n this._auth = authData || {};\n // Select SASL authentication method\n this._authMethod = (this._auth.method || '').toString().trim().toUpperCase() || false;\n\n if (!this._authMethod && this._auth.oauth2 && !this._auth.credentials) {\n this._authMethod = 'XOAUTH2';\n } else if (!this._authMethod || (this._authMethod === 'XOAUTH2' && !this._auth.oauth2)) {\n // use first supported\n this._authMethod = (this._supportedAuth[0] || 'PLAIN').toUpperCase().trim();\n }\n\n if (this._authMethod !== 'XOAUTH2' && (!this._auth.credentials || !this._auth.credentials.user || !this._auth.credentials.pass)) {\n if ((this._auth.user && this._auth.pass) || this.customAuth.has(this._authMethod)) {\n this._auth.credentials = {\n user: this._auth.user,\n pass: this._auth.pass,\n options: this._auth.options\n };\n } else {\n return callback(this._formatError('Missing credentials for \"' + this._authMethod + '\"', 'EAUTH', false, 'API'));\n }\n }\n\n if (this.customAuth.has(this._authMethod)) {\n const handler = this.customAuth.get(this._authMethod);\n let lastResponse;\n let returned = false;\n\n const resolve = () => {\n if (returned) {\n return;\n }\n returned = true;\n this.logger.info(\n {\n tnx: 'smtp',\n username: this._auth.user,\n action: 'authenticated',\n method: this._authMethod\n },\n 'User %s authenticated',\n JSON.stringify(this._auth.user)\n );\n this.authenticated = true;\n callback(null, true);\n };\n\n const reject = err => {\n if (returned) {\n return;\n }\n returned = true;\n callback(this._formatError(err, 'EAUTH', lastResponse, 'AUTH ' + this._authMethod));\n };\n\n const handlerResponse = handler({\n auth: this._auth,\n method: this._authMethod,\n\n extensions: [].concat(this._supportedExtensions),\n authMethods: [].concat(this._supportedAuth),\n maxAllowedSize: this._maxAllowedSize || false,\n\n sendCommand: (cmd, done) => {\n let promise;\n\n if (!done) {\n promise = new Promise((resolve, reject) => {\n done = shared.callbackPromise(resolve, reject);\n });\n }\n\n this._responseActions.push(str => {\n lastResponse = str;\n\n let codes = str.match(/^(\\d+)(?:\\s(\\d+\\.\\d+\\.\\d+))?\\s/);\n let data = {\n command: cmd,\n response: str\n };\n if (codes) {\n data.status = Number(codes[1]) || 0;\n if (codes[2]) {\n data.code = codes[2];\n }\n data.text = str.substr(codes[0].length);\n } else {\n data.text = str;\n data.status = 0; // just in case we need to perform numeric comparisons\n }\n done(null, data);\n });\n setImmediate(() => this._sendCommand(cmd));\n\n return promise;\n },\n\n resolve,\n reject\n });\n\n if (handlerResponse && typeof handlerResponse.catch === 'function') {\n // a promise was returned\n handlerResponse.then(resolve).catch(reject);\n }\n\n return;\n }\n\n switch (this._authMethod) {\n case 'XOAUTH2':\n this._handleXOauth2Token(false, callback);\n return;\n case 'LOGIN':\n this._responseActions.push(str => {\n this._actionAUTH_LOGIN_USER(str, callback);\n });\n this._sendCommand('AUTH LOGIN');\n return;\n case 'PLAIN':\n this._responseActions.push(str => {\n this._actionAUTHComplete(str, callback);\n });\n this._sendCommand(\n 'AUTH PLAIN ' +\n Buffer.from(\n //this._auth.user+'\\u0000'+\n '\\u0000' + // skip authorization identity as it causes problems with some servers\n this._auth.credentials.user +\n '\\u0000' +\n this._auth.credentials.pass,\n 'utf-8'\n ).toString('base64'),\n // log entry without passwords\n 'AUTH PLAIN ' +\n Buffer.from(\n //this._auth.user+'\\u0000'+\n '\\u0000' + // skip authorization identity as it causes problems with some servers\n this._auth.credentials.user +\n '\\u0000' +\n '/* secret */',\n 'utf-8'\n ).toString('base64')\n );\n return;\n case 'CRAM-MD5':\n this._responseActions.push(str => {\n this._actionAUTH_CRAM_MD5(str, callback);\n });\n this._sendCommand('AUTH CRAM-MD5');\n return;\n }\n\n return callback(this._formatError('Unknown authentication method \"' + this._authMethod + '\"', 'EAUTH', false, 'API'));\n }\n\n /**\n * Sends a message\n *\n * @param {Object} envelope Envelope object, {from: addr, to: [addr]}\n * @param {Object} message String, Buffer or a Stream\n * @param {Function} callback Callback to return once sending is completed\n */\n send(envelope, message, done) {\n if (!message) {\n return done(this._formatError('Empty message', 'EMESSAGE', false, 'API'));\n }\n\n const isDestroyedMessage = this._isDestroyedMessage('send message');\n if (isDestroyedMessage) {\n return done(this._formatError(isDestroyedMessage, 'ECONNECTION', false, 'API'));\n }\n\n // reject larger messages than allowed\n if (this._maxAllowedSize && envelope.size > this._maxAllowedSize) {\n return setImmediate(() => {\n done(this._formatError('Message size larger than allowed ' + this._maxAllowedSize, 'EMESSAGE', false, 'MAIL FROM'));\n });\n }\n\n // ensure that callback is only called once\n let returned = false;\n const callback = function () {\n if (returned) {\n return;\n }\n returned = true;\n\n done(...arguments);\n };\n\n if (typeof message.on === 'function') {\n message.on('error', err => callback(this._formatError(err, 'ESTREAM', false, 'API')));\n }\n\n const startTime = Date.now();\n this._setEnvelope(envelope, (err, info) => {\n if (err) {\n // create passthrough stream to consume to prevent OOM\n const stream = new PassThrough();\n if (typeof message.pipe === 'function') {\n message.pipe(stream);\n } else {\n stream.write(message);\n stream.end();\n }\n\n return callback(err);\n }\n const envelopeTime = Date.now();\n const stream = this._createSendStream((err, str) => {\n if (err) {\n return callback(err);\n }\n\n info.envelopeTime = envelopeTime - startTime;\n info.messageTime = Date.now() - envelopeTime;\n info.messageSize = stream.outByteCount;\n info.response = str;\n\n return callback(null, info);\n });\n if (typeof message.pipe === 'function') {\n message.pipe(stream);\n } else {\n stream.write(message);\n stream.end();\n }\n });\n }\n\n /**\n * Resets connection state\n *\n * @param {Function} callback Callback to return once connection is reset\n */\n reset(callback) {\n this._sendCommand('RSET');\n this._responseActions.push(str => {\n if (str.charAt(0) !== '2') {\n return callback(this._formatError('Could not reset session state. response=' + str, 'EPROTOCOL', str, 'RSET'));\n }\n this._envelope = false;\n return callback(null, true);\n });\n }\n\n /**\n * Connection listener that is run when the connection to\n * the server is opened\n *\n * @event\n */\n _onConnect() {\n clearTimeout(this._connectionTimeout);\n\n this.logger.info(\n {\n tnx: 'network',\n localAddress: this._socket.localAddress,\n localPort: this._socket.localPort,\n remoteAddress: this._socket.remoteAddress,\n remotePort: this._socket.remotePort\n },\n '%s established to %s:%s',\n this.secure ? 'Secure connection' : 'Connection',\n this._socket.remoteAddress,\n this._socket.remotePort\n );\n\n if (this._destroyed) {\n // Connection was established after we already had canceled it\n this.close();\n return;\n }\n\n this.stage = 'connected';\n\n // clear existing listeners for the socket\n this._socket.removeListener('data', this._onSocketData);\n this._socket.removeListener('timeout', this._onSocketTimeout);\n this._socket.removeListener('close', this._onSocketClose);\n this._socket.removeListener('end', this._onSocketEnd);\n // Switch from connection-phase error handler to normal error handler\n this._socket.removeListener('error', this._onConnectionSocketError);\n\n this._socket.on('error', this._onSocketError);\n this._socket.on('data', this._onSocketData);\n this._socket.once('close', this._onSocketClose);\n this._socket.once('end', this._onSocketEnd);\n\n this._socket.setTimeout(this.options.socketTimeout || SOCKET_TIMEOUT);\n this._socket.on('timeout', this._onSocketTimeout);\n\n this._greetingTimeout = setTimeout(() => {\n // if still waiting for greeting, give up\n if (this._socket && !this._destroyed && this._responseActions[0] === this._actionGreeting) {\n this._onError('Greeting never received', 'ETIMEDOUT', false, 'CONN');\n }\n }, this.options.greetingTimeout || GREETING_TIMEOUT);\n\n this._responseActions.push(this._actionGreeting);\n\n // we have a 'data' listener set up so resume socket if it was paused\n this._socket.resume();\n }\n\n /**\n * 'data' listener for data coming from the server\n *\n * @event\n * @param {Buffer} chunk Data chunk coming from the server\n */\n _onData(chunk) {\n if (this._destroyed || !chunk || !chunk.length) {\n return;\n }\n\n let data = chunk.toString('binary');\n let lines = (this._remainder + data).split(/\\r?\\n/);\n let lastline;\n\n this._remainder = lines.pop();\n\n for (let i = 0, len = lines.length; i < len; i++) {\n if (this._responseQueue.length) {\n lastline = this._responseQueue[this._responseQueue.length - 1];\n if (/^\\d+-/.test(lastline.split('\\n').pop())) {\n this._responseQueue[this._responseQueue.length - 1] += '\\n' + lines[i];\n continue;\n }\n }\n this._responseQueue.push(lines[i]);\n }\n\n if (this._responseQueue.length) {\n lastline = this._responseQueue[this._responseQueue.length - 1];\n if (/^\\d+-/.test(lastline.split('\\n').pop())) {\n return;\n }\n }\n\n this._processResponse();\n }\n\n /**\n * 'error' listener for the socket\n *\n * @event\n * @param {Error} err Error object\n * @param {String} type Error name\n */\n _onError(err, type, data, command) {\n clearTimeout(this._connectionTimeout);\n clearTimeout(this._greetingTimeout);\n\n if (this._destroyed) {\n // just ignore, already closed\n // this might happen when a socket is canceled because of reached timeout\n // but the socket timeout error itself receives only after\n return;\n }\n\n err = this._formatError(err, type, data, command);\n\n const transientCodes = ['ETIMEDOUT', 'ESOCKET', 'ECONNECTION'];\n if (transientCodes.includes(err.code)) {\n this.logger.warn(data, err.message);\n } else {\n this.logger.error(data, err.message);\n }\n\n this.emit('error', err);\n this.close();\n }\n\n _formatError(message, type, response, command) {\n let err;\n\n if (/Error\\]$/i.test(Object.prototype.toString.call(message))) {\n err = message;\n } else {\n err = new Error(message);\n }\n\n if (type && type !== 'Error') {\n err.code = type;\n }\n\n if (response) {\n err.response = response;\n err.message += ': ' + response;\n }\n\n const responseCode = (typeof response === 'string' && Number((response.match(/^\\d+/) || [])[0])) || false;\n if (responseCode) {\n err.responseCode = responseCode;\n }\n\n if (command) {\n err.command = command;\n }\n\n return err;\n }\n\n /**\n * 'close' listener for the socket\n *\n * @event\n */\n _onClose() {\n let serverResponse = false;\n\n if (this._remainder && this._remainder.trim()) {\n this.lastServerResponse = serverResponse = decodeServerResponse(this._remainder.trim());\n if (this.options.debug || this.options.transactionLog) {\n this.logger.debug(\n {\n tnx: 'server'\n },\n serverResponse\n );\n }\n }\n\n this.logger.info(\n {\n tnx: 'network'\n },\n 'Connection closed'\n );\n\n if (this.upgrading && !this._destroyed) {\n return this._onError(new Error('Connection closed unexpectedly'), 'ETLS', serverResponse, 'CONN');\n } else if (![this._actionGreeting, this.close].includes(this._responseActions[0]) && !this._destroyed) {\n return this._onError(new Error('Connection closed unexpectedly'), 'ECONNECTION', serverResponse, 'CONN');\n } else if (/^[45]\\d{2}\\b/.test(serverResponse)) {\n return this._onError(new Error('Connection closed unexpectedly'), 'ECONNECTION', serverResponse, 'CONN');\n }\n\n this._destroy();\n }\n\n /**\n * 'end' listener for the socket\n *\n * @event\n */\n _onEnd() {\n if (this._socket && !this._socket.destroyed) {\n // Peer sent FIN — finish our half of the close gracefully rather\n // than destroying. 'close' fires after the OS finalizes teardown.\n this._socket.end();\n }\n }\n\n /**\n * 'timeout' listener for the socket\n *\n * @event\n */\n _onTimeout() {\n return this._onError(new Error('Timeout'), 'ETIMEDOUT', false, 'CONN');\n }\n\n /**\n * Destroys the client, emits 'end'\n */\n _destroy() {\n if (this._destroyed) {\n return;\n }\n this._destroyed = true;\n this.emit('end');\n }\n\n /**\n * Upgrades the connection to TLS\n *\n * @param {Function} callback Callback function to run when the connection\n * has been secured\n */\n _upgradeConnection(callback) {\n // do not remove all listeners or it breaks node v0.10 as there's\n // apparently a 'finish' event set that would be cleared as well\n\n // we can safely keep 'error', 'end', 'close' etc. events\n this._socket.removeListener('data', this._onSocketData); // incoming data is going to be gibberish from this point onwards\n this._socket.removeListener('timeout', this._onSocketTimeout); // timeout will be re-set for the new socket object\n\n const socketPlain = this._socket;\n const opts = Object.assign(\n {\n socket: this._socket,\n host: this.host\n },\n this.options.tls || {}\n );\n\n // ensure servername for SNI\n if (this.servername && !opts.servername) {\n opts.servername = this.servername;\n }\n\n // Remove all listeners from the plain socket to allow proper garbage\n // collection. Used on both the TLS-success path and the synchronous\n // tls.connect() throw path; either way the plain socket is done.\n const removePlainSocketListeners = () => {\n socketPlain.removeListener('close', this._onSocketClose);\n socketPlain.removeListener('end', this._onSocketEnd);\n socketPlain.removeListener('error', this._onSocketError);\n };\n\n this.upgrading = true;\n // tls.connect is not an asynchronous function however it may still throw errors and requires to be wrapped with try/catch\n try {\n this._socket = tls.connect(opts, () => {\n this.secure = true;\n this.upgrading = false;\n this._socket.on('data', this._onSocketData);\n\n removePlainSocketListeners();\n\n return callback(null, true);\n });\n } catch (err) {\n removePlainSocketListeners();\n return callback(err);\n }\n\n this._socket.on('error', this._onSocketError);\n this._socket.once('close', this._onSocketClose);\n this._socket.once('end', this._onSocketEnd);\n\n this._socket.setTimeout(this.options.socketTimeout || SOCKET_TIMEOUT); // 10 min.\n this._socket.on('timeout', this._onSocketTimeout);\n\n // resume in case the socket was paused\n socketPlain.resume();\n }\n\n /**\n * Processes queued responses from the server\n *\n * @param {Boolean} force If true, ignores _processing flag\n */\n _processResponse() {\n if (!this._responseQueue.length) {\n return false;\n }\n\n let str = (this.lastServerResponse = decodeServerResponse((this._responseQueue.shift() || '').toString()));\n\n if (/^\\d+-/.test(str.split('\\n').pop())) {\n // keep waiting for the final part of multiline response\n return;\n }\n\n if (this.options.debug || this.options.transactionLog) {\n this.logger.debug(\n {\n tnx: 'server'\n },\n str.replace(/\\r?\\n$/, '')\n );\n }\n\n if (!str.trim()) {\n // skip unexpected empty lines\n setImmediate(() => this._processResponse());\n }\n\n const action = this._responseActions.shift();\n\n if (typeof action === 'function') {\n action.call(this, str);\n setImmediate(() => this._processResponse());\n } else {\n return this._onError(new Error('Unexpected Response'), 'EPROTOCOL', str, 'CONN');\n }\n }\n\n /**\n * Send a command to the server, append \\r\\n\n *\n * @param {String} str String to be sent to the server\n * @param {String} logStr Optional string to be used for logging instead of the actual string\n */\n _sendCommand(str, logStr) {\n if (this._destroyed) {\n // Connection already closed, can't send any more data\n return;\n }\n\n if (this._socket.destroyed) {\n return this.close();\n }\n\n if (this.options.debug || this.options.transactionLog) {\n this.logger.debug(\n {\n tnx: 'client'\n },\n (logStr || str || '').toString().replace(/\\r?\\n$/, '')\n );\n }\n\n this._socket.write(Buffer.from(str + '\\r\\n', 'utf-8'));\n }\n\n /**\n * Initiates a new message by submitting envelope data, starting with\n * MAIL FROM: command\n *\n * @param {Object} envelope Envelope object in the form of\n * {from:'...', to:['...']}\n * or\n * {from:{address:'...',name:'...'}, to:[address:'...',name:'...']}\n */\n _setEnvelope(envelope, callback) {\n const args = [];\n let useSmtpUtf8 = false;\n\n this._envelope = envelope || {};\n this._envelope.from = ((this._envelope.from && this._envelope.from.address) || this._envelope.from || '').toString().trim();\n\n this._envelope.to = [].concat(this._envelope.to || []).map(to => ((to && to.address) || to || '').toString().trim());\n\n if (!this._envelope.to.length) {\n return callback(this._formatError('No recipients defined', 'EENVELOPE', false, 'API'));\n }\n\n if (this._envelope.from && /[\\r\\n<>]/.test(this._envelope.from)) {\n return callback(this._formatError('Invalid sender ' + JSON.stringify(this._envelope.from), 'EENVELOPE', false, 'API'));\n }\n\n // check if the sender address uses only ASCII characters,\n // otherwise require usage of SMTPUTF8 extension\n if (/[\\x80-\\uFFFF]/.test(this._envelope.from)) {\n useSmtpUtf8 = true;\n }\n\n for (let i = 0, len = this._envelope.to.length; i < len; i++) {\n if (!this._envelope.to[i] || /[\\r\\n<>]/.test(this._envelope.to[i])) {\n return callback(this._formatError('Invalid recipient ' + JSON.stringify(this._envelope.to[i]), 'EENVELOPE', false, 'API'));\n }\n\n // check if the recipients addresses use only ASCII characters,\n // otherwise require usage of SMTPUTF8 extension\n if (/[\\x80-\\uFFFF]/.test(this._envelope.to[i])) {\n useSmtpUtf8 = true;\n }\n }\n\n // clone the recipients array for latter manipulation\n this._envelope.rcptQueue = [].concat(this._envelope.to || []);\n this._envelope.rejected = [];\n this._envelope.rejectedErrors = [];\n this._envelope.accepted = [];\n\n if (this._envelope.dsn) {\n try {\n this._envelope.dsn = this._setDsnEnvelope(this._envelope.dsn);\n } catch (err) {\n return callback(this._formatError('Invalid DSN ' + err.message, 'EENVELOPE', false, 'API'));\n }\n }\n\n this._responseActions.push(str => {\n this._actionMAIL(str, callback);\n });\n\n // If the server supports SMTPUTF8 and the envelope includes an internationalized\n // email address then append SMTPUTF8 keyword to the MAIL FROM command\n if (useSmtpUtf8 && this._supportedExtensions.includes('SMTPUTF8')) {\n args.push('SMTPUTF8');\n this._usingSmtpUtf8 = true;\n }\n\n // If the server supports 8BITMIME and the message might contain non-ascii bytes\n // then append the 8BITMIME keyword to the MAIL FROM command\n if (this._envelope.use8BitMime && this._supportedExtensions.includes('8BITMIME')) {\n args.push('BODY=8BITMIME');\n this._using8BitMime = true;\n }\n\n if (this._envelope.size && this._supportedExtensions.includes('SIZE')) {\n const sizeValue = Number(this._envelope.size) || 0;\n if (sizeValue > 0) {\n args.push('SIZE=' + sizeValue);\n }\n }\n\n // If the server supports DSN and the envelope includes an DSN prop\n // then append DSN params to the MAIL FROM command\n if (this._envelope.dsn && this._supportedExtensions.includes('DSN')) {\n if (this._envelope.dsn.ret) {\n args.push('RET=' + shared.encodeXText(this._envelope.dsn.ret));\n }\n if (this._envelope.dsn.envid) {\n args.push('ENVID=' + shared.encodeXText(this._envelope.dsn.envid));\n }\n }\n\n // RFC 8689: If the envelope requests REQUIRETLS extension\n // then append REQUIRETLS keyword to the MAIL FROM command\n // Note: REQUIRETLS can only be used over TLS connections and requires server support\n if (this._envelope.requireTLSExtensionEnabled) {\n if (!this.secure) {\n return callback(\n this._formatError('REQUIRETLS can only be used over TLS connections (RFC 8689)', 'EREQUIRETLS', false, 'MAIL FROM')\n );\n }\n if (!this._supportedExtensions.includes('REQUIRETLS')) {\n return callback(\n this._formatError('Server does not support REQUIRETLS extension (RFC 8689)', 'EREQUIRETLS', false, 'MAIL FROM')\n );\n }\n args.push('REQUIRETLS');\n }\n\n this._sendCommand('MAIL FROM:<' + this._envelope.from + '>' + (args.length ? ' ' + args.join(' ') : ''));\n }\n\n _setDsnEnvelope(params) {\n let ret = (params.ret || params.return || '').toString().toUpperCase() || null;\n if (ret) {\n switch (ret) {\n case 'HDRS':\n case 'HEADERS':\n ret = 'HDRS';\n break;\n case 'FULL':\n case 'BODY':\n ret = 'FULL';\n break;\n }\n }\n\n if (ret && !['FULL', 'HDRS'].includes(ret)) {\n throw new Error('ret: ' + JSON.stringify(ret));\n }\n\n const envid = (params.envid || params.id || '').toString() || null;\n\n let notify = params.notify || null;\n if (notify) {\n if (typeof notify === 'string') {\n notify = notify.split(',');\n }\n notify = notify.map(n => n.trim().toUpperCase());\n const validNotify = ['NEVER', 'SUCCESS', 'FAILURE', 'DELAY'];\n const invalidNotify = notify.filter(n => !validNotify.includes(n));\n if (invalidNotify.length || (notify.length > 1 && notify.includes('NEVER'))) {\n throw new Error('notify: ' + JSON.stringify(notify.join(',')));\n }\n notify = notify.join(',');\n }\n\n let orcpt = (params.recipient || params.orcpt || '').toString() || null;\n if (orcpt && orcpt.indexOf(';') < 0) {\n orcpt = 'rfc822;' + orcpt;\n }\n\n return {\n ret,\n envid,\n notify,\n orcpt\n };\n }\n\n _getDsnRcptToArgs() {\n const args = [];\n // If the server supports DSN and the envelope includes an DSN prop\n // then append DSN params to the RCPT TO command\n if (this._envelope.dsn && this._supportedExtensions.includes('DSN')) {\n if (this._envelope.dsn.notify) {\n args.push('NOTIFY=' + shared.encodeXText(this._envelope.dsn.notify));\n }\n if (this._envelope.dsn.orcpt) {\n args.push('ORCPT=' + shared.encodeXText(this._envelope.dsn.orcpt));\n }\n }\n return args.length ? ' ' + args.join(' ') : '';\n }\n\n _createSendStream(callback) {\n const dataStream = new DataStream();\n\n if (this.options.lmtp) {\n this._envelope.accepted.forEach((recipient, i) => {\n const final = i === this._envelope.accepted.length - 1;\n this._responseActions.push(str => {\n this._actionLMTPStream(recipient, final, str, callback);\n });\n });\n } else {\n this._responseActions.push(str => {\n this._actionSMTPStream(str, callback);\n });\n }\n\n this._currentDataStream = dataStream;\n dataStream.pipe(this._socket, {\n end: false\n });\n\n if (this.options.debug) {\n const logStream = new PassThrough();\n logStream.on('readable', () => {\n let chunk;\n while ((chunk = logStream.read())) {\n this.logger.debug(\n {\n tnx: 'message'\n },\n chunk.toString('binary').replace(/\\r?\\n$/, '')\n );\n }\n });\n dataStream.pipe(logStream);\n }\n\n dataStream.once('end', () => {\n if (this._currentDataStream === dataStream) {\n this._currentDataStream = false;\n }\n this.logger.info(\n {\n tnx: 'message',\n inByteCount: dataStream.inByteCount,\n outByteCount: dataStream.outByteCount\n },\n '<%s bytes encoded mime message (source size %s bytes)>',\n dataStream.outByteCount,\n dataStream.inByteCount\n );\n });\n\n return dataStream;\n }\n\n /** ACTIONS **/\n\n /**\n * Will be run after the connection is created and the server sends\n * a greeting. If the incoming message starts with 220 initiate\n * SMTP session by sending EHLO command\n *\n * @param {String} str Message from the server\n */\n _actionGreeting(str) {\n clearTimeout(this._greetingTimeout);\n\n if (str.substr(0, 3) !== '220') {\n this._onError(new Error('Invalid greeting. response=' + str), 'EPROTOCOL', str, 'CONN');\n return;\n }\n\n if (this.options.lmtp) {\n this._responseActions.push(this._actionLHLO);\n this._sendCommand('LHLO ' + this.name);\n } else {\n this._responseActions.push(this._actionEHLO);\n this._sendCommand('EHLO ' + this.name);\n }\n }\n\n /**\n * Handles server response for LHLO command. If it yielded in\n * error, emit 'error', otherwise treat this as an EHLO response\n *\n * @param {String} str Message from the server\n */\n _actionLHLO(str) {\n if (str.charAt(0) !== '2') {\n this._onError(new Error('Invalid LHLO. response=' + str), 'EPROTOCOL', str, 'LHLO');\n return;\n }\n\n this._actionEHLO(str);\n }\n\n /**\n * Handles server response for EHLO command. If it yielded in\n * error, try HELO instead, otherwise initiate TLS negotiation\n * if STARTTLS is supported by the server or move into the\n * authentication phase.\n *\n * @param {String} str Message from the server\n */\n _actionEHLO(str) {\n let match;\n\n if (str.substr(0, 3) === '421') {\n this._onError(new Error('Server terminates connection. response=' + str), 'ECONNECTION', str, 'EHLO');\n return;\n }\n\n if (str.charAt(0) !== '2') {\n if (this.options.requireTLS) {\n this._onError(\n new Error('EHLO failed but HELO does not support required STARTTLS. response=' + str),\n 'ECONNECTION',\n str,\n 'EHLO'\n );\n return;\n }\n\n // Try HELO instead\n this._responseActions.push(this._actionHELO);\n this._sendCommand('HELO ' + this.name);\n return;\n }\n\n this._ehloLines = str\n .split(/\\r?\\n/)\n .map(line => line.replace(/^\\d+[ -]/, '').trim())\n .filter(line => line)\n .slice(1);\n\n // Detect if the server supports STARTTLS\n if (!this.secure && !this.options.ignoreTLS && (/[ -]STARTTLS\\b/im.test(str) || this.options.requireTLS)) {\n this._sendCommand('STARTTLS');\n this._responseActions.push(this._actionSTARTTLS);\n return;\n }\n\n // Detect if the server supports SMTPUTF8\n if (/[ -]SMTPUTF8\\b/im.test(str)) {\n this._supportedExtensions.push('SMTPUTF8');\n }\n\n // Detect if the server supports DSN\n if (/[ -]DSN\\b/im.test(str)) {\n this._supportedExtensions.push('DSN');\n }\n\n // Detect if the server supports 8BITMIME\n if (/[ -]8BITMIME\\b/im.test(str)) {\n this._supportedExtensions.push('8BITMIME');\n }\n\n // Detect if the server supports REQUIRETLS (RFC 8689)\n if (/[ -]REQUIRETLS\\b/im.test(str)) {\n this._supportedExtensions.push('REQUIRETLS');\n }\n\n // Detect if the server supports PIPELINING\n if (/[ -]PIPELINING\\b/im.test(str)) {\n this._supportedExtensions.push('PIPELINING');\n }\n\n // Detect if the server supports AUTH\n if (/[ -]AUTH\\b/i.test(str)) {\n this.allowsAuth = true;\n }\n\n // Detect if the server supports PLAIN auth\n if (/[ -]AUTH(?:(\\s+|=)[^\\n]*\\s+|\\s+|=)PLAIN/i.test(str)) {\n this._supportedAuth.push('PLAIN');\n }\n\n // Detect if the server supports LOGIN auth\n if (/[ -]AUTH(?:(\\s+|=)[^\\n]*\\s+|\\s+|=)LOGIN/i.test(str)) {\n this._supportedAuth.push('LOGIN');\n }\n\n // Detect if the server supports CRAM-MD5 auth\n if (/[ -]AUTH(?:(\\s+|=)[^\\n]*\\s+|\\s+|=)CRAM-MD5/i.test(str)) {\n this._supportedAuth.push('CRAM-MD5');\n }\n\n // Detect if the server supports XOAUTH2 auth\n if (/[ -]AUTH(?:(\\s+|=)[^\\n]*\\s+|\\s+|=)XOAUTH2/i.test(str)) {\n this._supportedAuth.push('XOAUTH2');\n }\n\n // Detect if the server supports SIZE extensions (and the max allowed size)\n if ((match = str.match(/[ -]SIZE(?:[ \\t]+(\\d+))?/im))) {\n this._supportedExtensions.push('SIZE');\n this._maxAllowedSize = Number(match[1]) || 0;\n }\n\n this.emit('connect');\n }\n\n /**\n * Handles server response for HELO command. If it yielded in\n * error, emit 'error', otherwise move into the authentication phase.\n *\n * @param {String} str Message from the server\n */\n _actionHELO(str) {\n if (str.charAt(0) !== '2') {\n this._onError(new Error('Invalid HELO. response=' + str), 'EPROTOCOL', str, 'HELO');\n return;\n }\n\n // assume that authentication is enabled (most probably is not though)\n this.allowsAuth = true;\n\n this.emit('connect');\n }\n\n /**\n * Handles server response for STARTTLS command. If there's an error\n * try HELO instead, otherwise initiate TLS upgrade. If the upgrade\n * succeedes restart the EHLO\n *\n * @param {String} str Message from the server\n */\n _actionSTARTTLS(str) {\n if (str.charAt(0) !== '2') {\n if (this.options.opportunisticTLS) {\n this.logger.info(\n {\n tnx: 'smtp'\n },\n 'Failed STARTTLS upgrade, continuing unencrypted'\n );\n return this.emit('connect');\n }\n this._onError(new Error('Error upgrading connection with STARTTLS'), 'ETLS', str, 'STARTTLS');\n return;\n }\n\n this._upgradeConnection((err, secured) => {\n if (err) {\n this._onError(new Error('Error initiating TLS - ' + (err.message || err)), 'ETLS', false, 'STARTTLS');\n return;\n }\n\n this.logger.info(\n {\n tnx: 'smtp'\n },\n 'Connection upgraded with STARTTLS'\n );\n\n if (secured) {\n // restart session\n if (this.options.lmtp) {\n this._responseActions.push(this._actionLHLO);\n this._sendCommand('LHLO ' + this.name);\n } else {\n this._responseActions.push(this._actionEHLO);\n this._sendCommand('EHLO ' + this.name);\n }\n } else {\n this.emit('connect');\n }\n });\n }\n\n /**\n * Handle the response for AUTH LOGIN command. We are expecting\n * '334 VXNlcm5hbWU6' (base64 for 'Username:'). Data to be sent as\n * response needs to be base64 encoded username. We do not need\n * exact match but settle with 334 response in general as some\n * hosts invalidly use a longer message than VXNlcm5hbWU6\n *\n * @param {String} str Message from the server\n */\n _actionAUTH_LOGIN_USER(str, callback) {\n if (!/^334[ -]/.test(str)) {\n // expecting '334 VXNlcm5hbWU6'\n callback(this._formatError('Invalid login sequence while waiting for \"334 VXNlcm5hbWU6\"', 'EAUTH', str, 'AUTH LOGIN'));\n return;\n }\n\n this._responseActions.push(str => {\n this._actionAUTH_LOGIN_PASS(str, callback);\n });\n\n this._sendCommand(Buffer.from(this._auth.credentials.user + '', 'utf-8').toString('base64'));\n }\n\n /**\n * Handle the response for AUTH CRAM-MD5 command. We are expecting\n * '334 '. Data to be sent as response needs to be\n * base64 decoded challenge string, MD5 hashed using the password as\n * a HMAC key, prefixed by the username and a space, and finally all\n * base64 encoded again.\n *\n * @param {String} str Message from the server\n */\n _actionAUTH_CRAM_MD5(str, callback) {\n const challengeMatch = str.match(/^334\\s+(.+)$/);\n\n if (!challengeMatch) {\n return callback(\n this._formatError('Invalid login sequence while waiting for server challenge string', 'EAUTH', str, 'AUTH CRAM-MD5')\n );\n }\n\n // Decode from base64\n const base64decoded = Buffer.from(challengeMatch[1], 'base64').toString('ascii');\n const hmacMD5 = crypto.createHmac('md5', this._auth.credentials.pass);\n\n hmacMD5.update(base64decoded);\n\n const prepended = this._auth.credentials.user + ' ' + hmacMD5.digest('hex');\n\n this._responseActions.push(str => {\n this._actionAUTH_CRAM_MD5_PASS(str, callback);\n });\n\n this._sendCommand(\n Buffer.from(prepended).toString('base64'),\n // hidden hash for logs\n Buffer.from(this._auth.credentials.user + ' /* secret */').toString('base64')\n );\n }\n\n /**\n * Handles the response to CRAM-MD5 authentication, if there's no error,\n * the user can be considered logged in. Start waiting for a message to send\n *\n * @param {String} str Message from the server\n */\n _actionAUTH_CRAM_MD5_PASS(str, callback) {\n if (!str.match(/^235\\s+/)) {\n return callback(this._formatError('Invalid login sequence while waiting for \"235\"', 'EAUTH', str, 'AUTH CRAM-MD5'));\n }\n\n this.logger.info(\n {\n tnx: 'smtp',\n username: this._auth.user,\n action: 'authenticated',\n method: this._authMethod\n },\n 'User %s authenticated',\n JSON.stringify(this._auth.user)\n );\n this.authenticated = true;\n callback(null, true);\n }\n\n /**\n * Handle the response for AUTH LOGIN command. We are expecting\n * '334 UGFzc3dvcmQ6' (base64 for 'Password:'). Data to be sent as\n * response needs to be base64 encoded password.\n *\n * @param {String} str Message from the server\n */\n _actionAUTH_LOGIN_PASS(str, callback) {\n if (!/^334[ -]/.test(str)) {\n // expecting '334 UGFzc3dvcmQ6'\n return callback(this._formatError('Invalid login sequence while waiting for \"334 UGFzc3dvcmQ6\"', 'EAUTH', str, 'AUTH LOGIN'));\n }\n\n this._responseActions.push(str => {\n this._actionAUTHComplete(str, callback);\n });\n\n this._sendCommand(\n Buffer.from((this._auth.credentials.pass || '').toString(), 'utf-8').toString('base64'),\n // Hidden pass for logs\n Buffer.from('/* secret */', 'utf-8').toString('base64')\n );\n }\n\n /**\n * Handles the response for authentication, if there's no error,\n * the user can be considered logged in. Start waiting for a message to send\n *\n * @param {String} str Message from the server\n */\n _actionAUTHComplete(str, isRetry, callback) {\n if (!callback && typeof isRetry === 'function') {\n callback = isRetry;\n isRetry = false;\n }\n\n if (str.substr(0, 3) === '334') {\n this._responseActions.push(str => {\n if (isRetry || this._authMethod !== 'XOAUTH2') {\n this._actionAUTHComplete(str, true, callback);\n } else {\n // fetch a new OAuth2 access token\n setImmediate(() => this._handleXOauth2Token(true, callback));\n }\n });\n this._sendCommand('');\n return;\n }\n\n if (str.charAt(0) !== '2') {\n this.logger.info(\n {\n tnx: 'smtp',\n username: this._auth.user,\n action: 'authfail',\n method: this._authMethod\n },\n 'User %s failed to authenticate',\n JSON.stringify(this._auth.user)\n );\n return callback(this._formatError('Invalid login', 'EAUTH', str, 'AUTH ' + this._authMethod));\n }\n\n this.logger.info(\n {\n tnx: 'smtp',\n username: this._auth.user,\n action: 'authenticated',\n method: this._authMethod\n },\n 'User %s authenticated',\n JSON.stringify(this._auth.user)\n );\n this.authenticated = true;\n callback(null, true);\n }\n\n /**\n * Handle response for a MAIL FROM: command\n *\n * @param {String} str Message from the server\n */\n _actionMAIL(str, callback) {\n if (Number(str.charAt(0)) !== 2) {\n const message =\n this._usingSmtpUtf8 && /^550 /.test(str) && /[\\x80-\\uFFFF]/.test(this._envelope.from)\n ? 'Internationalized mailbox name not allowed'\n : 'Mail command failed';\n return callback(this._formatError(message, 'EENVELOPE', str, 'MAIL FROM'));\n }\n\n if (!this._envelope.rcptQueue.length) {\n return callback(this._formatError(\"Can't send mail - no recipients defined\", 'EENVELOPE', false, 'API'));\n }\n\n this._recipientQueue = [];\n const usePipelining = this._supportedExtensions.includes('PIPELINING');\n\n do {\n const curRecipient = this._envelope.rcptQueue.shift();\n this._recipientQueue.push(curRecipient);\n this._responseActions.push(str => {\n this._actionRCPT(str, callback);\n });\n this._sendCommand('RCPT TO:<' + curRecipient + '>' + this._getDsnRcptToArgs());\n } while (usePipelining && this._envelope.rcptQueue.length);\n }\n\n /**\n * Handle response for a RCPT TO: command\n *\n * @param {String} str Message from the server\n */\n _actionRCPT(str, callback) {\n let err;\n const curRecipient = this._recipientQueue.shift();\n if (Number(str.charAt(0)) !== 2) {\n // this is a soft error\n const message =\n this._usingSmtpUtf8 && /^553 /.test(str) && /[\\x80-\\uFFFF]/.test(curRecipient)\n ? 'Internationalized mailbox name not allowed'\n : 'Recipient command failed';\n this._envelope.rejected.push(curRecipient);\n // store error for the failed recipient\n err = this._formatError(message, 'EENVELOPE', str, 'RCPT TO');\n err.recipient = curRecipient;\n this._envelope.rejectedErrors.push(err);\n } else {\n this._envelope.accepted.push(curRecipient);\n }\n\n if (!this._envelope.rcptQueue.length && !this._recipientQueue.length) {\n if (this._envelope.rejected.length < this._envelope.to.length) {\n this._responseActions.push(str => {\n this._actionDATA(str, callback);\n });\n this._sendCommand('DATA');\n } else {\n err = this._formatError(\"Can't send mail - all recipients were rejected\", 'EENVELOPE', str, 'RCPT TO');\n err.rejected = this._envelope.rejected;\n err.rejectedErrors = this._envelope.rejectedErrors;\n return callback(err);\n }\n } else if (this._envelope.rcptQueue.length) {\n const nextRecipient = this._envelope.rcptQueue.shift();\n this._recipientQueue.push(nextRecipient);\n this._responseActions.push(str => {\n this._actionRCPT(str, callback);\n });\n this._sendCommand('RCPT TO:<' + nextRecipient + '>' + this._getDsnRcptToArgs());\n }\n }\n\n /**\n * Handle response for a DATA command\n *\n * @param {String} str Message from the server\n */\n _actionDATA(str, callback) {\n // response should be 354 but according to this issue https://github.com/eleith/emailjs/issues/24\n // some servers might use 250 instead, so lets check for 2 or 3 as the first digit\n if (!/^[23]/.test(str)) {\n return callback(this._formatError('Data command failed', 'EENVELOPE', str, 'DATA'));\n }\n\n const response = {\n accepted: this._envelope.accepted,\n rejected: this._envelope.rejected\n };\n\n if (this._ehloLines && this._ehloLines.length) {\n response.ehlo = this._ehloLines;\n }\n\n if (this._envelope.rejectedErrors.length) {\n response.rejectedErrors = this._envelope.rejectedErrors;\n }\n\n callback(null, response);\n }\n\n /**\n * Handle response for a DATA stream when using SMTP\n * We expect a single response that defines if the sending succeeded or failed\n *\n * @param {String} str Message from the server\n */\n _actionSMTPStream(str, callback) {\n if (Number(str.charAt(0)) !== 2) {\n return callback(this._formatError('Message failed', 'EMESSAGE', str, 'DATA'));\n }\n return callback(null, str);\n }\n\n /**\n * Handle response for a DATA stream\n * We expect a separate response for every recipient. All recipients can either\n * succeed or fail separately\n *\n * @param {String} recipient The recipient this response applies to\n * @param {Boolean} final Is this the final recipient?\n * @param {String} str Message from the server\n */\n _actionLMTPStream(recipient, final, str, callback) {\n let err;\n if (Number(str.charAt(0)) !== 2) {\n // Message failed\n err = this._formatError('Message failed for recipient ' + recipient, 'EMESSAGE', str, 'DATA');\n err.recipient = recipient;\n this._envelope.rejected.push(recipient);\n this._envelope.rejectedErrors.push(err);\n for (let i = 0, len = this._envelope.accepted.length; i < len; i++) {\n if (this._envelope.accepted[i] === recipient) {\n this._envelope.accepted.splice(i, 1);\n }\n }\n }\n if (final) {\n return callback(null, str);\n }\n }\n\n _handleXOauth2Token(isRetry, callback) {\n this._auth.oauth2.getToken(isRetry, (err, accessToken) => {\n if (err) {\n this.logger.info(\n {\n tnx: 'smtp',\n username: this._auth.user,\n action: 'authfail',\n method: this._authMethod\n },\n 'User %s failed to authenticate',\n JSON.stringify(this._auth.user)\n );\n return callback(this._formatError(err, 'EAUTH', false, 'AUTH XOAUTH2'));\n }\n this._responseActions.push(str => {\n this._actionAUTHComplete(str, isRetry, callback);\n });\n this._sendCommand(\n 'AUTH XOAUTH2 ' + this._auth.oauth2.buildXOAuth2Token(accessToken),\n // Hidden for logs\n 'AUTH XOAUTH2 ' + this._auth.oauth2.buildXOAuth2Token('/* secret */')\n );\n });\n }\n\n /**\n *\n * @param {string} command\n * @private\n */\n _isDestroyedMessage(command) {\n if (this._destroyed) {\n return 'Cannot ' + command + ' - smtp connection is already destroyed.';\n }\n\n if (this._socket) {\n if (this._socket.destroyed) {\n return 'Cannot ' + command + ' - smtp connection socket is already destroyed.';\n }\n\n if (!this._socket.writable) {\n return 'Cannot ' + command + ' - smtp connection socket is already half-closed.';\n }\n }\n }\n\n _getHostname() {\n // defaul hostname is machine hostname or [IP]\n let defaultHostname;\n try {\n defaultHostname = os.hostname() || '';\n } catch (_err) {\n // fails on windows 7\n defaultHostname = 'localhost';\n }\n\n // ignore if not FQDN\n if (!defaultHostname || defaultHostname.indexOf('.') < 0) {\n defaultHostname = '[127.0.0.1]';\n }\n\n // IP should be enclosed in []\n if (defaultHostname.match(/^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}$/)) {\n defaultHostname = '[' + defaultHostname + ']';\n }\n\n return defaultHostname;\n }\n}\n\nmodule.exports = SMTPConnection;\n","'use strict';\n\nconst { Stream } = require('stream');\nconst nmfetch = require('../fetch');\nconst crypto = require('crypto');\nconst shared = require('../shared');\nconst errors = require('../errors');\n\n/**\n * XOAUTH2 access_token generator for Gmail.\n * Create client ID for web applications in Google API console to use it.\n * See Offline Access for receiving the needed refreshToken for an user\n * https://developers.google.com/accounts/docs/OAuth2WebServer#offline\n *\n * Usage for generating access tokens with a custom method using provisionCallback:\n * provisionCallback(user, renew, callback)\n * * user is the username to get the token for\n * * renew is a boolean that if true indicates that existing token failed and needs to be renewed\n * * callback is the callback to run with (error, accessToken [, expires])\n * * accessToken is a string\n * * expires is an optional expire time in milliseconds\n * If provisionCallback is used, then Nodemailer does not try to attempt generating the token by itself\n *\n * @constructor\n * @param {Object} options Client information for token generation\n * @param {String} options.user User e-mail address\n * @param {String} options.clientId Client ID value\n * @param {String} options.clientSecret Client secret value\n * @param {String} options.refreshToken Refresh token for an user\n * @param {String} options.accessUrl Endpoint for token generation, defaults to 'https://accounts.google.com/o/oauth2/token'\n * @param {String} options.accessToken An existing valid accessToken\n * @param {String} options.privateKey Private key for JSW\n * @param {Number} options.expires Optional Access Token expire time in ms\n * @param {Number} options.timeout Optional TTL for Access Token in seconds\n * @param {Function} options.provisionCallback Function to run when a new access token is required\n * @param {Object} options.tls Optional TLS options forwarded to the HTTPS token request. Defaults to strict cert validation; supply { rejectUnauthorized: false } only for self-hosted OAuth providers on private CAs.\n */\nclass XOAuth2 extends Stream {\n constructor(options, logger) {\n super();\n\n this.options = options || {};\n\n if (options && options.serviceClient) {\n if (!options.privateKey || !options.user) {\n const err = new Error('Options \"privateKey\" and \"user\" are required for service account!');\n err.code = errors.EOAUTH2;\n setImmediate(() => this.emit('error', err));\n return;\n }\n\n const serviceRequestTimeout = Math.min(Math.max(Number(this.options.serviceRequestTimeout) || 0, 0), 3600);\n this.options.serviceRequestTimeout = serviceRequestTimeout || 5 * 60;\n }\n\n this.logger = shared.getLogger(\n {\n logger\n },\n {\n component: this.options.component || 'OAuth2'\n }\n );\n\n this.provisionCallback = typeof this.options.provisionCallback === 'function' ? this.options.provisionCallback : false;\n\n this.options.accessUrl = this.options.accessUrl || 'https://accounts.google.com/o/oauth2/token';\n this.options.customHeaders = this.options.customHeaders || {};\n this.options.customParams = this.options.customParams || {};\n\n this.accessToken = this.options.accessToken || false;\n\n if (this.options.expires && Number(this.options.expires)) {\n this.expires = this.options.expires;\n } else {\n const timeout = Math.max(Number(this.options.timeout) || 0, 0);\n this.expires = (timeout && Date.now() + timeout * 1000) || 0;\n }\n\n this.renewing = false; // Track if renewal is in progress\n this.renewalQueue = []; // Queue for pending requests during renewal\n }\n\n /**\n * Returns or generates (if previous has expired) a XOAuth2 token\n *\n * @param {Boolean} renew If false then use cached access token (if available)\n * @param {Function} callback Callback function with error object and token string\n */\n getToken(renew, callback) {\n if (!renew && this.accessToken && (!this.expires || this.expires > Date.now())) {\n this.logger.debug(\n {\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'reuse'\n },\n 'Reusing existing access token for %s',\n this.options.user\n );\n return callback(null, this.accessToken);\n }\n\n // check if it is possible to renew, if not, return the current token or error\n if (!this.provisionCallback && !this.options.refreshToken && !this.options.serviceClient) {\n if (this.accessToken) {\n this.logger.debug(\n {\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'reuse'\n },\n 'Reusing existing access token (no refresh capability) for %s',\n this.options.user\n );\n return callback(null, this.accessToken);\n }\n this.logger.error(\n {\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'renew'\n },\n 'Cannot renew access token for %s: No refresh mechanism available',\n this.options.user\n );\n const err = new Error(\"Can't create new access token for user\");\n err.code = errors.EOAUTH2;\n return callback(err);\n }\n\n // If renewal already in progress, queue this request instead of starting another\n if (this.renewing) {\n return this.renewalQueue.push({ renew, callback });\n }\n\n this.renewing = true;\n\n // Handles token renewal completion - processes queued requests and cleans up\n const generateCallback = (err, accessToken) => {\n this.renewalQueue.forEach(item => item.callback(err, accessToken));\n this.renewalQueue = [];\n this.renewing = false;\n\n if (err) {\n this.logger.error(\n {\n err,\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'renew'\n },\n 'Failed generating new Access Token for %s',\n this.options.user\n );\n } else {\n this.logger.info(\n {\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'renew'\n },\n 'Generated new Access Token for %s',\n this.options.user\n );\n }\n // Complete original request\n callback(err, accessToken);\n };\n\n if (this.provisionCallback) {\n this.provisionCallback(this.options.user, !!renew, (err, accessToken, expires) => {\n if (!err && accessToken) {\n this.accessToken = accessToken;\n this.expires = expires || 0;\n }\n generateCallback(err, accessToken);\n });\n } else {\n this.generateToken(generateCallback);\n }\n }\n\n /**\n * Updates token values\n *\n * @param {String} accessToken New access token\n * @param {Number} timeout Access token lifetime in seconds\n *\n * Emits 'token': { user: User email-address, accessToken: the new accessToken, timeout: TTL in seconds}\n */\n updateToken(accessToken, timeout) {\n this.accessToken = accessToken;\n timeout = Math.max(Number(timeout) || 0, 0);\n this.expires = (timeout && Date.now() + timeout * 1000) || 0;\n\n this.emit('token', {\n user: this.options.user,\n accessToken: accessToken || '',\n expires: this.expires\n });\n }\n\n /**\n * Generates a new XOAuth2 token with the credentials provided at initialization\n *\n * @param {Function} callback Callback function with error object and token string\n */\n generateToken(callback) {\n let urlOptions;\n let loggedUrlOptions;\n if (this.options.serviceClient) {\n // service account - https://developers.google.com/identity/protocols/OAuth2ServiceAccount\n const iat = Math.floor(Date.now() / 1000); // unix time\n const tokenData = {\n iss: this.options.serviceClient,\n scope: this.options.scope || 'https://mail.google.com/',\n sub: this.options.user,\n aud: this.options.accessUrl,\n iat,\n exp: iat + this.options.serviceRequestTimeout\n };\n let token;\n try {\n token = this.jwtSignRS256(tokenData);\n } catch (_err) {\n const err = new Error(\"Can't generate token. Check your auth options\");\n err.code = errors.EOAUTH2;\n return callback(err);\n }\n\n urlOptions = {\n grant_type: 'urn:ietf:params:oauth:grant-type:jwt-bearer',\n assertion: token\n };\n\n loggedUrlOptions = {\n grant_type: 'urn:ietf:params:oauth:grant-type:jwt-bearer',\n assertion: tokenData\n };\n } else {\n if (!this.options.refreshToken) {\n const err = new Error(\"Can't create new access token for user\");\n err.code = errors.EOAUTH2;\n return callback(err);\n }\n\n // web app - https://developers.google.com/identity/protocols/OAuth2WebServer\n urlOptions = {\n client_id: this.options.clientId || '',\n client_secret: this.options.clientSecret || '',\n refresh_token: this.options.refreshToken,\n grant_type: 'refresh_token'\n };\n\n loggedUrlOptions = {\n client_id: this.options.clientId || '',\n client_secret: (this.options.clientSecret || '').substr(0, 6) + '...',\n refresh_token: (this.options.refreshToken || '').substr(0, 6) + '...',\n grant_type: 'refresh_token'\n };\n }\n\n Object.assign(urlOptions, this.options.customParams);\n Object.assign(loggedUrlOptions, this.options.customParams);\n\n this.logger.debug(\n {\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'generate'\n },\n 'Requesting token using: %s',\n JSON.stringify(loggedUrlOptions)\n );\n\n this.postRequest(this.options.accessUrl, urlOptions, this.options, (error, body) => {\n let data;\n\n if (error) {\n return callback(error);\n }\n\n try {\n data = JSON.parse(body.toString());\n } catch (E) {\n return callback(E);\n }\n\n if (!data || typeof data !== 'object') {\n this.logger.debug(\n {\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'post'\n },\n 'Response: %s',\n (body || '').toString()\n );\n const err = new Error('Invalid authentication response');\n err.code = errors.EOAUTH2;\n return callback(err);\n }\n\n const logData = Object.assign({}, data);\n if (logData.access_token) {\n logData.access_token = (logData.access_token || '').toString().substr(0, 6) + '...';\n }\n\n this.logger.debug(\n {\n tnx: 'OAUTH2',\n user: this.options.user,\n action: 'post'\n },\n 'Response: %s',\n JSON.stringify(logData)\n );\n\n if (data.error) {\n // Error Response : https://tools.ietf.org/html/rfc6749#section-5.2\n let errorMessage = data.error;\n if (data.error_description) {\n errorMessage += ': ' + data.error_description;\n }\n if (data.error_uri) {\n errorMessage += ' (' + data.error_uri + ')';\n }\n const err = new Error(errorMessage);\n err.code = errors.EOAUTH2;\n return callback(err);\n }\n\n if (data.access_token) {\n this.updateToken(data.access_token, data.expires_in);\n return callback(null, this.accessToken);\n }\n\n const err = new Error('No access token');\n err.code = errors.EOAUTH2;\n return callback(err);\n });\n }\n\n /**\n * Converts an access_token and user id into a base64 encoded XOAuth2 token\n *\n * @param {String} [accessToken] Access token string\n * @return {String} Base64 encoded token for IMAP or SMTP login\n */\n buildXOAuth2Token(accessToken) {\n const authData = ['user=' + (this.options.user || ''), 'auth=Bearer ' + (accessToken || this.accessToken), '', ''];\n return Buffer.from(authData.join('\\x01'), 'utf-8').toString('base64');\n }\n\n /**\n * Custom POST request handler.\n * This is only needed to keep paths short in Windows – usually this module\n * is a dependency of a dependency and if it tries to require something\n * like the request module the paths get way too long to handle for Windows.\n * As we do only a simple POST request we do not actually require complicated\n * logic support (no redirects, no nothing) anyway.\n *\n * @param {String} url Url to POST to\n * @param {String|Buffer} payload Payload to POST\n * @param {Function} callback Callback function with (err, buff)\n */\n postRequest(url, payload, params, callback) {\n let returned = false;\n\n const chunks = [];\n let chunklen = 0;\n\n const fetchOptions = {\n method: 'post',\n headers: params.customHeaders,\n body: payload,\n allowErrorResponse: true\n };\n\n // OAuth2 token endpoints are credential-bearing. lib/fetch already\n // validates certs by default; pin rejectUnauthorized:true here so the\n // token fetch stays strict, while still layering params.tls (the\n // user's options.tls) on top so callers with a self-hosted provider on\n // a private CA can override.\n if (/^https:/i.test(url)) {\n fetchOptions.tls = Object.assign({ rejectUnauthorized: true }, params.tls || {});\n }\n\n const req = nmfetch(url, fetchOptions);\n\n req.on('readable', () => {\n let chunk;\n while ((chunk = req.read()) !== null) {\n chunks.push(chunk);\n chunklen += chunk.length;\n }\n });\n\n req.once('error', err => {\n if (returned) {\n return;\n }\n returned = true;\n return callback(err);\n });\n\n req.once('end', () => {\n if (returned) {\n return;\n }\n returned = true;\n return callback(null, Buffer.concat(chunks, chunklen));\n });\n }\n\n /**\n * Encodes a buffer or a string into Base64url format\n *\n * @param {Buffer|String} data The data to convert\n * @return {String} The encoded string\n */\n toBase64URL(data) {\n if (typeof data === 'string') {\n data = Buffer.from(data);\n }\n\n return data\n .toString('base64')\n .replace(/[=]+/g, '') // remove '='s\n .replace(/\\+/g, '-') // '+' → '-'\n .replace(/\\//g, '_'); // '/' → '_'\n }\n\n /**\n * Creates a JSON Web Token signed with RS256 (SHA256 + RSA)\n *\n * @param {Object} payload The payload to include in the generated token\n * @return {String} The generated and signed token\n */\n jwtSignRS256(payload) {\n payload = ['{\"alg\":\"RS256\",\"typ\":\"JWT\"}', JSON.stringify(payload)].map(val => this.toBase64URL(val)).join('.');\n const signature = crypto.createSign('RSA-SHA256').update(payload).sign(this.options.privateKey);\n return payload + '.' + this.toBase64URL(signature);\n }\n}\n\nmodule.exports = XOAuth2;\n","'use strict';\n\nconst SMTPConnection = require('../smtp-connection');\nconst assign = require('../shared').assign;\nconst XOAuth2 = require('../xoauth2');\nconst errors = require('../errors');\nconst EventEmitter = require('events');\n\n/**\n * Creates an element for the pool\n *\n * @constructor\n * @param {Object} options SMTPPool instance\n */\nclass PoolResource extends EventEmitter {\n constructor(pool) {\n super();\n\n this.pool = pool;\n this.options = pool.options;\n this.logger = this.pool.logger;\n\n if (this.options.auth) {\n switch ((this.options.auth.type || '').toString().toUpperCase()) {\n case 'OAUTH2': {\n const oauth2 = new XOAuth2(this.options.auth, this.logger);\n oauth2.provisionCallback =\n (this.pool.mailer && this.pool.mailer.get('oauth2_provision_cb')) || oauth2.provisionCallback;\n this.auth = {\n type: 'OAUTH2',\n user: this.options.auth.user,\n oauth2,\n method: 'XOAUTH2'\n };\n oauth2.on('token', token => this.pool.mailer.emit('token', token));\n oauth2.on('error', err => this.emit('error', err));\n break;\n }\n default:\n if (!this.options.auth.user && !this.options.auth.pass) {\n break;\n }\n this.auth = {\n type: (this.options.auth.type || '').toString().toUpperCase() || 'LOGIN',\n user: this.options.auth.user,\n credentials: {\n user: this.options.auth.user || '',\n pass: this.options.auth.pass,\n options: this.options.auth.options\n },\n method: (this.options.auth.method || '').trim().toUpperCase() || this.options.authMethod || false\n };\n }\n }\n\n this._connection = false;\n this._connected = false;\n\n this.messages = 0;\n this.available = true;\n }\n\n /**\n * Initiates a connection to the SMTP server\n *\n * @param {Function} callback Callback function to run once the connection is established or failed\n */\n connect(callback) {\n this.pool.getSocket(this.options, (err, socketOptions) => {\n if (err) {\n return callback(err);\n }\n\n let returned = false;\n let options = this.options;\n if (socketOptions && socketOptions.connection) {\n this.logger.info(\n {\n tnx: 'proxy',\n remoteAddress: socketOptions.connection.remoteAddress,\n remotePort: socketOptions.connection.remotePort,\n destHost: options.host || '',\n destPort: options.port || '',\n action: 'connected'\n },\n 'Using proxied socket from %s:%s to %s:%s',\n socketOptions.connection.remoteAddress,\n socketOptions.connection.remotePort,\n options.host || '',\n options.port || ''\n );\n\n options = Object.assign(assign(false, options), socketOptions);\n }\n\n this.connection = new SMTPConnection(options);\n\n this.connection.once('error', err => {\n this.emit('error', err);\n if (returned) {\n return;\n }\n returned = true;\n return callback(err);\n });\n\n this.connection.once('end', () => {\n this.close();\n if (returned) {\n return;\n }\n returned = true;\n\n const timer = setTimeout(() => {\n if (returned) {\n return;\n }\n // still have not returned, this means we have an unexpected connection close\n const err = new Error('Unexpected socket close');\n if (this.connection && this.connection._socket && this.connection._socket.upgrading) {\n // starttls connection errors\n err.code = errors.ETLS;\n }\n callback(err);\n }, 1000);\n\n try {\n timer.unref();\n } catch (_E) {\n // Ignore. Happens on envs with non-node timer implementation\n }\n });\n\n this.connection.connect(() => {\n if (returned) {\n return;\n }\n\n if (this.auth && (this.connection.allowsAuth || options.forceAuth)) {\n this.connection.login(this.auth, err => {\n if (returned) {\n return;\n }\n returned = true;\n\n if (err) {\n this.connection.close();\n this.emit('error', err);\n return callback(err);\n }\n\n this._connected = true;\n callback(null, true);\n });\n } else {\n returned = true;\n this._connected = true;\n return callback(null, true);\n }\n });\n });\n }\n\n /**\n * Sends an e-mail to be sent using the selected settings\n *\n * @param {Object} mail Mail object\n * @param {Function} callback Callback function\n */\n send(mail, callback) {\n if (!this._connected) {\n return this.connect(err => {\n if (err) {\n return callback(err);\n }\n return this.send(mail, callback);\n });\n }\n\n const envelope = mail.message.getEnvelope();\n const messageId = mail.message.messageId();\n\n const recipients = [].concat(envelope.to || []);\n if (recipients.length > 3) {\n recipients.push('...and ' + recipients.splice(2).length + ' more');\n }\n this.logger.info(\n {\n tnx: 'send',\n messageId,\n cid: this.id\n },\n 'Sending message %s using #%s to <%s>',\n messageId,\n this.id,\n recipients.join(', ')\n );\n\n if (mail.data.dsn) {\n envelope.dsn = mail.data.dsn;\n }\n\n // RFC 8689: Pass requireTLSExtensionEnabled to envelope for MAIL FROM parameter\n if (mail.data.requireTLSExtensionEnabled) {\n envelope.requireTLSExtensionEnabled = mail.data.requireTLSExtensionEnabled;\n }\n\n this.connection.send(envelope, mail.message.createReadStream(), (err, info) => {\n this.messages++;\n\n if (err) {\n this.connection.close();\n this.emit('error', err);\n return callback(err);\n }\n\n info.envelope = {\n from: envelope.from,\n to: envelope.to\n };\n info.messageId = messageId;\n\n setImmediate(() => {\n if (this.messages >= this.options.maxMessages) {\n const err = new Error('Resource exhausted');\n err.code = errors.EMAXLIMIT;\n this.connection.close();\n this.emit('error', err);\n } else {\n this.pool._checkRateLimit(() => {\n this.available = true;\n this.emit('available');\n });\n }\n });\n\n callback(null, info);\n });\n }\n\n /**\n * Closes the connection\n */\n close() {\n this._connected = false;\n if (this.auth && this.auth.oauth2) {\n this.auth.oauth2.removeAllListeners();\n }\n if (this.connection) {\n this.connection.close();\n }\n this.emit('close');\n }\n}\n\nmodule.exports = PoolResource;\n","{\"1und1\":{\"description\":\"1&1 Mail (German hosting provider)\",\"host\":\"smtp.1und1.de\",\"port\":465,\"secure\":true,\"authMethod\":\"LOGIN\"},\"126\":{\"description\":\"126 Mail (NetEase)\",\"host\":\"smtp.126.com\",\"port\":465,\"secure\":true},\"163\":{\"description\":\"163 Mail (NetEase)\",\"host\":\"smtp.163.com\",\"port\":465,\"secure\":true},\"Aliyun\":{\"description\":\"Alibaba Cloud Mail\",\"domains\":[\"aliyun.com\"],\"host\":\"smtp.aliyun.com\",\"port\":465,\"secure\":true},\"AliyunQiye\":{\"description\":\"Alibaba Cloud Enterprise Mail\",\"host\":\"smtp.qiye.aliyun.com\",\"port\":465,\"secure\":true},\"AOL\":{\"description\":\"AOL Mail\",\"domains\":[\"aol.com\"],\"host\":\"smtp.aol.com\",\"port\":587},\"Aruba\":{\"description\":\"Aruba PEC (Italian email provider)\",\"domains\":[\"aruba.it\",\"pec.aruba.it\"],\"aliases\":[\"Aruba PEC\"],\"host\":\"smtps.aruba.it\",\"port\":465,\"secure\":true,\"authMethod\":\"LOGIN\"},\"Bluewin\":{\"description\":\"Bluewin (Swiss email provider)\",\"host\":\"smtpauths.bluewin.ch\",\"domains\":[\"bluewin.ch\"],\"port\":465},\"BOL\":{\"description\":\"BOL Mail (Brazilian provider)\",\"domains\":[\"bol.com.br\"],\"host\":\"smtp.bol.com.br\",\"port\":587,\"requireTLS\":true},\"DebugMail\":{\"description\":\"DebugMail (email testing service)\",\"host\":\"debugmail.io\",\"port\":25},\"Disroot\":{\"description\":\"Disroot (privacy-focused provider)\",\"domains\":[\"disroot.org\"],\"host\":\"disroot.org\",\"port\":587,\"secure\":false,\"authMethod\":\"LOGIN\"},\"DynectEmail\":{\"description\":\"Dyn Email Delivery\",\"aliases\":[\"Dynect\"],\"host\":\"smtp.dynect.net\",\"port\":25},\"ElasticEmail\":{\"description\":\"Elastic Email\",\"aliases\":[\"Elastic Email\"],\"host\":\"smtp.elasticemail.com\",\"port\":465,\"secure\":true},\"Ethereal\":{\"description\":\"Ethereal Email (email testing service)\",\"aliases\":[\"ethereal.email\"],\"host\":\"smtp.ethereal.email\",\"port\":587},\"FastMail\":{\"description\":\"FastMail\",\"domains\":[\"fastmail.fm\"],\"host\":\"smtp.fastmail.com\",\"port\":465,\"secure\":true},\"Feishu Mail\":{\"description\":\"Feishu Mail (Lark)\",\"aliases\":[\"Feishu\",\"FeishuMail\"],\"domains\":[\"www.feishu.cn\"],\"host\":\"smtp.feishu.cn\",\"port\":465,\"secure\":true},\"Forward Email\":{\"description\":\"Forward Email (email forwarding service)\",\"aliases\":[\"FE\",\"ForwardEmail\"],\"domains\":[\"forwardemail.net\"],\"host\":\"smtp.forwardemail.net\",\"port\":465,\"secure\":true},\"GandiMail\":{\"description\":\"Gandi Mail\",\"aliases\":[\"Gandi\",\"Gandi Mail\"],\"host\":\"mail.gandi.net\",\"port\":587},\"Gmail\":{\"description\":\"Gmail\",\"aliases\":[\"Google Mail\"],\"domains\":[\"gmail.com\",\"googlemail.com\"],\"host\":\"smtp.gmail.com\",\"port\":465,\"secure\":true},\"GmailWorkspace\":{\"description\":\"Gmail Workspace\",\"aliases\":[\"Google Workspace Mail\"],\"host\":\"smtp-relay.gmail.com\",\"port\":465,\"secure\":true},\"GMX\":{\"description\":\"GMX Mail\",\"domains\":[\"gmx.com\",\"gmx.net\",\"gmx.de\"],\"host\":\"mail.gmx.com\",\"port\":587},\"Godaddy\":{\"description\":\"GoDaddy Email (US)\",\"host\":\"smtpout.secureserver.net\",\"port\":25},\"GodaddyAsia\":{\"description\":\"GoDaddy Email (Asia)\",\"host\":\"smtp.asia.secureserver.net\",\"port\":25},\"GodaddyEurope\":{\"description\":\"GoDaddy Email (Europe)\",\"host\":\"smtp.europe.secureserver.net\",\"port\":25},\"hot.ee\":{\"description\":\"Hot.ee (Estonian email provider)\",\"host\":\"mail.hot.ee\"},\"Hotmail\":{\"description\":\"Outlook.com / Hotmail\",\"aliases\":[\"Outlook\",\"Outlook.com\",\"Hotmail.com\"],\"domains\":[\"hotmail.com\",\"outlook.com\"],\"host\":\"smtp-mail.outlook.com\",\"port\":587},\"iCloud\":{\"description\":\"iCloud Mail\",\"aliases\":[\"Me\",\"Mac\"],\"domains\":[\"me.com\",\"mac.com\"],\"host\":\"smtp.mail.me.com\",\"port\":587},\"Infomaniak\":{\"description\":\"Infomaniak Mail (Swiss hosting provider)\",\"host\":\"mail.infomaniak.com\",\"domains\":[\"ik.me\",\"ikmail.com\",\"etik.com\"],\"port\":587},\"KolabNow\":{\"description\":\"KolabNow (secure email service)\",\"domains\":[\"kolabnow.com\"],\"aliases\":[\"Kolab\"],\"host\":\"smtp.kolabnow.com\",\"port\":465,\"secure\":true,\"authMethod\":\"LOGIN\"},\"Loopia\":{\"description\":\"Loopia (Swedish hosting provider)\",\"host\":\"mailcluster.loopia.se\",\"port\":465},\"Loops\":{\"description\":\"Loops\",\"host\":\"smtp.loops.so\",\"port\":587},\"mail.ee\":{\"description\":\"Mail.ee (Estonian email provider)\",\"host\":\"smtp.mail.ee\"},\"Mail.ru\":{\"description\":\"Mail.ru\",\"host\":\"smtp.mail.ru\",\"port\":465,\"secure\":true},\"Mailcatch.app\":{\"description\":\"Mailcatch (email testing service)\",\"host\":\"sandbox-smtp.mailcatch.app\",\"port\":2525},\"Maildev\":{\"description\":\"MailDev (local email testing)\",\"port\":1025,\"ignoreTLS\":true},\"MailerSend\":{\"description\":\"MailerSend\",\"host\":\"smtp.mailersend.net\",\"port\":587},\"Mailgun\":{\"description\":\"Mailgun\",\"host\":\"smtp.mailgun.org\",\"port\":465,\"secure\":true},\"Mailjet\":{\"description\":\"Mailjet\",\"host\":\"in.mailjet.com\",\"port\":587},\"Mailosaur\":{\"description\":\"Mailosaur (email testing service)\",\"host\":\"mailosaur.io\",\"port\":25},\"Mailtrap\":{\"description\":\"Mailtrap\",\"host\":\"live.smtp.mailtrap.io\",\"port\":587},\"Mandrill\":{\"description\":\"Mandrill (by Mailchimp)\",\"host\":\"smtp.mandrillapp.com\",\"port\":587},\"Naver\":{\"description\":\"Naver Mail (Korean email provider)\",\"host\":\"smtp.naver.com\",\"port\":587},\"OhMySMTP\":{\"description\":\"OhMySMTP (email delivery service)\",\"host\":\"smtp.ohmysmtp.com\",\"port\":587,\"secure\":false},\"One\":{\"description\":\"One.com Email\",\"host\":\"send.one.com\",\"port\":465,\"secure\":true},\"OpenMailBox\":{\"description\":\"OpenMailBox\",\"aliases\":[\"OMB\",\"openmailbox.org\"],\"host\":\"smtp.openmailbox.org\",\"port\":465,\"secure\":true},\"Outlook365\":{\"description\":\"Microsoft 365 / Office 365\",\"host\":\"smtp.office365.com\",\"port\":587,\"secure\":false},\"Postmark\":{\"description\":\"Postmark\",\"aliases\":[\"PostmarkApp\"],\"host\":\"smtp.postmarkapp.com\",\"port\":2525},\"Proton\":{\"description\":\"Proton Mail\",\"aliases\":[\"ProtonMail\",\"Proton.me\",\"Protonmail.com\",\"Protonmail.ch\"],\"domains\":[\"proton.me\",\"protonmail.com\",\"pm.me\",\"protonmail.ch\"],\"host\":\"smtp.protonmail.ch\",\"port\":587,\"requireTLS\":true},\"qiye.aliyun\":{\"description\":\"Alibaba Mail Enterprise Edition\",\"host\":\"smtp.mxhichina.com\",\"port\":\"465\",\"secure\":true},\"QQ\":{\"description\":\"QQ Mail\",\"domains\":[\"qq.com\"],\"host\":\"smtp.qq.com\",\"port\":465,\"secure\":true},\"QQex\":{\"description\":\"QQ Enterprise Mail\",\"aliases\":[\"QQ Enterprise\"],\"domains\":[\"exmail.qq.com\"],\"host\":\"smtp.exmail.qq.com\",\"port\":465,\"secure\":true},\"Resend\":{\"description\":\"Resend\",\"host\":\"smtp.resend.com\",\"port\":465,\"secure\":true},\"Runbox\":{\"description\":\"Runbox (Norwegian email provider)\",\"domains\":[\"runbox.com\"],\"host\":\"smtp.runbox.com\",\"port\":465,\"secure\":true},\"SendCloud\":{\"description\":\"SendCloud (Chinese email delivery)\",\"host\":\"smtp.sendcloud.net\",\"port\":2525},\"SendGrid\":{\"description\":\"SendGrid\",\"host\":\"smtp.sendgrid.net\",\"port\":587},\"SendinBlue\":{\"description\":\"Brevo (formerly Sendinblue)\",\"aliases\":[\"Brevo\"],\"host\":\"smtp-relay.brevo.com\",\"port\":587},\"SendPulse\":{\"description\":\"SendPulse\",\"host\":\"smtp-pulse.com\",\"port\":465,\"secure\":true},\"SES\":{\"description\":\"AWS SES US East (N. Virginia)\",\"host\":\"email-smtp.us-east-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-AP-NORTHEAST-1\":{\"description\":\"AWS SES Asia Pacific (Tokyo)\",\"host\":\"email-smtp.ap-northeast-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-AP-NORTHEAST-2\":{\"description\":\"AWS SES Asia Pacific (Seoul)\",\"host\":\"email-smtp.ap-northeast-2.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-AP-NORTHEAST-3\":{\"description\":\"AWS SES Asia Pacific (Osaka)\",\"host\":\"email-smtp.ap-northeast-3.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-AP-SOUTH-1\":{\"description\":\"AWS SES Asia Pacific (Mumbai)\",\"host\":\"email-smtp.ap-south-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-AP-SOUTHEAST-1\":{\"description\":\"AWS SES Asia Pacific (Singapore)\",\"host\":\"email-smtp.ap-southeast-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-AP-SOUTHEAST-2\":{\"description\":\"AWS SES Asia Pacific (Sydney)\",\"host\":\"email-smtp.ap-southeast-2.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-CA-CENTRAL-1\":{\"description\":\"AWS SES Canada (Central)\",\"host\":\"email-smtp.ca-central-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-EU-CENTRAL-1\":{\"description\":\"AWS SES Europe (Frankfurt)\",\"host\":\"email-smtp.eu-central-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-EU-NORTH-1\":{\"description\":\"AWS SES Europe (Stockholm)\",\"host\":\"email-smtp.eu-north-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-EU-WEST-1\":{\"description\":\"AWS SES Europe (Ireland)\",\"host\":\"email-smtp.eu-west-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-EU-WEST-2\":{\"description\":\"AWS SES Europe (London)\",\"host\":\"email-smtp.eu-west-2.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-EU-WEST-3\":{\"description\":\"AWS SES Europe (Paris)\",\"host\":\"email-smtp.eu-west-3.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-SA-EAST-1\":{\"description\":\"AWS SES South America (São Paulo)\",\"host\":\"email-smtp.sa-east-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-US-EAST-1\":{\"description\":\"AWS SES US East (N. Virginia)\",\"host\":\"email-smtp.us-east-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-US-EAST-2\":{\"description\":\"AWS SES US East (Ohio)\",\"host\":\"email-smtp.us-east-2.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-US-GOV-EAST-1\":{\"description\":\"AWS SES GovCloud (US-East)\",\"host\":\"email-smtp.us-gov-east-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-US-GOV-WEST-1\":{\"description\":\"AWS SES GovCloud (US-West)\",\"host\":\"email-smtp.us-gov-west-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-US-WEST-1\":{\"description\":\"AWS SES US West (N. California)\",\"host\":\"email-smtp.us-west-1.amazonaws.com\",\"port\":465,\"secure\":true},\"SES-US-WEST-2\":{\"description\":\"AWS SES US West (Oregon)\",\"host\":\"email-smtp.us-west-2.amazonaws.com\",\"port\":465,\"secure\":true},\"Seznam\":{\"description\":\"Seznam Email (Czech email provider)\",\"aliases\":[\"Seznam Email\"],\"domains\":[\"seznam.cz\",\"email.cz\",\"post.cz\",\"spoluzaci.cz\"],\"host\":\"smtp.seznam.cz\",\"port\":465,\"secure\":true},\"SMTP2GO\":{\"description\":\"SMTP2GO\",\"host\":\"mail.smtp2go.com\",\"port\":2525},\"Sparkpost\":{\"description\":\"SparkPost\",\"aliases\":[\"SparkPost\",\"SparkPost Mail\"],\"domains\":[\"sparkpost.com\"],\"host\":\"smtp.sparkpostmail.com\",\"port\":587,\"secure\":false},\"Tipimail\":{\"description\":\"Tipimail (email delivery service)\",\"host\":\"smtp.tipimail.com\",\"port\":587},\"Tutanota\":{\"description\":\"Tutanota (Tuta Mail)\",\"domains\":[\"tutanota.com\",\"tuta.com\",\"tutanota.de\",\"tuta.io\"],\"host\":\"smtp.tutanota.com\",\"port\":465,\"secure\":true},\"Yahoo\":{\"description\":\"Yahoo Mail\",\"domains\":[\"yahoo.com\"],\"host\":\"smtp.mail.yahoo.com\",\"port\":465,\"secure\":true},\"Yandex\":{\"description\":\"Yandex Mail\",\"domains\":[\"yandex.ru\"],\"host\":\"smtp.yandex.ru\",\"port\":465,\"secure\":true},\"Zimbra\":{\"description\":\"Zimbra Mail Server\",\"aliases\":[\"Zimbra Collaboration\"],\"host\":\"smtp.zimbra.com\",\"port\":587,\"requireTLS\":true},\"Zoho\":{\"description\":\"Zoho Mail\",\"host\":\"smtp.zoho.com\",\"port\":465,\"secure\":true,\"authMethod\":\"LOGIN\"}}","'use strict';\n\nconst services = require('./services.json');\nconst normalized = {};\n\nObject.keys(services).forEach(key => {\n const service = services[key];\n const normalizedService = normalizeService(service);\n\n normalized[normalizeKey(key)] = normalizedService;\n\n [].concat(service.aliases || []).forEach(alias => {\n normalized[normalizeKey(alias)] = normalizedService;\n });\n\n [].concat(service.domains || []).forEach(domain => {\n normalized[normalizeKey(domain)] = normalizedService;\n });\n});\n\nfunction normalizeKey(key) {\n return key.replace(/[^a-zA-Z0-9.-]/g, '').toLowerCase();\n}\n\nfunction normalizeService(service) {\n const response = {};\n\n Object.keys(service).forEach(key => {\n if (!['domains', 'aliases'].includes(key)) {\n response[key] = service[key];\n }\n });\n\n return response;\n}\n\n/**\n * Resolves SMTP config for given key. Key can be a name (like 'Gmail'), alias (like 'Google Mail') or\n * an email address (like 'test@googlemail.com').\n *\n * @param {String} key [description]\n * @returns {Object} SMTP config or false if not found\n */\nmodule.exports = function (key) {\n key = normalizeKey(key.split('@').pop());\n return normalized[key] || false;\n};\n","'use strict';\n\nconst EventEmitter = require('events');\nconst PoolResource = require('./pool-resource');\nconst SMTPConnection = require('../smtp-connection');\nconst wellKnown = require('../well-known');\nconst shared = require('../shared');\nconst errors = require('../errors');\nconst packageData = require('../../package.json');\n\n/**\n * Creates a SMTP pool transport object for Nodemailer\n *\n * @constructor\n * @param {Object} options SMTP Connection options\n */\nclass SMTPPool extends EventEmitter {\n constructor(options) {\n super();\n\n options = options || {};\n if (typeof options === 'string') {\n options = {\n url: options\n };\n }\n\n let urlData;\n let service = options.service;\n\n if (typeof options.getSocket === 'function') {\n this.getSocket = options.getSocket;\n }\n\n if (options.url) {\n urlData = shared.parseConnectionUrl(options.url);\n service = service || urlData.service;\n }\n\n this.options = shared.assign(\n false, // create new object\n options, // regular options\n urlData, // url options\n service && wellKnown(service) // wellknown options\n );\n\n this.options.maxConnections = this.options.maxConnections || 5;\n this.options.maxMessages = this.options.maxMessages || 100;\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'smtp-pool'\n });\n\n this.name = 'SMTP (pool)';\n this.version = packageData.version + '[client:' + packageData.version + ']';\n\n this._rateLimit = {\n counter: 0,\n timeout: null,\n waiting: [],\n checkpoint: false,\n delta: Number(this.options.rateDelta) || 1000,\n limit: Number(this.options.rateLimit) || 0\n };\n this._closed = false;\n this._queue = [];\n this._connections = [];\n this._connectionCounter = 0;\n\n this.idling = true;\n\n setImmediate(() => {\n if (this.idling) {\n this.emit('idle');\n }\n });\n }\n\n /**\n * Placeholder function for creating proxy sockets. This method immediatelly returns\n * without a socket\n *\n * @param {Object} options Connection options\n * @param {Function} callback Callback function to run with the socket keys\n */\n getSocket(options, callback) {\n // return immediatelly\n return setImmediate(() => callback(null, false));\n }\n\n /**\n * Queues an e-mail to be sent using the selected settings\n *\n * @param {Object} mail Mail object\n * @param {Function} callback Callback function\n */\n send(mail, callback) {\n if (this._closed) {\n return false;\n }\n\n this._queue.push({\n mail,\n requeueAttempts: 0,\n callback\n });\n\n if (this.idling && this._queue.length >= this.options.maxConnections) {\n this.idling = false;\n }\n\n setImmediate(() => this._processMessages());\n\n return true;\n }\n\n /**\n * Closes all connections in the pool. If there is a message being sent, the connection\n * is closed later\n */\n close() {\n let connection;\n const len = this._connections.length;\n this._closed = true;\n\n // clear rate limit timer if it exists\n clearTimeout(this._rateLimit.timeout);\n\n if (!len && !this._queue.length) {\n return;\n }\n\n // remove all available connections\n for (let i = len - 1; i >= 0; i--) {\n if (this._connections[i] && this._connections[i].available) {\n connection = this._connections[i];\n connection.close();\n this.logger.info(\n {\n tnx: 'connection',\n cid: connection.id,\n action: 'removed'\n },\n 'Connection #%s removed',\n connection.id\n );\n }\n }\n\n if (len && !this._connections.length) {\n this.logger.debug(\n {\n tnx: 'connection'\n },\n 'All connections removed'\n );\n }\n\n if (!this._queue.length) {\n return;\n }\n\n // make sure that entire queue would be cleaned\n const invokeCallbacks = () => {\n if (!this._queue.length) {\n this.logger.debug(\n {\n tnx: 'connection'\n },\n 'Pending queue entries cleared'\n );\n return;\n }\n const entry = this._queue.shift();\n if (entry && typeof entry.callback === 'function') {\n try {\n entry.callback(new Error('Connection pool was closed'));\n } catch (E) {\n this.logger.error(\n {\n err: E,\n tnx: 'callback',\n cid: connection.id\n },\n 'Callback error for #%s: %s',\n connection.id,\n E.message\n );\n }\n }\n setImmediate(invokeCallbacks);\n };\n setImmediate(invokeCallbacks);\n }\n\n /**\n * Check the queue and available connections. If there is a message to be sent and there is\n * an available connection, then use this connection to send the mail\n */\n _processMessages() {\n // do nothing if already closed\n if (this._closed) {\n return;\n }\n\n // do nothing if queue is empty\n if (!this._queue.length) {\n if (!this.idling) {\n // no pending jobs\n this.idling = true;\n this.emit('idle');\n }\n return;\n }\n\n // find first available connection\n let connection = this._connections.find(c => c.available);\n\n if (!connection && this._connections.length < this.options.maxConnections) {\n connection = this._createConnection();\n }\n\n if (!connection) {\n // no more free connection slots available\n this.idling = false;\n return;\n }\n\n // check if there is free space in the processing queue\n if (!this.idling && this._queue.length < this.options.maxConnections) {\n this.idling = true;\n this.emit('idle');\n }\n\n const entry = (connection.queueEntry = this._queue.shift());\n entry.messageId = (connection.queueEntry.mail.message.getHeader('message-id') || '').replace(/[<>\\s]/g, '');\n\n connection.available = false;\n\n this.logger.debug(\n {\n tnx: 'pool',\n cid: connection.id,\n messageId: entry.messageId,\n action: 'assign'\n },\n 'Assigned message <%s> to #%s (%s)',\n entry.messageId,\n connection.id,\n connection.messages + 1\n );\n\n if (this._rateLimit.limit) {\n this._rateLimit.counter++;\n if (!this._rateLimit.checkpoint) {\n this._rateLimit.checkpoint = Date.now();\n }\n }\n\n connection.send(entry.mail, (err, info) => {\n // only process callback if current handler is not changed\n if (entry === connection.queueEntry) {\n try {\n entry.callback(err, info);\n } catch (E) {\n this.logger.error(\n {\n err: E,\n tnx: 'callback',\n cid: connection.id\n },\n 'Callback error for #%s: %s',\n connection.id,\n E.message\n );\n }\n connection.queueEntry = false;\n }\n });\n }\n\n /**\n * Creates a new pool resource\n */\n _createConnection() {\n const connection = new PoolResource(this);\n\n connection.id = ++this._connectionCounter;\n\n this.logger.info(\n {\n tnx: 'pool',\n cid: connection.id,\n action: 'conection'\n },\n 'Created new pool resource #%s',\n connection.id\n );\n\n // resource comes available\n connection.on('available', () => {\n this.logger.debug(\n {\n tnx: 'connection',\n cid: connection.id,\n action: 'available'\n },\n 'Connection #%s became available',\n connection.id\n );\n\n if (this._closed) {\n // if already closed run close() that will remove this connections from connections list\n this.close();\n } else {\n // check if there's anything else to send\n this._processMessages();\n }\n });\n\n // resource is terminated with an error\n connection.once('error', err => {\n if (err.code !== errors.EMAXLIMIT) {\n this.logger.warn(\n {\n err,\n tnx: 'pool',\n cid: connection.id\n },\n 'Pool Error for #%s: %s',\n connection.id,\n err.message\n );\n } else {\n this.logger.debug(\n {\n tnx: 'pool',\n cid: connection.id,\n action: 'maxlimit'\n },\n 'Max messages limit exchausted for #%s',\n connection.id\n );\n }\n\n if (connection.queueEntry) {\n try {\n connection.queueEntry.callback(err);\n } catch (E) {\n this.logger.error(\n {\n err: E,\n tnx: 'callback',\n cid: connection.id\n },\n 'Callback error for #%s: %s',\n connection.id,\n E.message\n );\n }\n connection.queueEntry = false;\n }\n\n // remove the erroneus connection from connections list\n this._removeConnection(connection);\n\n this._continueProcessing();\n });\n\n connection.once('close', () => {\n this.logger.info(\n {\n tnx: 'connection',\n cid: connection.id,\n action: 'closed'\n },\n 'Connection #%s was closed',\n connection.id\n );\n\n this._removeConnection(connection);\n\n if (connection.queueEntry) {\n // If the connection closed when sending, add the message to the queue again\n // if max number of requeues is not reached yet\n // Note that we must wait a bit.. because the callback of the 'error' handler might be called\n // in the next event loop\n setTimeout(() => {\n if (connection.queueEntry) {\n if (this._shouldRequeuOnConnectionClose(connection.queueEntry)) {\n this._requeueEntryOnConnectionClose(connection);\n } else {\n this._failDeliveryOnConnectionClose(connection);\n }\n }\n this._continueProcessing();\n }, 50);\n } else {\n if (!this._closed && this.idling && !this._connections.length) {\n this.emit('clear');\n }\n\n this._continueProcessing();\n }\n });\n\n this._connections.push(connection);\n\n return connection;\n }\n\n _shouldRequeuOnConnectionClose(queueEntry) {\n if (this.options.maxRequeues === undefined || this.options.maxRequeues < 0) {\n return true;\n }\n\n return queueEntry.requeueAttempts < this.options.maxRequeues;\n }\n\n _failDeliveryOnConnectionClose(connection) {\n if (connection.queueEntry && connection.queueEntry.callback) {\n try {\n connection.queueEntry.callback(new Error('Reached maximum number of retries after connection was closed'));\n } catch (E) {\n this.logger.error(\n {\n err: E,\n tnx: 'callback',\n messageId: connection.queueEntry.messageId,\n cid: connection.id\n },\n 'Callback error for #%s: %s',\n connection.id,\n E.message\n );\n }\n connection.queueEntry = false;\n }\n }\n\n _requeueEntryOnConnectionClose(connection) {\n connection.queueEntry.requeueAttempts += 1;\n this.logger.debug(\n {\n tnx: 'pool',\n cid: connection.id,\n messageId: connection.queueEntry.messageId,\n action: 'requeue'\n },\n 'Re-queued message <%s> for #%s. Attempt: #%s',\n connection.queueEntry.messageId,\n connection.id,\n connection.queueEntry.requeueAttempts\n );\n this._queue.unshift(connection.queueEntry);\n connection.queueEntry = false;\n }\n\n /**\n * Continue to process message if the pool hasn't closed\n */\n _continueProcessing() {\n if (this._closed) {\n this.close();\n } else {\n setTimeout(() => this._processMessages(), 100);\n }\n }\n\n /**\n * Remove resource from pool\n *\n * @param {Object} connection The PoolResource to remove\n */\n _removeConnection(connection) {\n const index = this._connections.indexOf(connection);\n\n if (index !== -1) {\n this._connections.splice(index, 1);\n }\n }\n\n /**\n * Checks if connections have hit current rate limit and if so, queues the availability callback\n *\n * @param {Function} callback Callback function to run once rate limiter has been cleared\n */\n _checkRateLimit(callback) {\n if (!this._rateLimit.limit) {\n return callback();\n }\n\n const now = Date.now();\n\n if (this._rateLimit.counter < this._rateLimit.limit) {\n return callback();\n }\n\n this._rateLimit.waiting.push(callback);\n\n if (this._rateLimit.checkpoint <= now - this._rateLimit.delta) {\n return this._clearRateLimit();\n }\n\n if (!this._rateLimit.timeout) {\n this._rateLimit.timeout = setTimeout(() => this._clearRateLimit(), this._rateLimit.delta - (now - this._rateLimit.checkpoint));\n this._rateLimit.checkpoint = now;\n }\n }\n\n /**\n * Clears current rate limit limitation and runs paused callback\n */\n _clearRateLimit() {\n clearTimeout(this._rateLimit.timeout);\n this._rateLimit.timeout = null;\n this._rateLimit.counter = 0;\n this._rateLimit.checkpoint = false;\n\n // resume all paused connections\n while (this._rateLimit.waiting.length) {\n const cb = this._rateLimit.waiting.shift();\n setImmediate(cb);\n }\n }\n\n /**\n * Returns true if there are free slots in the queue\n */\n isIdle() {\n return this.idling;\n }\n\n /**\n * Verifies SMTP configuration\n *\n * @param {Function} callback Callback function\n */\n verify(callback) {\n let promise;\n\n if (!callback) {\n promise = new Promise((resolve, reject) => {\n callback = shared.callbackPromise(resolve, reject);\n });\n }\n\n const auth = new PoolResource(this).auth;\n\n this.getSocket(this.options, (err, socketOptions) => {\n if (err) {\n return callback(err);\n }\n\n let options = this.options;\n if (socketOptions && socketOptions.connection) {\n this.logger.info(\n {\n tnx: 'proxy',\n remoteAddress: socketOptions.connection.remoteAddress,\n remotePort: socketOptions.connection.remotePort,\n destHost: options.host || '',\n destPort: options.port || '',\n action: 'connected'\n },\n 'Using proxied socket from %s:%s to %s:%s',\n socketOptions.connection.remoteAddress,\n socketOptions.connection.remotePort,\n options.host || '',\n options.port || ''\n );\n options = Object.assign(shared.assign(false, options), socketOptions);\n }\n\n const connection = new SMTPConnection(options);\n let returned = false;\n\n connection.once('error', err => {\n if (returned) {\n return;\n }\n returned = true;\n connection.close();\n return callback(err);\n });\n\n connection.once('end', () => {\n if (returned) {\n return;\n }\n returned = true;\n return callback(new Error('Connection closed'));\n });\n\n const finalize = () => {\n if (returned) {\n return;\n }\n returned = true;\n connection.quit();\n return callback(null, true);\n };\n\n connection.connect(() => {\n if (returned) {\n return;\n }\n\n if (auth && (connection.allowsAuth || options.forceAuth)) {\n connection.login(auth, err => {\n if (returned) {\n return;\n }\n\n if (err) {\n returned = true;\n connection.close();\n return callback(err);\n }\n\n finalize();\n });\n } else if (!auth && connection.allowsAuth && options.forceAuth) {\n const err = new Error('Authentication info was not provided');\n err.code = errors.ENOAUTH;\n\n returned = true;\n connection.close();\n return callback(err);\n } else {\n finalize();\n }\n });\n });\n\n return promise;\n }\n}\n\n// expose to the world\nmodule.exports = SMTPPool;\n","'use strict';\n\nconst EventEmitter = require('events');\nconst SMTPConnection = require('../smtp-connection');\nconst wellKnown = require('../well-known');\nconst shared = require('../shared');\nconst XOAuth2 = require('../xoauth2');\nconst errors = require('../errors');\nconst packageData = require('../../package.json');\n\n/**\n * Creates a SMTP transport object for Nodemailer\n *\n * @constructor\n * @param {Object} options Connection options\n */\nclass SMTPTransport extends EventEmitter {\n constructor(options) {\n super();\n\n options = options || {};\n\n if (typeof options === 'string') {\n options = {\n url: options\n };\n }\n\n let urlData;\n let service = options.service;\n\n if (typeof options.getSocket === 'function') {\n this.getSocket = options.getSocket;\n }\n\n if (options.url) {\n urlData = shared.parseConnectionUrl(options.url);\n service = service || urlData.service;\n }\n\n this.options = shared.assign(\n false, // create new object\n options, // regular options\n urlData, // url options\n service && wellKnown(service) // wellknown options\n );\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'smtp-transport'\n });\n\n this.name = 'SMTP';\n this.version = packageData.version + '[client:' + packageData.version + ']';\n\n if (this.options.auth) {\n this.auth = this.getAuth({});\n }\n }\n\n /**\n * Placeholder function for creating proxy sockets. This method immediatelly returns\n * without a socket\n *\n * @param {Object} options Connection options\n * @param {Function} callback Callback function to run with the socket keys\n */\n getSocket(options, callback) {\n // return immediatelly\n return setImmediate(() => callback(null, false));\n }\n\n getAuth(authOpts) {\n if (!authOpts) {\n if (this.auth && this.auth.oauth2 && this.mailer) {\n // Transport-level auth is resolved in the constructor, before the Mail wrapper\n // assigns `this.mailer`, so a provision callback registered with\n // `transporter.set('oauth2_provision_cb', ...)` has to be re-checked here\n this.auth.oauth2.provisionCallback = this.mailer.get('oauth2_provision_cb') || this.auth.oauth2.provisionCallback;\n }\n return this.auth;\n }\n\n const authData = Object.assign(\n {},\n this.options.auth && typeof this.options.auth === 'object' ? this.options.auth : {},\n typeof authOpts === 'object' ? authOpts : {}\n );\n\n if (Object.keys(authData).length === 0) {\n return false;\n }\n\n switch ((authData.type || '').toString().toUpperCase()) {\n case 'OAUTH2': {\n if (!authData.service && !authData.user) {\n return false;\n }\n const oauth2 = new XOAuth2(authData, this.logger);\n oauth2.provisionCallback = (this.mailer && this.mailer.get('oauth2_provision_cb')) || oauth2.provisionCallback;\n oauth2.on('token', token => this.mailer.emit('token', token));\n oauth2.on('error', err => this.emit('error', err));\n return {\n type: 'OAUTH2',\n user: authData.user,\n oauth2,\n method: 'XOAUTH2'\n };\n }\n default:\n return {\n type: (authData.type || '').toString().toUpperCase() || 'LOGIN',\n user: authData.user,\n credentials: {\n user: authData.user || '',\n pass: authData.pass,\n options: authData.options\n },\n method: (authData.method || '').trim().toUpperCase() || this.options.authMethod || false\n };\n }\n }\n\n /**\n * Sends an e-mail using the selected settings\n *\n * @param {Object} mail Mail object\n * @param {Function} callback Callback function\n */\n send(mail, callback) {\n this.getSocket(this.options, (err, socketOptions) => {\n if (err) {\n return callback(err);\n }\n\n let returned = false;\n let options = this.options;\n if (socketOptions && socketOptions.connection) {\n this.logger.info(\n {\n tnx: 'proxy',\n remoteAddress: socketOptions.connection.remoteAddress,\n remotePort: socketOptions.connection.remotePort,\n destHost: options.host || '',\n destPort: options.port || '',\n action: 'connected'\n },\n 'Using proxied socket from %s:%s to %s:%s',\n socketOptions.connection.remoteAddress,\n socketOptions.connection.remotePort,\n options.host || '',\n options.port || ''\n );\n\n // only copy options if we need to modify it\n options = Object.assign(shared.assign(false, options), socketOptions);\n }\n\n const connection = new SMTPConnection(options);\n\n let perCallAuth;\n const cleanupPerCallAuth = () => {\n if (perCallAuth && perCallAuth !== this.auth && perCallAuth.oauth2) {\n perCallAuth.oauth2.removeAllListeners();\n }\n perCallAuth = null;\n };\n\n connection.once('error', err => {\n if (returned) {\n return;\n }\n returned = true;\n cleanupPerCallAuth();\n connection.close();\n return callback(err);\n });\n\n connection.once('end', () => {\n if (returned) {\n return;\n }\n\n const timer = setTimeout(() => {\n if (returned) {\n return;\n }\n returned = true;\n cleanupPerCallAuth();\n // still have not returned, this means we have an unexpected connection close\n const err = new Error('Unexpected socket close');\n if (connection && connection._socket && connection._socket.upgrading) {\n // starttls connection errors\n err.code = errors.ETLS;\n }\n callback(err);\n }, 1000);\n\n try {\n timer.unref();\n } catch (_E) {\n // Ignore. Happens on envs with non-node timer implementation\n }\n });\n\n const sendMessage = () => {\n const envelope = mail.message.getEnvelope();\n const messageId = mail.message.messageId();\n\n const recipients = [].concat(envelope.to || []);\n if (recipients.length > 3) {\n recipients.push('...and ' + recipients.splice(2).length + ' more');\n }\n\n if (mail.data.dsn) {\n envelope.dsn = mail.data.dsn;\n }\n\n // RFC 8689: Pass requireTLSExtensionEnabled to envelope for MAIL FROM parameter\n if (mail.data.requireTLSExtensionEnabled) {\n envelope.requireTLSExtensionEnabled = mail.data.requireTLSExtensionEnabled;\n }\n\n this.logger.info(\n {\n tnx: 'send',\n messageId\n },\n 'Sending message %s to <%s>',\n messageId,\n recipients.join(', ')\n );\n\n connection.send(envelope, mail.message.createReadStream(), (err, info) => {\n returned = true;\n cleanupPerCallAuth();\n connection.close();\n if (err) {\n this.logger.error(\n {\n err,\n tnx: 'send'\n },\n 'Send error for %s: %s',\n messageId,\n err.message\n );\n return callback(err);\n }\n info.envelope = {\n from: envelope.from,\n to: envelope.to\n };\n info.messageId = messageId;\n try {\n return callback(null, info);\n } catch (E) {\n this.logger.error(\n {\n err: E,\n tnx: 'callback'\n },\n 'Callback error for %s: %s',\n messageId,\n E.message\n );\n }\n });\n };\n\n connection.connect(() => {\n if (returned) {\n return;\n }\n\n perCallAuth = this.getAuth(mail.data.auth);\n\n if (perCallAuth && (connection.allowsAuth || options.forceAuth)) {\n connection.login(perCallAuth, err => {\n cleanupPerCallAuth();\n if (returned) {\n return;\n }\n\n if (err) {\n returned = true;\n connection.close();\n return callback(err);\n }\n\n sendMessage();\n });\n } else {\n sendMessage();\n }\n });\n });\n }\n\n /**\n * Verifies SMTP configuration\n *\n * @param {Function} callback Callback function\n */\n verify(callback) {\n let promise;\n\n if (!callback) {\n promise = new Promise((resolve, reject) => {\n callback = shared.callbackPromise(resolve, reject);\n });\n }\n\n this.getSocket(this.options, (err, socketOptions) => {\n if (err) {\n return callback(err);\n }\n\n let options = this.options;\n if (socketOptions && socketOptions.connection) {\n this.logger.info(\n {\n tnx: 'proxy',\n remoteAddress: socketOptions.connection.remoteAddress,\n remotePort: socketOptions.connection.remotePort,\n destHost: options.host || '',\n destPort: options.port || '',\n action: 'connected'\n },\n 'Using proxied socket from %s:%s to %s:%s',\n socketOptions.connection.remoteAddress,\n socketOptions.connection.remotePort,\n options.host || '',\n options.port || ''\n );\n\n options = Object.assign(shared.assign(false, options), socketOptions);\n }\n\n const connection = new SMTPConnection(options);\n let returned = false;\n let perCallAuth;\n const cleanupPerCallAuth = () => {\n if (perCallAuth && perCallAuth !== this.auth && perCallAuth.oauth2) {\n perCallAuth.oauth2.removeAllListeners();\n }\n perCallAuth = null;\n };\n\n connection.once('error', err => {\n if (returned) {\n return;\n }\n returned = true;\n cleanupPerCallAuth();\n connection.close();\n return callback(err);\n });\n\n connection.once('end', () => {\n if (returned) {\n return;\n }\n returned = true;\n cleanupPerCallAuth();\n return callback(new Error('Connection closed'));\n });\n\n const finalize = () => {\n if (returned) {\n return;\n }\n returned = true;\n cleanupPerCallAuth();\n connection.quit();\n return callback(null, true);\n };\n\n connection.connect(() => {\n if (returned) {\n return;\n }\n\n perCallAuth = this.getAuth({});\n\n if (perCallAuth && (connection.allowsAuth || options.forceAuth)) {\n connection.login(perCallAuth, err => {\n cleanupPerCallAuth();\n if (returned) {\n return;\n }\n\n if (err) {\n returned = true;\n connection.close();\n return callback(err);\n }\n\n finalize();\n });\n } else if (!perCallAuth && connection.allowsAuth && options.forceAuth) {\n const err = new Error('Authentication info was not provided');\n err.code = errors.ENOAUTH;\n\n returned = true;\n cleanupPerCallAuth();\n connection.close();\n return callback(err);\n } else {\n finalize();\n }\n });\n });\n\n return promise;\n }\n\n /**\n * Releases resources\n */\n close() {\n if (this.auth && this.auth.oauth2) {\n this.auth.oauth2.removeAllListeners();\n }\n this.emit('close');\n }\n}\n\n// expose to the world\nmodule.exports = SMTPTransport;\n","'use strict';\n\nconst { spawn } = require('child_process');\nconst packageData = require('../../package.json');\nconst shared = require('../shared');\nconst errors = require('../errors');\nconst LeWindows = require('../mime-node/le-windows');\nconst LeUnix = require('../mime-node/le-unix');\n\n/**\n * Generates a Transport object for Sendmail\n *\n * Possible options can be the following:\n *\n * * **path** optional path to sendmail binary\n * * **newline** either 'windows' or 'unix'\n * * **args** an array of arguments for the sendmail binary\n *\n * @constructor\n * @param {Object} optional config parameter for Sendmail\n */\nclass SendmailTransport {\n constructor(options) {\n options = options || {};\n\n // use a reference to spawn for mocking purposes\n this._spawn = spawn;\n\n this.options = options;\n\n this.name = 'Sendmail';\n this.version = packageData.version;\n\n this.path = 'sendmail';\n this.args = false;\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'sendmail'\n });\n\n if (typeof options === 'string') {\n this.path = options;\n } else if (typeof options === 'object') {\n if (options.path) {\n this.path = options.path;\n }\n if (Array.isArray(options.args)) {\n this.args = options.args;\n }\n }\n\n this.winbreak = ['win', 'windows', 'dos', '\\r\\n'].includes((options.newline || '').toString().toLowerCase());\n }\n\n /**\n *

Compiles a mailcomposer message and forwards it to handler that sends it.

\n *\n * @param {Object} emailMessage MailComposer object\n * @param {Function} callback Callback function to run when the sending is completed\n */\n send(mail, done) {\n // Sendmail strips this header line by itself\n mail.message.keepBcc = true;\n\n const envelope = mail.data.envelope || mail.message.getEnvelope();\n const messageId = mail.message.messageId();\n let returned;\n\n const hasInvalidAddresses = []\n .concat(envelope.from || [])\n .concat(envelope.to || [])\n .some(addr => /^-/.test(addr));\n if (hasInvalidAddresses) {\n const err = new Error('Can not send mail. Invalid envelope addresses.');\n err.code = errors.ESENDMAIL;\n return done(err);\n }\n\n // force -i to keep single dots\n const args = this.args\n ? ['-i'].concat(this.args).concat(envelope.to)\n : ['-i'].concat(envelope.from ? ['-f', envelope.from] : []).concat(envelope.to);\n\n const callback = err => {\n if (returned) {\n // ignore any additional responses, already done\n return;\n }\n returned = true;\n if (typeof done === 'function') {\n if (err) {\n return done(err);\n }\n return done(null, {\n envelope,\n messageId,\n response: 'Messages queued for delivery'\n });\n }\n };\n\n let sendmail;\n try {\n sendmail = this._spawn(this.path, args);\n } catch (E) {\n this.logger.error(\n {\n err: E,\n tnx: 'spawn',\n messageId\n },\n 'Error occurred while spawning sendmail. %s',\n E.message\n );\n return callback(E);\n }\n\n if (sendmail) {\n sendmail.on('error', err => {\n this.logger.error(\n {\n err,\n tnx: 'spawn',\n messageId\n },\n 'Error occurred when sending message %s. %s',\n messageId,\n err.message\n );\n callback(err);\n });\n\n sendmail.once('exit', code => {\n if (!code) {\n return callback();\n }\n const err = new Error(\n code === 127 ? 'Sendmail command not found, process exited with code ' + code : 'Sendmail exited with code ' + code\n );\n err.code = errors.ESENDMAIL;\n\n this.logger.error(\n {\n err,\n tnx: 'stdin',\n messageId\n },\n 'Error sending message %s to sendmail. %s',\n messageId,\n err.message\n );\n callback(err);\n });\n sendmail.once('close', callback);\n\n sendmail.stdin.on('error', err => {\n this.logger.error(\n {\n err,\n tnx: 'stdin',\n messageId\n },\n 'Error occurred when piping message %s to sendmail. %s',\n messageId,\n err.message\n );\n callback(err);\n });\n\n const recipients = [].concat(envelope.to || []);\n if (recipients.length > 3) {\n recipients.push('...and ' + recipients.splice(2).length + ' more');\n }\n this.logger.info(\n {\n tnx: 'send',\n messageId\n },\n 'Sending message %s to <%s>',\n messageId,\n recipients.join(', ')\n );\n\n const sourceStream = mail.message.createReadStream();\n let stream = sourceStream;\n if (this.options.newline) {\n // apply the transport-level line ending transform; the message-level\n // `newline` option is handled by MimeNode in createReadStream()\n stream = sourceStream.pipe(this.winbreak ? new LeWindows() : new LeUnix());\n sourceStream.once('error', err => stream.emit('error', err));\n }\n\n stream.once('error', err => {\n this.logger.error(\n {\n err,\n tnx: 'stdin',\n messageId\n },\n 'Error occurred when generating message %s. %s',\n messageId,\n err.message\n );\n sendmail.kill('SIGINT'); // do not deliver the message\n callback(err);\n });\n\n stream.pipe(sendmail.stdin);\n } else {\n const err = new Error('sendmail was not found');\n err.code = errors.ESENDMAIL;\n return callback(err);\n }\n }\n}\n\nmodule.exports = SendmailTransport;\n","'use strict';\n\nconst packageData = require('../../package.json');\nconst shared = require('../shared');\nconst LeWindows = require('../mime-node/le-windows');\nconst LeUnix = require('../mime-node/le-unix');\n\n/**\n * Generates a Transport object for streaming\n *\n * Possible options can be the following:\n *\n * * **buffer** if true, then returns the message as a Buffer object instead of a stream\n * * **newline** either 'windows' or 'unix'\n *\n * @constructor\n * @param {Object} optional config parameter\n */\nclass StreamTransport {\n constructor(options) {\n options = options || {};\n\n this.options = options;\n\n this.name = 'StreamTransport';\n this.version = packageData.version;\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'stream-transport'\n });\n\n this.winbreak = ['win', 'windows', 'dos', '\\r\\n'].includes((options.newline || '').toString().toLowerCase());\n }\n\n /**\n * Compiles a mailcomposer message and forwards it to handler that sends it\n *\n * @param {Object} emailMessage MailComposer object\n * @param {Function} callback Callback function to run when the sending is completed\n */\n send(mail, done) {\n // We probably need this in the output\n mail.message.keepBcc = true;\n\n const envelope = mail.data.envelope || mail.message.getEnvelope();\n const messageId = mail.message.messageId();\n\n const recipients = [].concat(envelope.to || []);\n if (recipients.length > 3) {\n recipients.push('...and ' + recipients.splice(2).length + ' more');\n }\n this.logger.info(\n {\n tnx: 'send',\n messageId\n },\n 'Sending message %s to <%s> using %s line breaks',\n messageId,\n recipients.join(', '),\n this.winbreak ? '' : ''\n );\n\n setImmediate(() => {\n let stream;\n\n try {\n stream = mail.message.createReadStream();\n if (this.options.newline) {\n // apply the transport-level line ending transform; the message-level\n // `newline` option is handled by MimeNode in createReadStream()\n const sourceStream = stream;\n stream = sourceStream.pipe(this.winbreak ? new LeWindows() : new LeUnix());\n sourceStream.once('error', err => stream.emit('error', err));\n }\n } catch (E) {\n this.logger.error(\n {\n err: E,\n tnx: 'send',\n messageId\n },\n 'Creating send stream failed for %s. %s',\n messageId,\n E.message\n );\n return done(E);\n }\n\n if (!this.options.buffer) {\n stream.once('error', err => {\n this.logger.error(\n {\n err,\n tnx: 'send',\n messageId\n },\n 'Failed creating message for %s. %s',\n messageId,\n err.message\n );\n });\n return done(null, {\n envelope,\n messageId,\n message: stream\n });\n }\n\n const chunks = [];\n let chunklen = 0;\n stream.on('readable', () => {\n let chunk;\n while ((chunk = stream.read()) !== null) {\n chunks.push(chunk);\n chunklen += chunk.length;\n }\n });\n\n stream.once('error', err => {\n this.logger.error(\n {\n err,\n tnx: 'send',\n messageId\n },\n 'Failed creating message for %s. %s',\n messageId,\n err.message\n );\n return done(err);\n });\n\n stream.on('end', () =>\n done(null, {\n envelope,\n messageId,\n message: Buffer.concat(chunks, chunklen)\n })\n );\n });\n }\n}\n\nmodule.exports = StreamTransport;\n","'use strict';\n\nconst packageData = require('../../package.json');\nconst shared = require('../shared');\n\n/**\n * Generates a Transport object to generate JSON output\n *\n * @constructor\n * @param {Object} optional config parameter\n */\nclass JSONTransport {\n constructor(options) {\n options = options || {};\n\n this.options = options;\n\n this.name = 'JSONTransport';\n this.version = packageData.version;\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'json-transport'\n });\n }\n\n /**\n *

Compiles a mailcomposer message and forwards it to handler that sends it.

\n *\n * @param {Object} emailMessage MailComposer object\n * @param {Function} callback Callback function to run when the sending is completed\n */\n send(mail, done) {\n // Sendmail strips this header line by itself\n mail.message.keepBcc = true;\n\n const envelope = mail.data.envelope || mail.message.getEnvelope();\n const messageId = mail.message.messageId();\n\n const recipients = [].concat(envelope.to || []);\n if (recipients.length > 3) {\n recipients.push('...and ' + recipients.splice(2).length + ' more');\n }\n this.logger.info(\n {\n tnx: 'send',\n messageId\n },\n 'Composing JSON structure of %s to <%s>',\n messageId,\n recipients.join(', ')\n );\n\n setImmediate(() => {\n mail.normalize((err, data) => {\n if (err) {\n this.logger.error(\n {\n err,\n tnx: 'send',\n messageId\n },\n 'Failed building JSON structure for %s. %s',\n messageId,\n err.message\n );\n return done(err);\n }\n\n delete data.envelope;\n delete data.normalizedHeaders;\n\n return done(null, {\n envelope,\n messageId,\n message: this.options.skipEncoding ? data : JSON.stringify(data)\n });\n });\n });\n }\n}\n\nmodule.exports = JSONTransport;\n","'use strict';\n\nconst EventEmitter = require('events');\nconst packageData = require('../../package.json');\nconst shared = require('../shared');\nconst errors = require('../errors');\nconst LeWindows = require('../mime-node/le-windows');\nconst MimeNode = require('../mime-node');\n\n/**\n * Tags AWS SDK rejections that carry no `code` property (SDK v3 errors only\n * have a `name`) with the generic SES transport error code, keeping the\n * original error object intact\n */\nfunction tagSesError(err) {\n if (err && typeof err === 'object' && !err.code) {\n err.code = errors.ESES;\n }\n return err;\n}\n\n/**\n * Generates a Transport object for AWS SES\n *\n * @constructor\n * @param {Object} optional config parameter\n */\nclass SESTransport extends EventEmitter {\n constructor(options) {\n super();\n options = options || {};\n\n this.options = options;\n this.ses = this.options.SES;\n\n this.name = 'SESTransport';\n this.version = packageData.version;\n\n this.logger = shared.getLogger(this.options, {\n component: this.options.component || 'ses-transport'\n });\n }\n\n getRegion(cb) {\n if (this.ses.sesClient.config && typeof this.ses.sesClient.config.region === 'function') {\n // promise\n return this.ses.sesClient.config\n .region()\n .then(region => cb(null, region))\n .catch(err => cb(err));\n }\n return cb(null, false);\n }\n\n /**\n * Compiles a mailcomposer message and forwards it to SES\n *\n * @param {Object} emailMessage MailComposer object\n * @param {Function} callback Callback function to run when the sending is completed\n */\n send(mail, callback) {\n let fromHeader = mail.message._headers.find(header => /^from$/i.test(header.key));\n if (fromHeader) {\n const mimeNode = new MimeNode('text/plain');\n fromHeader = mimeNode._convertAddresses(mimeNode._parseAddresses(fromHeader.value));\n }\n\n const envelope = mail.data.envelope || mail.message.getEnvelope();\n const messageId = mail.message.messageId();\n\n const recipients = [].concat(envelope.to || []);\n if (recipients.length > 3) {\n recipients.push('...and ' + recipients.splice(2).length + ' more');\n }\n this.logger.info(\n {\n tnx: 'send',\n messageId\n },\n 'Sending message %s to <%s>',\n messageId,\n recipients.join(', ')\n );\n\n const getRawMessage = next => {\n // do not use Message-ID and Date in DKIM signature\n if (!mail.data._dkim) {\n mail.data._dkim = {};\n }\n if (mail.data._dkim.skipFields && typeof mail.data._dkim.skipFields === 'string') {\n mail.data._dkim.skipFields += ':date:message-id';\n } else {\n mail.data._dkim.skipFields = 'date:message-id';\n }\n\n const sourceStream = mail.message.createReadStream();\n const stream = sourceStream.pipe(new LeWindows());\n const chunks = [];\n let chunklen = 0;\n\n stream.on('readable', () => {\n let chunk;\n while ((chunk = stream.read()) !== null) {\n chunks.push(chunk);\n chunklen += chunk.length;\n }\n });\n\n sourceStream.once('error', err => stream.emit('error', err));\n\n stream.once('error', err => next(err));\n\n stream.once('end', () => next(null, Buffer.concat(chunks, chunklen)));\n };\n\n setImmediate(() =>\n getRawMessage((err, raw) => {\n if (err) {\n this.logger.error(\n {\n err,\n tnx: 'send',\n messageId\n },\n 'Failed creating message for %s. %s',\n messageId,\n err.message\n );\n return callback(err);\n }\n\n const sesMessage = Object.assign(\n {\n Content: {\n Raw: {\n // required\n Data: raw // required\n }\n },\n FromEmailAddress: fromHeader || envelope.from,\n Destination: {\n ToAddresses: envelope.to\n }\n },\n mail.data.ses || {}\n );\n\n this.getRegion((err, region) => {\n if (err || !region) {\n region = 'us-east-1';\n }\n\n const command = new this.ses.SendEmailCommand(sesMessage);\n const sendPromise = this.ses.sesClient.send(command);\n\n sendPromise\n .then(data => {\n if (region === 'us-east-1') {\n region = 'email';\n }\n\n callback(null, {\n envelope: {\n from: envelope.from,\n to: envelope.to\n },\n messageId: '<' + data.MessageId + (!/@/.test(data.MessageId) ? '@' + region + '.amazonses.com' : '') + '>',\n response: data.MessageId,\n raw\n });\n })\n .catch(err => {\n tagSesError(err);\n this.logger.error(\n {\n err,\n tnx: 'send'\n },\n 'Send error for %s: %s',\n messageId,\n err.message\n );\n callback(err);\n });\n });\n })\n );\n }\n\n /**\n * Verifies SES configuration\n *\n * @param {Function} callback Callback function\n */\n verify(callback) {\n let promise;\n if (!callback) {\n promise = new Promise((resolve, reject) => {\n callback = shared.callbackPromise(resolve, reject);\n });\n }\n\n const cb = err => {\n if (err && !['InvalidParameterValue', 'MessageRejected'].includes(err.code || err.Code || err.name)) {\n return callback(tagSesError(err));\n }\n return callback(null, true);\n };\n\n const sesMessage = {\n Content: {\n Raw: {\n Data: Buffer.from('From: \\r\\nTo: \\r\\n Subject: Invalid\\r\\n\\r\\nInvalid')\n }\n },\n FromEmailAddress: 'invalid@invalid',\n Destination: {\n ToAddresses: ['invalid@invalid']\n }\n };\n\n // the region value is not used for anything when verifying, but the lookup\n // exercises the client configuration the same way as send() does\n this.getRegion(() => {\n const command = new this.ses.SendEmailCommand(sesMessage);\n const sendPromise = this.ses.sesClient.send(command);\n\n sendPromise.then(() => cb(null)).catch(err => cb(err));\n });\n\n return promise;\n }\n}\n\nmodule.exports = SESTransport;\n","'use strict';\n\nconst Mailer = require('./mailer');\nconst shared = require('./shared');\nconst SMTPPool = require('./smtp-pool');\nconst SMTPTransport = require('./smtp-transport');\nconst SendmailTransport = require('./sendmail-transport');\nconst StreamTransport = require('./stream-transport');\nconst JSONTransport = require('./json-transport');\nconst SESTransport = require('./ses-transport');\nconst errors = require('./errors');\nconst nmfetch = require('./fetch');\nconst packageData = require('../package.json');\n\nconst ETHEREAL_API = (process.env.ETHEREAL_API || 'https://api.nodemailer.com').replace(/\\/+$/, '');\nconst ETHEREAL_WEB = (process.env.ETHEREAL_WEB || 'https://ethereal.email').replace(/\\/+$/, '');\nconst ETHEREAL_API_KEY = (process.env.ETHEREAL_API_KEY || '').replace(/\\s*/g, '') || null;\nconst ETHEREAL_CACHE = ['true', 'yes', 'y', '1'].includes((process.env.ETHEREAL_CACHE || 'yes').toString().trim().toLowerCase());\n\nlet testAccount = false;\n\nmodule.exports.createTransport = function (transporter, defaults) {\n let options;\n\n if (\n // provided transporter is a configuration object, not transporter plugin\n (typeof transporter === 'object' && typeof transporter.send !== 'function') ||\n // provided transporter looks like a connection url\n (typeof transporter === 'string' && /^(smtps?|direct):/i.test(transporter))\n ) {\n const urlConfig = typeof transporter === 'string' ? transporter : transporter.url;\n if (urlConfig) {\n // parse a configuration URL into configuration options\n options = shared.parseConnectionUrl(urlConfig);\n } else {\n options = transporter;\n }\n\n if (options.pool) {\n transporter = new SMTPPool(options);\n } else if (options.sendmail) {\n transporter = new SendmailTransport(options);\n } else if (options.streamTransport) {\n transporter = new StreamTransport(options);\n } else if (options.jsonTransport) {\n transporter = new JSONTransport(options);\n } else if (options.SES) {\n if (options.SES.ses && options.SES.aws) {\n const error = new Error(\n 'Using legacy SES configuration, expecting @aws-sdk/client-sesv2, see https://nodemailer.com/transports/ses/'\n );\n error.code = errors.ECONFIG;\n throw error;\n }\n transporter = new SESTransport(options);\n } else {\n transporter = new SMTPTransport(options);\n }\n }\n\n return new Mailer(transporter, options, defaults);\n};\n\nmodule.exports.createTestAccount = function (apiUrl, callback) {\n let promise;\n\n if (!callback && typeof apiUrl === 'function') {\n callback = apiUrl;\n apiUrl = false;\n }\n\n if (!callback) {\n promise = new Promise((resolve, reject) => {\n callback = shared.callbackPromise(resolve, reject);\n });\n }\n\n if (ETHEREAL_CACHE && testAccount) {\n setImmediate(() => callback(null, testAccount));\n return promise;\n }\n\n apiUrl = apiUrl || ETHEREAL_API;\n\n const chunks = [];\n let chunklen = 0;\n\n const requestHeaders = {};\n const requestBody = {\n requestor: packageData.name,\n version: packageData.version\n };\n\n if (ETHEREAL_API_KEY) {\n requestHeaders.Authorization = 'Bearer ' + ETHEREAL_API_KEY;\n }\n\n const fetchOptions = {\n contentType: 'application/json',\n method: 'POST',\n headers: requestHeaders,\n body: Buffer.from(JSON.stringify(requestBody))\n };\n\n // Credential-bearing request to the Ethereal API. lib/fetch already\n // validates certs by default; pin rejectUnauthorized:true here so this\n // call stays strict regardless of any future default change and is never\n // relaxed for a real-cert endpoint.\n if (/^https:/i.test(apiUrl)) {\n fetchOptions.tls = { rejectUnauthorized: true };\n }\n\n const req = nmfetch(apiUrl + '/user', fetchOptions);\n\n req.on('readable', () => {\n let chunk;\n while ((chunk = req.read()) !== null) {\n chunks.push(chunk);\n chunklen += chunk.length;\n }\n });\n\n req.once('error', err => callback(err));\n\n req.once('end', () => {\n const res = Buffer.concat(chunks, chunklen);\n let data;\n try {\n data = JSON.parse(res.toString());\n } catch (E) {\n return callback(E);\n }\n if (data.status !== 'success' || data.error) {\n return callback(new Error(data.error || 'Request failed'));\n }\n delete data.status;\n testAccount = data;\n callback(null, testAccount);\n });\n\n return promise;\n};\n\nmodule.exports.getTestMessageUrl = function (info) {\n if (!info || !info.response) {\n return false;\n }\n\n const infoProps = new Map();\n\n // Extract the trailing \"[...]\" part of the response (no \"]\" allowed inside)\n // with linear string scanning; the equivalent regex /\\[([^\\]]+)\\]$/ was\n // flagged for polynomial backtracking on adversarial server responses\n const response = info.response.toString();\n if (response.length > 2 && response.charAt(response.length - 1) === ']') {\n const open = response.indexOf('[', response.lastIndexOf(']', response.length - 2) + 1);\n if (open >= 0 && open < response.length - 2) {\n const props = response.substring(open + 1, response.length - 1);\n props.replace(/\\b([A-Z0-9]+)=([^\\s]+)/g, (m, key, value) => {\n infoProps.set(key, value);\n });\n }\n }\n\n if (infoProps.has('STATUS') && infoProps.has('MSGID')) {\n return (testAccount.web || ETHEREAL_WEB) + '/message/' + infoProps.get('MSGID');\n }\n\n return false;\n};\n","// This function ensures that all the exported values are valid server actions,\n// during the runtime. By definition all actions are required to be async\n// functions, but here we can only check that they are functions.\nexport function ensureServerEntryExports(actions: any[]) {\n for (let i = 0; i < actions.length; i++) {\n const action = actions[i]\n if (typeof action !== 'function') {\n throw new Error(\n `A \"use server\" file can only export async functions, found ${typeof action}.\\nRead more: https://nextjs.org/docs/messages/invalid-use-server-value`\n )\n }\n }\n}\n","\"use server\";\n\nimport nodemailer from \"nodemailer\";\n\ninterface ContactFormData {\n fullName: string;\n email: string;\n subject: string;\n message: string;\n}\n\nexport async function sendEmailAction(data: ContactFormData) {\n const { fullName, email, subject, message } = data;\n\n if (!fullName || !email || !message) {\n return { success: false, error: \"Name, email, and message are required.\" };\n }\n\n let password = process.env.SMTP_PASSWORD || \"\";\n if (password.startsWith('\"') && password.endsWith('\"')) {\n password = password.slice(1, -1);\n }\n // Remove spaces just in case\n password = password.replace(/\\s+/g, \"\");\n\n const transporter = nodemailer.createTransport({\n host: process.env.SMTP_HOST,\n port: Number(process.env.SMTP_PORT) || 465,\n secure: true, \n auth: {\n user: process.env.SMTP_USER,\n pass: password,\n },\n });\n\n try {\n await transporter.sendMail({\n from: `\"${fullName}\" <${process.env.SMTP_USER}>`, \n to: process.env.CONTACT_RECEIVER, \n replyTo: email, \n subject: `New Contact Form Submission: ${subject || \"No Subject\"}`,\n html: `\n
\n

New Contact Form Submission

\n

Name: ${fullName}

\n

Email: ${email}

\n

Subject: ${subject}

\n

Message:

\n
\n ${message.replace(/\\n/g, \"
\")}\n
\n
\n `,\n });\n\n return { success: true };\n } catch (error: any) {\n console.error(\"Email send error:\", error);\n const errorMessage = error instanceof Error ? error.message : String(error);\n return { success: false, error: errorMessage || \"Failed to send the email. Please try again later.\" };\n }\n}\n"],"names":["registerServerReference","maxInt","base","tMin","tMax","skew","damp","initialBias","initialN","delimiter","regexPunycode","regexNonASCII","regexSeparators","errors","overflow","baseMinusTMin","floor","Math","stringFromCharCode","String","fromCharCode","error","type","RangeError","map","array","callback","result","length","mapDomain","domain","parts","split","replace","labels","encoded","join","ucs2decode","string","output","counter","value","charCodeAt","extra","push","ucs2encode","codePoints","fromCodePoint","basicToDigit","codePoint","digitToBasic","digit","flag","adapt","delta","numPoints","firstTime","k","decode","input","inputLength","i","n","bias","basic","lastIndexOf","j","index","oldi","w","t","baseMinusT","out","splice","encode","currentValue","basicLength","handledCPCount","m","handledCPCountPlusOne","q","qMinusT","toUnicode","test","slice","toLowerCase","toASCII","punycode","version","ucs2","module","exports","urllib","URLImpl","URL","SLASHLESS_AUTHORITY","safeDecode","str","decodeURIComponent","_err","normalizeHostname","raw","hostname","charAt","parse","parseQueryString","slashless","exec","normalized","u","port","pathname","search","auth","username","password","query","Object","create","searchParams","forEach","key","prototype","hasOwnProperty","call","Array","isArray","protocol","host","path","href","resolve","from","to","SESSION_TIMEOUT","Cookies","options","cookies","set","cookieStr","url","urlparts","cookie","substr","getPath","expires","Date","now","Number","sessionTimeout","add","get","list","name","isExpired","match","unshift","toString","cookiePart","valueParts","shift","trim","secure","httponly","len","compare","a","b","pop","ERROR_CODES","ECONNECTION","ETIMEDOUT","ESOCKET","EDNS","ETLS","EREQUIRETLS","EPROTOCOL","EENVELOPE","EMESSAGE","ESTREAM","EAUTH","ENOAUTH","EOAUTH2","EMAXLIMIT","ESENDMAIL","ESES","ECONFIG","EPROXY","EFILEACCESS","EURLACCESS","EFETCH","code","keys","http","https","zlib","PassThrough","packageData","net","MAX_REDIRECTS","nmfetch","fetchRes","redirects","maxRedirects","isNaN","concat","parsed","method","toUpperCase","finished","body","handler","headers","userAgent","Authorization","Buffer","contentType","pipe","on","err","sourceUrl","emit","encodeURIComponent","E","req","reqOptions","rejectUnauthorized","agent","tls","assign","isIP","servername","request","setImmediate","timeout","setTimeout","abort","Error","res","inflate","createUnzip","includes","statusCode","location","redirectUrl","redirectParsed","crossHost","downgrade","sensitive","allowErrorResponse","write","end","util","fs","dns","os","DNS_TTL","CACHE_CLEANUP_INTERVAL","MAX_CACHE_SIZE","lastCacheCleanup","_lastCacheCleanup","_resetCacheCleanup","networkInterfaces","isFamilySupported","family","allowInternal","ifaces","reduce","acc","val","filter","internal","some","allowInternalNetworkInterfaces","dnsResolver","Resolver","addresses","NODATA","NOTFOUND","NOTIMP","SERVFAIL","CONNREFUSED","REFUSED","dnsCache","Map","formatDNSValue","random","_addresses","resolveHostname","cached","has","entry","entries","delete","size","toDelete","ipv4Addresses","ipv6Addresses","ipv4Error","ipv6Error","allAddresses","dnsTtl","lookup","all","supportedAddresses","addr","address","console","warn","lookupErr","parseConnectionUrl","direct","user","pass","obj","lKey","indexOf","_logFunc","logger","level","defaults","data","message","args","logLevel","find","getLogger","response","levels","createDefaultLogger","callbackPromise","reject","arguments","parseDataURI","uri","startsWith","commaPos","substring","metaStr","encoding","metaEntries","lastEntry","params","sepPos","bufferData","_decodeError","_bufferError","alloc","resolveContent","promise","Promise","resolveContentValue","content","resolveStream","disableUrlAccess","httpHeaders","parsedDataUri","disableFileAccess","createReadStream","target","source","encodeXText","buf","c","stream","responded","chunks","chunklen","chunk","read","levelMaxLen","max","levelNames","levelName","repeat","print","prefix","tnx","sid","cid","format","line","log","toISOString","bind","defaultMimeType","defaultExtension","mimeTypes","extensions","detectMimeType","filename","extension","ext","detectExtension","mimeType","rootType","subType","Transform","buffer","wrap","lineLength","pos","chunkLength","wrapRegex","RegExp","wrappedLines","Encoder","_curLine","_remainingBytes","inputBytes","outputBytes","_transform","done","b64","lastLF","_flush","QP_RANGES","ord","checkRanges","lineMargin","parseInt","nr","ranges","range","qp","lineBreak","lastLine","base64","isPlainText","isParam","re","hasLongerLines","encodeWord","mimeWordEncoding","maxLength","encodedStr","toCharset","chr","splitMimeEncodedString","lpart","byteLength","encodeWords","encodeAll","firstMatch","lastMatch","startIndex","endIndex","buildHeaderValue","structured","paramsArray","param","buildHeaderParam","encodedParam","JSON","stringify","startPos","encodedStrArr","safeEncodeURIComponent","item","parseHeaderValue","quote","escaped","actualKey","charset","values","s","foldLines","afterSpace","maxlen","lines","curLine","encodeURICharComponent","_E","_handleAddress","tokens","depth","isGroup","state","comment","group","text","textWasQuoted","insideQuotes","token","prevToken","noBreak","groupMembers","parsedGroup","addressparser","_depth","member","extracted","Tokenizer","operatorCurrent","operatorExpecting","node","operators","tokenize","nextChr","checkChar","MAX_NESTED_GROUP_DEPTH","tokenizer","parsedAddresses","handled","current","next","flatten","flatAddresses","walkAddressList","LastNewline","lastByte","LeWindows","lastPos","LeUnix","crypto","shared","mimeFuncs","FORMATTED_HEADERS","MimeNode","nodeCounter","baseBoundary","randomBytes","boundaryPrefix","normalizeHeaderKey","date","parentNode","rootNode","keepBcc","textEncoding","newline","childNodes","_nodeId","_headers","_isPlainText","_hasLongLines","_envelope","_raw","_transforms","_processFuncs","setHeader","createChild","undefined","appendChild","childNode","remove","added","_normalizeHeaderKey","headerValue","addHeader","getHeader","setContent","_contentErrorHandler","removeListener","once","build","buflen","returned","getTransferEncoding","transferEncoding","_getTextEncoding","buildHeaders","toUTCString","messageId","header","formattedHeaders","prepared","_handleContentType","_encodeWords","_encodeHeaderValue","outputStream","transform","winbreak","newlineTransform","processFunc","contentStream","localStream","finalize","childId","processChildNode","boundary","child","multipart","sendContent","createStream","_getStream","_resolve","sourceStream","_resolvedValue","setEnvelope","envelope","_convertAddresses","_parseAddresses","standardFields","getAddresses","getEnvelope","_generateMessageId","setRaw","apply","_normalizeAddress","_generateBoundary","elm","uniqueList","_encodeAddressName","groupListAddresses","lastAt","encodedDomain","nonLatinLen","latinLen","prev","MailComposer","mail","compile","_alternatives","getAlternatives","_htmlNode","alternative","_attachments","getAttachments","_useRelated","related","_useAlternative","_useMixed","attached","_createMixed","_createAlternative","_createRelated","_createContentNode","o","findRelated","eventObject","attachments","attachment","_processDataUrl","isImage","isMessageNode","contentDisposition","contentTransferEncoding","icalEvent","_getIcalEvent","_icalEvent","alternatives","html","watchHtml","amp","element","dataUrl","detectedType","MessageParser","lastBytes","headersParsed","headerBytes","headerChunks","rawHeaders","bodySize","updateLastBytes","lblen","nblen","min","checkHeaders","headerPos","pr1","pr2","parseHeaders","headersFound","RelaxedBody","chunkBuffer","chunkBufferLen","bodyHash","createHash","hashAlgo","remainder","debug","_debugBody","updateHash","bodyStr","nextRemainder","needsFixing","update","digest","defaultFieldNames","fieldNames","headerFieldNames","canonicalizedHeaderData","relaxedHeaders","skipFields","dkimHeader","generateDKIMHeader","domainName","keySelector","relaxedHeaderLine","signer","createSign","signature","sign","privateKey","dkim","includedFields","Set","skip","headerFields","field","headersList","fields","DKIM_ALGO","MAX_MESSAGE_SIZE","DKIMSigner","cacheTreshold","cacheDir","readPos","cachePath","cache","parser","relaxedBody","usingCache","hasErrored","cleanup","unlink","createReadCache","sendNextChunk","sendSignedOutput","keyPos","signNextKey","dkimField","createWriteCache","createWriteStream","unpipe","removeAllListeners","signStream","DKIM","extraOptions","inputStream","writeValue","isBuffer","httpProxyClient","proxyUrl","destinationPort","destinationHost","tlsOptions","proxy","connectOptions","connect","socket","tempSocketErr","destroy","timeoutErr","reqHeaders","Host","Connection","onSocketData","MailMessage","mailer","_defaults","resolveAll","mimeNode","addressKeys","singleKeys","resolveNext","normalize","normalizedHeaders","listHeaders","_getListHeaders","references","inReplyTo","setMailerHeader","xMailer","setPriorityHeaders","priority","setListHeaders","listHeader","listData","_formatListUrl","EventEmitter","Mail","transporter","_defaultPlugins","_convertDataImages","_userPlugins","meta","component","getVersionString","getSocket","methodName","setupProxy","use","step","plugin","sendMail","action","_processPlugins","dkimDomains","_dkim","send","homepage","userPlugins","defaultPlugins","pluginCount","block","processPlugins","curplugins","connection","ipaddress","proxyV2","SocksClient","socksClient","proxyType","connectionOpts","command","userId","userid","authentication","createConnection","info","attachDataUrls","cidCounter","dataUri","DataStream","inByteCount","outByteCount","packageInfo","CONNECTION_TIMEOUT","SOCKET_TIMEOUT","GREETING_TIMEOUT","DNS_TIMEOUT","TEARDOWN_NOOP","decodeServerResponse","utf8","SMTPConnection","id","stage","secureConnection","alreadySecured","secured","_getHostname","customAuth","mapKey","authenticated","destroyed","_remainder","_responseQueue","lastServerResponse","_socket","_supportedAuth","allowsAuth","_supportedExtensions","_maxAllowedSize","_responseActions","_recipientQueue","_greetingTimeout","_connectionTimeout","_destroyed","_closing","_currentDataStream","_onSocketData","_onData","_onSocketError","_onError","_onSocketClose","_onClose","_onSocketEnd","_onEnd","_onSocketTimeout","_onTimeout","_onConnectionSocketError","_onConnectionError","_connectionAttemptId","connectCallback","isDestroyedMessage","_isDestroyedMessage","_formatError","opts","dnsTimeout","localAddress","_setupConnectionHandlers","_upgradeConnection","_onConnect","_resolveAndConnect","_resolved","setKeepAlive","resolved","_fallbackAddresses","_connectOpts","_connectToHost","currentAttemptId","connectFn","connectionTimeout","clearTimeout","canFallback","nextHost","failedHost","quit","_sendCommand","close","closeMethod","_destroy","login","authData","_auth","_authMethod","oauth2","credentials","lastResponse","handlerResponse","authMethods","maxAllowedSize","sendCommand","cmd","codes","status","catch","then","_handleXOauth2Token","_actionAUTH_LOGIN_USER","_actionAUTHComplete","_actionAUTH_CRAM_MD5","startTime","_setEnvelope","envelopeTime","_createSendStream","messageTime","messageSize","reset","localPort","remoteAddress","remotePort","socketTimeout","_actionGreeting","greetingTimeout","resume","lastline","_processResponse","transientCodes","responseCode","serverResponse","transactionLog","upgrading","socketPlain","removePlainSocketListeners","logStr","useSmtpUtf8","rcptQueue","rejected","rejectedErrors","accepted","dsn","_setDsnEnvelope","_actionMAIL","_usingSmtpUtf8","use8BitMime","_using8BitMime","sizeValue","ret","envid","requireTLSExtensionEnabled","return","notify","validNotify","invalidNotify","orcpt","recipient","_getDsnRcptToArgs","dataStream","lmtp","final","_actionLMTPStream","_actionSMTPStream","logStream","_actionLHLO","_actionEHLO","requireTLS","_actionHELO","_ehloLines","ignoreTLS","_actionSTARTTLS","opportunisticTLS","_actionAUTH_LOGIN_PASS","challengeMatch","base64decoded","hmacMD5","createHmac","prepended","_actionAUTH_CRAM_MD5_PASS","isRetry","usePipelining","curRecipient","_actionRCPT","_actionDATA","nextRecipient","ehlo","getToken","accessToken","buildXOAuth2Token","writable","defaultHostname","Stream","XOAuth2","serviceClient","serviceRequestTimeout","provisionCallback","accessUrl","customHeaders","customParams","renewing","renewalQueue","renew","refreshToken","generateCallback","generateToken","updateToken","urlOptions","loggedUrlOptions","iat","tokenData","iss","scope","sub","aud","exp","jwtSignRS256","grant_type","assertion","client_id","clientId","client_secret","clientSecret","refresh_token","postRequest","logData","access_token","errorMessage","error_description","error_uri","expires_in","payload","fetchOptions","toBase64URL","PoolResource","pool","authMethod","_connection","_connected","messages","available","socketOptions","destHost","destPort","timer","unref","forceAuth","recipients","maxMessages","_checkRateLimit","services","service","normalizedService","normalizeService","normalizeKey","aliases","alias","domains","wellKnown","SMTPPool","urlData","maxConnections","_rateLimit","waiting","checkpoint","rateDelta","limit","rateLimit","_closed","_queue","_connections","_connectionCounter","idling","requeueAttempts","_processMessages","invokeCallbacks","_createConnection","queueEntry","_removeConnection","_continueProcessing","_shouldRequeuOnConnectionClose","_requeueEntryOnConnectionClose","_failDeliveryOnConnectionClose","maxRequeues","_clearRateLimit","cb","isIdle","verify","SMTPTransport","getAuth","authOpts","perCallAuth","cleanupPerCallAuth","sendMessage","spawn","SendmailTransport","_spawn","hasInvalidAddresses","sendmail","stdin","kill","StreamTransport","JSONTransport","skipEncoding","tagSesError","SESTransport","ses","SES","getRegion","sesClient","config","region","fromHeader","getRawMessage","sesMessage","Content","Raw","Data","FromEmailAddress","Destination","ToAddresses","SendEmailCommand","sendPromise","MessageId","Code","Mailer","ETHEREAL_API","process","env","ETHEREAL_WEB","ETHEREAL_API_KEY","ETHEREAL_CACHE","testAccount","createTransport","urlConfig","streamTransport","jsonTransport","aws","createTestAccount","apiUrl","requestHeaders","requestBody","requestor","getTestMessageUrl","infoProps","open","props","web","ensureServerEntryExports","actions","sendEmailAction","fullName","email","subject","success","SMTP_PASSWORD","endsWith","SMTP_HOST","SMTP_PORT","SMTP_USER","CONTACT_RECEIVER","replyTo"],"mappings":"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","ignoreList":[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,30,31,32,33,34,35,36,37,38]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__07qac4.._.js b/.next/server/chunks/ssr/[root-of-the-server]__07qac4.._.js new file mode 100644 index 0000000..d49fef1 --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__07qac4.._.js @@ -0,0 +1,3 @@ +module.exports=[93695,(a,b,c)=>{b.exports=a.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},64240,(a,b,c)=>{"use strict";function d(a){if("function"!=typeof WeakMap)return null;var b=new WeakMap,c=new WeakMap;return(d=function(a){return a?c:b})(a)}c._=function(a,b){if(!b&&a&&a.__esModule)return a;if(null===a||"object"!=typeof a&&"function"!=typeof a)return{default:a};var c=d(b);if(c&&c.has(a))return c.get(a);var e={__proto__:null},f=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var g in a)if("default"!==g&&Object.prototype.hasOwnProperty.call(a,g)){var h=f?Object.getOwnPropertyDescriptor(a,g):null;h&&(h.get||h.set)?Object.defineProperty(e,g,h):e[g]=a[g]}return e.default=a,c&&c.set(a,e),e}},50640,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},10585,a=>{a.v("/_next/static/media/favicon.14w3bhkxgz946.ico"+(globalThis.NEXT_CLIENT_ASSET_SUFFIX||""))},68611,a=>{"use strict";let b={src:a.i(10585).default,width:40,height:40};a.s(["default",0,b])},25333,a=>{a.v("/_next/static/media/icon.14w3bhkxgz946.png"+(globalThis.NEXT_CLIENT_ASSET_SUFFIX||""))},21646,a=>{"use strict";let b={src:a.i(25333).default,width:40,height:40};a.s(["default",0,b])},76629,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/src/components/sections/HowItWorksHero.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/components/sections/HowItWorksHero.tsx ","default")},96258,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/src/components/sections/HowItWorksHero.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/components/sections/HowItWorksHero.tsx","default")},45003,a=>{"use strict";a.i(76629);var b=a.i(96258);a.n(b)},66763,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/src/modules/how-it-works-3d/Experience3DLoader.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/modules/how-it-works-3d/Experience3DLoader.tsx ","default")},66059,a=>{"use strict";a.s(["default",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call the default export of [project]/src/modules/how-it-works-3d/Experience3DLoader.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/modules/how-it-works-3d/Experience3DLoader.tsx","default")},70474,a=>{"use strict";a.i(66763);var b=a.i(66059);a.n(b)},47112,a=>{"use strict";var b=a.i(7997),c=a.i(45003),d=a.i(70474);a.s(["default",0,function(){return(0,b.jsx)("div",{id:"how-it-works",className:"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none",children:(0,b.jsx)("div",{className:"content",children:(0,b.jsx)("div",{className:"content-inner",children:(0,b.jsxs)("div",{"data-elementor-type":"wp-page","data-elementor-id":"59",className:"elementor elementor-59",children:[(0,b.jsx)(c.default,{}),(0,b.jsx)(d.default,{})]})})})})},"metadata",0,{title:"How It Works – Doormile",description:"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."}])},90862,a=>{a.n(a.i(47112))}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__07qac4.._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__07qac4.._.js.map b/.next/server/chunks/ssr/[root-of-the-server]__07qac4.._.js.map new file mode 100644 index 0000000..7340971 --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__07qac4.._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../src/app/favicon.ico.mjs%20%28structured%20image%20object%29","../../../../src/app/icon.png.mjs%20%28structured%20image%20object%29","../../../../src/components/sections/HowItWorksHero.tsx/__nextjs-internal-proxy.mjs","../../../../src/modules/how-it-works-3d/Experience3DLoader.tsx/__nextjs-internal-proxy.mjs","../../../../src/app/how-it-works/page.tsx"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","import src from \"IMAGE\";\nexport default { src, width: 40, height: 40 }\n","import src from \"IMAGE\";\nexport default { src, width: 40, height: 40 }\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nimport { registerClientReference } from \"react-server-dom-turbopack/server\";\nexport default registerClientReference(\n function() { throw new Error(\"Attempted to call the default export of [project]/src/components/sections/HowItWorksHero.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/components/sections/HowItWorksHero.tsx\",\n \"default\",\n);\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nimport { registerClientReference } from \"react-server-dom-turbopack/server\";\nexport default registerClientReference(\n function() { throw new Error(\"Attempted to call the default export of [project]/src/modules/how-it-works-3d/Experience3DLoader.tsx from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/modules/how-it-works-3d/Experience3DLoader.tsx\",\n \"default\",\n);\n","import React from \"react\";\nimport HowItWorksHero from \"../../components/sections/HowItWorksHero\";\nimport Experience3DLoader from \"@/modules/how-it-works-3d/Experience3DLoader\";\n\nexport const metadata = {\n title: \"How It Works – Doormile\",\n description: \"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI.\",\n};\n\nexport default function HowItWorksPage() {\n return (\n
\n
\n
\n
\n \n {/* The first/mid/last-mile story is now told by the scroll-driven 3D\n experience, which replaces the former Miles3 / WhyChooseDoormile /\n TheDoormileWay content sections on this page. */}\n \n
\n
\n
\n
\n );\n}\n"],"names":["_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","_interop_require_wildcard","obj","__esModule","default","cache","has","get","newObj","__proto__","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","exports","_","InvariantError","Error","constructor","message","options","endsWith","name","src","width","height","metadata","title","description","HowItWorksPage","id","className"],"mappings":"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","ignoreList":[0,1,4,5]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__07uj_3p._.js b/.next/server/chunks/ssr/[root-of-the-server]__07uj_3p._.js new file mode 100644 index 0000000..fd5beba --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__07uj_3p._.js @@ -0,0 +1,3 @@ +module.exports=[14747,(a,b,c)=>{b.exports=a.x("path",()=>require("path"))},20460,(a,b,c)=>{(()=>{"use strict";"u">typeof __nccwpck_require__&&(__nccwpck_require__.ab="/ROOT/node_modules/next/dist/compiled/cookie/");var a,c,d,e,f={};f.parse=function(b,c){if("string"!=typeof b)throw TypeError("argument str must be a string");for(var e={},f=b.split(d),g=(c||{}).decode||a,h=0;h{(()=>{"use strict";var a={56:a=>{a.exports=function(a,b){return"string"==typeof a?g(a):"number"==typeof a?f(a,b):null},a.exports.format=f,a.exports.parse=g;var b=/\B(?=(\d{3})+(?!\d))/g,c=/(?:\.0*|(\.[^0]+)0+)$/,d={b:1,kb:1024,mb:1048576,gb:0x40000000,tb:0x10000000000,pb:0x4000000000000},e=/^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i;function f(a,e){if(!Number.isFinite(a))return null;var f=Math.abs(a),g=e&&e.thousandsSeparator||"",h=e&&e.unitSeparator||"",i=e&&void 0!==e.decimalPlaces?e.decimalPlaces:2,j=!!(e&&e.fixedDecimals),k=e&&e.unit||"";k&&d[k.toLowerCase()]||(k=f>=d.pb?"PB":f>=d.tb?"TB":f>=d.gb?"GB":f>=d.mb?"MB":f>=d.kb?"KB":"B");var l=(a/d[k.toLowerCase()]).toFixed(i);return j||(l=l.replace(c,"$1")),g&&(l=l.split(".").map(function(a,c){return 0===c?a.replace(b,g):a}).join(".")),l+h+k}function g(a){if("number"==typeof a&&!isNaN(a))return a;if("string"!=typeof a)return null;var b,c=e.exec(a),f="b";return c?(b=parseFloat(c[1]),f=c[4].toLowerCase()):(b=parseInt(a,10),f="b"),Math.floor(d[f]*b)}}},c={};function d(b){var e=c[b];if(void 0!==e)return e.exports;var f=c[b]={exports:{}},g=!0;try{a[b](f,f.exports,d),g=!1}finally{g&&delete c[b]}return f.exports}d.ab="/ROOT/node_modules/next/dist/compiled/bytes/",b.exports=d(56)})()},42440,a=>{"use strict";a.s(["isFullStringUrl",0,function(a){return/https?:\/\//.test(a)},"parseUrl",0,function(a){let b;try{b=new URL(a,"http://n")}catch{}return b}])},56704,(a,b,c)=>{b.exports=a.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(a,b,c)=>{b.exports=a.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(a,b,c)=>{b.exports=a.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},20635,(a,b,c)=>{b.exports=a.x("next/dist/server/app-render/action-async-storage.external.js",()=>require("next/dist/server/app-render/action-async-storage.external.js"))},43285,(a,b,c)=>{b.exports=a.x("next/dist/server/app-render/dynamic-access-async-storage.external.js",()=>require("next/dist/server/app-render/dynamic-access-async-storage.external.js"))},18622,(a,b,c)=>{b.exports=a.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},24951,(a,b,c)=>{"use strict";b.exports=a.r(18622)},11857,(a,b,c)=>{"use strict";b.exports=a.r(24951).vendored["react-rsc"].ReactServerDOMTurbopackServer},24361,(a,b,c)=>{b.exports=a.x("util",()=>require("util"))},70406,(a,b,c)=>{b.exports=a.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},717,(a,b,c)=>{"use strict";b.exports=a.r(24951).vendored["react-rsc"].React},7997,(a,b,c)=>{"use strict";b.exports=a.r(24951).vendored["react-rsc"].ReactJsxRuntime},75465,(a,b,c)=>{"use strict";b.exports=a.r(24951).vendored["react-rsc"].ReactDOM}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__07uj_3p._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__07uj_3p._.js.map b/.next/server/chunks/ssr/[root-of-the-server]__07uj_3p._.js.map new file mode 100644 index 0000000..6f167d5 --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__07uj_3p._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/dist/compiled/cookie/index.js","../../../../node_modules/next/dist/compiled/bytes/index.js","../../../../node_modules/next/src/lib/url.ts","../../../../node_modules/next/src/server/route-modules/app-page/module.compiled.js","../../../../node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.ts","../../../../node_modules/next/src/server/route-modules/app-page/vendored/rsc/react.ts","../../../../node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.ts","../../../../node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-dom.ts"],"sourcesContent":["(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var r=e;\n/*!\n * cookie\n * Copyright(c) 2012-2014 Roman Shtylman\n * Copyright(c) 2015 Douglas Christopher Wilson\n * MIT Licensed\n */r.parse=parse;r.serialize=serialize;var i=decodeURIComponent;var t=encodeURIComponent;var a=/; */;var n=/^[\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+$/;function parse(e,r){if(typeof e!==\"string\"){throw new TypeError(\"argument str must be a string\")}var t={};var n=r||{};var o=e.split(a);var s=n.decode||i;for(var p=0;p{\"use strict\";var e={56:e=>{\n/*!\n * bytes\n * Copyright(c) 2012-2014 TJ Holowaychuk\n * Copyright(c) 2015 Jed Watson\n * MIT Licensed\n */\ne.exports=bytes;e.exports.format=format;e.exports.parse=parse;var r=/\\B(?=(\\d{3})+(?!\\d))/g;var a=/(?:\\.0*|(\\.[^0]+)0+)$/;var t={b:1,kb:1<<10,mb:1<<20,gb:1<<30,tb:Math.pow(1024,4),pb:Math.pow(1024,5)};var i=/^((-|\\+)?(\\d+(?:\\.\\d+)?)) *(kb|mb|gb|tb|pb)$/i;function bytes(e,r){if(typeof e===\"string\"){return parse(e)}if(typeof e===\"number\"){return format(e,r)}return null}function format(e,i){if(!Number.isFinite(e)){return null}var n=Math.abs(e);var o=i&&i.thousandsSeparator||\"\";var s=i&&i.unitSeparator||\"\";var f=i&&i.decimalPlaces!==undefined?i.decimalPlaces:2;var u=Boolean(i&&i.fixedDecimals);var p=i&&i.unit||\"\";if(!p||!t[p.toLowerCase()]){if(n>=t.pb){p=\"PB\"}else if(n>=t.tb){p=\"TB\"}else if(n>=t.gb){p=\"GB\"}else if(n>=t.mb){p=\"MB\"}else if(n>=t.kb){p=\"KB\"}else{p=\"B\"}}var b=e/t[p.toLowerCase()];var l=b.toFixed(f);if(!u){l=l.replace(a,\"$1\")}if(o){l=l.split(\".\").map((function(e,a){return a===0?e.replace(r,o):e})).join(\".\")}return l+s+p}function parse(e){if(typeof e===\"number\"&&!isNaN(e)){return e}if(typeof e!==\"string\"){return null}var r=i.exec(e);var a;var n=\"b\";if(!r){a=parseInt(e,10);n=\"b\"}else{a=parseFloat(r[1]);n=r[4].toLowerCase()}return Math.floor(t[n]*a)}}};var r={};function __nccwpck_require__(a){var t=r[a];if(t!==undefined){return t.exports}var i=r[a]={exports:{}};var n=true;try{e[a](i,i.exports,__nccwpck_require__);n=false}finally{if(n)delete r[a]}return i.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var a=__nccwpck_require__(56);module.exports=a})();","import type { UrlWithParsedQuery } from 'url'\nimport { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\n\nconst DUMMY_ORIGIN = 'http://n'\n\nexport function isFullStringUrl(url: string) {\n return /https?:\\/\\//.test(url)\n}\n\nexport function parseUrl(url: string): URL | undefined {\n let parsed: URL | undefined = undefined\n try {\n parsed = new URL(url, DUMMY_ORIGIN)\n } catch {}\n return parsed\n}\n\nexport function parseReqUrl(url: string): UrlWithParsedQuery | undefined {\n const parsedUrl: URL | undefined = parseUrl(url)\n\n if (!parsedUrl) {\n return\n }\n\n const query: Record = {}\n\n for (const key of parsedUrl.searchParams.keys()) {\n const values = parsedUrl.searchParams.getAll(key)\n query[key] = values.length > 1 ? values : values[0]\n }\n\n const legacyUrl: UrlWithParsedQuery = {\n query,\n hash: parsedUrl.hash,\n search: parsedUrl.search,\n path: parsedUrl.pathname,\n pathname: parsedUrl.pathname,\n href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`,\n host: '',\n hostname: '',\n auth: '',\n protocol: '',\n slashes: null,\n port: '',\n }\n return legacyUrl\n}\n\nexport function stripNextRscUnionQuery(relativeUrl: string): string {\n const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN)\n urlInstance.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n return urlInstance.pathname + urlInstance.search\n}\n","if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactServerDOMTurbopackServer\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.React\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactJsxRuntime\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactDOM\n"],"names":["__nccwpck_require__","ab","e","r","parse","serialize","i","decodeURIComponent","t","encodeURIComponent","a","n","TypeError","o","split","s","decode","p","length","f","u","indexOf","v","substr","trim","c","slice","undefined","tryDecode","encode","test","maxAge","isNaN","isFinite","Math","floor","domain","path","expires","toUTCString","httpOnly","secure","sameSite","toLowerCase","module","exports","bytes","format","b","kb","mb","gb","tb","pow","pb","Number","abs","thousandsSeparator","unitSeparator","decimalPlaces","Boolean","fixedDecimals","unit","l","toFixed","replace","map","join","exec","parseInt","parseFloat","NEXT_RSC_UNION_QUERY","DUMMY_ORIGIN","isFullStringUrl","url","parseUrl","parsed","URL","parseReqUrl","parsedUrl","query","key","searchParams","keys","values","getAll","legacyUrl","hash","search","pathname","href","host","hostname","auth","protocol","slashes","port","stripNextRscUnionQuery","relativeUrl","urlInstance","delete","process","env","NEXT_RUNTIME","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK","vendored","ReactServerDOMTurbopackServer","React","ReactJsxRuntime","ReactDOM"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__0800b30._.js b/.next/server/chunks/ssr/[root-of-the-server]__0800b30._.js new file mode 100644 index 0000000..106dfaa --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__0800b30._.js @@ -0,0 +1,186 @@ +module.exports=[93695,(a,b,c)=>{b.exports=a.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},64240,(a,b,c)=>{"use strict";function d(a){if("function"!=typeof WeakMap)return null;var b=new WeakMap,c=new WeakMap;return(d=function(a){return a?c:b})(a)}c._=function(a,b){if(!b&&a&&a.__esModule)return a;if(null===a||"object"!=typeof a&&"function"!=typeof a)return{default:a};var c=d(b);if(c&&c.has(a))return c.get(a);var e={__proto__:null},f=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var g in a)if("default"!==g&&Object.prototype.hasOwnProperty.call(a,g)){var h=f?Object.getOwnPropertyDescriptor(a,g):null;h&&(h.get||h.set)?Object.defineProperty(e,g,h):e[g]=a[g]}return e.default=a,c&&c.set(a,e),e}},50640,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},4329,a=>{"use strict";let b=[{slug:"how-ai-is-transforming-last-mile-ev-delivery",title:"How Better Planning Improves Last-Mile EV Delivery",excerpt:"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.",category:"Technology",image:"/images/blog-post-pic-17.webp",date:"2025-10-02",intro:"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.",content:[{type:"paragraph",text:"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs."},{type:"heading",level:2,text:"The shift from fixed rules to daily planning"},{type:"paragraph",text:"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual."},{type:"list",items:["Order volumes by area, time slot, and customer type","Travel times based on the city's actual traffic patterns","Battery use by vehicle type, rider load, and route length","Feedback from completed deliveries, failed attempts, and late arrivals"]},{type:"heading",level:3,text:"Adjusting during the day"},{type:"paragraph",text:"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/ev-paradox.webp",alt:"Electric delivery vehicle routing visualisation",caption:"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub."},{type:"quote",text:"With EVs, a route is only useful if the vehicle can finish it and still return safely.",cite:"Doormile Operations"},{type:"heading",level:2,text:"What this means for operators"},{type:"paragraph",text:"For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window."},{type:"list",ordered:!0,items:["Record delivery times, failed attempts, traffic delays, and charging cycles.","Build travel-time estimates from the areas your riders actually serve.","Check every route against battery capacity before dispatch.","Replan when traffic, orders, or vehicle availability changes."]},{type:"paragraph",text:"The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time."}]},{slug:"42-less-distance-insights-from-our-hyderabad-hub",title:"42% Less Distance: Insights from Our Hyderabad Hub",excerpt:"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.",category:"Case Study",image:"/images/blog-post-pic-15.webp",date:"2025-09-18",intro:"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.",content:[{type:"paragraph",text:"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day."},{type:"heading",level:2,text:"The baseline"},{type:"paragraph",text:"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed."},{type:"paragraph",text:"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment."},{type:"list",items:["Zone-based allocation that missed nearby cross-zone drops","Manual stop sequencing during busy dispatch windows","ETAs checked after routing instead of before dispatch","Traffic and delay handling that depended on phone calls from riders"]},{type:"heading",level:3,text:"What changed"},{type:"paragraph",text:"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/last-mile-approach.webp",alt:"Hyderabad delivery hub routing analysis",caption:"Planning the day's deliveries together removed repeated cross-town travel."},{type:"heading",level:2,text:"The results"},{type:"list",items:["42% reduction in total distance travelled across the hub","37% fewer vehicles required for the same delivery volume","No SLA misses during the measured deployment window","Lower fuel use and fewer unnecessary kilometres per parcel"]},{type:"quote",text:"The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.",cite:"Hyderabad Hub Operations"},{type:"heading",level:3,text:"Why this applies beyond one hub"},{type:"paragraph",text:"The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes."},{type:"paragraph",text:"A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy."}]},{slug:"miletruth-ai-10-stages-to-smarter-dispatch",title:"MileTruth™: 10 Stages to Smarter Dispatch",excerpt:"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.",category:"MileTruth",image:"/images/blog-post-pic-31.webp",date:"2025-09-05",intro:"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.",content:[{type:"paragraph",text:"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day."},{type:"heading",level:2,text:"The ten stages"},{type:"list",ordered:!0,items:["Order intake: new orders, rider availability, and vehicle status are collected.","Address check: delivery points, time windows, and service notes are verified.","Stop planning: each stop gets an expected service time and delivery priority.","Travel-time check: routes are compared against time-of-day traffic.","Constraint check: capacity, shift time, customer windows, and range are applied.","Route options: several possible plans are built for the same order set.","Plan selection: the lowest-cost workable route plan is selected.","Battery check: EV routes are checked against real charge capacity.","ETA check: promised delivery times are verified before dispatch.","Dispatch output: the final route is sent to the operations team."]},{type:"heading",level:3,text:"Why staging matters"},{type:"paragraph",text:"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue."},{type:"image",src:"/images/blog-post-pic-31.webp",alt:"MileTruth routing pipeline diagram",caption:"A staged dispatch process catches address, range, and ETA issues before riders leave."},{type:"quote",text:"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.",cite:"MileTruth Engineering"},{type:"heading",level:2,text:"Comparing route options"},{type:"paragraph",text:"The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger."},{type:"list",items:["Several route plans checked before dispatch","Distance, time windows, capacity, and range considered together","Range and ETA checked before the route reaches the rider","Fast output that still leaves room for dispatcher review"]},{type:"paragraph",text:"The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub."}]},{slug:"the-ev-paradox-solving-range-anxiety-for-urban-fleets",title:"The EV Paradox: Solving Range Anxiety for Urban Fleets",excerpt:"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.",category:"EV Fleet",image:"/images/ev-paradox.webp",date:"2025-08-21",intro:"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan."},{slug:"why-mathematical-precision-beats-heuristics-in-routing",title:"Why Mathematical Precision Beats Heuristics in Routing",excerpt:"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.",category:"Technology",image:"/images/blog-post-pic-14.webp",date:"2025-08-07",intro:"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch."},{slug:"fleet-reduction-without-compromising-delivery-volume",title:"Fleet Reduction Without Compromising Delivery Volume",excerpt:"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.",category:"Fleet Management",image:"/images/blog-post-pic-8.webp",date:"2025-07-24",intro:"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom."},{slug:"building-a-greener-city-the-future-of-urban-logistics",title:"Building a Greener City: The Future of Urban Logistics",excerpt:"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.",category:"Sustainability",image:"/images/blog-post-pic-6.webp",date:"2025-07-10",intro:"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day."},{slug:"how-doormile-maintains-99-9-sla-compliance-at-scale",title:"How Doormile Maintains 99.9% SLA Compliance at Scale",excerpt:"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.",category:"Operations",image:"/images/last-mile-approach.webp",date:"2025-06-26",intro:"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk."},{slug:"battery-simulation-the-secret-to-ev-route-pre-validation",title:"Battery Simulation: The Secret to EV Route Pre-Validation",excerpt:"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.",category:"EV Fleet",image:"/images/blog-post-pic-3.webp",date:"2025-06-12",intro:"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch."}].map(a=>{var b;return{slug:a.slug,title:a.title,excerpt:a.excerpt,category:a.category,image:a.image,date:a.date,author:"Doormile Team",intro:a.intro,content:a.content??(b={title:a.title,category:a.category,image:a.image},[{type:"paragraph",text:`In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. ${b.title} looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.`},{type:"heading",level:2,text:"Why this matters for fleet teams"},{type:"paragraph",text:"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."},{type:"list",items:["Fewer vehicles needed for the same number of drops","Lower cost per drop through better stop sequencing","ETAs that match traffic, distance, and delivery windows","Less fuel or charge used per completed order"]},{type:"heading",level:3,text:"From orders to dispatch"},{type:"paragraph",text:"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."},{type:"image",src:b.image,alt:b.title,caption:`${b.category}: route planning decisions made before dispatch.`},{type:"quote",text:"A route should be checked before the rider leaves, not explained after the customer calls.",cite:"Doormile Operations"},{type:"heading",level:2,text:"Putting it into practice"},{type:"paragraph",text:"The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time."},{type:"list",ordered:!0,items:["Benchmark today's distance, fleet size, and on-time rate.","Include vehicle capacity, delivery windows, rider shifts, and battery charge.","Check routes against traffic and customer commitments before dispatch.","Compare the next dispatch cycle against the old plan."]},{type:"paragraph",text:"Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead."}])}});function c(a){return b.find(b=>b.slug===a)}a.s(["SITE_URL",0,"https://doormile.com","blogPosts",0,b,"estimateReadingTime",0,function(a){return Math.max(1,Math.round((a.content.reduce((a,b)=>"paragraph"===b.type||"quote"===b.type||"heading"===b.type?a+b.text.trim().split(/\s+/).length:"list"===b.type?a+b.items.join(" ").trim().split(/\s+/).length:a,0)+a.intro.trim().split(/\s+/).length)/200))},"formatDate",0,function(a){return new Date(`${a}T00:00:00Z`).toLocaleDateString("en-US",{year:"numeric",month:"short",day:"numeric",timeZone:"UTC"})},"getAdjacentPosts",0,function(a){let c=b.findIndex(b=>b.slug===a);return -1===c?{prev:null,next:null}:{prev:c>0?b[c-1]:null,next:ca.slug)},"getCategories",0,function(){let a=new Map;for(let c of b)a.set(c.category,(a.get(c.category)??0)+1);return Array.from(a,([a,b])=>({name:a,count:b})).sort((a,b)=>a.name.localeCompare(b.name))},"getPostBySlug",0,c,"getRecentPosts",0,function(a=4){return[...b].sort((a,b)=>b.date.localeCompare(a.date)).slice(0,a)},"getRelatedPosts",0,function(a,d=3){let e=c(a);if(!e)return b.slice(0,d);let f=b.filter(b=>b.slug!==a),g=(a,b)=>b.date.localeCompare(a.date);return[...f.filter(a=>a.category===e.category).sort(g),...f.filter(a=>a.category!==e.category).sort(g)].slice(0,d)}])},10585,a=>{a.v("/_next/static/media/favicon.14w3bhkxgz946.ico"+(globalThis.NEXT_CLIENT_ASSET_SUFFIX||""))},68611,a=>{"use strict";let b={src:a.i(10585).default,width:40,height:40};a.s(["default",0,b])},25333,a=>{a.v("/_next/static/media/icon.14w3bhkxgz946.png"+(globalThis.NEXT_CLIENT_ASSET_SUFFIX||""))},21646,a=>{"use strict";let b={src:a.i(25333).default,width:40,height:40};a.s(["default",0,b])},56643,a=>{"use strict";var b=a.i(7997),c=a.i(75465);function d(){return(0,c.preload)("/images/home2-banner-1.webp",{as:"image"}),(0,b.jsxs)(b.Fragment,{children:[(0,b.jsx)("style",{dangerouslySetInnerHTML:{__html:` + .blogs-hero-title { + color: #ffffff !important; + font-family: var(--font-manrope), sans-serif !important; + font-size: clamp(34px, 5.5vw, 68px) !important; + font-weight: 850 !important; + line-height: 1.08 !important; + text-transform: uppercase !important; + letter-spacing: -1.5px !important; + margin: 0 !important; + } + .blogs-hero-content { + position: relative !important; + width: 100% !important; + height: 100% !important; + display: flex !important; + align-items: center !important; + justify-content: center !important; + flex-direction: column !important; + max-width: 1000px !important; + margin: 0 auto !important; + padding: 0 15px !important; + box-sizing: border-box !important; + } + `}}),(0,b.jsx)("div",{className:"custom-standard-hero-container",children:(0,b.jsx)("div",{style:{backgroundImage:"url(/images/home2-banner-1.webp)",backgroundPosition:"center center",backgroundRepeat:"no-repeat",backgroundSize:"cover"},className:"custom-standard-hero-card",children:(0,b.jsx)("div",{className:"blogs-hero-content",children:(0,b.jsx)("div",{style:{textAlign:"center",color:"#fff",zIndex:5},children:(0,b.jsxs)("h1",{className:"blogs-hero-title",children:["Delivering Trust.",(0,b.jsx)("br",{}),(0,b.jsx)("span",{style:{color:"#C01227"},children:"Beyond Boundaries"})]})})})})})]})}var e=a.i(3236),f=a.i(95936),g=a.i(19218),h=a.i(4329);function i(){let a=h.blogPosts;return(0,b.jsxs)("div",{className:"elementor-element elementor-element-c70681e e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"c70681e","data-element_type":"container","data-e-type":"container",children:[(0,b.jsx)("style",{dangerouslySetInnerHTML:{__html:` + .custom-blog-grid { + display: grid !important; + grid-template-columns: repeat(3, 1fr) !important; + gap: 40px !important; + width: 100% !important; + max-width: 1200px !important; + margin: 0 auto !important; + padding: 40px 20px !important; + } + + @media (max-width: 1024px) { + .custom-blog-grid { + grid-template-columns: repeat(2, 1fr) !important; + } + } + @media (max-width: 768px) { + .elementor-104 .elementor-element.elementor-element-c70681e { + margin-top: var(--space-section) !important; + margin-bottom: 16px !important; + } + .custom-blog-grid { + grid-template-columns: 1fr !important; + gap: 28px !important; + padding: 24px 20px !important; + } + } + + @media (max-width: 767px) { + .elementor-104 .elementor-element.elementor-element-c70681e { + --padding-left: 10px !important; + --padding-right: 10px !important; + padding-left: 10px !important; + padding-right: 10px !important; + } + .elementor-104 .elementor-element.elementor-element-3dec5cf { + --padding-left: 0px !important; + --padding-right: 0px !important; + padding-left: 0 !important; + padding-right: 0 !important; + } + .elementor-104 .elementor-element.elementor-element-aa12479, + .elementor-104 .elementor-element.elementor-element-aa12479 > .elementor-widget-container, + .elementor-104 .archive-listing, + .elementor-104 .custom-blog-grid { + width: 100% !important; + max-width: 100% !important; + } + .elementor-104 .custom-blog-grid { + padding-left: 0 !important; + padding-right: 0 !important; + } + } + + .custom-blog-card { + display: flex !important; + flex-direction: column !important; + justify-content: space-between !important; + height: 100% !important; + background: #ffffff !important; + border: 1px solid rgba(0, 0, 0, 0.08) !important; + border-radius: 28px !important; + padding: 28px !important; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important; + transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease !important; + cursor: pointer !important; + } + + .custom-blog-card:hover { + transform: translateY(-8px) !important; + box-shadow: 0 20px 40px rgba(192, 18, 39, 0.12) !important; + border-color: rgba(192, 18, 39, 0.2) !important; + } + + .custom-blog-title { + font-size: 20px !important; + font-weight: 800 !important; + color: #1e293b !important; + line-height: 1.35 !important; + text-transform: none !important; + letter-spacing: -0.4px !important; + margin: 0 0 12px 0 !important; + display: -webkit-box !important; + -webkit-line-clamp: 2 !important; + -webkit-box-orient: vertical !important; + overflow: hidden !important; + transition: color 0.2s ease !important; + font-family: var(--font-manrope), sans-serif !important; + } + + .custom-blog-card:hover .custom-blog-title { + color: #c01227 !important; + } + + .custom-blog-excerpt { + font-size: 13.5px !important; + font-weight: 500 !important; + color: #64748b !important; + line-height: 1.6 !important; + margin: 0 0 18px 0 !important; + text-transform: none !important; + font-family: var(--font-manrope), sans-serif !important; + } + + /* Bottom block pinned to the card base. Keeps Read More + image at the + same vertical position across cards with different text lengths. */ + .custom-blog-bottom { + display: flex !important; + flex-direction: column !important; + margin-top: auto !important; + } + + .custom-blog-readmore { + display: inline-flex !important; + align-items: center !important; + align-self: flex-start !important; + gap: 6px !important; + font-size: 13px !important; + font-weight: 800 !important; + color: #c01227 !important; + text-transform: uppercase !important; + letter-spacing: 0.5px !important; + margin: 0 0 24px 0 !important; + font-family: var(--font-manrope), sans-serif !important; + } + + .custom-blog-readmore-arrow { + transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important; + } + + .custom-blog-card:hover .custom-blog-readmore-arrow { + transform: translateX(5px) !important; + } + + .custom-blog-img-container { + position: relative !important; + width: 100% !important; + aspect-ratio: 4 / 3 !important; + border-radius: 20px !important; + overflow: hidden !important; + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05) !important; + } + + .custom-blog-badge { + position: absolute !important; + top: 14px !important; + left: 14px !important; + z-index: 5 !important; + background: #c01227 !important; + color: #ffffff !important; + font-size: 9px !important; + font-weight: 800 !important; + text-transform: uppercase !important; + letter-spacing: 1.2px !important; + padding: 4px 10px !important; + border-radius: 6px !important; + box-shadow: 0 4px 10px rgba(192, 18, 39, 0.2) !important; + font-family: var(--font-manrope), sans-serif !important; + } + `}}),(0,b.jsx)("div",{className:"e-con-inner",children:(0,b.jsx)("div",{className:"elementor-element elementor-element-3dec5cf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3dec5cf","data-element_type":"container","data-e-type":"container",children:(0,b.jsx)("div",{className:"elementor-element elementor-element-aa12479 elementor-widget elementor-widget-logico_blog_listing","data-id":"aa12479","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_blog_listing.default",children:(0,b.jsx)("div",{className:"elementor-widget-container",children:(0,b.jsx)("div",{className:"archive-listing",children:(0,b.jsx)("div",{className:"custom-blog-grid",children:a.map((a,c)=>(0,b.jsx)(g.ScrollReveal,{delay:c%3*.08,duration:.8,yOffset:35,children:(0,b.jsxs)(f.default,{href:`/blog/${a.slug}`,className:"custom-blog-card",style:{textDecoration:"none"},children:[(0,b.jsxs)("div",{className:"flex flex-col",children:[(0,b.jsx)("h3",{className:"custom-blog-title",children:a.title}),(0,b.jsx)("p",{className:"custom-blog-excerpt",children:a.excerpt})]}),(0,b.jsxs)("div",{className:"custom-blog-bottom",children:[(0,b.jsxs)("span",{className:"custom-blog-readmore",children:["Read More",(0,b.jsxs)("svg",{className:"custom-blog-readmore-arrow",width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[(0,b.jsx)("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),(0,b.jsx)("polyline",{points:"12 5 19 12 12 19"})]})]}),(0,b.jsxs)("div",{className:"custom-blog-img-container",children:[(0,b.jsx)(e.default,{src:a.image,alt:a.title,fill:!0,style:{objectFit:"cover"},sizes:"(max-width: 768px) 100vw, 33vw"}),(0,b.jsx)("span",{className:"custom-blog-badge",children:a.category})]})]})]})},a.slug))})})})})})})]})}a.s(["default",0,function(){return(0,b.jsx)("div",{id:"blogs",className:"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none",children:(0,b.jsx)("div",{className:"content",children:(0,b.jsx)("div",{className:"content-inner",children:(0,b.jsxs)("div",{"data-elementor-type":"wp-page","data-elementor-id":"104",className:"elementor elementor-104",children:[(0,b.jsx)(d,{}),(0,b.jsx)(i,{})]})})})})},"metadata",0,{title:"Blog – Doormile",description:"Practical notes on delivery planning, EV fleet operations, route optimisation, charging, and last-mile performance from the Doormile team."}],56643)},22169,a=>{a.n(a.i(56643))}]; + +//# sourceMappingURL=%5Broot-of-the-server%5D__0800b30._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/[root-of-the-server]__0800b30._.js.map b/.next/server/chunks/ssr/[root-of-the-server]__0800b30._.js.map new file mode 100644 index 0000000..fc81075 --- /dev/null +++ b/.next/server/chunks/ssr/[root-of-the-server]__0800b30._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../src/data/blog.ts","../../../../src/app/favicon.ico.mjs%20%28structured%20image%20object%29","../../../../src/app/icon.png.mjs%20%28structured%20image%20object%29","../../../../src/components/sections/BlogsHero.tsx","../../../../src/components/sections/BlogGrid.tsx","../../../../src/app/blog/page.tsx"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","/**\n * Central blog data module: single source of truth for the listing page,\n * the /blog/[slug] route, the sidebar, related posts and prev/next nav.\n *\n * The site is a static export (next.config.ts → output: \"export\"), so all of\n * this is plain data resolved at build time. No CMS, no runtime fetching.\n */\n\nexport const SITE_URL = \"https://doormile.com\";\n\nexport type ContentBlock =\n | { type: \"paragraph\"; text: string }\n | { type: \"heading\"; level: 2 | 3; text: string }\n | { type: \"list\"; ordered?: boolean; items: string[] }\n | { type: \"quote\"; text: string; cite?: string }\n | { type: \"image\"; src: string; alt: string; caption?: string };\n\nexport interface BlogPost {\n slug: string;\n title: string;\n excerpt: string;\n category: string;\n image: string;\n date: string; // ISO (YYYY-MM-DD)\n author: string;\n intro: string;\n content: ContentBlock[];\n}\n\nconst AUTHOR = \"Doormile Team\";\n\n/**\n * Shared rich-content template for non-flagship posts. Seeded with the post's\n * own title / category so every element type (h2, h3, lists, quote, image)\n * renders and every route is complete. Flagship posts below override `content`\n * with fully authored copy.\n */\nfunction templateContent(post: {\n title: string;\n category: string;\n image: string;\n}): ContentBlock[] {\n return [\n {\n type: \"paragraph\",\n text: `In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. ${post.title} looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.`,\n },\n {\n type: \"heading\",\n level: 2,\n text: \"Why this matters for fleet teams\",\n },\n {\n type: \"paragraph\",\n text: \"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.\",\n },\n {\n type: \"list\",\n items: [\n \"Fewer vehicles needed for the same number of drops\",\n \"Lower cost per drop through better stop sequencing\",\n \"ETAs that match traffic, distance, and delivery windows\",\n \"Less fuel or charge used per completed order\",\n ],\n },\n {\n type: \"heading\",\n level: 3,\n text: \"From orders to dispatch\",\n },\n {\n type: \"paragraph\",\n text: `A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.`,\n },\n {\n type: \"image\",\n src: post.image,\n alt: post.title,\n caption: `${post.category}: route planning decisions made before dispatch.`,\n },\n {\n type: \"quote\",\n text: \"A route should be checked before the rider leaves, not explained after the customer calls.\",\n cite: \"Doormile Operations\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"Putting it into practice\",\n },\n {\n type: \"paragraph\",\n text: \"The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.\",\n },\n {\n type: \"list\",\n ordered: true,\n items: [\n \"Benchmark today's distance, fleet size, and on-time rate.\",\n \"Include vehicle capacity, delivery windows, rider shifts, and battery charge.\",\n \"Check routes against traffic and customer commitments before dispatch.\",\n \"Compare the next dispatch cycle against the old plan.\",\n ],\n },\n {\n type: \"paragraph\",\n text: \"Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.\",\n },\n ];\n}\n\ninterface SeedPost {\n slug: string;\n title: string;\n excerpt: string;\n category: string;\n image: string;\n date: string;\n intro: string;\n content?: ContentBlock[]; // present only for flagship posts\n}\n\nconst seeds: SeedPost[] = [\n // ── Flagship 1 ───────────────────────────────────────────────────────────\n {\n slug: \"how-ai-is-transforming-last-mile-ev-delivery\",\n title: \"How Better Planning Improves Last-Mile EV Delivery\",\n excerpt:\n \"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.\",\n category: \"Technology\",\n image: \"/images/blog-post-pic-17.webp\",\n date: \"2025-10-02\",\n intro:\n \"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.\",\n content: [\n {\n type: \"paragraph\",\n text: \"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The shift from fixed rules to daily planning\",\n },\n {\n type: \"paragraph\",\n text: \"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual.\",\n },\n {\n type: \"list\",\n items: [\n \"Order volumes by area, time slot, and customer type\",\n \"Travel times based on the city's actual traffic patterns\",\n \"Battery use by vehicle type, rider load, and route length\",\n \"Feedback from completed deliveries, failed attempts, and late arrivals\",\n ],\n },\n { type: \"heading\", level: 3, text: \"Adjusting during the day\" },\n {\n type: \"paragraph\",\n text: \"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand.\",\n },\n {\n type: \"paragraph\",\n text: \"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance.\",\n },\n {\n type: \"image\",\n src: \"/images/ev-paradox.webp\",\n alt: \"Electric delivery vehicle routing visualisation\",\n caption:\n \"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub.\",\n },\n {\n type: \"quote\",\n text: \"With EVs, a route is only useful if the vehicle can finish it and still return safely.\",\n cite: \"Doormile Operations\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"What this means for operators\",\n },\n {\n type: \"paragraph\",\n text: \"For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window.\",\n },\n {\n type: \"list\",\n ordered: true,\n items: [\n \"Record delivery times, failed attempts, traffic delays, and charging cycles.\",\n \"Build travel-time estimates from the areas your riders actually serve.\",\n \"Check every route against battery capacity before dispatch.\",\n \"Replan when traffic, orders, or vehicle availability changes.\",\n ],\n },\n {\n type: \"paragraph\",\n text: \"The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time.\",\n },\n ],\n },\n\n // ── Flagship 2 ───────────────────────────────────────────────────────────\n {\n slug: \"42-less-distance-insights-from-our-hyderabad-hub\",\n title: \"42% Less Distance: Insights from Our Hyderabad Hub\",\n excerpt:\n \"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.\",\n category: \"Case Study\",\n image: \"/images/blog-post-pic-15.webp\",\n date: \"2025-09-18\",\n intro:\n \"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.\",\n content: [\n {\n type: \"paragraph\",\n text: \"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The baseline\",\n },\n {\n type: \"paragraph\",\n text: \"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed.\",\n },\n {\n type: \"paragraph\",\n text: \"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment.\",\n },\n {\n type: \"list\",\n items: [\n \"Zone-based allocation that missed nearby cross-zone drops\",\n \"Manual stop sequencing during busy dispatch windows\",\n \"ETAs checked after routing instead of before dispatch\",\n \"Traffic and delay handling that depended on phone calls from riders\",\n ],\n },\n {\n type: \"heading\",\n level: 3,\n text: \"What changed\",\n },\n {\n type: \"paragraph\",\n text: \"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together.\",\n },\n {\n type: \"paragraph\",\n text: \"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance.\",\n },\n {\n type: \"image\",\n src: \"/images/last-mile-approach.webp\",\n alt: \"Hyderabad delivery hub routing analysis\",\n caption:\n \"Planning the day's deliveries together removed repeated cross-town travel.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The results\",\n },\n {\n type: \"list\",\n items: [\n \"42% reduction in total distance travelled across the hub\",\n \"37% fewer vehicles required for the same delivery volume\",\n \"No SLA misses during the measured deployment window\",\n \"Lower fuel use and fewer unnecessary kilometres per parcel\",\n ],\n },\n {\n type: \"quote\",\n text: \"The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.\",\n cite: \"Hyderabad Hub Operations\",\n },\n {\n type: \"heading\",\n level: 3,\n text: \"Why this applies beyond one hub\",\n },\n {\n type: \"paragraph\",\n text: \"The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes.\",\n },\n {\n type: \"paragraph\",\n text: \"A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy.\",\n },\n ],\n },\n\n // ── Flagship 3 ───────────────────────────────────────────────────────────\n {\n slug: \"miletruth-ai-10-stages-to-smarter-dispatch\",\n title: \"MileTruth™: 10 Stages to Smarter Dispatch\",\n excerpt:\n \"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.\",\n category: \"MileTruth\",\n image: \"/images/blog-post-pic-31.webp\",\n date: \"2025-09-05\",\n intro:\n \"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.\",\n content: [\n {\n type: \"paragraph\",\n text: \"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day.\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"The ten stages\",\n },\n {\n type: \"list\",\n ordered: true,\n items: [\n \"Order intake: new orders, rider availability, and vehicle status are collected.\",\n \"Address check: delivery points, time windows, and service notes are verified.\",\n \"Stop planning: each stop gets an expected service time and delivery priority.\",\n \"Travel-time check: routes are compared against time-of-day traffic.\",\n \"Constraint check: capacity, shift time, customer windows, and range are applied.\",\n \"Route options: several possible plans are built for the same order set.\",\n \"Plan selection: the lowest-cost workable route plan is selected.\",\n \"Battery check: EV routes are checked against real charge capacity.\",\n \"ETA check: promised delivery times are verified before dispatch.\",\n \"Dispatch output: the final route is sent to the operations team.\",\n ],\n },\n {\n type: \"heading\",\n level: 3,\n text: \"Why staging matters\",\n },\n {\n type: \"paragraph\",\n text: \"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue.\",\n },\n {\n type: \"image\",\n src: \"/images/blog-post-pic-31.webp\",\n alt: \"MileTruth routing pipeline diagram\",\n caption:\n \"A staged dispatch process catches address, range, and ETA issues before riders leave.\",\n },\n {\n type: \"quote\",\n text: \"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.\",\n cite: \"MileTruth Engineering\",\n },\n {\n type: \"heading\",\n level: 2,\n text: \"Comparing route options\",\n },\n {\n type: \"paragraph\",\n text: \"The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger.\",\n },\n {\n type: \"list\",\n items: [\n \"Several route plans checked before dispatch\",\n \"Distance, time windows, capacity, and range considered together\",\n \"Range and ETA checked before the route reaches the rider\",\n \"Fast output that still leaves room for dispatcher review\",\n ],\n },\n {\n type: \"paragraph\",\n text: \"The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub.\",\n },\n ],\n },\n\n // ── Template-backed posts ────────────────────────────────────────────────\n {\n slug: \"the-ev-paradox-solving-range-anxiety-for-urban-fleets\",\n title: \"The EV Paradox: Solving Range Anxiety for Urban Fleets\",\n excerpt:\n \"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.\",\n category: \"EV Fleet\",\n image: \"/images/ev-paradox.webp\",\n date: \"2025-08-21\",\n intro:\n \"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan.\",\n },\n {\n slug: \"why-mathematical-precision-beats-heuristics-in-routing\",\n title: \"Why Mathematical Precision Beats Heuristics in Routing\",\n excerpt:\n \"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.\",\n category: \"Technology\",\n image: \"/images/blog-post-pic-14.webp\",\n date: \"2025-08-07\",\n intro:\n \"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch.\",\n },\n {\n slug: \"fleet-reduction-without-compromising-delivery-volume\",\n title: \"Fleet Reduction Without Compromising Delivery Volume\",\n excerpt:\n \"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.\",\n category: \"Fleet Management\",\n image: \"/images/blog-post-pic-8.webp\",\n date: \"2025-07-24\",\n intro:\n \"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom.\",\n },\n {\n slug: \"building-a-greener-city-the-future-of-urban-logistics\",\n title: \"Building a Greener City: The Future of Urban Logistics\",\n excerpt:\n \"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.\",\n category: \"Sustainability\",\n image: \"/images/blog-post-pic-6.webp\",\n date: \"2025-07-10\",\n intro:\n \"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day.\",\n },\n {\n slug: \"how-doormile-maintains-99-9-sla-compliance-at-scale\",\n title: \"How Doormile Maintains 99.9% SLA Compliance at Scale\",\n excerpt:\n \"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.\",\n category: \"Operations\",\n image: \"/images/last-mile-approach.webp\",\n date: \"2025-06-26\",\n intro:\n \"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk.\",\n },\n {\n slug: \"battery-simulation-the-secret-to-ev-route-pre-validation\",\n title: \"Battery Simulation: The Secret to EV Route Pre-Validation\",\n excerpt:\n \"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.\",\n category: \"EV Fleet\",\n image: \"/images/blog-post-pic-3.webp\",\n date: \"2025-06-12\",\n intro:\n \"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch.\",\n },\n];\n\nexport const blogPosts: BlogPost[] = seeds.map((s) => ({\n slug: s.slug,\n title: s.title,\n excerpt: s.excerpt,\n category: s.category,\n image: s.image,\n date: s.date,\n author: AUTHOR,\n intro: s.intro,\n content:\n s.content ??\n templateContent({ title: s.title, category: s.category, image: s.image }),\n}));\n\n// ── Helpers ────────────────────────────────────────────────────────────────\n\nexport function getPostBySlug(slug: string): BlogPost | undefined {\n return blogPosts.find((p) => p.slug === slug);\n}\n\nexport function getAllSlugs(): string[] {\n return blogPosts.map((p) => p.slug);\n}\n\n/** Same-category posts first (most recent), then fill by recency. Excludes self. */\nexport function getRelatedPosts(slug: string, n = 3): BlogPost[] {\n const current = getPostBySlug(slug);\n if (!current) return blogPosts.slice(0, n);\n const others = blogPosts.filter((p) => p.slug !== slug);\n const byDateDesc = (a: BlogPost, b: BlogPost) => b.date.localeCompare(a.date);\n const sameCat = others\n .filter((p) => p.category === current.category)\n .sort(byDateDesc);\n const rest = others\n .filter((p) => p.category !== current.category)\n .sort(byDateDesc);\n return [...sameCat, ...rest].slice(0, n);\n}\n\n/** Previous / next by array order (publication sequence). */\nexport function getAdjacentPosts(slug: string): {\n prev: BlogPost | null;\n next: BlogPost | null;\n} {\n const i = blogPosts.findIndex((p) => p.slug === slug);\n if (i === -1) return { prev: null, next: null };\n return {\n prev: i > 0 ? blogPosts[i - 1] : null,\n next: i < blogPosts.length - 1 ? blogPosts[i + 1] : null,\n };\n}\n\nexport function getRecentPosts(n = 4): BlogPost[] {\n return [...blogPosts].sort((a, b) => b.date.localeCompare(a.date)).slice(0, n);\n}\n\nexport function getCategories(): { name: string; count: number }[] {\n const counts = new Map();\n for (const p of blogPosts) {\n counts.set(p.category, (counts.get(p.category) ?? 0) + 1);\n }\n return Array.from(counts, ([name, count]) => ({ name, count })).sort((a, b) =>\n a.name.localeCompare(b.name)\n );\n}\n\nexport function formatDate(iso: string): string {\n // Parse as UTC to keep static output deterministic across build environments.\n const d = new Date(`${iso}T00:00:00Z`);\n return d.toLocaleDateString(\"en-US\", {\n year: \"numeric\",\n month: \"short\",\n day: \"numeric\",\n timeZone: \"UTC\",\n });\n}\n\nexport function estimateReadingTime(post: BlogPost): number {\n const wordsFromBlocks = post.content.reduce((sum, b) => {\n if (b.type === \"paragraph\" || b.type === \"quote\") {\n return sum + b.text.trim().split(/\\s+/).length;\n }\n if (b.type === \"heading\") return sum + b.text.trim().split(/\\s+/).length;\n if (b.type === \"list\") {\n return sum + b.items.join(\" \").trim().split(/\\s+/).length;\n }\n return sum;\n }, 0);\n const total = wordsFromBlocks + post.intro.trim().split(/\\s+/).length;\n return Math.max(1, Math.round(total / 200));\n}\n","import src from \"IMAGE\";\nexport default { src, width: 40, height: 40 }\n","import src from \"IMAGE\";\nexport default { src, width: 40, height: 40 }\n","import React from \"react\";\nimport { preload } from \"react-dom\";\n\nexport default function BlogsHero() {\n preload(\"/images/home2-banner-1.webp\", { as: \"image\" });\n return (\n <>\n \n \n \n );\n}\n\n/** Renders the recurring \"contact us through our Contact page\" link. */\nexport function ContactLink() {\n return (\n \n Contact page\n \n );\n}\n\nconst styles = `\n.dm-legal {\n background: #ffffff;\n color: #334155;\n /* Top padding clears the fixed/absolute floating navbar (~104px) + breathing room. */\n padding: clamp(132px, 16vh, 184px) 0 clamp(72px, 10vw, 96px);\n font-family: var(--font-manrope), system-ui, -apple-system, sans-serif;\n}\n\n.dm-legal__wrap {\n max-width: 1180px;\n margin: 0 auto;\n padding: 0 clamp(20px, 5vw, 40px);\n display: grid;\n grid-template-columns: minmax(0, 1fr);\n gap: 0;\n}\n\n/* ---- Sticky table of contents (desktop only) ---- */\n.dm-legal__toc { display: none; }\n\n@media (min-width: 1080px) {\n .dm-legal__wrap {\n grid-template-columns: 248px minmax(0, 800px);\n justify-content: center;\n gap: 64px;\n }\n .dm-legal__toc { display: block; }\n}\n\n.dm-legal__toc-inner { position: sticky; top: 128px; }\n.dm-legal__toc-label {\n margin: 0 0 14px;\n font-size: 12px;\n font-weight: 700;\n letter-spacing: 0.14em;\n text-transform: uppercase;\n color: #94a3b8;\n}\n.dm-legal__toc nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }\n.dm-legal__toc nav a {\n display: block;\n font-size: 14px;\n line-height: 1.4;\n color: #64748b;\n text-decoration: none;\n border-left: 2px solid transparent;\n padding-left: 12px;\n transition: color 0.2s ease, border-color 0.2s ease;\n}\n.dm-legal__toc nav a:hover { color: #c01227; border-left-color: #c01227; }\n\n/* ---- Reading column (max 800px) ---- */\n.dm-legal__main { min-width: 0; max-width: 800px; }\n\n.dm-legal__hero { margin-bottom: clamp(40px, 6vw, 56px); }\n.dm-legal__title {\n margin: 0 !important;\n padding: 0 !important;\n /* !important / text-transform override the global \".elementor-kit-5 h1\"\n (uppercase + kit font-size) so headings render in normal case at the spec sizes. */\n font-size: clamp(40px, 6vw, 60px) !important;\n font-weight: 800 !important;\n line-height: 1.08 !important;\n letter-spacing: -0.02em !important;\n text-transform: none !important;\n color: #0f172a !important;\n}\n.dm-legal__updated {\n margin: 16px 0 0;\n font-size: 14px;\n font-weight: 700;\n letter-spacing: 0.08em;\n text-transform: uppercase;\n color: #94a3b8;\n}\n\n.dm-legal__lead {\n margin: 24px 0 0;\n font-size: clamp(18px, 1.6vw, 20px);\n line-height: 1.7;\n color: #475569;\n}\n.dm-legal__hero .dm-legal__lead { margin-top: 24px; }\n\n/* ---- Sections ---- */\n.dm-legal__content { display: flex; flex-direction: column; }\n.dm-legal__section { padding-top: 32px; }\n.dm-legal__section:first-child { padding-top: 0; }\n\n.dm-legal__h2 {\n margin: 0 0 16px !important;\n padding: 0 !important;\n font-size: clamp(24px, 3vw, 32px) !important;\n font-weight: 700 !important;\n line-height: 1.2 !important;\n letter-spacing: -0.01em !important;\n text-transform: none !important;\n color: #0f172a !important;\n /* Offset anchor jumps so the heading isn't hidden under the fixed navbar. */\n scroll-margin-top: 120px;\n}\n.dm-legal__h3 {\n margin: 24px 0 8px !important;\n padding: 0 !important;\n font-size: 20px !important;\n font-weight: 700 !important;\n line-height: 1.35 !important;\n text-transform: none !important;\n color: #0f172a !important;\n}\n.dm-legal__p {\n margin: 0 0 16px;\n font-size: 18px;\n line-height: 1.7;\n color: #334155;\n}\n.dm-legal__p:last-child { margin-bottom: 0; }\n\n.dm-legal__ul { margin: 4px 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }\n.dm-legal__ul li {\n position: relative;\n padding-left: 26px;\n font-size: 18px;\n line-height: 1.7;\n color: #334155;\n}\n/* Extra .dm-legal prefix raises specificity above the global theme rule\n \".logico-front-end ul li:before\" (a fontello glyph), so our clean red dot\n replaces the inherited checkmark marker. */\n.dm-legal .dm-legal__ul li::before {\n content: \"\" !important;\n position: absolute;\n left: 4px;\n top: 0.62em;\n width: 7px;\n height: 7px;\n border-radius: 50%;\n background: #c01227;\n font-size: 0;\n}\n/* TOC links are inside a
    too — suppress the same inherited glyph marker. */\n.dm-legal .dm-legal__toc nav li::before { content: none !important; }\n\n.dm-legal__link { color: #c01227; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(192,18,39,0.35); }\n.dm-legal__link:hover { border-bottom-color: #c01227; }\n\n@media (max-width: 1079px) {\n .dm-legal__main { margin: 0 auto; }\n}\n\n/* ============================================================\n Navbar visibility — LEGAL PAGES ONLY.\n This \n \n );\n}\n\n/** Renders the recurring \"contact us through our Contact page\" link. */\nexport function ContactLink() {\n return (\n \n Contact page\n \n );\n}\n\nconst styles = `\n.dm-legal {\n background: #ffffff;\n color: #334155;\n /* Top padding clears the fixed/absolute floating navbar (~104px) + breathing room. */\n padding: clamp(132px, 16vh, 184px) 0 clamp(72px, 10vw, 96px);\n font-family: var(--font-manrope), system-ui, -apple-system, sans-serif;\n}\n\n.dm-legal__wrap {\n max-width: 1180px;\n margin: 0 auto;\n padding: 0 clamp(20px, 5vw, 40px);\n display: grid;\n grid-template-columns: minmax(0, 1fr);\n gap: 0;\n}\n\n/* ---- Sticky table of contents (desktop only) ---- */\n.dm-legal__toc { display: none; }\n\n@media (min-width: 1080px) {\n .dm-legal__wrap {\n grid-template-columns: 248px minmax(0, 800px);\n justify-content: center;\n gap: 64px;\n }\n .dm-legal__toc { display: block; }\n}\n\n.dm-legal__toc-inner { position: sticky; top: 128px; }\n.dm-legal__toc-label {\n margin: 0 0 14px;\n font-size: 12px;\n font-weight: 700;\n letter-spacing: 0.14em;\n text-transform: uppercase;\n color: #94a3b8;\n}\n.dm-legal__toc nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }\n.dm-legal__toc nav a {\n display: block;\n font-size: 14px;\n line-height: 1.4;\n color: #64748b;\n text-decoration: none;\n border-left: 2px solid transparent;\n padding-left: 12px;\n transition: color 0.2s ease, border-color 0.2s ease;\n}\n.dm-legal__toc nav a:hover { color: #c01227; border-left-color: #c01227; }\n\n/* ---- Reading column (max 800px) ---- */\n.dm-legal__main { min-width: 0; max-width: 800px; }\n\n.dm-legal__hero { margin-bottom: clamp(40px, 6vw, 56px); }\n.dm-legal__title {\n margin: 0 !important;\n padding: 0 !important;\n /* !important / text-transform override the global \".elementor-kit-5 h1\"\n (uppercase + kit font-size) so headings render in normal case at the spec sizes. */\n font-size: clamp(40px, 6vw, 60px) !important;\n font-weight: 800 !important;\n line-height: 1.08 !important;\n letter-spacing: -0.02em !important;\n text-transform: none !important;\n color: #0f172a !important;\n}\n.dm-legal__updated {\n margin: 16px 0 0;\n font-size: 14px;\n font-weight: 700;\n letter-spacing: 0.08em;\n text-transform: uppercase;\n color: #94a3b8;\n}\n\n.dm-legal__lead {\n margin: 24px 0 0;\n font-size: clamp(18px, 1.6vw, 20px);\n line-height: 1.7;\n color: #475569;\n}\n.dm-legal__hero .dm-legal__lead { margin-top: 24px; }\n\n/* ---- Sections ---- */\n.dm-legal__content { display: flex; flex-direction: column; }\n.dm-legal__section { padding-top: 32px; }\n.dm-legal__section:first-child { padding-top: 0; }\n\n.dm-legal__h2 {\n margin: 0 0 16px !important;\n padding: 0 !important;\n font-size: clamp(24px, 3vw, 32px) !important;\n font-weight: 700 !important;\n line-height: 1.2 !important;\n letter-spacing: -0.01em !important;\n text-transform: none !important;\n color: #0f172a !important;\n /* Offset anchor jumps so the heading isn't hidden under the fixed navbar. */\n scroll-margin-top: 120px;\n}\n.dm-legal__h3 {\n margin: 24px 0 8px !important;\n padding: 0 !important;\n font-size: 20px !important;\n font-weight: 700 !important;\n line-height: 1.35 !important;\n text-transform: none !important;\n color: #0f172a !important;\n}\n.dm-legal__p {\n margin: 0 0 16px;\n font-size: 18px;\n line-height: 1.7;\n color: #334155;\n}\n.dm-legal__p:last-child { margin-bottom: 0; }\n\n.dm-legal__ul { margin: 4px 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }\n.dm-legal__ul li {\n position: relative;\n padding-left: 26px;\n font-size: 18px;\n line-height: 1.7;\n color: #334155;\n}\n/* Extra .dm-legal prefix raises specificity above the global theme rule\n \".logico-front-end ul li:before\" (a fontello glyph), so our clean red dot\n replaces the inherited checkmark marker. */\n.dm-legal .dm-legal__ul li::before {\n content: \"\" !important;\n position: absolute;\n left: 4px;\n top: 0.62em;\n width: 7px;\n height: 7px;\n border-radius: 50%;\n background: #c01227;\n font-size: 0;\n}\n/* TOC links are inside a
      too — suppress the same inherited glyph marker. */\n.dm-legal .dm-legal__toc nav li::before { content: none !important; }\n\n.dm-legal__link { color: #c01227; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(192,18,39,0.35); }\n.dm-legal__link:hover { border-bottom-color: #c01227; }\n\n@media (max-width: 1079px) {\n .dm-legal__main { margin: 0 auto; }\n}\n\n/* ============================================================\n Navbar visibility — LEGAL PAGES ONLY.\n This \n \n );\n}\n\n/** Renders the recurring \"contact us through our Contact page\" link. */\nexport function ContactLink() {\n return (\n \n Contact page\n \n );\n}\n\nconst styles = `\n.dm-legal {\n background: #ffffff;\n color: #334155;\n /* Top padding clears the fixed/absolute floating navbar (~104px) + breathing room. */\n padding: clamp(132px, 16vh, 184px) 0 clamp(72px, 10vw, 96px);\n font-family: var(--font-manrope), system-ui, -apple-system, sans-serif;\n}\n\n.dm-legal__wrap {\n max-width: 1180px;\n margin: 0 auto;\n padding: 0 clamp(20px, 5vw, 40px);\n display: grid;\n grid-template-columns: minmax(0, 1fr);\n gap: 0;\n}\n\n/* ---- Sticky table of contents (desktop only) ---- */\n.dm-legal__toc { display: none; }\n\n@media (min-width: 1080px) {\n .dm-legal__wrap {\n grid-template-columns: 248px minmax(0, 800px);\n justify-content: center;\n gap: 64px;\n }\n .dm-legal__toc { display: block; }\n}\n\n.dm-legal__toc-inner { position: sticky; top: 128px; }\n.dm-legal__toc-label {\n margin: 0 0 14px;\n font-size: 12px;\n font-weight: 700;\n letter-spacing: 0.14em;\n text-transform: uppercase;\n color: #94a3b8;\n}\n.dm-legal__toc nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }\n.dm-legal__toc nav a {\n display: block;\n font-size: 14px;\n line-height: 1.4;\n color: #64748b;\n text-decoration: none;\n border-left: 2px solid transparent;\n padding-left: 12px;\n transition: color 0.2s ease, border-color 0.2s ease;\n}\n.dm-legal__toc nav a:hover { color: #c01227; border-left-color: #c01227; }\n\n/* ---- Reading column (max 800px) ---- */\n.dm-legal__main { min-width: 0; max-width: 800px; }\n\n.dm-legal__hero { margin-bottom: clamp(40px, 6vw, 56px); }\n.dm-legal__title {\n margin: 0 !important;\n padding: 0 !important;\n /* !important / text-transform override the global \".elementor-kit-5 h1\"\n (uppercase + kit font-size) so headings render in normal case at the spec sizes. */\n font-size: clamp(40px, 6vw, 60px) !important;\n font-weight: 800 !important;\n line-height: 1.08 !important;\n letter-spacing: -0.02em !important;\n text-transform: none !important;\n color: #0f172a !important;\n}\n.dm-legal__updated {\n margin: 16px 0 0;\n font-size: 14px;\n font-weight: 700;\n letter-spacing: 0.08em;\n text-transform: uppercase;\n color: #94a3b8;\n}\n\n.dm-legal__lead {\n margin: 24px 0 0;\n font-size: clamp(18px, 1.6vw, 20px);\n line-height: 1.7;\n color: #475569;\n}\n.dm-legal__hero .dm-legal__lead { margin-top: 24px; }\n\n/* ---- Sections ---- */\n.dm-legal__content { display: flex; flex-direction: column; }\n.dm-legal__section { padding-top: 32px; }\n.dm-legal__section:first-child { padding-top: 0; }\n\n.dm-legal__h2 {\n margin: 0 0 16px !important;\n padding: 0 !important;\n font-size: clamp(24px, 3vw, 32px) !important;\n font-weight: 700 !important;\n line-height: 1.2 !important;\n letter-spacing: -0.01em !important;\n text-transform: none !important;\n color: #0f172a !important;\n /* Offset anchor jumps so the heading isn't hidden under the fixed navbar. */\n scroll-margin-top: 120px;\n}\n.dm-legal__h3 {\n margin: 24px 0 8px !important;\n padding: 0 !important;\n font-size: 20px !important;\n font-weight: 700 !important;\n line-height: 1.35 !important;\n text-transform: none !important;\n color: #0f172a !important;\n}\n.dm-legal__p {\n margin: 0 0 16px;\n font-size: 18px;\n line-height: 1.7;\n color: #334155;\n}\n.dm-legal__p:last-child { margin-bottom: 0; }\n\n.dm-legal__ul { margin: 4px 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }\n.dm-legal__ul li {\n position: relative;\n padding-left: 26px;\n font-size: 18px;\n line-height: 1.7;\n color: #334155;\n}\n/* Extra .dm-legal prefix raises specificity above the global theme rule\n \".logico-front-end ul li:before\" (a fontello glyph), so our clean red dot\n replaces the inherited checkmark marker. */\n.dm-legal .dm-legal__ul li::before {\n content: \"\" !important;\n position: absolute;\n left: 4px;\n top: 0.62em;\n width: 7px;\n height: 7px;\n border-radius: 50%;\n background: #c01227;\n font-size: 0;\n}\n/* TOC links are inside a
        too — suppress the same inherited glyph marker. */\n.dm-legal .dm-legal__toc nav li::before { content: none !important; }\n\n.dm-legal__link { color: #c01227; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(192,18,39,0.35); }\n.dm-legal__link:hover { border-bottom-color: #c01227; }\n\n@media (max-width: 1079px) {\n .dm-legal__main { margin: 0 auto; }\n}\n\n/* ============================================================\n Navbar visibility — LEGAL PAGES ONLY.\n This \n
\n );\n}\n"],"names":["UnrecognizedActionError","unstable_isUnrecognizedActionError","Error","constructor","args","name","error","ReadonlyURLSearchParams","ReadonlyURLSearchParamsError","URLSearchParams","append","delete","set","sort","RedirectStatusCode","REDIRECT_ERROR_CODE","isRedirectError","digest","split","errorCode","type","destination","slice","join","status","at","statusCode","Number","isNaN","getRedirectError","getRedirectStatusCodeFromError","getRedirectTypeFromError","getURLFromRedirectError","permanentRedirect","redirect","actionAsyncStorage","window","require","undefined","url","TemporaryRedirect","getStore","isAction","PermanentRedirect","HTTPAccessErrorStatus","HTTP_ERROR_FALLBACK_ERROR_CODE","getAccessFallbackErrorTypeByStatus","getAccessFallbackHTTPStatus","isHTTPAccessFallbackError","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","prefix","httpStatus","has","notFound","DIGEST","forbidden","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","unauthorized","RenderStage","StagedRenderingController","abortSignal","abandonController","shouldTrackSyncIO","currentStage","syncInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","staticStageListeners","earlyRuntimeStageListeners","runtimeStageListeners","dynamicStageListeners","staticStagePromise","createPromiseWithResolvers","earlyRuntimeStagePromise","runtimeStagePromise","dynamicStagePromise","addEventListener","reason","promise","catch","ignoreReject","reject","once","signal","abandonRender","onStage","stage","callback","push","InvariantError","shouldTrackSyncInterrupt","syncInterruptCurrentStageWithReason","abort","advanceStage","getSyncInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","resolveStaticStage","resolveEarlyRuntimeStage","resolveRuntimeStage","performance","now","timeOrigin","resolveDynamicStage","staticListeners","i","length","resolve","earlyRuntimeListeners","runtimeListeners","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","Promise","then","bind","delayUntilRuntimeStage","getRuntimeStage","isHangingPromiseRejectionError","makeDevtoolsIOAwarePromise","makeHangingPromise","err","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","route","expression","abortListenersBySignal","WeakMap","aborted","hangingPromise","_","boundRejection","currentListeners","get","listeners","underlying","requestStore","stagedRendering","setTimeout","EarlyStatic","EarlyRuntime","Runtime","prerenderStore","result","isPostpone","REACT_POSTPONE_TYPE","Symbol","for","$$typeof","isNextRouterError","DynamicServerError","isDynamicServerError","DYNAMIC_ERROR_CODE","description","StaticGenBailoutError","isStaticGenBailoutError","NEXT_STATIC_GEN_BAILOUT","code","METADATA_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","atLeastOneTask","scheduleImmediate","scheduleOnNextTick","waitAtLeastOneReactRenderTask","cb","NEXT_RUNTIME","nextTick","setImmediate","r","INSTANT_VALIDATION_BOUNDARY_NAME","DynamicHoleKind","Postpone","PreludeState","abortAndThrowOnSynchronousRequestDataAccess","abortOnSynchronousPlatformIOAccess","accessedDynamicData","annotateDynamicAccess","consumeDynamicAccess","createDynamicTrackingState","createDynamicValidationState","createHangingInputAbortSignal","createInstantValidationState","createRenderInBrowserAbortSignal","formatDynamicAPIAccesses","getFirstDynamicReason","getNavigationDisallowedDynamicReasons","getStaticShellDisallowedDynamicReasons","isDynamicPostpone","isPrerenderInterruptedError","logDisallowedDynamicError","markCurrentScopeAsDynamic","postponeWithTracking","throwIfDisallowedDynamic","throwToInterruptStaticGeneration","trackAllowedDynamicAccess","trackDynamicDataInDynamicRender","trackDynamicHoleInNavigation","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","trackThrownErrorInNavigation","useDynamicRouteParams","useDynamicSearchParams","hasPostpone","React","unstable_postpone","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","trackingState","store","workUnitStore","forceDynamic","forceStatic","dynamicShouldError","dynamicTracking","revalidate","dynamicUsageDescription","dynamicUsageStack","stack","NODE_ENV","usedDynamic","abortOnSynchronousDynamicDataAccess","createPrerenderInterruptedError","controller","errorWithStack","prerenderSignal","workUnitAsyncStorage","assertPostpone","createPostponeReason","message","isDynamicPostponeReason","includes","NEXT_PRERENDER_INTERRUPTED","serverDynamic","clientDynamic","filter","access","map","line","AbortController","BailoutToCSRError","cacheSignal","inputReady","workStore","workAsyncStorage","fallbackParams","fallbackRouteParams","size","use","renderSignal","throwForMissingRequestStore","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","RegExp","hasMetadataRegex","hasViewportRegex","hasOutletRegex","hasInstantValidationBoundaryRegex","componentStack","dynamicValidation","test","addErrorContext","createInstantStack","hasAllowedClientDynamicAboveBoundary","validationPreventingErrors","thrownErrorsOutsideBoundary","kind","boundaryState","usageDescription","boundaryLocation","exec","expectedIds","renderedIds","suspenseLocation","index","syncError","cause","thrownValue","ownerStack","captureOwnerStack","console","__NEXT_DEV_SERVER","prelude","configAllowsBlocking","validationSampleTracking","missingSampleErrors","unstable_rethrow","isBailoutToCSRError","RedirectType","replace","ServerInsertedHTMLContext","useParams","usePathname","useRouter","useSearchParams","useSelectedLayoutSegment","useSelectedLayoutSegments","useServerInsertedHTML","instrumentParamsForClientValidation","instrumentSearchParamsForClientValidation","expectCompleteParamsInClientValidation","__NEXT_CACHE_COMPONENTS","searchParams","useContext","SearchParamsContext","readonlySearchParams","useMemo","navigationPromises","NavigationPromisesContext","pathname","PathnameContext","router","AppRouterContext","params","PathParamsContext","parallelRouteKey","context","LayoutRouterContext","selectedLayoutSegmentsPromises","getSelectedLayoutSegmentPath","parentTree","selectedLayoutSegments","selectedLayoutSegmentPromises","computeSelectedLayoutSegment","module","exports","HeaderUIContext","HeaderUIProvider","children","isMenuOpen","setMenuOpen","isSidebarOpen","setSidebarOpen","toggleMenu","o","toggleSidebar","closeAll","Provider","value","useHeaderUI","ctx","CURRENT_PAGE_MAP","CURRENT_PAGE_ALIASES","home","miletruth","solutions","entarpreneurship","blogs","contact","company","Header","isHome","currentPage","startsWith","dmHeaderActive","key","scrollToNavTarget","targetId","target","document","getElementById","scrollIntoView","behavior","block","scrollTo","top","handleNavClick","event","targetPath","shouldCloseMenu","closeMobileMenu","preventDefault","targetUrl","location","hash","history","pushState","requestAnimationFrame","visibleScrolled","setVisibleScrolled","isScrolled","setIsScrolled","isDesktopCompanyOpen","setDesktopCompanyOpen","isMobileCompanyOpen","setMobileCompanyOpen","toggleMobileMenu","handle","cancelAnimationFrame","rafId","onScroll","scrolled","scrollY","removeEventListener","headerInlineStyle","opacity","visibility","wrapperClass","Boolean","id","itemScope","itemType","className","itemProp","href","title","rel","style","onClick","zIndex","width","height","src","alt","sizes","tabIndex","role","fontSize","fontStyle","fontWeight","letterSpacing","textTransform","backgroundColor","color","viewBox","version","xmlns","focusable","d","borderRadius","priority","prefetch","onMouseEnter","onMouseLeave","onKeyDown","currentTarget","querySelector","focus","onBlur","contains","relatedTarget","onFocus","open","fill","suppressHydrationWarning","dangerouslySetInnerHTML","__html","callServer","createServerReference","findSourceMapURL","$$RSC_SERVER_ACTION_0","SHARED_BODY_CLASSES","SHARED","ROUTE_CLASSES","getBodyClasses","BodyOverlay","active","AnimationProvider","initDecorativeBlocks","getAll","forEach","t","vars","kill","vh","innerHeight","documentElement","clientHeight","decorativeBlocks","querySelectorAll","create","trigger","start","onEnter","classList","add","onEnterBack","onLeave","remove","onLeaveBack","getBoundingClientRect","bottom","registerPlugin","defaults","ease","duration","config","ignoreMobileResize","handleLoad","refresh","resizeTimer","handleResize","clearTimeout","refreshAnimations","timers","isRunning","onUpdate","easing","debouncedResize","wrapperResizeObserver","wrapper","autoResize","Window","destroy","disconnect","onWrapperResize","innerWidth","MIN_VISIBLE_MS","MAX_VISIBLE_MS","getRoutePath","search","LoadingScreen","phase","setPhase","phaseRef","visibleSince","pendingPath","currentRoutePath","hideTimer","safetyTimer","setLoaderPhase","nextPhase","current","clearTimer","timer","completeTransition","elapsed","wait","Math","max","startTransition","force","URL","getInternalRouteTarget","anchor","rawHref","getAttribute","hasAttribute","origin","sameRoute","handleDocumentClick","defaultPrevented","button","metaKey","ctrlKey","shiftKey","altKey","closest","HTMLAnchorElement","originalPushState","originalReplaceState","replaceState","scheduleHistoryTransition","currentPath","patchedPushState","urlArg","apply","patchedReplaceState","handlePopState","onTransitionEnd","e","propertyName"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,26,34,35,36,37,38,39,40]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_0sw0r2k._.js b/.next/server/chunks/ssr/_0sw0r2k._.js new file mode 100644 index 0000000..7b8c29f --- /dev/null +++ b/.next/server/chunks/ssr/_0sw0r2k._.js @@ -0,0 +1,5 @@ +module.exports=[80858,a=>{"use strict";a.s(["CountUp",()=>c,"Magnetic",()=>d,"ParallaxSection",()=>e,"RevealText",()=>f,"ScaleReveal",()=>g,"ScrollReveal",()=>h,"ShimmerText",()=>i,"SlideReveal",()=>j,"StaggerChildren",()=>k,"Tilt3D",()=>l]);var b=a.i(11857);let c=(0,b.registerClientReference)(function(){throw Error("Attempted to call CountUp() from the server but CountUp is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","CountUp"),d=(0,b.registerClientReference)(function(){throw Error("Attempted to call Magnetic() from the server but Magnetic is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","Magnetic"),e=(0,b.registerClientReference)(function(){throw Error("Attempted to call ParallaxSection() from the server but ParallaxSection is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","ParallaxSection"),f=(0,b.registerClientReference)(function(){throw Error("Attempted to call RevealText() from the server but RevealText is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","RevealText"),g=(0,b.registerClientReference)(function(){throw Error("Attempted to call ScaleReveal() from the server but ScaleReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","ScaleReveal"),h=(0,b.registerClientReference)(function(){throw Error("Attempted to call ScrollReveal() from the server but ScrollReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","ScrollReveal"),i=(0,b.registerClientReference)(function(){throw Error("Attempted to call ShimmerText() from the server but ShimmerText is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","ShimmerText"),j=(0,b.registerClientReference)(function(){throw Error("Attempted to call SlideReveal() from the server but SlideReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","SlideReveal"),k=(0,b.registerClientReference)(function(){throw Error("Attempted to call StaggerChildren() from the server but StaggerChildren is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","StaggerChildren"),l=(0,b.registerClientReference)(function(){throw Error("Attempted to call Tilt3D() from the server but Tilt3D is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx ","Tilt3D")},9386,a=>{"use strict";a.s(["CountUp",()=>c,"Magnetic",()=>d,"ParallaxSection",()=>e,"RevealText",()=>f,"ScaleReveal",()=>g,"ScrollReveal",()=>h,"ShimmerText",()=>i,"SlideReveal",()=>j,"StaggerChildren",()=>k,"Tilt3D",()=>l]);var b=a.i(11857);let c=(0,b.registerClientReference)(function(){throw Error("Attempted to call CountUp() from the server but CountUp is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","CountUp"),d=(0,b.registerClientReference)(function(){throw Error("Attempted to call Magnetic() from the server but Magnetic is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","Magnetic"),e=(0,b.registerClientReference)(function(){throw Error("Attempted to call ParallaxSection() from the server but ParallaxSection is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","ParallaxSection"),f=(0,b.registerClientReference)(function(){throw Error("Attempted to call RevealText() from the server but RevealText is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","RevealText"),g=(0,b.registerClientReference)(function(){throw Error("Attempted to call ScaleReveal() from the server but ScaleReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","ScaleReveal"),h=(0,b.registerClientReference)(function(){throw Error("Attempted to call ScrollReveal() from the server but ScrollReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","ScrollReveal"),i=(0,b.registerClientReference)(function(){throw Error("Attempted to call ShimmerText() from the server but ShimmerText is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","ShimmerText"),j=(0,b.registerClientReference)(function(){throw Error("Attempted to call SlideReveal() from the server but SlideReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","SlideReveal"),k=(0,b.registerClientReference)(function(){throw Error("Attempted to call StaggerChildren() from the server but StaggerChildren is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","StaggerChildren"),l=(0,b.registerClientReference)(function(){throw Error("Attempted to call Tilt3D() from the server but Tilt3D is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/animations/Reveal.tsx","Tilt3D")},19218,a=>{"use strict";a.i(80858);var b=a.i(9386);a.n(b)},790,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/client/app-dir/link.js "))},84707,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/client/app-dir/link.js"))},97647,a=>{"use strict";a.i(790);var b=a.i(84707);a.n(b)},95936,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return i},useLinkStatus:function(){return h.useLinkStatus}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(64240),g=a.r(7997),h=f._(a.r(97647));function i(a){let b=a.legacyBehavior,c="string"==typeof a.children||"number"==typeof a.children||"string"==typeof a.children?.type,d=a.children?.type?.$$typeof===Symbol.for("react.client.reference");return!b||c||d||(a.children?.type?.$$typeof===Symbol.for("react.lazy")?console.error("Using a Lazy Component as a direct child of `` from a Server Component is not supported. If you need legacyBehavior, wrap your Lazy Component in a Client Component that renders the Link's `` tag."):console.error("Using a Server Component as a direct child of `` is not supported. If you need legacyBehavior, wrap your Server Component in a Client Component that renders the Link's `` tag.")),(0,g.jsx)(h.default,{...a})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},71029,(a,b,c)=>{"use strict";c._=function(a){return a&&a.__esModule?a:{default:a}}},16426,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"warnOnce",{enumerable:!0,get:function(){return d}});let d=a=>{}},29945,(a,b,c)=>{"use strict";let d;Object.defineProperty(c,"__esModule",{value:!0});var e={getAssetToken:function(){return i},getAssetTokenQuery:function(){return j},getDeploymentId:function(){return g},getDeploymentIdQuery:function(){return h}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});function g(){return d}function h(a=!1){return d?`${a?"&":"?"}dpl=${d}`:""}function i(){return!1}function j(a=!1){return""}d=void 0},1359,(a,b,c)=>{"use strict";function d({widthInt:a,heightInt:b,blurWidth:c,blurHeight:e,blurDataURL:f,objectFit:g}){let h=c?40*c:a,i=e?40*e:b,j=h&&i?`viewBox='0 0 ${h} ${i}'`:"";return`%3Csvg xmlns='http://www.w3.org/2000/svg' ${j}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${j?"none":"contain"===g?"xMidYMid":"cover"===g?"xMidYMid slice":"none"}' style='filter: url(%23b);' href='${f}'/%3E%3C/svg%3E`}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"getImageBlurSvg",{enumerable:!0,get:function(){return d}})},53549,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={VALID_LOADERS:function(){return f},imageConfigDefault:function(){return g}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=["default","imgix","cloudinary","akamai","custom"],g={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumDiskCacheSize:void 0,maximumRedirects:3,maximumResponseBody:5e7,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1,customCacheHandler:!1}},87713,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"getImgProps",{enumerable:!0,get:function(){return j}}),a.r(16426);let d=a.r(29945),e=a.r(1359),f=a.r(53549),g=["-moz-initial","fill","none","scale-down",void 0];function h(a){return void 0!==a.default}function i(a){return void 0===a?a:"number"==typeof a?Number.isFinite(a)?a:NaN:"string"==typeof a&&/^[0-9]+$/.test(a)?parseInt(a,10):NaN}function j({src:a,sizes:b,unoptimized:c=!1,priority:k=!1,preload:l=!1,loading:m,className:n,quality:o,width:p,height:q,fill:r=!1,style:s,overrideSrc:t,onLoad:u,onLoadingComplete:v,placeholder:w="empty",blurDataURL:x,fetchPriority:y,decoding:z="async",layout:A,objectFit:B,objectPosition:C,lazyBoundary:D,lazyRoot:E,...F},G){var H;let I,J,K,{imgConf:L,showAltText:M,blurComplete:N,defaultLoader:O}=G,P=L||f.imageConfigDefault;if("allSizes"in P)I=P;else{let a=[...P.deviceSizes,...P.imageSizes].sort((a,b)=>a-b),b=P.deviceSizes.sort((a,b)=>a-b),c=P.qualities?.sort((a,b)=>a-b);I={...P,allSizes:a,deviceSizes:b,qualities:c}}if(void 0===O)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let Q=F.loader||O;delete F.loader,delete F.srcSet;let R="__next_img_default"in Q;if(R){if("custom"===I.loader)throw Object.defineProperty(Error(`Image with src "${a}" is missing "loader" prop. +Read more: https://nextjs.org/docs/messages/next-image-missing-loader`),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let a=Q;Q=b=>{let{config:c,...d}=b;return a(d)}}if(A){"fill"===A&&(r=!0);let a={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[A];a&&(s={...s,...a});let c={responsive:"100vw",fill:"100vw"}[A];c&&!b&&(b=c)}let S="",T=i(p),U=i(q);if((H=a)&&"object"==typeof H&&(h(H)||void 0!==H.src)){let b=h(a)?a.default:a;if(!b.src)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(b)}`),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!b.height||!b.width)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(b)}`),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if(J=b.blurWidth,K=b.blurHeight,x=x||b.blurDataURL,S=b.src,!r)if(T||U){if(T&&!U){let a=T/b.width;U=Math.round(b.height*a)}else if(!T&&U){let a=U/b.height;T=Math.round(b.width*a)}}else T=b.width,U=b.height}let V=!k&&!l&&("lazy"===m||void 0===m);(!(a="string"==typeof a?a:S)||a.startsWith("data:")||a.startsWith("blob:"))&&(c=!0,V=!1),I.unoptimized&&(c=!0),R&&!I.dangerouslyAllowSVG&&a.split("?",1)[0].endsWith(".svg")&&(c=!0);let W=i(o),X=Object.assign(r?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:B,objectPosition:C}:{},M?{}:{color:"transparent"},s),Y=N||"empty"===w?null:"blur"===w?`url("data:image/svg+xml;charset=utf-8,${(0,e.getImageBlurSvg)({widthInt:T,heightInt:U,blurWidth:J,blurHeight:K,blurDataURL:x||"",objectFit:X.objectFit})}")`:`url("${w}")`,Z=g.includes(X.objectFit)?"fill"===X.objectFit?"100% 100%":"cover":X.objectFit,$=Y?{backgroundSize:Z,backgroundPosition:X.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:Y}:{},_=function({config:a,src:b,unoptimized:c,width:e,quality:f,sizes:g,loader:h}){if(c){if(b.startsWith("/")&&!b.startsWith("//")){let a=(0,d.getDeploymentId)();if(a){let c=b.indexOf("?");if(-1!==c){let d=new URLSearchParams(b.slice(c+1));d.get("dpl")||(d.append("dpl",a),b=b.slice(0,c)+"?"+d.toString())}else b+=`?dpl=${a}`}}return{src:b,srcSet:void 0,sizes:void 0}}let{widths:i,kind:j}=function({deviceSizes:a,allSizes:b},c,d){if(d){let c=/(^|\s)(1?\d?\d)vw/g,e=[];for(let a;a=c.exec(d);)e.push(parseInt(a[2]));if(e.length){let c=.01*Math.min(...e);return{widths:b.filter(b=>b>=a[0]*c),kind:"w"}}return{widths:b,kind:"w"}}return"number"!=typeof c?{widths:a,kind:"w"}:{widths:[...new Set([c,2*c].map(a=>b.find(b=>b>=a)||b[b.length-1]))],kind:"x"}}(a,e,g),k=i.length-1;return{sizes:g||"w"!==j?g:"100vw",srcSet:i.map((c,d)=>`${h({config:a,src:b,quality:f,width:c})} ${"w"===j?c:d+1}${j}`).join(", "),src:h({config:a,src:b,quality:f,width:i[k]})}}({config:I,src:a,unoptimized:c,width:T,quality:W,sizes:b,loader:Q}),aa=V?"lazy":m;return{props:{...F,loading:aa,fetchPriority:y,width:T,height:U,decoding:z,className:n,style:{...X,...$},sizes:_.sizes,srcSet:_.srcSet,src:t||_.src},meta:{unoptimized:c,preload:l||k,placeholder:w,fill:r}}}},42377,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/client/image-component.js "))},43489,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/client/image-component.js"))},18409,a=>{"use strict";a.i(42377);var b=a.i(43489);a.n(b)},53200,(a,b,c)=>{"use strict";function d(a,b){let c=a||75;return b?.qualities?.length?b.qualities.reduce((a,b)=>Math.abs(b-c){"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return g}});let d=a.r(53200),e=a.r(29945);function f({config:a,src:b,width:c,quality:g}){let h=(0,e.getDeploymentId)();if(b.startsWith("/")&&!b.startsWith("//")){let a=b.indexOf("?");if(-1!==a){let c=new URLSearchParams(b.slice(a+1)),d=c.get("dpl");if(d){h=d,c.delete("dpl");let e=c.toString();b=b.slice(0,a)+(e?"?"+e:"")}}}if(b.startsWith("/")&&b.includes("?")&&a.localPatterns?.length===1&&"**"===a.localPatterns[0].pathname&&""===a.localPatterns[0].search)throw Object.defineProperty(Error(`Image with src "${b}" is using a query string which is not configured in images.localPatterns. +Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let i=(0,d.findClosestQuality)(g,a);return`${a.path}?url=${encodeURIComponent(b)}&w=${c}&q=${i}${b.startsWith("/")&&h?`&dpl=${h}`:""}`}f.__next_img_default=!0;let g=f},50858,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return k},getImageProps:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(71029),g=a.r(87713),h=a.r(18409),i=f._(a.r(37763));function j(a){let{props:b}=(0,g.getImgProps)(a,{defaultLoader:i.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[a,c]of Object.entries(b))void 0===c&&delete b[a];return{props:b}}let k=h.Image},3236,(a,b,c)=>{b.exports=a.r(50858)}]; + +//# sourceMappingURL=_0sw0r2k._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_0sw0r2k._.js.map b/.next/server/chunks/ssr/_0sw0r2k._.js.map new file mode 100644 index 0000000..ab11422 --- /dev/null +++ b/.next/server/chunks/ssr/_0sw0r2k._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/animations/Reveal.tsx/__nextjs-internal-proxy.mjs","../../../../node_modules/next/dist/client/app-dir/link.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/app-dir/link.tsx","../../../../node_modules/next/src/client/app-dir/link.react-server.tsx","../../../../node_modules/%40swc/helpers/cjs/_interop_require_default.cjs","../../../../node_modules/next/src/shared/lib/utils/warn-once.ts","../../../../node_modules/next/src/shared/lib/deployment-id.ts","../../../../node_modules/next/src/shared/lib/image-blur-svg.ts","../../../../node_modules/next/src/shared/lib/image-config.ts","../../../../node_modules/next/src/shared/lib/get-img-props.ts","../../../../node_modules/next/dist/client/image-component.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/image-component.tsx","../../../../node_modules/next/src/shared/lib/find-closest-quality.ts","../../../../node_modules/next/src/shared/lib/image-loader.ts","../../../../node_modules/next/src/shared/lib/image-external.tsx","../../../../node_modules/next/image.js"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nimport { registerClientReference } from \"react-server-dom-turbopack/server\";\nexport const CountUp = registerClientReference(\n function() { throw new Error(\"Attempted to call CountUp() from the server but CountUp is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"CountUp\",\n);\nexport const Magnetic = registerClientReference(\n function() { throw new Error(\"Attempted to call Magnetic() from the server but Magnetic is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"Magnetic\",\n);\nexport const ParallaxSection = registerClientReference(\n function() { throw new Error(\"Attempted to call ParallaxSection() from the server but ParallaxSection is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"ParallaxSection\",\n);\nexport const RevealText = registerClientReference(\n function() { throw new Error(\"Attempted to call RevealText() from the server but RevealText is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"RevealText\",\n);\nexport const ScaleReveal = registerClientReference(\n function() { throw new Error(\"Attempted to call ScaleReveal() from the server but ScaleReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"ScaleReveal\",\n);\nexport const ScrollReveal = registerClientReference(\n function() { throw new Error(\"Attempted to call ScrollReveal() from the server but ScrollReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"ScrollReveal\",\n);\nexport const ShimmerText = registerClientReference(\n function() { throw new Error(\"Attempted to call ShimmerText() from the server but ShimmerText is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"ShimmerText\",\n);\nexport const SlideReveal = registerClientReference(\n function() { throw new Error(\"Attempted to call SlideReveal() from the server but SlideReveal is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"SlideReveal\",\n);\nexport const StaggerChildren = registerClientReference(\n function() { throw new Error(\"Attempted to call StaggerChildren() from the server but StaggerChildren is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"StaggerChildren\",\n);\nexport const Tilt3D = registerClientReference(\n function() { throw new Error(\"Attempted to call Tilt3D() from the server but Tilt3D is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\"); },\n \"[project]/src/animations/Reveal.tsx\",\n \"Tilt3D\",\n);\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/app-dir/link.js\"));\n","'use client'\n\nimport React, { createContext, useContext, useOptimistic, useRef } from 'react'\nimport type { UrlObject } from 'url'\nimport { formatUrl } from '../../shared/lib/router/utils/format-url'\nimport { AppRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { useMergedRef } from '../use-merged-ref'\nimport { isAbsoluteUrl } from '../../shared/lib/utils'\nimport { addBasePath } from '../add-base-path'\nimport { warnOnce } from '../../shared/lib/utils/warn-once'\nimport { ScrollBehavior } from '../components/router-reducer/router-reducer-types'\nimport type { PENDING_LINK_STATUS } from '../components/links'\nimport {\n IDLE_LINK_STATUS,\n mountLinkInstance,\n onNavigationIntent,\n unmountLinkForCurrentNavigation,\n unmountPrefetchableInstance,\n type LinkInstance,\n} from '../components/links'\nimport { isLocalURL } from '../../shared/lib/router/utils/is-local-url'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n} from '../components/segment-cache/types'\nimport { errorOnce } from '../../shared/lib/utils/error-once'\n\ntype Url = string | UrlObject\ntype RequiredKeys = {\n [K in keyof T]-?: {} extends Pick ? never : K\n}[keyof T]\ntype OptionalKeys = {\n [K in keyof T]-?: {} extends Pick ? K : never\n}[keyof T]\n\ntype OnNavigateEventHandler = (event: { preventDefault: () => void }) => void\n\ntype InternalLinkProps = {\n /**\n * **Required**. The path or URL to navigate to. It can also be an object (similar to `URL`).\n *\n * @example\n * ```tsx\n * // Navigate to /dashboard:\n * Dashboard\n *\n * // Navigate to /about?name=test:\n * \n * About\n * \n * ```\n *\n * @remarks\n * - For external URLs, use a fully qualified URL such as `https://...`.\n * - In the App Router, dynamic routes must not include bracketed segments in `href`.\n */\n href: Url\n\n /**\n * @deprecated v10.0.0: `href` props pointing to a dynamic route are\n * automatically resolved and no longer require the `as` prop.\n */\n as?: Url\n\n /**\n * Replace the current `history` state instead of adding a new URL into the stack.\n *\n * @defaultValue `false`\n *\n * @example\n * ```tsx\n * \n * About (replaces the history state)\n * \n * ```\n */\n replace?: boolean\n\n /**\n * Whether to override the default scroll behavior. If `true`, Next.js attempts to maintain\n * the scroll position if the newly navigated page is still visible. If not, it scrolls to the top.\n *\n * If `false`, Next.js will not modify the scroll behavior at all.\n *\n * @defaultValue `true`\n *\n * @example\n * ```tsx\n * \n * No auto scroll\n * \n * ```\n */\n scroll?: boolean\n\n /**\n * Update the path of the current page without rerunning data fetching methods\n * like `getStaticProps`, `getServerSideProps`, or `getInitialProps`.\n *\n * @remarks\n * `shallow` only applies to the Pages Router. For the App Router, see the\n * [following documentation](https://nextjs.org/docs/app/building-your-application/routing/linking-and-navigating#using-the-native-history-api).\n *\n * @defaultValue `false`\n *\n * @example\n * ```tsx\n * \n * Shallow navigation\n * \n * ```\n */\n shallow?: boolean\n\n /**\n * Forces `Link` to pass its `href` to the child component. Useful if the child is a custom\n * component that wraps an `` tag, or if you're using certain styling libraries.\n *\n * @defaultValue `false`\n *\n * @example\n * ```tsx\n * \n * Dashboard\n * \n * ```\n */\n passHref?: boolean\n\n /**\n * Prefetch the page in the background.\n * Any `` that is in the viewport (initially or through scroll) will be prefetched.\n * Prefetch can be disabled by passing `prefetch={false}`.\n *\n * @remarks\n * Prefetching is only enabled in production.\n *\n * - In the **App Router**:\n * - `\"auto\"`, `null`, `undefined` (default): Prefetch behavior depends on static vs dynamic routes:\n * - Static routes: fully prefetched\n * - Dynamic routes: partial prefetch to the nearest segment with a `loading.js`\n * - `true`: Always prefetch the full route and data.\n * - `false`: Disable prefetching on both viewport and hover.\n * - In the **Pages Router**:\n * - `true` (default): Prefetches the route and data in the background on viewport or hover.\n * - `false`: Prefetch only on hover, not on viewport.\n *\n * @defaultValue `true` (Pages Router) or `null` (App Router)\n *\n * @example\n * ```tsx\n * \n * Dashboard\n * \n * ```\n */\n prefetch?: boolean | 'auto' | null\n\n /**\n * (unstable) Switch to a full prefetch on hover. Effectively the same as\n * updating the prefetch prop to `true` in a mouse event.\n */\n unstable_dynamicOnHover?: boolean\n\n /**\n * The active locale is automatically prepended in the Pages Router. `locale` allows for providing\n * a different locale, or can be set to `false` to opt out of automatic locale behavior.\n *\n * @remarks\n * Note: locale only applies in the Pages Router and is ignored in the App Router.\n *\n * @example\n * ```tsx\n * // Use the 'fr' locale:\n * \n * About (French)\n * \n *\n * // Disable locale prefix:\n * \n * About (no locale prefix)\n * \n * ```\n */\n locale?: string | false\n\n /**\n * Enable legacy link behavior.\n *\n * @deprecated This will be removed in a future version\n * @defaultValue `false`\n * @see https://github.com/vercel/next.js/commit/489e65ed98544e69b0afd7e0cfc3f9f6c2b803b7\n */\n legacyBehavior?: boolean\n\n /**\n * Optional event handler for when the mouse pointer is moved onto the ``.\n */\n onMouseEnter?: React.MouseEventHandler\n\n /**\n * Optional event handler for when the `` is touched.\n */\n onTouchStart?: React.TouchEventHandler\n\n /**\n * Optional event handler for when the `` is clicked.\n */\n onClick?: React.MouseEventHandler\n\n /**\n * Optional event handler for when the `` is navigated.\n */\n onNavigate?: OnNavigateEventHandler\n\n /**\n * Transition types to apply when navigating. These types are passed to\n * [`React.addTransitionType`](https://react.dev/reference/react/addTransitionType)\n * inside the navigation transition, enabling\n * [``](https://react.dev/reference/react/ViewTransition) components\n * to apply different animations based on the type of navigation.\n *\n * @example\n * ```tsx\n * About\n * ```\n */\n transitionTypes?: string[]\n}\n\n// TODO-APP: Include the full set of Anchor props\n// adding this to the publicly exported type currently breaks existing apps\n\n// `RouteInferType` is a stub here to avoid breaking `typedRoutes` when the type\n// isn't generated yet. It will be replaced when type generation runs.\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nexport type LinkProps = InternalLinkProps\ntype LinkPropsRequired = RequiredKeys\ntype LinkPropsOptional = OptionalKeys>\n\nfunction isModifiedEvent(event: React.MouseEvent): boolean {\n const eventTarget = event.currentTarget as HTMLAnchorElement | SVGAElement\n const target = eventTarget.getAttribute('target')\n return (\n (target && target !== '_self') ||\n event.metaKey ||\n event.ctrlKey ||\n event.shiftKey ||\n event.altKey || // triggers resource download\n (event.nativeEvent && event.nativeEvent.which === 2)\n )\n}\n\nfunction linkClicked(\n e: React.MouseEvent,\n href: string,\n linkInstanceRef: React.RefObject,\n replace?: boolean,\n scroll?: boolean,\n onNavigate?: OnNavigateEventHandler,\n transitionTypes?: string[]\n): void {\n if (typeof window !== 'undefined') {\n const { nodeName } = e.currentTarget\n\n // anchors inside an svg have a lowercase nodeName\n const isAnchorNodeName = nodeName.toUpperCase() === 'A'\n if (\n (isAnchorNodeName && isModifiedEvent(e)) ||\n e.currentTarget.hasAttribute('download')\n ) {\n // ignore click for browser’s default behavior\n return\n }\n\n if (!isLocalURL(href)) {\n if (replace) {\n // browser default behavior does not replace the history state\n // so we need to do it manually\n e.preventDefault()\n location.replace(href)\n }\n\n // ignore click for browser’s default behavior\n return\n }\n\n e.preventDefault()\n\n if (onNavigate) {\n let isDefaultPrevented = false\n\n onNavigate({\n preventDefault: () => {\n isDefaultPrevented = true\n },\n })\n\n if (isDefaultPrevented) {\n return\n }\n }\n\n const { dispatchNavigateAction } =\n require('../components/app-router-instance') as typeof import('../components/app-router-instance')\n\n React.startTransition(() => {\n dispatchNavigateAction(\n href,\n replace ? 'replace' : 'push',\n scroll === false ? ScrollBehavior.NoScroll : ScrollBehavior.Default,\n linkInstanceRef.current,\n transitionTypes\n )\n })\n }\n}\n\nfunction formatStringOrUrl(urlObjOrString: UrlObject | string): string {\n if (typeof urlObjOrString === 'string') {\n return urlObjOrString\n }\n\n return formatUrl(urlObjOrString)\n}\n\n/**\n * A React component that extends the HTML `` element to provide\n * [prefetching](https://nextjs.org/docs/app/building-your-application/routing/linking-and-navigating#2-prefetching)\n * and client-side navigation. This is the primary way to navigate between routes in Next.js.\n *\n * @remarks\n * - Prefetching is only enabled in production.\n *\n * @see https://nextjs.org/docs/app/api-reference/components/link\n */\nexport default function LinkComponent(\n props: LinkProps & {\n children: React.ReactNode\n ref: React.Ref\n }\n) {\n const [linkStatus, setOptimisticLinkStatus] = useOptimistic(IDLE_LINK_STATUS)\n\n let children: React.ReactNode\n\n const linkInstanceRef = useRef(null)\n\n const {\n href: hrefProp,\n as: asProp,\n children: childrenProp,\n prefetch: prefetchProp = null,\n passHref,\n replace,\n shallow,\n scroll,\n onClick,\n onMouseEnter: onMouseEnterProp,\n onTouchStart: onTouchStartProp,\n legacyBehavior = false,\n onNavigate,\n transitionTypes,\n ref: forwardedRef,\n unstable_dynamicOnHover,\n ...restProps\n } = props\n\n children = childrenProp\n\n if (\n legacyBehavior &&\n (typeof children === 'string' || typeof children === 'number')\n ) {\n children = {children}\n }\n\n const router = React.useContext(AppRouterContext)\n\n const prefetchEnabled = prefetchProp !== false\n\n const fetchStrategy =\n prefetchProp !== false\n ? getFetchStrategyFromPrefetchProp(prefetchProp)\n : // TODO: it makes no sense to assign a fetchStrategy when prefetching is disabled.\n FetchStrategy.PPR\n\n if (process.env.NODE_ENV !== 'production') {\n function createPropError(args: {\n key: string\n expected: string\n actual: string\n }) {\n return new Error(\n `Failed prop type: The prop \\`${args.key}\\` expects a ${args.expected} in \\`\\`, but got \\`${args.actual}\\` instead.` +\n (typeof window !== 'undefined'\n ? \"\\nOpen your browser's console to view the Component stack trace.\"\n : '')\n )\n }\n\n // TypeScript trick for type-guarding:\n const requiredPropsGuard: Record = {\n href: true,\n } as const\n const requiredProps: LinkPropsRequired[] = Object.keys(\n requiredPropsGuard\n ) as LinkPropsRequired[]\n requiredProps.forEach((key: LinkPropsRequired) => {\n if (key === 'href') {\n if (\n props[key] == null ||\n (typeof props[key] !== 'string' && typeof props[key] !== 'object')\n ) {\n throw createPropError({\n key,\n expected: '`string` or `object`',\n actual: props[key] === null ? 'null' : typeof props[key],\n })\n }\n } else {\n // TypeScript trick for type-guarding:\n const _: never = key\n }\n })\n\n // TypeScript trick for type-guarding:\n const optionalPropsGuard: Record = {\n as: true,\n replace: true,\n scroll: true,\n shallow: true,\n passHref: true,\n prefetch: true,\n unstable_dynamicOnHover: true,\n onClick: true,\n onMouseEnter: true,\n onTouchStart: true,\n legacyBehavior: true,\n onNavigate: true,\n transitionTypes: true,\n } as const\n const optionalProps: LinkPropsOptional[] = Object.keys(\n optionalPropsGuard\n ) as LinkPropsOptional[]\n optionalProps.forEach((key: LinkPropsOptional) => {\n const valType = typeof props[key]\n\n if (key === 'as') {\n if (props[key] && valType !== 'string' && valType !== 'object') {\n throw createPropError({\n key,\n expected: '`string` or `object`',\n actual: valType,\n })\n }\n } else if (\n key === 'onClick' ||\n key === 'onMouseEnter' ||\n key === 'onTouchStart' ||\n key === 'onNavigate'\n ) {\n if (props[key] && valType !== 'function') {\n throw createPropError({\n key,\n expected: '`function`',\n actual: valType,\n })\n }\n } else if (\n key === 'replace' ||\n key === 'scroll' ||\n key === 'shallow' ||\n key === 'passHref' ||\n key === 'legacyBehavior' ||\n key === 'unstable_dynamicOnHover'\n ) {\n if (props[key] != null && valType !== 'boolean') {\n throw createPropError({\n key,\n expected: '`boolean`',\n actual: valType,\n })\n }\n } else if (key === 'prefetch') {\n if (\n props[key] != null &&\n valType !== 'boolean' &&\n props[key] !== 'auto'\n ) {\n throw createPropError({\n key,\n expected: '`boolean | \"auto\"`',\n actual: valType,\n })\n }\n } else if (key === 'transitionTypes') {\n if (props[key] != null && !Array.isArray(props[key])) {\n throw createPropError({\n key,\n expected: '`string[]`',\n actual: valType,\n })\n }\n } else {\n // TypeScript trick for type-guarding:\n const _: never = key\n }\n })\n }\n\n const resolvedHref = asProp || hrefProp\n const formattedHref = formatStringOrUrl(resolvedHref)\n\n if (process.env.NODE_ENV !== 'production') {\n if (props.locale) {\n warnOnce(\n 'The `locale` prop is not supported in `next/link` while using the `app` router. Read more about app router internalization: https://nextjs.org/docs/app/building-your-application/routing/internationalization'\n )\n }\n if (!asProp) {\n let href: string | undefined\n if (typeof resolvedHref === 'string') {\n href = resolvedHref\n } else if (\n typeof resolvedHref === 'object' &&\n typeof resolvedHref.pathname === 'string'\n ) {\n href = resolvedHref.pathname\n }\n\n if (href) {\n const hasDynamicSegment = href\n .split('/')\n .some((segment) => segment.startsWith('[') && segment.endsWith(']'))\n\n if (hasDynamicSegment) {\n throw new Error(\n `Dynamic href \\`${href}\\` found in while using the \\`/app\\` router, this is not supported. Read more: https://nextjs.org/docs/messages/app-dir-dynamic-href`\n )\n }\n }\n }\n }\n\n // This will return the first child, if multiple are provided it will throw an error\n let child: any\n if (legacyBehavior) {\n if ((children as any)?.$$typeof === Symbol.for('react.lazy')) {\n throw new Error(\n `\\`\\` received a direct child that is either a Server Component, or JSX that was loaded with React.lazy(). This is not supported. Either remove legacyBehavior, or make the direct child a Client Component that renders the Link's \\`\\` tag.`\n )\n }\n\n if (process.env.NODE_ENV === 'development') {\n if (onClick) {\n console.warn(\n `\"onClick\" was passed to with \\`href\\` of \\`${formattedHref}\\` but \"legacyBehavior\" was set. The legacy behavior requires onClick be set on the child of next/link`\n )\n }\n if (onMouseEnterProp) {\n console.warn(\n `\"onMouseEnter\" was passed to with \\`href\\` of \\`${formattedHref}\\` but \"legacyBehavior\" was set. The legacy behavior requires onMouseEnter be set on the child of next/link`\n )\n }\n try {\n child = React.Children.only(children)\n } catch (err) {\n if (!children) {\n throw new Error(\n `No children were passed to with \\`href\\` of \\`${formattedHref}\\` but one child is required https://nextjs.org/docs/messages/link-no-children`\n )\n }\n throw new Error(\n `Multiple children were passed to with \\`href\\` of \\`${formattedHref}\\` but only one child is supported https://nextjs.org/docs/messages/link-multiple-children` +\n (typeof window !== 'undefined'\n ? \" \\nOpen your browser's console to view the Component stack trace.\"\n : '')\n )\n }\n } else {\n child = React.Children.only(children)\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if ((children as any)?.type === 'a') {\n throw new Error(\n 'Invalid with child. Please remove or use .\\nLearn more: https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor'\n )\n }\n }\n }\n\n const childRef: any = legacyBehavior\n ? child && typeof child === 'object' && child.ref\n : forwardedRef\n\n // Use a callback ref to attach an IntersectionObserver to the anchor tag on\n // mount. In the future we will also use this to keep track of all the\n // currently mounted instances, e.g. so we can re-prefetch them after\n // a revalidation or refresh.\n const observeLinkVisibilityOnMount = React.useCallback(\n (element: HTMLAnchorElement | SVGAElement) => {\n if (router !== null) {\n linkInstanceRef.current = mountLinkInstance(\n element,\n formattedHref,\n router,\n fetchStrategy,\n prefetchEnabled,\n setOptimisticLinkStatus\n )\n }\n\n return () => {\n if (linkInstanceRef.current) {\n unmountLinkForCurrentNavigation(linkInstanceRef.current)\n linkInstanceRef.current = null\n }\n unmountPrefetchableInstance(element)\n }\n },\n [\n prefetchEnabled,\n formattedHref,\n router,\n fetchStrategy,\n setOptimisticLinkStatus,\n ]\n )\n\n const mergedRef = useMergedRef(observeLinkVisibilityOnMount, childRef)\n\n const childProps: {\n onTouchStart?: React.TouchEventHandler\n onMouseEnter: React.MouseEventHandler\n onClick: React.MouseEventHandler\n href?: string\n ref?: any\n } = {\n ref: mergedRef,\n onClick(e) {\n if (process.env.NODE_ENV !== 'production') {\n if (!e) {\n throw new Error(\n `Component rendered inside next/link has to pass click event to \"onClick\" prop.`\n )\n }\n }\n\n if (!legacyBehavior && typeof onClick === 'function') {\n onClick(e)\n }\n\n if (\n legacyBehavior &&\n child.props &&\n typeof child.props.onClick === 'function'\n ) {\n child.props.onClick(e)\n }\n\n if (!router) {\n return\n }\n if (e.defaultPrevented) {\n return\n }\n linkClicked(\n e,\n formattedHref,\n linkInstanceRef,\n replace,\n scroll,\n onNavigate,\n transitionTypes\n )\n },\n onMouseEnter(e) {\n if (!legacyBehavior && typeof onMouseEnterProp === 'function') {\n onMouseEnterProp(e)\n }\n\n if (\n legacyBehavior &&\n child.props &&\n typeof child.props.onMouseEnter === 'function'\n ) {\n child.props.onMouseEnter(e)\n }\n\n if (!router) {\n return\n }\n if (!prefetchEnabled || process.env.NODE_ENV === 'development') {\n return\n }\n\n const upgradeToDynamicPrefetch = unstable_dynamicOnHover === true\n onNavigationIntent(\n e.currentTarget as HTMLAnchorElement | SVGAElement,\n upgradeToDynamicPrefetch\n )\n },\n onTouchStart: process.env.__NEXT_LINK_NO_TOUCH_START\n ? undefined\n : function onTouchStart(e) {\n if (!legacyBehavior && typeof onTouchStartProp === 'function') {\n onTouchStartProp(e)\n }\n\n if (\n legacyBehavior &&\n child.props &&\n typeof child.props.onTouchStart === 'function'\n ) {\n child.props.onTouchStart(e)\n }\n\n if (!router) {\n return\n }\n if (!prefetchEnabled) {\n return\n }\n\n const upgradeToDynamicPrefetch = unstable_dynamicOnHover === true\n onNavigationIntent(\n e.currentTarget as HTMLAnchorElement | SVGAElement,\n upgradeToDynamicPrefetch\n )\n },\n }\n\n // If the url is absolute, we can bypass the logic to prepend the basePath.\n if (isAbsoluteUrl(formattedHref)) {\n childProps.href = formattedHref\n } else if (\n !legacyBehavior ||\n passHref ||\n (child.type === 'a' && !('href' in child.props))\n ) {\n childProps.href = addBasePath(formattedHref)\n }\n\n let link: React.ReactNode\n\n if (legacyBehavior) {\n if (process.env.NODE_ENV === 'development') {\n errorOnce(\n '`legacyBehavior` is deprecated and will be removed in a future ' +\n 'release. A codemod is available to upgrade your components:\\n\\n' +\n 'npx @next/codemod@latest new-link .\\n\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/upgrading/codemods#remove-a-tags-from-link-components'\n )\n }\n link = React.cloneElement(child, childProps)\n } else {\n link = (\n \n {children}\n \n )\n }\n\n return (\n \n {link}\n \n )\n}\n\nconst LinkStatusContext = createContext<\n typeof PENDING_LINK_STATUS | typeof IDLE_LINK_STATUS\n>(IDLE_LINK_STATUS)\n\nexport const useLinkStatus = () => {\n return useContext(LinkStatusContext)\n}\n\nfunction getFetchStrategyFromPrefetchProp(\n prefetchProp: Exclude\n): PrefetchTaskFetchStrategy {\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n if (prefetchProp === true) {\n return FetchStrategy.Full\n }\n\n // `null` or `\"auto\"`: this is the default \"auto\" mode, where we will prefetch partially if the link is in the viewport.\n // This will also include invalid prop values that don't match the types specified here.\n // (although those should've been filtered out by prop validation in dev)\n prefetchProp satisfies null | 'auto'\n return FetchStrategy.PPR\n } else {\n return prefetchProp === null || prefetchProp === 'auto'\n ? // We default to PPR, and we'll discover whether or not the route supports it with the initial prefetch.\n FetchStrategy.PPR\n : // In the old implementation without runtime prefetches, `prefetch={true}` forces all dynamic data to be prefetched.\n // To preserve backwards-compatibility, anything other than `false`, `null`, or `\"auto\"` results in a full prefetch.\n // (although invalid values should've been filtered out by prop validation in dev)\n FetchStrategy.Full\n }\n}\n","import type { ComponentProps } from 'react'\nimport ClientLinkComponent, { type LinkProps, useLinkStatus } from './link'\n\nexport default function LinkComponent(\n props: ComponentProps\n) {\n const isLegacyBehavior = props.legacyBehavior\n const childIsHostComponent =\n typeof props.children === 'string' ||\n typeof props.children === 'number' ||\n typeof (props.children as any)?.type === 'string'\n const childIsClientComponent =\n (props.children as any)?.type?.$$typeof ===\n Symbol.for('react.client.reference')\n\n if (isLegacyBehavior && !childIsHostComponent && !childIsClientComponent) {\n if ((props.children as any)?.type?.$$typeof === Symbol.for('react.lazy')) {\n console.error(\n `Using a Lazy Component as a direct child of \\`\\` from a Server Component is not supported. If you need legacyBehavior, wrap your Lazy Component in a Client Component that renders the Link's \\`\\` tag.`\n )\n } else {\n console.error(\n `Using a Server Component as a direct child of \\`\\` is not supported. If you need legacyBehavior, wrap your Server Component in a Client Component that renders the Link's \\`\\` tag.`\n )\n }\n }\n\n return \n}\n\nexport { type LinkProps, useLinkStatus }\n","\"use strict\";\n\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\nexports._ = _interop_require_default;\n","let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n","let deploymentId: string | undefined\n\nif (typeof window !== 'undefined') {\n deploymentId = document.documentElement.dataset.dplId\n // Immediately remove the attribute to prevent hydration errors (the dplId was inserted into the\n // HTML only), React isn't aware of it at all.\n delete document.documentElement.dataset.dplId\n} else {\n // Client side: replaced with globalThis.NEXT_DEPLOYMENT_ID\n // Server side: left as is or replaced with a string or replaced with false\n deploymentId = process.env.NEXT_DEPLOYMENT_ID || undefined\n}\n\nexport function getDeploymentId(): string | undefined {\n return deploymentId\n}\n\nexport function getDeploymentIdQuery(ampersand = false): string {\n let id = getDeploymentId()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n\nexport function getAssetToken(): string | undefined {\n return (\n process.env.NEXT_IMMUTABLE_ASSET_TOKEN || process.env.NEXT_DEPLOYMENT_ID\n )\n}\n\nexport function getAssetTokenQuery(ampersand = false): string {\n let id = getAssetToken()\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`\n }\n return ''\n}\n","/**\n * A shared function, used on both client and server, to generate a SVG blur placeholder.\n */\nexport function getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL,\n objectFit,\n}: {\n widthInt?: number\n heightInt?: number\n blurWidth?: number\n blurHeight?: number\n blurDataURL: string\n objectFit?: string\n}): string {\n const std = 20\n const svgWidth = blurWidth ? blurWidth * 40 : widthInt\n const svgHeight = blurHeight ? blurHeight * 40 : heightInt\n\n const viewBox =\n svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''\n const preserveAspectRatio = viewBox\n ? 'none'\n : objectFit === 'contain'\n ? 'xMidYMid'\n : objectFit === 'cover'\n ? 'xMidYMid slice'\n : 'none'\n\n return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`\n}\n","export const VALID_LOADERS = [\n 'default',\n 'imgix',\n 'cloudinary',\n 'akamai',\n 'custom',\n] as const\n\nexport type LoaderValue = (typeof VALID_LOADERS)[number]\n\nexport type ImageLoaderProps = {\n src: string\n width: number\n quality?: number\n}\n\nexport type ImageLoaderPropsWithConfig = ImageLoaderProps & {\n config: Readonly\n}\n\nexport type LocalPattern = {\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\nexport type RemotePattern = {\n /**\n * Must be `http` or `https`.\n */\n protocol?: 'http' | 'https'\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single subdomain.\n * Double `**` matches any number of subdomains.\n */\n hostname: string\n\n /**\n * Can be literal port such as `8080` or empty string\n * meaning no port.\n */\n port?: string\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\ntype ImageFormat = 'image/avif' | 'image/webp'\n\n/**\n * Image configurations\n *\n * @see [Image configuration options](https://nextjs.org/docs/api-reference/next/image#configuration-options)\n */\nexport type ImageConfigComplete = {\n /** @see [Device sizes documentation](https://nextjs.org/docs/api-reference/next/image#device-sizes) */\n deviceSizes: number[]\n\n /** @see [Image sizing documentation](https://nextjs.org/docs/app/building-your-application/optimizing/images#image-sizing) */\n imageSizes: number[]\n\n /** @see [Image loaders configuration](https://nextjs.org/docs/api-reference/next/legacy/image#loader) */\n loader: LoaderValue\n\n /** @see [Image loader configuration](https://nextjs.org/docs/app/api-reference/components/image#path) */\n path: string\n\n /** @see [Image loader configuration](https://nextjs.org/docs/api-reference/next/image#loader-configuration) */\n loaderFile: string\n\n /**\n * @deprecated Use `remotePatterns` instead.\n */\n domains: string[]\n\n /** @see [Disable static image import configuration](https://nextjs.org/docs/api-reference/next/image#disable-static-imports) */\n disableStaticImages: boolean\n\n /** @see [Cache behavior](https://nextjs.org/docs/api-reference/next/image#caching-behavior) */\n minimumCacheTTL: number\n\n /** @see [Acceptable formats](https://nextjs.org/docs/api-reference/next/image#acceptable-formats) */\n formats: ImageFormat[]\n\n /** @see [Maximum Disk Cache Size (in bytes)](https://nextjs.org/docs/api-reference/next/image#maximumdiskcachesize) */\n maximumDiskCacheSize: number | undefined\n\n /** @see [Maximum Redirects](https://nextjs.org/docs/api-reference/next/image#maximumredirects) */\n maximumRedirects: number\n\n /** @see [Maximum Response Body](https://nextjs.org/docs/api-reference/next/image#maximumresponsebody) */\n maximumResponseBody: number\n\n /** @see [Dangerously Allow Local IP](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-local-ip) */\n dangerouslyAllowLocalIP: boolean\n\n /** @see [Dangerously Allow SVG](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-svg) */\n dangerouslyAllowSVG: boolean\n\n /** @see [Content Security Policy](https://nextjs.org/docs/api-reference/next/image#contentsecuritypolicy) */\n contentSecurityPolicy: string\n\n /** @see [Content Disposition Type](https://nextjs.org/docs/api-reference/next/image#contentdispositiontype) */\n contentDispositionType: 'inline' | 'attachment'\n\n /** @see [Remote Patterns](https://nextjs.org/docs/api-reference/next/image#remotepatterns) */\n remotePatterns: Array\n\n /** @see [Local Patterns](https://nextjs.org/docs/api-reference/next/image#localPatterns) */\n localPatterns: LocalPattern[] | undefined\n\n /** @see [Qualities](https://nextjs.org/docs/api-reference/next/image#qualities) */\n qualities: number[] | undefined\n\n /** @see [Unoptimized](https://nextjs.org/docs/api-reference/next/image#unoptimized) */\n unoptimized: boolean\n\n /**\n * When true, the `cacheHandler` configured in next.config.js will also be used\n * for caching optimized images. When false, images use the default filesystem cache.\n * @see [Image Optimization Caching](https://nextjs.org/docs/app/api-reference/config/next-config-js/cacheHandler#image-optimization-caching)\n */\n customCacheHandler: boolean\n}\n\nexport type ImageConfig = Partial\n\nexport const imageConfigDefault: ImageConfigComplete = {\n deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],\n imageSizes: [32, 48, 64, 96, 128, 256, 384],\n path: '/_next/image',\n loader: 'default',\n loaderFile: '',\n /**\n * @deprecated Use `remotePatterns` instead to protect your application from malicious users.\n */\n domains: [],\n disableStaticImages: false,\n minimumCacheTTL: 14400, // 4 hours\n formats: ['image/webp'],\n maximumDiskCacheSize: undefined, // auto-detect by default\n maximumRedirects: 3,\n maximumResponseBody: 50_000_000, // 50 MB\n dangerouslyAllowLocalIP: false,\n dangerouslyAllowSVG: false,\n contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,\n contentDispositionType: 'attachment',\n localPatterns: undefined, // default: allow all local images\n remotePatterns: [], // default: allow no remote images\n qualities: [75],\n unoptimized: false,\n customCacheHandler: false,\n}\n","import { warnOnce } from './utils/warn-once'\nimport { getDeploymentId } from './deployment-id'\nimport { getImageBlurSvg } from './image-blur-svg'\nimport { imageConfigDefault } from './image-config'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n ImageLoaderPropsWithConfig,\n} from './image-config'\n\nimport type { CSSProperties, JSX } from 'react'\n\nexport interface StaticImageData {\n src: string\n height: number\n width: number\n blurDataURL?: string\n blurWidth?: number\n blurHeight?: number\n}\n\nexport interface StaticRequire {\n default: StaticImageData\n}\n\nexport type StaticImport = StaticRequire | StaticImageData\n\nexport type ImageProps = Omit<\n JSX.IntrinsicElements['img'],\n 'src' | 'srcSet' | 'ref' | 'alt' | 'width' | 'height' | 'loading'\n> & {\n src: string | StaticImport\n alt: string\n width?: number | `${number}`\n height?: number | `${number}`\n fill?: boolean\n loader?: ImageLoader\n quality?: number | `${number}`\n preload?: boolean\n /**\n * @deprecated Use `preload` prop instead.\n * See https://nextjs.org/docs/app/api-reference/components/image#preload\n */\n priority?: boolean\n loading?: LoadingValue\n placeholder?: PlaceholderValue\n blurDataURL?: string\n unoptimized?: boolean\n overrideSrc?: string\n /**\n * @deprecated Use `onLoad` instead.\n * @see https://nextjs.org/docs/app/api-reference/components/image#onload\n */\n onLoadingComplete?: OnLoadingComplete\n /**\n * @deprecated Use `fill` prop instead of `layout=\"fill\"` or change import to `next/legacy/image`.\n * @see https://nextjs.org/docs/api-reference/next/legacy/image\n */\n layout?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectFit?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectPosition?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyBoundary?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyRoot?: string\n}\n\nexport type ImgProps = Omit & {\n loading: LoadingValue\n width: number | undefined\n height: number | undefined\n style: NonNullable\n sizes: string | undefined\n srcSet: string | undefined\n src: string\n}\n\nconst VALID_LOADING_VALUES = ['lazy', 'eager', undefined] as const\n\n// Object-fit values that are not valid background-size values\nconst INVALID_BACKGROUND_SIZE_VALUES = [\n '-moz-initial',\n 'fill',\n 'none',\n 'scale-down',\n undefined,\n]\ntype LoadingValue = (typeof VALID_LOADING_VALUES)[number]\ntype ImageConfig = ImageConfigComplete & {\n allSizes: number[]\n output?: 'standalone' | 'export'\n}\n\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\n// Do not export - this is an internal type only\n// because `next.config.js` is only meant for the\n// built-in loaders, not for a custom loader() prop.\ntype ImageLoaderWithConfig = (p: ImageLoaderPropsWithConfig) => string\n\nexport type PlaceholderValue = 'blur' | 'empty' | `data:image/${string}`\nexport type OnLoad = React.ReactEventHandler | undefined\nexport type OnLoadingComplete = (img: HTMLImageElement) => void\n\nexport type PlaceholderStyle = Partial<\n Pick<\n CSSProperties,\n | 'backgroundSize'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundImage'\n >\n>\n\nfunction isStaticRequire(\n src: StaticRequire | StaticImageData\n): src is StaticRequire {\n return (src as StaticRequire).default !== undefined\n}\n\nfunction isStaticImageData(\n src: StaticRequire | StaticImageData\n): src is StaticImageData {\n return (src as StaticImageData).src !== undefined\n}\n\nfunction isStaticImport(src: string | StaticImport): src is StaticImport {\n return (\n !!src &&\n typeof src === 'object' &&\n (isStaticRequire(src as StaticImport) ||\n isStaticImageData(src as StaticImport))\n )\n}\n\nconst allImgs = new Map<\n string,\n { src: string; loading: LoadingValue; placeholder: PlaceholderValue }\n>()\nlet perfObserver: PerformanceObserver | undefined\n\nfunction getInt(x: unknown): number | undefined {\n if (typeof x === 'undefined') {\n return x\n }\n if (typeof x === 'number') {\n return Number.isFinite(x) ? x : NaN\n }\n if (typeof x === 'string' && /^[0-9]+$/.test(x)) {\n return parseInt(x, 10)\n }\n return NaN\n}\n\nfunction getWidths(\n { deviceSizes, allSizes }: ImageConfig,\n width: number | undefined,\n sizes: string | undefined\n): { widths: number[]; kind: 'w' | 'x' } {\n if (sizes) {\n // Find all the \"vw\" percent sizes used in the sizes prop\n const viewportWidthRe = /(^|\\s)(1?\\d?\\d)vw/g\n const percentSizes = []\n for (let match; (match = viewportWidthRe.exec(sizes)); match) {\n percentSizes.push(parseInt(match[2]))\n }\n if (percentSizes.length) {\n const smallestRatio = Math.min(...percentSizes) * 0.01\n return {\n widths: allSizes.filter((s) => s >= deviceSizes[0] * smallestRatio),\n kind: 'w',\n }\n }\n return { widths: allSizes, kind: 'w' }\n }\n if (typeof width !== 'number') {\n return { widths: deviceSizes, kind: 'w' }\n }\n\n const widths = [\n ...new Set(\n // > This means that most OLED screens that say they are 3x resolution,\n // > are actually 3x in the green color, but only 1.5x in the red and\n // > blue colors. Showing a 3x resolution image in the app vs a 2x\n // > resolution image will be visually the same, though the 3x image\n // > takes significantly more data. Even true 3x resolution screens are\n // > wasteful as the human eye cannot see that level of detail without\n // > something like a magnifying glass.\n // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html\n [width, width * 2 /*, width * 3*/].map(\n (w) => allSizes.find((p) => p >= w) || allSizes[allSizes.length - 1]\n )\n ),\n ]\n return { widths, kind: 'x' }\n}\n\ntype GenImgAttrsData = {\n config: ImageConfig\n src: string\n unoptimized: boolean\n loader: ImageLoaderWithConfig\n width?: number\n quality?: number\n sizes?: string\n}\n\ntype GenImgAttrsResult = {\n src: string\n srcSet: string | undefined\n sizes: string | undefined\n}\n\nfunction generateImgAttrs({\n config,\n src,\n unoptimized,\n width,\n quality,\n sizes,\n loader,\n}: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n if (src.startsWith('/') && !src.startsWith('//')) {\n let deploymentId = getDeploymentId()\n if (deploymentId) {\n // We unfortunately can't easily use `new URL()` here, because it normalizes the URL which causes\n // double-encoding with the `encodeURIComponent(src)` below\n const qIndex = src.indexOf('?')\n if (qIndex !== -1) {\n const params = new URLSearchParams(src.slice(qIndex + 1))\n const srcDpl = params.get('dpl')\n if (!srcDpl) {\n // src is missing the dpl parameter, but we have a deploymentId, so add it to the src URL\n params.append('dpl', deploymentId)\n src = src.slice(0, qIndex) + '?' + params.toString()\n }\n } else {\n // src is missing the dpl parameter, but we have a deploymentId, so add it to the src URL\n src = src + `?dpl=${deploymentId}`\n }\n }\n }\n return { src, srcSet: undefined, sizes: undefined }\n }\n\n const { widths, kind } = getWidths(config, width, sizes)\n const last = widths.length - 1\n\n return {\n sizes: !sizes && kind === 'w' ? '100vw' : sizes,\n srcSet: widths\n .map(\n (w, i) =>\n `${loader({ config, src, quality, width: w })} ${\n kind === 'w' ? w : i + 1\n }${kind}`\n )\n .join(', '),\n\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n src: loader({ config, src, quality, width: widths[last] }),\n }\n}\n\n/**\n * A shared function, used on both client and server, to generate the props for .\n */\nexport function getImgProps(\n {\n src,\n sizes,\n unoptimized = false,\n priority = false,\n preload = false,\n loading,\n className,\n quality,\n width,\n height,\n fill = false,\n style,\n overrideSrc,\n onLoad,\n onLoadingComplete,\n placeholder = 'empty',\n blurDataURL,\n fetchPriority,\n decoding = 'async',\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n ...rest\n }: ImageProps,\n _state: {\n defaultLoader: ImageLoaderWithConfig\n imgConf: ImageConfigComplete\n showAltText?: boolean\n blurComplete?: boolean\n }\n): {\n props: ImgProps\n meta: {\n unoptimized: boolean\n preload: boolean\n placeholder: NonNullable\n fill: boolean\n }\n} {\n const { imgConf, showAltText, blurComplete, defaultLoader } = _state\n let config: ImageConfig\n let c = imgConf || imageConfigDefault\n if ('allSizes' in c) {\n config = c as ImageConfig\n } else {\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n config = { ...c, allSizes, deviceSizes, qualities }\n }\n\n if (typeof defaultLoader === 'undefined') {\n throw new Error(\n 'images.loaderFile detected but the file is missing default export.\\nRead more: https://nextjs.org/docs/messages/invalid-images-config'\n )\n }\n let loader: ImageLoaderWithConfig = rest.loader || defaultLoader\n\n // Remove property so it's not spread on element\n delete rest.loader\n delete (rest as any).srcSet\n\n // This special value indicates that the user\n // didn't define a \"loader\" prop or \"loader\" config.\n const isDefaultLoader = '__next_img_default' in loader\n\n if (isDefaultLoader) {\n if (config.loader === 'custom') {\n throw new Error(\n `Image with src \"${src}\" is missing \"loader\" prop.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`\n )\n }\n } else {\n // The user defined a \"loader\" prop or config.\n // Since the config object is internal only, we\n // must not pass it to the user-defined \"loader\".\n const customImageLoader = loader as ImageLoader\n loader = (obj) => {\n const { config: _, ...opts } = obj\n return customImageLoader(opts)\n }\n }\n\n if (layout) {\n if (layout === 'fill') {\n fill = true\n }\n const layoutToStyle: Record | undefined> = {\n intrinsic: { maxWidth: '100%', height: 'auto' },\n responsive: { width: '100%', height: 'auto' },\n }\n const layoutToSizes: Record = {\n responsive: '100vw',\n fill: '100vw',\n }\n const layoutStyle = layoutToStyle[layout]\n if (layoutStyle) {\n style = { ...style, ...layoutStyle }\n }\n const layoutSizes = layoutToSizes[layout]\n if (layoutSizes && !sizes) {\n sizes = layoutSizes\n }\n }\n\n let staticSrc = ''\n let widthInt = getInt(width)\n let heightInt = getInt(height)\n let blurWidth: number | undefined\n let blurHeight: number | undefined\n if (isStaticImport(src)) {\n const staticImageData = isStaticRequire(src) ? src.default : src\n\n if (!staticImageData.src) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n if (!staticImageData.height || !staticImageData.width) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n\n blurWidth = staticImageData.blurWidth\n blurHeight = staticImageData.blurHeight\n blurDataURL = blurDataURL || staticImageData.blurDataURL\n staticSrc = staticImageData.src\n\n if (!fill) {\n if (!widthInt && !heightInt) {\n widthInt = staticImageData.width\n heightInt = staticImageData.height\n } else if (widthInt && !heightInt) {\n const ratio = widthInt / staticImageData.width\n heightInt = Math.round(staticImageData.height * ratio)\n } else if (!widthInt && heightInt) {\n const ratio = heightInt / staticImageData.height\n widthInt = Math.round(staticImageData.width * ratio)\n }\n }\n }\n src = typeof src === 'string' ? src : staticSrc\n\n let isLazy =\n !priority &&\n !preload &&\n (loading === 'lazy' || typeof loading === 'undefined')\n if (!src || src.startsWith('data:') || src.startsWith('blob:')) {\n // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs\n unoptimized = true\n isLazy = false\n }\n if (config.unoptimized) {\n unoptimized = true\n }\n if (\n isDefaultLoader &&\n !config.dangerouslyAllowSVG &&\n src.split('?', 1)[0].endsWith('.svg')\n ) {\n // Special case to make svg serve as-is to avoid proxying\n // through the built-in Image Optimization API.\n unoptimized = true\n }\n\n const qualityInt = getInt(quality)\n\n if (process.env.NODE_ENV !== 'production') {\n if (config.output === 'export' && isDefaultLoader && !unoptimized) {\n throw new Error(\n `Image Optimization using the default loader is not compatible with \\`{ output: 'export' }\\`.\n Possible solutions:\n - Remove \\`{ output: 'export' }\\` and run \"next start\" to run server mode including the Image Optimization API.\n - Configure \\`{ images: { unoptimized: true } }\\` in \\`next.config.js\\` to disable the Image Optimization API.\n Read more: https://nextjs.org/docs/messages/export-image-api`\n )\n }\n if (!src) {\n // React doesn't show the stack trace and there's\n // no `src` to help identify which image, so we\n // instead console.error(ref) during mount.\n unoptimized = true\n } else {\n if (fill) {\n if (width) {\n throw new Error(\n `Image with src \"${src}\" has both \"width\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (height) {\n throw new Error(\n `Image with src \"${src}\" has both \"height\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (style?.position && style.position !== 'absolute') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.position\" properties. Images with \"fill\" always use position absolute - it cannot be modified.`\n )\n }\n if (style?.width && style.width !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.width\" properties. Images with \"fill\" always use width 100% - it cannot be modified.`\n )\n }\n if (style?.height && style.height !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.height\" properties. Images with \"fill\" always use height 100% - it cannot be modified.`\n )\n }\n } else {\n if (typeof widthInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"width\" property.`\n )\n } else if (isNaN(widthInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"width\" property. Expected a numeric value in pixels but received \"${width}\".`\n )\n }\n if (typeof heightInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"height\" property.`\n )\n } else if (isNaN(heightInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"height\" property. Expected a numeric value in pixels but received \"${height}\".`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/^[\\x00-\\x20]/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/[\\x00-\\x20]$/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n }\n }\n if (!VALID_LOADING_VALUES.includes(loading)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"loading\" property. Provided \"${loading}\" should be one of ${VALID_LOADING_VALUES.map(\n String\n ).join(',')}.`\n )\n }\n if (priority && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"priority\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && priority) {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"priority\" properties. Only \"preload\" should be used.`\n )\n }\n if (\n placeholder !== 'empty' &&\n placeholder !== 'blur' &&\n !placeholder.startsWith('data:image/')\n ) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"placeholder\" property \"${placeholder}\".`\n )\n }\n if (placeholder !== 'empty') {\n if (widthInt && heightInt && widthInt * heightInt < 1600) {\n warnOnce(\n `Image with src \"${src}\" is smaller than 40x40. Consider removing the \"placeholder\" property to improve performance.`\n )\n }\n }\n if (\n qualityInt &&\n config.qualities &&\n !config.qualities.includes(qualityInt)\n ) {\n warnOnce(\n `Image with src \"${src}\" is using quality \"${qualityInt}\" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[...config.qualities, qualityInt].sort().join(', ')}].` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`\n )\n }\n if (placeholder === 'blur' && !blurDataURL) {\n const VALID_BLUR_EXT = ['jpeg', 'png', 'webp', 'avif'] // should match next-image-loader\n\n throw new Error(\n `Image with src \"${src}\" has \"placeholder='blur'\" property but is missing the \"blurDataURL\" property.\n Possible solutions:\n - Add a \"blurDataURL\" property, the contents should be a small Data URL to represent the image\n - Change the \"src\" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(\n ','\n )} (animated images not supported)\n - Remove the \"placeholder\" property, effectively no blur effect\n Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`\n )\n }\n if ('ref' in rest) {\n warnOnce(\n `Image with src \"${src}\" is using unsupported \"ref\" property. Consider using the \"onLoad\" property instead.`\n )\n }\n\n if (!unoptimized && !isDefaultLoader) {\n const urlStr = loader({\n config,\n src,\n width: widthInt || 400,\n quality: qualityInt || 75,\n })\n let url: URL | undefined\n try {\n url = new URL(urlStr)\n } catch (err) {}\n if (urlStr === src || (url && url.pathname === src && !url.search)) {\n warnOnce(\n `Image with src \"${src}\" has a \"loader\" property that does not implement width. Please implement it or use the \"unoptimized\" property instead.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`\n )\n }\n }\n\n if (onLoadingComplete) {\n warnOnce(\n `Image with src \"${src}\" is using deprecated \"onLoadingComplete\" property. Please use the \"onLoad\" property instead.`\n )\n }\n\n for (const [legacyKey, legacyValue] of Object.entries({\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n })) {\n if (legacyValue) {\n warnOnce(\n `Image with src \"${src}\" has legacy prop \"${legacyKey}\". Did you forget to run the codemod?` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`\n )\n }\n }\n\n if (\n typeof window !== 'undefined' &&\n !perfObserver &&\n window.PerformanceObserver\n ) {\n perfObserver = new PerformanceObserver((entryList) => {\n for (const entry of entryList.getEntries()) {\n // @ts-ignore - missing \"LargestContentfulPaint\" class with \"element\" prop\n const imgSrc = entry?.element?.src || ''\n const lcpImage = allImgs.get(imgSrc)\n if (\n lcpImage &&\n lcpImage.loading === 'lazy' &&\n lcpImage.placeholder === 'empty' &&\n !lcpImage.src.startsWith('data:') &&\n !lcpImage.src.startsWith('blob:')\n ) {\n // https://web.dev/lcp/#measure-lcp-in-javascript\n warnOnce(\n `Image with src \"${lcpImage.src}\" was detected as the Largest Contentful Paint (LCP). Please add the \\`loading=\"eager\"\\` property if this image is above the fold.` +\n `\\nRead more: https://nextjs.org/docs/app/api-reference/components/image#loading`\n )\n }\n }\n })\n try {\n perfObserver.observe({\n type: 'largest-contentful-paint',\n buffered: true,\n })\n } catch (err) {\n // Log error but don't crash the app\n console.error(err)\n }\n }\n }\n const imgStyle = Object.assign(\n fill\n ? {\n position: 'absolute',\n height: '100%',\n width: '100%',\n left: 0,\n top: 0,\n right: 0,\n bottom: 0,\n objectFit,\n objectPosition,\n }\n : {},\n showAltText ? {} : { color: 'transparent' },\n style\n )\n\n const backgroundImage =\n !blurComplete && placeholder !== 'empty'\n ? placeholder === 'blur'\n ? `url(\"data:image/svg+xml;charset=utf-8,${getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL: blurDataURL || '', // assume not undefined\n objectFit: imgStyle.objectFit,\n })}\")`\n : `url(\"${placeholder}\")` // assume `data:image/`\n : null\n\n const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(\n imgStyle.objectFit\n )\n ? imgStyle.objectFit\n : imgStyle.objectFit === 'fill'\n ? '100% 100%' // the background-size equivalent of `fill`\n : 'cover'\n\n let placeholderStyle: PlaceholderStyle = backgroundImage\n ? {\n backgroundSize,\n backgroundPosition: imgStyle.objectPosition || '50% 50%',\n backgroundRepeat: 'no-repeat',\n backgroundImage,\n }\n : {}\n\n if (process.env.NODE_ENV === 'development') {\n if (\n placeholderStyle.backgroundImage &&\n placeholder === 'blur' &&\n blurDataURL?.startsWith('/')\n ) {\n // During `next dev`, we don't want to generate blur placeholders with webpack\n // because it can delay starting the dev server. Instead, `next-image-loader.js`\n // will inline a special url to lazily generate the blur placeholder at request time.\n placeholderStyle.backgroundImage = `url(\"${blurDataURL}\")`\n }\n }\n\n const imgAttributes = generateImgAttrs({\n config,\n src,\n unoptimized,\n width: widthInt,\n quality: qualityInt,\n sizes,\n loader,\n })\n\n const loadingFinal = isLazy ? 'lazy' : loading\n\n if (process.env.NODE_ENV !== 'production') {\n if (typeof window !== 'undefined') {\n let fullUrl: URL\n try {\n fullUrl = new URL(imgAttributes.src)\n } catch (e) {\n fullUrl = new URL(imgAttributes.src, window.location.href)\n }\n allImgs.set(fullUrl.href, { src, loading: loadingFinal, placeholder })\n }\n }\n\n const props: ImgProps = {\n ...rest,\n loading: loadingFinal,\n fetchPriority,\n width: widthInt,\n height: heightInt,\n decoding,\n className,\n style: { ...imgStyle, ...placeholderStyle },\n sizes: imgAttributes.sizes,\n srcSet: imgAttributes.srcSet,\n src: overrideSrc || imgAttributes.src,\n }\n const meta = { unoptimized, preload: preload || priority, placeholder, fill }\n return { props, meta }\n}\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/image-component.js\"));\n","'use client'\n\nimport React, {\n useRef,\n useEffect,\n useCallback,\n useContext,\n useMemo,\n useState,\n forwardRef,\n use,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport Head from '../shared/lib/head'\nimport { getImgProps } from '../shared/lib/get-img-props'\nimport type {\n ImageProps,\n ImgProps,\n OnLoad,\n OnLoadingComplete,\n PlaceholderValue,\n} from '../shared/lib/get-img-props'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n} from '../shared/lib/image-config'\nimport { imageConfigDefault } from '../shared/lib/image-config'\nimport { ImageConfigContext } from '../shared/lib/image-config-context.shared-runtime'\nimport { warnOnce } from '../shared/lib/utils/warn-once'\nimport { RouterContext } from '../shared/lib/router-context.shared-runtime'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\nimport { useMergedRef } from './use-merged-ref'\n\n// This is replaced by webpack define plugin\nconst configEnv = process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete\n\nif (typeof window === 'undefined') {\n ;(globalThis as any).__NEXT_IMAGE_IMPORTED = true\n}\n\nexport type { ImageLoaderProps }\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\ntype ImgElementWithDataProp = HTMLImageElement & {\n 'data-loaded-src': string | undefined\n}\n\ntype ImageElementProps = ImgProps & {\n unoptimized: boolean\n placeholder: PlaceholderValue\n onLoadRef: React.MutableRefObject\n onLoadingCompleteRef: React.MutableRefObject\n setBlurComplete: (b: boolean) => void\n setShowAltText: (b: boolean) => void\n sizesInput: string | undefined\n}\n\n// See https://stackoverflow.com/q/39777833/266535 for why we use this ref\n// handler instead of the img's onLoad attribute.\nfunction handleLoading(\n img: ImgElementWithDataProp,\n placeholder: PlaceholderValue,\n onLoadRef: React.MutableRefObject,\n onLoadingCompleteRef: React.MutableRefObject,\n setBlurComplete: (b: boolean) => void,\n unoptimized: boolean,\n sizesInput: string | undefined\n) {\n const src = img?.src\n if (!img || img['data-loaded-src'] === src) {\n return\n }\n img['data-loaded-src'] = src\n const p = 'decode' in img ? img.decode() : Promise.resolve()\n p.catch(() => {}).then(() => {\n if (!img.parentElement || !img.isConnected) {\n // Exit early in case of race condition:\n // - onload() is called\n // - decode() is called but incomplete\n // - unmount is called\n // - decode() completes\n return\n }\n if (placeholder !== 'empty') {\n setBlurComplete(true)\n }\n if (onLoadRef?.current) {\n // Since we don't have the SyntheticEvent here,\n // we must create one with the same shape.\n // See https://reactjs.org/docs/events.html\n const event = new Event('load')\n Object.defineProperty(event, 'target', { writable: false, value: img })\n let prevented = false\n let stopped = false\n onLoadRef.current({\n ...event,\n nativeEvent: event,\n currentTarget: img,\n target: img,\n isDefaultPrevented: () => prevented,\n isPropagationStopped: () => stopped,\n persist: () => {},\n preventDefault: () => {\n prevented = true\n event.preventDefault()\n },\n stopPropagation: () => {\n stopped = true\n event.stopPropagation()\n },\n })\n }\n if (onLoadingCompleteRef?.current) {\n onLoadingCompleteRef.current(img)\n }\n if (process.env.NODE_ENV !== 'production') {\n const origSrc = new URL(src, 'http://n').searchParams.get('url') || src\n if (img.getAttribute('data-nimg') === 'fill') {\n if (!unoptimized && (!sizesInput || sizesInput === '100vw')) {\n let widthViewportRatio =\n img.getBoundingClientRect().width / window.innerWidth\n if (widthViewportRatio < 0.6) {\n if (sizesInput === '100vw') {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" prop and \"sizes\" prop of \"100vw\", but image is not rendered at full viewport width. Please adjust \"sizes\" to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n } else {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" but is missing \"sizes\" prop. Please add it to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n }\n }\n }\n if (img.parentElement) {\n const { position } = window.getComputedStyle(img.parentElement)\n const valid = ['absolute', 'fixed', 'relative']\n if (!valid.includes(position)) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and parent element with invalid \"position\". Provided \"${position}\" should be one of ${valid\n .map(String)\n .join(',')}.`\n )\n }\n }\n if (img.height === 0) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and a height value of 0. This is likely because the parent element of the image has not been styled to have a set height.`\n )\n }\n }\n\n const heightModified =\n img.height.toString() !== img.getAttribute('height')\n const widthModified = img.width.toString() !== img.getAttribute('width')\n if (\n (heightModified && !widthModified) ||\n (!heightModified && widthModified)\n ) {\n warnOnce(\n `Image with src \"${origSrc}\" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: \"auto\"' or 'height: \"auto\"' to maintain the aspect ratio.`\n )\n }\n }\n })\n}\n\nfunction getDynamicProps(\n fetchPriority?: string\n): Record {\n if (Boolean(use)) {\n // In React 19.0.0 or newer, we must use camelCase\n // prop to avoid \"Warning: Invalid DOM property\".\n // See https://github.com/facebook/react/pull/25927\n return { fetchPriority }\n }\n // In React 18.2.0 or older, we must use lowercase prop\n // to avoid \"Warning: Invalid DOM property\".\n return { fetchpriority: fetchPriority }\n}\n\nconst ImageElement = forwardRef(\n (\n {\n src,\n srcSet,\n sizes,\n height,\n width,\n decoding,\n className,\n style,\n fetchPriority,\n placeholder,\n loading,\n unoptimized,\n fill,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n setShowAltText,\n sizesInput,\n onLoad,\n onError,\n ...rest\n },\n forwardedRef\n ) => {\n const ownRef = useCallback(\n (img: ImgElementWithDataProp | null) => {\n if (!img) {\n return\n }\n if (onError) {\n // If the image has an error before react hydrates, then the error is lost.\n // The workaround is to wait until the image is mounted which is after hydration,\n // then we set the src again to trigger the error handler (if there was an error).\n // eslint-disable-next-line no-self-assign\n img.src = img.src\n }\n if (process.env.NODE_ENV !== 'production') {\n if (!src) {\n console.error(`Image is missing required \"src\" property:`, img)\n }\n if (img.getAttribute('alt') === null) {\n console.error(\n `Image is missing required \"alt\" property. Please add Alternative Text to describe the image for screen readers and search engines.`\n )\n }\n }\n if (img.complete) {\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }\n },\n [\n src,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n onError,\n unoptimized,\n sizesInput,\n ]\n )\n\n const ref = useMergedRef(forwardedRef, ownRef)\n\n return (\n {\n const img = event.currentTarget as ImgElementWithDataProp\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }}\n onError={(event) => {\n // if the real image fails to load, this will ensure \"alt\" is visible\n setShowAltText(true)\n if (placeholder !== 'empty') {\n // If the real image fails to load, this will still remove the placeholder.\n setBlurComplete(true)\n }\n if (onError) {\n onError(event)\n }\n }}\n />\n )\n }\n)\n\nfunction ImagePreload({\n isAppRouter,\n imgAttributes,\n}: {\n isAppRouter: boolean\n imgAttributes: ImgProps\n}) {\n const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSizes: imgAttributes.sizes,\n crossOrigin: imgAttributes.crossOrigin,\n referrerPolicy: imgAttributes.referrerPolicy,\n ...getDynamicProps(imgAttributes.fetchPriority),\n }\n\n if (isAppRouter && ReactDOM.preload) {\n ReactDOM.preload(imgAttributes.src, opts)\n return null\n }\n\n return (\n \n \n \n )\n}\n\n/**\n * The `Image` component is used to optimize images.\n *\n * Read more: [Next.js docs: `Image`](https://nextjs.org/docs/app/api-reference/components/image)\n */\nexport const Image = forwardRef(\n (props, forwardedRef) => {\n const pagesRouter = useContext(RouterContext)\n // We're in the app directory if there is no pages router.\n const isAppRouter = !pagesRouter\n\n const configContext = useContext(ImageConfigContext)\n const config = useMemo(() => {\n const c = configEnv || configContext || imageConfigDefault\n\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n return {\n ...c,\n allSizes,\n deviceSizes,\n qualities,\n // During the SSR, configEnv (__NEXT_IMAGE_OPTS) does not include\n // security sensitive configs like `localPatterns`, which is needed\n // during the server render to ensure it's validated. Therefore use\n // configContext, which holds the config from the server for validation.\n localPatterns:\n typeof window === 'undefined'\n ? configContext?.localPatterns\n : c.localPatterns,\n }\n }, [configContext])\n\n const { onLoad, onLoadingComplete } = props\n const onLoadRef = useRef(onLoad)\n\n useEffect(() => {\n onLoadRef.current = onLoad\n }, [onLoad])\n\n const onLoadingCompleteRef = useRef(onLoadingComplete)\n\n useEffect(() => {\n onLoadingCompleteRef.current = onLoadingComplete\n }, [onLoadingComplete])\n\n const [blurComplete, setBlurComplete] = useState(false)\n const [showAltText, setShowAltText] = useState(false)\n const { props: imgAttributes, meta: imgMeta } = getImgProps(props, {\n defaultLoader,\n imgConf: config,\n blurComplete,\n showAltText,\n })\n\n return (\n <>\n {\n \n }\n {imgMeta.preload ? (\n \n ) : null}\n \n )\n }\n)\n","import type { NextConfig } from '../../server/config-shared'\n\n/**\n * Find the closest matching `quality` in the list of `config.qualities`\n * @param quality the quality prop passed to the image component\n * @param config the \"images\" configuration from next.config.js\n * @returns the closest matching quality value\n */\nexport function findClosestQuality(\n quality: number | undefined,\n config: NextConfig['images'] | undefined\n): number {\n const q = quality || 75\n if (!config?.qualities?.length) {\n return q\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n config.qualities[0]\n )\n}\n","import type { ImageLoaderPropsWithConfig } from './image-config'\nimport { findClosestQuality } from './find-closest-quality'\nimport { getDeploymentId } from './deployment-id'\n\nfunction defaultLoader({\n config,\n src,\n width,\n quality,\n}: ImageLoaderPropsWithConfig): string {\n if (process.env.NODE_ENV !== 'production') {\n const missingValues = []\n\n // these should always be provided but make sure they are\n if (!src) missingValues.push('src')\n if (!width) missingValues.push('width')\n\n if (missingValues.length > 0) {\n throw new Error(\n `Next Image Optimization requires ${missingValues.join(\n ', '\n )} to be provided. Make sure you pass them as props to the \\`next/image\\` component. Received: ${JSON.stringify(\n { src, width, quality }\n )}`\n )\n }\n }\n\n // Extract dpl parameter early so validation uses the clean URL.\n // If a immutable asset token should be used, it was already added as a query parameter and will\n // be extracted and reused here.\n let deploymentId = getDeploymentId()\n if (src.startsWith('/') && !src.startsWith('//')) {\n // We unfortunately can't easily use `new URL()` here, because it normalizes the URL which causes\n // double-encoding with the `encodeURIComponent(src)` below\n const qIndex = src.indexOf('?')\n if (qIndex !== -1) {\n const params = new URLSearchParams(src.slice(qIndex + 1))\n const srcDpl = params.get('dpl')\n if (srcDpl) {\n deploymentId = srcDpl\n params.delete('dpl')\n const remaining = params.toString()\n src = src.slice(0, qIndex) + (remaining ? '?' + remaining : '')\n }\n }\n }\n\n if (\n src.startsWith('/') &&\n src.includes('?') &&\n config.localPatterns?.length === 1 &&\n config.localPatterns[0].pathname === '**' &&\n config.localPatterns[0].search === ''\n ) {\n throw new Error(\n `Image with src \"${src}\" is using a query string which is not configured in images.localPatterns.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (src.startsWith('//')) {\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`\n )\n }\n\n if (src.startsWith('/') && config.localPatterns) {\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasLocalMatch } =\n require('./match-local-pattern') as typeof import('./match-local-pattern')\n if (!hasLocalMatch(config.localPatterns, src)) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\` does not match \\`images.localPatterns\\` configured in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n }\n }\n\n if (!src.startsWith('/') && (config.domains || config.remotePatterns)) {\n let parsedSrc: URL\n try {\n parsedSrc = new URL(src)\n } catch (err) {\n console.error(err)\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, if using relative image it must start with a leading slash \"/\" or be an absolute URL (http:// or https://)`\n )\n }\n\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasRemoteMatch } =\n require('./match-remote-pattern') as typeof import('./match-remote-pattern')\n if (\n !hasRemoteMatch(config.domains!, config.remotePatterns!, parsedSrc)\n ) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\`, hostname \"${parsedSrc.hostname}\" is not configured under images in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`\n )\n }\n }\n }\n }\n\n const q = findClosestQuality(quality, config)\n\n return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${\n src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''\n }`\n}\n\n// We use this to determine if the import is the default loader\n// or a custom loader defined by the user in next.config.js\ndefaultLoader.__next_img_default = true\n\nexport default defaultLoader\n","import type { ImageConfigComplete, ImageLoaderProps } from './image-config'\nimport type { ImageProps, ImageLoader, StaticImageData } from './get-img-props'\n\nimport { getImgProps } from './get-img-props'\nimport { Image } from '../../client/image-component'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\n\n/**\n * For more advanced use cases, you can call `getImageProps()`\n * to get the props that would be passed to the underlying `` element,\n * and instead pass to them to another component, style, canvas, etc.\n *\n * Read more: [Next.js docs: `getImageProps`](https://nextjs.org/docs/app/api-reference/components/image#getimageprops)\n */\nexport function getImageProps(imgProps: ImageProps) {\n const { props } = getImgProps(imgProps, {\n defaultLoader,\n // This is replaced by webpack define plugin\n imgConf: process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete,\n })\n // Normally we don't care about undefined props because we pass to JSX,\n // but this exported function could be used by the end user for anything\n // so we delete undefined props to clean it up a little.\n for (const [key, value] of Object.entries(props)) {\n if (value === undefined) {\n delete props[key as keyof typeof props]\n }\n }\n return { props }\n}\n\nexport default Image\n\nexport type { ImageProps, ImageLoaderProps, ImageLoader, StaticImageData }\n","module.exports = require('./dist/shared/lib/image-external')\n"],"names":["CountUp","Error","Magnetic","ParallaxSection","RevealText","ScaleReveal","ScrollReveal","ShimmerText","SlideReveal","StaggerChildren","Tilt3D","createClientModuleProxy","__turbopack_context__","n","LinkComponent","useLinkStatus","isModifiedEvent","event","eventTarget","currentTarget","target","getAttribute","metaKey","ctrlKey","shiftKey","altKey","nativeEvent","which","linkClicked","e","href","linkInstanceRef","replace","scroll","onNavigate","transitionTypes","window","nodeName","isAnchorNodeName","toUpperCase","hasAttribute","isLocalURL","preventDefault","location","isDefaultPrevented","dispatchNavigateAction","require","React","startTransition","ScrollBehavior","NoScroll","Default","current","formatStringOrUrl","urlObjOrString","formatUrl","props","linkStatus","setOptimisticLinkStatus","useOptimistic","IDLE_LINK_STATUS","children","useRef","hrefProp","as","asProp","childrenProp","prefetch","prefetchProp","passHref","shallow","onClick","onMouseEnter","onMouseEnterProp","onTouchStart","onTouchStartProp","legacyBehavior","ref","forwardedRef","unstable_dynamicOnHover","restProps","a","router","useContext","AppRouterContext","prefetchEnabled","fetchStrategy","getFetchStrategyFromPrefetchProp","FetchStrategy","PPR","process","env","NODE_ENV","createPropError","args","key","expected","actual","requiredPropsGuard","requiredProps","Object","keys","forEach","_","optionalPropsGuard","optionalProps","valType","Array","isArray","resolvedHref","formattedHref","locale","warnOnce","pathname","hasDynamicSegment","split","some","segment","startsWith","endsWith","child","$$typeof","Symbol","for","console","warn","Children","only","err","type","childRef","observeLinkVisibilityOnMount","useCallback","element","mountLinkInstance","unmountLinkForCurrentNavigation","unmountPrefetchableInstance","mergedRef","useMergedRef","childProps","defaultPrevented","upgradeToDynamicPrefetch","onNavigationIntent","__NEXT_LINK_NO_TOUCH_START","undefined","isAbsoluteUrl","addBasePath","link","errorOnce","cloneElement","LinkStatusContext","Provider","value","createContext","__NEXT_CACHE_COMPONENTS","Full","isLegacyBehavior","childIsHostComponent","childIsClientComponent","error","ClientLinkComponent","_interop_require_default","obj","__esModule","default","exports","warnings","Set","msg","has","add","getAssetToken","getAssetTokenQuery","getDeploymentId","getDeploymentIdQuery","deploymentId","document","documentElement","dataset","dplId","NEXT_DEPLOYMENT_ID","ampersand","id","NEXT_IMMUTABLE_ASSET_TOKEN","getImageBlurSvg","widthInt","heightInt","blurWidth","blurHeight","blurDataURL","objectFit","std","svgWidth","svgHeight","viewBox","preserveAspectRatio","VALID_LOADERS","imageConfigDefault","deviceSizes","imageSizes","path","loader","loaderFile","domains","disableStaticImages","minimumCacheTTL","formats","maximumDiskCacheSize","maximumRedirects","maximumResponseBody","dangerouslyAllowLocalIP","dangerouslyAllowSVG","contentSecurityPolicy","contentDispositionType","localPatterns","remotePatterns","qualities","unoptimized","customCacheHandler","getImgProps","VALID_LOADING_VALUES","INVALID_BACKGROUND_SIZE_VALUES","isStaticRequire","src","isStaticImageData","isStaticImport","allImgs","Map","perfObserver","getInt","x","Number","isFinite","NaN","test","parseInt","getWidths","allSizes","width","sizes","viewportWidthRe","percentSizes","match","exec","push","length","smallestRatio","Math","min","widths","filter","s","kind","map","w","find","p","generateImgAttrs","config","quality","qIndex","indexOf","params","URLSearchParams","slice","srcDpl","get","append","toString","srcSet","last","i","join","priority","preload","loading","className","height","fill","style","overrideSrc","onLoad","onLoadingComplete","placeholder","fetchPriority","decoding","layout","objectPosition","lazyBoundary","lazyRoot","rest","_state","imgConf","showAltText","blurComplete","defaultLoader","c","sort","b","isDefaultLoader","customImageLoader","opts","layoutToStyle","intrinsic","maxWidth","responsive","layoutToSizes","layoutStyle","layoutSizes","staticSrc","staticImageData","JSON","stringify","ratio","round","isLazy","qualityInt","output","position","isNaN","includes","String","VALID_BLUR_EXT","urlStr","url","URL","search","legacyKey","legacyValue","entries","PerformanceObserver","entryList","entry","getEntries","imgSrc","lcpImage","observe","buffered","imgStyle","assign","left","top","right","bottom","color","backgroundImage","backgroundSize","placeholderStyle","backgroundPosition","backgroundRepeat","imgAttributes","loadingFinal","fullUrl","set","meta","Image","configEnv","__NEXT_IMAGE_OPTS","globalThis","__NEXT_IMAGE_IMPORTED","handleLoading","img","onLoadRef","onLoadingCompleteRef","setBlurComplete","sizesInput","decode","Promise","resolve","catch","then","parentElement","isConnected","Event","defineProperty","writable","prevented","stopped","isPropagationStopped","persist","stopPropagation","origSrc","searchParams","widthViewportRatio","getBoundingClientRect","innerWidth","getComputedStyle","valid","heightModified","widthModified","getDynamicProps","Boolean","use","fetchpriority","ImageElement","forwardRef","setShowAltText","onError","ownRef","complete","data-nimg","ImagePreload","isAppRouter","imageSrcSet","crossOrigin","referrerPolicy","ReactDOM","Head","rel","pagesRouter","RouterContext","configContext","ImageConfigContext","useMemo","useEffect","useState","imgMeta","findClosestQuality","q","reduce","prev","cur","abs","missingValues","delete","remaining","NEXT_RUNTIME","hasLocalMatch","parsedSrc","hasRemoteMatch","hostname","encodeURIComponent","__next_img_default","getImageProps","imgProps","module"],"mappings":"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","ignoreList":[0,1,3,4,5,6,7,8,9,10,12,13,14,15]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_0zmlo4s._.js b/.next/server/chunks/ssr/_0zmlo4s._.js new file mode 100644 index 0000000..3041c8d --- /dev/null +++ b/.next/server/chunks/ssr/_0zmlo4s._.js @@ -0,0 +1,214 @@ +module.exports=[32245,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"BailoutToCSR",{enumerable:!0,get:function(){return e}});let d=a.r(41997);function e({reason:a,children:b}){throw Object.defineProperty(new d.BailoutToCSRError(a),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0})}},7773,(a,b,c)=>{"use strict";function d(a){return a.split("/").map(a=>encodeURIComponent(a)).join("/")}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"encodeURIPath",{enumerable:!0,get:function(){return d}})},97458,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"PreloadChunks",{enumerable:!0,get:function(){return i}});let d=a.r(87924),e=a.r(35112),f=a.r(56704),g=a.r(7773),h=a.r(68063);function i({moduleIds:a}){let b=f.workAsyncStorage.getStore();if(void 0===b)return null;let c=[];if(b.reactLoadableManifest&&a){let d=b.reactLoadableManifest;for(let b of a){if(!d[b])continue;let a=d[b].files;c.push(...a)}}if(0===c.length)return null;let j=(0,h.getAssetTokenQuery)();return(0,d.jsx)(d.Fragment,{children:c.map(a=>{let c=`${b.assetPrefix}/_next/${(0,g.encodeURIPath)(a)}${j}`;return a.endsWith(".css")?(0,d.jsx)("link",{precedence:"dynamic",href:c,rel:"stylesheet",as:"style",nonce:b.nonce},a):((0,e.preload)(c,{as:"script",fetchPriority:"low",nonce:b.nonce}),null)})})}},69853,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return j}});let d=a.r(87924),e=a.r(72131),f=a.r(32245),g=a.r(97458);function h(a){return{default:a&&"default"in a?a.default:a}}let i={loader:()=>Promise.resolve(h(()=>null)),loading:null,ssr:!0},j=function(a){let b={...i,...a},c=(0,e.lazy)(()=>b.loader().then(h)),j=b.loading;function k(a){let h=j?(0,d.jsx)(j,{isLoading:!0,pastDelay:!0,error:null}):null,i=!b.ssr||!!b.loading,k=i?e.Suspense:e.Fragment,l=b.ssr?(0,d.jsxs)(d.Fragment,{children:[(0,d.jsx)(g.PreloadChunks,{moduleIds:b.modules}),(0,d.jsx)(c,{...a})]}):(0,d.jsx)(f.BailoutToCSR,{reason:"next/dynamic",children:(0,d.jsx)(c,{...a})});return(0,d.jsx)(k,{...i?{fallback:h}:{},children:l})}return k.displayName="LoadableComponent",k}},19721,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return e}});let d=a.r(33354)._(a.r(69853));function e(a,b){let c={};"function"==typeof a&&(c.loader=a);let e={...c,...b};return(0,d.default)({...e,modules:e.loadableGenerated?.modules})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},690,a=>{"use strict";var b=a.i(87924),c=a.i(72131),d=a.i(35112);a.s(["default",0,function(){(0,d.preload)("/images/home2-banner-1.webp",{as:"image"});let[a,e]=(0,c.useState)(0);(0,c.useEffect)(()=>{let a=setInterval(()=>{e(a=>+(0===a))},7e3);return()=>clearInterval(a)},[]);let f=a=>{e(a)};return(0,b.jsxs)(b.Fragment,{children:[(0,b.jsx)("style",{dangerouslySetInnerHTML:{__html:` + .howits-hero-custom-bg.elementor-repeater-item-3264830, + .howits-hero-custom-bg.elementor-repeater-item-6867061 { + background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('/images/home2-banner-1.webp') !important; + background-position: center !important; + background-repeat: no-repeat !important; + background-size: cover !important; + } + + .howits-hero-custom-bg.elementor-repeater-item-6867061 { + background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('/images/home1-slide-2.webp') !important; + background-position: center !important; + background-repeat: no-repeat !important; + background-size: cover !important; + } + + /* Center alignments for standard content slider elements */ + .elementor-element.elementor-element-6c7cbcb .slide-content { + display: flex !important; + flex-direction: column !important; + justify-content: center !important; + align-items: center !important; + text-align: center !important; + width: 100% !important; + height: 100% !important; + padding: 0 !important; + box-sizing: border-box !important; + } + + .elementor-element.elementor-element-6c7cbcb .slide-content-inner { + display: flex !important; + flex-direction: column !important; + justify-content: center !important; + align-items: center !important; + text-align: center !important; + width: 100% !important; + max-width: 1000px !important; + margin: 0 auto !important; + /* site.css gives the inner content-box sizing + 20px padding, + which makes it 40px wider than its parent and overflows. + Force border-box so width:100% actually fits. */ + box-sizing: border-box !important; + } + + .elementor-element.elementor-element-6c7cbcb .content-slider-item-heading, + .elementor-element.elementor-element-6c7cbcb .content-slider-item-heading .heading-content { + text-align: center !important; + display: block !important; + width: 100% !important; + margin-left: auto !important; + margin-right: auto !important; + padding-left: 15px !important; + padding-right: 15px !important; + } + + .elementor-element.elementor-element-6c7cbcb .content-slider-item-text { + display: flex !important; + justify-content: center !important; + width: 100% !important; + margin-top: 23px !important; + } + + .elementor-element.elementor-element-6c7cbcb .text-content { + text-align: center !important; + max-width: 820px !important; + margin: 0 auto !important; + padding-left: 15px !important; + padding-right: 15px !important; + } + + /* Larger, more readable hero subtitle on large/4K screens */ + .elementor-element.elementor-element-6c7cbcb .content-slider-item-text p { + font-size: clamp(16px, 1.35vw, 23px) !important; + line-height: 1.65 !important; + } + + @media (min-width: 1025px) { + /* Match Home's hero frame so the floating navbar sits with the same + breathing space. Home (.elementor-61) frames the hero card at 20px; + this page falls through to the shared kit's 32px base. */ + .elementor-element.elementor-element-741f56c { + padding: 20px !important; + } + .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item { + height: 800px !important; + min-height: 800px !important; + } + } + + @media (max-width: 1024px) { + .elementor-element.elementor-element-741f56c { + width: 100% !important; + max-width: 100% !important; + margin-left: auto !important; + margin-right: auto !important; + --padding-top: 0px !important; + --padding-block-start: 0px !important; + padding: 0 10px 10px 10px !important; + overflow: hidden !important; + border-radius: 25px !important; + } + + /* Collapse the stage-outer to the slide height so no empty + black space is left below the hero card on mobile/tablet. */ + .elementor-element.elementor-element-6c7cbcb .owl-stage-outer { + height: 620px !important; + } + + .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item { + width: 100% !important; + min-height: 620px !important; + height: 620px !important; + border-radius: 25px !important; + overflow: hidden !important; + } + + .elementor-element.elementor-element-6c7cbcb .slide-content { + width: 100% !important; + min-height: 620px !important; + padding-left: 0 !important; + padding-right: 0 !important; + box-sizing: border-box !important; + } + } + + @media (max-width: 767px) { + .elementor-element.elementor-element-741f56c { + width: 100% !important; + max-width: 100% !important; + --padding-top: 0px !important; + --padding-block-start: 0px !important; + padding: 0 10px 10px 10px !important; + border-radius: 22px !important; + } + + .elementor-element.elementor-element-6c7cbcb .owl-stage-outer { + height: 560px !important; + } + + .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item { + min-height: 560px !important; + height: 560px !important; + border-radius: 22px !important; + } + + /* Center BOTH slides' content. Use the .elementor prefix + + repeater-item classes so these beat the per-slide rules in + site.css (slide 1 has no centering there; slide 2 carries an + asymmetric top margin). */ + .elementor .elementor-element.elementor-element-6c7cbcb .slide-content { + min-height: 560px !important; + padding-left: 0 !important; + padding-right: 0 !important; + align-items: center !important; + justify-content: center !important; + text-align: center !important; + } + + .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner, + .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { + margin: 0 auto !important; + width: 100% !important; + max-width: 100% !important; + padding-left: 0 !important; + padding-right: 0 !important; + box-sizing: border-box !important; + align-items: center !important; + text-align: center !important; + } + + .elementor .elementor-element.elementor-element-6c7cbcb .content-slider-item-heading, + .elementor .elementor-element.elementor-element-6c7cbcb .content-slider-item-text, + .elementor .elementor-element.elementor-element-6c7cbcb .text-content { + text-align: center !important; + margin-left: auto !important; + margin-right: auto !important; + } + + /* Smaller, fitting heading so it never overflows the card edge. + site.css forced clamp(38px,11vw,48px) which clipped at 320px. */ + .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading, + .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { + max-width: 100% !important; + font-size: clamp(26px, 8vw, 34px) !important; + line-height: 1.12 !important; + overflow-wrap: break-word !important; + } + + /* Slide counter ("01/02"): keep it bottom-RIGHT, aligned with the + hero text padding (22px) and lifted cleanly off the edge. */ + .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer { + text-align: right !important; + margin-bottom: 24px !important; + } + .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer .slider-pagination { + justify-content: flex-end !important; + margin-left: 22px !important; + margin-right: 22px !important; + } + /* The wide dot navigation eats the right side and shoves "01/02" to + the centre. Hide it on mobile (matching the home hero) so the + counter sits cleanly on the right. */ + .elementor .elementor-element.elementor-element-6c7cbcb .owl-dots { + display: none !important; + } + /* Hide the prev/next arrows on mobile (they overlap the counter) — + slides still auto-rotate, matching the home hero. */ + .elementor .elementor-element.elementor-element-6c7cbcb .owl-nav { + display: none !important; + } + } + `}}),(0,b.jsx)("div",{className:"elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:(0,b.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,b.jsx)("div",{className:"elementor-widget-container",children:(0,b.jsx)("div",{className:"logico-content-slider-widget",children:(0,b.jsx)("div",{className:"content-slider-wrapper",children:(0,b.jsx)("div",{className:"content-slider-container",children:(0,b.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",children:[(0,b.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden",height:"800px"},children:(0,b.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,b.jsx)("div",{className:`owl-item ${0===a?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===a),visibility:0===a?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===a?2:1},children:(0,b.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard howits-hero-custom-bg",children:(0,b.jsx)("div",{className:"slide-content",children:(0,b.jsxs)("div",{className:"slide-content-inner",children:[(0,b.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,b.jsxs)("span",{className:"heading-content",children:["One Journey. Complete",(0,b.jsx)("br",{}),"Control."]})}),(0,b.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,b.jsx)("div",{className:"text-content",children:(0,b.jsx)("p",{children:"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."})})})]})})})}),(0,b.jsx)("div",{className:`owl-item ${1===a?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===a),visibility:1===a?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===a?2:1},children:(0,b.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard howits-hero-custom-bg",children:(0,b.jsx)("div",{className:"slide-content",children:(0,b.jsxs)("div",{className:"slide-content-inner",children:[(0,b.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,b.jsxs)("span",{className:"heading-content",children:["A New Logisitics",(0,b.jsx)("br",{}),"Experience"]})}),(0,b.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,b.jsx)("div",{className:"text-content",children:(0,b.jsx)("p",{children:"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."})})})]})})})})]})}),(0,b.jsxs)("div",{className:"owl-nav",children:[(0,b.jsx)("button",{type:"button",className:"owl-next",onClick:()=>e(a=>+(0===a)),"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,b.jsx)("button",{type:"button",className:"owl-prev",onClick:()=>e(a=>+(0===a)),"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,b.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,b.jsx)("div",{className:"slider-footer-content",children:(0,b.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center",gap:"10px"},children:[(0,b.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,b.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,b.jsx)("span",{className:"slider-progress-current",children:0===a?"01":"02"})," / ",(0,b.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,b.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,b.jsx)("div",{style:{position:"absolute",left:0===a?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,b.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,b.jsx)("button",{type:"button",role:"button",className:`owl-dot ${0===a?"active":""}`,onClick:()=>f(0),children:(0,b.jsx)("span",{})}),(0,b.jsx)("button",{type:"button",role:"button",className:`owl-dot ${1===a?"active":""}`,onClick:()=>f(1),children:(0,b.jsx)("span",{})})]})]})})})]})})})})})})})]})}])},27800,a=>{"use strict";var b=a.i(87924);let c=(0,a.i(19721).default)(async()=>{},{loadableGenerated:{modules:[88493]},ssr:!1,loading:()=>(0,b.jsx)("div",{style:{minHeight:"100vh"},"aria-hidden":!0})});a.s(["default",0,function(){return(0,b.jsx)(c,{})}])}]; + +//# sourceMappingURL=_0zmlo4s._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_0zmlo4s._.js.map b/.next/server/chunks/ssr/_0zmlo4s._.js.map new file mode 100644 index 0000000..68b0aa7 --- /dev/null +++ b/.next/server/chunks/ssr/_0zmlo4s._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/shared/lib/lazy-dynamic/dynamic-bailout-to-csr.tsx","../../../../node_modules/next/src/shared/lib/encode-uri-path.ts","../../../../node_modules/next/src/shared/lib/lazy-dynamic/preload-chunks.tsx","../../../../node_modules/next/src/shared/lib/lazy-dynamic/loadable.tsx","../../../../node_modules/next/src/shared/lib/app-dynamic.tsx","../../../../src/components/sections/HowItWorksHero.tsx","../../../../src/modules/how-it-works-3d/Experience3DLoader.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactElement } from 'react'\nimport { BailoutToCSRError } from './bailout-to-csr'\n\ninterface BailoutToCSRProps {\n reason: string\n children: ReactElement\n}\n\n/**\n * If rendered on the server, this component throws an error\n * to signal Next.js that it should bail out to client-side rendering instead.\n */\nexport function BailoutToCSR({ reason, children }: BailoutToCSRProps) {\n if (typeof window === 'undefined') {\n throw new BailoutToCSRError(reason)\n }\n\n return children\n}\n","export function encodeURIPath(file: string) {\n return file\n .split('/')\n .map((p) => encodeURIComponent(p))\n .join('/')\n}\n","'use client'\n\nimport { preload } from 'react-dom'\n\nimport { workAsyncStorage } from '../../../server/app-render/work-async-storage.external'\nimport { encodeURIPath } from '../encode-uri-path'\nimport { getAssetTokenQuery } from '../deployment-id'\n\nexport function PreloadChunks({\n moduleIds,\n}: {\n moduleIds: string[] | undefined\n}) {\n // Early return in client compilation and only load requestStore on server side\n if (typeof window !== 'undefined') {\n return null\n }\n\n const workStore = workAsyncStorage.getStore()\n if (workStore === undefined) {\n return null\n }\n\n const allFiles = []\n\n // Search the current dynamic call unique key id in react loadable manifest,\n // and find the corresponding CSS files to preload\n if (workStore.reactLoadableManifest && moduleIds) {\n const manifest = workStore.reactLoadableManifest\n for (const key of moduleIds) {\n if (!manifest[key]) continue\n const chunks = manifest[key].files\n allFiles.push(...chunks)\n }\n }\n\n if (allFiles.length === 0) {\n return null\n }\n\n const query = getAssetTokenQuery()\n\n return (\n <>\n {allFiles.map((chunk) => {\n const href = `${workStore.assetPrefix}/_next/${encodeURIPath(chunk)}${query}`\n const isCss = chunk.endsWith('.css')\n // If it's stylesheet we use `precedence` o help hoist with React Float.\n // For stylesheets we actually need to render the CSS because nothing else is going to do it so it needs to be part of the component tree.\n // The `preload` for stylesheet is not optional.\n if (isCss) {\n return (\n \n )\n } else {\n // If it's script we use ReactDOM.preload to preload the resources\n preload(href, {\n as: 'script',\n fetchPriority: 'low',\n nonce: workStore.nonce,\n })\n return null\n }\n })}\n \n )\n}\n","import { Suspense, Fragment, lazy } from 'react'\nimport { BailoutToCSR } from './dynamic-bailout-to-csr'\nimport type { ComponentModule } from './types'\nimport { PreloadChunks } from './preload-chunks'\n\n// Normalize loader to return the module as form { default: Component } for `React.lazy`.\n// Also for backward compatible since next/dynamic allows to resolve a component directly with loader\n// Client component reference proxy need to be converted to a module.\nfunction convertModule

(\n mod: React.ComponentType

| ComponentModule

| undefined\n): {\n default: React.ComponentType

\n} {\n // Check \"default\" prop before accessing it, as it could be client reference proxy that could break it reference.\n // Cases:\n // mod: { default: Component }\n // mod: Component\n // mod: { default: proxy(Component) }\n // mod: proxy(Component)\n const hasDefault = mod && 'default' in mod\n return {\n default: hasDefault\n ? (mod as ComponentModule

).default\n : (mod as React.ComponentType

),\n }\n}\n\nconst defaultOptions = {\n loader: () => Promise.resolve(convertModule(() => null)),\n loading: null,\n ssr: true,\n}\n\ninterface LoadableOptions {\n loader?: () => Promise | ComponentModule>\n loading?: React.ComponentType | null\n ssr?: boolean\n modules?: string[]\n}\n\nfunction Loadable(options: LoadableOptions) {\n const opts = { ...defaultOptions, ...options }\n const Lazy = lazy(() => opts.loader().then(convertModule))\n const Loading = opts.loading\n\n function LoadableComponent(props: any) {\n const fallbackElement = Loading ? (\n \n ) : null\n\n // If it's non-SSR or provided a loading component, wrap it in a suspense boundary\n const hasSuspenseBoundary = !opts.ssr || !!opts.loading\n const Wrap = hasSuspenseBoundary ? Suspense : Fragment\n const wrapProps = hasSuspenseBoundary ? { fallback: fallbackElement } : {}\n const children = opts.ssr ? (\n <>\n {/* During SSR, we need to preload the CSS from the dynamic component to avoid flash of unstyled content */}\n {typeof window === 'undefined' ? (\n \n ) : null}\n \n \n ) : (\n \n \n \n )\n\n return {children}\n }\n\n LoadableComponent.displayName = 'LoadableComponent'\n\n return LoadableComponent\n}\n\nexport default Loadable\n","import type React from 'react'\nimport type { JSX } from 'react'\nimport Loadable from './lazy-dynamic/loadable'\n\nimport type {\n LoadableGeneratedOptions,\n DynamicOptionsLoadingProps,\n Loader,\n LoaderComponent,\n} from './lazy-dynamic/types'\n\nexport {\n type LoadableGeneratedOptions,\n type DynamicOptionsLoadingProps,\n type Loader,\n type LoaderComponent,\n}\n\nexport type DynamicOptions

= LoadableGeneratedOptions & {\n loading?: () => JSX.Element | null\n loader?: Loader

\n loadableGenerated?: LoadableGeneratedOptions\n modules?: string[]\n ssr?: boolean\n}\n\nexport type LoadableOptions

= DynamicOptions

\n\nexport type LoadableFn

= (\n opts: LoadableOptions

\n) => React.ComponentType

\n\nexport type LoadableComponent

= React.ComponentType

\n\nexport default function dynamic

(\n dynamicOptions: DynamicOptions

| Loader

,\n options?: DynamicOptions

\n): React.ComponentType

{\n const loadableOptions: LoadableOptions

= {}\n\n if (typeof dynamicOptions === 'function') {\n loadableOptions.loader = dynamicOptions\n }\n\n const mergedOptions = {\n ...loadableOptions,\n ...options,\n }\n\n return Loadable({\n ...mergedOptions,\n modules: mergedOptions.loadableGenerated?.modules,\n })\n}\n","\"use client\";\n\nimport React, { useState, useEffect } from \"react\";\nimport { preload } from \"react-dom\";\n\nexport default function HowItWorksHero() {\n preload(\"/images/home2-banner-1.webp\", { as: \"image\" });\n const [activeSlide, setActiveSlide] = useState(0);\n\n // Auto-slide every 7 seconds — slower, more readable, professional pacing\n useEffect(() => {\n const interval = setInterval(() => {\n setActiveSlide((prev) => (prev === 0 ? 1 : 0));\n }, 7000);\n return () => clearInterval(interval);\n }, []);\n\n const handleDotClick = (index: number) => {\n setActiveSlide(index);\n };\n\n return (\n <>\n \n

\n
\n
\n
\n
\n \n \n {/* Slide 1 */}\n \n
\n
\n
\n

\n \n One Journey. Complete\n
\n Control.\n
\n

\n
\n
\n

\n See how Doormile connects first, mid, and\n last mile into a seamless delivery\n experience powered by MileTruth™ AI.\n

\n
\n
\n
\n
\n
\n
\n\n {/* Slide 2 */}\n \n
\n
\n
\n

\n \n A New Logisitics\n
\n Experience\n
\n

\n
\n
\n

\n See how Doormile connects first, mid, and\n last mile into a seamless delivery\n experience powered by MileTruth™ AI.\n

\n
\n
\n
\n
\n
\n
\n
\n
\n\n {/* Navigation controls (prev/next) — matches the home hero slider */}\n
\n \n setActiveSlide((prev) => (prev === 0 ? 1 : 0))\n }\n aria-label=\"Next\"\n style={{\n cursor: \"pointer\",\n border: \"none\",\n outline: \"none\",\n }}\n />\n \n setActiveSlide((prev) => (prev === 0 ? 1 : 0))\n }\n aria-label=\"Previous\"\n style={{\n cursor: \"pointer\",\n border: \"none\",\n outline: \"none\",\n }}\n />\n
\n\n {/* Progress indicators */}\n
\n
\n \n \n \n \n {activeSlide === 0 ? \"01\" : \"02\"}\n \n {\" / \"}\n \n 02\n \n
\n {/* Progress line — red bar slides to match the active slide (mirrors the home hero) */}\n \n \n
\n
\n \n handleDotClick(0)}\n >\n \n \n handleDotClick(1)}\n >\n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n );\n}\n","\"use client\";\n\nimport dynamic from \"next/dynamic\";\n\n/**\n * Client-only loader for the 3D How It Works experience.\n *\n * `ssr: false` is required: the experience uses React Three Fiber, a Zustand\n * store, Lenis, and `window`/`AudioContext` — all client-only. The 100vh\n * placeholder reserves space so the page doesn't jump while the (large) GLB\n * scene and WebGL bundle load.\n */\nconst Experience3D = dynamic(() => import(\"./Experience3D\"), {\n ssr: false,\n loading: () =>
,\n});\n\nexport default function Experience3DLoader() {\n return ;\n}\n"],"names":["BailoutToCSR","reason","children","window","BailoutToCSRError","encodeURIPath","file","split","map","p","encodeURIComponent","join","PreloadChunks","moduleIds","workStore","workAsyncStorage","getStore","undefined","allFiles","reactLoadableManifest","manifest","key","chunks","files","push","length","query","getAssetTokenQuery","chunk","href","assetPrefix","isCss","endsWith","link","precedence","rel","as","nonce","preload","fetchPriority","convertModule","mod","hasDefault","default","defaultOptions","loader","Promise","resolve","loading","ssr","Loadable","options","opts","Lazy","lazy","then","Loading","LoadableComponent","props","fallbackElement","isLoading","pastDelay","error","hasSuspenseBoundary","Wrap","Suspense","Fragment","wrapProps","fallback","modules","displayName","dynamic","dynamicOptions","loadableOptions","mergedOptions","loadableGenerated","HowItWorksHero","activeSlide","setActiveSlide","interval","setInterval","prev","clearInterval","handleDotClick","index","dangerouslySetInnerHTML","__html","className","style","position","overflow","height","width","opacity","visibility","transition","zIndex","top","left","type","onClick","cursor","border","outline","display","justifyContent","alignItems","gap","marginRight","flexDirection","fontSize","fontWeight","color","marginBottom","background","borderRadius","role","Experience3D","minHeight","Experience3DLoader"],"mappings":"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","ignoreList":[0,1,2,3,4]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_12x1.3y._.js b/.next/server/chunks/ssr/_12x1.3y._.js new file mode 100644 index 0000000..9a8aabb --- /dev/null +++ b/.next/server/chunks/ssr/_12x1.3y._.js @@ -0,0 +1,3 @@ +module.exports=[32245,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"BailoutToCSR",{enumerable:!0,get:function(){return e}});let d=a.r(41997);function e({reason:a,children:b}){throw Object.defineProperty(new d.BailoutToCSRError(a),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0})}},7773,(a,b,c)=>{"use strict";function d(a){return a.split("/").map(a=>encodeURIComponent(a)).join("/")}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"encodeURIPath",{enumerable:!0,get:function(){return d}})},97458,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"PreloadChunks",{enumerable:!0,get:function(){return i}});let d=a.r(87924),e=a.r(35112),f=a.r(56704),g=a.r(7773),h=a.r(68063);function i({moduleIds:a}){let b=f.workAsyncStorage.getStore();if(void 0===b)return null;let c=[];if(b.reactLoadableManifest&&a){let d=b.reactLoadableManifest;for(let b of a){if(!d[b])continue;let a=d[b].files;c.push(...a)}}if(0===c.length)return null;let j=(0,h.getAssetTokenQuery)();return(0,d.jsx)(d.Fragment,{children:c.map(a=>{let c=`${b.assetPrefix}/_next/${(0,g.encodeURIPath)(a)}${j}`;return a.endsWith(".css")?(0,d.jsx)("link",{precedence:"dynamic",href:c,rel:"stylesheet",as:"style",nonce:b.nonce},a):((0,e.preload)(c,{as:"script",fetchPriority:"low",nonce:b.nonce}),null)})})}},69853,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return j}});let d=a.r(87924),e=a.r(72131),f=a.r(32245),g=a.r(97458);function h(a){return{default:a&&"default"in a?a.default:a}}let i={loader:()=>Promise.resolve(h(()=>null)),loading:null,ssr:!0},j=function(a){let b={...i,...a},c=(0,e.lazy)(()=>b.loader().then(h)),j=b.loading;function k(a){let h=j?(0,d.jsx)(j,{isLoading:!0,pastDelay:!0,error:null}):null,i=!b.ssr||!!b.loading,k=i?e.Suspense:e.Fragment,l=b.ssr?(0,d.jsxs)(d.Fragment,{children:[(0,d.jsx)(g.PreloadChunks,{moduleIds:b.modules}),(0,d.jsx)(c,{...a})]}):(0,d.jsx)(f.BailoutToCSR,{reason:"next/dynamic",children:(0,d.jsx)(c,{...a})});return(0,d.jsx)(k,{...i?{fallback:h}:{},children:l})}return k.displayName="LoadableComponent",k}},19721,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return e}});let d=a.r(33354)._(a.r(69853));function e(a,b){let c={};"function"==typeof a&&(c.loader=a);let e={...c,...b};return(0,d.default)({...e,modules:e.loadableGenerated?.modules})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},60003,a=>{a.v({addressLine:"OfficeMap-module__ToIo3G__addressLine",card:"OfficeMap-module__ToIo3G__card",cardBody:"OfficeMap-module__ToIo3G__cardBody",cardHeader:"OfficeMap-module__ToIo3G__cardHeader",cardIcon:"OfficeMap-module__ToIo3G__cardIcon",cardTitle:"OfficeMap-module__ToIo3G__cardTitle",controlBtn:"OfficeMap-module__ToIo3G__controlBtn",controlBtnActive:"OfficeMap-module__ToIo3G__controlBtnActive",controlBtnHq:"OfficeMap-module__ToIo3G__controlBtnHq",controls:"OfficeMap-module__ToIo3G__controls",errorList:"OfficeMap-module__ToIo3G__errorList",errorOverlay:"OfficeMap-module__ToIo3G__errorOverlay",errorText:"OfficeMap-module__ToIo3G__errorText",errorTitle:"OfficeMap-module__ToIo3G__errorTitle",hqPulse:"OfficeMap-module__ToIo3G__hqPulse",map:"OfficeMap-module__ToIo3G__map",mapMountReserve:"OfficeMap-module__ToIo3G__mapMountReserve",markerIcon:"OfficeMap-module__ToIo3G__markerIcon",markerIconHq:"OfficeMap-module__ToIo3G__markerIconHq",pinPulse:"OfficeMap-module__ToIo3G__pinPulse",popupFade:"OfficeMap-module__ToIo3G__popupFade",popupScale:"OfficeMap-module__ToIo3G__popupScale",root:"OfficeMap-module__ToIo3G__root",srOnly:"OfficeMap-module__ToIo3G__srOnly"})},40408,a=>{"use strict";var b=a.i(87924),c=a.i(19721),d=a.i(60003);let e=(0,c.default)(async()=>{},{loadableGenerated:{modules:[42391]},ssr:!1,loading:()=>(0,b.jsx)("div",{className:d.default.mapMountReserve,role:"presentation","aria-hidden":"true"})});a.s(["default",0,function(){return(0,b.jsx)(e,{})}])}]; + +//# sourceMappingURL=_12x1.3y._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_12x1.3y._.js.map b/.next/server/chunks/ssr/_12x1.3y._.js.map new file mode 100644 index 0000000..3d56111 --- /dev/null +++ b/.next/server/chunks/ssr/_12x1.3y._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/shared/lib/lazy-dynamic/dynamic-bailout-to-csr.tsx","../../../../node_modules/next/src/shared/lib/encode-uri-path.ts","../../../../node_modules/next/src/shared/lib/lazy-dynamic/preload-chunks.tsx","../../../../node_modules/next/src/shared/lib/lazy-dynamic/loadable.tsx","../../../../node_modules/next/src/shared/lib/app-dynamic.tsx","turbopack:///[project]/src/components/map/OfficeMap.module.css [app-ssr] (css module)","../../../../src/components/map/ContactMapEmbed.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactElement } from 'react'\nimport { BailoutToCSRError } from './bailout-to-csr'\n\ninterface BailoutToCSRProps {\n reason: string\n children: ReactElement\n}\n\n/**\n * If rendered on the server, this component throws an error\n * to signal Next.js that it should bail out to client-side rendering instead.\n */\nexport function BailoutToCSR({ reason, children }: BailoutToCSRProps) {\n if (typeof window === 'undefined') {\n throw new BailoutToCSRError(reason)\n }\n\n return children\n}\n","export function encodeURIPath(file: string) {\n return file\n .split('/')\n .map((p) => encodeURIComponent(p))\n .join('/')\n}\n","'use client'\n\nimport { preload } from 'react-dom'\n\nimport { workAsyncStorage } from '../../../server/app-render/work-async-storage.external'\nimport { encodeURIPath } from '../encode-uri-path'\nimport { getAssetTokenQuery } from '../deployment-id'\n\nexport function PreloadChunks({\n moduleIds,\n}: {\n moduleIds: string[] | undefined\n}) {\n // Early return in client compilation and only load requestStore on server side\n if (typeof window !== 'undefined') {\n return null\n }\n\n const workStore = workAsyncStorage.getStore()\n if (workStore === undefined) {\n return null\n }\n\n const allFiles = []\n\n // Search the current dynamic call unique key id in react loadable manifest,\n // and find the corresponding CSS files to preload\n if (workStore.reactLoadableManifest && moduleIds) {\n const manifest = workStore.reactLoadableManifest\n for (const key of moduleIds) {\n if (!manifest[key]) continue\n const chunks = manifest[key].files\n allFiles.push(...chunks)\n }\n }\n\n if (allFiles.length === 0) {\n return null\n }\n\n const query = getAssetTokenQuery()\n\n return (\n <>\n {allFiles.map((chunk) => {\n const href = `${workStore.assetPrefix}/_next/${encodeURIPath(chunk)}${query}`\n const isCss = chunk.endsWith('.css')\n // If it's stylesheet we use `precedence` o help hoist with React Float.\n // For stylesheets we actually need to render the CSS because nothing else is going to do it so it needs to be part of the component tree.\n // The `preload` for stylesheet is not optional.\n if (isCss) {\n return (\n \n )\n } else {\n // If it's script we use ReactDOM.preload to preload the resources\n preload(href, {\n as: 'script',\n fetchPriority: 'low',\n nonce: workStore.nonce,\n })\n return null\n }\n })}\n \n )\n}\n","import { Suspense, Fragment, lazy } from 'react'\nimport { BailoutToCSR } from './dynamic-bailout-to-csr'\nimport type { ComponentModule } from './types'\nimport { PreloadChunks } from './preload-chunks'\n\n// Normalize loader to return the module as form { default: Component } for `React.lazy`.\n// Also for backward compatible since next/dynamic allows to resolve a component directly with loader\n// Client component reference proxy need to be converted to a module.\nfunction convertModule

(\n mod: React.ComponentType

| ComponentModule

| undefined\n): {\n default: React.ComponentType

\n} {\n // Check \"default\" prop before accessing it, as it could be client reference proxy that could break it reference.\n // Cases:\n // mod: { default: Component }\n // mod: Component\n // mod: { default: proxy(Component) }\n // mod: proxy(Component)\n const hasDefault = mod && 'default' in mod\n return {\n default: hasDefault\n ? (mod as ComponentModule

).default\n : (mod as React.ComponentType

),\n }\n}\n\nconst defaultOptions = {\n loader: () => Promise.resolve(convertModule(() => null)),\n loading: null,\n ssr: true,\n}\n\ninterface LoadableOptions {\n loader?: () => Promise | ComponentModule>\n loading?: React.ComponentType | null\n ssr?: boolean\n modules?: string[]\n}\n\nfunction Loadable(options: LoadableOptions) {\n const opts = { ...defaultOptions, ...options }\n const Lazy = lazy(() => opts.loader().then(convertModule))\n const Loading = opts.loading\n\n function LoadableComponent(props: any) {\n const fallbackElement = Loading ? (\n \n ) : null\n\n // If it's non-SSR or provided a loading component, wrap it in a suspense boundary\n const hasSuspenseBoundary = !opts.ssr || !!opts.loading\n const Wrap = hasSuspenseBoundary ? Suspense : Fragment\n const wrapProps = hasSuspenseBoundary ? { fallback: fallbackElement } : {}\n const children = opts.ssr ? (\n <>\n {/* During SSR, we need to preload the CSS from the dynamic component to avoid flash of unstyled content */}\n {typeof window === 'undefined' ? (\n \n ) : null}\n \n \n ) : (\n \n \n \n )\n\n return {children}\n }\n\n LoadableComponent.displayName = 'LoadableComponent'\n\n return LoadableComponent\n}\n\nexport default Loadable\n","import type React from 'react'\nimport type { JSX } from 'react'\nimport Loadable from './lazy-dynamic/loadable'\n\nimport type {\n LoadableGeneratedOptions,\n DynamicOptionsLoadingProps,\n Loader,\n LoaderComponent,\n} from './lazy-dynamic/types'\n\nexport {\n type LoadableGeneratedOptions,\n type DynamicOptionsLoadingProps,\n type Loader,\n type LoaderComponent,\n}\n\nexport type DynamicOptions

= LoadableGeneratedOptions & {\n loading?: () => JSX.Element | null\n loader?: Loader

\n loadableGenerated?: LoadableGeneratedOptions\n modules?: string[]\n ssr?: boolean\n}\n\nexport type LoadableOptions

= DynamicOptions

\n\nexport type LoadableFn

= (\n opts: LoadableOptions

\n) => React.ComponentType

\n\nexport type LoadableComponent

= React.ComponentType

\n\nexport default function dynamic

(\n dynamicOptions: DynamicOptions

| Loader

,\n options?: DynamicOptions

\n): React.ComponentType

{\n const loadableOptions: LoadableOptions

= {}\n\n if (typeof dynamicOptions === 'function') {\n loadableOptions.loader = dynamicOptions\n }\n\n const mergedOptions = {\n ...loadableOptions,\n ...options,\n }\n\n return Loadable({\n ...mergedOptions,\n modules: mergedOptions.loadableGenerated?.modules,\n })\n}\n","__turbopack_context__.v({\n \"addressLine\": \"OfficeMap-module__ToIo3G__addressLine\",\n \"card\": \"OfficeMap-module__ToIo3G__card\",\n \"cardBody\": \"OfficeMap-module__ToIo3G__cardBody\",\n \"cardHeader\": \"OfficeMap-module__ToIo3G__cardHeader\",\n \"cardIcon\": \"OfficeMap-module__ToIo3G__cardIcon\",\n \"cardTitle\": \"OfficeMap-module__ToIo3G__cardTitle\",\n \"controlBtn\": \"OfficeMap-module__ToIo3G__controlBtn\",\n \"controlBtnActive\": \"OfficeMap-module__ToIo3G__controlBtnActive\",\n \"controlBtnHq\": \"OfficeMap-module__ToIo3G__controlBtnHq\",\n \"controls\": \"OfficeMap-module__ToIo3G__controls\",\n \"errorList\": \"OfficeMap-module__ToIo3G__errorList\",\n \"errorOverlay\": \"OfficeMap-module__ToIo3G__errorOverlay\",\n \"errorText\": \"OfficeMap-module__ToIo3G__errorText\",\n \"errorTitle\": \"OfficeMap-module__ToIo3G__errorTitle\",\n \"hqPulse\": \"OfficeMap-module__ToIo3G__hqPulse\",\n \"map\": \"OfficeMap-module__ToIo3G__map\",\n \"mapMountReserve\": \"OfficeMap-module__ToIo3G__mapMountReserve\",\n \"markerIcon\": \"OfficeMap-module__ToIo3G__markerIcon\",\n \"markerIconHq\": \"OfficeMap-module__ToIo3G__markerIconHq\",\n \"pinPulse\": \"OfficeMap-module__ToIo3G__pinPulse\",\n \"popupFade\": \"OfficeMap-module__ToIo3G__popupFade\",\n \"popupScale\": \"OfficeMap-module__ToIo3G__popupScale\",\n \"root\": \"OfficeMap-module__ToIo3G__root\",\n \"srOnly\": \"OfficeMap-module__ToIo3G__srOnly\",\n});\n","\"use client\";\n\n/**\n * ContactMapEmbed\n * ---------------------------------------------------------------------------\n * Client boundary that lazy-loads the Leaflet map. `ssr: false` keeps Leaflet\n * out of the server bundle and off the critical render path. The host container\n * already owns the fixed height, so the loading state stays invisible before\n * the interactive map is ready.\n */\n\nimport dynamic from \"next/dynamic\";\nimport styles from \"./OfficeMap.module.css\";\n\nconst OfficeMap = dynamic(() => import(\"./OfficeMap\"), {\n ssr: false,\n loading: () =>

,\n});\n\nexport default function ContactMapEmbed() {\n return ;\n}\n"],"names":["BailoutToCSR","reason","children","window","BailoutToCSRError","encodeURIPath","file","split","map","p","encodeURIComponent","join","PreloadChunks","moduleIds","workStore","workAsyncStorage","getStore","undefined","allFiles","reactLoadableManifest","manifest","key","chunks","files","push","length","query","getAssetTokenQuery","chunk","href","assetPrefix","isCss","endsWith","link","precedence","rel","as","nonce","preload","fetchPriority","convertModule","mod","hasDefault","default","defaultOptions","loader","Promise","resolve","loading","ssr","Loadable","options","opts","Lazy","lazy","then","Loading","LoadableComponent","props","fallbackElement","isLoading","pastDelay","error","hasSuspenseBoundary","Wrap","Suspense","Fragment","wrapProps","fallback","modules","displayName","dynamic","dynamicOptions","loadableOptions","mergedOptions","loadableGenerated","OfficeMap","className","mapMountReserve","role","ContactMapEmbed"],"mappings":"sHAcgBA,eAAAA,qCAAAA,aAXkB,CAAA,CAAA,IAAA,GAW3B,SAASA,EAAa,CAAEC,QAAM,UAAEC,CAAQ,CAAqB,EAEhE,MAAM,OAAA,cAA6B,CAA7B,IAAIE,EAAAA,iBAAiB,CAACH,GAAtB,oBAAA,OAAA,mBAAA,eAAA,EAA4B,EAItC,+BCpBO,SAASI,EAAcC,CAAY,EACxC,OAAOA,EACJC,KAAK,CAAC,KACNC,GAAG,CAAC,AAACC,GAAMC,mBAAmBD,IAC9BE,IAAI,CAAC,IACV,0EALgBN,gBAAAA,qCAAAA,4GCQAO,gBAAAA,qCAAAA,0BANQ,CAAA,CAAA,IAAA,OAES,CAAA,CAAA,IAAA,OACH,CAAA,CAAA,IAAA,MACK,CAAA,CAAA,IAAA,GAE5B,SAASA,EAAc,WAC5BC,CAAS,CAGV,EAMC,IAAMC,EAAYC,EAAAA,gBAAgB,CAACC,QAAQ,GAC3C,GAAkBC,SAAdH,EAAyB,AAC3B,OAAO,KAGT,IAAMI,EAAW,EAAE,CAInB,GAAIJ,EAAUK,qBAAqB,EAAIN,EAAW,CAChD,IAAMO,EAAWN,EAAUK,qBAAqB,CAChD,IAAK,IAAME,KAAOR,EAAW,CAC3B,GAAI,CAACO,CAAQ,CAACC,EAAI,CAAE,SACpB,IAAMC,EAASF,CAAQ,CAACC,EAAI,CAACE,KAAK,CAClCL,EAASM,IAAI,IAAIF,EACnB,CACF,CAEA,GAAwB,GAAG,CAAvBJ,EAASO,MAAM,CACjB,OAAO,KAGT,IAAMC,EAAQC,GAAAA,EAAAA,kBAAAA,AAAkB,IAEhC,MACE,CADF,AACE,EAAA,EAAA,GAAA,EAAA,EADF,AACE,QAAA,CAAA,UACGT,EAASV,GAAG,CAAC,AAACoB,IACb,IAAMC,EAAO,CAAA,EAAGf,EAAUgB,WAAW,CAAC,OAAO,EAAEzB,CAAAA,EAAAA,EAAAA,aAAAA,AAAa,EAACuB,GAAAA,EAASF,EAAAA,CAAO,QAC/DE,AAId,EAJoBI,EAIhBD,MAJwB,CAAC,AAIlB,QAEP,GAAA,EAAA,GAAA,EAACE,OAAAA,CAGCC,WAAW,UACXL,KAAMA,EACNM,IAAI,aACJC,GAAG,QACHC,MAAOvB,EAAUuB,KAAK,EANjBT,IAWTU,GAAAA,EAAAA,OAAAA,AAAO,EAACT,EAAM,CACZO,GAAI,SACJG,cAAe,MACfF,MAAOvB,EAAUuB,KAAK,AACxB,GACO,KAEX,IAGN,yGCEA,UAAA,qCAAA,0BA5EyC,CAAA,CAAA,IAAA,OACZ,CAAA,CAAA,IAAA,OAEC,CAAA,CAAA,IAAA,GAK9B,SAASG,EACPC,CAA4D,EAW5D,MAAO,CACLE,QAFiBF,AAERC,GAFe,YAAaD,EAGhCA,EAA2BE,OAAO,CAClCF,CACP,CACF,CAEA,IAAMG,EAAiB,CACrBC,OAAQ,IAAMC,QAAQC,OAAO,CAACP,EAAc,IAAM,OAClDQ,QAAS,KACTC,KAAK,CACP,EA6CA,EApCA,SAASC,AAASC,AAoCHD,CApC2B,EACxC,IAAME,EAAO,CAAE,GAAGR,CAAc,CAAE,GAAGO,CAAO,AAAC,EACvCE,EAAOC,CAAAA,EAAAA,EAAPD,AAAOC,IAAAA,AAAI,EAAC,IAAMF,CAAlBC,CAAuBR,MAAM,GAAGU,IAAI,CAACf,IACrCgB,EAAUJ,EAAKJ,OAAO,CAE5B,SAASS,EAAkBC,CAAU,EACnC,IAAMC,EAAkBH,EACtB,CAAA,EAAA,EAAA,GAAA,AADsBA,EACrBA,EAAAA,CAAQI,MADaJ,IACF,GAAMK,WAAW,EAAMC,MAAO,OAChD,KAGEC,EAAsB,CAACX,EAAKH,GAAG,EAAI,CAAC,CAACG,EAAKJ,OAAO,CACjDgB,EAAOD,EAAsBE,EAAAA,QAAQ,CAAGC,EAAAA,QAAQ,CAEhDhE,EAAWkD,EAAKH,GAAG,CACvB,EADuB,CACvB,EAAA,IAAA,EAAA,EADuB,AACvB,QAAA,CAAA,WAGI,CAAA,EAAA,EAAA,GAAA,EAACrC,EAAAA,aAAa,CAAA,CAACC,UAAWuC,EAAKiB,OAAO,GAExC,EADI,CACJ,EAAA,GAAA,EAAChB,EAAAA,CAAM,GAAGK,CAAK,MAGjB,CAAA,EAAA,EAAA,GAAA,EAAC1D,EAAAA,YAAY,CAAA,CAACC,OAAO,wBACnB,CAAA,EAAA,EAAA,GAAA,EAACoD,EAAD,AAACA,CAAM,GAAGK,CAAK,KAInB,MAAO,CAAP,AAAO,EAAA,EAAA,GAAA,EAACM,EAAR,AAAQA,CAfiE,GAAvDD,EAAsB,CAAEK,SAAUT,CAAgB,EAAI,CAAC,CAe3D,GAAGQ,OAAYjE,EAAH,CAC5B,CAIA,OAFAuD,EAAkBa,WAAW,CAAG,oBAEzBb,CACT,yGCxCA,UAAA,qCAAwBc,0BAhCH,CAAA,CAAA,IAAA,IAgCN,SAASA,EACtBC,CAA6C,CAC7CrB,CAA2B,EAE3B,IAAMsB,EAAsC,CAAC,EAEf,YAA1B,AAAsC,OAA/BD,IACTC,EAAgB5B,MAAM,CAAG2B,CAAAA,EAG3B,IAAME,EAAgB,CACpB,GAAGD,CAAe,CAClB,GAAGtB,CAAO,AACZ,EAEA,MAAOD,CAAAA,EAAAA,EAAAA,OAAAA,AAAQ,EAAC,CACd,GAAGwB,CAAa,CAChBL,QAASK,EAAcC,iBAAiB,EAAEN,OAC5C,EACF,mOCrDA,EAAA,CAAA,CAAA,CACA,YAAA,wCACA,KAAA,iCACA,SAAA,qCACA,WAAA,uCACA,SAAA,qCACA,UAAA,sCACA,WAAA,uCACA,iBAAA,6CACA,aAAA,yCACA,SAAA,qCACA,UAAA,sCACA,aAAA,yCACA,UAAA,sCACA,WAAA,uCACA,QAAA,oCACA,IAAA,gCACA,gBAAA,4CACA,WAAA,uCACA,aAAA,yCACA,SAAA,qCACA,UAAA,sCACA,WAAA,uCACA,KAAA,iCACA,OAAA,kCACA,4CCdA,EAAA,EAAA,CAAA,CAAA,OACA,EAAA,EAAA,CAAA,CAAA,OAEA,IAAMO,EAAY,CAAA,EAAA,EAAA,OAAA,AAAO,EAAA,UAAA,EAAA,qCACvB3B,KAAK,EACLD,QAAS,IAAM,CAAA,EAAA,EAAA,GAAA,EAAC,MAAA,CAAI6B,UAAW,EAAA,OAAM,CAACC,eAAe,CAAEC,KAAK,eAAe,cAAY,4BAG1E,SAASC,EACtB,MAAO,CAAA,EAAA,EAAA,GAAA,EAACJ,EAAAA,CAAAA,EACV","ignoreList":[0,1,2,3,4]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js b/.next/server/chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js new file mode 100644 index 0000000..05cac96 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js @@ -0,0 +1,3 @@ +module.exports=[51033,(a,b,c)=>{}]; + +//# sourceMappingURL=_next-internal_server_app__global-error_page_actions_0k77kol.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js.map b/.next/server/chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js.map new file mode 100644 index 0000000..a464c67 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app__global-error_page_actions_0k77kol.js.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":""} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js b/.next/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js new file mode 100644 index 0000000..91ab992 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js @@ -0,0 +1,3 @@ +module.exports=[75341,a=>{"use strict";var b=a.i(51947);a.s([],57422),a.i(57422),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],75341)}]; + +//# sourceMappingURL=_next-internal_server_app__not-found_page_actions_0nwttba.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js.map b/.next/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js.map new file mode 100644 index 0000000..62f61dc --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_0nwttba.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/_not-found/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js b/.next/server/chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js new file mode 100644 index 0000000..a51c443 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js @@ -0,0 +1,3 @@ +module.exports=[16945,a=>{"use strict";var b=a.i(51947);a.s([],82175),a.i(82175),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],16945)}]; + +//# sourceMappingURL=_next-internal_server_app_about-us_page_actions_10el~1u.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js.map b/.next/server/chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js.map new file mode 100644 index 0000000..4d1a0d5 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_about-us_page_actions_10el~1u.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/about-us/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js b/.next/server/chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js new file mode 100644 index 0000000..147d2e2 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js @@ -0,0 +1,3 @@ +module.exports=[67113,a=>{"use strict";var b=a.i(51947);a.s([],99314),a.i(99314),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],67113)}]; + +//# sourceMappingURL=_next-internal_server_app_air-freight_page_actions_12f7kao.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js.map b/.next/server/chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js.map new file mode 100644 index 0000000..2e92cb5 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_air-freight_page_actions_12f7kao.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/air-freight/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js b/.next/server/chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js new file mode 100644 index 0000000..2e0a0b1 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js @@ -0,0 +1,3 @@ +module.exports=[68232,a=>{"use strict";var b=a.i(51947);a.s([],59644),a.i(59644),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],68232)}]; + +//# sourceMappingURL=_next-internal_server_app_blog_%5Bslug%5D_page_actions_0t.ya_n.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js.map b/.next/server/chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js.map new file mode 100644 index 0000000..5a88fde --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_blog_[slug]_page_actions_0t.ya_n.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/blog/%5Bslug%5D/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js b/.next/server/chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js new file mode 100644 index 0000000..19efa74 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js @@ -0,0 +1,3 @@ +module.exports=[62245,a=>{"use strict";var b=a.i(51947);a.s([],22715),a.i(22715),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],62245)}]; + +//# sourceMappingURL=_next-internal_server_app_blog_page_actions_0s90404.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js.map b/.next/server/chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js.map new file mode 100644 index 0000000..43eb692 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_blog_page_actions_0s90404.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/blog/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js b/.next/server/chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js new file mode 100644 index 0000000..7599b7d --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js @@ -0,0 +1,3 @@ +module.exports=[8829,a=>{"use strict";var b=a.i(51947);a.s([],48038),a.i(48038),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],8829)}]; + +//# sourceMappingURL=_next-internal_server_app_contact_page_actions_0~2h-ad.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js.map b/.next/server/chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js.map new file mode 100644 index 0000000..e0a51be --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_contact_page_actions_0~2h-ad.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/contact/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"sCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js b/.next/server/chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js new file mode 100644 index 0000000..9ca12bd --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js @@ -0,0 +1,3 @@ +module.exports=[78012,a=>{"use strict";var b=a.i(51947);a.s([],85279),a.i(85279),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],78012)}]; + +//# sourceMappingURL=_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js.map b/.next/server/chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js.map new file mode 100644 index 0000000..2f97345 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_cookie-policy_page_actions_05p.j9n.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/cookie-policy/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js b/.next/server/chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js new file mode 100644 index 0000000..5719b2e --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js @@ -0,0 +1,3 @@ +module.exports=[64668,a=>{"use strict";var b=a.i(51947);a.s([],62759),a.i(62759),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],64668)}]; + +//# sourceMappingURL=_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js.map b/.next/server/chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js.map new file mode 100644 index 0000000..5c58b5d --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_doormile-wings_page_actions_0t3ppuv.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/doormile-wings/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js b/.next/server/chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js new file mode 100644 index 0000000..caa3ac4 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js @@ -0,0 +1,3 @@ +module.exports=[61215,a=>{"use strict";var b=a.i(51947);a.s([],67709),a.i(67709),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],61215)}]; + +//# sourceMappingURL=_next-internal_server_app_empowerment_page_actions_12iuwob.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js.map b/.next/server/chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js.map new file mode 100644 index 0000000..dca1ed8 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_empowerment_page_actions_12iuwob.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/empowerment/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js b/.next/server/chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js new file mode 100644 index 0000000..097a9b5 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js @@ -0,0 +1,3 @@ +module.exports=[88309,a=>{"use strict";var b=a.i(51947);a.s([],32478),a.i(32478),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],88309)}]; + +//# sourceMappingURL=_next-internal_server_app_express_page_actions_0cygozq.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js.map b/.next/server/chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js.map new file mode 100644 index 0000000..00be505 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_express_page_actions_0cygozq.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/express/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js b/.next/server/chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js new file mode 100644 index 0000000..f953351 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js @@ -0,0 +1,3 @@ +module.exports=[1090,a=>{"use strict";var b=a.i(51947);a.s([],50830),a.i(50830),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],1090)}]; + +//# sourceMappingURL=_next-internal_server_app_how-it-works_page_actions_0jck7dp.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js.map b/.next/server/chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js.map new file mode 100644 index 0000000..5f9ecf0 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_how-it-works_page_actions_0jck7dp.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/how-it-works/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"sCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js b/.next/server/chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js new file mode 100644 index 0000000..b1df942 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js @@ -0,0 +1,3 @@ +module.exports=[59753,a=>{"use strict";var b=a.i(51947);a.s([],43370),a.i(43370),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],59753)}]; + +//# sourceMappingURL=_next-internal_server_app_miletruth_page_actions_0vhj20z.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js.map b/.next/server/chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js.map new file mode 100644 index 0000000..e420cfe --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_miletruth_page_actions_0vhj20z.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/miletruth/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_page_actions_10si78q.js b/.next/server/chunks/ssr/_next-internal_server_app_page_actions_10si78q.js new file mode 100644 index 0000000..5e7f47f --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_page_actions_10si78q.js @@ -0,0 +1,3 @@ +module.exports=[71970,a=>{"use strict";var b=a.i(51947);a.s([],93247),a.i(93247),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],71970)}]; + +//# sourceMappingURL=_next-internal_server_app_page_actions_10si78q.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_page_actions_10si78q.js.map b/.next/server/chunks/ssr/_next-internal_server_app_page_actions_10si78q.js.map new file mode 100644 index 0000000..b30b0a1 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_page_actions_10si78q.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js b/.next/server/chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js new file mode 100644 index 0000000..fa26871 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js @@ -0,0 +1,3 @@ +module.exports=[84290,a=>{"use strict";var b=a.i(51947);a.s([],91940),a.i(91940),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],84290)}]; + +//# sourceMappingURL=_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js.map b/.next/server/chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js.map new file mode 100644 index 0000000..d57c960 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_privacy-policy_page_actions_0l1hb50.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/privacy-policy/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js b/.next/server/chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js new file mode 100644 index 0000000..4b79716 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js @@ -0,0 +1,3 @@ +module.exports=[44019,a=>{"use strict";var b=a.i(51947);a.s([],27413),a.i(27413),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],44019)}]; + +//# sourceMappingURL=_next-internal_server_app_solutions_page_actions_0mr.5pt.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js.map b/.next/server/chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js.map new file mode 100644 index 0000000..e29cba1 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_solutions_page_actions_0mr.5pt.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/solutions/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js b/.next/server/chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js new file mode 100644 index 0000000..56f8c39 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js @@ -0,0 +1,3 @@ +module.exports=[61702,a=>{"use strict";var b=a.i(51947);a.s([],5326),a.i(5326),a.s(["40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",()=>b.sendEmailAction],61702)}]; + +//# sourceMappingURL=_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js.map b/.next/server/chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js.map new file mode 100644 index 0000000..f42d0c4 --- /dev/null +++ b/.next/server/chunks/ssr/_next-internal_server_app_terms-of-service_page_actions_0g8oyx-.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../.next-internal/server/app/terms-of-service/page/actions.js%20%28server%20actions%20loader%29"],"sourcesContent":["export {sendEmailAction as '40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca'} from 'ACTIONS_MODULE0'\n"],"names":[],"mappings":"uCAAA,IAAA,EAAA,EAAA,CAAA,CAAA"} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_0oplp32._.js b/.next/server/chunks/ssr/node_modules_0oplp32._.js new file mode 100644 index 0000000..6094d01 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_0oplp32._.js @@ -0,0 +1,3 @@ +module.exports=[46058,(a,b,c)=>{"use strict";function d(a){if("function"!=typeof WeakMap)return null;var b=new WeakMap,c=new WeakMap;return(d=function(a){return a?c:b})(a)}c._=function(a,b){if(!b&&a&&a.__esModule)return a;if(null===a||"object"!=typeof a&&"function"!=typeof a)return{default:a};var c=d(b);if(c&&c.has(a))return c.get(a);var e={__proto__:null},f=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var g in a)if("default"!==g&&Object.prototype.hasOwnProperty.call(a,g)){var h=f?Object.getOwnPropertyDescriptor(a,g):null;h&&(h.get||h.set)?Object.defineProperty(e,g,h):e[g]=a[g]}return e.default=a,c&&c.set(a,e),e}},91735,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={assign:function(){return i},searchParamsToUrlQuery:function(){return f},urlQueryToSearchParams:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){let b={};for(let[c,d]of a.entries()){let a=b[c];void 0===a?b[c]=d:Array.isArray(a)?a.push(d):b[c]=[a,d]}return b}function g(a){return"string"==typeof a?a:("number"!=typeof a||isNaN(a))&&"boolean"!=typeof a?"":String(a)}function h(a){let b=new URLSearchParams;for(let[c,d]of Object.entries(a))if(Array.isArray(d))for(let a of d)b.append(c,g(a));else b.set(c,g(d));return b}function i(a,...b){for(let c of b){for(let b of c.keys())a.delete(b);for(let[b,d]of c.entries())a.append(b,d)}return a}},43087,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={formatUrl:function(){return h},formatWithValidation:function(){return j},urlObjectKeys:function(){return i}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(46058)._(a.r(91735)),g=/https?|ftp|gopher|file/;function h(a){let{auth:b,hostname:c}=a,d=a.protocol||"",e=a.pathname||"",h=a.hash||"",i=a.query||"",j=!1;b=b?encodeURIComponent(b).replace(/%3A/i,":")+"@":"",a.host?j=b+a.host:c&&(j=b+(~c.indexOf(":")?`[${c}]`:c),a.port&&(j+=":"+a.port)),i&&"object"==typeof i&&(i=String(f.urlQueryToSearchParams(i)));let k=a.search||i&&`?${i}`||"";return d&&!d.endsWith(":")&&(d+=":"),a.slashes||(!d||g.test(d))&&!1!==j?(j="//"+(j||""),e&&"/"!==e[0]&&(e="/"+e)):j||(j=""),h&&"#"!==h[0]&&(h="#"+h),k&&"?"!==k[0]&&(k="?"+k),e=e.replace(/[?#]/g,encodeURIComponent),k=k.replace("#","%23"),`${d}${j}${e}${k}${h}`}let i=["auth","hash","host","hostname","href","path","pathname","port","protocol","query","search","slashes"];function j(a){return h(a)}},8591,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"useMergedRef",{enumerable:!0,get:function(){return e}});let d=a.r(72131);function e(a,b){let c=(0,d.useRef)(null),e=(0,d.useRef)(null);return(0,d.useCallback)(d=>{if(null===d){let a=c.current;a&&(c.current=null,a());let b=e.current;b&&(e.current=null,b())}else a&&(c.current=f(a,d)),b&&(e.current=f(b,d))},[a,b])}function f(a,b){if("function"!=typeof a)return a.current=b,()=>{a.current=null};{let c=a(b);return"function"==typeof c?c:()=>a(null)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},46272,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DecodeError:function(){return r},MiddlewareNotFoundError:function(){return v},MissingStaticPage:function(){return u},NormalizeError:function(){return s},PageNotFoundError:function(){return t},SP:function(){return p},ST:function(){return q},WEB_VITALS:function(){return f},execOnce:function(){return g},getDisplayName:function(){return l},getLocationOrigin:function(){return j},getURL:function(){return k},isAbsoluteUrl:function(){return i},isResSent:function(){return m},loadGetInitialProps:function(){return o},normalizeRepeatedSlashes:function(){return n},stringifyError:function(){return w}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=["CLS","FCP","FID","INP","LCP","TTFB"];function g(a){let b,c=!1;return(...d)=>(c||(c=!0,b=a(...d)),b)}let h=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/,i=a=>h.test(a);function j(){let{protocol:a,hostname:b,port:c}=window.location;return`${a}//${b}${c?":"+c:""}`}function k(){let{href:a}=window.location,b=j();return a.substring(b.length)}function l(a){return"string"==typeof a?a:a.displayName||a.name||"Unknown"}function m(a){return a.finished||a.headersSent}function n(a){let b=a.split("?");return b[0].replace(/\\/g,"/").replace(/\/\/+/g,"/")+(b[1]?`?${b.slice(1).join("?")}`:"")}async function o(a,b){let c=b.res||b.ctx&&b.ctx.res;if(!a.getInitialProps)return b.ctx&&b.Component?{pageProps:await o(b.Component,b.ctx)}:{};let d=await a.getInitialProps(b);if(c&&m(c))return d;if(!d)throw Object.defineProperty(Error(`"${l(a)}.getInitialProps()" should resolve to an object. But found "${d}" instead.`),"__NEXT_ERROR_CODE",{value:"E1025",enumerable:!1,configurable:!0});return d}let p="u">typeof performance,q=p&&["mark","measure","getEntriesByName"].every(a=>"function"==typeof performance[a]);class r extends Error{}class s extends Error{}class t extends Error{constructor(a){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${a}`}}class u extends Error{constructor(a,b){super(),this.message=`Failed to load static file for page: ${a} ${b}`}}class v extends Error{constructor(){super(),this.code="ENOENT",this.message="Cannot find the middleware module"}}function w(a){return JSON.stringify({message:a.message,stack:a.stack})}},8868,(a,b,c)=>{"use strict";function d(a){let b=a.indexOf("#"),c=a.indexOf("?"),d=c>-1&&(b<0||c-1?{pathname:a.substring(0,d?c:b),query:d?a.substring(c,b>-1?b:void 0):"",hash:b>-1?a.slice(b):""}:{pathname:a,query:"",hash:""}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"parsePath",{enumerable:!0,get:function(){return d}})},5407,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"addPathPrefix",{enumerable:!0,get:function(){return e}});let d=a.r(8868);function e(a,b){if(!a.startsWith("/")||!b)return a;let{pathname:c,query:e,hash:f}=(0,d.parsePath)(a);return`${b}${c}${e}${f}`}},46112,(a,b,c)=>{"use strict";function d(a){return a.replace(/\/$/,"")||"/"}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"removeTrailingSlash",{enumerable:!0,get:function(){return d}})},25075,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"normalizePathTrailingSlash",{enumerable:!0,get:function(){return f}});let d=a.r(46112),e=a.r(8868),f=a=>{if(!a.startsWith("/"))return a;let{pathname:b,query:c,hash:f}=(0,e.parsePath)(a);return`${(0,d.removeTrailingSlash)(b)}${c}${f}`};("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},38243,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"addBasePath",{enumerable:!0,get:function(){return f}});let d=a.r(5407),e=a.r(25075);function f(a,b){return(0,e.normalizePathTrailingSlash)((0,d.addPathPrefix)(a,""))}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},92434,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"warnOnce",{enumerable:!0,get:function(){return d}});let d=a=>{}},88347,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d,e,f={ACTION_HMR_REFRESH:function(){return l},ACTION_NAVIGATE:function(){return i},ACTION_REFRESH:function(){return h},ACTION_RESTORE:function(){return j},ACTION_SERVER_ACTION:function(){return m},ACTION_SERVER_PATCH:function(){return k},PrefetchKind:function(){return n},ScrollBehavior:function(){return o}};for(var g in f)Object.defineProperty(c,g,{enumerable:!0,get:f[g]});let h="refresh",i="navigate",j="restore",k="server-patch",l="hmr-refresh",m="server-action";var n=((d={}).AUTO="auto",d.FULL="full",d),o=((e={})[e.Default=0]="Default",e[e.NoScroll=1]="NoScroll",e);("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},10846,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d,e,f,g={FetchStrategy:function(){return k},NavigationResultTag:function(){return i},PrefetchPriority:function(){return j}};for(var h in g)Object.defineProperty(c,h,{enumerable:!0,get:g[h]});var i=((d={})[d.MPA=0]="MPA",d[d.Success=1]="Success",d[d.NoOp=2]="NoOp",d[d.Async=3]="Async",d),j=((e={})[e.Intent=2]="Intent",e[e.Default=1]="Default",e[e.Background=0]="Background",e),k=((f={})[f.LoadingBoundary=0]="LoadingBoundary",f[f.PPR=1]="PPR",f[f.PPRRuntime=2]="PPRRuntime",f[f.Full=3]="Full",f);("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},92702,(a,b,c)=>{"use strict";function d(a,b){let c=new URL(a);return{pathname:c.pathname,search:c.search,nextUrl:b}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createCacheKey",{enumerable:!0,get:function(){return d}}),("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},76e3,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"PrefetchHint",{enumerable:!0,get:function(){return e}});var d,e=((d={})[d.HasRuntimePrefetch=1]="HasRuntimePrefetch",d[d.SubtreeHasInstant=2]="SubtreeHasInstant",d[d.SegmentHasLoadingBoundary=4]="SegmentHasLoadingBoundary",d[d.SubtreeHasLoadingBoundary=8]="SubtreeHasLoadingBoundary",d[d.IsRootLayout=16]="IsRootLayout",d[d.ParentInlinedIntoSelf=32]="ParentInlinedIntoSelf",d[d.InlinedIntoChild=64]="InlinedIntoChild",d[d.HeadInlinedIntoSelf=128]="HeadInlinedIntoSelf",d[d.HeadOutlined=256]="HeadOutlined",d)},30641,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"matchSegment",{enumerable:!0,get:function(){return d}});let d=(a,b)=>"string"==typeof a?"string"==typeof b&&a===b:"string"!=typeof b&&a[0]===b[0]&&a[1]===b[1];("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},21341,(a,b,c)=>{"use strict";function d(a){return(a.then(e),"fulfilled"!==a.status)?null:a.value}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"readVaryParams",{enumerable:!0,get:function(){return d}});let e=()=>{}},37909,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={ACTION_HEADER:function(){return g},FLIGHT_HEADERS:function(){return q},NEXT_ACTION_NOT_FOUND_HEADER:function(){return x},NEXT_ACTION_REVALIDATED_HEADER:function(){return A},NEXT_DID_POSTPONE_HEADER:function(){return t},NEXT_HMR_REFRESH_HASH_COOKIE:function(){return l},NEXT_HMR_REFRESH_HEADER:function(){return k},NEXT_HTML_REQUEST_ID_HEADER:function(){return z},NEXT_INSTANT_PREFETCH_HEADER:function(){return o},NEXT_INSTANT_TEST_COOKIE:function(){return p},NEXT_IS_PRERENDER_HEADER:function(){return w},NEXT_REQUEST_ID_HEADER:function(){return y},NEXT_REWRITTEN_PATH_HEADER:function(){return u},NEXT_REWRITTEN_QUERY_HEADER:function(){return v},NEXT_ROUTER_PREFETCH_HEADER:function(){return i},NEXT_ROUTER_SEGMENT_PREFETCH_HEADER:function(){return j},NEXT_ROUTER_STALE_TIME_HEADER:function(){return s},NEXT_ROUTER_STATE_TREE_HEADER:function(){return h},NEXT_RSC_UNION_QUERY:function(){return r},NEXT_URL:function(){return m},RSC_CONTENT_TYPE_HEADER:function(){return n},RSC_HEADER:function(){return f}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="rsc",g="next-action",h="next-router-state-tree",i="next-router-prefetch",j="next-router-segment-prefetch",k="next-hmr-refresh",l="__next_hmr_refresh_hash__",m="next-url",n="text/x-component",o="next-instant-navigation-testing-prefetch",p="next-instant-navigation-testing",q=[f,h,i,k,j],r="_rsc",s="x-nextjs-stale-time",t="x-nextjs-postponed",u="x-nextjs-rewritten-path",v="x-nextjs-rewritten-query",w="x-nextjs-prerender",x="x-nextjs-action-not-found",y="x-nextjs-request-id",z="x-nextjs-html-request-id",A="x-action-revalidated";("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},88644,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"InvariantError",{enumerable:!0,get:function(){return d}});class d extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}},67009,(a,b,c)=>{"use strict";function d(a){return null!==a&&"object"==typeof a&&"then"in a&&"function"==typeof a.then}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"isThenable",{enumerable:!0,get:function(){return d}})},90841,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={dispatchAppRouterAction:function(){return i},dispatchGestureState:function(){return j},refreshOnInstantNavigationUnlock:function(){return h},useActionQueue:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(46058)._(a.r(72131)),g=a.r(67009);a.r(88347);function h(){}function i(a){!0;throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0})}function j(a){!0;throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0})}function k(a){let[b,c]=f.default.useState(a.state),[d,e]=(0,f.useOptimistic)(b),h=(0,f.useMemo)(()=>d,[d]);return(0,g.isThenable)(h)?(0,f.use)(h):h}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},20611,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"callServer",{enumerable:!0,get:function(){return g}});let d=a.r(72131),e=a.r(88347),f=a.r(90841);async function g(a,b){return new Promise((c,g)=>{(0,d.startTransition)(()=>{(0,f.dispatchAppRouterAction)({type:e.ACTION_SERVER_ACTION,actionId:a,actionArgs:b,resolve:c,reject:g})})})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},1722,(a,b,c)=>{"use strict";let d;Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"findSourceMapURL",{enumerable:!0,get:function(){return d}});("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},39118,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DEFAULT_SEGMENT_KEY:function(){return l},NOT_FOUND_SEGMENT_KEY:function(){return m},PAGE_SEGMENT_KEY:function(){return k},addSearchParamsIfPageSegment:function(){return i},computeSelectedLayoutSegment:function(){return j},getSegmentValue:function(){return f},getSelectedLayoutSegmentPath:function(){return function a(b,c,d=!0,e=[]){let g;if(d)g=b[1][c];else{let a=b[1];g=a.children??Object.values(a)[0]}if(!g)return e;let h=f(g[0]);return!h||h.startsWith(k)?e:(e.push(h),a(g,c,!1,e))}},isGroupSegment:function(){return g},isParallelRouteSegment:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){return Array.isArray(a)?a[1]:a}function g(a){return"("===a[0]&&a.endsWith(")")}function h(a){return a.startsWith("@")&&"@children"!==a}function i(a,b){if(a.includes(k)){let a=JSON.stringify(b);return"{}"!==a?k+"?"+a:k}return a}function j(a,b){if(!a||0===a.length)return null;let c="children"===b?a[0]:a[a.length-1];return c===l?null:c}let k="__PAGE__",l="__DEFAULT__",m="/_not-found"},58216,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={HEAD_REQUEST_KEY:function(){return h},ROOT_SEGMENT_REQUEST_KEY:function(){return g},appendSegmentRequestKeyPart:function(){return j},convertSegmentPathToStaticExportFilename:function(){return m},createSegmentRequestKeyPart:function(){return i}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(39118),g="",h="/_head";function i(a){if("string"==typeof a)return a.startsWith(f.PAGE_SEGMENT_KEY)?f.PAGE_SEGMENT_KEY:"/_not-found"===a?"_not-found":l(a);let b=a[0];return"$"+a[2]+"$"+l(b)}function j(a,b,c){return a+"/"+("children"===b?c:`@${l(b)}/${c}`)}let k=/^[a-zA-Z0-9\-_@]+$/;function l(a){return k.test(a)?a:"!"+btoa(a).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")}function m(a){return`__next${a.replace(/\//g,".")}.txt`}},23187,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={doesStaticSegmentAppearInURL:function(){return m},getCacheKeyForDynamicParam:function(){return n},getParamValueFromCacheKey:function(){return p},getRenderedPathname:function(){return j},getRenderedSearch:function(){return i},parseDynamicParamFromURLPart:function(){return l},urlSearchParamsToParsedUrlQuery:function(){return q},urlToUrlWithoutFlightMarker:function(){return o}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(39118),g=a.r(58216),h=a.r(37909);function i(a){let b=a.headers.get(h.NEXT_REWRITTEN_QUERY_HEADER);return null!==b?""===b?"":"?"+b:o(new URL(a.url)).search}function j(a){return a.headers.get(h.NEXT_REWRITTEN_PATH_HEADER)??o(new URL(a.url)).pathname}function k(a){try{return encodeURIComponent(decodeURIComponent(a))}catch{return a}}function l(a,b,c){switch(a){case"c":return ck(a)):[];case"ci(..)(..)":case"ci(.)":case"ci(..)":case"ci(...)":{let d=a.length-2;return c0===b?k(a.slice(d)):k(a)):[]}case"oc":return ck(a)):null;case"d":if(c>=b.length)return"";return k(b[c]);case"di(..)(..)":case"di(.)":case"di(..)":case"di(...)":{let d=a.length-2;if(c>=b.length)return"";return k(b[c].slice(d))}default:return""}}function m(a){return!(a===g.ROOT_SEGMENT_REQUEST_KEY||a.startsWith(f.PAGE_SEGMENT_KEY)||"("===a[0]&&a.endsWith(")"))&&a!==f.DEFAULT_SEGMENT_KEY&&"/_not-found"!==a}function n(a,b){return"string"==typeof a?(0,f.addSearchParamsIfPageSegment)(a,Object.fromEntries(new URLSearchParams(b))):null===a?"":a.join("/")}function o(a){let b=new URL(a);return b.searchParams.delete(h.NEXT_RSC_UNION_QUERY),b}function p(a,b){return"c"===b||"oc"===b?a.split("/"):a}function q(a){let b={};for(let[c,d]of a.entries())void 0===b[c]?b[c]=d:Array.isArray(b[c])?b[c].push(d):b[c]=[b[c],d];return b}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},74685,(a,b,c)=>{"use strict";function d(a,b=!0){return a.pathname+a.search+(b?a.hash:"")}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createHrefFromUrl",{enumerable:!0,get:function(){return d}}),("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},22129,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={createInitialRSCPayloadFromFallbackPrerender:function(){return j},getFlightDataPartsFromPath:function(){return i},getNextFlightSegmentPath:function(){return k},normalizeFlightData:function(){return l},prepareFlightRouterStateForRequest:function(){return m}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(39118),g=a.r(23187),h=a.r(74685);function i(a){let[b,c,d,e]=a.slice(-4),f=a.slice(0,-4);return{pathToSegment:f.slice(0,-1),segmentPath:f,segment:f[f.length-1]??"",tree:b,seedData:c,head:d,isHeadPartial:e,isRootRender:4===a.length}}function j(a,b){let c=(0,g.getRenderedPathname)(a),d=(0,g.getRenderedSearch)(a),e=(0,h.createHrefFromUrl)(new URL(location.href)),f=b.f[0],i=f[0],j={c:e.split("/"),q:d,i:b.i,f:[[function a(b,c,d,e){let f,h,i=b[0];if("string"==typeof i)f=i,h=(0,g.doesStaticSegmentAppearInURL)(i);else{let a=i[0],b=i[2],j=i[3],k=(0,g.parseDynamicParamFromURLPart)(b,d,e);f=[a,(0,g.getCacheKeyForDynamicParam)(k,c),b,j],h=!0}let j=h?e+1:e,k=b[1],l={};for(let b in k){let e=k[b];l[b]=a(e,c,d,j)}return[f,l,null,b[3],b[4]]}(i,d,c.split("/").filter(a=>""!==a),0),f[1],f[2],f[2]]],m:b.m,G:b.G,S:b.S,h:b.h};return b.b&&(j.b=b.b),j}function k(a){return a.slice(2)}function l(a){return"string"==typeof a?a:a.map(a=>i(a))}function m(a,b){return b?encodeURIComponent(JSON.stringify(a)):encodeURIComponent(JSON.stringify(function a(b){let[c,d,e,g,h]=b,i=function(a){if("string"==typeof a)return a.startsWith(f.PAGE_SEGMENT_KEY+"?")?f.PAGE_SEGMENT_KEY:a;let[b,c,d]=a;return[b,c,d,null]}(c),j={};for(let[b,c]of Object.entries(d))j[b]=a(c);let k=[i,j];return g&&(k[2]=null,k[3]=g),void 0!==h&&(k[4]=h),k}(a)))}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},16661,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={djb2Hash:function(){return f},hexHash:function(){return g}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){let b=5381;for(let c=0;c>>0}function g(a){return f(a).toString(36).slice(0,5)}},35604,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={computeCacheBustingSearchParam:function(){return k},computeLegacyCacheBustingSearchParam:function(){return l}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(16661),g=new TextEncoder;function h(a){return void 0===a?"0":Array.isArray(a)?a.join(","):a}function i(a,b,c,d){return(void 0===a||"0"===a)&&void 0===b&&void 0===c&&void 0===d?null:[a??"0",h(b),h(c),h(d)].join(",")}async function j(a){var b=new Uint8Array(await globalThis.crypto.subtle.digest("SHA-256",g.encode(a))).subarray(0,12);let c="";for(let a=0;a{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={setCacheBustingSearchParam:function(){return i},setCacheBustingSearchParamWithHash:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(35604),g=a.r(37909);async function h(a){return"function"==typeof globalThis.crypto?.subtle?.digest?(0,f.computeCacheBustingSearchParam)(a[g.NEXT_ROUTER_PREFETCH_HEADER],a[g.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],a[g.NEXT_ROUTER_STATE_TREE_HEADER],a[g.NEXT_URL]):(0,f.computeLegacyCacheBustingSearchParam)(a[g.NEXT_ROUTER_PREFETCH_HEADER],a[g.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],a[g.NEXT_ROUTER_STATE_TREE_HEADER],a[g.NEXT_URL])}let i=async(a,b)=>{j(a,await h(b))},j=(a,b)=>{let c=a.search,d=(c.startsWith("?")?c.slice(1):c).split("&").filter(a=>a&&!a.startsWith(`${g.NEXT_RSC_UNION_QUERY}=`));b.length>0?d.push(`${g.NEXT_RSC_UNION_QUERY}=${b}`):d.push(`${g.NEXT_RSC_UNION_QUERY}`),a.search=d.length?`?${d.join("&")}`:""};("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},16438,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={getNavigationBuildId:function(){return h},setNavigationBuildId:function(){return g}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="";function g(a){f=a}function h(){return f}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},72006,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={ACTION_SUFFIX:function(){return q},APP_DIR_ALIAS:function(){return P},CACHE_ONE_YEAR_SECONDS:function(){return F},DOT_NEXT_ALIAS:function(){return N},ESLINT_DEFAULT_DIRS:function(){return ah},GSP_NO_RETURNED_VALUE:function(){return ab},GSSP_COMPONENT_MEMBER_ERROR:function(){return ae},GSSP_NO_RETURNED_VALUE:function(){return ac},HTML_CONTENT_TYPE_HEADER:function(){return g},INFINITE_CACHE:function(){return G},INSTRUMENTATION_HOOK_FILENAME:function(){return L},JSON_CONTENT_TYPE_HEADER:function(){return h},MATCHED_PATH_HEADER:function(){return k},MIDDLEWARE_FILENAME:function(){return H},MIDDLEWARE_LOCATION_REGEXP:function(){return I},NEXT_BODY_SUFFIX:function(){return t},NEXT_CACHE_IMPLICIT_TAG_ID:function(){return D},NEXT_CACHE_REVALIDATED_TAGS_HEADER:function(){return w},NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER:function(){return x},NEXT_CACHE_ROOT_PARAM_TAG_ID:function(){return E},NEXT_CACHE_SOFT_TAG_MAX_LENGTH:function(){return C},NEXT_CACHE_TAGS_HEADER:function(){return v},NEXT_CACHE_TAG_MAX_ITEMS:function(){return A},NEXT_CACHE_TAG_MAX_LENGTH:function(){return B},NEXT_DATA_SUFFIX:function(){return r},NEXT_INTERCEPTION_MARKER_PREFIX:function(){return j},NEXT_META_SUFFIX:function(){return s},NEXT_NAV_DEPLOYMENT_ID_HEADER:function(){return u},NEXT_QUERY_PARAM_PREFIX:function(){return i},NEXT_RESUME_HEADER:function(){return y},NEXT_RESUME_STATE_LENGTH_HEADER:function(){return z},NON_STANDARD_NODE_ENV:function(){return af},PAGES_DIR_ALIAS:function(){return M},PRERENDER_REVALIDATE_HEADER:function(){return l},PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER:function(){return m},PROXY_FILENAME:function(){return J},PROXY_LOCATION_REGEXP:function(){return K},PUBLIC_DIR_MIDDLEWARE_CONFLICT:function(){return X},ROOT_DIR_ALIAS:function(){return O},RSC_ACTION_CLIENT_WRAPPER_ALIAS:function(){return W},RSC_ACTION_ENCRYPTION_ALIAS:function(){return V},RSC_ACTION_PROXY_ALIAS:function(){return S},RSC_ACTION_VALIDATE_ALIAS:function(){return R},RSC_CACHE_WRAPPER_ALIAS:function(){return T},RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS:function(){return U},RSC_MOD_REF_PROXY_ALIAS:function(){return Q},RSC_SEGMENTS_DIR_SUFFIX:function(){return n},RSC_SEGMENT_SUFFIX:function(){return o},RSC_SUFFIX:function(){return p},SERVER_PROPS_EXPORT_ERROR:function(){return aa},SERVER_PROPS_GET_INIT_PROPS_CONFLICT:function(){return Z},SERVER_PROPS_SSG_CONFLICT:function(){return $},SERVER_RUNTIME:function(){return ai},SSG_FALLBACK_EXPORT_ERROR:function(){return ag},SSG_GET_INITIAL_PROPS_CONFLICT:function(){return Y},STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR:function(){return _},TEXT_PLAIN_CONTENT_TYPE_HEADER:function(){return f},UNSTABLE_REVALIDATE_RENAME_ERROR:function(){return ad},WEBPACK_LAYERS:function(){return al},WEBPACK_RESOURCE_QUERIES:function(){return am},WEB_SOCKET_MAX_RECONNECTIONS:function(){return aj}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="text/plain",g="text/html; charset=utf-8",h="application/json; charset=utf-8",i="nxtP",j="nxtI",k="x-matched-path",l="x-prerender-revalidate",m="x-prerender-revalidate-if-generated",n=".segments",o=".segment.rsc",p=".rsc",q=".action",r=".json",s=".meta",t=".body",u="x-nextjs-deployment-id",v="x-next-cache-tags",w="x-next-revalidated-tags",x="x-next-revalidate-tag-token",y="next-resume",z="x-next-resume-state-length",A=128,B=256,C=1024,D="_N_T_",E="_N_RP_",F=31536e3,G=0xfffffffe,H="middleware",I=`(?:src/)?${H}`,J="proxy",K=`(?:src/)?${J}`,L="instrumentation",M="private-next-pages",N="private-dot-next",O="private-next-root-dir",P="private-next-app-dir",Q="private-next-rsc-mod-ref-proxy",R="private-next-rsc-action-validate",S="private-next-rsc-server-reference",T="private-next-rsc-cache-wrapper",U="private-next-rsc-track-dynamic-import",V="private-next-rsc-action-encryption",W="private-next-rsc-action-client-wrapper",X="You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict",Y="You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps",Z="You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.",$="You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps",_="can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props",aa="pages with `getServerSideProps` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export",ab="Your `getStaticProps` function did not return an object. Did you forget to add a `return`?",ac="Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?",ad="The `unstable_revalidate` property is available for general use.\nPlease use `revalidate` instead.",ae="can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member",af='You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env',ag="Pages with `fallback` enabled in `getStaticPaths` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export",ah=["app","pages","components","lib","src"],ai={edge:"edge",experimentalEdge:"experimental-edge",nodejs:"nodejs"},aj=12,ak={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"},al={...ak,GROUP:{builtinReact:[ak.reactServerComponents,ak.actionBrowser],serverOnly:[ak.reactServerComponents,ak.actionBrowser,ak.instrument,ak.middleware],neutralTarget:[ak.apiNode,ak.apiEdge],clientOnly:[ak.serverSideRendering,ak.appPagesBrowser],bundled:[ak.reactServerComponents,ak.actionBrowser,ak.serverSideRendering,ak.appPagesBrowser,ak.shared,ak.instrument,ak.middleware],appPages:[ak.reactServerComponents,ak.serverSideRendering,ak.appPagesBrowser,ak.actionBrowser]}},am={edgeSSREntry:"__next_edge_ssr_entry__",metadata:"__next_metadata__",metadataRoute:"__next_metadata_route__",metadataImageMeta:"__next_metadata_image_meta__"}},71094,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"isNavigatingToNewRootLayout",{enumerable:!0,get:function(){return function a(b,c){let e=b[0],f=c.segment;if(Array.isArray(e)&&Array.isArray(f)){if(e[0]!==f[0]||e[2]!==f[2])return!0}else if(e!==f)return!0;let g=((b[4]??0)&d.PrefetchHint.IsRootLayout)!=0,h=(c.prefetchHints&d.PrefetchHint.IsRootLayout)!=0;if(g)return!h;if(h)return!0;let i=c.slots,j=b[1];if(null!==i)for(let b in i){let c=i[b],d=j[b];if(void 0===d||a(d,c))return!0}return!1}}});let d=a.r(76e3);("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},95400,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={getLastCommittedTree:function(){return g},setLastCommittedTree:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=null;function g(){return f}function h(a){f=a}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},54645,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={cleanup:function(){return n},deleteFromLru:function(){return l},lruPut:function(){return j},updateLruSize:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(51561),g=a.r(42297),h=null,i=0;function j(a){if(h===a)return;let b=a.prev,c=a.next;if(null===c||null===b?(i+=a.size,m()):(b.next=c,c.prev=b),null===h)a.prev=a,a.next=a;else{let b=h.prev;a.prev=b,null!==b&&(b.next=a),a.next=h,h.prev=a}h=a}function k(a,b){let c=a.size;a.size=b,null!==a.next&&(i=i-c+b,m())}function l(a){let b=a.next,c=a.prev;null!==b&&null!==c&&(i-=a.size,a.next=null,a.prev=null,h===a?b===h?h=null:(h=b,c.next=b,b.prev=c):(c.next=b,b.prev=c))}function m(){i<=0x3200000||(0,g.pingPrefetchScheduler)()}function n(){if(!(i<=0x3200000))for(;i>0x2d00000&&null!==h;){let a=h.prev;null!==a&&(0,f.deleteMapEntry)(a)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},51561,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={Fallback:function(){return g},createCacheMap:function(){return i},deleteFromCacheMap:function(){return n},deleteMapEntry:function(){return o},getFromCacheMap:function(){return j},isValueExpired:function(){return k},setInCacheMap:function(){return l},setSizeInCacheMap:function(){return p}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(54645),g={},h={};function i(){return{parent:null,key:null,value:null,map:null,prev:null,next:null,size:0}}function j(a,b,c,d,e){let i=function a(b,c,d,e,f,i){let j,l;if(null!==e)j=e.value,l=e.parent;else if(f&&i!==h)j=h,l=null;else return null===d.value?d:k(b,c,d.value)?(o(d),null):d;let m=d.map;if(null!==m){let d=m.get(j);if(void 0!==d){let e=a(b,c,d,l,f,j);if(null!==e)return e}let e=m.get(g);if(void 0!==e)return a(b,c,e,l,f,j)}return null}(a,b,c,d,e,0);return null===i||null===i.value?null:((0,f.lruPut)(i),i.value)}function k(a,b,c){return c.staleAt<=a||c.version{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={appendLayoutVaryPath:function(){return k},clonePageVaryPathWithNewSearchParams:function(){return r},finalizeLayoutVaryPath:function(){return l},finalizeMetadataVaryPath:function(){return p},finalizePageVaryPath:function(){return n},getFulfilledRouteVaryPath:function(){return j},getFulfilledSegmentVaryPath:function(){return function a(b,c){return{id:b.id,value:null===b.id||c.has(b.id)?b.value:g.Fallback,parent:null===b.parent?null:a(b.parent,c)}}},getPartialLayoutVaryPath:function(){return m},getPartialPageVaryPath:function(){return o},getRenderedSearchFromVaryPath:function(){return s},getRouteVaryPath:function(){return i},getSegmentVaryPathForRequest:function(){return q}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(10846),g=a.r(51561),h=a.r(58216);function i(a,b,c){return{id:null,value:a,parent:{id:"?",value:b,parent:{id:null,value:c,parent:null}}}}function j(a,b,c,d){return{id:null,value:a,parent:{id:"?",value:b,parent:{id:null,value:d?c:g.Fallback,parent:null}}}}function k(a,b,c){return{id:c,value:b,parent:a}}function l(a,b){return{id:null,value:a,parent:b}}function m(a){return a.parent}function n(a,b,c){return{id:null,value:a,parent:{id:"?",value:b,parent:c}}}function o(a){return a.parent.parent}function p(a,b,c){return{id:null,value:a+h.HEAD_REQUEST_KEY,parent:{id:"?",value:b,parent:c}}}function q(a,b){let c=b.varyPath;if(b.isPage&&a!==f.FetchStrategy.Full&&a!==f.FetchStrategy.PPRRuntime){let a=c.parent.parent;return{id:null,value:c.value,parent:{id:"?",value:g.Fallback,parent:a}}}return c}function r(a,b){let c=a.parent;return{id:null,value:a.value,parent:{id:"?",value:b,parent:c.parent}}}function s(a){let b=a.parent.value;return"string"==typeof b?b:null}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},52052,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={discoverKnownRoute:function(){return k},matchKnownRoute:function(){return m},resetKnownRoutes:function(){return n}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(99032),g=a.r(23187),h=a.r(91442);function i(){return{staticChildren:null,dynamicChild:null,dynamicChildParamName:null,dynamicChildParamType:null,pattern:null}}let j=i();function k(a,b,c,d,e,g,h,i,k,m){let n=b.split("/").filter(a=>""!==a),o=n.length>0?n[0]:null,p=n.length>0?n.slice(1):[];if(null!==d){let n=(0,f.fulfillRouteCacheEntry)(a,d,e,g,h,i,k);return m&&(n.hasDynamicRewrite=!0),l(j,e,o,p,n,a,b,c,e,g,h,i,k,m),n}return l(j,e,o,p,null,a,b,c,e,g,h,i,k,m)}function l(a,b,c,d,e,h,j,k,m,n,o,p,q,r){let s,t,u=b.segment,v=null,w=null,x=null;"string"==typeof u?s=(0,g.doesStaticSegmentAppearInURL)(u):(v=u[0],w=u[2],x=u[3],s=!0);let y=a,z=c,A=d;if(s){if(null===v&&c!==u)return null!==e?e:(0,f.writeRouteIntoCache)(h,j,k,m,n,o,p,q);if(null!==v&&null!==w){if(y=function(a,b,c){if(null!==a.dynamicChild)return a.dynamicChild;let d=i();return a.dynamicChild=d,a.dynamicChildParamName=b,a.dynamicChildParamType=c,d}(a,v,w),null!==x)for(let b of(null===a.staticChildren&&(a.staticChildren=new Map),x))a.staticChildren.has(b)||a.staticChildren.set(b,i())}else{null===a.staticChildren&&(a.staticChildren=new Map);let b=a.staticChildren.get(c);void 0===b&&(b=i(),a.staticChildren.set(c,b)),y=b}z=d.length>0?d[0]:null,A=d.length>0?d.slice(1):[]}let B=b.slots,C=null;if(null!==B){for(let a in B){let b=B[a];null===b.refreshState&&(C=l(y,b,z,A,e,h,j,k,m,n,o,p,q,r))}return null!==C?C:null!==e?e:(0,f.writeRouteIntoCache)(h,j,k,m,n,o,p,q)}return null!==y.pattern?(r&&(y.pattern.hasDynamicRewrite=!0),y.pattern):(t=null!==e?e:(0,f.writeRouteIntoCache)(h,j,k,m,n,o,p,q),r&&(t.hasDynamicRewrite=!0),y.pattern=t,t)}function m(a,b){let c=a.split("/").filter(a=>""!==a),d=new Map,e=function a(b,c,d,e){let f=d{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d,e={FreshnessPolicy:function(){return w},createInitialCacheNodeForHydration:function(){return y},isDeferredRsc:function(){return M},spawnDynamicRequests:function(){return H},startPPRNavigation:function(){return z}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});let g=a.r(76e3),h=a.r(39118),i=a.r(30641),j=a.r(74685),k=a.r(20873),l=a.r(90841),m=a.r(88347),n=a.r(71094),o=a.r(95400),p=a.r(37472),q=a.r(99032),r=a.r(10846),s=a.r(52052),t=a.r(72006),u=a.r(91442),v=a.r(36085);var w=((d={})[d.Default=0]="Default",d[d.Hydration=1]="Hydration",d[d.HistoryTraversal=2]="HistoryTraversal",d[d.RefreshAll=3]="RefreshAll",d[d.HMRRefresh=4]="HMRRefresh",d[d.Gesture=5]="Gesture",d);let x=()=>{};function y(a,b,c,d,e){return A(a,b,null,1,c,d,e,!1,{separateRefreshUrls:null,scrollRef:null})}function z(a,b,c,d,e,f,k,l,m,o,p,r,s){let t={canonicalUrl:(0,j.createHrefFromUrl)(b),renderedSearch:c};return function a(b,c,d,e,f,j,k,l,m,o,p,r,s,t,u,v){var w,x,y;let z,C,G,H,I=e[0],J=B(f);if(!(0,i.matchSegment)(J,I))return!l&&(0,n.isNavigatingToNewRootLayout)(e,f)||J===h.NOT_FOUND_SEGMENT_KEY?null:A(b,f,j,k,m,o,p,s,v);let K=f.slots,L=e[1],M=null!==m?m[1]:null,N=l||(f.prefetchHints&g.PrefetchHint.IsRootLayout)!=0,O=!1;switch(k){case 0:case 2:case 1:case 5:O=!1;break;case 3:case 4:O=!0}let P=null===K;if(void 0===d||O||P&&r){let a=E(b,f,null!==m?m[0]:null,j,o,k,p);G=a.cacheNode,H=a.needsDynamicRequest,void 0!==d&&(G.scrollRef=d.scrollRef)}else{w=!1,G=F((x=d).rsc,w?null:x.prefetchRsc,x.head,w?null:x.prefetchHead,x.scrollRef),H=!1}let Q=f.refreshState,R=null!=Q?Q:u;H&&null!==R&&(y=v,z=R.canonicalUrl,null===(C=y.separateRefreshUrls)?y.separateRefreshUrls=new Set([z]):C.add(z));let S={},T=null,U=!1,V={},W=null;if(null!==K){let e=void 0!==d?d.slots:null;for(let d in G.slots=W={},T=new Map,K){let g=K[d],i=L[d];if(void 0===i)return null;let l=null!==M?M[d]:null,m=i[0],n=B(g),u=o;2!==k&&n===h.DEFAULT_SEGMENT_KEY&&m!==h.DEFAULT_SEGMENT_KEY&&(n=B(g=function(a,b,c,d){let e,f,g=d[2];null!=g?(e=g[0],f=g[1]):(e=c.canonicalUrl,f=c.renderedSearch);let h=(0,q.convertReusedFlightRouterStateToRouteTree)(a,b,d,f,{metadataVaryPath:null});return h.refreshState={canonicalUrl:e,renderedSearch:f},h}(f,d,t,i)),l=null,u=null);let w=a(b,c,null!==e?e[d]:void 0,i,g,j,k,N,l??null,u,p,r,s||H,t,R,v);if(null===w)return null;T.set(d,w),W[d]=w.node;let x=w.route;S[d]=x;let y=w.dynamicRequestTree;null!==y?(U=!0,V[d]=y):V[d]=x}}let X=[B(f),S,null!==R?[R.canonicalUrl,R.renderedSearch]:null,null,f.prefetchHints];return{status:+!H,route:X,node:G,dynamicRequestTree:D(X,V,H,U,s),refreshState:R,children:T}}(a,b,null!==d?d:void 0,e,f,k,l,!1,m,o,p,r,!1,t,null,s)}function A(a,b,c,d,e,f,g,h,i){let j=B(b),k=b.slots,l=null!==e?e[1]:null,m=E(a,b,null!==e?e[0]:null,c,f,d,g),n=m.cacheNode,o=m.needsDynamicRequest;null===k&&function(a,b,c){switch(a){case 0:case 5:case 3:case 4:null===c.scrollRef&&(c.scrollRef={current:!0}),b.scrollRef=c.scrollRef}}(d,n,i);let p={},q=null,r=!1,s={},t=null;if(null!==k)for(let b in n.slots=t={},q=new Map,k){let e=A(a,k[b],c,d,(null!==l?l[b]:null)??null,f,g,h||o,i);q.set(b,e),t[b]=e.node;let j=e.route;p[b]=j;let m=e.dynamicRequestTree;null!==m?(r=!0,s[b]=m):s[b]=j}let u=[j,p,null,null,b.prefetchHints];return{status:+!o,route:u,node:n,dynamicRequestTree:D(u,s,o,r,h),refreshState:null,children:q}}function B(a){if(a.isPage){let b=(0,u.getRenderedSearchFromVaryPath)(a.varyPath);if(null===b)return h.PAGE_SEGMENT_KEY;let c=JSON.stringify(Object.fromEntries(new URLSearchParams(b)));return"{}"!==c?h.PAGE_SEGMENT_KEY+"?"+c:h.PAGE_SEGMENT_KEY}return a.segment}function C(a,b){let c=[a[0],b];return 2 in a&&(c[2]=a[2]),3 in a&&(c[3]=a[3]),4 in a&&(c[4]=a[4]),c}function D(a,b,c,d,e){let f=null;return c?(f=C(a,b),e||(f[3]="refetch")):f=d?C(a,b):null,f}function E(a,b,c,d,e,f,g){let h,i,j,k=b.isPage;switch(f){case 0:{let c=(0,v.readFromBFCacheDuringRegularNavigation)(a,b.varyPath);if(null!==c)return{cacheNode:F(c.rsc,c.prefetchRsc,c.head,c.prefetchHead),needsDynamicRequest:!1};break}case 1:{let f=k?e:null;return(0,v.writeToBFCache)(a,b.varyPath,c,null,f,null,g),k&&null!==d&&(0,v.writeHeadToBFCache)(a,d,f,null,g),{cacheNode:F(c,null,f,null),needsDynamicRequest:!1}}case 2:let l=(0,v.readFromBFCache)(b.varyPath);if(null!==l){let a=l.rsc,b=!M(a)||"pending"!==a.status;return{cacheNode:F(l.rsc,b?null:l.prefetchRsc,l.head,b?null:l.prefetchHead),needsDynamicRequest:!1}}}let m=null,n=!0,o=(0,q.readSegmentCacheEntry)(a,b.varyPath);if(null!==o)switch(o.status){case q.EntryStatus.Fulfilled:m=o.rsc,n=o.isPartial;break;case q.EntryStatus.Pending:m=(0,q.waitForSegmentCacheEntry)(o).then(a=>null!==a?a.rsc:null),n=o.isPartial;case q.EntryStatus.Empty:case q.EntryStatus.Rejected:}null!==c?(n?(h=m,i=c):(h=null,i=m),j=!1):(n?(h=m,i=N()):(h=null,i=m),j=n);let p=null,r=null,s=k;if(k){let b=null,c=!0;if(null!==d){let e=(0,q.readSegmentCacheEntry)(a,d);if(null!==e)switch(e.status){case q.EntryStatus.Fulfilled:b=e.rsc,c=e.isPartial;break;case q.EntryStatus.Pending:b=(0,q.waitForSegmentCacheEntry)(e).then(a=>null!==a?a.rsc:null),c=e.isPartial;case q.EntryStatus.Empty:case q.EntryStatus.Rejected:}}null!==e?(c?(p=b,r=e):(p=null,r=b),s=!1):(c?(p=b,r=N()):(p=null,r=b),s=c)}return 5!==f&&((0,v.writeToBFCache)(a,b.varyPath,i,h,r,p,g),k&&null!==d&&(0,v.writeHeadToBFCache)(a,d,r,p,g)),{cacheNode:F(i,h,r,p),needsDynamicRequest:j||s}}function F(a,b,c,d,e=null){return{rsc:a,prefetchRsc:b,head:c,prefetchHead:d,slots:null,scrollRef:e}}let G=!1;function H(a,b,c,d,e,f,g){let h=a.dynamicRequestTree;if(null===h){G=!1;return}let i=K(a,h,b,c,d,f),k=e.separateRefreshUrls,l=null;if(null!==k){l=[];let e=(0,j.createHrefFromUrl)(b);for(let b of k)b!==e&&null!==h&&l.push(K(a,h,new URL(b,location.origin),c,d,f))}I(a,c,i,l,f,g).then(x,x)}async function I(a,b,c,d,e,f){var g,h;let i=await (g=c,h=d,new Promise(a=>{let b=b=>{0===b.exitStatus?0==--d&&a(0):a(b.exitStatus)},c=()=>a(2),d=1;g.then(b,c),null!==h&&(d+=h.length,h.forEach(a=>a.then(b,c)))}));switch(0===i&&(i=function a(b,c,d){var e,f,g;let h,i,j;0===b.status?(b.status=2,e=b.node,f=c,g=d,M(i=e.rsc)&&(null===f?i.resolve(null,g):i.reject(f,g)),M(j=e.head)&&j.resolve(null,g),h=null===b.refreshState?1:2):h=0;let k=b.children;if(null!==k)for(let[,b]of k){let e=a(b,c,d);e>h&&(h=e)}return h}(a,null,null)),i){case 0:G=!1;return;case 1:{let d=await c;J(!1,d.url,b,d.seed,a.route,e,f);return}case 2:{let d=await c;J(!0,d.url,b,d.seed,a.route,e,f);return}default:return i}}function J(a,b,c,d,e,f,g){if(null!==f)(0,q.markRouteEntryAsDynamicRewrite)(f);else if(null!==d){let a=d.metadataVaryPath;if(null!==a){let e=Date.now();(0,s.discoverKnownRoute)(e,b.pathname,c,null,d.routeTree,a,!1,(0,j.createHrefFromUrl)(b),!1,!0)}}(0,q.invalidateRouteCacheEntries)(c,e),a=a||G,G=!0;let h=(0,o.getLastCommittedTree)(),i=null!==h&&e!==h?g:"replace",k={type:m.ACTION_SERVER_PATCH,previousTree:e,url:b,nextUrl:c,seed:d,mpa:a,navigateType:i};(0,l.dispatchAppRouterAction)(k)}async function K(a,b,c,d,e,f){try{let g=await (0,k.fetchServerResponse)(c,{flightRouterState:b,nextUrl:d,isHmrRefresh:4===e});if("string"==typeof g)return{exitStatus:2,url:new URL(g,location.origin),seed:null};let h=Date.now(),j=(0,p.convertServerPatchToFullTree)(h,a.route,g.flightData,g.renderedSearch,g.dynamicStaleTime);if(null!==f&&null!==g.staticStageData){let{response:a,isResponsePartial:c}=g.staticStageData;(0,q.getStaleAt)(h,a.s).then(d=>{let e=g.responseHeaders.get(t.NEXT_NAV_DEPLOYMENT_ID_HEADER)??a.b;(0,q.writeStaticStageResponseIntoCache)(h,a.f,e,a.h,d,b,g.renderedSearch,c)}).catch(()=>{})}null!==f&&null!==g.runtimePrefetchStream&&(0,q.processRuntimePrefetchStream)(h,g.runtimePrefetchStream,b,g.renderedSearch).then(a=>{null!==a&&(0,q.writeDynamicRenderResponseIntoCache)(h,r.FetchStrategy.PPRRuntime,a.flightDatas,a.buildId,a.isResponsePartial,a.headVaryParams,a.staleAt,a.navigationSeed,null)}).catch(()=>{});let l=(0,v.computeDynamicStaleAt)(h,g.dynamicStaleTime);return{exitStatus:+!!function a(b,c,d,e,f,g){0===b.status&&null!==d&&(b.status=1,function(a,b,c,d){let e=a.rsc,f=b[0];if(null===f)return;null===e?a.rsc=f:M(e)&&e.resolve(f,d);let g=a.head;M(g)&&g.resolve(c,d)}(b.node,d,e,g),(0,v.updateBFCacheEntryStaleAt)(c.varyPath,f));let h=b.children,j=c.slots,k=null!==d?d[1]:null,l=!1;if(null!==h)if(null!==j)for(let b in j){let c=j[b],d=null!==k?k[b]:null,m=h.get(b);if(void 0===m)l=!0;else{let b=m.route[0],h=B(c);(0,i.matchSegment)(h,b)&&null!=d&&a(m,c,d,e,f,g)&&(l=!0)}}else null!==j&&(l=!0);return l}(a,j.routeTree,j.data,j.head,l,g.debugInfo),url:new URL(g.canonicalUrl,location.origin),seed:j}}catch{return{exitStatus:2,url:c,seed:null}}}let L=Symbol();function M(a){return a&&"object"==typeof a&&a.tag===L}function N(){let a,b,c=[],d=new Promise((c,d)=>{a=c,b=d});return d.status="pending",d.resolve=(b,e)=>{"pending"===d.status&&(d.status="fulfilled",d.value=b,null!==e&&c.push.apply(c,e),a(b))},d.reject=(a,e)=>{"pending"===d.status&&(d.status="rejected",d.reason=a,null!==e&&c.push.apply(c,e),b(a))},d.tag=L,d._debugInfo=c,d}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},19924,(a,b,c)=>{"use strict";function d(a){return a.startsWith("/")?a:`/${a}`}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"ensureLeadingSlash",{enumerable:!0,get:function(){return d}})},53808,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={compareAppPaths:function(){return i},normalizeAppPath:function(){return h},normalizeRscURL:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(19924),g=a.r(39118);function h(a){return(0,f.ensureLeadingSlash)(a.split("/").reduce((a,b,c,d)=>!b||(0,g.isGroupSegment)(b)||"@"===b[0]||("page"===b||"route"===b)&&c===d.length-1?a:`${a}/${b}`,""))}function i(a,b){let c=a.includes("/@"),d=b.includes("/@");return c&&!d?-1:!c&&d?1:a.localeCompare(b)}function j(a){return a.replace(/\.rsc($|\?)/,"$1")}},18099,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={INTERCEPTION_ROUTE_MARKERS:function(){return g},extractInterceptionRouteInformation:function(){return i},isInterceptionRouteAppPath:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(53808),g=["(..)(..)","(.)","(..)","(...)"];function h(a){return void 0!==a.split("/").find(a=>g.find(b=>a.startsWith(b)))}function i(a){let b,c,d;for(let e of a.split("/"))if(c=g.find(a=>e.startsWith(a))){[b,d]=a.split(c,2);break}if(!b||!c||!d)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Must be in the format //(..|...|..)(..)/`),"__NEXT_ERROR_CODE",{value:"E269",enumerable:!1,configurable:!0});switch(b=(0,f.normalizeAppPath)(b),c){case"(.)":d="/"===b?`/${d}`:b+"/"+d;break;case"(..)":if("/"===b)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Cannot use (..) marker at the root level, use (.) instead.`),"__NEXT_ERROR_CODE",{value:"E207",enumerable:!1,configurable:!0});d=b.split("/").slice(0,-1).concat(d).join("/");break;case"(...)":d="/"+d;break;case"(..)(..)":let e=b.split("/");if(e.length<=2)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Cannot use (..)(..) marker at the root level or one level up.`),"__NEXT_ERROR_CODE",{value:"E486",enumerable:!1,configurable:!0});d=e.slice(0,-2).concat(d).join("/");break;default:throw Object.defineProperty(Error("Invariant: unexpected marker"),"__NEXT_ERROR_CODE",{value:"E112",enumerable:!1,configurable:!0})}return{interceptingRoute:b,interceptedRoute:d}}},37042,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={computeChangedPath:function(){return n},extractPathFromFlightRouterState:function(){return l},extractSourcePageFromFlightRouterState:function(){return m},getSelectedParams:function(){return function a(b,c={}){for(let d of Object.values(b[1])){let b=d[0],e=Array.isArray(b),f=e?b[1]:b;!f||f.startsWith(g.PAGE_SEGMENT_KEY)||(e&&("c"===b[2]||"oc"===b[2])?c[b[0]]=b[1].split("/"):e&&(c[b[0]]=b[1]),c=a(d,c))}return c}}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(18099),g=a.r(39118),h=a.r(30641),i=a=>"/"===a[0]?a.slice(1):a,j=a=>"string"==typeof a?"children"===a?"":a:a[1];function k(a){return a.reduce((a,b)=>""===(b=i(b))||(0,g.isGroupSegment)(b)?a:`${a}/${b}`,"")||"/"}function l(a){let b=Array.isArray(a[0])?a[0][1]:a[0];if(b===g.DEFAULT_SEGMENT_KEY||f.INTERCEPTION_ROUTE_MARKERS.some(a=>b.startsWith(a)))return;if(b.startsWith(g.PAGE_SEGMENT_KEY))return"";let c=[j(b)],d=a[1]??{},e=d.children?l(d.children):void 0;if(void 0!==e)c.push(e);else for(let[a,b]of Object.entries(d)){if("children"===a)continue;let d=l(b);void 0!==d&&c.push(d)}return k(c)}function m(a){let b=function a(b){let c=(a=>{if("string"==typeof a)return"children"===a?"":a.startsWith(g.PAGE_SEGMENT_KEY)?"page":a;let[b,,c]=a;switch(c){case"c":return`[...${b}]`;case"ci(..)(..)":return`(..)(..)[...${b}]`;case"ci(.)":return`(.)[...${b}]`;case"ci(..)":return`(..)[...${b}]`;case"ci(...)":return`(...)[...${b}]`;case"oc":return`[[...${b}]]`;case"d":default:return`[${b}]`;case"di(..)(..)":return`(..)(..)[${b}]`;case"di(.)":return`(.)[${b}]`;case"di(..)":return`(..)[${b}]`;case"di(...)":return`(...)[${b}]`}})(b[0]);if(c===g.DEFAULT_SEGMENT_KEY)return;if("page"===c)return[c];let d=b[1]??{},e=d.children?a(d.children):void 0;if(void 0!==e)return""===c?e:[i(c),...e];for(let[b,e]of Object.entries(d)){if("children"===b)continue;let d=a(e);if(void 0!==d)return""===c?d:[i(c),...d]}}(a);return b?`/${b.join("/")}`:void 0}function n(a,b){let c=function a(b,c){let[d,e]=b,[g,i]=c,k=j(d),m=j(g);if(f.INTERCEPTION_ROUTE_MARKERS.some(a=>k.startsWith(a)||m.startsWith(a)))return"";if(!(0,h.matchSegment)(d,g))return l(c)??"";for(let b in e)if(i[b]){let c=a(e[b],i[b]);if(null!==c)return`${j(g)}/${c}`}return null}(a,b);return null==c||"/"===c?c:k(c.split("/"))}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},27190,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"isJavaScriptURLString",{enumerable:!0,get:function(){return e}});let d=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function e(a){return d.test(""+a)}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},11675,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={isNavigationLocked:function(){return i},startListeningForInstantNavigationCookie:function(){return f},transitionToCapturedSPA:function(){return g},updateCapturedSPAToTree:function(){return h},waitForNavigationLockIfActive:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(){}function g(a,b){}function h(a,b){}function i(){return!1}async function j(){}a.r(37909),a.r(90841),("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},37472,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={completeHardNavigation:function(){return w},completeSoftNavigation:function(){return x},completeTraverseNavigation:function(){return y},convertServerPatchToFullTree:function(){return z},navigate:function(){return r},navigateToKnownRoute:function(){return s}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(20873),g=a.r(57051),h=a.r(74685),i=a.r(72006),j=a.r(99032),k=a.r(52052),l=a.r(92702);a.r(42297);let m=a.r(10846);a.r(16441);let n=a.r(88347),o=a.r(37042),p=a.r(27190),q=a.r(36085);function r(a,b,c,d,e,f,g,h,i,k){return function(a,b,c,d,e,f,g,h,i,k){let m=Date.now(),n=b.href,o=(0,l.createCacheKey)(n,g),p=(0,j.readRouteCacheEntry)(m,o);if(null!==p&&p.status===j.EntryStatus.Fulfilled)return t(m,a,b,c,d,g,e,f,h,i,k,p);if(null===p||p.status!==j.EntryStatus.Rejected){let l=(0,j.deprecated_requestOptimisticRouteCacheEntry)(m,b,g);if(null!==l)return t(m,a,b,c,d,g,e,f,h,i,k,l)}return v(m,a,b,c,d,g,e,f,h,i,k).catch(()=>a)}(a,b,c,d,e,f,g,h,i,k)}function s(a,b,c,d,e,f,h,i,j,k,l,m,n,o,p){let q={separateRefreshUrls:null,scrollRef:null},r=c.href===f.href,s=(0,g.startPPRNavigation)(a,f,h,i,j,e.routeTree,e.metadataVaryPath,k,e.data,e.head,e.dynamicStaleAt,r,q);return null!==s?(k!==g.FreshnessPolicy.Gesture&&(0,g.spawnDynamicRequests)(s,c,l,k,q,p,n),x(b,c,l,s.route,s.node,e.renderedSearch,d,n,m,q.scrollRef,o)):w(b,c,n)}function t(a,b,c,d,e,f,g,h,i,j,k,l){let m=l.tree,n=l.canonicalUrl+c.hash,o={renderedSearch:l.renderedSearch,routeTree:m,metadataVaryPath:l.metadata.varyPath,data:null,head:null,dynamicStaleAt:(0,q.computeDynamicStaleAt)(a,q.UnknownDynamicStaleTime)};return s(a,b,c,n,o,d,e,g,h,i,f,j,k,null,l)}let u=["",{},null,"refetch"];async function v(a,b,c,d,e,l,n,o,p,q,r){let t;switch(p){case g.FreshnessPolicy.Default:case g.FreshnessPolicy.HistoryTraversal:case g.FreshnessPolicy.Gesture:t=o;break;case g.FreshnessPolicy.Hydration:case g.FreshnessPolicy.RefreshAll:case g.FreshnessPolicy.HMRRefresh:t=u;break;default:t=o}let v=(0,f.fetchServerResponse)(c,{flightRouterState:t,nextUrl:l}),x=await v;if("string"==typeof x)return w(b,new URL(x,location.origin),r);let{flightData:y,canonicalUrl:A,renderedSearch:B,couldBeIntercepted:C,supportsPerSegmentPrefetching:D,dynamicStaleTime:E,staticStageData:F,runtimePrefetchStream:G,responseHeaders:H,debugInfo:I}=x,J=z(a,o,y,B,E),K=J.metadataVaryPath;if(null!==K){if((0,k.discoverKnownRoute)(a,c.pathname,l,null,J.routeTree,K,C,(0,h.createHrefFromUrl)(A),D,!1),null!==F){let{response:b,isResponsePartial:c}=F;(0,j.getStaleAt)(a,b.s).then(d=>{let e=H.get(i.NEXT_NAV_DEPLOYMENT_ID_HEADER)??b.b;(0,j.writeStaticStageResponseIntoCache)(a,b.f,e,b.h,d,o,B,c)}).catch(()=>{})}null!==G&&(0,j.processRuntimePrefetchStream)(a,G,o,B).then(b=>{null!==b&&(0,j.writeDynamicRenderResponseIntoCache)(a,m.FetchStrategy.PPRRuntime,b.flightDatas,b.buildId,b.isResponsePartial,b.headVaryParams,b.staleAt,b.navigationSeed,null)}).catch(()=>{})}return s(a,b,c,(0,h.createHrefFromUrl)(A),J,d,e,n,o,p,l,q,r,I,null)}function w(a,b,c){return(0,p.isJavaScriptURLString)(b.href)?(console.error("Next.js has blocked a javascript: URL as a security precaution."),a):{canonicalUrl:b.origin===location.origin?(0,h.createHrefFromUrl)(b):b.href,pushRef:{pendingPush:"push"===c,mpaNavigation:!0,preserveCustomHistoryState:!1},renderedSearch:a.renderedSearch,focusAndScrollRef:a.focusAndScrollRef,cache:a.cache,tree:a.tree,nextUrl:a.nextUrl,previousNextUrl:a.previousNextUrl,debugInfo:null}}function x(a,b,c,d,e,f,g,h,i,j,k){let l,m,p=(0,o.computeChangedPath)(a.tree,d)||a.nextUrl,q=new URL(a.canonicalUrl,b),r=b.pathname===q.pathname&&b.search===q.search&&b.hash!==q.hash;if(i===n.ScrollBehavior.NoScroll)null!==j&&(j.current=!1),l=a.focusAndScrollRef.scrollRef,m=!1;else if(r){let b=a.focusAndScrollRef.scrollRef;null!==b&&(b.current=!1),null!==j&&(j.current=!1),l={current:!0},m=!0}else{if(l=j,null!==j){let b=a.focusAndScrollRef.scrollRef;null!==b&&(b.current=!1)}m=!1}return{canonicalUrl:g,renderedSearch:f,pushRef:{pendingPush:"push"===h,mpaNavigation:!1,preserveCustomHistoryState:!1},focusAndScrollRef:{scrollRef:l,forceScroll:m,onlyHashChange:r,hashFragment:i!==n.ScrollBehavior.NoScroll&&""!==b.hash?decodeURIComponent(b.hash.slice(1)):a.focusAndScrollRef.hashFragment},cache:e,tree:d,nextUrl:p,previousNextUrl:c,debugInfo:k}}function y(a,b,c,d,e,f){return{canonicalUrl:(0,h.createHrefFromUrl)(b),renderedSearch:c,pushRef:{pendingPush:!1,mpaNavigation:!1,preserveCustomHistoryState:!0},focusAndScrollRef:a.focusAndScrollRef,cache:d,tree:e,nextUrl:f,previousNextUrl:null,debugInfo:null}}function z(a,b,c,d,e){let f=b,g=null,h=null;if(null!==c)for(let{segmentPath:a,tree:b,seedData:e,head:i}of c){let c=function a(b,c,d,e,f,g,h){let i;if(h===f.length)return{tree:d,data:e};let j=f[h],k=b[1],l=null!==c?c[1]:null,m={},n={};for(let b in k){let c=k[b],i=null!==l?l[b]??null:null;if(b===j){let j=a(c,i,d,e,f,g,h+2);m[b]=j.tree,n[b]=j.data}else m[b]=c,n[b]=i}if(i=[b[0],m],2 in b){let a=b[2];null!=a&&(i[2]=[a[0],g])}return 3 in b&&(i[3]=b[3]),4 in b&&(i[4]=b[4]),{tree:i,data:[null,n,null,!0,null]}}(f,g,b,e,a,d,0);f=c.tree,g=c.data,h=i}let i=f,k={metadataVaryPath:null};return{routeTree:(0,j.convertRootFlightRouterStateToRouteTree)(i,d,k),metadataVaryPath:k.metadataVaryPath,data:g,renderedSearch:d,head:h,dynamicStaleAt:(0,q.computeDynamicStaleAt)(a,e)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},23053,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DYNAMIC_STALETIME_MS:function(){return i},STATIC_STALETIME_MS:function(){return j},navigateReducer:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(37472),g=a.r(99032),h=a.r(57051),i=1e3*Number("0"),j=(0,g.getStaleTimeMs)(Number("300"));function k(a,b){let{url:c,isExternalUrl:d,navigateType:e,scrollBehavior:g}=b;if(d||document.getElementById("__next-page-redirect"))return(0,f.completeHardNavigation)(a,c,e);let i=new URL(a.canonicalUrl,location.origin),j=a.renderedSearch;return(0,f.navigate)(a,c,i,j,a.cache,a.tree,a.nextUrl,h.FreshnessPolicy.Default,g,e)}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},36085,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={UnknownDynamicStaleTime:function(){return h},computeDynamicStaleAt:function(){return i},invalidateBfCache:function(){return j},readFromBFCache:function(){return n},readFromBFCacheDuringRegularNavigation:function(){return o},updateBFCacheEntryStaleAt:function(){return m},writeHeadToBFCache:function(){return l},writeToBFCache:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(23053),g=a.r(51561),h=-1;function i(a,b){return b!==h?a+1e3*b:a+f.DYNAMIC_STALETIME_MS}function j(){}function k(a,b,c,d,e,f,g){}function l(a,b,c,d,e){k(a,b,c,d,null,null,e)}function m(a,b){}function n(a){return null}function o(a,b){return null}(0,g.createCacheMap)(),("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},20873,(a,b,c)=>{"use strict";let d;Object.defineProperty(c,"__esModule",{value:!0});var e={createFetch:function(){return y},createFromNextReadableStream:function(){return z},decodeStaticStage:function(){return x},fetchServerResponse:function(){return u},processFetch:function(){return v},resolveStaticStageData:function(){return w}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});let g=a.r(38783);a.r(88644);let h=a.r(37909),i=a.r(20611),j=a.r(1722),k=a.r(22129),l=a.r(25744),m=a.r(23187),n=a.r(68063),o=a.r(16438),p=a.r(72006);a.r(99032);let q=a.r(36085),r=g.createFromReadableStream,s=g.createFromFetch;function t(a){return(0,m.urlToUrlWithoutFlightMarker)(new URL(a,location.origin)).toString()}async function u(a,b){let{flightRouterState:c,nextUrl:d}=b,e={[h.RSC_HEADER]:"1",[h.NEXT_ROUTER_STATE_TREE_HEADER]:(0,k.prepareFlightRouterStateForRequest)(c,b.isHmrRefresh)};d&&(e[h.NEXT_URL]=d);try{let b=await y(a,e,"auto",!0),c=(0,m.urlToUrlWithoutFlightMarker)(new URL(b.url)),d=b.redirected?c:a,f=b.headers.get("content-type")||"",g=!!b.headers.get("vary")?.includes(h.NEXT_URL),i=!!b.headers.get(h.NEXT_DID_POSTPONE_HEADER);if(!f.startsWith(h.RSC_CONTENT_TYPE_HEADER)||!b.ok||!b.body)return a.hash&&(c.hash=a.hash),t(c.toString());let j=b.flightResponsePromise;null===j&&(j=z(b.body,e,{allowPartialStream:i}));let[l,n]=await Promise.all([j,b.cacheData]);if((b.headers.get(p.NEXT_NAV_DEPLOYMENT_ID_HEADER)??l.b)!==(0,o.getNavigationBuildId)())return t(b.url);let r=(0,k.normalizeFlightData)(l.f);if("string"==typeof r)return t(r);let s=null!==n?await w(n,l,e):null;return{flightData:r,canonicalUrl:d,renderedSearch:l.q,couldBeIntercepted:g,supportsPerSegmentPrefetching:l.S,postponed:i,dynamicStaleTime:l.d??q.UnknownDynamicStaleTime,staticStageData:s,runtimePrefetchStream:l.p??null,responseHeaders:b.headers,debugInfo:j._debugInfo??null}}catch(b){return console.error(`Failed to fetch RSC payload for ${a}. Falling back to browser navigation.`,b),a.toString()}}async function v(a){return{response:a,cacheData:null}}async function w(a,b,c){let{isResponsePartial:d,responseBodyClone:e}=a;if(e){if(!d)return e.cancel(),{response:b,isResponsePartial:!1};if(void 0!==b.l)return{response:await x(e,b.l,c),isResponsePartial:!0};e.cancel()}return null}async function x(a,b,c){var d,e;let f,g;return z((d=a,e=await b,f=d.getReader(),g=e,new ReadableStream({async pull(a){if(g<=0){f.cancel(),a.close();return}let{done:b,value:c}=await f.read();b?a.close():c.byteLength<=g?(a.enqueue(c),g-=c.byteLength):(a.enqueue(c.subarray(0,g)),g=0,f.cancel(),a.close())},cancel(){f.cancel()}})),c,{allowPartialStream:!0})}async function y(a,b,c,e,f){var g,k;let m=(0,n.getDeploymentId)();m&&(b["x-deployment-id"]=m);let o=new URL(a);await (0,l.setCacheBustingSearchParam)(o,b);let p=fetch(o,{credentials:"same-origin",headers:b,priority:c||void 0,signal:f}).then(v),q=p.then(({response:a})=>a),r=e?(g=q,k=b,s(g,{callServer:i.callServer,findSourceMapURL:j.findSourceMapURL,debugChannel:d&&d(k)})):null,t=await q,u=t.redirected,w=new URL(t.url,o);return w.searchParams.delete(h.NEXT_RSC_UNION_QUERY),{url:w.href,redirected:u,ok:t.ok,headers:t.headers,body:t.body,status:t.status,flightResponsePromise:r,cacheData:p.then(({cacheData:a})=>a)}}function z(a,b,c){return r(a,{callServer:i.callServer,findSourceMapURL:j.findSourceMapURL,debugChannel:d&&d(b),unstable_allowPartialStream:c?.allowPartialStream})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},54427,(a,b,c)=>{"use strict";function d(){let a,b,c=new Promise((c,d)=>{a=c,b=d});return{resolve:a,reject:b,promise:c}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createPromiseWithResolvers",{enumerable:!0,get:function(){return d}})},99032,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d,e={EntryStatus:function(){return C},attemptToFulfillDynamicSegmentFromBFCache:function(){return aa},attemptToUpgradeSegmentFromBFCache:function(){return ab},canNewFetchStrategyProvideMoreContent:function(){return aw},convertReusedFlightRouterStateToRouteTree:function(){return al},convertRootFlightRouterStateToRouteTree:function(){return ak},convertRouteTreeToFlightRouterState:function(){return function a(b){let c={};if(null!==b.slots)for(let d in b.slots)c[d]=a(b.slots[d]);return[b.segment,c,null,null]}},createDetachedSegmentCacheEntry:function(){return $},createMetadataRouteTree:function(){return ad},deprecated_requestOptimisticRouteCacheEntry:function(){return U},fetchInlinedSegmentsOnCacheMiss:function(){return ap},fetchRouteOnCacheMiss:function(){return an},fetchSegmentOnCacheMiss:function(){return ao},fetchSegmentPrefetchesUsingDynamicRequest:function(){return aq},fulfillRouteCacheEntry:function(){return ae},getCurrentRouteCacheVersion:function(){return J},getCurrentSegmentCacheVersion:function(){return K},getStaleAt:function(){return az},getStaleTimeMs:function(){return B},invalidateEntirePrefetchCache:function(){return L},invalidateRouteCacheEntries:function(){return M},invalidateSegmentCacheEntries:function(){return N},markRouteEntryAsDynamicRewrite:function(){return ag},overwriteRevalidatingSegmentCacheEntry:function(){return Y},pingInvalidationListeners:function(){return O},processRuntimePrefetchStream:function(){return aB},readOrCreateRevalidatingSegmentEntry:function(){return X},readOrCreateRouteCacheEntry:function(){return T},readOrCreateSegmentCacheEntry:function(){return W},readRouteCacheEntry:function(){return P},readSegmentCacheEntry:function(){return Q},stripIsPartialByte:function(){return aC},upgradeToPendingSegment:function(){return _},upsertSegmentEntry:function(){return Z},waitForSegmentCacheEntry:function(){return R},writeDynamicRenderResponseIntoCache:function(){return as},writeRouteIntoCache:function(){return af},writeStaticStageResponseIntoCache:function(){return aA}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});let g=a.r(21341),h=a.r(37909),i=a.r(20873),j=a.r(42297),k=a.r(91442),l=a.r(74685),m=a.r(92702),n=a.r(23187),o=a.r(51561),p=a.r(58216),q=a.r(22129),r=a.r(23053),s=a.r(16441),t=a.r(39118),u=a.r(10846),v=a.r(54427),w=a.r(36085),x=a.r(52052),y=a.r(37472),z=a.r(16438),A=a.r(72006);function B(a){return 1e3*Math.max(a,30)}var C=((d={})[d.Empty=0]="Empty",d[d.Pending=1]="Pending",d[d.Fulfilled=2]="Fulfilled",d[d.Rejected=3]="Rejected",d);let D=["",{},null,"metadata-only"],E=(0,o.createCacheMap)(),F=(0,o.createCacheMap)(),G=null,H=0,I=0;function J(){return H}function K(){return I}function L(a,b){H++,I++,(0,s.pingVisibleLinks)(a,b),O(a,b)}function M(a,b){H++,(0,s.pingVisibleLinks)(a,b),O(a,b)}function N(a,b){I++,(0,s.pingVisibleLinks)(a,b),O(a,b)}function O(a,b){if(null!==G){let c=G;for(let d of(G=null,c))(0,j.isPrefetchTaskDirty)(d,a,b)&&function(a){let b=a.onInvalidate;if(null!==b){a.onInvalidate=null;try{b()}catch(a){"function"==typeof reportError?reportError(a):console.error(a)}}}(d)}}function P(a,b){let c=(0,k.getRouteVaryPath)(b.pathname,b.search,b.nextUrl),d=(0,o.getFromCacheMap)(a,H,E,c,!1);return null!==d?d:null}function Q(a,b){return(0,o.getFromCacheMap)(a,I,F,b,!1)}function R(a){let b=a.promise;return null===b&&(b=a.promise=(0,v.createPromiseWithResolvers)()),b.promise}function S(){return{canonicalUrl:null,status:0,blockedTasks:null,tree:null,metadata:null,couldBeIntercepted:!0,supportsPerSegmentPrefetching:!1,renderedSearch:null,ref:null,size:0,staleAt:1/0,version:H}}function T(a,b,c){null!==b.onInvalidate&&(null===G?G=new Set([b]):G.add(b));let d=P(a,c);if(null!==d)return d;let e=S(),f=(0,k.getRouteVaryPath)(c.pathname,c.search,c.nextUrl);return(0,o.setInCacheMap)(E,f,e,!1),e}function U(a,b,c){let d=b.search;if(""===d)return null;let e=new URL(b);e.search="";let f=P(a,(0,m.createCacheKey)(e.href,c));if(null===f||2!==f.status)return null;let g=new URL(f.canonicalUrl,b.origin),h=""!==g.search?g.search:d,i=""!==f.renderedSearch?f.renderedSearch:d,j=new URL(f.canonicalUrl,location.origin);return j.search=h,{canonicalUrl:(0,l.createHrefFromUrl)(j),status:2,blockedTasks:null,tree:V(f.tree,i),metadata:V(f.metadata,i),couldBeIntercepted:f.couldBeIntercepted,supportsPerSegmentPrefetching:f.supportsPerSegmentPrefetching,hasDynamicRewrite:f.hasDynamicRewrite,renderedSearch:i,ref:null,size:0,staleAt:f.staleAt,version:f.version}}function V(a,b){let c=null,d=a.slots;if(null!==d)for(let a in c={},d){let e=d[a];c[a]=V(e,b)}return a.isPage?{requestKey:a.requestKey,segment:a.segment,refreshState:a.refreshState,varyPath:(0,k.clonePageVaryPathWithNewSearchParams)(a.varyPath,b),isPage:!0,slots:c,prefetchHints:a.prefetchHints}:{requestKey:a.requestKey,segment:a.segment,refreshState:a.refreshState,varyPath:a.varyPath,isPage:!1,slots:c,prefetchHints:a.prefetchHints}}function W(a,b,c){let d=Q(a,c.varyPath);if(null!==d)return d;let e=(0,k.getSegmentVaryPathForRequest)(b,c),f=$(a);return(0,o.setInCacheMap)(F,e,f,!1),f}function X(a,b,c){var d;let e=(d=c.varyPath,(0,o.getFromCacheMap)(a,I,F,d,!0));if(null!==e)return e;let f=(0,k.getSegmentVaryPathForRequest)(b,c),g=$(a);return(0,o.setInCacheMap)(F,f,g,!0),g}function Y(a,b,c){let d=(0,k.getSegmentVaryPathForRequest)(b,c),e=$(a);return(0,o.setInCacheMap)(F,d,e,!0),e}function Z(a,b,c){if((0,o.isValueExpired)(a,I,c))return null;let d=Q(a,b);if(null!==d){var e;if(c.fetchStrategy!==d.fetchStrategy&&(e=d.fetchStrategy,!(ec?null:ah(_(b,u.FetchStrategy.Full),e.rsc,c,!1)}return null}function ab(a,b){let c=b.varyPath,d=(0,w.readFromBFCache)(c);if(null!==d){let c=d.navigatedAt+r.STATIC_STALETIME_MS;if(a>c)return null;let e=ah(_($(a),u.FetchStrategy.Full),d.rsc,c,!1),f=Z(a,(0,k.getSegmentVaryPathForRequest)(u.FetchStrategy.Full,b),e);if(null!==f&&2===f.status)return f}return null}function ac(a){let b=a.blockedTasks;if(null!==b){for(let a of b)(0,j.pingPrefetchTask)(a);a.blockedTasks=null}}function ad(a){return{requestKey:p.HEAD_REQUEST_KEY,segment:p.HEAD_REQUEST_KEY,refreshState:null,varyPath:a,isPage:!0,slots:null,prefetchHints:0}}function ae(a,b,c,d,e,f,g){let h=(0,k.getRenderedSearchFromVaryPath)(d)??"";return b.status=2,b.tree=c,b.metadata=ad(d),b.staleAt=a+r.STATIC_STALETIME_MS,b.couldBeIntercepted=e,b.canonicalUrl=f,b.renderedSearch=h,b.supportsPerSegmentPrefetching=g,b.hasDynamicRewrite=!1,ac(b),b}function af(a,b,c,d,e,f,g,h){let i=ae(a,S(),d,e,f,g,h),j=i.renderedSearch,l=(0,k.getFulfilledRouteVaryPath)(b,j,c,f);return(0,o.setInCacheMap)(E,l,i,!1),i}function ag(a){a.hasDynamicRewrite=!0}function ah(a,b,c,d){return a.status=2,a.rsc=b,a.staleAt=c,a.isPartial=d,null!==a.promise&&(a.promise.resolve(a),a.promise=null),a}function ai(a,b){a.status=3,a.staleAt=b,ac(a)}function aj(a,b){a.status=3,a.staleAt=b,null!==a.promise&&(a.promise.resolve(null),a.promise=null)}function ak(a,b,c){return am(a,p.ROOT_SEGMENT_REQUEST_KEY,null,b,c)}function al(a,b,c,d,e){let f=a.isPage?(0,k.getPartialPageVaryPath)(a.varyPath):(0,k.getPartialLayoutVaryPath)(a.varyPath),g=c[0],h=a.requestKey,i=(0,p.createSegmentRequestKeyPart)(g);return am(c,(0,p.appendSegmentRequestKeyPart)(h,b,i),f,d,e)}function am(a,b,c,d,e){let f,g,h,i,j=a[0],l=a[2]??null,m=null!==l?{canonicalUrl:l[0],renderedSearch:l[1]}:null,n=null!==m?m.renderedSearch:d;if(Array.isArray(j)){h=!1;let a=j[1],d=j[0];g=(0,k.appendLayoutVaryPath)(c,a,d),i=(0,k.finalizeLayoutVaryPath)(b,g),f=j}else g=c,b.endsWith(t.PAGE_SEGMENT_KEY)?(h=!0,f=t.PAGE_SEGMENT_KEY,i=(0,k.finalizePageVaryPath)(b,n,g),null===e.metadataVaryPath&&(e.metadataVaryPath=(0,k.finalizeMetadataVaryPath)(b,n,g))):(h=!1,f=j,i=(0,k.finalizeLayoutVaryPath)(b,g));let o=null,q=a[1];for(let a in q){let c=q[a],d=c[0],f=(0,p.createSegmentRequestKeyPart)(d),h=am(c,(0,p.appendSegmentRequestKeyPart)(b,a,f),g,n,e);null===o?o={[a]:h}:o[a]=h}return{requestKey:b,segment:f,refreshState:m,varyPath:i,isPage:h,slots:o,prefetchHints:a[4]??0}}async function an(a,b){let c=b.pathname,d=b.search,e=b.nextUrl,f={[h.RSC_HEADER]:"1",[h.NEXT_ROUTER_PREFETCH_HEADER]:"1",[h.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:"/_tree"};null!==e&&(f[h.NEXT_URL]=e),ax(f);try{let b,j,m=new URL(c+d,location.origin);if(b=await au(m,f),j=null!==b&&b.redirected?new URL(b.url):m,!b||!b.ok||204===b.status||!b.body)return ai(a,Date.now()+1e4),null;let r=(0,l.createHrefFromUrl)(j),s=b.headers.get("vary"),B=null!==s&&s.includes(h.NEXT_URL),C=(0,v.createPromiseWithResolvers)(),D="2"===b.headers.get(h.NEXT_DID_POSTPONE_HEADER);if(D){let d,g,{stream:h,size:j}=await av(b.body);C.resolve(),(0,o.setSizeInCacheMap)(a,j);let l=await (0,i.createFromNextReadableStream)(h,f,{allowPartialStream:!0});if((b.headers.get(A.NEXT_NAV_DEPLOYMENT_ID_HEADER)??l.buildId)!==(0,z.getNavigationBuildId)())return ai(a,Date.now()+1e4),null;let m=(0,n.getRenderedPathname)(b),q=(0,n.getRenderedSearch)(b),s={metadataVaryPath:null},u=(d=m.split("/").filter(a=>""!==a),g=p.ROOT_SEGMENT_REQUEST_KEY,function a(b,c,d,e,f,g,h,i){let j,l,m=null,o=b.slots;if(null!==o)for(let b in j=!1,l=(0,k.finalizeLayoutVaryPath)(e,d),m={},o){let c,j,l,q=o[b],r=q.name,s=q.param;if(null!==s){let a=(0,n.parseDynamicParamFromURLPart)(s.type,f,g),b=null!==s.key?s.key:(0,n.getCacheKeyForDynamicParam)(a,"");l=(0,k.appendLayoutVaryPath)(d,b,r),j=[r,b,s.type,s.siblings],c=!0}else l=d,j=r,c=(0,n.doesStaticSegmentAppearInURL)(r);let t=c?g+1:g,u=(0,p.createSegmentRequestKeyPart)(j),v=(0,p.appendSegmentRequestKeyPart)(e,b,u);m[b]=a(q,j,l,v,f,t,h,i)}else e.endsWith(t.PAGE_SEGMENT_KEY)?(j=!0,l=(0,k.finalizePageVaryPath)(e,h,d),null===i.metadataVaryPath&&(i.metadataVaryPath=(0,k.finalizeMetadataVaryPath)(e,h,d))):(j=!1,l=(0,k.finalizeLayoutVaryPath)(e,d));return{requestKey:e,segment:c,refreshState:null,varyPath:l,isPage:j,slots:m,prefetchHints:b.prefetchHints}}(l.tree,g,null,p.ROOT_SEGMENT_REQUEST_KEY,d,0,q,s)),v=s.metadataVaryPath;if(null===v)return ai(a,Date.now()+1e4),null;(0,x.discoverKnownRoute)(Date.now(),c,e,a,u,v,B,r,D,!1)}else{let{stream:d,size:j}=await av(b.body);C.resolve(),(0,o.setSizeInCacheMap)(a,j);let k=await (0,i.createFromNextReadableStream)(d,f,{allowPartialStream:!0});if((b.headers.get(A.NEXT_NAV_DEPLOYMENT_ID_HEADER)??k.b)!==(0,z.getNavigationBuildId)())return ai(a,Date.now()+1e4),null;let l=k.h,m=null!==l?(0,g.readVaryParams)(l):null;!function(a,b,c,d,e,f,g,i,j,k,l){let m=(0,n.getRenderedSearch)(c),o=(0,q.normalizeFlightData)(d.f);if("string"==typeof o||1!==o.length)return ai(e,a+1e4);let p=o[0];if(!p.isRootRender)return ai(e,a+1e4);let r=p.tree,s="1"===c.headers.get(h.NEXT_DID_POSTPONE_HEADER),t={metadataVaryPath:null},u=ak(r,m,t),v=t.metadataVaryPath;if(null===v)return ai(e,a+1e4);(0,x.discoverKnownRoute)(a,k,l,e,u,v,f,g,i,!1);let z=(0,y.convertServerPatchToFullTree)(a,r,o,m,w.UnknownDynamicStaleTime);as(a,b,o,c.headers.get(A.NEXT_NAV_DEPLOYMENT_ID_HEADER)??d.b,s,j,ay(a,c),z,null)}(Date.now(),u.FetchStrategy.LoadingBoundary,b,k,a,B,r,D,m,c,e)}if(!B){let b=(0,k.getFulfilledRouteVaryPath)(c,d,e,B);(0,o.setInCacheMap)(E,b,a,!1)}return{value:null,closed:C.promise}}catch(b){return ai(a,Date.now()+1e4),null}}async function ao(a,b,c,d){let e=new URL(a.canonicalUrl,location.origin),f=c.nextUrl,g=d.requestKey,j=g===p.ROOT_SEGMENT_REQUEST_KEY?"/_index":g,l={[h.RSC_HEADER]:"1",[h.NEXT_ROUTER_PREFETCH_HEADER]:"1",[h.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:j};null!==f&&(l[h.NEXT_URL]=f),ax(l);try{let a=await au(e,l);if(!a||!a.ok||204===a.status||"2"!==a.headers.get(h.NEXT_DID_POSTPONE_HEADER)||!a.body)return aj(b,Date.now()+1e4),null;let c=(0,v.createPromiseWithResolvers)(),{stream:f,size:g}=await av(a.body);c.resolve(),(0,o.setSizeInCacheMap)(b,g);let j=await (0,i.createFromNextReadableStream)(f,l,{allowPartialStream:!0});if((a.headers.get(A.NEXT_NAV_DEPLOYMENT_ID_HEADER)??j.buildId)!==(0,z.getNavigationBuildId)())return aj(b,Date.now()+1e4),null;let m=Date.now(),n=m+B(j.staleTime),p=ah(b,j.rsc,n,j.isPartial);j.varyParams;let q=(0,k.getSegmentVaryPathForRequest)(b.fetchStrategy,d);return Z(m,q,p),{value:p,closed:c.promise}}catch(a){return aj(b,Date.now()+1e4),null}}async function ap(a,b,c,d){let e=new URL(a.canonicalUrl,location.origin),f=b.nextUrl,g={[h.RSC_HEADER]:"1",[h.NEXT_ROUTER_PREFETCH_HEADER]:"1",[h.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:"/"+t.PAGE_SEGMENT_KEY};null!==f&&(g[h.NEXT_URL]=f),ax(g);try{let b=await au(e,g);if(!b||!b.ok||204===b.status||"2"!==b.headers.get(h.NEXT_DID_POSTPONE_HEADER)||!b.body)return ar(d,Date.now()+1e4),null;let f=(0,v.createPromiseWithResolvers)(),{stream:j}=await av(b.body);f.resolve();let k=await (0,i.createFromNextReadableStream)(j,g,{allowPartialStream:!0});if((b.headers.get(A.NEXT_NAV_DEPLOYMENT_ID_HEADER)??k.tree.segment.buildId)!==(0,z.getNavigationBuildId)())return ar(d,Date.now()+1e4),null;let l=Date.now();!function a(b,c,d,e,f){let g=e.segment,h=b+B(g.staleTime),i=f.get(d.requestKey);if(void 0!==i)ah(i,g.rsc,h,g.isPartial);else{let a=W(b,u.FetchStrategy.PPR,d);0===a.status&&ah(_(a,u.FetchStrategy.PPR),g.rsc,h,g.isPartial)}if(null!==d.slots&&null!==e.slots)for(let g in d.slots){let h=d.slots[g],i=e.slots[g];void 0!==i&&a(b,c,h,i,f)}}(l,a,c,k.tree,d);let m=l+B(k.head.staleTime),n=a.metadata.requestKey,o=d.get(n);if(void 0!==o)ah(o,k.head.rsc,m,k.head.isPartial);else{let b=W(l,u.FetchStrategy.PPR,a.metadata);0===b.status&&ah(_(b,u.FetchStrategy.PPR),k.head.rsc,m,k.head.isPartial)}return ar(d,Date.now()+1e4),{value:null,closed:f.promise}}catch(a){return ar(d,Date.now()+1e4),null}}async function aq(a,b,c,d,e){let f=a.key,j=new URL(b.canonicalUrl,location.origin),k=f.nextUrl;1===e.size&&e.has(b.metadata.requestKey)&&(d=D);let l={[h.RSC_HEADER]:"1",[h.NEXT_ROUTER_STATE_TREE_HEADER]:(0,q.prepareFlightRouterStateForRequest)(d)};switch(null!==k&&(l[h.NEXT_URL]=k),c){case u.FetchStrategy.Full:break;case u.FetchStrategy.PPRRuntime:l[h.NEXT_ROUTER_PREFETCH_HEADER]="2";break;case u.FetchStrategy.LoadingBoundary:l[h.NEXT_ROUTER_PREFETCH_HEADER]="1"}try{let a,f=await au(j,l);if(!f||!f.ok||!f.body)return ar(e,Date.now()+1e4),null;let h=(0,n.getRenderedSearch)(f);if(h!==b.renderedSearch)return ar(e,Date.now()+1e4),null;let k=(0,v.createPromiseWithResolvers)(),s=null,t=null;if(c===u.FetchStrategy.Full){var m,p,r;let b,c;m=f.body,p=k.resolve,r=function(a){if(null===s)return;let b=a/s.length;for(let a of s)(0,o.setSizeInCacheMap)(a,b)},b=0,c=m.getReader(),a=new ReadableStream({async pull(a){for(;;){let{done:d,value:e}=await c.read();if(!d){a.enqueue(e),r(b+=e.byteLength);continue}a.close(),p();return}}})}else{let{stream:b,size:c}=await av(f.body);k.resolve(),a=b,t=c}let[x,z]=await Promise.all([(0,i.createFromNextReadableStream)(a,l,{allowPartialStream:!0}),f.cacheData]),B=x.h,C=null!==B?(0,g.readVaryParams)(B):null,D=Date.now(),E=await az(D,x.s,f),F=c===u.FetchStrategy.PPRRuntime&&(z?.isResponsePartial??!1),G=f.headers.get(A.NEXT_NAV_DEPLOYMENT_ID_HEADER)??x.b,H=(0,q.normalizeFlightData)(x.f);if("string"==typeof H)return ar(e,Date.now()+1e4),null;let I=(0,y.convertServerPatchToFullTree)(D,d,H,h,w.UnknownDynamicStaleTime);if(s=as(D,c,H,G,F,C,E,I,e),null!==t&&null!==s&&s.length>0){let a=t/s.length;for(let b of s)(0,o.setSizeInCacheMap)(b,a)}return{value:null,closed:k.promise}}catch(a){return ar(e,Date.now()+1e4),null}}function ar(a,b){let c=[];for(let d of a.values())1===d.status?aj(d,b):2===d.status&&c.push(d);return c}function as(a,b,c,d,e,f,h,i,j){if(d&&d!==(0,z.getNavigationBuildId)())return null!==j&&ar(j,a+1e4),null;let k=i.routeTree,l=null!==i.metadataVaryPath?ad(i.metadataVaryPath):null;for(let d of c){let c=d.seedData;if(null!==c){let f=d.segmentPath,i=k;for(let b=0;b1){b=new Uint8Array(e);let a=0;for(let c of d)b.set(c,a),a+=c.byteLength}else b=new Uint8Array(0);return{stream:new ReadableStream({start(a){a.enqueue(b),a.close()}}),size:e}}function aw(a,b){return aa.close()}),isPartial:!1};let e=d[0],f=35===e||126===e,g=f?d.byteLength>1?d.subarray(1):null:d;return{isPartial:!!f&&126===e,stream:new ReadableStream({start(a){g&&a.enqueue(g)},async pull(a){let c=await b.read();c.done?a.close():a.enqueue(c.value)}})}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},42297,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={cancelPrefetchTask:function(){return v},isPrefetchTaskDirty:function(){return x},pingPrefetchScheduler:function(){return z},pingPrefetchTask:function(){return D},reschedulePrefetchTask:function(){return w},schedulePrefetchTask:function(){return u},startRevalidationCooldown:function(){return t}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(76e3),g=a.r(30641),h=a.r(99032),i=a.r(92702),j=a.r(10846),k=a.r(39118),l=a.r(54645),m="function"==typeof queueMicrotask?queueMicrotask:a=>Promise.resolve().then(a).catch(a=>setTimeout(()=>{throw a})),n=[],o=0,p=0,q=!1,r=null,s=null;function t(){null!==s&&clearTimeout(s),s=setTimeout(()=>{s=null,z()},300)}function u(a,b,c,d,e,f){let g={key:a,treeAtTimeOfPrefetch:b,routeCacheVersion:(0,h.getCurrentRouteCacheVersion)(),segmentCacheVersion:(0,h.getCurrentSegmentCacheVersion)(),priority:d,phase:1,hasBackgroundWork:!1,spawnedRuntimePrefetches:null,fetchStrategy:c,sortId:p++,isCanceled:!1,onInvalidate:e,_heapIndex:-1};return y(g),N(n,g),z(),g}function v(a){a.isCanceled=!0,function(a,b){let c=b._heapIndex;if(-1!==c&&(b._heapIndex=-1,0!==a.length)){let d=a.pop();d!==b&&(a[c]=d,d._heapIndex=c,S(a,d,c))}}(n,a)}function w(a,b,c,d){a.isCanceled=!1,a.phase=1,a.sortId=p++,a.priority=a===r?j.PrefetchPriority.Intent:d,a.treeAtTimeOfPrefetch=b,a.fetchStrategy=c,y(a),-1!==a._heapIndex?Q(n,a):N(n,a),z()}function x(a,b,c){return a.routeCacheVersion!==(0,h.getCurrentRouteCacheVersion)()||a.segmentCacheVersion!==(0,h.getCurrentSegmentCacheVersion)()||a.treeAtTimeOfPrefetch!==c||a.key.nextUrl!==b}function y(a){a.priority===j.PrefetchPriority.Intent&&a!==r&&(null!==r&&r.priority!==j.PrefetchPriority.Background&&(r.priority=j.PrefetchPriority.Default,Q(n,r)),r=a)}function z(){q||(q=!0,m(E))}function A(a){return null===s&&(a.priority===j.PrefetchPriority.Intent?o<12:o<4)}function B(a){return o++,a.then(a=>null===a?(C(),null):(a.closed.then(C),a.value))}function C(){o--,z()}function D(a){a.isCanceled||-1!==a._heapIndex||(N(n,a),z())}function E(){q=!1;let a=Date.now(),b=O(n);for(;null!==b&&A(b);){b.routeCacheVersion=(0,h.getCurrentRouteCacheVersion)(),b.segmentCacheVersion=(0,h.getCurrentSegmentCacheVersion)();let c=function(a,b){let c=b.key,d=(0,h.readOrCreateRouteCacheEntry)(a,b,c),e=function(a,b,c){switch(c.status){case h.EntryStatus.Empty:B((0,h.fetchRouteOnCacheMiss)(c,b.key)),c.staleAt=a+6e4,c.status=h.EntryStatus.Pending;case h.EntryStatus.Pending:{let a=c.blockedTasks;return null===a?c.blockedTasks=new Set([b]):a.add(b),1}case h.EntryStatus.Rejected:break;case h.EntryStatus.Fulfilled:{let i;if(0!==b.phase)return 2;if(!A(b))return 0;let k=c.tree;switch(i=k.prefetchHints&f.PrefetchHint.SubtreeHasInstant?j.FetchStrategy.PPR:b.fetchStrategy===j.FetchStrategy.PPR?c.supportsPerSegmentPrefetching?j.FetchStrategy.PPR:j.FetchStrategy.LoadingBoundary:b.fetchStrategy){case j.FetchStrategy.PPR:{var d,e,g;if(I(d=a,e=b,g=c,(0,h.readOrCreateSegmentCacheEntry)(d,j.FetchStrategy.PPR,g.metadata),e.key,g.metadata),0===function a(b,c,d,e,g){let i=(0,h.readOrCreateSegmentCacheEntry)(b,c.fetchStrategy,g);I(b,c,d,i,c.key,g);let j=e[1],k=g.slots;if(null!==k)for(let e in k){if(!A(c))return 0;let g=k[e],i=g.segment,l=j[e],m=l?.[0];if(0===(void 0!==m&&L(d,i,m)?a(b,c,d,l,g):function a(b,c,d,e){if(e.prefetchHints&f.PrefetchHint.HasRuntimePrefetch)return null===c.spawnedRuntimePrefetches?c.spawnedRuntimePrefetches=new Set([e.requestKey]):c.spawnedRuntimePrefetches.add(e.requestKey),2;let g=(0,h.readOrCreateSegmentCacheEntry)(b,c.fetchStrategy,e);if(I(b,c,d,g,c.key,e),null!==e.slots){if(!A(c))return 0;for(let f in e.slots)if(0===a(b,c,d,e.slots[f]))return 0}return 2}(b,c,d,g)))return 0}return 2}(a,b,c,b.treeAtTimeOfPrefetch,k))return 0;let i=b.spawnedRuntimePrefetches;if(null!==i){let d=new Map;G(a,b,c,d,j.FetchStrategy.PPRRuntime);let e=function a(b,c,d,e,f,g){if(f.has(e.requestKey))return H(b,c,d,e,!1,g,j.FetchStrategy.PPRRuntime);let h={},i=e.slots;if(null!==i)for(let e in i){let j=i[e];h[e]=a(b,c,d,j,f,g)}return[e.segment,h,null,null]}(a,b,c,k,i,d);d.size>0&&B((0,h.fetchSegmentPrefetchesUsingDynamicRequest)(b,c,j.FetchStrategy.PPRRuntime,e,d))}return 2}case j.FetchStrategy.Full:case j.FetchStrategy.PPRRuntime:case j.FetchStrategy.LoadingBoundary:{let d=new Map;G(a,b,c,d,i);let e=function a(b,c,d,e,g,i,k){let l=e[1],m=g.slots,n={};if(null!==m)for(let e in m){let g=m[e],o=g.segment,p=l[e],q=p?.[0];if(void 0!==q&&L(d,o,q)){let f=a(b,c,d,p,g,i,k);n[e]=f}else switch(k){case j.FetchStrategy.LoadingBoundary:{let a=(g.prefetchHints&(f.PrefetchHint.SegmentHasLoadingBoundary|f.PrefetchHint.SubtreeHasLoadingBoundary))!=0?function a(b,c,d,e,g,i){let k=null===g?"inside-shared-layout":null,l=(0,h.readOrCreateSegmentCacheEntry)(b,c.fetchStrategy,e);switch(l.status){case h.EntryStatus.Empty:i.set(e.requestKey,(0,h.upgradeToPendingSegment)(l,j.FetchStrategy.LoadingBoundary)),"refetch"!==g&&(k=g="refetch");break;case h.EntryStatus.Fulfilled:if((e.prefetchHints&f.PrefetchHint.SegmentHasLoadingBoundary)!=0)return(0,h.convertRouteTreeToFlightRouterState)(e);case h.EntryStatus.Pending:case h.EntryStatus.Rejected:}let m={};if(null!==e.slots)for(let f in e.slots){let h=e.slots[f];m[f]=a(b,c,d,h,g,i)}return[e.segment,m,null,k]}(b,c,d,g,null,i):(0,h.convertRouteTreeToFlightRouterState)(g);n[e]=a;break}case j.FetchStrategy.PPRRuntime:{let a=H(b,c,d,g,!1,i,k);n[e]=a;break}case j.FetchStrategy.Full:{let a=H(b,c,d,g,!1,i,k);n[e]=a}}}return[g.segment,n,null,null]}(a,b,c,b.treeAtTimeOfPrefetch,k,d,i);return d.size>0&&B((0,h.fetchSegmentPrefetchesUsingDynamicRequest)(b,c,i,e,d)),2}}}}return 2}(a,b,d);if(0!==e&&""!==c.search){let d=new URL(c.pathname,location.origin),e=(0,i.createCacheKey)(d.href,c.nextUrl),f=(0,h.readOrCreateRouteCacheEntry)(a,b,e);switch(f.status){case h.EntryStatus.Empty:F(b)&&(f.status=h.EntryStatus.Pending,B((0,h.fetchRouteOnCacheMiss)(f,e)));case h.EntryStatus.Pending:case h.EntryStatus.Fulfilled:case h.EntryStatus.Rejected:}}return e}(a,b),d=b.hasBackgroundWork;switch(b.hasBackgroundWork=!1,b.spawnedRuntimePrefetches=null,c){case 0:return;case 1:P(n),b=O(n);continue;case 2:1===b.phase?(b.phase=0,Q(n,b)):d?(b.priority=j.PrefetchPriority.Background,Q(n,b)):P(n),b=O(n);continue}}null===b&&0===o&&(0,l.cleanup)()}function F(a){return a.priority===j.PrefetchPriority.Background||(a.hasBackgroundWork=!0,!1)}function G(a,b,c,d,e){H(a,b,c,c.metadata,!1,d,e===j.FetchStrategy.LoadingBoundary?j.FetchStrategy.Full:e)}function H(a,b,c,d,e,f,g){let i=(0,h.readOrCreateSegmentCacheEntry)(a,g,d),k=null;switch(i.status){case h.EntryStatus.Empty:if(g===j.FetchStrategy.Full&&null!==(0,h.attemptToFulfillDynamicSegmentFromBFCache)(a,i,d))break;k=(0,h.upgradeToPendingSegment)(i,g);break;case h.EntryStatus.Fulfilled:if(i.isPartial&&(0,h.canNewFetchStrategyProvideMoreContent)(i.fetchStrategy,g)){if(g===j.FetchStrategy.Full&&null!==(0,h.attemptToUpgradeSegmentFromBFCache)(a,d))break;k=K(a,d,g)}break;case h.EntryStatus.Pending:case h.EntryStatus.Rejected:(0,h.canNewFetchStrategyProvideMoreContent)(i.fetchStrategy,g)&&(k=K(a,d,g))}let l={};if(null!==d.slots)for(let h in d.slots){let i=d.slots[h];l[h]=H(a,b,c,i,e||null!==k,f,g)}null!==k&&f.set(d.requestKey,k);let m=e||null===k?null:"refetch";return[d.segment,l,null,m]}function I(a,b,c,d,e,f){switch(d.status){case h.EntryStatus.Empty:B((0,h.fetchSegmentOnCacheMiss)(c,(0,h.upgradeToPendingSegment)(d,j.FetchStrategy.PPR),e,f));break;case h.EntryStatus.Pending:switch(d.fetchStrategy){case j.FetchStrategy.PPR:case j.FetchStrategy.PPRRuntime:case j.FetchStrategy.Full:break;case j.FetchStrategy.LoadingBoundary:F(b)&&J(a,c,e,f);break;default:d.fetchStrategy}break;case h.EntryStatus.Rejected:switch(d.fetchStrategy){case j.FetchStrategy.PPR:case j.FetchStrategy.PPRRuntime:case j.FetchStrategy.Full:break;case j.FetchStrategy.LoadingBoundary:J(a,c,e,f);break;default:d.fetchStrategy}case h.EntryStatus.Fulfilled:}}function J(a,b,c,d){let e=(0,h.readOrCreateRevalidatingSegmentEntry)(a,j.FetchStrategy.PPR,d);switch(e.status){case h.EntryStatus.Empty:B((0,h.fetchSegmentOnCacheMiss)(b,(0,h.upgradeToPendingSegment)(e,j.FetchStrategy.PPR),c,d));case h.EntryStatus.Pending:case h.EntryStatus.Fulfilled:case h.EntryStatus.Rejected:}}function K(a,b,c){let d=(0,h.readOrCreateRevalidatingSegmentEntry)(a,c,b);if(d.status===h.EntryStatus.Empty)return(0,h.upgradeToPendingSegment)(d,c);if((0,h.canNewFetchStrategyProvideMoreContent)(d.fetchStrategy,c)){let d=(0,h.overwriteRevalidatingSegmentCacheEntry)(a,c,b);return(0,h.upgradeToPendingSegment)(d,c)}switch(d.status){case h.EntryStatus.Pending:case h.EntryStatus.Fulfilled:case h.EntryStatus.Rejected:default:return null}}function L(a,b,c){return c===k.PAGE_SEGMENT_KEY?b===(0,k.addSearchParamsIfPageSegment)(k.PAGE_SEGMENT_KEY,Object.fromEntries(new URLSearchParams(a.renderedSearch))):(0,g.matchSegment)(c,b)}function M(a,b){let c=b.priority-a.priority;if(0!==c)return c;let d=b.phase-a.phase;return 0!==d?d:b.sortId-a.sortId}function N(a,b){let c=a.length;a.push(b),b._heapIndex=c,R(a,b,c)}function O(a){return 0===a.length?null:a[0]}function P(a){if(0===a.length)return null;let b=a[0];b._heapIndex=-1;let c=a.pop();return c!==b&&(a[0]=c,c._heapIndex=0,S(a,c,0)),b}function Q(a,b){let c=b._heapIndex;-1!==c&&(0===c?S(a,b,0):M(a[c-1>>>1],b)>0?R(a,b,c):S(a,b,c))}function R(a,b,c){let d=c;for(;d>0;){let c=d-1>>>1,e=a[c];if(!(M(e,b)>0))return;a[c]=b,b._heapIndex=c,a[d]=e,e._heapIndex=d,d=c}}function S(a,b,c){let d=c,e=a.length,f=e>>>1;for(;dM(f,b))gM(h,f)?(a[d]=h,h._heapIndex=d,a[g]=b,b._heapIndex=g,d=g):(a[d]=f,f._heapIndex=d,a[c]=b,b._heapIndex=c,d=c);else{if(!(gM(h,b)))return;a[d]=h,h._heapIndex=d,a[g]=b,b._heapIndex=g,d=g}}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},16441,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={IDLE_LINK_STATUS:function(){return l},PENDING_LINK_STATUS:function(){return k},getLinkForCurrentNavigation:function(){return o},mountFormInstance:function(){return t},mountLinkInstance:function(){return s},onLinkVisibilityChanged:function(){return v},onNavigationIntent:function(){return w},pingVisibleLinks:function(){return y},setLinkForCurrentNavigation:function(){return m},unmountLinkForCurrentNavigation:function(){return n},unmountPrefetchableInstance:function(){return u}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(10846),g=a.r(92702),h=a.r(42297),i=a.r(72131),j=null,k={pending:!0},l={pending:!1};function m(a){(0,i.startTransition)(()=>{j?.setOptimisticLinkStatus(l),a?.setOptimisticLinkStatus(k),j=a})}function n(a){j===a&&(j=null)}function o(){return j}let p="function"==typeof WeakMap?new WeakMap:new Map,q=new Set,r="function"==typeof IntersectionObserver?new IntersectionObserver(function(a){for(let b of a){let a=b.intersectionRatio>0;v(b.target,a)}},{rootMargin:"200px"}):null;function s(a,b,c,d,e,f){return{router:c,fetchStrategy:d,isVisible:!1,prefetchTask:null,prefetchHref:null,setOptimisticLinkStatus:f}}function t(a,b,c,d){}function u(a){let b=p.get(a);if(void 0!==b){p.delete(a),q.delete(b);let c=b.prefetchTask;null!==c&&(0,h.cancelPrefetchTask)(c)}null!==r&&r.unobserve(a)}function v(a,b){let c=p.get(a);void 0!==c&&(c.isVisible=b,b?q.add(c):q.delete(c),x(c,f.PrefetchPriority.Default))}function w(a,b){let c=p.get(a);void 0!==c&&void 0!==c&&x(c,f.PrefetchPriority.Intent)}function x(a,b){}function y(a,b){for(let c of q){let d=c.prefetchTask;if(null!==d&&!(0,h.isPrefetchTaskDirty)(d,a,b))continue;null!==d&&(0,h.cancelPrefetchTask)(d);let e=(0,g.createCacheKey)(c.prefetchHref,a);c.prefetchTask=(0,h.schedulePrefetchTask)(e,b,c.fetchStrategy,f.PrefetchPriority.Default,null)}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},11679,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"pathHasPrefix",{enumerable:!0,get:function(){return e}});let d=a.r(8868);function e(a,b){if("string"!=typeof a)return!1;let{pathname:c}=(0,d.parsePath)(a);return c===b||c.startsWith(b+"/")}},78897,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"hasBasePath",{enumerable:!0,get:function(){return e}});let d=a.r(11679);function e(a){return(0,d.pathHasPrefix)(a,"")}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},11762,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"isLocalURL",{enumerable:!0,get:function(){return f}});let d=a.r(46272),e=a.r(78897);function f(a){if(!(0,d.isAbsoluteUrl)(a))return!0;try{let b=(0,d.getLocationOrigin)(),c=new URL(a,b);return c.origin===b&&(0,e.hasBasePath)(c.pathname)}catch(a){return!1}}},9833,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"errorOnce",{enumerable:!0,get:function(){return d}});let d=a=>{}},38246,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return p},useLinkStatus:function(){return r}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(46058),g=a.r(87924),h=f._(a.r(72131)),i=a.r(43087),j=a.r(9270),k=a.r(8591),l=a.r(46272),m=a.r(38243);a.r(92434),a.r(88347);let n=a.r(16441);a.r(11762);let o=a.r(10846);function p(a){var b,c;let d,e,f,[p,r]=(0,h.useOptimistic)(n.IDLE_LINK_STATUS),s=(0,h.useRef)(null),{href:t,as:u,children:v,prefetch:w=null,passHref:x,replace:y,shallow:z,scroll:A,onClick:B,onMouseEnter:C,onTouchStart:D,legacyBehavior:E=!1,onNavigate:F,transitionTypes:G,ref:H,unstable_dynamicOnHover:I,...J}=a;d=v,E&&("string"==typeof d||"number"==typeof d)&&(d=(0,g.jsx)("a",{children:d}));let K=h.default.useContext(j.AppRouterContext),L=!1!==w,M=!1!==w?null===(c=w)||"auto"===c?o.FetchStrategy.PPR:o.FetchStrategy.Full:o.FetchStrategy.PPR,N="string"==typeof(b=u||t)?b:(0,i.formatUrl)(b);if(E){if(d?.$$typeof===Symbol.for("react.lazy"))throw Object.defineProperty(Error("`` received a direct child that is either a Server Component, or JSX that was loaded with React.lazy(). This is not supported. Either remove legacyBehavior, or make the direct child a Client Component that renders the Link's `` tag."),"__NEXT_ERROR_CODE",{value:"E863",enumerable:!1,configurable:!0});e=h.default.Children.only(d)}let O=E?e&&"object"==typeof e&&e.ref:H,P=h.default.useCallback(a=>(null!==K&&(s.current=(0,n.mountLinkInstance)(a,N,K,M,L,r)),()=>{s.current&&((0,n.unmountLinkForCurrentNavigation)(s.current),s.current=null),(0,n.unmountPrefetchableInstance)(a)}),[L,N,K,M,r]),Q={ref:(0,k.useMergedRef)(P,O),onClick(a){E||"function"!=typeof B||B(a),E&&e.props&&"function"==typeof e.props.onClick&&e.props.onClick(a),K&&a.defaultPrevented},onMouseEnter(a){E||"function"!=typeof C||C(a),E&&e.props&&"function"==typeof e.props.onMouseEnter&&e.props.onMouseEnter(a),K&&L&&(0,n.onNavigationIntent)(a.currentTarget,!0===I)},onTouchStart:function(a){E||"function"!=typeof D||D(a),E&&e.props&&"function"==typeof e.props.onTouchStart&&e.props.onTouchStart(a),K&&L&&(0,n.onNavigationIntent)(a.currentTarget,!0===I)}};return(0,l.isAbsoluteUrl)(N)?Q.href=N:E&&!x&&("a"!==e.type||"href"in e.props)||(Q.href=(0,m.addBasePath)(N)),f=E?h.default.cloneElement(e,Q):(0,g.jsx)("a",{...J,...Q,children:d}),(0,g.jsx)(q.Provider,{value:p,children:f})}a.r(9833);let q=(0,h.createContext)(n.IDLE_LINK_STATUS),r=()=>(0,h.useContext)(q);("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)}]; + +//# sourceMappingURL=node_modules_0oplp32._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_0oplp32._.js.map b/.next/server/chunks/ssr/node_modules_0oplp32._.js.map new file mode 100644 index 0000000..8431858 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_0oplp32._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs","../../../../node_modules/next/src/shared/lib/router/utils/querystring.ts","../../../../node_modules/next/src/shared/lib/router/utils/format-url.ts","../../../../node_modules/next/src/client/use-merged-ref.ts","../../../../node_modules/next/src/shared/lib/utils.ts","../../../../node_modules/next/src/shared/lib/router/utils/parse-path.ts","../../../../node_modules/next/src/shared/lib/router/utils/add-path-prefix.ts","../../../../node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts","../../../../node_modules/next/src/client/normalize-trailing-slash.ts","../../../../node_modules/next/src/client/add-base-path.ts","../../../../node_modules/next/src/shared/lib/utils/warn-once.ts","../../../../node_modules/next/src/client/components/router-reducer/router-reducer-types.ts","../../../../node_modules/next/src/client/components/segment-cache/types.ts","../../../../node_modules/next/src/client/components/segment-cache/cache-key.ts","../../../../node_modules/next/src/shared/lib/app-router-types.ts","../../../../node_modules/next/src/client/components/match-segments.ts","../../../../node_modules/next/src/shared/lib/segment-cache/vary-params-decoding.ts","../../../../node_modules/next/src/client/components/app-router-headers.ts","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../node_modules/next/src/shared/lib/is-thenable.ts","../../../../node_modules/next/src/client/components/use-action-queue.ts","../../../../node_modules/next/src/client/app-call-server.ts","../../../../node_modules/next/src/client/app-find-source-map-url.ts","../../../../node_modules/next/src/shared/lib/segment.ts","../../../../node_modules/next/src/shared/lib/segment-cache/segment-value-encoding.ts","../../../../node_modules/next/src/client/route-params.ts","../../../../node_modules/next/src/client/components/router-reducer/create-href-from-url.ts","../../../../node_modules/next/src/client/flight-data-helpers.ts","../../../../node_modules/next/src/shared/lib/hash.ts","../../../../node_modules/next/src/shared/lib/router/utils/cache-busting-search-param.ts","../../../../node_modules/next/src/client/components/router-reducer/set-cache-busting-search-param.ts","../../../../node_modules/next/src/client/navigation-build-id.ts","../../../../node_modules/next/src/lib/constants.ts","../../../../node_modules/next/src/client/components/router-reducer/is-navigating-to-new-root-layout.ts","../../../../node_modules/next/src/client/components/router-reducer/reducers/committed-state.ts","../../../../node_modules/next/src/client/components/segment-cache/lru.ts","../../../../node_modules/next/src/client/components/segment-cache/cache-map.ts","../../../../node_modules/next/src/client/components/segment-cache/vary-path.ts","../../../../node_modules/next/src/client/components/segment-cache/optimistic-routes.ts","../../../../node_modules/next/src/client/components/router-reducer/ppr-navigations.ts","../../../../node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts","../../../../node_modules/next/src/shared/lib/router/utils/app-paths.ts","../../../../node_modules/next/src/shared/lib/router/utils/interception-routes.ts","../../../../node_modules/next/src/client/components/router-reducer/compute-changed-path.ts","../../../../node_modules/next/src/client/lib/javascript-url.ts","../../../../node_modules/next/src/client/components/segment-cache/navigation-testing-lock.ts","../../../../node_modules/next/src/client/components/segment-cache/navigation.ts","../../../../node_modules/next/src/client/components/router-reducer/reducers/navigate-reducer.ts","../../../../node_modules/next/src/client/components/segment-cache/bfcache.ts","../../../../node_modules/next/src/client/components/router-reducer/fetch-server-response.ts","../../../../node_modules/next/src/shared/lib/promise-with-resolvers.ts","../../../../node_modules/next/src/client/components/segment-cache/cache.ts","../../../../node_modules/next/src/client/components/segment-cache/scheduler.ts","../../../../node_modules/next/src/client/components/links.ts","../../../../node_modules/next/src/shared/lib/router/utils/path-has-prefix.ts","../../../../node_modules/next/src/client/has-base-path.ts","../../../../node_modules/next/src/shared/lib/router/utils/is-local-url.ts","../../../../node_modules/next/src/shared/lib/utils/error-once.ts","../../../../node_modules/next/src/client/app-dir/link.tsx"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n","import type { ParsedUrlQuery } from 'querystring'\n\nexport function searchParamsToUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n const query: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n const existing = query[key]\n if (typeof existing === 'undefined') {\n query[key] = value\n } else if (Array.isArray(existing)) {\n existing.push(value)\n } else {\n query[key] = [existing, value]\n }\n }\n return query\n}\n\nfunction stringifyUrlQueryParam(param: unknown): string {\n if (typeof param === 'string') {\n return param\n }\n\n if (\n (typeof param === 'number' && !isNaN(param)) ||\n typeof param === 'boolean'\n ) {\n return String(param)\n } else {\n return ''\n }\n}\n\nexport function urlQueryToSearchParams(query: ParsedUrlQuery): URLSearchParams {\n const searchParams = new URLSearchParams()\n for (const [key, value] of Object.entries(query)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n searchParams.append(key, stringifyUrlQueryParam(item))\n }\n } else {\n searchParams.set(key, stringifyUrlQueryParam(value))\n }\n }\n return searchParams\n}\n\nexport function assign(\n target: URLSearchParams,\n ...searchParamsList: URLSearchParams[]\n): URLSearchParams {\n for (const searchParams of searchParamsList) {\n for (const key of searchParams.keys()) {\n target.delete(key)\n }\n\n for (const [key, value] of searchParams.entries()) {\n target.append(key, value)\n }\n }\n\n return target\n}\n","// Format function modified from nodejs\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nimport type { UrlObject } from 'url'\nimport type { ParsedUrlQuery } from 'querystring'\nimport * as querystring from './querystring'\n\nconst slashedProtocols = /https?|ftp|gopher|file/\n\nexport function formatUrl(urlObj: UrlObject) {\n let { auth, hostname } = urlObj\n let protocol = urlObj.protocol || ''\n let pathname = urlObj.pathname || ''\n let hash = urlObj.hash || ''\n let query = urlObj.query || ''\n let host: string | false = false\n\n auth = auth ? encodeURIComponent(auth).replace(/%3A/i, ':') + '@' : ''\n\n if (urlObj.host) {\n host = auth + urlObj.host\n } else if (hostname) {\n host = auth + (~hostname.indexOf(':') ? `[${hostname}]` : hostname)\n if (urlObj.port) {\n host += ':' + urlObj.port\n }\n }\n\n if (query && typeof query === 'object') {\n query = String(querystring.urlQueryToSearchParams(query as ParsedUrlQuery))\n }\n\n let search = urlObj.search || (query && `?${query}`) || ''\n\n if (protocol && !protocol.endsWith(':')) protocol += ':'\n\n if (\n urlObj.slashes ||\n ((!protocol || slashedProtocols.test(protocol)) && host !== false)\n ) {\n host = '//' + (host || '')\n if (pathname && pathname[0] !== '/') pathname = '/' + pathname\n } else if (!host) {\n host = ''\n }\n\n if (hash && hash[0] !== '#') hash = '#' + hash\n if (search && search[0] !== '?') search = '?' + search\n\n pathname = pathname.replace(/[?#]/g, encodeURIComponent)\n search = search.replace('#', '%23')\n\n return `${protocol}${host}${pathname}${search}${hash}`\n}\n\nexport const urlObjectKeys = [\n 'auth',\n 'hash',\n 'host',\n 'hostname',\n 'href',\n 'path',\n 'pathname',\n 'port',\n 'protocol',\n 'query',\n 'search',\n 'slashes',\n]\n\nexport function formatWithValidation(url: UrlObject): string {\n if (process.env.NODE_ENV === 'development') {\n if (url !== null && typeof url === 'object') {\n Object.keys(url).forEach((key) => {\n if (!urlObjectKeys.includes(key)) {\n console.warn(\n `Unknown key passed via urlObject into url.format: ${key}`\n )\n }\n })\n }\n }\n\n return formatUrl(url)\n}\n","import { useCallback, useRef, type Ref } from 'react'\n\n// This is a compatibility hook to support React 18 and 19 refs.\n// In 19, a cleanup function from refs may be returned.\n// In 18, returning a cleanup function creates a warning.\n// Since we take userspace refs, we don't know ahead of time if a cleanup function will be returned.\n// This implements cleanup functions with the old behavior in 18.\n// We know refs are always called alternating with `null` and then `T`.\n// So a call with `null` means we need to call the previous cleanup functions.\nexport function useMergedRef(\n refA: Ref,\n refB: Ref\n): Ref {\n const cleanupA = useRef<(() => void) | null>(null)\n const cleanupB = useRef<(() => void) | null>(null)\n\n // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.\n // (this happens often if the user doesn't pass a ref to Link/Form/Image)\n // But this can cause us to leak a cleanup-ref into user code (previously via ``),\n // and the user might pass that ref into ref-merging library that doesn't support cleanup refs\n // (because it hasn't been updated for React 19)\n // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.\n // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.\n return useCallback(\n (current: TElement | null): void => {\n if (current === null) {\n const cleanupFnA = cleanupA.current\n if (cleanupFnA) {\n cleanupA.current = null\n cleanupFnA()\n }\n const cleanupFnB = cleanupB.current\n if (cleanupFnB) {\n cleanupB.current = null\n cleanupFnB()\n }\n } else {\n if (refA) {\n cleanupA.current = applyRef(refA, current)\n }\n if (refB) {\n cleanupB.current = applyRef(refB, current)\n }\n }\n },\n [refA, refB]\n )\n}\n\nfunction applyRef(\n refA: NonNullable>,\n current: TElement\n) {\n if (typeof refA === 'function') {\n const cleanup = refA(current)\n if (typeof cleanup === 'function') {\n return cleanup\n } else {\n return () => refA(null)\n }\n } else {\n refA.current = current\n return () => {\n refA.current = null\n }\n }\n}\n","import type { HtmlProps } from './html-context.shared-runtime'\nimport type { ComponentType, JSX } from 'react'\nimport type { DomainLocale } from '../../server/config'\nimport type { Env } from '@next/env'\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type { NextRouter } from './router/router'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { PreviewData } from '../../types'\nimport type { COMPILER_NAMES } from './constants'\nimport type fs from 'fs'\n\nexport type NextComponentType<\n Context extends BaseContext = NextPageContext,\n InitialProps = {},\n Props = {},\n> = ComponentType & {\n /**\n * Used for initial page load data population. Data returned from `getInitialProps` is serialized when server rendered.\n * Make sure to return plain `Object` without using `Date`, `Map`, `Set`.\n * @param context Context of `page`\n */\n getInitialProps?(context: Context): InitialProps | Promise\n}\n\nexport type DocumentType = NextComponentType<\n DocumentContext,\n DocumentInitialProps,\n DocumentProps\n>\n\nexport type AppType

= NextComponentType<\n AppContextType,\n P,\n AppPropsType\n>\n\nexport type AppTreeType = ComponentType<\n AppInitialProps & { [name: string]: any }\n>\n\n/**\n * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team.\n * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting\n */\nexport const WEB_VITALS = ['CLS', 'FCP', 'FID', 'INP', 'LCP', 'TTFB'] as const\nexport type NextWebVitalsMetric = {\n id: string\n startTime: number\n value: number\n attribution?: { [key: string]: unknown }\n} & (\n | {\n label: 'web-vital'\n name: (typeof WEB_VITALS)[number]\n }\n | {\n label: 'custom'\n name:\n | 'Next.js-hydration'\n | 'Next.js-route-change-to-render'\n | 'Next.js-render'\n }\n)\n\nexport type Enhancer = (Component: C) => C\n\nexport type ComponentsEnhancer =\n | {\n enhanceApp?: Enhancer\n enhanceComponent?: Enhancer\n }\n | Enhancer\n\nexport type RenderPageResult = {\n html: string\n head?: Array\n}\n\nexport type RenderPage = (\n options?: ComponentsEnhancer\n) => DocumentInitialProps | Promise\n\nexport type BaseContext = {\n res?: ServerResponse\n [k: string]: any\n}\n\nexport type NEXT_DATA = {\n props: Record\n page: string\n query: ParsedUrlQuery\n buildId: string\n assetPrefix?: string\n nextExport?: boolean\n autoExport?: boolean\n isFallback?: boolean\n isExperimentalCompile?: boolean\n dynamicIds?: (string | number)[]\n err?: Error & {\n statusCode?: number\n source?: typeof COMPILER_NAMES.server | typeof COMPILER_NAMES.edgeServer\n }\n gsp?: boolean\n gssp?: boolean\n customServer?: boolean\n gip?: boolean\n appGip?: boolean\n locale?: string\n locales?: readonly string[]\n defaultLocale?: string\n domainLocales?: readonly DomainLocale[]\n scriptLoader?: any[]\n isPreview?: boolean\n notFoundSrcPage?: string\n}\n\n/**\n * `Next` context\n */\nexport interface NextPageContext {\n /**\n * Error object if encountered during rendering\n */\n err?: (Error & { statusCode?: number }) | null\n /**\n * `HTTP` request object.\n */\n req?: IncomingMessage\n /**\n * `HTTP` response object.\n */\n res?: ServerResponse\n /**\n * Path section of `URL`.\n */\n pathname: string\n /**\n * Query string section of `URL` parsed as an object.\n */\n query: ParsedUrlQuery\n /**\n * `String` of the actual path including query.\n */\n asPath?: string\n /**\n * The currently active locale\n */\n locale?: string\n /**\n * All configured locales\n */\n locales?: readonly string[]\n /**\n * The configured default locale\n */\n defaultLocale?: string\n /**\n * `Component` the tree of the App to use if needing to render separately\n */\n AppTree: AppTreeType\n}\n\nexport type AppContextType = {\n Component: NextComponentType\n AppTree: AppTreeType\n ctx: NextPageContext\n router: Router\n}\n\nexport type AppInitialProps = {\n pageProps: PageProps\n}\n\nexport type AppPropsType<\n Router extends NextRouter = NextRouter,\n PageProps = {},\n> = AppInitialProps & {\n Component: NextComponentType\n router: Router\n __N_SSG?: boolean\n __N_SSP?: boolean\n}\n\nexport type DocumentContext = NextPageContext & {\n renderPage: RenderPage\n defaultGetInitialProps(\n ctx: DocumentContext,\n options?: { nonce?: string }\n ): Promise\n}\n\nexport type DocumentInitialProps = RenderPageResult & {\n styles?: React.ReactElement[] | Iterable | JSX.Element\n}\n\nexport type DocumentProps = DocumentInitialProps & HtmlProps\n\n/**\n * Next `API` route request\n */\nexport interface NextApiRequest extends IncomingMessage {\n /**\n * Object of `query` values from url\n */\n query: Partial<{\n [key: string]: string | string[]\n }>\n /**\n * Object of `cookies` from header\n */\n cookies: Partial<{\n [key: string]: string\n }>\n\n body: any\n\n env: Env\n\n draftMode?: boolean\n\n preview?: boolean\n /**\n * Preview data set on the request, if any\n * */\n previewData?: PreviewData\n}\n\n/**\n * Send body of response\n */\ntype Send = (body: T) => void\n\n/**\n * Next `API` route response\n */\nexport type NextApiResponse = ServerResponse & {\n /**\n * Send data `any` data in response\n */\n send: Send\n /**\n * Send data `json` data in response\n */\n json: Send\n status: (statusCode: number) => NextApiResponse\n redirect(url: string): NextApiResponse\n redirect(status: number, url: string): NextApiResponse\n\n /**\n * Set draft mode\n */\n setDraftMode: (options: { enable: boolean }) => NextApiResponse\n\n /**\n * Set preview data for Next.js' prerender mode\n */\n setPreviewData: (\n data: object | string,\n options?: {\n /**\n * Specifies the number (in seconds) for the preview session to last for.\n * The given number will be converted to an integer by rounding down.\n * By default, no maximum age is set and the preview session finishes\n * when the client shuts down (browser is closed).\n */\n maxAge?: number\n /**\n * Specifies the path for the preview session to work under. By default,\n * the path is considered the \"default path\", i.e., any pages under \"/\".\n */\n path?: string\n }\n ) => NextApiResponse\n\n /**\n * Clear preview data for Next.js' prerender mode\n */\n clearPreviewData: (options?: { path?: string }) => NextApiResponse\n\n /**\n * Revalidate a specific page and regenerate it using On-Demand Incremental\n * Static Regeneration.\n * The path should be an actual path, not a rewritten path. E.g. for\n * \"/blog/[slug]\" this should be \"/blog/post-1\".\n * @link https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration#on-demand-revalidation-with-revalidatepath\n */\n revalidate: (\n urlPath: string,\n opts?: {\n unstable_onlyGenerated?: boolean\n }\n ) => Promise\n}\n\n/**\n * Next `API` route handler\n */\nexport type NextApiHandler = (\n req: NextApiRequest,\n res: NextApiResponse\n) => unknown | Promise\n\n/**\n * Utils\n */\nexport function execOnce ReturnType>(\n fn: T\n): T {\n let used = false\n let result: ReturnType\n\n return ((...args: any[]) => {\n if (!used) {\n used = true\n result = fn(...args)\n }\n return result\n }) as T\n}\n\n// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1\n// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\nconst ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\\d+\\-.]*?:/\nexport const isAbsoluteUrl = (url: string) => ABSOLUTE_URL_REGEX.test(url)\n\nexport function getLocationOrigin() {\n const { protocol, hostname, port } = window.location\n return `${protocol}//${hostname}${port ? ':' + port : ''}`\n}\n\nexport function getURL() {\n const { href } = window.location\n const origin = getLocationOrigin()\n return href.substring(origin.length)\n}\n\nexport function getDisplayName

(Component: ComponentType

) {\n return typeof Component === 'string'\n ? Component\n : Component.displayName || Component.name || 'Unknown'\n}\n\nexport function isResSent(res: ServerResponse) {\n return res.finished || res.headersSent\n}\n\nexport function normalizeRepeatedSlashes(url: string) {\n const urlParts = url.split('?')\n const urlNoQuery = urlParts[0]\n\n return (\n urlNoQuery\n // first we replace any non-encoded backslashes with forward\n // then normalize repeated forward slashes\n .replace(/\\\\/g, '/')\n .replace(/\\/\\/+/g, '/') +\n (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : '')\n )\n}\n\nexport async function loadGetInitialProps<\n C extends BaseContext,\n IP = {},\n P = {},\n>(App: NextComponentType, ctx: C): Promise {\n if (process.env.NODE_ENV !== 'production') {\n if (App.prototype?.getInitialProps) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`\n throw new Error(message)\n }\n }\n // when called from _app `ctx` is nested in `ctx`\n const res = ctx.res || (ctx.ctx && ctx.ctx.res)\n\n if (!App.getInitialProps) {\n if (ctx.ctx && ctx.Component) {\n // @ts-ignore pageProps default\n return {\n pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx),\n }\n }\n return {} as IP\n }\n\n const props = await App.getInitialProps(ctx)\n\n if (res && isResSent(res)) {\n return props\n }\n\n if (!props) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" should resolve to an object. But found \"${props}\" instead.`\n throw new Error(message)\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (Object.keys(props).length === 0 && !ctx.ctx) {\n console.warn(\n `${getDisplayName(\n App\n )} returned an empty object from \\`getInitialProps\\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`\n )\n }\n }\n\n return props\n}\n\nexport const SP = typeof performance !== 'undefined'\nexport const ST =\n SP &&\n (['mark', 'measure', 'getEntriesByName'] as const).every(\n (method) => typeof performance[method] === 'function'\n )\n\nexport class DecodeError extends Error {}\nexport class NormalizeError extends Error {}\nexport class PageNotFoundError extends Error {\n code: string\n\n constructor(page: string) {\n super()\n this.code = 'ENOENT'\n this.name = 'PageNotFoundError'\n this.message = `Cannot find module for page: ${page}`\n }\n}\n\nexport class MissingStaticPage extends Error {\n constructor(page: string, message: string) {\n super()\n this.message = `Failed to load static file for page: ${page} ${message}`\n }\n}\n\nexport class MiddlewareNotFoundError extends Error {\n code: string\n constructor() {\n super()\n this.code = 'ENOENT'\n this.message = `Cannot find the middleware module`\n }\n}\n\nexport interface CacheFs {\n existsSync: typeof fs.existsSync\n readFile: typeof fs.promises.readFile\n readFileSync: typeof fs.readFileSync\n writeFile(f: string, d: any): Promise\n mkdir(dir: string): Promise\n stat(f: string): Promise<{ mtime: Date }>\n}\n\nexport function stringifyError(error: Error) {\n return JSON.stringify({ message: error.message, stack: error.stack })\n}\n","/**\n * Given a path this function will find the pathname, query and hash and return\n * them. This is useful to parse full paths on the client side.\n * @param path A path to parse e.g. /foo/bar?id=1#hash\n */\nexport function parsePath(path: string) {\n const hashIndex = path.indexOf('#')\n const queryIndex = path.indexOf('?')\n const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex)\n\n if (hasQuery || hashIndex > -1) {\n return {\n pathname: path.substring(0, hasQuery ? queryIndex : hashIndex),\n query: hasQuery\n ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined)\n : '',\n hash: hashIndex > -1 ? path.slice(hashIndex) : '',\n }\n }\n\n return { pathname: path, query: '', hash: '' }\n}\n","import { parsePath } from './parse-path'\n\n/**\n * Adds the provided prefix to the given path. It first ensures that the path\n * is indeed starting with a slash.\n */\nexport function addPathPrefix(path: string, prefix?: string) {\n if (!path.startsWith('/') || !prefix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${prefix}${pathname}${query}${hash}`\n}\n","/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n","import { removeTrailingSlash } from '../shared/lib/router/utils/remove-trailing-slash'\nimport { parsePath } from '../shared/lib/router/utils/parse-path'\n\n/**\n * Normalizes the trailing slash of a path according to the `trailingSlash` option\n * in `next.config.js`.\n */\nexport const normalizePathTrailingSlash = (path: string) => {\n if (!path.startsWith('/') || process.env.__NEXT_MANUAL_TRAILING_SLASH) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n if (process.env.__NEXT_TRAILING_SLASH) {\n if (/\\.[^/]+\\/?$/.test(pathname)) {\n return `${removeTrailingSlash(pathname)}${query}${hash}`\n } else if (pathname.endsWith('/')) {\n return `${pathname}${query}${hash}`\n } else {\n return `${pathname}/${query}${hash}`\n }\n }\n\n return `${removeTrailingSlash(pathname)}${query}${hash}`\n}\n","import { addPathPrefix } from '../shared/lib/router/utils/add-path-prefix'\nimport { normalizePathTrailingSlash } from './normalize-trailing-slash'\n\nconst basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || ''\n\nexport function addBasePath(path: string, required?: boolean): string {\n return normalizePathTrailingSlash(\n process.env.__NEXT_MANUAL_CLIENT_BASE_PATH && !required\n ? path\n : addPathPrefix(path, basePath)\n )\n}\n","let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n","import type { CacheNode, ScrollRef } from '../../../shared/lib/app-router-types'\nimport type { FlightRouterState } from '../../../shared/lib/app-router-types'\nimport type { NavigationSeed } from '../segment-cache/navigation'\nimport type { FetchServerResponseResult } from './fetch-server-response'\n\nexport const ACTION_REFRESH = 'refresh'\nexport const ACTION_NAVIGATE = 'navigate'\nexport const ACTION_RESTORE = 'restore'\nexport const ACTION_SERVER_PATCH = 'server-patch'\nexport const ACTION_HMR_REFRESH = 'hmr-refresh'\nexport const ACTION_SERVER_ACTION = 'server-action'\n\nexport type RouterChangeByServerResponse = ({\n navigatedAt,\n previousTree,\n serverResponse,\n}: {\n navigatedAt: number\n previousTree: FlightRouterState\n serverResponse: FetchServerResponseResult\n}) => void\n\n/**\n * Refresh triggers a refresh of the full page data.\n * - fetches the Flight data and fills rsc at the root of the cache.\n * - The router state is updated at the root.\n */\nexport interface RefreshAction {\n type: typeof ACTION_REFRESH\n /**\n * Bypass invalidating the segment cache. Used by the Instant Navigation\n * Testing API to preserve prefetched data when refreshing after an MPA\n * navigation. Not exposed in production builds by default.\n */\n bypassCacheInvalidation?: boolean\n}\n\nexport interface HmrRefreshAction {\n type: typeof ACTION_HMR_REFRESH\n}\n\nexport type ServerActionDispatcher = (\n args: Omit<\n ServerActionAction,\n 'type' | 'mutable' | 'navigate' | 'changeByServerResponse' | 'cache'\n >\n) => void\n\nexport interface ServerActionAction {\n type: typeof ACTION_SERVER_ACTION\n actionId: string\n actionArgs: any[]\n resolve: (value: any) => void\n reject: (reason?: any) => void\n didRevalidate?: boolean\n}\n\n/**\n * Navigate triggers a navigation to the provided url. It supports two types: `push` and `replace`.\n *\n * `navigateType`:\n * - `push` - pushes a new history entry in the browser history\n * - `replace` - replaces the current history entry in the browser history\n *\n * Navigate has multiple cache heuristics:\n * - page was prefetched\n * - Apply router state tree from prefetch\n * - Apply Flight data from prefetch to the cache\n * - If Flight data is a string, it's a redirect and the state is updated to trigger a redirect\n * - Check if hard navigation is needed\n * - Hard navigation happens when a dynamic parameter below the common layout changed\n * - When hard navigation is needed the cache is invalidated below the flightSegmentPath\n * - The missing cache nodes of the page will be fetched in layout-router and trigger the SERVER_PATCH action\n * - If hard navigation is not needed\n * - The cache is reused\n * - If any cache nodes are missing they'll be fetched in layout-router and trigger the SERVER_PATCH action\n * - page was not prefetched\n * - The navigate was called from `next/router` (`router.push()` / `router.replace()`) / `next/link` without prefetched data available (e.g. the prefetch didn't come back from the server before clicking the link)\n * - Flight data is fetched in the reducer (suspends the reducer)\n * - Router state tree is created based on Flight data\n * - Cache is filled based on the Flight data\n *\n * Above steps explain 3 cases:\n * - `soft` - Reuses the existing cache and fetches missing nodes in layout-router.\n * - `hard` - Creates a new cache where cache nodes are removed below the common layout and fetches missing nodes in layout-router.\n * - `optimistic` (explicit no prefetch) - Creates a new cache and kicks off the data fetch in the reducer. The data fetch is awaited in the layout-router.\n */\nexport interface NavigateAction {\n type: typeof ACTION_NAVIGATE\n url: URL\n isExternalUrl: boolean\n locationSearch: Location['search']\n navigateType: 'push' | 'replace'\n scrollBehavior: ScrollBehavior\n}\n\n/**\n * Restore applies the provided router state.\n * - Used for `popstate` (back/forward navigation) where a known router state has to be applied.\n * - Also used when syncing the router state with `pushState`/`replaceState` calls.\n * - Router state is applied as-is from the history state, if available.\n * - If the history state does not contain the router state, the existing router state is used.\n * - If any cache node is missing it will be fetched in layout-router during rendering and the server-patch case.\n * - If existing cache nodes match these are used.\n */\nexport interface RestoreAction {\n type: typeof ACTION_RESTORE\n url: URL\n historyState: AppHistoryState | undefined\n}\n\nexport type AppHistoryState = {\n tree: FlightRouterState\n renderedSearch: string\n}\n\n/**\n * Server-patch applies the provided Flight data to the cache and router tree.\n */\nexport interface ServerPatchAction {\n type: typeof ACTION_SERVER_PATCH\n previousTree: FlightRouterState\n url: URL\n nextUrl: string | null\n seed: NavigationSeed | null\n mpa: boolean\n navigateType: 'push' | 'replace'\n}\n\n/**\n * PrefetchKind defines the type of prefetching that should be done.\n * - `auto` - if the page is dynamic, prefetch the page data partially, if static prefetch the page data fully.\n * - `full` - prefetch the page data fully.\n */\n\nexport enum PrefetchKind {\n AUTO = 'auto',\n FULL = 'full',\n}\n\n/**\n * Prefetch adds the provided FlightData to the prefetch cache\n * - Creates the router state tree based on the patch in FlightData\n * - Adds the FlightData to the prefetch cache\n * - In ACTION_NAVIGATE the prefetch cache is checked and the router state tree and FlightData are applied.\n */\n\nexport interface PushRef {\n /**\n * If the app-router should push a new history entry in app-router's useEffect()\n */\n pendingPush: boolean\n /**\n * Multi-page navigation through location.href.\n */\n mpaNavigation: boolean\n /**\n * Skip applying the router state to the browser history state.\n */\n preserveCustomHistoryState: boolean\n}\n\n/**\n * Controls the scroll behavior for a navigation.\n */\nexport const enum ScrollBehavior {\n /** Use per-node ScrollRef to decide whether to scroll. */\n Default = 0,\n /** Suppress scroll entirely (e.g. scroll={false} on Link or router.push). */\n NoScroll = 1,\n}\n\nexport type FocusAndScrollRef = {\n /**\n * The scroll ref from the most recent navigation. Set to whatever was\n * accumulated during tree construction (or null if nothing was\n * accumulated). On the next navigation, if new scroll targets are\n * created, the previous scrollRef is invalidated by setting\n * `current = false`.\n */\n scrollRef: ScrollRef | null\n /**\n * When true, the scroll handler uses `focusAndScrollRef.scrollRef`\n * for every segment regardless of per-node state. Used for hash-only\n * navigations where every segment should be treated as a scroll\n * target. When false, the handler checks `cacheNode.scrollRef`\n * instead (per-node), so only segments that actually navigated scroll.\n */\n forceScroll: boolean\n /**\n * The hash fragment that should be scrolled to.\n */\n hashFragment: string | null\n /**\n * If only the URLs hash fragment changed\n */\n onlyHashChange: boolean\n}\n\n/**\n * Handles keeping the state of app-router.\n */\nexport type AppRouterState = {\n /**\n * The router state, this is written into the history state in app-router using replaceState/pushState.\n * - Has to be serializable as it is written into the history state.\n * - Holds which segments and parallel routes are shown on the screen.\n */\n tree: FlightRouterState\n /**\n * The cache holds React nodes for every segment that is shown on screen as well as previously shown segments.\n * It also holds in-progress data requests.\n */\n cache: CacheNode\n /**\n * Decides if the update should create a new history entry and if the navigation has to trigger a browser navigation.\n */\n pushRef: PushRef\n /**\n * Decides if the update should apply scroll and focus management.\n */\n focusAndScrollRef: FocusAndScrollRef\n /**\n * The canonical url that is pushed/replaced.\n * - This is the url you see in the browser.\n */\n canonicalUrl: string\n\n /**\n * The search query observed by the server during rendering. This may be\n * different from the canonical URL's search query if the server performed\n * a rewrite. Even though a client component won't observe this (unless it\n * were passed from a Server component), the client router needs to know this\n * so it can properly cache segment data; it'ss part of a page segment's\n * cache key.\n */\n renderedSearch: string\n\n /**\n * The underlying \"url\" representing the UI state, which is used for intercepting routes.\n */\n nextUrl: string | null\n\n /**\n * The previous next-url that was used previous to a dynamic navigation.\n */\n previousNextUrl: string | null\n\n debugInfo: Array | null\n}\n\nexport type ReadonlyReducerState = Readonly\nexport type ReducerState =\n | (Promise & { _debugInfo?: Array })\n | AppRouterState\nexport type ReducerActions = Readonly<\n | RefreshAction\n | NavigateAction\n | RestoreAction\n | ServerPatchAction\n | HmrRefreshAction\n | ServerActionAction\n>\n","/**\n * Shared types and constants for the Segment Cache.\n */\n\nexport const enum NavigationResultTag {\n MPA,\n Success,\n NoOp,\n Async,\n}\n\n/**\n * The priority of the prefetch task. Higher numbers are higher priority.\n */\nexport const enum PrefetchPriority {\n /**\n * Assigned to the most recently hovered/touched link. Special network\n * bandwidth is reserved for this task only. There's only ever one Intent-\n * priority task at a time; when a new Intent task is scheduled, the previous\n * one is bumped down to Default.\n */\n Intent = 2,\n /**\n * The default priority for prefetch tasks.\n */\n Default = 1,\n /**\n * Assigned to tasks when they spawn non-blocking background work, like\n * revalidating a partially cached entry to see if more data is available.\n */\n Background = 0,\n}\n\nexport const enum FetchStrategy {\n // Deliberately ordered so we can easily compare two segments\n // and determine if one segment is \"more specific\" than another\n // (i.e. if it's likely that it contains more data)\n LoadingBoundary = 0,\n PPR = 1,\n PPRRuntime = 2,\n Full = 3,\n}\n\n/**\n * A subset of fetch strategies used for prefetch tasks.\n * A prefetch task can't know if it should use `PPR` or `LoadingBoundary`\n * until we complete the initial tree prefetch request, so we use `PPR` to signal both cases\n * and adjust it based on the route when actually fetching.\n * */\nexport type PrefetchTaskFetchStrategy =\n | FetchStrategy.PPR\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full\n","// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\n// Only functions in this module should be allowed to create CacheKeys.\nexport type NormalizedPathname = Opaque<'NormalizedPathname', string>\nexport type NormalizedSearch = Opaque<'NormalizedSearch', string>\nexport type NormalizedNextUrl = Opaque<'NormalizedNextUrl', string>\n\nexport type RouteCacheKey = Opaque<\n 'RouteCacheKey',\n {\n pathname: NormalizedPathname\n search: NormalizedSearch\n nextUrl: NormalizedNextUrl | null\n\n // TODO: Eventually the dynamic params will be added here, too.\n }\n>\n\nexport function createCacheKey(\n originalHref: string,\n nextUrl: string | null\n): RouteCacheKey {\n const originalUrl = new URL(originalHref)\n const cacheKey = {\n pathname: originalUrl.pathname as NormalizedPathname,\n search: originalUrl.search as NormalizedSearch,\n nextUrl: nextUrl as NormalizedNextUrl | null,\n } as RouteCacheKey\n return cacheKey\n}\n","/**\n * App Router types - Client-safe types for the Next.js App Router\n *\n * This file contains type definitions that can be safely imported\n * by both client-side and server-side code without circular dependencies.\n */\n\nimport type React from 'react'\n\nexport type LoadingModuleData =\n | [React.JSX.Element, React.ReactNode, React.ReactNode]\n | null\n\nimport type { VaryParamsThenable } from './segment-cache/vary-params-decoding'\n\n/** viewport metadata node */\nexport type HeadData = React.ReactNode\n\n/**\n * Cache node used in app-router / layout-router.\n */\n\nexport type CacheNode = {\n /**\n * When rsc is not null, it represents the RSC data for the\n * corresponding segment.\n *\n * `null` is a valid React Node but because segment data is always a\n * component, we can use `null` to represent empty. When it is\n * null, it represents missing data, and rendering should suspend.\n */\n rsc: React.ReactNode\n\n /**\n * Represents a static version of the segment that can be shown immediately,\n * and may or may not contain dynamic holes. It's prefetched before a\n * navigation occurs.\n *\n * During rendering, we will choose whether to render `rsc` or `prefetchRsc`\n * with `useDeferredValue`. As with the `rsc` field, a value of `null` means\n * no value was provided. In this case, the LayoutRouter will go straight to\n * rendering the `rsc` value; if that one is also missing, it will suspend and\n * trigger a lazy fetch.\n */\n prefetchRsc: React.ReactNode\n\n prefetchHead: HeadData | null\n\n head: HeadData\n\n slots: Record | null\n\n /**\n * A shared mutable ref that tracks whether this segment should be scrolled\n * to. All new segments created during a single navigation share the same\n * ref. When any segment's scroll handler fires, it sets `current` to\n * `false` so no other segment scrolls for the same navigation.\n *\n * `null` means this segment is not a scroll target (e.g., a reused shared\n * layout segment).\n */\n scrollRef: ScrollRef | null\n}\n\n/**\n * A mutable ref shared across all new segments created during a single\n * navigation. Used to ensure that only one segment scrolls per navigation.\n */\nexport type ScrollRef = { current: boolean }\n\nexport type DynamicParamTypes =\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall'\n | 'dynamic'\n | 'dynamic-intercepted-(..)(..)'\n | 'dynamic-intercepted-(.)'\n | 'dynamic-intercepted-(..)'\n | 'dynamic-intercepted-(...)'\n\nexport type DynamicParamTypesShort =\n | 'c'\n | 'ci(..)(..)'\n | 'ci(.)'\n | 'ci(..)'\n | 'ci(...)'\n | 'oc'\n | 'd'\n | 'di(..)(..)'\n | 'di(.)'\n | 'di(..)'\n | 'di(...)'\n\n// The tuple form of a segment, used for dynamic route params\nexport type DynamicSegmentTuple = [\n // Param name\n paramName: string,\n // Param cache key (almost the same as the value, but arrays are\n // concatenated into strings)\n // TODO: We should change this to just be the value. Currently we convert\n // it back to a value when passing to useParams. It only needs to be\n // a string when converted to a a cache key, but that doesn't mean we\n // need to store it as that representation.\n paramCacheKey: string,\n // Dynamic param type\n dynamicParamType: DynamicParamTypesShort,\n // Static sibling segments at the same URL level. Used by the client\n // router to determine if a prefetch can be reused when navigating to\n // a static sibling of a dynamic route. For example, if the route is\n // /products/[id] and there's also /products/sale, then staticSiblings\n // would be ['sale']. null means the siblings are unknown (e.g. in\n // webpack dev mode).\n staticSiblings: readonly string[] | null,\n]\n\nexport type Segment = string | DynamicSegmentTuple\n\n/**\n * Router state\n */\nexport type FlightRouterState = [\n segment: Segment,\n parallelRoutes: { [parallelRouterKey: string]: FlightRouterState },\n refreshState?: CompressedRefreshState | null,\n /**\n * - \"refetch\" is used during a request to inform the server where rendering\n * should start from.\n *\n * - \"inside-shared-layout\" is used during a prefetch request to inform the\n * server that even if the segment matches, it should be treated as if it's\n * within the \"new\" part of a navigation — inside the shared layout. If\n * the segment doesn't match, then it has no effect, since it would be\n * treated as new regardless. If it does match, though, the server does not\n * need to render it, because the client already has it.\n *\n * - \"metadata-only\" instructs the server to skip rendering the segments and\n * only send the head data.\n *\n * A bit confusing, but that's because it has only one extremely narrow use\n * case — during a non-PPR prefetch, the server uses it to find the first\n * loading boundary beneath a shared layout.\n *\n * TODO: We should rethink the protocol for dynamic requests. It might not\n * make sense for the client to send a FlightRouterState, since this type is\n * overloaded with concerns.\n */\n refresh?: 'refetch' | 'inside-shared-layout' | 'metadata-only' | null,\n /**\n * Bitmask of PrefetchHint flags. Encodes route structure metadata:\n * root layout, loading boundaries, instant configs, and runtime prefetch\n * hints. Only set when non-zero.\n */\n prefetchHints?: number,\n]\n\n/**\n * When rendering a parallel route, some of the parallel paths may not match\n * the current URL. In that case, the Next client has to render something,\n * so it will render whichever was the last route to match that slot. We use\n * this type to track when this has happened. It's a tuple of the original\n * URL that was used to fetch the segment, and the (possibly rewritten) search\n * query that was rendered by the server. The URL is needed when performing\n * a refresh of the segment, and the search query is needed for looking up\n * matching entries in the segment cache.\n */\nexport type CompressedRefreshState = [url: string, renderedSearch: string]\n\nexport const enum PrefetchHint {\n // This segment has a runtime prefetch enabled (via unstable_instant with\n // prefetch: 'runtime'). Per-segment only, does not propagate to ancestors.\n HasRuntimePrefetch = 0b00001,\n // This segment or one of its descendants has an instant config defined\n // (any truthy unstable_instant, regardless of prefetch mode). Propagates\n // upward so the root segment reflects the entire subtree.\n SubtreeHasInstant = 0b00010,\n // This segment itself has a loading.tsx boundary.\n SegmentHasLoadingBoundary = 0b00100,\n // A descendant segment (but not this one) has a loading.tsx boundary.\n // Propagates upward so the root reflects the entire subtree.\n SubtreeHasLoadingBoundary = 0b01000,\n // This segment is the root layout of the application.\n IsRootLayout = 0b10000,\n // This segment's response includes its parent's data inlined into it.\n // Set at build time by the segment size measurement pass.\n ParentInlinedIntoSelf = 0b100000,\n // This segment's data is inlined into one of its children — don't fetch\n // it separately. Set at build time by the segment size measurement pass.\n InlinedIntoChild = 0b1000000,\n // On a __PAGE__: this page's response includes the head (metadata/viewport)\n // at the end of its SegmentPrefetch[] array.\n HeadInlinedIntoSelf = 0b10000000,\n // On the root hint node: the head was NOT inlined into any page — fetch\n // it separately. Absence of this bit means the head is bundled into a page.\n HeadOutlined = 0b100000000,\n}\n\n/**\n * Individual Flight response path\n */\nexport type FlightSegmentPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n ]\n\n/**\n * Represents a tree of segments and the Flight data (i.e. React nodes) that\n * correspond to each one. The tree is isomorphic to the FlightRouterState;\n * however in the future we want to be able to fetch arbitrary partial segments\n * without having to fetch all its children. So this response format will\n * likely change.\n */\nexport type CacheNodeSeedData = [\n node: React.ReactNode | null,\n parallelRoutes: {\n [parallelRouterKey: string]: CacheNodeSeedData | null\n },\n // TODO: This field is no longer used. Remove it.\n loading: null,\n isPartial: boolean,\n /**\n * A thenable that resolves to the set of route params this segment accessed\n * during server rendering. Used by the client router to determine cache key\n * specificity - segments that only access certain params can be reused across\n * navigations where unaccessed params change.\n *\n * - null thenable: tracking was not enabled for this render (e.g., not a\n * prerender). Treat conservatively - assume all params vary.\n * - Thenable resolves to empty Set: segment accesses no params (e.g., client\n * components, or server components that don't read params). Can be shared\n * across all param values.\n * - Thenable resolves to non-empty Set: segment depends on those params.\n * Can only reuse when those specific params match.\n */\n varyParams: VaryParamsThenable | null,\n]\n\nexport type FlightDataSegment = [\n /* segment of the rendered slice: */ Segment,\n /* treePatch */ FlightRouterState,\n /* cacheNodeSeedData */ CacheNodeSeedData | null, // Can be null during prefetch if there's no loading component\n /* head: viewport */ HeadData,\n /* isHeadPartial */ boolean,\n]\n\nexport type FlightDataPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n // Holds full path to the segment.\n ...FlightSegmentPath[],\n ...FlightDataSegment,\n ]\n\n/**\n * The Flight response data\n */\nexport type FlightData = Array | string\n\n/**\n * Per-route prefetch hints computed at build time. Mirrors the shape of the\n * loader tree so hints can be traversed in parallel during router state\n * creation. Each node stores a bitmask of PrefetchHint flags\n * (ParentInlinedIntoSelf, InlinedIntoChild) computed by the segment size\n * measurement pass.\n *\n * Persisted to prefetch-hints.json as Record (keyed\n * by route pattern) and loaded at server startup.\n */\nexport type PrefetchHints = {\n /** Bitmask of PrefetchHint flags for this segment. */\n hints: number\n /** Child hint nodes, keyed by parallel route key. */\n slots: Record | null\n}\n\nexport type ActionResult = Promise\n\nexport type InitialRSCPayload = {\n /** buildId, can be empty if the x-nextjs-build-id header is set */\n b?: string\n /** initialCanonicalUrlParts */\n c: string[]\n /** initialRenderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** initialFlightData */\n f: FlightDataPath[]\n /** missingSlots */\n m: Set | undefined\n /** GlobalError */\n G: [React.ComponentType, React.ReactNode | undefined]\n /** supportsPerSegmentPrefetching */\n S: boolean\n /**\n * headVaryParams - vary params for the head (metadata) of the response.\n */\n h: VaryParamsThenable | null\n /** staleTime in seconds - Only present when Cache Components is enabled. */\n s?: AsyncIterable\n /** staticStageByteLength - Resolves when the static stage ends. */\n l?: Promise\n /** runtimePrefetchStream — Embedded runtime prefetch Flight stream. */\n p?: ReadableStream\n /**\n * dynamicStaleTime — Per-page BFCache stale time in seconds, from\n * `unstable_dynamicStaleTime`. Only included for dynamic renders. Controls\n * how long the client router cache retains dynamic navigation data. This is\n * distinct from the `s` field, which controls segment cache (prefetch)\n * staleness.\n */\n d?: number\n}\n\n// Response from `createFromFetch` for normal rendering\nexport type NavigationFlightResponse = {\n /** buildId, can be empty if the x-nextjs-build-id header is set */\n b?: string\n /** flightData */\n f: FlightData\n /** supportsPerSegmentPrefetching */\n S: boolean\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** staleTime - Only present in dynamic runtime prefetch responses. */\n s?: AsyncIterable\n /** staticStageByteLength - Resolves when the static stage ends. */\n l?: Promise\n /** headVaryParams */\n h: VaryParamsThenable | null\n /** runtimePrefetchStream — Embedded runtime prefetch Flight stream. */\n p?: ReadableStream\n /**\n * dynamicStaleTime — Per-page BFCache stale time in seconds, from\n * `unstable_dynamicStaleTime`. Only included for dynamic renders. Controls\n * how long the client router cache retains dynamic navigation data. This is\n * distinct from the `s` field, which controls segment cache (prefetch)\n * staleness.\n */\n d?: number\n}\n\n// Response from `createFromFetch` for server actions. Action's flight data can be null\nexport type ActionFlightResponse = {\n /** actionResult */\n a: ActionResult\n /** buildId, can be empty if the x-nextjs-build-id header is set */\n b?: string\n /** flightData */\n f: FlightData\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n}\n\nexport type RSCPayload =\n | InitialRSCPayload\n | NavigationFlightResponse\n | ActionFlightResponse\n","import type { Segment } from '../../shared/lib/app-router-types'\n\nexport const matchSegment = (\n existingSegment: Segment,\n segment: Segment\n): boolean => {\n // segment is either Array or string\n if (typeof existingSegment === 'string') {\n if (typeof segment === 'string') {\n // Common case: segment is just a string\n return existingSegment === segment\n }\n return false\n }\n\n if (typeof segment === 'string') {\n return false\n }\n return existingSegment[0] === segment[0] && existingSegment[1] === segment[1]\n}\n","/**\n * Vary Params Decoding\n *\n * This module is shared between server and client.\n */\n\nexport type VaryParams = Set\n\ntype FulfilledVaryParamsThenable = {\n status: 'fulfilled'\n value: VaryParams\n} & PromiseLike\n\ntype PendingVaryParamsThenable = {\n // 'resolved_model' is an internal React Flight state: the underlying model\n // data has arrived but the thenable hasn't been \"unwrapped\" yet. Calling\n // .then() triggers Flight to synchronously transition to 'fulfilled'.\n status: 'pending' | 'resolved_model'\n value: unknown\n} & PromiseLike\n\nexport type VaryParamsThenable =\n | FulfilledVaryParamsThenable\n | PendingVaryParamsThenable\n\n/**\n * Synchronously reads vary params from a thenable.\n *\n * By the time this is called (client-side or in collectSegmentData), the\n * thenable should already be fulfilled because the Flight stream has been\n * fully received. We check the status synchronously to avoid unnecessary\n * microtasks.\n *\n * Returns null if the thenable is still pending (which shouldn't happen in\n * normal operation - it indicates the server failed to track vary params).\n */\nexport function readVaryParams(\n thenable: VaryParamsThenable\n): VaryParams | null {\n // Attach a no-op listener to force Flight to synchronously resolve the\n // thenable. When a thenable arrives from the Flight stream, it may be in an\n // intermediate 'resolved_model' state (data received but not unwrapped).\n // Calling .then() triggers Flight to transition it to 'fulfilled', making\n // the value available synchronously. React uses this same optimization\n // internally to avoid unnecessary microtasks.\n thenable.then(noop)\n // If the thenable is still not 'fulfilled' after calling .then(), the server\n // failed to resolve it before the stream ended. Treat as unknown.\n if (thenable.status !== 'fulfilled') {\n return null\n }\n return thenable.value\n}\n\nconst noop = () => {}\n","export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\n// Header for the Instant Navigation Testing API. In development and testing\n// builds, static pre-renders normally don't happen. This header tells the\n// server to perform a static pre-render anyway, allowing tests to assert on\n// the prefetched UI. Not exposed in production builds by default.\nexport const NEXT_INSTANT_PREFETCH_HEADER =\n 'next-instant-navigation-testing-prefetch' as const\n\n// Cookie for the Instant Navigation Testing API. Used for MPA navigations\n// (page reload, full page load) where we can't set request headers. When set,\n// the server renders only the static shell. Not exposed in production builds\n// by default.\nexport const NEXT_INSTANT_TEST_COOKIE =\n 'next-instant-navigation-testing' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */\nexport function isThenable(\n promise: Promise | T\n): promise is Promise {\n return (\n promise !== null &&\n typeof promise === 'object' &&\n 'then' in promise &&\n typeof promise.then === 'function'\n )\n}\n","import type { Dispatch } from 'react'\nimport React, { use, useMemo, useOptimistic } from 'react'\nimport { isThenable } from '../../shared/lib/is-thenable'\nimport type { AppRouterActionQueue } from './app-router-instance'\nimport {\n ACTION_REFRESH,\n type AppRouterState,\n type ReducerActions,\n type ReducerState,\n} from './router-reducer/router-reducer-types'\n\n// The app router state lives outside of React, so we can import the dispatch\n// method directly wherever we need it, rather than passing it around via props\n// or context.\nlet dispatch: Dispatch | null = null\n\n/**\n * Called when the instant navigation test lock is released. If the router\n * is initialized, dispatches a soft refresh to fetch dynamic data. If not\n * (e.g. the lock was released before hydration finished), falls back to a\n * hard reload.\n */\nexport function refreshOnInstantNavigationUnlock() {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n if (dispatch !== null) {\n dispatch({ type: ACTION_REFRESH, bypassCacheInvalidation: true })\n } else {\n window.location.reload()\n }\n }\n}\n\nexport function dispatchAppRouterAction(action: ReducerActions) {\n if (dispatch === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n dispatch(action)\n}\n\n// Optimistic state setter for experimental_gesturePush. Only should be used\n// during a gesture transition.\nlet setGestureRouterState: ((state: ReducerState) => void) | null = null\n\nexport function dispatchGestureState(state: ReducerState) {\n if (setGestureRouterState === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n setGestureRouterState(state)\n}\n\nconst __DEV__ = process.env.NODE_ENV !== 'production'\nconst promisesWithDebugInfo: WeakMap<\n Promise,\n Promise & { _debugInfo?: Array }\n> = __DEV__ ? new WeakMap() : (null as any)\n\nexport function useActionQueue(\n actionQueue: AppRouterActionQueue\n): AppRouterState {\n const [canonicalState, setState] = React.useState(\n actionQueue.state\n )\n\n // Wrap the canonical state in useOptimistic to support\n // experimental_gesturePush. During a gesture transition, this returns a fork\n // of the router state that represents the eventual target if/when the gesture\n // completes. Otherwise it returns the canonical state.\n const [state, setGesture] = useOptimistic(canonicalState)\n if (typeof window !== 'undefined') {\n setGestureRouterState = setGesture\n }\n\n // Because of a known issue that requires to decode Flight streams inside the\n // render phase, we have to be a bit clever and assign the dispatch method to\n // a module-level variable upon initialization. The useState hook in this\n // module only exists to synchronize state that lives outside of React.\n // Ideally, what we'd do instead is pass the state as a prop to root.render;\n // this is conceptually how we're modeling the app router state, despite the\n // weird implementation details.\n let nextDispatch: Dispatch\n\n if (process.env.NODE_ENV !== 'production') {\n const { useAppDevRenderingIndicator } =\n require('../../next-devtools/userspace/use-app-dev-rendering-indicator') as typeof import('../../next-devtools/userspace/use-app-dev-rendering-indicator')\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const appDevRenderingIndicator = useAppDevRenderingIndicator()\n\n nextDispatch = (action: ReducerActions) => {\n appDevRenderingIndicator(() => {\n actionQueue.dispatch(action, setState)\n })\n }\n } else {\n nextDispatch = (action: ReducerActions) =>\n actionQueue.dispatch(action, setState)\n }\n\n if (typeof window !== 'undefined') {\n dispatch = nextDispatch\n }\n\n // When navigating to a non-prefetched route, then App Router state will be\n // blocked until the server responds. We need to transfer the `_debugInfo`\n // from the underlying Flight response onto the top-level promise that is\n // passed to React (via `use`) so that the latency is accurately represented\n // in the React DevTools.\n const stateWithDebugInfo = useMemo(() => {\n if (!__DEV__) {\n return state\n }\n\n if (isThenable(state)) {\n // useMemo can't be used to cache a Promise since the memoized value is thrown\n // away when we suspend. So we use a WeakMap to cache the Promise with debug info.\n let promiseWithDebugInfo = promisesWithDebugInfo.get(state)\n if (promiseWithDebugInfo === undefined) {\n const debugInfo: Array = []\n promiseWithDebugInfo = Promise.resolve(state).then((asyncState) => {\n if (asyncState.debugInfo !== null) {\n debugInfo.push(...asyncState.debugInfo)\n }\n return asyncState\n }) as Promise & { _debugInfo?: Array }\n promiseWithDebugInfo._debugInfo = debugInfo\n\n promisesWithDebugInfo.set(state, promiseWithDebugInfo)\n }\n\n return promiseWithDebugInfo\n }\n return state\n }, [state])\n\n return isThenable(stateWithDebugInfo)\n ? use(stateWithDebugInfo)\n : stateWithDebugInfo\n}\n","import { startTransition } from 'react'\nimport { ACTION_SERVER_ACTION } from './components/router-reducer/router-reducer-types'\nimport { dispatchAppRouterAction } from './components/use-action-queue'\n\nexport async function callServer(actionId: string, actionArgs: any[]) {\n return new Promise((resolve, reject) => {\n startTransition(() => {\n dispatchAppRouterAction({\n type: ACTION_SERVER_ACTION,\n actionId,\n actionArgs,\n resolve,\n reject,\n })\n })\n })\n}\n","const basePath = process.env.__NEXT_ROUTER_BASEPATH || ''\nconst pathname = `${basePath}/__nextjs_source-map`\n\nexport const findSourceMapURL =\n // Source maps are only served by the dev server.\n process.env.__NEXT_DEV_SERVER\n ? function findSourceMapURL(filename: string): string | null {\n if (filename === '') {\n return null\n }\n\n if (\n filename.startsWith(document.location.origin) &&\n filename.includes('/_next/static')\n ) {\n // This is a request for a client chunk. This can only happen when\n // using Turbopack. In this case, since we control how those source\n // maps are generated, we can safely assume that the sourceMappingURL\n // is relative to the filename, with an added `.map` extension. The\n // browser can just request this file, and it gets served through the\n // normal dev server, without the need to route this through\n // the `/__nextjs_source-map` dev middleware.\n return `${filename}.map`\n }\n\n const url = new URL(pathname, document.location.origin)\n url.searchParams.set('filename', filename)\n\n return url.href\n }\n : undefined\n","import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n","import { PAGE_SEGMENT_KEY } from '../segment'\nimport type { Segment as FlightRouterStateSegment } from '../app-router-types'\n\n// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\nexport type SegmentRequestKeyPart = Opaque<'SegmentRequestKeyPart', string>\nexport type SegmentRequestKey = Opaque<'SegmentRequestKey', string>\n\nexport const ROOT_SEGMENT_REQUEST_KEY = '' as SegmentRequestKey\n\nexport const HEAD_REQUEST_KEY = '/_head' as SegmentRequestKey\n\nexport function createSegmentRequestKeyPart(\n segment: FlightRouterStateSegment\n): SegmentRequestKeyPart {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY as SegmentRequestKeyPart\n }\n const safeName =\n // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found'\n ? '_not-found'\n : encodeToFilesystemAndURLSafeString(segment)\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName as SegmentRequestKeyPart\n }\n\n const name = segment[0]\n const paramType = segment[2]\n const safeName = encodeToFilesystemAndURLSafeString(name)\n\n const encodedName = '$' + paramType + '$' + safeName\n return encodedName as SegmentRequestKeyPart\n}\n\nexport function appendSegmentRequestKeyPart(\n parentRequestKey: SegmentRequestKey,\n parallelRouteKey: string,\n childRequestKeyPart: SegmentRequestKeyPart\n): SegmentRequestKey {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey =\n parallelRouteKey === 'children'\n ? childRequestKeyPart\n : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`\n return (parentRequestKey + '/' + slotKey) as SegmentRequestKey\n}\n\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/\n\nfunction encodeToFilesystemAndURLSafeString(value: string) {\n if (simpleParamValueRegex.test(value)) {\n return value\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value)\n .replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n return '!' + base64url\n}\n\nexport function convertSegmentPathToStaticExportFilename(\n segmentPath: string\n): string {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`\n}\n","import type { DynamicParamTypesShort } from '../shared/lib/app-router-types'\nimport {\n addSearchParamsIfPageSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../shared/lib/segment'\nimport { ROOT_SEGMENT_REQUEST_KEY } from '../shared/lib/segment-cache/segment-value-encoding'\nimport {\n NEXT_REWRITTEN_PATH_HEADER,\n NEXT_REWRITTEN_QUERY_HEADER,\n NEXT_RSC_UNION_QUERY,\n} from './components/app-router-headers'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n} from './components/segment-cache/cache-key'\nimport type { RSCResponse } from './components/router-reducer/fetch-server-response'\nimport type { ParsedUrlQuery } from 'querystring'\n\nexport type RouteParamValue = string | Array | null\n\nexport function getRenderedSearch(\n response: RSCResponse | Response\n): NormalizedSearch {\n // If the server performed a rewrite, the search params used to render the\n // page will be different from the params in the request URL. In this case,\n // the response will include a header that gives the rewritten search query.\n const rewrittenQuery = response.headers.get(NEXT_REWRITTEN_QUERY_HEADER)\n if (rewrittenQuery !== null) {\n return (\n rewrittenQuery === '' ? '' : '?' + rewrittenQuery\n ) as NormalizedSearch\n }\n // If the header is not present, there was no rewrite, so we use the search\n // query of the response URL.\n return urlToUrlWithoutFlightMarker(new URL(response.url))\n .search as NormalizedSearch\n}\n\nexport function getRenderedPathname(\n response: RSCResponse | Response\n): NormalizedPathname {\n // If the server performed a rewrite, the pathname used to render the\n // page will be different from the pathname in the request URL. In this case,\n // the response will include a header that gives the rewritten pathname.\n const rewrittenPath = response.headers.get(NEXT_REWRITTEN_PATH_HEADER)\n return (rewrittenPath ??\n urlToUrlWithoutFlightMarker(new URL(response.url))\n .pathname) as NormalizedPathname\n}\n\n// Pathname parts come from `URL.pathname.split('/')`, so they are already\n// in the encoded form the URL parser produces. The server-side equivalent\n// (`get-dynamic-param.ts`) starts from a decoded param value and applies\n// `encodeURIComponent` once. The two encodings are not the same — for\n// example, the URL parser leaves `,` and `:` untouched while\n// `encodeURIComponent` percent-encodes them. To produce the same canonical\n// form on the client (and avoid double-encoding `%xx` sequences such as\n// `%2F` → `%252F`), we decode the URL part first and re-encode it.\nfunction canonicalizeURLPart(part: string): string {\n try {\n return encodeURIComponent(decodeURIComponent(part))\n } catch {\n // `decodeURIComponent` throws on malformed sequences. Fall back to the\n // already-encoded form rather than failing the navigation.\n return part\n }\n}\n\nexport function parseDynamicParamFromURLPart(\n paramType: DynamicParamTypesShort,\n pathnameParts: Array,\n partIndex: number\n): RouteParamValue {\n // This needs to match the behavior in get-dynamic-param.ts.\n switch (paramType) {\n // Catchalls\n case 'c': {\n // Catchalls receive all the remaining URL parts. If there are no\n // remaining pathname parts, return an empty array.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => canonicalizeURLPart(s))\n : []\n }\n // Catchall intercepted\n case 'ci(..)(..)':\n case 'ci(.)':\n case 'ci(..)':\n case 'ci(...)': {\n const prefix = paramType.length - 2\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s, i) => {\n if (i === 0) {\n return canonicalizeURLPart(s.slice(prefix))\n }\n\n return canonicalizeURLPart(s)\n })\n : []\n }\n // Optional catchalls\n case 'oc': {\n // Optional catchalls receive all the remaining URL parts, unless this is\n // the end of the pathname, in which case they return null.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => canonicalizeURLPart(s))\n : null\n }\n // Dynamic\n case 'd': {\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n return canonicalizeURLPart(pathnameParts[partIndex])\n }\n // Dynamic intercepted\n case 'di(..)(..)':\n case 'di(.)':\n case 'di(..)':\n case 'di(...)': {\n const prefix = paramType.length - 2\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n\n return canonicalizeURLPart(pathnameParts[partIndex].slice(prefix))\n }\n default:\n paramType satisfies never\n return ''\n }\n}\n\nexport function doesStaticSegmentAppearInURL(segment: string): boolean {\n // This is not a parameterized segment; however, we need to determine\n // whether or not this segment appears in the URL. For example, this route\n // groups do not appear in the URL, so they should be skipped. Any other\n // special cases must be handled here.\n // TODO: Consider encoding this directly into the router tree instead of\n // inferring it on the client based on the segment type. Something like\n // a `doesAppearInURL` flag in FlightRouterState.\n if (\n segment === ROOT_SEGMENT_REQUEST_KEY ||\n // For some reason, the loader tree sometimes includes extra __PAGE__\n // \"layouts\" when part of a parallel route. But it's not a leaf node.\n // Otherwise, we wouldn't need this special case because pages are\n // always leaf nodes.\n // TODO: Investigate why the loader produces these fake page segments.\n segment.startsWith(PAGE_SEGMENT_KEY) ||\n // Route groups.\n (segment[0] === '(' && segment.endsWith(')')) ||\n segment === DEFAULT_SEGMENT_KEY ||\n segment === '/_not-found'\n ) {\n return false\n } else {\n // All other segment types appear in the URL\n return true\n }\n}\n\nexport function getCacheKeyForDynamicParam(\n paramValue: RouteParamValue,\n renderedSearch: NormalizedSearch\n): string {\n // This needs to match the logic in get-dynamic-param.ts, until we're able to\n // unify the various implementations so that these are always computed on\n // the client.\n if (typeof paramValue === 'string') {\n // TODO: Refactor or remove this helper function to accept a string rather\n // than the whole segment type. Also we can probably just append the\n // search string instead of turning it into JSON.\n const pageSegmentWithSearchParams = addSearchParamsIfPageSegment(\n paramValue,\n Object.fromEntries(new URLSearchParams(renderedSearch))\n ) as string\n return pageSegmentWithSearchParams\n } else if (paramValue === null) {\n return ''\n } else {\n return paramValue.join('/')\n }\n}\n\nexport function urlToUrlWithoutFlightMarker(url: URL): URL {\n const urlWithoutFlightParameters = new URL(url)\n urlWithoutFlightParameters.searchParams.delete(NEXT_RSC_UNION_QUERY)\n if (process.env.NODE_ENV === 'production') {\n if (\n process.env.__NEXT_CONFIG_OUTPUT === 'export' &&\n urlWithoutFlightParameters.pathname.endsWith('.txt')\n ) {\n const { pathname } = urlWithoutFlightParameters\n const length = pathname.endsWith('/index.txt') ? 10 : 4\n // Slice off `/index.txt` or `.txt` from the end of the pathname\n urlWithoutFlightParameters.pathname = pathname.slice(0, -length)\n }\n }\n return urlWithoutFlightParameters\n}\n\nexport function getParamValueFromCacheKey(\n paramCacheKey: string,\n paramType: DynamicParamTypesShort\n) {\n // Turn the cache key string sent by the server (as part of FlightRouterState)\n // into a value that can be passed to `useParams` and client components.\n const isCatchAll = paramType === 'c' || paramType === 'oc'\n if (isCatchAll) {\n // Catch-all param keys are a concatenation of the path segments.\n // See equivalent logic in `getSelectedParams`.\n // TODO: We should just pass the array directly, rather than concatenate\n // it to a string and then split it back to an array. It needs to be an\n // array in some places, like when passing a key React, but we can convert\n // it at runtime in those places.\n return paramCacheKey.split('/')\n }\n return paramCacheKey\n}\n\nexport function urlSearchParamsToParsedUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n // Converts a URLSearchParams object to the same type used by the server when\n // creating search params props, i.e. the type returned by Node's\n // \"querystring\" module.\n const result: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n if (result[key] === undefined) {\n result[key] = value\n } else if (Array.isArray(result[key])) {\n result[key].push(value)\n } else {\n result[key] = [result[key], value]\n }\n }\n return result\n}\n","export function createHrefFromUrl(\n url: Pick,\n includeHash: boolean = true\n): string {\n return url.pathname + url.search + (includeHash ? url.hash : '')\n}\n","import type {\n CacheNodeSeedData,\n FlightData,\n FlightDataPath,\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n HeadData,\n InitialRSCPayload,\n} from '../shared/lib/app-router-types'\nimport { PAGE_SEGMENT_KEY } from '../shared/lib/segment'\nimport type { NormalizedSearch } from './components/segment-cache/cache-key'\nimport {\n getCacheKeyForDynamicParam,\n parseDynamicParamFromURLPart,\n doesStaticSegmentAppearInURL,\n getRenderedPathname,\n getRenderedSearch,\n} from './route-params'\nimport { createHrefFromUrl } from './components/router-reducer/create-href-from-url'\n\nexport type NormalizedFlightData = {\n /**\n * The full `FlightSegmentPath` inclusive of the final `Segment`\n */\n segmentPath: FlightSegmentPath\n /**\n * The `FlightSegmentPath` exclusive of the final `Segment`\n */\n pathToSegment: FlightSegmentPath\n segment: Segment\n tree: FlightRouterState\n seedData: CacheNodeSeedData | null\n head: HeadData\n isHeadPartial: boolean\n isRootRender: boolean\n}\n\n// TODO: We should only have to export `normalizeFlightData`, however because the initial flight data\n// that gets passed to `createInitialRouterState` doesn't conform to the `FlightDataPath` type (it's missing the root segment)\n// we're currently exporting it so we can use it directly. This should be fixed as part of the unification of\n// the different ways we express `FlightSegmentPath`.\nexport function getFlightDataPartsFromPath(\n flightDataPath: FlightDataPath\n): NormalizedFlightData {\n // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial].\n const flightDataPathLength = 4\n // tree, seedData, and head are *always* the last three items in the `FlightDataPath`.\n const [tree, seedData, head, isHeadPartial] =\n flightDataPath.slice(-flightDataPathLength)\n // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present.\n const segmentPath = flightDataPath.slice(0, -flightDataPathLength)\n\n return {\n // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment (\"\")\n // to the start of the segment path in some places which makes it hard to use solely the segment path.\n // Look for \"// TODO-APP: remove ''\" in the codebase.\n pathToSegment: segmentPath.slice(0, -1),\n segmentPath,\n // if the `FlightDataPath` corresponds with the root, there'll be no segment path,\n // in which case we default to ''.\n segment: segmentPath[segmentPath.length - 1] ?? '',\n tree,\n seedData,\n head,\n isHeadPartial,\n isRootRender: flightDataPath.length === flightDataPathLength,\n }\n}\n\nexport function createInitialRSCPayloadFromFallbackPrerender(\n response: Response,\n fallbackInitialRSCPayload: InitialRSCPayload\n): InitialRSCPayload {\n // This is a static fallback page. In order to hydrate the page, we need to\n // parse the client params from the URL, but to account for the possibility\n // that the page was rewritten, we need to check the response headers\n // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since\n // we can't access the headers of the initial document response, the client\n // performs a fetch request to the current location. Since it's possible that\n // the fetch request will be dynamically rewritten to a different path than\n // the initial document, this fetch request delivers _all_ the hydration data\n // for the page; it was not inlined into the document, like it normally\n // would be.\n //\n // TODO: Consider treating the case where fetch is rewritten to a different\n // path from the document as a special deopt case. We should optimistically\n // assume this won't happen, inline the data into the document, and perform\n // a minimal request (like a HEAD or range request) to verify that the\n // response matches. Tricky to get right because we need to account for\n // all the different deployment environments we support, like output:\n // \"export\" mode, where we currently don't assume that custom response\n // headers are present.\n\n // Patch the Flight data sent by the server with the correct params parsed\n // from the URL + response object.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n const canonicalUrl = createHrefFromUrl(new URL(location.href))\n const originalFlightDataPath = fallbackInitialRSCPayload.f[0]\n const originalFlightRouterState = originalFlightDataPath[0]\n const payload: InitialRSCPayload = {\n c: canonicalUrl.split('/'),\n q: renderedSearch,\n i: fallbackInitialRSCPayload.i,\n f: [\n [\n fillInFallbackFlightRouterState(\n originalFlightRouterState,\n renderedPathname,\n renderedSearch as NormalizedSearch\n ),\n originalFlightDataPath[1],\n originalFlightDataPath[2],\n originalFlightDataPath[2],\n ],\n ],\n m: fallbackInitialRSCPayload.m,\n G: fallbackInitialRSCPayload.G,\n S: fallbackInitialRSCPayload.S,\n h: fallbackInitialRSCPayload.h,\n }\n if (fallbackInitialRSCPayload.b) {\n payload.b = fallbackInitialRSCPayload.b\n }\n return payload\n}\n\nfunction fillInFallbackFlightRouterState(\n flightRouterState: FlightRouterState,\n renderedPathname: string,\n renderedSearch: NormalizedSearch\n): FlightRouterState {\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n return fillInFallbackFlightRouterStateImpl(\n flightRouterState,\n renderedSearch,\n pathnameParts,\n index\n )\n}\n\nfunction fillInFallbackFlightRouterStateImpl(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n pathnameParts: Array,\n pathnamePartsIndex: number\n): FlightRouterState {\n const originalSegment = flightRouterState[0]\n let newSegment: Segment\n let doesAppearInURL: boolean\n if (typeof originalSegment === 'string') {\n newSegment = originalSegment\n doesAppearInURL = doesStaticSegmentAppearInURL(originalSegment)\n } else {\n const paramName = originalSegment[0]\n const paramType = originalSegment[2]\n const staticSiblings = originalSegment[3]\n const paramValue = parseDynamicParamFromURLPart(\n paramType,\n pathnameParts,\n pathnamePartsIndex\n )\n const cacheKey = getCacheKeyForDynamicParam(paramValue, renderedSearch)\n newSegment = [paramName, cacheKey, paramType, staticSiblings]\n doesAppearInURL = true\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = doesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const children = flightRouterState[1]\n const newChildren: { [key: string]: FlightRouterState } = {}\n for (let key in children) {\n const childFlightRouterState = children[key]\n newChildren[key] = fillInFallbackFlightRouterStateImpl(\n childFlightRouterState,\n renderedSearch,\n pathnameParts,\n childPathnamePartsIndex\n )\n }\n\n const newState: FlightRouterState = [\n newSegment,\n newChildren,\n null,\n flightRouterState[3],\n flightRouterState[4],\n ]\n return newState\n}\n\nexport function getNextFlightSegmentPath(\n flightSegmentPath: FlightSegmentPath\n): FlightSegmentPath {\n // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items\n // to get the next segment path.\n return flightSegmentPath.slice(2)\n}\n\nexport function normalizeFlightData(\n flightData: FlightData\n): NormalizedFlightData[] | string {\n // FlightData can be a string when the server didn't respond with a proper flight response,\n // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation.\n if (typeof flightData === 'string') {\n return flightData\n }\n\n return flightData.map((flightDataPath) =>\n getFlightDataPartsFromPath(flightDataPath)\n )\n}\n\n/**\n * This function is used to prepare the flight router state for the request.\n * It removes markers that are not needed by the server, and are purely used\n * for stashing state on the client.\n * @param flightRouterState - The flight router state to prepare.\n * @param isHmrRefresh - Whether this is an HMR refresh request.\n * @returns The prepared flight router state.\n */\nexport function prepareFlightRouterStateForRequest(\n flightRouterState: FlightRouterState,\n isHmrRefresh?: boolean\n): string {\n // HMR requests need the complete, unmodified state for proper functionality\n if (isHmrRefresh) {\n return encodeURIComponent(JSON.stringify(flightRouterState))\n }\n\n return encodeURIComponent(\n JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState))\n )\n}\n\n/**\n * Recursively strips client-only data from FlightRouterState while preserving\n * server-needed information for proper rendering decisions.\n */\nfunction stripClientOnlyDataFromFlightRouterState(\n flightRouterState: FlightRouterState\n): FlightRouterState {\n const [\n segment,\n parallelRoutes,\n _refreshState, // Intentionally unused - URLs are client-only\n refreshMarker,\n prefetchHints,\n ] = flightRouterState\n\n // Strip client-only data from the segment\n const cleanedSegment = stripClientOnlyDataFromSegment(segment)\n\n // Recursively process parallel routes\n const cleanedParallelRoutes: { [key: string]: FlightRouterState } = {}\n for (const [key, childState] of Object.entries(parallelRoutes)) {\n cleanedParallelRoutes[key] =\n stripClientOnlyDataFromFlightRouterState(childState)\n }\n\n const result: FlightRouterState = [cleanedSegment, cleanedParallelRoutes]\n if (refreshMarker) {\n result[2] = null // null slightly more compact than undefined\n result[3] = refreshMarker\n }\n\n // Append optional fields if present\n if (prefetchHints !== undefined) {\n result[4] = prefetchHints\n }\n\n // Everything else is used only by the client and is not needed for requests.\n return result\n}\n\n/**\n * Strips client-only data from segments:\n * - Search parameters from __PAGE__ segments\n * - staticSiblings from dynamic segment tuples (only needed for client-side\n * prefetch reuse decisions)\n */\nfunction stripClientOnlyDataFromSegment(segment: Segment): Segment {\n if (typeof segment === 'string') {\n // Strip search params from __PAGE__ segments\n if (segment.startsWith(PAGE_SEGMENT_KEY + '?')) {\n return PAGE_SEGMENT_KEY\n }\n return segment\n }\n // Dynamic segment tuple: [paramName, paramCacheKey, paramType, staticSiblings]\n // Strip staticSiblings (4th element) since server doesn't need it\n const [paramName, paramCacheKey, paramType] = segment\n return [paramName, paramCacheKey, paramType, null]\n}\n","// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n","import { hexHash } from '../../hash'\n\nconst CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES = 12\nconst textEncoder = new TextEncoder()\n\nfunction encodeCacheBustingSearchParam(bytes: Uint8Array): string {\n let binary = ''\n for (let i = 0; i < bytes.length; i++) {\n binary += String.fromCharCode(bytes[i])\n }\n\n return btoa(binary).replace(/\\+/g, '-').replace(/\\//g, '_').replace(/=+$/, '')\n}\n\nfunction normalizeCacheBustingInput(\n value: string | string[] | undefined\n): string {\n if (value === undefined) {\n return '0'\n }\n return Array.isArray(value) ? value.join(',') : value\n}\n\nfunction createCacheBustingSearchParamInput(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): string | null {\n if (\n (prefetchHeader === undefined || prefetchHeader === '0') &&\n segmentPrefetchHeader === undefined &&\n stateTreeHeader === undefined &&\n nextUrlHeader === undefined\n ) {\n return null\n }\n\n return [\n prefetchHeader ?? '0',\n normalizeCacheBustingInput(segmentPrefetchHeader),\n normalizeCacheBustingInput(stateTreeHeader),\n normalizeCacheBustingInput(nextUrlHeader),\n ].join(',')\n}\n\nasync function computeCacheBustingSearchParamFromInput(\n input: string\n): Promise {\n // Truncate SHA-256 to 96 bits to keep `_rsc` compact\n const digest = await globalThis.crypto.subtle.digest(\n 'SHA-256',\n textEncoder.encode(input)\n )\n return encodeCacheBustingSearchParam(\n new Uint8Array(digest).subarray(0, CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES)\n )\n}\n\nexport async function computeCacheBustingSearchParam(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): Promise {\n const input = createCacheBustingSearchParamInput(\n prefetchHeader,\n segmentPrefetchHeader,\n stateTreeHeader,\n nextUrlHeader\n )\n if (input === null) {\n return ''\n }\n\n return computeCacheBustingSearchParamFromInput(input)\n}\n\nexport function computeLegacyCacheBustingSearchParam(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): string {\n const input = createCacheBustingSearchParamInput(\n prefetchHeader,\n segmentPrefetchHeader,\n stateTreeHeader,\n nextUrlHeader\n )\n if (input === null) {\n return ''\n }\n\n return hexHash(input)\n}\n","'use client'\n\nimport {\n computeCacheBustingSearchParam,\n computeLegacyCacheBustingSearchParam,\n} from '../../../shared/lib/router/utils/cache-busting-search-param'\nimport {\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n NEXT_RSC_UNION_QUERY,\n} from '../app-router-headers'\nimport type { RequestHeaders } from './fetch-server-response'\n\nasync function computeClientCacheBustingSearchParam(\n headers: RequestHeaders\n): Promise {\n if (typeof globalThis.crypto?.subtle?.digest === 'function') {\n return computeCacheBustingSearchParam(\n headers[NEXT_ROUTER_PREFETCH_HEADER],\n headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],\n headers[NEXT_ROUTER_STATE_TREE_HEADER],\n headers[NEXT_URL]\n )\n }\n\n return computeLegacyCacheBustingSearchParam(\n headers[NEXT_ROUTER_PREFETCH_HEADER],\n headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],\n headers[NEXT_ROUTER_STATE_TREE_HEADER],\n headers[NEXT_URL]\n )\n}\n\n/**\n * Mutates the provided URL by adding a cache-busting search parameter for CDNs that don't\n * support custom headers. This helps avoid caching conflicts by making each request unique.\n *\n * Rather than relying on the Vary header which some CDNs ignore, we append a search param\n * to create a unique URL that forces a fresh request.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * Note: This function mutates the input URL directly and resolves once the\n * cache-busting value has been computed and applied.\n *\n * TODO: Since we need to use a search param anyway, we could simplify by removing the custom\n * headers approach entirely and just use search params.\n */\nexport const setCacheBustingSearchParam = async (\n url: URL,\n headers: RequestHeaders\n): Promise => {\n const uniqueCacheKey = await computeClientCacheBustingSearchParam(headers)\n setCacheBustingSearchParamWithHash(url, uniqueCacheKey)\n}\n\n/**\n * Sets a cache-busting search parameter on a URL using a provided hash value.\n *\n * This function performs the same logic as `setCacheBustingSearchParam` but accepts\n * a pre-computed hash instead of computing it from headers.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * hash: \"abc123\"\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * If the hash is empty, we will set `_rsc` search param without a value.\n * Like this: https://example.com/path?query=1&_rsc\n *\n * Note: This function mutates the input URL directly and does not return anything.\n */\nexport const setCacheBustingSearchParamWithHash = (\n url: URL,\n hash: string\n): void => {\n /**\n * Note that we intentionally do not use `url.searchParams.set` here:\n *\n * const url = new URL('https://example.com/search?q=custom%20spacing');\n * url.searchParams.set('_rsc', 'abc123');\n * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123\n * ^ <--- this is causing confusion\n * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but\n * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom\n * logic below.\n */\n const existingSearch = url.search\n const rawQuery = existingSearch.startsWith('?')\n ? existingSearch.slice(1)\n : existingSearch\n\n // Always remove any existing cache busting param and add a fresh one to ensure\n // we have the correct value based on current request headers\n const pairs = rawQuery\n .split('&')\n .filter((pair) => pair && !pair.startsWith(`${NEXT_RSC_UNION_QUERY}=`))\n\n if (hash.length > 0) {\n pairs.push(`${NEXT_RSC_UNION_QUERY}=${hash}`)\n } else {\n pairs.push(`${NEXT_RSC_UNION_QUERY}`)\n }\n url.search = pairs.length ? `?${pairs.join('&')}` : ''\n}\n","// This gets assigned as a side-effect during app initialization. Because it\n// represents the build used to create the JS bundle, it should never change\n// after being set, so we store it in a global variable.\n//\n// When performing RSC requests, if the incoming data has a different build ID,\n// we perform an MPA navigation/refresh to load the updated build and ensure\n// that the client and server in sync.\n//\n// Starts as an empty string. In practice, because setNavigationBuildId is called during initialization\n// before hydration starts, this will always get reassigned to the actual ID before it's ever needed\n// by a navigation. If for some reasons it didn't, due to a bug or race condition, then on\n// navigation the build comparision would fail and trigger an MPA navigation.\n//\n// Note that this can also be initialized with the deployment id instead (if available). So it's not\n// the same as \"the build id\", but we are running out of alternative names for \"build id or\n// deployment id\".\nlet globalBuildId: string = ''\n\nexport function setNavigationBuildId(buildId: string) {\n globalBuildId = buildId\n}\n\nexport function getNavigationBuildId(): string {\n return globalBuildId\n}\n","import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_NAV_DEPLOYMENT_ID_HEADER = 'x-nextjs-deployment-id'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\nexport const NEXT_RESUME_STATE_LENGTH_HEADER = 'x-next-resume-state-length'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\nexport const NEXT_CACHE_ROOT_PARAM_TAG_ID = '_N_RP_'\n\n// in seconds\nexport const CACHE_ONE_YEAR_SECONDS = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n","import type { FlightRouterState } from '../../../shared/lib/app-router-types'\nimport { PrefetchHint } from '../../../shared/lib/app-router-types'\nimport type { RouteTree } from '../segment-cache/cache'\n\nexport function isNavigatingToNewRootLayout(\n currentTree: FlightRouterState,\n nextTree: RouteTree\n): boolean {\n // Compare segments\n const currentTreeSegment = currentTree[0]\n const nextTreeSegment = nextTree.segment\n\n // If any segment is different before we find the root layout, the root layout has changed.\n // E.g. /same/(group1)/layout.js -> /same/(group2)/layout.js\n // First segment is 'same' for both, keep looking. (group1) changed to (group2) before the root layout was found, it must have changed.\n if (Array.isArray(currentTreeSegment) && Array.isArray(nextTreeSegment)) {\n // Compare dynamic param name and type but ignore the value, different values would not affect the current root layout\n // /[name] - /slug1 and /slug2, both values (slug1 & slug2) still has the same layout /[name]/layout.js\n if (\n currentTreeSegment[0] !== nextTreeSegment[0] ||\n currentTreeSegment[2] !== nextTreeSegment[2]\n ) {\n return true\n }\n } else if (currentTreeSegment !== nextTreeSegment) {\n return true\n }\n\n // Current tree root layout found\n const currentIsRootLayout =\n ((currentTree[4] ?? 0) & PrefetchHint.IsRootLayout) !== 0\n const nextIsRootLayout =\n (nextTree.prefetchHints & PrefetchHint.IsRootLayout) !== 0\n if (currentIsRootLayout) {\n // If the next tree doesn't have the root layout flag, it must have changed.\n return !nextIsRootLayout\n }\n // Current tree didn't have its root layout here, must have changed.\n if (nextIsRootLayout) {\n return true\n }\n\n const slots = nextTree.slots\n const currentTreeChildren = currentTree[1]\n if (slots !== null) {\n for (const slot in slots) {\n const nextTreeChild = slots[slot]\n const currentTreeChild = currentTreeChildren[slot]\n if (\n currentTreeChild === undefined ||\n isNavigatingToNewRootLayout(currentTreeChild, nextTreeChild)\n ) {\n return true\n }\n }\n }\n return false\n}\n","import type { FlightRouterState } from '../../../../shared/lib/app-router-types'\n\n// The tree from the last state that was committed to the browser history\n// (i.e., the last state for which HistoryUpdater's useInsertionEffect ran).\n// This lets the server-patch reducer distinguish between retrying a\n// navigation that already pushed a history entry vs one whose transition\n// suspended and never committed.\n//\n// Currently only used by the server-patch retry logic, but this module is a\n// stepping stone toward a broader refactor of the navigation queue. The\n// existing AppRouter action queue will eventually be replaced by a more\n// reactive model that explicitly tracks pending vs committed navigation\n// state. This file will likely evolve into (or be subsumed by) that new\n// implementation.\nlet lastCommittedTree: FlightRouterState | null = null\n\nexport function getLastCommittedTree(): FlightRouterState | null {\n return lastCommittedTree\n}\n\nexport function setLastCommittedTree(tree: FlightRouterState): void {\n lastCommittedTree = tree\n}\n","import { deleteMapEntry } from './cache-map'\nimport type { UnknownMapEntry } from './cache-map'\nimport { pingPrefetchScheduler } from './scheduler'\n\n// We use an LRU for memory management. We must update this whenever we add or\n// remove a new cache entry, or when an entry changes size.\n\nlet head: UnknownMapEntry | null = null\nlet lruSize: number = 0\n\n// TODO: I chose the max size somewhat arbitrarily. Consider setting this based\n// on navigator.deviceMemory, or some other heuristic. We should make this\n// customizable via the Next.js config, too.\nconst maxLruSize = 50 * 1024 * 1024 // 50 MB\n\nexport function lruPut(node: UnknownMapEntry) {\n if (head === node) {\n // Already at the head\n return\n }\n const prev = node.prev\n const next = node.next\n if (next === null || prev === null) {\n // This is an insertion\n lruSize += node.size\n // Whenever we add an entry, we need to check if we've exceeded the\n // max size. We don't evict entries immediately; they're evicted later in\n // an asynchronous task.\n ensureCleanupIsScheduled()\n } else {\n // This is a move. Remove from its current position.\n prev.next = next\n next.prev = prev\n }\n\n // Move to the front of the list\n if (head === null) {\n // This is the first entry\n node.prev = node\n node.next = node\n } else {\n // Add to the front of the list\n const tail = head.prev\n node.prev = tail\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n tail.next = node\n }\n node.next = head\n head.prev = node\n }\n head = node\n}\n\nexport function updateLruSize(node: UnknownMapEntry, newNodeSize: number) {\n // This is a separate function from `put` so that we can resize the entry\n // regardless of whether it's currently being tracked by the LRU.\n const prevNodeSize = node.size\n node.size = newNodeSize\n if (node.next === null) {\n // This entry is not currently being tracked by the LRU.\n return\n }\n // Update the total LRU size\n lruSize = lruSize - prevNodeSize + newNodeSize\n ensureCleanupIsScheduled()\n}\n\nexport function deleteFromLru(deleted: UnknownMapEntry) {\n const next = deleted.next\n const prev = deleted.prev\n if (next !== null && prev !== null) {\n lruSize -= deleted.size\n\n deleted.next = null\n deleted.prev = null\n\n // Remove from the list\n if (head === deleted) {\n // Update the head\n if (next === head) {\n // This was the last entry\n head = null\n } else {\n head = next\n prev.next = next\n next.prev = prev\n }\n } else {\n prev.next = next\n next.prev = prev\n }\n } else {\n // Already deleted\n }\n}\n\nfunction ensureCleanupIsScheduled() {\n if (lruSize <= maxLruSize) {\n return\n }\n\n // To schedule cleanup, ping the prefetch scheduler. At the end of its work\n // loop, once there are no queued tasks and no in-progress requests, it will\n // call cleanup().\n pingPrefetchScheduler()\n}\n\nexport function cleanup() {\n if (lruSize <= maxLruSize) {\n return\n }\n\n // Evict entries until we're at 90% capacity. We can assume this won't\n // infinite loop because even if `maxLruSize` were 0, eventually\n // `deleteFromLru` sets `head` to `null` when we run out entries.\n const ninetyPercentMax = maxLruSize * 0.9\n while (lruSize > ninetyPercentMax && head !== null) {\n const tail = head.prev\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n // Delete the entry from the map. In turn, this will remove it from\n // the LRU.\n deleteMapEntry(tail)\n }\n }\n}\n","import type { VaryPath } from './vary-path'\nimport { lruPut, updateLruSize, deleteFromLru } from './lru'\n\n/**\n * A specialized data type for storing multi-key cache entries.\n *\n * The basic structure is a map whose keys are tuples, called the keypath.\n * When querying the cache, keypaths are compared per-element.\n *\n * Example:\n * set(map, ['https://localhost', 'foo/bar/baz'], 'yay');\n * get(map, ['https://localhost', 'foo/bar/baz']) -> 'yay'\n *\n * NOTE: Array syntax is used in these examples for illustration purposes, but\n * in reality the paths are lists.\n * \n * The parts of the keypath represent the different inputs that contribute\n * to the entry value. To illustrate, if you were to use this data type to store\n * HTTP responses, the keypath would include the URL and everything listed by\n * the Vary header.\n * \n * See vary-path.ts for more details.\n *\n * The order of elements in a keypath must be consistent between lookups to\n * be considered the same, but besides that, the order of the keys is not\n * semantically meaningful.\n *\n * Keypaths may include a special kind of key called Fallback. When an entry is\n * stored with Fallback as part of its keypath, it means that the entry does not\n * vary by that key. When querying the cache, if an exact match is not found for\n * a keypath, the cache will check for a Fallback match instead. Each element of\n * the keypath may have a Fallback, so retrieval is an O(n ^ 2) operation, but\n * it's expected that keypaths are relatively short.\n *\n * Example:\n * set(cacheMap, ['store', 'product', 1], PRODUCT_PAGE_1);\n * set(cacheMap, ['store', 'product', Fallback], GENERIC_PRODUCT_PAGE);\n *\n * // Exact match\n * get(cacheMap, ['store', 'product', 1]) -> PRODUCT_PAGE_1\n *\n * // Fallback match\n * get(cacheMap, ['store', 'product', 2]) -> GENERIC_PRODUCT_PAGE\n *\n * Because we have the Fallback mechanism, we can impose a constraint that\n * regular JS maps do not have: a value cannot be stored at multiple keypaths\n * simultaneously. These cases should be expressed with Fallback keys instead.\n *\n * Additionally, because values only exist at a single keypath at a time, we\n * can optimize successive lookups by caching the internal map entry on the\n * value itself, using the `ref` field. This is especially useful because it\n * lets us skip the O(n ^ 2) lookup that occurs when Fallback entries\n * are present.\n *\n\n * How to decide if stuff belongs in here, or in cache.ts?\n * -------------------------------------------------------\n * \n * Anything to do with retrival, lifetimes, or eviction needs to go in this\n * module because it affects the fallback algorithm. For example, when\n * performing a lookup, if an entry is stale, it needs to be treated as\n * semantically equivalent to if the entry was not present at all.\n * \n * If there's logic that's not related to the fallback algorithm, though, we\n * should prefer to put it in cache.ts.\n */\n\n// The protocol that values must implement. In practice, the only two types that\n// we ever actually deal with in this module are RouteCacheEntry and\n// SegmentCacheEntry; this is just to keep track of the coupling so we don't\n// leak concerns between the modules unnecessarily.\nexport interface MapValue {\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Represents a node in the cache map and LRU.\n * MapEntry structurally satisfies this interface for any V extends MapValue.\n *\n * The LRU can contain entries of different value types\n * (e.g., both RouteCacheEntry and SegmentCacheEntry). This interface captures\n * the common structure needed for cache map and LRU operations without\n * requiring knowledge of the specific value type.\n */\nexport interface MapEntry {\n // Cache map structure fields\n parent: MapEntry | null\n key: unknown\n map: Map> | null\n value: V | null\n\n // LRU linked list fields\n prev: MapEntry | null\n next: MapEntry | null\n size: number\n}\n\n/**\n * A looser type for MapEntry\n * This allows the LRU to work with entries of different\n * value types while still providing type safety.\n *\n * The `map` field lets Map> be assignable to this\n * type since we're only reading from the map, not inserting into it.\n */\nexport type UnknownMapEntry = {\n parent: UnknownMapEntry | null\n key: unknown\n map: Pick, 'get' | 'delete' | 'size'> | null\n value: MapValue | null\n\n prev: UnknownMapEntry | null\n next: UnknownMapEntry | null\n size: number\n}\n\n// The CacheMap type is just the root entry of the map.\nexport type CacheMap = MapEntry\n\nexport type FallbackType = { __brand: 'Fallback' }\nexport const Fallback = {} as FallbackType\n\n// This is a special internal key that is used for \"revalidation\" entries. It's\n// an implementation detail that shouldn't leak outside of this module.\nconst Revalidation = {}\n\nexport function createCacheMap(): CacheMap {\n const cacheMap: MapEntry = {\n parent: null,\n key: null,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n return cacheMap\n}\n\nfunction getOrInitialize(\n cacheMap: CacheMap,\n keys: VaryPath,\n isRevalidation: boolean\n): MapEntry {\n // Go through each level of keys until we find the entry that matches, or\n // create a new entry if one doesn't exist.\n //\n // This function will only return entries that match the keypath _exactly_.\n // Unlike getWithFallback, it will not access fallback entries unless it's\n // explicitly part of the keypath.\n let entry = cacheMap\n let remainingKeys: VaryPath | null = keys\n let key: unknown | null = null\n while (true) {\n const previousKey = key\n if (remainingKeys !== null) {\n key = remainingKeys.value\n remainingKeys = remainingKeys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath. The \"normal\" entry is its parent.\n\n // However, if the parent entry is currently empty, we don't need to store\n // this as a revalidation entry. Just insert the revalidation into the\n // normal slot.\n if (entry.value === null) {\n return entry\n }\n\n // Otheriwse, create a child entry.\n key = Revalidation\n } else {\n // There are no more keys. This is the terminal entry.\n break\n }\n\n let map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found a match. Keep going.\n entry = existingEntry\n continue\n }\n } else {\n map = new Map()\n entry.map = map\n }\n // No entry exists yet at this level. Create a new one.\n const newEntry: MapEntry = {\n parent: entry,\n key,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n map.set(key, newEntry)\n entry = newEntry\n }\n\n return entry\n}\n\nexport function getFromCacheMap(\n now: number,\n currentCacheVersion: number,\n rootEntry: CacheMap,\n keys: VaryPath,\n isRevalidation: boolean\n): V | null {\n const entry = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n rootEntry,\n keys,\n isRevalidation,\n 0\n )\n if (entry === null || entry.value === null) {\n return null\n }\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n return entry.value\n}\n\nexport function isValueExpired(\n now: number,\n currentCacheVersion: number,\n value: MapValue\n): boolean {\n return value.staleAt <= now || value.version < currentCacheVersion\n}\n\nfunction lazilyEvictIfNeeded(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry\n) {\n // We have a matching entry, but before we can return it, we need to check if\n // it's still fresh. Otherwise it should be treated the same as a cache miss.\n\n if (entry.value === null) {\n // This entry has no value, so there's nothing to evict.\n return entry\n }\n\n const value = entry.value\n if (isValueExpired(now, currentCacheVersion, value)) {\n // The value expired. Lazily evict it from the cache, and return null. This\n // is conceptually the same as a cache miss.\n deleteMapEntry(entry)\n return null\n }\n\n // The matched entry has not expired. Return it.\n return entry\n}\n\nfunction getEntryWithFallbackImpl(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry,\n keys: VaryPath | null,\n isRevalidation: boolean,\n previousKey: unknown | null\n): MapEntry | null {\n // This is similar to getExactEntry, but if an exact match is not found for\n // a key, it will return the fallback entry instead. This is recursive at\n // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is\n // valid match for [a, b, c, d].\n //\n // It will return the most specific match available.\n let key\n let remainingKeys: VaryPath | null\n if (keys !== null) {\n key = keys.value\n remainingKeys = keys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath.\n key = Revalidation\n remainingKeys = null\n } else {\n // There are no more keys. This is the terminal entry.\n\n // TODO: When performing a lookup during a navigation, as opposed to a\n // prefetch, we may want to skip entries that are Pending if there's also\n // a Fulfilled fallback entry. Tricky to say, though, since if it's\n // already pending, it's likely to stream in soon. Maybe we could do this\n // just on slow connections and offline mode.\n\n return lazilyEvictIfNeeded(now, currentCacheVersion, entry)\n }\n const map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found an exact match for this key. Keep searching.\n const result = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n existingEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n if (result !== null) {\n return result\n }\n }\n // No match found for this key. Check if there's a fallback.\n const fallbackEntry = map.get(Fallback)\n if (fallbackEntry !== undefined) {\n // Found a fallback for this key. Keep searching.\n return getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n fallbackEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n }\n }\n return null\n}\n\nexport function setInCacheMap(\n cacheMap: CacheMap,\n keys: VaryPath,\n value: V,\n isRevalidation: boolean\n): void {\n // Add a value to the map at the given keypath. If the value is already\n // part of the map, it's removed from its previous keypath. (NOTE: This is\n // unlike a regular JS map, but the behavior is intentional.)\n const entry = getOrInitialize(cacheMap, keys, isRevalidation)\n setMapEntryValue(entry, value)\n\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n updateLruSize(entry, value.size)\n}\n\nfunction setMapEntryValue(entry: UnknownMapEntry, value: MapValue): void {\n if (entry.value !== null) {\n // There's already a value at the given keypath. Disconnect the old value\n // from the map. We're not calling `deleteMapEntry` here because the\n // entry itself is still in the map. We just want to overwrite its value.\n dropRef(entry.value)\n entry.value = null\n }\n\n // This value may already be in the map at a different keypath.\n // Grab a reference before we overwrite it.\n const oldEntry = value.ref\n\n entry.value = value\n value.ref = entry\n\n updateLruSize(entry, value.size)\n\n if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) {\n // This value is already in the map at a different keypath in the map.\n // Values only exist at a single keypath at a time. Remove it from the\n // previous keypath.\n //\n // Note that only the internal map entry is garbage collected; we don't\n // call `dropRef` here because it's still in the map, just\n // at a new keypath (the one we just set, above).\n deleteMapEntry(oldEntry)\n }\n}\n\nexport function deleteFromCacheMap(value: MapValue): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n\n dropRef(value)\n deleteMapEntry(entry)\n}\n\nfunction dropRef(value: MapValue): void {\n // Drop the value from the map by setting its `ref` backpointer to\n // null. This is a separate operation from `deleteMapEntry` because when\n // re-keying a value we need to be able to delete the old, internal map\n // entry without garbage collecting the value itself.\n value.ref = null\n}\n\nexport function deleteMapEntry(entry: UnknownMapEntry): void {\n // Delete the entry from the cache.\n entry.value = null\n\n deleteFromLru(entry)\n\n // Check if we can garbage collect the entry.\n const map = entry.map\n if (map === null) {\n // Since this entry has no value, and also no child entries, we can\n // garbage collect it. Remove it from its parent, and keep garbage\n // collecting the parents until we reach a non-empty entry.\n let parent = entry.parent\n let key = entry.key\n while (parent !== null) {\n const parentMap = parent.map\n if (parentMap !== null) {\n parentMap.delete(key)\n if (parentMap.size === 0) {\n // We just removed the last entry in the parent map.\n parent.map = null\n if (parent.value === null) {\n // The parent node has no child entries, nor does it have a value\n // on itself. It can be garbage collected. Keep going.\n key = parent.key\n parent = parent.parent\n continue\n }\n }\n }\n // The parent is not empty. Stop garbage collecting.\n break\n }\n } else {\n // Check if there's a revalidating entry. If so, promote it to a\n // \"normal\" entry, since the normal one was just deleted.\n const revalidatingEntry = map.get(Revalidation)\n if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) {\n setMapEntryValue(entry, revalidatingEntry.value)\n }\n }\n}\n\nexport function setSizeInCacheMap(\n value: V,\n size: number\n): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n // Except during initialization (when the size is set to 0), this is the only\n // place the `size` field should be updated, to ensure it's in sync with the\n // the LRU.\n value.size = size\n updateLruSize(entry, size)\n}\n","import { FetchStrategy } from './types'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n NormalizedNextUrl,\n} from './cache-key'\nimport type { RouteTree } from './cache'\nimport { Fallback, type FallbackType } from './cache-map'\nimport { HEAD_REQUEST_KEY } from '../../../shared/lib/segment-cache/segment-value-encoding'\n\ntype Opaque = T & { __brand: K }\n\n/**\n * A linked-list of all the params (or other param-like) inputs that a cache\n * entry may vary by. This is used by the CacheMap module to reuse cache entries\n * across different param values. If a param has a value of Fallback, it means\n * the cache entry is reusable for all possible values of that param. See\n * cache-map.ts for details.\n *\n * A segment's vary path is a pure function of a segment's position in a\n * particular route tree and the (post-rewrite) URL that is being queried. More\n * concretely, successive queries of the cache for the same segment always use\n * the same vary path.\n *\n * A route's vary path is simpler: it's comprised of the pathname, search\n * string, and Next-URL header.\n */\nexport type VaryPath = {\n /**\n * Identifies which param this vary path node corresponds to. Used by\n * getFulfilledSegmentVaryPath to determine which params to replace with\n * Fallback based on the varyParams set from the server.\n *\n * - For path params: the param name (e.g., 'slug')\n * - For search params: '?'\n * - For non-param nodes (request keys, etc.): null\n */\n id: string | null\n value: string | null | FallbackType\n parent: VaryPath | null\n}\n\n// Because it's so important for vary paths to line up across cache accesses,\n// we use opaque type aliases to ensure these are only created within\n// this module.\n\n// requestKey -> searchParams -> nextUrl\nexport type RouteVaryPath = Opaque<\n {\n id: null\n value: NormalizedPathname\n parent: {\n id: '?'\n value: NormalizedSearch\n parent: {\n id: null\n value: NormalizedNextUrl | null | FallbackType\n parent: null\n }\n }\n },\n 'RouteVaryPath'\n>\n\n// requestKey -> pathParams\nexport type LayoutVaryPath = Opaque<\n {\n id: null\n value: string\n parent: PartialSegmentVaryPath | null\n },\n 'LayoutVaryPath'\n>\n\n// requestKey -> searchParams -> pathParams\nexport type PageVaryPath = Opaque<\n {\n id: null\n value: string\n parent: {\n id: '?'\n value: NormalizedSearch | FallbackType\n parent: PartialSegmentVaryPath | null\n }\n },\n 'PageVaryPath'\n>\n\nexport type SegmentVaryPath = LayoutVaryPath | PageVaryPath\n\n// Intermediate type used when building a vary path during a recursive traversal\n// of the route tree.\nexport type PartialSegmentVaryPath = Opaque\n\nexport function getRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null\n): RouteVaryPath {\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n id: null,\n value: pathname,\n parent: {\n id: '?',\n value: search,\n parent: {\n id: null,\n value: nextUrl,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function getFulfilledRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null,\n couldBeIntercepted: boolean\n): RouteVaryPath {\n // This is called when a route's data is fulfilled. The cache entry will be\n // re-keyed based on which inputs the response varies by.\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n id: null,\n value: pathname,\n parent: {\n id: '?',\n value: search,\n parent: {\n id: null,\n value: couldBeIntercepted ? nextUrl : Fallback,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function appendLayoutVaryPath(\n parentPath: PartialSegmentVaryPath | null,\n cacheKey: string,\n paramName: string\n): PartialSegmentVaryPath {\n const varyPathPart: VaryPath = {\n id: paramName,\n value: cacheKey,\n parent: parentPath,\n }\n return varyPathPart as PartialSegmentVaryPath\n}\n\nexport function finalizeLayoutVaryPath(\n requestKey: string,\n varyPath: PartialSegmentVaryPath | null\n): LayoutVaryPath {\n const layoutVaryPath: VaryPath = {\n id: null,\n value: requestKey,\n parent: varyPath,\n }\n return layoutVaryPath as LayoutVaryPath\n}\n\nexport function getPartialLayoutVaryPath(\n finalizedVaryPath: LayoutVaryPath\n): PartialSegmentVaryPath | null {\n // This is the inverse of finalizeLayoutVaryPath.\n return finalizedVaryPath.parent\n}\n\nexport function finalizePageVaryPath(\n requestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // Unlike layouts, a page segment's vary path also includes the search string.\n // requestKey -> searchParams -> pathParams\n const pageVaryPath: VaryPath = {\n id: null,\n value: requestKey,\n parent: {\n id: '?',\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function getPartialPageVaryPath(\n finalizedVaryPath: PageVaryPath\n): PartialSegmentVaryPath | null {\n // This is the inverse of finalizePageVaryPath.\n return finalizedVaryPath.parent.parent\n}\n\nexport function finalizeMetadataVaryPath(\n pageRequestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // The metadata \"segment\" is not a real segment because it doesn't exist in\n // the normal structure of the route tree, but in terms of caching, it\n // behaves like a page segment because it varies by all the same params as\n // a page.\n //\n // To keep the protocol for querying the server simple, the request key for\n // the metadata does not include any path information. It's unnecessary from\n // the server's perspective, because unlike page segments, there's only one\n // metadata response per URL, i.e. there's no need to distinguish multiple\n // parallel pages.\n //\n // However, this means the metadata request key is insufficient for\n // caching the the metadata in the client cache, because on the client we\n // use the request key to distinguish the metadata entry from all other\n // page's metadata entries.\n //\n // So instead we create a simulated request key based on the page segment.\n // Conceptually this is equivalent to the request key the server would have\n // assigned the metadata segment if it treated it as part of the actual\n // route structure.\n\n // If there are multiple parallel pages, we use whichever is the first one.\n // This is fine because the only difference between request keys for\n // different parallel pages are things like route groups and parallel\n // route slots. As long as it's always the same one, it doesn't matter.\n const pageVaryPath: VaryPath = {\n id: null,\n // Append the actual metadata request key to the page request key. Note\n // that we're not using a separate vary path part; it's unnecessary because\n // these are not conceptually separate inputs.\n value: pageRequestKey + HEAD_REQUEST_KEY,\n parent: {\n id: '?',\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function getSegmentVaryPathForRequest(\n fetchStrategy: FetchStrategy,\n tree: RouteTree\n): SegmentVaryPath {\n // This is used for storing pending requests in the cache. We want to choose\n // the most generic vary path based on the strategy used to fetch it, i.e.\n // static/PPR versus runtime prefetching, so that it can be reused as much\n // as possible.\n //\n // We may be able to re-key the response to something even more generic once\n // we receive it — for example, if the server tells us that the response\n // doesn't vary on a particular param — but even before we send the request,\n // we know some params are reusable based on the fetch strategy alone. For\n // example, a static prefetch will never vary on search params.\n //\n // The original vary path with all the params filled in is stored on the\n // route tree object. We will clone this one to create a new vary path\n // where certain params are replaced with Fallback.\n //\n // This result of this function is not stored anywhere. It's only used to\n // access the cache a single time.\n //\n // TODO: Rather than create a new list object just to access the cache, the\n // plan is to add the concept of a \"vary mask\". This will represent all the\n // params that can be treated as Fallback. (Or perhaps the inverse.)\n const originalVaryPath = tree.varyPath\n\n // Only page segments (and the special \"metadata\" segment, which is treated\n // like a page segment for the purposes of caching) may contain search\n // params. There's no reason to include them in the vary path otherwise.\n if (tree.isPage) {\n // Only a runtime prefetch will include search params in the vary path.\n // Static prefetches never include search params, so they can be reused\n // across all possible search param values.\n const doesVaryOnSearchParams =\n fetchStrategy === FetchStrategy.Full ||\n fetchStrategy === FetchStrategy.PPRRuntime\n\n if (!doesVaryOnSearchParams) {\n // The response from the the server will not vary on search params. Clone\n // the end of the original vary path to replace the search params\n // with Fallback.\n //\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with Fallback\n const searchParamsVaryPath = (originalVaryPath as PageVaryPath).parent\n const pathParamsVaryPath = searchParamsVaryPath.parent\n const patchedVaryPath: VaryPath = {\n id: null,\n value: originalVaryPath.value,\n parent: {\n id: '?',\n value: Fallback,\n parent: pathParamsVaryPath,\n },\n }\n return patchedVaryPath as SegmentVaryPath\n }\n }\n\n // The request does vary on search params. We don't need to modify anything.\n return originalVaryPath as SegmentVaryPath\n}\n\nexport function clonePageVaryPathWithNewSearchParams(\n originalVaryPath: PageVaryPath,\n newSearch: NormalizedSearch\n): PageVaryPath {\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with newSearch\n const searchParamsVaryPath = originalVaryPath.parent\n const clonedVaryPath: VaryPath = {\n id: null,\n value: originalVaryPath.value,\n parent: {\n id: '?',\n value: newSearch,\n parent: searchParamsVaryPath.parent,\n },\n }\n return clonedVaryPath as PageVaryPath\n}\n\nexport function getRenderedSearchFromVaryPath(\n varyPath: PageVaryPath\n): NormalizedSearch | null {\n const searchParams = varyPath.parent.value\n return typeof searchParams === 'string'\n ? (searchParams as NormalizedSearch)\n : null\n}\n\nexport function getFulfilledSegmentVaryPath(\n original: VaryPath,\n varyParams: Set\n): SegmentVaryPath {\n // Re-keys a segment's vary path based on which params the segment actually\n // depends on. Params that are NOT in the varyParams set are replaced with\n // Fallback, allowing the cache entry to be reused across different values of\n // those params.\n\n // This is called when a segment is fulfilled with data from the server. The\n // varyParams set comes from the server and indicates which params were\n // accessed during rendering.\n const clone: VaryPath = {\n id: original.id,\n // If the id is null, this node is not a param (e.g., it's a request key).\n // If the id is in the varyParams set, keep the original value.\n // Otherwise, replace with Fallback to make it reusable.\n value:\n original.id === null || varyParams.has(original.id)\n ? original.value\n : Fallback,\n parent:\n original.parent === null\n ? null\n : getFulfilledSegmentVaryPath(original.parent, varyParams),\n }\n return clone as SegmentVaryPath\n}\n","/**\n * Optimistic Routing (Known Routes)\n *\n * This module enables the client to predict route structure for URLs that\n * haven't been prefetched yet, based on previously learned route patterns.\n * When successful, this allows skipping the route tree prefetch request\n * entirely.\n *\n * The core idea is that many URLs map to the same route structure. For example,\n * /blog/post-1 and /blog/post-2 both resolve to /blog/[slug]. Once we've\n * prefetched one, we can predict the structure of the other.\n *\n * However, we can't always make this prediction. Static siblings (like\n * /blog/featured alongside /blog/[slug]) have different route structures.\n * When we learn a dynamic route, we also learn its static siblings so we\n * know when NOT to apply the prediction.\n *\n * Main entry points:\n *\n * 1. discoverKnownRoute: Called after receiving a route tree from the server.\n * Traverses the route tree, compares URL parts to segments, and populates\n * the known route tree if they match. Routes are always inserted into the\n * cache.\n *\n * 2. matchKnownRoute: Called when looking up a route with no cache entry.\n * Matches the candidate URL against learned patterns. Returns a synthetic\n * cache entry if successful, or null to fall back to server resolution.\n *\n * Rewrite detection happens during traversal: if a URL path part doesn't match\n * the corresponding route segment, we stop populating the known route tree\n * (since the mapping is incorrect) but still insert the route into the cache.\n *\n * The known route tree is append-only with no eviction. Route patterns are\n * derived from the filesystem, so they don't become stale within a session.\n * Cache invalidation on deploy clears everything anyway.\n *\n * Current limitations (deopt to server resolution):\n * - Rewrites: Detected during traversal (tree not populated, but route cached)\n * - Intercepted routes: The route tree varies by referrer (Next-Url header),\n * so we can't predict the correct structure from the URL alone. Patterns are\n * still stored during discovery (so the trie stays populated for non-\n * intercepted siblings), but matching bails out when the pattern is marked\n * as interceptable.\n */\n\nimport type { DynamicParamTypesShort } from '../../../shared/lib/app-router-types'\nimport type { RouteTree, FulfilledRouteCacheEntry } from './cache'\nimport {\n EntryStatus,\n writeRouteIntoCache,\n fulfillRouteCacheEntry,\n type PendingRouteCacheEntry,\n createMetadataRouteTree,\n} from './cache'\nimport { doesStaticSegmentAppearInURL } from '../../route-params'\nimport type { NormalizedPathname, NormalizedSearch } from './cache-key'\nimport {\n appendLayoutVaryPath,\n finalizeLayoutVaryPath,\n finalizePageVaryPath,\n finalizeMetadataVaryPath,\n type PartialSegmentVaryPath,\n type PageVaryPath,\n} from './vary-path'\n\n/**\n * The known route tree is analogous to a route table. A different routing\n * implementation might use regexes or URLPattern; ours uses a trie indexed\n * by URL path segments.\n *\n * Each node (KnownRoutePart) represents a position in the URL and can have:\n * - staticChildren: Map of literal segments to child nodes\n * - dynamicChild: A single dynamic segment node ([slug], [...params], etc.)\n * - pattern: A cache entry template for routes that terminate here\n *\n * This tree only contains segments that correspond to actual filesystem routes.\n * Route groups like (marketing) and parallel routes like @modal are not\n * included since they don't appear in URLs. Similarly, if a URL is rewritten\n * to a different filesystem path, the original URL segments don't appear here\n * — only the resolved filesystem route structure is stored.\n *\n * Example tree after learning /blog/[slug], /blog/featured, and /about:\n *\n * ├── about\n * └── blog\n * ├── featured\n * └── [slug]\n *\n * When matching /blog/hello:\n * 1. \"blog\" matches static child\n * 2. \"hello\" doesn't match \"featured\", falls through to [slug]\n * 3. Returns [slug]'s pattern with resolved param { slug: \"hello\" }\n */\ntype KnownRoutePartBase = {\n // Known static paths at this level. The null vs Map distinction is\n // semantically meaningful:\n // - null: Static siblings are UNKNOWN at this level (e.g., webpack dev mode\n // where routes are compiled on-demand). If there's a dynamicChild, we\n // can't safely match it because the URL might be an unknown static sibling.\n // - Map (even if empty): Static siblings are KNOWN. We can safely match a\n // dynamicChild if the URL doesn't match any entry in the Map.\n staticChildren: Map | null\n\n // The cache entry that serves as a pattern for this route.\n // When a URL matches, we clone this and substitute param values.\n // null means we know this path exists (from static siblings) but haven't\n // learned its structure yet.\n pattern: FulfilledRouteCacheEntry | null\n\n // TODO: For prefix rewrite support. When true, this part may not appear in\n // the candidate URL because it was injected by a rewrite.\n // mayBeSkippedInURL: boolean\n}\n\n// The dynamic child fields are structured as a union so that narrowing on\n// dynamicChild also narrows dynamicChildParamName and dynamicChildParamType.\ntype KnownRoutePartWithoutDynamicChild = KnownRoutePartBase & {\n dynamicChild: null\n dynamicChildParamName: null\n dynamicChildParamType: null\n}\n\ntype KnownRoutePartWithDynamicChild = KnownRoutePartBase & {\n dynamicChild: KnownRoutePart\n dynamicChildParamName: string\n dynamicChildParamType: DynamicParamTypesShort\n}\n\ntype KnownRoutePart =\n | KnownRoutePartWithoutDynamicChild\n | KnownRoutePartWithDynamicChild\n\n/**\n * Param values extracted during URL matching. Used to reify the template.\n * - string for regular dynamic [param]\n * - string[] for catch-all [...param] and optional catch-all [[...param]]\n */\ntype ResolvedParams = Map\n\nfunction createEmptyPart(): KnownRoutePart {\n return {\n staticChildren: null,\n dynamicChild: null,\n dynamicChildParamName: null,\n dynamicChildParamType: null,\n pattern: null,\n }\n}\n\n// The root of the known route tree.\nlet knownRouteTreeRoot: KnownRoutePart = createEmptyPart()\n\n/**\n * Learns a route pattern from a server response and inserts it into the cache.\n *\n * Called after receiving a route tree from the server (initial load, navigation,\n * or prefetch). Traverses the route tree, compares URL parts to segments, and\n * populates the known route tree if they match. Routes are always inserted into\n * the cache regardless of whether the URL matches the route structure.\n *\n * When pendingEntry is provided, it's fulfilled and used. When null, an entry\n * is created and inserted into the route cache map.\n *\n * When hasDynamicRewrite is true, the route entry is marked as having a\n * dynamic rewrite, which prevents it from being used as a template for future\n * predictions. This is set when we detect a mismatch between what we predicted\n * and what the server returned.\n *\n * Returns the fulfilled route cache entry.\n */\nexport function discoverKnownRoute(\n now: number,\n pathname: string,\n nextUrl: string | null,\n pendingEntry: PendingRouteCacheEntry | null,\n routeTree: RouteTree,\n metadataVaryPath: PageVaryPath,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n supportsPerSegmentPrefetching: boolean,\n hasDynamicRewrite: boolean\n): FulfilledRouteCacheEntry {\n const tree = routeTree\n\n const pathnameParts = pathname.split('/').filter((p) => p !== '')\n const firstPart = pathnameParts.length > 0 ? pathnameParts[0] : null\n const remainingParts = pathnameParts.length > 0 ? pathnameParts.slice(1) : []\n\n if (pendingEntry !== null) {\n // Fulfill the pending entry first\n const fulfilledEntry = fulfillRouteCacheEntry(\n now,\n pendingEntry,\n tree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching\n )\n if (hasDynamicRewrite) {\n fulfilledEntry.hasDynamicRewrite = true\n }\n // Populate the known route tree (handles rewrite detection internally).\n // The entry is already in the cache; this just stores it as a pattern\n // if the URL matches the route structure.\n discoverKnownRoutePart(\n knownRouteTreeRoot,\n tree,\n firstPart,\n remainingParts,\n fulfilledEntry,\n now,\n pathname,\n nextUrl,\n tree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching,\n hasDynamicRewrite\n )\n return fulfilledEntry\n }\n\n // No pending entry - discoverKnownRoutePart will create one and insert it\n // into the cache, or return an existing pattern if one exists.\n return discoverKnownRoutePart(\n knownRouteTreeRoot,\n tree,\n firstPart,\n remainingParts,\n null,\n now,\n pathname,\n nextUrl,\n tree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching,\n hasDynamicRewrite\n )\n}\n\n/**\n * Gets or creates the dynamic child node for a KnownRoutePart.\n * A node can have at most one dynamic child (you can't have both [slug] and\n * [id] at the same route level), so we either return existing or create new.\n */\nfunction discoverDynamicChild(\n part: KnownRoutePart,\n paramName: string,\n paramType: DynamicParamTypesShort\n): KnownRoutePart {\n if (part.dynamicChild !== null) {\n return part.dynamicChild\n }\n const newChild = createEmptyPart()\n // Type assertion needed because we're converting from \"without\" to \"with\"\n // dynamic child variant.\n const mutablePart = part as unknown as KnownRoutePartWithDynamicChild\n mutablePart.dynamicChild = newChild\n mutablePart.dynamicChildParamName = paramName\n mutablePart.dynamicChildParamType = paramType\n return newChild\n}\n\n/**\n * Recursive workhorse for discoverKnownRoute.\n *\n * Walks the route tree and URL parts in parallel, building out the known\n * route tree as it goes. At each step:\n * 1. Determines if the current segment appears in the URL (dynamic/static)\n * 2. Validates URL matches route structure (detects rewrites)\n * 3. Creates/updates the corresponding KnownRoutePart node\n * 4. Records static siblings for future matching\n * 5. Recurses into child slots (parallel routes)\n *\n * If a URL/route mismatch is detected (rewrite), we stop building the known\n * route tree but still cache the route entry for direct lookup.\n */\nfunction discoverKnownRoutePart(\n parentKnownRoutePart: KnownRoutePart,\n routeTree: RouteTree,\n urlPart: string | null,\n remainingParts: string[],\n existingEntry: FulfilledRouteCacheEntry | null,\n // These are passed through unchanged for entry creation at the leaf\n now: number,\n pathname: string,\n nextUrl: string | null,\n fullTree: RouteTree,\n metadataVaryPath: PageVaryPath,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n supportsPerSegmentPrefetching: boolean,\n hasDynamicRewrite: boolean\n): FulfilledRouteCacheEntry {\n const segment = routeTree.segment\n\n let segmentAppearsInURL: boolean\n let paramName: string | null = null\n let paramType: DynamicParamTypesShort | null = null\n let staticSiblings: readonly string[] | null = null\n\n if (typeof segment === 'string') {\n segmentAppearsInURL = doesStaticSegmentAppearInURL(segment)\n } else {\n // Dynamic segment tuple: [paramName, paramCacheKey, paramType, staticSiblings]\n paramName = segment[0]\n paramType = segment[2]\n staticSiblings = segment[3]\n segmentAppearsInURL = true\n }\n\n let knownRoutePart: KnownRoutePart = parentKnownRoutePart\n let nextUrlPart: string | null = urlPart\n let nextRemainingParts: string[] = remainingParts\n\n if (segmentAppearsInURL) {\n // Check for mismatch: if this is a static segment, the URL part must match\n if (paramName === null && urlPart !== segment) {\n // URL doesn't match route structure (likely a rewrite).\n // Don't populate the known route tree, just write the route into the\n // cache and return immediately.\n if (existingEntry !== null) {\n return existingEntry\n }\n return writeRouteIntoCache(\n now,\n pathname as NormalizedPathname,\n nextUrl,\n fullTree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching\n )\n }\n\n // URL matches route structure. Build the known route tree.\n if (paramName !== null && paramType !== null) {\n // Dynamic segment\n knownRoutePart = discoverDynamicChild(\n parentKnownRoutePart,\n paramName,\n paramType\n )\n\n // Record static siblings as placeholder parts.\n // IMPORTANT: We use the null vs Map distinction to track whether\n // siblings are known at this level:\n // - staticChildren: null = siblings unknown (can't safely match dynamic)\n // - staticChildren: Map = siblings known (even if empty)\n // This matters in dev mode where webpack may not know all siblings yet.\n if (staticSiblings !== null) {\n // Siblings are known - ensure we have a Map (even if empty)\n if (parentKnownRoutePart.staticChildren === null) {\n parentKnownRoutePart.staticChildren = new Map()\n }\n for (const sibling of staticSiblings) {\n if (!parentKnownRoutePart.staticChildren.has(sibling)) {\n parentKnownRoutePart.staticChildren.set(sibling, createEmptyPart())\n }\n }\n }\n } else {\n // Static segment\n if (parentKnownRoutePart.staticChildren === null) {\n parentKnownRoutePart.staticChildren = new Map()\n }\n let existingChild = parentKnownRoutePart.staticChildren.get(urlPart!)\n if (existingChild === undefined) {\n existingChild = createEmptyPart()\n parentKnownRoutePart.staticChildren.set(urlPart!, existingChild)\n }\n knownRoutePart = existingChild\n }\n\n // Advance to next URL part\n nextUrlPart = remainingParts.length > 0 ? remainingParts[0] : null\n nextRemainingParts =\n remainingParts.length > 0 ? remainingParts.slice(1) : []\n }\n // else: Transparent segment (route group, __PAGE__, etc.)\n // Stay at the same known route part, don't advance URL parts\n\n // Recurse into child routes. A route tree can have multiple parallel routes\n // (e.g., @modal alongside children). Each parallel route is a separate\n // branch, but they all share the same URL - we just need to traverse all\n // branches to build out the known route tree.\n const slots = routeTree.slots\n let resultFromChildren: FulfilledRouteCacheEntry | null = null\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childRouteTree = slots[parallelRouteKey]\n // Skip branches with refreshState set - these were reused from a\n // different route (e.g., a \"default\" parallel slot) and don't represent\n // the actual route structure for this URL.\n if (childRouteTree.refreshState !== null) {\n continue\n }\n const result = discoverKnownRoutePart(\n knownRoutePart,\n childRouteTree,\n nextUrlPart,\n nextRemainingParts,\n existingEntry,\n now,\n pathname,\n nextUrl,\n fullTree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching,\n hasDynamicRewrite\n )\n // All parallel route branches share the same URL, so they should all\n // reach compatible leaf nodes. We capture any result.\n resultFromChildren = result\n }\n if (resultFromChildren !== null) {\n return resultFromChildren\n }\n // Defensive fallback: no children returned a result. This shouldn't happen\n // for valid route trees, but handle it gracefully.\n if (existingEntry !== null) {\n return existingEntry\n }\n return writeRouteIntoCache(\n now,\n pathname as NormalizedPathname,\n nextUrl,\n fullTree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching\n )\n }\n\n // Reached a page node. Create/get the route cache entry and store as a\n // pattern. First, check if there's already a pattern for this route.\n if (knownRoutePart.pattern !== null) {\n // If this route has a dynamic rewrite, mark the existing pattern.\n if (hasDynamicRewrite) {\n knownRoutePart.pattern.hasDynamicRewrite = true\n }\n return knownRoutePart.pattern\n }\n\n // Get or create the entry\n let entry: FulfilledRouteCacheEntry\n if (existingEntry !== null) {\n // Already have a fulfilled entry, use it directly. It's already in the\n // route cache map.\n entry = existingEntry\n } else {\n // Create the entry and insert it into the route cache map.\n entry = writeRouteIntoCache(\n now,\n pathname as NormalizedPathname,\n nextUrl,\n fullTree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching\n )\n }\n\n if (hasDynamicRewrite) {\n entry.hasDynamicRewrite = true\n }\n\n // Store as pattern\n knownRoutePart.pattern = entry\n return entry\n}\n\n/**\n * Attempts to match a URL against learned route patterns.\n *\n * Returns a synthetic FulfilledRouteCacheEntry if the URL matches a known\n * pattern, or null if no match is found (fall back to server resolution).\n */\nexport function matchKnownRoute(\n pathname: string,\n search: NormalizedSearch\n): FulfilledRouteCacheEntry | null {\n const pathnameParts = pathname.split('/').filter((p) => p !== '')\n const resolvedParams: ResolvedParams = new Map()\n const match = matchKnownRoutePart(\n knownRouteTreeRoot,\n pathnameParts,\n 0,\n resolvedParams\n )\n\n if (match === null) {\n return null\n }\n\n const matchedPart = match.part\n const pattern = match.pattern\n\n // If the pattern could be intercepted, we can't safely use it for prediction.\n // Interception routes resolve to different route trees depending on the\n // referrer (the Next-Url header), which means the same URL can map to\n // different page components depending on where the navigation originated.\n // Since the known route tree only stores a single pattern per URL shape, we\n // can't distinguish between the intercepted and non-intercepted cases, so we\n // bail out to server resolution.\n //\n // TODO: We could store interception behavior in the known route tree itself\n // (e.g., which segments use interception markers and what they resolve to).\n // With enough information embedded in the trie, we could match interception\n // routes entirely on the client without a server round-trip.\n if (pattern.couldBeIntercepted) {\n return null\n }\n\n // \"Reify\" the pattern: clone the template tree with concrete param values.\n // This substitutes resolved params (e.g., slug: \"hello\") into dynamic\n // segments and recomputes vary paths for correct segment cache keying.\n const acc: ReifyAccumulator = { metadataVaryPath: null }\n const reifiedTree = reifyRouteTree(\n pattern.tree,\n resolvedParams,\n search,\n null, // Start with null partial vary path at the root\n acc\n )\n\n // The metadata tree is a flat page node without the intermediate layout\n // structure. Clone it with the updated metadata vary path collected during\n // the main tree traversal.\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n // This shouldn't be reachable for a valid route tree.\n return null\n }\n const reifiedMetadata = createMetadataRouteTree(metadataVaryPath)\n\n // Create a synthetic (predicted) entry and store it as the new pattern.\n //\n // Why replace the pattern? We intentionally update the pattern with this\n // synthetic entry so that if our prediction was wrong (server returns a\n // different pathname due to dynamic rewrite), the entry gets marked with\n // hasDynamicRewrite. Future predictions for this route will see the flag\n // and bail out to server resolution instead of making the same mistake.\n const syntheticEntry: FulfilledRouteCacheEntry = {\n canonicalUrl: pathname + search,\n status: EntryStatus.Fulfilled,\n blockedTasks: null,\n tree: reifiedTree,\n metadata: reifiedMetadata,\n couldBeIntercepted: pattern.couldBeIntercepted,\n supportsPerSegmentPrefetching: pattern.supportsPerSegmentPrefetching,\n hasDynamicRewrite: false,\n renderedSearch: search,\n ref: null,\n size: pattern.size,\n staleAt: pattern.staleAt,\n version: pattern.version,\n }\n\n matchedPart.pattern = syntheticEntry\n\n return syntheticEntry\n}\n\n/**\n * Result of a successful match: the matched tree node and its pattern.\n * We return both because the caller needs to update the pattern after\n * creating a synthetic entry (for dynamic rewrite detection).\n */\ntype KnownRouteMatch = {\n part: KnownRoutePart\n pattern: FulfilledRouteCacheEntry\n} | null\n\n/**\n * Recursively matches a URL against the known route tree.\n *\n * Matching priority (most specific first):\n * 1. Static children - exact path segment match\n * 2. Dynamic child - [param], [...param], [[...param]]\n * 3. Direct pattern - when no more URL parts remain\n *\n * Collects resolved param values in resolvedParams as it traverses.\n * Returns null if no match found (caller should fall back to server).\n */\nfunction matchKnownRoutePart(\n part: KnownRoutePart,\n pathnameParts: string[],\n partIndex: number,\n resolvedParams: ResolvedParams\n): KnownRouteMatch {\n const urlPart =\n partIndex < pathnameParts.length ? pathnameParts[partIndex] : null\n\n // If staticChildren is null, we don't know what static routes exist at this\n // level. This happens in webpack dev mode where routes are compiled\n // on-demand. We can't safely match a dynamicChild because the URL part might\n // be a static sibling we haven't discovered yet. Example: We know\n // /blog/[slug] exists, but haven't compiled /blog/featured. A request for\n // /blog/featured would incorrectly match /blog/[slug].\n if (part.staticChildren === null) {\n // The only safe match is a direct pattern when no URL parts remain.\n if (urlPart === null) {\n const pattern = part.pattern\n if (pattern !== null && !pattern.hasDynamicRewrite) {\n return { part, pattern }\n }\n }\n return null\n }\n\n // Static children take priority over dynamic. This ensures /blog/featured\n // matches its own route rather than /blog/[slug].\n if (urlPart !== null) {\n const staticChild = part.staticChildren.get(urlPart)\n if (staticChild !== undefined) {\n // Check if this is an \"unknown\" placeholder part. These are created when\n // we learn about static siblings (from the route tree's staticSiblings\n // field) but haven't prefetched them yet. We know the path exists but\n // don't know its structure, so we can't predict it.\n if (\n staticChild.pattern === null &&\n staticChild.dynamicChild === null &&\n staticChild.staticChildren === null\n ) {\n // Bail out - server must resolve this route.\n return null\n }\n const match = matchKnownRoutePart(\n staticChild,\n pathnameParts,\n partIndex + 1,\n resolvedParams\n )\n if (match !== null) {\n return match\n }\n // Static child is a real node (not a placeholder) but its subtree\n // didn't match the remaining URL parts. This means the route exists\n // in the static subtree but hasn't been fully discovered yet. Do not\n // fall through to try the dynamic child — the static match is\n // authoritative. Bail out to server resolution.\n return null\n }\n }\n\n // Try dynamic child\n if (part.dynamicChild !== null) {\n const dynamicPart = part.dynamicChild\n const paramName = part.dynamicChildParamName\n const paramType = part.dynamicChildParamType\n const dynamicPattern = dynamicPart.pattern\n\n switch (paramType) {\n case 'c':\n // Required catch-all [...param]: consumes 1+ URL parts\n if (\n dynamicPattern !== null &&\n !dynamicPattern.hasDynamicRewrite &&\n urlPart !== null\n ) {\n resolvedParams.set(paramName, pathnameParts.slice(partIndex))\n return { part: dynamicPart, pattern: dynamicPattern }\n }\n break\n case 'oc':\n // Optional catch-all [[...param]]: consumes 0+ URL parts\n if (dynamicPattern !== null && !dynamicPattern.hasDynamicRewrite) {\n if (urlPart !== null) {\n resolvedParams.set(paramName, pathnameParts.slice(partIndex))\n return { part: dynamicPart, pattern: dynamicPattern }\n }\n // urlPart is null - can match with zero parts, but a direct pattern\n // (e.g., page.tsx alongside [[...param]]) takes precedence.\n if (part.pattern === null || part.pattern.hasDynamicRewrite) {\n resolvedParams.set(paramName, [])\n return { part: dynamicPart, pattern: dynamicPattern }\n }\n }\n break\n case 'd':\n // Regular dynamic [param]: consumes exactly 1 URL part.\n // Unlike catch-all which terminates here, regular dynamic must\n // continue recursing to find the leaf pattern.\n if (urlPart !== null) {\n resolvedParams.set(paramName, urlPart)\n return matchKnownRoutePart(\n dynamicPart,\n pathnameParts,\n partIndex + 1,\n resolvedParams\n )\n }\n break\n // Intercepted routes use relative path markers like (.), (..), (...)\n // Their behavior depends on navigation context (soft vs hard nav),\n // so we can't predict them client-side. Defer to server.\n case 'ci(..)(..)':\n case 'ci(.)':\n case 'ci(..)':\n case 'ci(...)':\n case 'di(..)(..)':\n case 'di(.)':\n case 'di(..)':\n case 'di(...)':\n return null\n default:\n paramType satisfies never\n }\n }\n\n // No children matched. If we've consumed all URL parts, check for a direct\n // pattern at this node (the route terminates here).\n if (urlPart === null) {\n const pattern = part.pattern\n if (pattern !== null && !pattern.hasDynamicRewrite) {\n return { part, pattern }\n }\n }\n\n return null\n}\n\n/**\n * Accumulator for collecting data during reifyRouteTree traversal.\n * metadataVaryPath is collected from the first page node encountered\n * (parallel routes may have multiple pages, but metadata uses the first).\n */\ntype ReifyAccumulator = {\n metadataVaryPath: PageVaryPath | null\n}\n\n/**\n * \"Reify\" means to make concrete - we take an abstract pattern (the template\n * route tree) and produce a concrete instance with actual param values.\n *\n * This function clones a RouteTree, substituting dynamic segment values from\n * resolvedParams and computing new vary paths. The vary path encodes param\n * values so segment cache entries can be correctly keyed.\n *\n * Example: Pattern for /blog/[slug] with resolvedParams { slug: \"hello\" }\n * produces a tree where segment [slug] has cacheKey \"hello\".\n */\nfunction reifyRouteTree(\n pattern: RouteTree,\n resolvedParams: ResolvedParams,\n search: NormalizedSearch,\n parentPartialVaryPath: PartialSegmentVaryPath | null,\n acc: ReifyAccumulator\n): RouteTree {\n const originalSegment = pattern.segment\n\n let newSegment = originalSegment\n let partialVaryPath: PartialSegmentVaryPath | null\n\n if (typeof originalSegment !== 'string') {\n // Dynamic segment: compute new cache key and append to partial vary path\n const paramName = originalSegment[0]\n const paramType = originalSegment[2]\n const staticSiblings = originalSegment[3]\n const newValue = resolvedParams.get(paramName)\n if (newValue !== undefined) {\n const newCacheKey = Array.isArray(newValue)\n ? newValue.join('/')\n : newValue\n newSegment = [paramName, newCacheKey, paramType, staticSiblings]\n partialVaryPath = appendLayoutVaryPath(\n parentPartialVaryPath,\n newCacheKey,\n paramName\n )\n } else {\n // Param not found in resolvedParams - keep original and inherit partial\n // TODO: This should never happen. Bail out with null.\n partialVaryPath = parentPartialVaryPath\n }\n } else {\n // Static segment: inherit partial vary path from parent\n partialVaryPath = parentPartialVaryPath\n }\n\n // Recurse into children with the (possibly updated) partial vary path\n let newSlots: Record | null = null\n if (pattern.slots !== null) {\n newSlots = {}\n for (const key in pattern.slots) {\n newSlots[key] = reifyRouteTree(\n pattern.slots[key],\n resolvedParams,\n search,\n partialVaryPath,\n acc\n )\n }\n }\n\n if (pattern.isPage) {\n // Page segment: finalize with search params\n const newVaryPath = finalizePageVaryPath(\n pattern.requestKey,\n search,\n partialVaryPath\n )\n // Collect metadata vary path (first page wins, same as original algorithm)\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n pattern.requestKey,\n search,\n partialVaryPath\n )\n }\n return {\n requestKey: pattern.requestKey,\n segment: newSegment,\n refreshState: pattern.refreshState,\n slots: newSlots,\n\n prefetchHints: pattern.prefetchHints,\n isPage: true,\n varyPath: newVaryPath,\n }\n } else {\n // Layout segment: finalize without search params\n const newVaryPath = finalizeLayoutVaryPath(\n pattern.requestKey,\n partialVaryPath\n )\n return {\n requestKey: pattern.requestKey,\n segment: newSegment,\n refreshState: pattern.refreshState,\n slots: newSlots,\n\n prefetchHints: pattern.prefetchHints,\n isPage: false,\n varyPath: newVaryPath,\n }\n }\n}\n\n/**\n * Resets the known route tree. Called during development when routes may\n * change due to hot reloading.\n */\nexport function resetKnownRoutes(): void {\n knownRouteTreeRoot = createEmptyPart()\n}\n","import type {\n CacheNodeSeedData,\n FlightRouterState,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type { HeadData, ScrollRef } from '../../../shared/lib/app-router-types'\nimport { PrefetchHint } from '../../../shared/lib/app-router-types'\nimport {\n PAGE_SEGMENT_KEY,\n DEFAULT_SEGMENT_KEY,\n NOT_FOUND_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\nimport { createHrefFromUrl } from './create-href-from-url'\nimport { fetchServerResponse } from './fetch-server-response'\nimport { dispatchAppRouterAction } from '../use-action-queue'\nimport {\n ACTION_SERVER_PATCH,\n type ServerPatchAction,\n} from './router-reducer-types'\nimport { isNavigatingToNewRootLayout } from './is-navigating-to-new-root-layout'\nimport { getLastCommittedTree } from './reducers/committed-state'\nimport {\n convertServerPatchToFullTree,\n type NavigationSeed,\n} from '../segment-cache/navigation'\nimport {\n type RouteTree,\n type RefreshState,\n type FulfilledRouteCacheEntry,\n convertReusedFlightRouterStateToRouteTree,\n readSegmentCacheEntry,\n waitForSegmentCacheEntry,\n markRouteEntryAsDynamicRewrite,\n invalidateRouteCacheEntries,\n getStaleAt,\n writeStaticStageResponseIntoCache,\n processRuntimePrefetchStream,\n writeDynamicRenderResponseIntoCache,\n EntryStatus,\n} from '../segment-cache/cache'\nimport { FetchStrategy } from '../segment-cache/types'\nimport { discoverKnownRoute } from '../segment-cache/optimistic-routes'\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants'\nimport type { NormalizedSearch } from '../segment-cache/cache-key'\nimport {\n getRenderedSearchFromVaryPath,\n type PageVaryPath,\n} from '../segment-cache/vary-path'\nimport {\n readFromBFCache,\n readFromBFCacheDuringRegularNavigation,\n writeToBFCache,\n writeHeadToBFCache,\n updateBFCacheEntryStaleAt,\n computeDynamicStaleAt,\n} from '../segment-cache/bfcache'\n\n// This is yet another tree type that is used to track pending promises that\n// need to be fulfilled once the dynamic data is received. The terminal nodes of\n// this tree represent the new Cache Node trees that were created during this\n// request. We can't use the Cache Node tree or Route State tree directly\n// because those include reused nodes, too. This tree is discarded as soon as\n// the navigation response is received.\nexport type NavigationTask = {\n status: NavigationTaskStatus\n // The router state that corresponds to the tree that this Task represents.\n route: FlightRouterState\n // The CacheNode that corresponds to the tree that this Task represents.\n node: CacheNode\n // The tree sent to the server during the dynamic request. If all the segments\n // are static, then this will be null, and no server request is required.\n // Otherwise, this is the same as `route`, except with the `refetch` marker\n // set on the top-most segment that needs to be fetched.\n dynamicRequestTree: FlightRouterState | null\n // The URL that should be used to fetch the dynamic data. This is only set\n // when the segment cannot be refetched from the current route, because it's\n // part of a \"default\" parallel slot that was reused during a navigation.\n refreshState: RefreshState | null\n children: Map | null\n}\n\nexport const enum FreshnessPolicy {\n Default,\n Hydration,\n HistoryTraversal,\n RefreshAll,\n HMRRefresh,\n Gesture,\n}\n\nconst enum NavigationTaskStatus {\n Pending,\n Fulfilled,\n Rejected,\n}\n\n/**\n * When a NavigationTask finishes, there may or may not be data still missing,\n * necessitating a retry.\n */\nconst enum NavigationTaskExitStatus {\n /**\n * No additional navigation is required.\n */\n Done = 0,\n /**\n * Some data failed to load, presumably due to a route tree mismatch. Perform\n * a soft retry to reload the entire tree.\n */\n SoftRetry = 1,\n /**\n * Some data failed to load in an unrecoverable way, e.g. in an inactive\n * parallel route. Fall back to a hard (MPA-style) retry.\n */\n HardRetry = 2,\n}\n\nexport type NavigationRequestAccumulation = {\n separateRefreshUrls: Set | null\n /**\n * Set when a navigation creates new leaf segments that should be\n * scrolled to. Stays null when no new segments are created (e.g.\n * during a refresh where the route structure didn't change).\n */\n scrollRef: ScrollRef | null\n}\n\nconst noop = () => {}\n\nexport function createInitialCacheNodeForHydration(\n navigatedAt: number,\n initialTree: RouteTree,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData,\n seedDynamicStaleAt: number\n): NavigationTask {\n // Create the initial cache node tree, using the data embedded into the\n // HTML document.\n const accumulation: NavigationRequestAccumulation = {\n separateRefreshUrls: null,\n scrollRef: null,\n }\n const task = createCacheNodeOnNavigation(\n navigatedAt,\n initialTree,\n null,\n FreshnessPolicy.Hydration,\n seedData,\n seedHead,\n seedDynamicStaleAt,\n false,\n accumulation\n )\n return task\n}\n\n// Creates a new Cache Node tree (i.e. copy-on-write) that represents the\n// optimistic result of a navigation, using both the current Cache Node tree and\n// data that was prefetched prior to navigation.\n//\n// At the moment we call this function, we haven't yet received the navigation\n// response from the server. It could send back something completely different\n// from the tree that was prefetched — due to rewrites, default routes, parallel\n// routes, etc.\n//\n// But in most cases, it will return the same tree that we prefetched, just with\n// the dynamic holes filled in. So we optimistically assume this will happen,\n// and accept that the real result could be arbitrarily different.\n//\n// We'll reuse anything that was already in the previous tree, since that's what\n// the server does.\n//\n// New segments (ones that don't appear in the old tree) are assigned an\n// unresolved promise. The data for these promises will be fulfilled later, when\n// the navigation response is received.\n//\n// The tree can be rendered immediately after it is created (that's why this is\n// a synchronous function). Any new trees that do not have prefetch data will\n// suspend during rendering, until the dynamic data streams in.\n//\n// Returns a Task object, which contains both the updated Cache Node and a path\n// to the pending subtrees that need to be resolved by the navigation response.\n//\n// A return value of `null` means there were no changes, and the previous tree\n// can be reused without initiating a server request.\nexport function startPPRNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldRenderedSearch: string,\n oldCacheNode: CacheNode | null,\n oldRouterState: FlightRouterState,\n newRouteTree: RouteTree,\n newMetadataVaryPath: PageVaryPath | null,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n seedDynamicStaleAt: number,\n isSamePageNavigation: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n const didFindRootLayout = false\n const parentNeedsDynamicRequest = false\n const parentRefreshState = null\n const oldRootRefreshState: RefreshState = {\n canonicalUrl: createHrefFromUrl(oldUrl),\n renderedSearch: oldRenderedSearch as NormalizedSearch,\n }\n return updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNode !== null ? oldCacheNode : undefined,\n oldRouterState,\n newRouteTree,\n newMetadataVaryPath,\n freshness,\n didFindRootLayout,\n seedData,\n seedHead,\n seedDynamicStaleAt,\n isSamePageNavigation,\n parentNeedsDynamicRequest,\n oldRootRefreshState,\n parentRefreshState,\n accumulation\n )\n}\n\nfunction updateCacheNodeOnNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldCacheNode: CacheNode | void,\n oldRouterState: FlightRouterState,\n newRouteTree: RouteTree,\n newMetadataVaryPath: PageVaryPath | null,\n freshness: FreshnessPolicy,\n didFindRootLayout: boolean,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n seedDynamicStaleAt: number,\n isSamePageNavigation: boolean,\n parentNeedsDynamicRequest: boolean,\n oldRootRefreshState: RefreshState,\n parentRefreshState: RefreshState | null,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n // Check if this segment matches the one in the previous route.\n const oldSegment = oldRouterState[0]\n const newSegment = createSegmentFromRouteTree(newRouteTree)\n if (!matchSegment(newSegment, oldSegment)) {\n // This segment does not match the previous route. We're now entering the\n // new part of the target route. Switch to the \"create\" path.\n if (\n // Check if the route tree changed before we reached a layout. (The\n // highest-level layout in a route tree is referred to as the \"root\"\n // layout.) This could mean that we're navigating between two different\n // root layouts. When this happens, we perform a full-page (MPA-style)\n // navigation.\n //\n // However, the algorithm for deciding where to start rendering a route\n // (i.e. the one performed in order to reach this function) is stricter\n // than the one used to detect a change in the root layout. So just\n // because we're re-rendering a segment outside of the root layout does\n // not mean we should trigger a full-page navigation.\n //\n // Specifically, we handle dynamic parameters differently: two segments\n // are considered the same even if their parameter values are different.\n //\n // Refer to isNavigatingToNewRootLayout for details.\n //\n // Note that we only have to perform this extra traversal if we didn't\n // already discover a root layout in the part of the tree that is\n // unchanged. We also only need to compare the subtree that is not\n // shared. In the common case, this branch is skipped completely.\n (!didFindRootLayout &&\n isNavigatingToNewRootLayout(oldRouterState, newRouteTree)) ||\n // The global Not Found route (app/global-not-found.tsx) is a special\n // case, because it acts like a root layout, but in the router tree, it\n // is rendered in the same position as app/layout.tsx.\n //\n // Any navigation to the global Not Found route should trigger a\n // full-page navigation.\n //\n // TODO: We should probably model this by changing the key of the root\n // segment when this happens. Then the root layout check would work\n // as expected, without a special case.\n newSegment === NOT_FOUND_SEGMENT_KEY\n ) {\n return null\n }\n return createCacheNodeOnNavigation(\n navigatedAt,\n newRouteTree,\n newMetadataVaryPath,\n freshness,\n seedData,\n seedHead,\n seedDynamicStaleAt,\n parentNeedsDynamicRequest,\n accumulation\n )\n }\n\n const newSlots = newRouteTree.slots\n const oldRouterStateChildren = oldRouterState[1]\n const seedDataChildren = seedData !== null ? seedData[1] : null\n\n // We're currently traversing the part of the tree that was also part of\n // the previous route. If we discover a root layout, then we don't need to\n // trigger an MPA navigation.\n const childDidFindRootLayout =\n didFindRootLayout ||\n (newRouteTree.prefetchHints & PrefetchHint.IsRootLayout) !== 0\n\n let shouldRefreshDynamicData: boolean = false\n switch (freshness) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n case FreshnessPolicy.Hydration:\n case FreshnessPolicy.Gesture:\n shouldRefreshDynamicData = false\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n shouldRefreshDynamicData = true\n break\n default:\n freshness satisfies never\n break\n }\n\n // TODO: We're not consistent about how we do this check. Some places\n // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to\n // check if there any any children, which is why I'm doing it here. We\n // should probably encode an empty children set as `null` though. Either\n // way, we should update all the checks to be consistent.\n const isLeafSegment = newSlots === null\n\n // Get the data for this segment. Since it was part of the previous route,\n // usually we just clone the data from the old CacheNode. However, during a\n // refresh or a revalidation, there won't be any existing CacheNode. So we\n // may need to consult the prefetch cache, like we would for a new segment.\n let newCacheNode: CacheNode\n let needsDynamicRequest: boolean\n if (\n oldCacheNode !== undefined &&\n !shouldRefreshDynamicData &&\n // During a same-page navigation, we always refetch the page segments\n !(isLeafSegment && isSamePageNavigation)\n ) {\n // Reuse the existing CacheNode\n const dropPrefetchRsc = false\n newCacheNode = reuseSharedCacheNode(dropPrefetchRsc, oldCacheNode)\n needsDynamicRequest = false\n } else {\n // If this is part of a refresh, ignore the existing CacheNode and create a\n // new one.\n const seedRsc = seedData !== null ? seedData[0] : null\n const result = createCacheNodeForSegment(\n navigatedAt,\n newRouteTree,\n seedRsc,\n newMetadataVaryPath,\n seedHead,\n freshness,\n seedDynamicStaleAt\n )\n newCacheNode = result.cacheNode\n needsDynamicRequest = result.needsDynamicRequest\n\n // Carry forward the old node's scrollRef. This preserves scroll\n // intent when a prior navigation's cache node is replaced by a\n // refresh before the scroll handler has had a chance to fire —\n // e.g. when router.push() and router.refresh() are called in the\n // same startTransition batch.\n if (oldCacheNode !== undefined) {\n newCacheNode.scrollRef = oldCacheNode.scrollRef\n }\n }\n\n // During a refresh navigation, there's a special case that happens when\n // entering a \"default\" slot. The default slot may not be part of the\n // current route; it may have been reused from an older route. If so,\n // we need to fetch its data from the old route's URL rather than current\n // route's URL. Keep track of this as we traverse the tree.\n const maybeRefreshState = newRouteTree.refreshState\n const refreshState =\n maybeRefreshState !== undefined && maybeRefreshState !== null\n ? // This segment is not present in the current route. Track its\n // refresh URL as we continue traversing the tree.\n maybeRefreshState\n : // Inherit the refresh URL from the parent.\n parentRefreshState\n\n // If this segment itself needs to fetch new data from the server, then by\n // definition it is being refreshed. Track its refresh URL so we know which\n // URL to request the data from.\n if (needsDynamicRequest && refreshState !== null) {\n accumulateRefreshUrl(accumulation, refreshState)\n }\n\n // As we diff the trees, we may sometimes modify (copy-on-write, not mutate)\n // the Route Tree that was returned by the server — for example, in the case\n // of default parallel routes, we preserve the currently active segment. To\n // avoid mutating the original tree, we clone the router state children along\n // the return path.\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n // Most navigations require a request to fetch additional data from the\n // server, either because the data was not already prefetched, or because the\n // target route contains dynamic data that cannot be prefetched.\n //\n // However, if the target route is fully static, and it's already completely\n // loaded into the segment cache, then we can skip the server request.\n //\n // This starts off as `false`, and is set to `true` if any of the child\n // routes requires a dynamic request.\n let childNeedsDynamicRequest = false\n // As we traverse the children, we'll construct a FlightRouterState that can\n // be sent to the server to request the dynamic data. If it turns out that\n // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false\n // at the end), then this will be discarded.\n // TODO: We can probably optimize the format of this data structure to only\n // include paths that are dynamic. Instead of reusing the\n // FlightRouterState type.\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n let newCacheNodeSlots: Record | null = null\n if (newSlots !== null) {\n const oldCacheNodeSlots =\n oldCacheNode !== undefined ? oldCacheNode.slots : null\n\n newCacheNode.slots = newCacheNodeSlots = {}\n taskChildren = new Map()\n for (let parallelRouteKey in newSlots) {\n let newRouteTreeChild: RouteTree = newSlots[parallelRouteKey]\n const oldRouterStateChild: FlightRouterState | void =\n oldRouterStateChildren[parallelRouteKey]\n if (oldRouterStateChild === undefined) {\n // This should never happen, but if it does, it suggests a malformed\n // server response. Trigger a full-page navigation.\n return null\n }\n\n let seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n\n const oldSegmentChild = oldRouterStateChild[0]\n let newSegmentChild = createSegmentFromRouteTree(newRouteTreeChild)\n let seedHeadChild = seedHead\n if (\n // Skip this branch during a history traversal. We restore the tree that\n // was stashed in the history entry as-is.\n freshness !== FreshnessPolicy.HistoryTraversal &&\n newSegmentChild === DEFAULT_SEGMENT_KEY &&\n oldSegmentChild !== DEFAULT_SEGMENT_KEY\n ) {\n // This is a \"default\" segment. These are never sent by the server during\n // a soft navigation; instead, the client reuses whatever segment was\n // already active in that slot on the previous route.\n newRouteTreeChild = reuseActiveSegmentInDefaultSlot(\n newRouteTree,\n parallelRouteKey,\n oldRootRefreshState,\n oldRouterStateChild\n )\n newSegmentChild = createSegmentFromRouteTree(newRouteTreeChild)\n\n // Since we're switching to a different route tree, these are no\n // longer valid, because they correspond to the outer tree.\n seedDataChild = null\n seedHeadChild = null\n }\n\n const oldCacheNodeChild =\n oldCacheNodeSlots !== null\n ? oldCacheNodeSlots[parallelRouteKey]\n : undefined\n\n const taskChild = updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNodeChild,\n oldRouterStateChild,\n newRouteTreeChild,\n newMetadataVaryPath,\n freshness,\n childDidFindRootLayout,\n seedDataChild ?? null,\n seedHeadChild,\n seedDynamicStaleAt,\n isSamePageNavigation,\n parentNeedsDynamicRequest || needsDynamicRequest,\n oldRootRefreshState,\n refreshState,\n accumulation\n )\n\n if (taskChild === null) {\n // One of the child tasks discovered a change to the root layout.\n // Immediately unwind from this recursive traversal. This will trigger a\n // full-page navigation.\n return null\n }\n\n // Recursively propagate up the child tasks.\n taskChildren.set(parallelRouteKey, taskChild)\n newCacheNodeSlots[parallelRouteKey] = taskChild.node\n\n // The child tree's route state may be different from the prefetched\n // route sent by the server. We need to clone it as we traverse back up\n // the tree.\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n // Something in the child tree is dynamic.\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n }\n\n const newFlightRouterState: FlightRouterState = [\n createSegmentFromRouteTree(newRouteTree),\n patchedRouterStateChildren,\n refreshState !== null\n ? [refreshState.canonicalUrl, refreshState.renderedSearch]\n : null,\n null,\n newRouteTree.prefetchHints,\n ]\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: newFlightRouterState,\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newFlightRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n refreshState,\n children: taskChildren,\n }\n}\n\n/**\n * Assigns a ScrollRef to a new leaf CacheNode so the scroll handler\n * knows to scroll to it after navigation. All leaves in the same\n * navigation share the same ScrollRef — the first segment to scroll\n * consumes it, preventing others from also scrolling.\n *\n * This is only called inside `createCacheNodeOnNavigation`, which only\n * runs when segments diverge from the previous route. So for a refresh\n * where the route structure stays the same, segments match, the update\n * path is taken, and this function is never called — no scroll ref is\n * assigned. A scroll ref is only assigned when the route actually\n * changed (e.g. a redirect, or a dynamic condition on the server that\n * produces a different route).\n *\n * Skipped during hydration (initial render should not scroll) and\n * history traversal (scroll restoration is handled separately).\n */\nfunction accumulateScrollRef(\n freshness: FreshnessPolicy,\n cacheNode: CacheNode,\n accumulation: NavigationRequestAccumulation\n): void {\n switch (freshness) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.Gesture:\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n if (accumulation.scrollRef === null) {\n accumulation.scrollRef = { current: true }\n }\n cacheNode.scrollRef = accumulation.scrollRef\n break\n case FreshnessPolicy.Hydration:\n // Initial render — no scroll.\n break\n case FreshnessPolicy.HistoryTraversal:\n // Back/forward — scroll restoration is handled separately.\n break\n default:\n freshness satisfies never\n break\n }\n}\n\nfunction createCacheNodeOnNavigation(\n navigatedAt: number,\n newRouteTree: RouteTree,\n newMetadataVaryPath: PageVaryPath | null,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n seedDynamicStaleAt: number,\n parentNeedsDynamicRequest: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask {\n // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this\n // path once we reach the part of the tree that was not in the previous route.\n // We don't need to diff against the old tree, we just need to create a new\n // one. We also don't need to worry about any refresh-related logic.\n //\n // For the most part, this is a subset of updateCacheNodeOnNavigation, so any\n // change that happens in this function likely needs to be applied to that\n // one, too. However there are some places where the behavior intentionally\n // diverges, which is why we keep them separate.\n\n const newSegment = createSegmentFromRouteTree(newRouteTree)\n\n const newSlots = newRouteTree.slots\n const seedDataChildren = seedData !== null ? seedData[1] : null\n\n const seedRsc = seedData !== null ? seedData[0] : null\n const result = createCacheNodeForSegment(\n navigatedAt,\n newRouteTree,\n seedRsc,\n newMetadataVaryPath,\n seedHead,\n freshness,\n seedDynamicStaleAt\n )\n const newCacheNode = result.cacheNode\n const needsDynamicRequest = result.needsDynamicRequest\n\n const isLeafSegment = newSlots === null\n if (isLeafSegment) {\n accumulateScrollRef(freshness, newCacheNode, accumulation)\n }\n\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n let childNeedsDynamicRequest = false\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n let newCacheNodeSlots: Record | null = null\n if (newSlots !== null) {\n newCacheNode.slots = newCacheNodeSlots = {}\n taskChildren = new Map()\n for (let parallelRouteKey in newSlots) {\n const newRouteTreeChild: RouteTree = newSlots[parallelRouteKey]\n const seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n\n const taskChild = createCacheNodeOnNavigation(\n navigatedAt,\n newRouteTreeChild,\n newMetadataVaryPath,\n freshness,\n seedDataChild ?? null,\n seedHead,\n seedDynamicStaleAt,\n parentNeedsDynamicRequest || needsDynamicRequest,\n accumulation\n )\n\n taskChildren.set(parallelRouteKey, taskChild)\n newCacheNodeSlots[parallelRouteKey] = taskChild.node\n\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n }\n\n const newFlightRouterState: FlightRouterState = [\n newSegment,\n patchedRouterStateChildren,\n null,\n null,\n newRouteTree.prefetchHints,\n ]\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: newFlightRouterState,\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newFlightRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n // This route is not part of the current tree, so there's no reason to\n // track the refresh URL.\n refreshState: null,\n children: taskChildren,\n }\n}\n\nfunction createSegmentFromRouteTree(newRouteTree: RouteTree): Segment {\n if (newRouteTree.isPage) {\n // In a dynamic server response, the server embeds the search params into\n // the segment key, but in a static one it's omitted. The client handles\n // this inconsistency by adding the search params back right at the end.\n //\n // TODO: The only thing this is used for is to create a cache key for\n // ChildSegmentMap. But we already track the `renderedSearch` everywhere as\n // part of the varyPath. The plan is get rid of ChildSegmentMap and\n // store the page data in a CacheMap using the varyPath, like we do\n // for prefetches. Then we can remove it from the segment key.\n //\n // As an incremental step, we can grab the search params from the varyPath.\n const renderedSearch = getRenderedSearchFromVaryPath(newRouteTree.varyPath)\n if (renderedSearch === null) {\n return PAGE_SEGMENT_KEY\n }\n // This is based on equivalent logic in addSearchParamsIfPageSegment, used\n // on the server.\n const stringifiedQuery = JSON.stringify(\n Object.fromEntries(new URLSearchParams(renderedSearch))\n )\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n return newRouteTree.segment\n}\n\nfunction patchRouterStateWithNewChildren(\n baseRouterState: FlightRouterState,\n newChildren: { [parallelRouteKey: string]: FlightRouterState }\n): FlightRouterState {\n const clone: FlightRouterState = [baseRouterState[0], newChildren]\n // Based on equivalent logic in apply-router-state-patch-to-tree, but should\n // confirm whether we need to copy all of these fields. Not sure the server\n // ever sends, e.g. the refetch marker.\n if (2 in baseRouterState) {\n clone[2] = baseRouterState[2]\n }\n if (3 in baseRouterState) {\n clone[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clone[4] = baseRouterState[4]\n }\n return clone\n}\n\nfunction createDynamicRequestTree(\n newRouterState: FlightRouterState,\n dynamicRequestTreeChildren: Record,\n needsDynamicRequest: boolean,\n childNeedsDynamicRequest: boolean,\n parentNeedsDynamicRequest: boolean\n): FlightRouterState | null {\n // Create a FlightRouterState that instructs the server how to render the\n // requested segment.\n //\n // Or, if neither this segment nor any of the children require a new data,\n // then we return `null` to skip the request.\n let dynamicRequestTree: FlightRouterState | null = null\n if (needsDynamicRequest) {\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n // The \"refetch\" marker is set on the top-most segment that requires new\n // data. We can omit it if a parent was already marked.\n if (!parentNeedsDynamicRequest) {\n dynamicRequestTree[3] = 'refetch'\n }\n } else if (childNeedsDynamicRequest) {\n // This segment does not request new data, but at least one of its\n // children does.\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n } else {\n dynamicRequestTree = null\n }\n return dynamicRequestTree\n}\n\nfunction accumulateRefreshUrl(\n accumulation: NavigationRequestAccumulation,\n refreshState: RefreshState\n) {\n // This is a refresh navigation, and we're inside a \"default\" slot that's\n // not part of the current route; it was reused from an older route. In\n // order to get fresh data for this reused route, we need to issue a\n // separate request using the old route's URL.\n //\n // Track these extra URLs in the accumulated result. Later, we'll construct\n // an appropriate request for each unique URL in the final set. The reason\n // we don't do it immediately here is so we can deduplicate multiple\n // instances of the same URL into a single request. See\n // listenForDynamicRequest for more details.\n const refreshUrl = refreshState.canonicalUrl\n const separateRefreshUrls = accumulation.separateRefreshUrls\n if (separateRefreshUrls === null) {\n accumulation.separateRefreshUrls = new Set([refreshUrl])\n } else {\n separateRefreshUrls.add(refreshUrl)\n }\n}\n\nfunction reuseActiveSegmentInDefaultSlot(\n parentRouteTree: RouteTree,\n parallelRouteKey: string,\n oldRootRefreshState: RefreshState,\n oldRouterState: FlightRouterState\n): RouteTree {\n // This is a \"default\" segment. These are never sent by the server during a\n // soft navigation; instead, the client reuses whatever segment was already\n // active in that slot on the previous route. This means if we later need to\n // refresh the segment, it will have to be refetched from the previous route's\n // URL. We store it in the Flight Router State.\n\n let reusedUrl: string\n let reusedRenderedSearch: NormalizedSearch\n const oldRefreshState = oldRouterState[2]\n if (oldRefreshState !== undefined && oldRefreshState !== null) {\n // This segment was already reused from an even older route. Keep its\n // existing URL and refresh state.\n reusedUrl = oldRefreshState[0]\n reusedRenderedSearch = oldRefreshState[1] as NormalizedSearch\n } else {\n // Since this route didn't already have a refresh state, it must have been\n // reachable from the root of the old route. So we use the refresh state\n // that represents the old route.\n reusedUrl = oldRootRefreshState.canonicalUrl\n reusedRenderedSearch = oldRootRefreshState.renderedSearch\n }\n\n const acc = { metadataVaryPath: null }\n const reusedRouteTree = convertReusedFlightRouterStateToRouteTree(\n parentRouteTree,\n parallelRouteKey,\n oldRouterState,\n reusedRenderedSearch,\n acc\n )\n reusedRouteTree.refreshState = {\n canonicalUrl: reusedUrl,\n renderedSearch: reusedRenderedSearch,\n }\n return reusedRouteTree\n}\n\nfunction reuseSharedCacheNode(\n dropPrefetchRsc: boolean,\n existingCacheNode: CacheNode\n): CacheNode {\n // Clone the CacheNode that was already present in the previous tree.\n // Carry forward the scrollRef so scroll intent from a prior navigation\n // survives tree rebuilds (e.g. push + refresh in the same batch).\n return createCacheNode(\n existingCacheNode.rsc,\n dropPrefetchRsc ? null : existingCacheNode.prefetchRsc,\n existingCacheNode.head,\n dropPrefetchRsc ? null : existingCacheNode.prefetchHead,\n existingCacheNode.scrollRef\n )\n}\n\nfunction createCacheNodeForSegment(\n now: number,\n tree: RouteTree,\n seedRsc: React.ReactNode | null,\n metadataVaryPath: PageVaryPath | null,\n seedHead: HeadData | null,\n freshness: FreshnessPolicy,\n dynamicStaleAt: number\n): { cacheNode: CacheNode; needsDynamicRequest: boolean } {\n // Construct a new CacheNode using data from the BFCache, the client's\n // Segment Cache, or seeded from a server response.\n //\n // If there's a cache miss, or if we only have a partial hit, we'll render\n // the partial state immediately, and spawn a request to the server to fill\n // in the missing data.\n //\n // If the segment is fully cached on the client already, we can omit this\n // segment from the server request.\n //\n // If we already have a dynamic data response associated with this navigation,\n // as in the case of a Server Action-initiated redirect or refresh, we may\n // also be able to use that data without spawning a new request. (This is\n // referred to as the \"seed\" data.)\n\n const isPage = tree.isPage\n\n // During certain kinds of navigations, we may be able to render from\n // the BFCache.\n switch (freshness) {\n case FreshnessPolicy.Default: {\n // Check BFCache during regular navigations. The entry's staleAt\n // determines whether it's still fresh. This is used when\n // staleTimes.dynamic is configured globally or when a page exports\n // unstable_dynamicStaleTime for per-page control.\n const bfcacheEntry = readFromBFCacheDuringRegularNavigation(\n now,\n tree.varyPath\n )\n if (bfcacheEntry !== null) {\n return {\n cacheNode: createCacheNode(\n bfcacheEntry.rsc,\n bfcacheEntry.prefetchRsc,\n bfcacheEntry.head,\n bfcacheEntry.prefetchHead\n ),\n needsDynamicRequest: false,\n }\n }\n break\n }\n case FreshnessPolicy.Hydration: {\n // This is not related to the BFCache but it is a special case.\n //\n // We should never spawn network requests during hydration. We must treat\n // the initial payload as authoritative, because the initial page load is\n // used as a last-ditch mechanism for recovering the app.\n //\n // This is also an important safety check because if this leaks into the\n // server rendering path (which theoretically it never should because the\n // server payload should be consistent), the server would hang because these\n // promises would never resolve.\n //\n // TODO: There is an existing case where the global \"not found\" boundary\n // triggers this path. But it does render correctly despite that. That's an\n // unusual render path so it's not surprising, but we should look into\n // modeling it in a more consistent way. See also the /_notFound special\n // case in updateCacheNodeOnNavigation.\n const rsc = seedRsc\n const prefetchRsc = null\n const head = isPage ? seedHead : null\n const prefetchHead = null\n writeToBFCache(\n now,\n tree.varyPath,\n rsc,\n prefetchRsc,\n head,\n prefetchHead,\n dynamicStaleAt\n )\n if (isPage && metadataVaryPath !== null) {\n writeHeadToBFCache(\n now,\n metadataVaryPath,\n head,\n prefetchHead,\n dynamicStaleAt\n )\n }\n return {\n cacheNode: createCacheNode(rsc, prefetchRsc, head, prefetchHead),\n needsDynamicRequest: false,\n }\n }\n case FreshnessPolicy.HistoryTraversal:\n const bfcacheEntry = readFromBFCache(tree.varyPath)\n if (bfcacheEntry !== null) {\n // Only show prefetched data if the dynamic data is still pending. This\n // avoids a flash back to the prefetch state in a case where it's highly\n // likely to have already streamed in.\n //\n // Tehnically, what we're actually checking is whether the dynamic\n // network response was received. But since it's a streaming response,\n // this does not mean that all the dynamic data has fully streamed in.\n // It just means that _some_ of the dynamic data was received. But as a\n // heuristic, we assume that the rest dynamic data will stream in\n // quickly, so it's still better to skip the prefetch state.\n const oldRsc = bfcacheEntry.rsc\n const oldRscDidResolve =\n !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending'\n const dropPrefetchRsc = oldRscDidResolve\n return {\n cacheNode: createCacheNode(\n bfcacheEntry.rsc,\n dropPrefetchRsc ? null : bfcacheEntry.prefetchRsc,\n bfcacheEntry.head,\n dropPrefetchRsc ? null : bfcacheEntry.prefetchHead\n ),\n needsDynamicRequest: false,\n }\n }\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n case FreshnessPolicy.Gesture:\n // Don't consult the BFCache.\n break\n default:\n freshness satisfies never\n break\n }\n\n let cachedRsc: React.ReactNode | null = null\n let isCachedRscPartial: boolean = true\n\n const segmentEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (segmentEntry !== null) {\n switch (segmentEntry.status) {\n case EntryStatus.Fulfilled: {\n // Happy path: a cache hit\n cachedRsc = segmentEntry.rsc\n isCachedRscPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n // We haven't received data for this segment yet, but there's already\n // an in-progress request. Since it's extremely likely to arrive\n // before the dynamic data response, we might as well use it.\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry)\n cachedRsc = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.rsc : null\n )\n // Because the request is still pending, we typically don't know yet\n // whether the response will be partial. We shouldn't skip this segment\n // during the dynamic navigation request. Otherwise, we might need to\n // do yet another request to fill in the remaining data, creating\n // a waterfall.\n //\n // The one exception is if this segment is being fetched with via\n // prefetch={true} (i.e. the \"force stale\" or \"full\" strategy). If so,\n // we can assume the response will be full. This field is set to `false`\n // for such segments.\n isCachedRscPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected: {\n break\n }\n default: {\n segmentEntry satisfies never\n break\n }\n }\n }\n\n // Now combine the cached data with the seed data to determine what we can\n // render immediately, versus what needs to stream in later.\n\n // A partial state to show immediately while we wait for the final data to\n // arrive. If `rsc` is already a complete value (not partial), or if we\n // don't have any useful partial state, this will be `null`.\n let prefetchRsc: React.ReactNode | null\n // The final, resolved segment data. If the data is missing, this will be a\n // promise that resolves to the eventual data. A resolved value of `null`\n // means the data failed to load; the LayoutRouter will suspend indefinitely\n // until the router updates again (refer to finishNavigationTask).\n let rsc: React.ReactNode | null\n let doesSegmentNeedDynamicRequest: boolean\n\n if (seedRsc !== null) {\n // We already have a dynamic server response for this segment.\n if (isCachedRscPartial) {\n // The seed data may still be streaming in, so it's worth showing the\n // partial cached state in the meantime.\n prefetchRsc = cachedRsc\n rsc = seedRsc\n } else {\n // We already have a completely cached segment. Ignore the seed data,\n // which may still be streaming in. This shouldn't happen in the normal\n // case because the client will inform the server which segments are\n // already fully cached, and the server will skip rendering them.\n prefetchRsc = null\n rsc = cachedRsc\n }\n doesSegmentNeedDynamicRequest = false\n } else {\n if (isCachedRscPartial) {\n // The cached data contains dynamic holes, or it's missing entirely. We'll\n // show the partial state immediately (if available), and stream in the\n // final data.\n //\n // Create a pending promise that we can later write to when the\n // data arrives from the server.\n prefetchRsc = cachedRsc\n rsc = createDeferredRsc()\n } else {\n // The data is fully cached.\n prefetchRsc = null\n rsc = cachedRsc\n }\n doesSegmentNeedDynamicRequest = isCachedRscPartial\n }\n\n // If this is a page segment, we need to do the same for the head. This\n // follows analogous logic to the segment data above.\n // TODO: We don't need to store the head on the page segment's CacheNode; we\n // can lift it to the main state object. Then we can also delete\n // findHeadCache.\n\n let prefetchHead: HeadData | null = null\n let head: React.ReactNode | null = null\n let doesHeadNeedDynamicRequest: boolean = isPage\n\n if (isPage) {\n let cachedHead: HeadData | null = null\n let isCachedHeadPartial: boolean = true\n if (metadataVaryPath !== null) {\n const metadataEntry = readSegmentCacheEntry(now, metadataVaryPath)\n if (metadataEntry !== null) {\n switch (metadataEntry.status) {\n case EntryStatus.Fulfilled: {\n cachedHead = metadataEntry.rsc\n isCachedHeadPartial = metadataEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n cachedHead = waitForSegmentCacheEntry(metadataEntry).then(\n (entry) => (entry !== null ? entry.rsc : null)\n )\n isCachedHeadPartial = metadataEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected: {\n break\n }\n default: {\n metadataEntry satisfies never\n break\n }\n }\n }\n }\n\n if (process.env.__NEXT_OPTIMISTIC_ROUTING && isCachedHeadPartial) {\n // TODO: When optimistic routing is enabled, don't block on waiting for\n // the viewport to resolve. This is a temporary workaround until Vary\n // Params are tracked when rendering the metadata. We'll fix it before\n // this feature is stable. However, it's not a critical issue because 1)\n // it will stream in eventually anyway 2) metadata is wrapped in an\n // internal Suspense boundary, so is always non-blocking; this only\n // affects the viewport node, which is meant to blocking, however... 3)\n // before Segment Cache landed this wasn't always the case, anyway, so\n // it's unlikely that many people are relying on this behavior. Still,\n // will be fixed before stable. It's the very next step in the sequence of\n // work on this project.\n //\n // This line of code works because the App Router treats `null` as\n // \"no renderable head available\", rather than an empty head. React treats\n // an empty string as empty.\n cachedHead = ''\n }\n\n if (seedHead !== null) {\n if (isCachedHeadPartial) {\n prefetchHead = cachedHead\n head = seedHead\n } else {\n prefetchHead = null\n head = cachedHead\n }\n doesHeadNeedDynamicRequest = false\n } else {\n if (isCachedHeadPartial) {\n prefetchHead = cachedHead\n head = createDeferredRsc()\n } else {\n prefetchHead = null\n head = cachedHead\n }\n doesHeadNeedDynamicRequest = isCachedHeadPartial\n }\n }\n\n // Now that we're creating a new segment, write its data to the BFCache. A\n // subsequent back/forward navigation will reuse this same data, until or\n // unless it's cleared by a refresh/revalidation.\n //\n // Skip BFCache writes for optimistic navigations since they are transient\n // and will be replaced by the canonical navigation.\n if (freshness !== FreshnessPolicy.Gesture) {\n writeToBFCache(\n now,\n tree.varyPath,\n rsc,\n prefetchRsc,\n head,\n prefetchHead,\n dynamicStaleAt\n )\n if (isPage && metadataVaryPath !== null) {\n writeHeadToBFCache(\n now,\n metadataVaryPath,\n head,\n prefetchHead,\n dynamicStaleAt\n )\n }\n }\n\n return {\n cacheNode: createCacheNode(rsc, prefetchRsc, head, prefetchHead),\n // TODO: We should store this field on the CacheNode itself. I think we can\n // probably unify NavigationTask, CacheNode, and DeferredRsc into a\n // single type. Or at least CacheNode and DeferredRsc.\n needsDynamicRequest:\n doesSegmentNeedDynamicRequest || doesHeadNeedDynamicRequest,\n }\n}\n\nfunction createCacheNode(\n rsc: React.ReactNode | null,\n prefetchRsc: React.ReactNode | null,\n head: React.ReactNode | null,\n prefetchHead: HeadData | null,\n scrollRef: ScrollRef | null = null\n): CacheNode {\n return {\n rsc,\n prefetchRsc,\n head,\n prefetchHead,\n slots: null,\n scrollRef,\n }\n}\n\n// Represents whether the previuos navigation resulted in a route tree mismatch.\n// A mismatch results in a refresh of the page. If there are two successive\n// mismatches, we will fall back to an MPA navigation, to prevent a retry loop.\nlet previousNavigationDidMismatch = false\n\n// Writes a dynamic server response into the tree created by\n// updateCacheNodeOnNavigation. All pending promises that were spawned by the\n// navigation will be resolved, either with dynamic data from the server, or\n// `null` to indicate that the data is missing.\n//\n// A `null` value will trigger a lazy fetch during render, which will then patch\n// up the tree using the same mechanism as the non-PPR implementation\n// (serverPatchReducer).\n//\n// Usually, the server will respond with exactly the subset of data that we're\n// waiting for — everything below the nearest shared layout. But technically,\n// the server can return anything it wants.\n//\n// This does _not_ create a new tree; it modifies the existing one in place.\n// Which means it must follow the Suspense rules of cache safety.\nexport function spawnDynamicRequests(\n task: NavigationTask,\n primaryUrl: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n accumulation: NavigationRequestAccumulation,\n // The route cache entry used for this navigation, if it came from route\n // prediction. Passed through so it can be marked as having a dynamic rewrite\n // if the server returns a different pathname than expected (indicating\n // dynamic rewrite behavior that varies by param value).\n routeCacheEntry: FulfilledRouteCacheEntry | null,\n // The original navigation's push/replace intent. Threaded through to the\n // server-patch retry logic so it can inherit the intent if the original\n // transition hasn't committed yet.\n navigateType: 'push' | 'replace'\n): void {\n const dynamicRequestTree = task.dynamicRequestTree\n if (dynamicRequestTree === null) {\n // This navigation was fully cached. There are no dynamic requests to spawn.\n previousNavigationDidMismatch = false\n return\n }\n\n // This is intentionally not an async function to discourage the caller from\n // awaiting the result. Any subsequent async operations spawned by this\n // function should result in a separate navigation task, rather than\n // block the original one.\n //\n // In this function we spawn (but do not await) all the network requests that\n // block the navigation, and collect the promises. The next function,\n // `finishNavigationTask`, can await the promises in any order without\n // accidentally introducing a network waterfall.\n const primaryRequestPromise = fetchMissingDynamicData(\n task,\n dynamicRequestTree,\n primaryUrl,\n nextUrl,\n freshnessPolicy,\n routeCacheEntry\n )\n\n const separateRefreshUrls = accumulation.separateRefreshUrls\n let refreshRequestPromises: Array<\n ReturnType\n > | null = null\n if (separateRefreshUrls !== null) {\n // There are multiple URLs that we need to request the data from. This\n // happens when a \"default\" parallel route slot is present in the tree, and\n // its data cannot be fetched from the current route. We need to split the\n // combined dynamic request tree into separate requests per URL.\n\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n\n // Construct a request tree for each additional refresh URL. This will\n // prune away everything except the parts of the tree that match the\n // given refresh URL.\n refreshRequestPromises = []\n const canonicalUrl = createHrefFromUrl(primaryUrl)\n for (const refreshUrl of separateRefreshUrls) {\n if (refreshUrl === canonicalUrl) {\n // We already initiated a request for the this URL, above. Skip it.\n // TODO: This only happens because the main URL is not tracked as\n // part of the separateRefreshURLs set. There's probably a better way\n // to structure this so this case doesn't happen.\n continue\n }\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl)\n const scopedDynamicRequestTree = dynamicRequestTree\n if (scopedDynamicRequestTree !== null) {\n refreshRequestPromises.push(\n fetchMissingDynamicData(\n task,\n scopedDynamicRequestTree,\n new URL(refreshUrl, location.origin),\n // TODO: Just noticed that this should actually the Next-Url at the\n // time the refresh URL was set, not the current Next-Url. Need to\n // start tracking this alongside the refresh URL. In the meantime,\n // if a refresh fails due to a mismatch, it will trigger a\n // hard refresh.\n nextUrl,\n freshnessPolicy,\n routeCacheEntry\n )\n )\n }\n }\n }\n\n // Further async operations are moved into this separate function to\n // discourage sequential network requests.\n const voidPromise = finishNavigationTask(\n task,\n nextUrl,\n primaryRequestPromise,\n refreshRequestPromises,\n routeCacheEntry,\n navigateType\n )\n // `finishNavigationTask` is responsible for error handling, so we can attach\n // noop callbacks to this promise.\n voidPromise.then(noop, noop)\n}\n\nasync function finishNavigationTask(\n task: NavigationTask,\n nextUrl: string | null,\n primaryRequestPromise: ReturnType,\n refreshRequestPromises: Array<\n ReturnType\n > | null,\n routeCacheEntry: FulfilledRouteCacheEntry | null,\n navigateType: 'push' | 'replace'\n): Promise {\n // Wait for all the requests to finish, or for the first one to fail.\n let exitStatus = await waitForRequestsToFinish(\n primaryRequestPromise,\n refreshRequestPromises\n )\n\n // Once the all the requests have finished, check the tree for any remaining\n // pending tasks. If anything is still pending, it means the server response\n // does not match the client, and we must refresh to get back to a consistent\n // state. We can skip this step if we already detected a mismatch during the\n // first phase; it doesn't matter in that case because we're going to refresh\n // the whole tree regardless.\n if (exitStatus === NavigationTaskExitStatus.Done) {\n exitStatus = abortRemainingPendingTasks(task, null, null)\n }\n\n switch (exitStatus) {\n case NavigationTaskExitStatus.Done: {\n // The task has completely finished. There's no missing data. Exit.\n previousNavigationDidMismatch = false\n return\n }\n case NavigationTaskExitStatus.SoftRetry: {\n // Some data failed to finish loading. Trigger a soft retry.\n // TODO: As an extra precaution against soft retry loops, consider\n // tracking whether a navigation was itself triggered by a retry. If two\n // happen in a row, fall back to a hard retry.\n const isHardRetry = false\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route,\n routeCacheEntry,\n navigateType\n )\n return\n }\n case NavigationTaskExitStatus.HardRetry: {\n // Some data failed to finish loading in a non-recoverable way, such as a\n // network error. Trigger an MPA navigation.\n //\n // Hard navigating/refreshing is how we prevent an infinite retry loop\n // caused by a network error — when the network fails, we fall back to the\n // browser behavior for offline navigations. In the future, Next.js may\n // introduce its own custom handling of offline navigations, but that\n // doesn't exist yet.\n const isHardRetry = true\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route,\n routeCacheEntry,\n navigateType\n )\n return\n }\n default: {\n return exitStatus satisfies never\n }\n }\n}\n\nfunction waitForRequestsToFinish(\n primaryRequestPromise: ReturnType,\n refreshRequestPromises: Array<\n ReturnType\n > | null\n) {\n // Custom async combinator logic. This could be replaced by Promise.any but\n // we don't assume that's available.\n //\n // Each promise resolves once the server responsds and the data is written\n // into the CacheNode tree. Resolve the combined promise once all the\n // requests finish.\n //\n // Or, resolve as soon as one of the requests fails, without waiting for the\n // others to finish.\n return new Promise((resolve) => {\n const onFulfill = (result: { exitStatus: NavigationTaskExitStatus }) => {\n if (result.exitStatus === NavigationTaskExitStatus.Done) {\n remainingCount--\n if (remainingCount === 0) {\n // All the requests finished successfully.\n resolve(NavigationTaskExitStatus.Done)\n }\n } else {\n // One of the requests failed. Exit with a failing status.\n // NOTE: It's possible for one of the requests to fail with SoftRetry\n // and a later one to fail with HardRetry. In this case, we choose to\n // retry immediately, rather than delay the retry until all the requests\n // finish. If it fails again, we will hard retry on the next\n // attempt, anyway.\n resolve(result.exitStatus)\n }\n }\n // onReject shouldn't ever be called because fetchMissingDynamicData's\n // entire body is wrapped in a try/catch. This is just defensive.\n const onReject = () => resolve(NavigationTaskExitStatus.HardRetry)\n\n // Attach the listeners to the promises.\n let remainingCount = 1\n primaryRequestPromise.then(onFulfill, onReject)\n if (refreshRequestPromises !== null) {\n remainingCount += refreshRequestPromises.length\n refreshRequestPromises.forEach((refreshRequestPromise) =>\n refreshRequestPromise.then(onFulfill, onReject)\n )\n }\n })\n}\n\nfunction dispatchRetryDueToTreeMismatch(\n isHardRetry: boolean,\n retryUrl: URL,\n retryNextUrl: string | null,\n seed: NavigationSeed | null,\n baseTree: FlightRouterState,\n // The route cache entry used for this navigation, if it came from route\n // prediction. If the navigation results in a mismatch, we mark it as having\n // a dynamic rewrite so future predictions bail out.\n routeCacheEntry: FulfilledRouteCacheEntry | null,\n // The original navigation's push/replace intent.\n originalNavigateType: 'push' | 'replace'\n) {\n // If the navigation used a route prediction, mark it as having a dynamic\n // rewrite since it resulted in a mismatch.\n if (routeCacheEntry !== null) {\n markRouteEntryAsDynamicRewrite(routeCacheEntry)\n } else if (seed !== null) {\n // Even without a direct reference to the route cache entry, we can still\n // mark the route as having a dynamic rewrite by traversing the known route\n // tree. This handles cases where the navigation didn't originate from a\n // route prediction, but still needs to mark the pattern.\n const metadataVaryPath = seed.metadataVaryPath\n if (metadataVaryPath !== null) {\n const now = Date.now()\n discoverKnownRoute(\n now,\n retryUrl.pathname,\n retryNextUrl,\n null,\n seed.routeTree,\n metadataVaryPath,\n false, // couldBeIntercepted - doesn't matter, we're just marking hasDynamicRewrite\n createHrefFromUrl(retryUrl),\n false, // supportsPerSegmentPrefetching - doesn't matter, we're just marking hasDynamicRewrite\n true // hasDynamicRewrite\n )\n }\n }\n\n // Invalidate all route cache entries. Other entries may have been derived\n // from the template before we knew it had a dynamic rewrite. This also\n // triggers re-prefetching of visible links.\n invalidateRouteCacheEntries(retryNextUrl, baseTree)\n\n // If this is the second time in a row that a navigation resulted in a\n // mismatch, fall back to a hard (MPA) refresh.\n isHardRetry = isHardRetry || previousNavigationDidMismatch\n previousNavigationDidMismatch = true\n\n // If the original navigation hasn't committed to the browser history yet\n // (the transition suspended before React committed), inherit its push/replace\n // intent. Otherwise, the pushState already ran, so use 'replace' to avoid\n // creating a duplicate history entry.\n //\n // This works because React entangles the retry's state update with the\n // original pending transition — they commit together as a single batch,\n // so the navigate type from the retry is what HistoryUpdater ultimately sees.\n //\n // TODO: Ideally this check would happen right before we schedule the React\n // update (i.e., closer to where the action is dispatched into the queue),\n // not here where the action is constructed. But the current action queue\n // doesn't provide a natural place for that. Revisit when we refactor the\n // action queue into a more reactive navigation model.\n const lastCommitted = getLastCommittedTree()\n const retryNavigateType: 'push' | 'replace' =\n lastCommitted !== null && baseTree !== lastCommitted\n ? originalNavigateType\n : 'replace'\n\n const retryAction: ServerPatchAction = {\n type: ACTION_SERVER_PATCH,\n previousTree: baseTree,\n url: retryUrl,\n nextUrl: retryNextUrl,\n seed,\n mpa: isHardRetry,\n navigateType: retryNavigateType,\n }\n dispatchAppRouterAction(retryAction)\n}\n\nasync function fetchMissingDynamicData(\n task: NavigationTask,\n dynamicRequestTree: FlightRouterState,\n url: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n routeCacheEntry: FulfilledRouteCacheEntry | null\n): Promise<{\n exitStatus: NavigationTaskExitStatus\n url: URL\n seed: NavigationSeed | null\n}> {\n try {\n const result = await fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n isHmrRefresh: freshnessPolicy === FreshnessPolicy.HMRRefresh,\n })\n if (typeof result === 'string') {\n // fetchServerResponse will return an href to indicate that the SPA\n // navigation failed. For example, if the server triggered a hard\n // redirect, or the fetch request errored. Initiate an MPA navigation\n // to the given href.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: new URL(result, location.origin),\n seed: null,\n }\n }\n const now = Date.now()\n\n const seed = convertServerPatchToFullTree(\n now,\n task.route,\n result.flightData,\n result.renderedSearch,\n result.dynamicStaleTime\n )\n\n // If the navigation lock is active, wait for it to be released before\n // writing the dynamic data. This allows tests to assert on the prefetched\n // UI state.\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n await waitForNavigationLock()\n }\n\n if (routeCacheEntry !== null && result.staticStageData !== null) {\n const { response: staticStageResponse, isResponsePartial } =\n result.staticStageData\n\n getStaleAt(now, staticStageResponse.s)\n .then((staleAt) => {\n const buildId =\n result.responseHeaders.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ??\n staticStageResponse.b\n\n writeStaticStageResponseIntoCache(\n now,\n staticStageResponse.f,\n buildId,\n staticStageResponse.h,\n staleAt,\n dynamicRequestTree,\n result.renderedSearch,\n isResponsePartial\n )\n })\n .catch(() => {\n // The static stage processing failed. Not fatal — the navigation\n // completed normally, we just won't write into the cache.\n })\n }\n\n if (routeCacheEntry !== null && result.runtimePrefetchStream !== null) {\n processRuntimePrefetchStream(\n now,\n result.runtimePrefetchStream,\n dynamicRequestTree,\n result.renderedSearch\n )\n .then((processed) => {\n if (processed !== null) {\n writeDynamicRenderResponseIntoCache(\n now,\n FetchStrategy.PPRRuntime,\n processed.flightDatas,\n processed.buildId,\n processed.isResponsePartial,\n processed.headVaryParams,\n processed.staleAt,\n processed.navigationSeed,\n null\n )\n }\n })\n .catch(() => {\n // The runtime prefetch cache write failed. Not fatal — the\n // navigation completed normally, we just won't cache runtime data.\n })\n }\n\n // result.dynamicStaleTime is in seconds (from the server's `d` field).\n // Convert to an absolute timestamp using the centralized helper.\n const dynamicStaleAt = computeDynamicStaleAt(now, result.dynamicStaleTime)\n\n const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(\n task,\n seed.routeTree,\n seed.data,\n seed.head,\n dynamicStaleAt,\n result.debugInfo\n )\n\n return {\n exitStatus: didReceiveUnknownParallelRoute\n ? NavigationTaskExitStatus.SoftRetry\n : NavigationTaskExitStatus.Done,\n url: new URL(result.canonicalUrl, location.origin),\n seed,\n }\n } catch {\n // This shouldn't happen because fetchServerResponse's entire body is\n // wrapped in a try/catch. If it does, though, it implies the server failed\n // to respond with any tree at all. So we must fall back to a hard retry.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: url,\n seed: null,\n }\n }\n}\n\nfunction writeDynamicDataIntoNavigationTask(\n task: NavigationTask,\n serverRouteTree: RouteTree,\n dynamicData: CacheNodeSeedData | null,\n dynamicHead: HeadData,\n dynamicStaleAt: number,\n debugInfo: Array | null\n): boolean {\n if (task.status === NavigationTaskStatus.Pending && dynamicData !== null) {\n task.status = NavigationTaskStatus.Fulfilled\n finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo)\n\n // Update the BFCache entry's staleAt for this segment with the value\n // from the dynamic response. This applies the per-page\n // unstable_dynamicStaleTime if set, or the default DYNAMIC_STALETIME_MS.\n // We only update segments that received dynamic data — static segments\n // are unaffected.\n updateBFCacheEntryStaleAt(serverRouteTree.varyPath, dynamicStaleAt)\n }\n\n const taskChildren = task.children\n const serverChildren = serverRouteTree.slots\n const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null\n\n // Detect whether the server sends a parallel route slot that the client\n // doesn't know about.\n let didReceiveUnknownParallelRoute = false\n\n if (taskChildren !== null) {\n if (serverChildren !== null) {\n for (const parallelRouteKey in serverChildren) {\n const serverRouteTreeChild: RouteTree = serverChildren[parallelRouteKey]\n const dynamicDataChild: CacheNodeSeedData | null | void =\n dynamicDataChildren !== null\n ? dynamicDataChildren[parallelRouteKey]\n : null\n\n const taskChild = taskChildren.get(parallelRouteKey)\n if (taskChild === undefined) {\n // The server sent a child segment that the client doesn't know about.\n //\n // When we receive an unknown parallel route, we must consider it a\n // mismatch. This is unlike the case where the segment itself\n // mismatches, because multiple routes can be active simultaneously.\n // But a given layout should never have a mismatching set of\n // child slots.\n //\n // Theoretically, this should only happen in development during an HMR\n // refresh, because the set of parallel routes for a layout does not\n // change over the lifetime of a build/deployment. In production, we\n // should have already mismatched on either the build id or the segment\n // path. But as an extra precaution, we validate in prod, too.\n didReceiveUnknownParallelRoute = true\n } else {\n const taskSegment = taskChild.route[0]\n const serverSegment = createSegmentFromRouteTree(serverRouteTreeChild)\n if (\n matchSegment(serverSegment, taskSegment) &&\n dynamicDataChild !== null &&\n dynamicDataChild !== undefined\n ) {\n // Found a match for this task. Keep traversing down the task tree.\n const childDidReceiveUnknownParallelRoute =\n writeDynamicDataIntoNavigationTask(\n taskChild,\n serverRouteTreeChild,\n dynamicDataChild,\n dynamicHead,\n dynamicStaleAt,\n debugInfo\n )\n if (childDidReceiveUnknownParallelRoute) {\n didReceiveUnknownParallelRoute = true\n }\n }\n }\n }\n } else {\n if (serverChildren !== null) {\n // The server sent a child segment that the client doesn't know about.\n didReceiveUnknownParallelRoute = true\n }\n }\n }\n\n return didReceiveUnknownParallelRoute\n}\n\nfunction finishPendingCacheNode(\n cacheNode: CacheNode,\n dynamicData: CacheNodeSeedData,\n dynamicHead: HeadData,\n debugInfo: Array | null\n): void {\n // Writes a dynamic response into an existing Cache Node tree. This does _not_\n // create a new tree, it updates the existing tree in-place. So it must follow\n // the Suspense rules of cache safety — it can resolve pending promises, but\n // it cannot overwrite existing data. It can add segments to the tree (because\n // a missing segment will cause the layout router to suspend).\n // but it cannot delete them.\n //\n // We must resolve every promise in the tree, or else it will suspend\n // indefinitely. If we did not receive data for a segment, we will resolve its\n // data promise to `null` to trigger a lazy fetch during render.\n\n // Use the dynamic data from the server to fulfill the deferred RSC promise\n // on the Cache Node.\n const rsc = cacheNode.rsc\n const dynamicSegmentData = dynamicData[0]\n\n if (dynamicSegmentData === null) {\n // This is an empty CacheNode; this particular server request did not\n // render this segment. There may be a separate pending request that will,\n // though, so we won't abort the task until all pending requests finish.\n return\n }\n\n if (rsc === null) {\n // This is a lazy cache node. We can overwrite it. This is only safe\n // because we know that the LayoutRouter suspends if `rsc` is `null`.\n cacheNode.rsc = dynamicSegmentData\n } else if (isDeferredRsc(rsc)) {\n // This is a deferred RSC promise. We can fulfill it with the data we just\n // received from the server. If it was already resolved by a different\n // navigation, then this does nothing because we can't overwrite data.\n rsc.resolve(dynamicSegmentData, debugInfo)\n } else {\n // This is not a deferred RSC promise, nor is it empty, so it must have\n // been populated by a different navigation. We must not overwrite it.\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved with the dynamic head from\n // the server.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(dynamicHead, debugInfo)\n }\n}\n\nfunction abortRemainingPendingTasks(\n task: NavigationTask,\n error: any,\n debugInfo: Array | null\n): NavigationTaskExitStatus {\n let exitStatus\n if (task.status === NavigationTaskStatus.Pending) {\n // The data for this segment is still missing.\n task.status = NavigationTaskStatus.Rejected\n abortPendingCacheNode(task.node, error, debugInfo)\n\n // If the server failed to fulfill the data for this segment, it implies\n // that the route tree received from the server mismatched the tree that\n // was previously prefetched.\n //\n // In an app with fully static routes and no proxy-driven redirects or\n // rewrites, this should never happen, because the route for a URL would\n // always be the same across multiple requests. So, this implies that some\n // runtime routing condition changed, likely in a proxy, without being\n // pushed to the client.\n //\n // When this happens, we treat this the same as a refresh(). The entire\n // tree will be re-rendered from the root.\n if (task.refreshState === null) {\n // Trigger a \"soft\" refresh. Essentially the same as calling `refresh()`\n // in a Server Action.\n exitStatus = NavigationTaskExitStatus.SoftRetry\n } else {\n // The mismatch was discovered inside an inactive parallel route. This\n // implies the inactive parallel route is no longer reachable at the URL\n // that originally rendered it. Fall back to an MPA refresh.\n // TODO: An alternative could be to trigger a soft refresh but to _not_\n // re-use the inactive parallel routes this time. Similar to what would\n // happen if were to do a hard refrehs, but without the HTML page.\n exitStatus = NavigationTaskExitStatus.HardRetry\n }\n } else {\n // This segment finished. (An error here is treated as Done because they are\n // surfaced to the application during render.)\n exitStatus = NavigationTaskExitStatus.Done\n }\n\n const taskChildren = task.children\n if (taskChildren !== null) {\n for (const [, taskChild] of taskChildren) {\n const childExitStatus = abortRemainingPendingTasks(\n taskChild,\n error,\n debugInfo\n )\n // Propagate the exit status up the tree. The statuses are ordered by\n // their precedence.\n if (childExitStatus > exitStatus) {\n exitStatus = childExitStatus\n }\n }\n }\n\n return exitStatus\n}\n\nfunction abortPendingCacheNode(\n cacheNode: CacheNode,\n error: any,\n debugInfo: Array | null\n): void {\n const rsc = cacheNode.rsc\n if (isDeferredRsc(rsc)) {\n if (error === null) {\n // This will trigger a lazy fetch during render.\n rsc.resolve(null, debugInfo)\n } else {\n // This will trigger an error during rendering.\n rsc.reject(error, debugInfo)\n }\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved. If an error was provided, we\n // will not resolve it with an error, since this is rendered at the root of\n // the app. We want the segment to error, not the entire app.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(null, debugInfo)\n }\n}\n\nconst DEFERRED = Symbol()\n\ntype PendingDeferredRsc = Promise & {\n status: 'pending'\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype FulfilledDeferredRsc = Promise & {\n status: 'fulfilled'\n value: T\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype RejectedDeferredRsc = Promise & {\n status: 'rejected'\n reason: any\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype DeferredRsc =\n | PendingDeferredRsc\n | FulfilledDeferredRsc\n | RejectedDeferredRsc\n\n// This type exists to distinguish a DeferredRsc from a Flight promise. It's a\n// compromise to avoid adding an extra field on every Cache Node, which would be\n// awkward because the pre-PPR parts of codebase would need to account for it,\n// too. We can remove it once type Cache Node type is more settled.\nexport function isDeferredRsc(value: any): value is DeferredRsc {\n return value && typeof value === 'object' && value.tag === DEFERRED\n}\n\nfunction createDeferredRsc<\n T extends React.ReactNode = React.ReactNode,\n>(): PendingDeferredRsc {\n // Create an unresolved promise that represents data derived from a Flight\n // response. The promise will be resolved later as soon as we start receiving\n // data from the server, i.e. as soon as the Flight client decodes and returns\n // the top-level response object.\n\n // The `_debugInfo` field contains profiling information. Promises that are\n // created by Flight already have this info added by React; for any derived\n // promise created by the router, we need to transfer the Flight debug info\n // onto the derived promise.\n //\n // The debug info represents the latency between the start of the navigation\n // and the start of rendering. (It does not represent the time it takes for\n // whole stream to finish.)\n const debugInfo: Array = []\n\n let resolve: any\n let reject: any\n const pendingRsc = new Promise((res, rej) => {\n resolve = res\n reject = rej\n }) as PendingDeferredRsc\n pendingRsc.status = 'pending'\n pendingRsc.resolve = (value: T, responseDebugInfo: Array | null) => {\n if (pendingRsc.status === 'pending') {\n const fulfilledRsc: FulfilledDeferredRsc = pendingRsc as any\n fulfilledRsc.status = 'fulfilled'\n fulfilledRsc.value = value\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n resolve(value)\n }\n }\n pendingRsc.reject = (error: any, responseDebugInfo: Array | null) => {\n if (pendingRsc.status === 'pending') {\n const rejectedRsc: RejectedDeferredRsc = pendingRsc as any\n rejectedRsc.status = 'rejected'\n rejectedRsc.reason = error\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n reject(error)\n }\n }\n pendingRsc.tag = DEFERRED\n pendingRsc._debugInfo = debugInfo\n\n return pendingRsc\n}\n\n/**\n * Helper for the Instant Navigation Testing API. Waits for the navigation lock\n * to be released before returning. The network request has already completed by\n * the time this is called, so this only delays writing the dynamic data.\n *\n * Not exposed in production builds by default.\n */\nasync function waitForNavigationLock(): Promise {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n const { waitForNavigationLockIfActive } =\n require('../segment-cache/navigation-testing-lock') as typeof import('../segment-cache/navigation-testing-lock')\n await waitForNavigationLockIfActive()\n }\n}\n","/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n","import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Comparator for sorting app paths so that parallel slot paths (containing\n * `/@`) come before the children/root page path. This ensures the last item\n * is always the children page, which is what `renderPageComponent` reads via\n * `appPaths[appPaths.length - 1]`.\n *\n * Without this, route group prefixes like `(group)` (char code 0x28) sort\n * before `@` (0x40), causing the children page to sort first instead of last\n * and leading to a manifest mismatch / 404 in webpack dev mode.\n */\nexport function compareAppPaths(a: string, b: string): number {\n const aHasSlot = a.includes('/@')\n const bHasSlot = b.includes('/@')\n if (aHasSlot && !bHasSlot) return -1\n if (!aHasSlot && bHasSlot) return 1\n return a.localeCompare(b)\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n","import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n","import type {\n FlightRouterState,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { INTERCEPTION_ROUTE_MARKERS } from '../../../shared/lib/router/utils/interception-routes'\nimport type { Params } from '../../../server/request/params'\nimport {\n isGroupSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\n\nconst removeLeadingSlash = (segment: string): string => {\n return segment[0] === '/' ? segment.slice(1) : segment\n}\n\nconst segmentToPathname = (segment: Segment): string => {\n if (typeof segment === 'string') {\n // 'children' is not a valid path -- it's technically a parallel route that corresponds with the current segment's page\n // if we don't skip it, then the computed pathname might be something like `/children` which doesn't make sense.\n if (segment === 'children') return ''\n\n return segment\n }\n\n return segment[1]\n}\n\nconst segmentToSourcePagePathname = (segment: Segment): string => {\n if (typeof segment === 'string') {\n if (segment === 'children') return ''\n if (segment.startsWith(PAGE_SEGMENT_KEY)) return 'page'\n return segment\n }\n\n const [paramName, , dynamicParamType] = segment\n\n switch (dynamicParamType) {\n case 'c':\n return `[...${paramName}]`\n case 'ci(..)(..)':\n return `(..)(..)[...${paramName}]`\n case 'ci(.)':\n return `(.)[...${paramName}]`\n case 'ci(..)':\n return `(..)[...${paramName}]`\n case 'ci(...)':\n return `(...)[...${paramName}]`\n case 'oc':\n return `[[...${paramName}]]`\n case 'd':\n return `[${paramName}]`\n case 'di(..)(..)':\n return `(..)(..)[${paramName}]`\n case 'di(.)':\n return `(.)[${paramName}]`\n case 'di(..)':\n return `(..)[${paramName}]`\n case 'di(...)':\n return `(...)[${paramName}]`\n default:\n dynamicParamType satisfies never\n return `[${paramName}]`\n }\n}\n\nfunction normalizeSegments(segments: string[]): string {\n return (\n segments.reduce((acc, segment) => {\n segment = removeLeadingSlash(segment)\n if (segment === '' || isGroupSegment(segment)) {\n return acc\n }\n\n return `${acc}/${segment}`\n }, '') || '/'\n )\n}\n\nexport function extractPathFromFlightRouterState(\n flightRouterState: FlightRouterState\n): string | undefined {\n const segment = Array.isArray(flightRouterState[0])\n ? flightRouterState[0][1]\n : flightRouterState[0]\n\n if (\n segment === DEFAULT_SEGMENT_KEY ||\n INTERCEPTION_ROUTE_MARKERS.some((m) => segment.startsWith(m))\n )\n return undefined\n\n if (segment.startsWith(PAGE_SEGMENT_KEY)) return ''\n\n const segments = [segmentToPathname(segment)]\n const parallelRoutes = flightRouterState[1] ?? {}\n\n const childrenPath = parallelRoutes.children\n ? extractPathFromFlightRouterState(parallelRoutes.children)\n : undefined\n\n if (childrenPath !== undefined) {\n segments.push(childrenPath)\n } else {\n for (const [key, value] of Object.entries(parallelRoutes)) {\n if (key === 'children') continue\n\n const childPath = extractPathFromFlightRouterState(value)\n\n if (childPath !== undefined) {\n segments.push(childPath)\n }\n }\n }\n\n return normalizeSegments(segments)\n}\n\nfunction extractSourcePageSegmentsFromFlightRouterState(\n flightRouterState: FlightRouterState\n): string[] | undefined {\n const segment = segmentToSourcePagePathname(flightRouterState[0])\n\n if (segment === DEFAULT_SEGMENT_KEY) {\n return undefined\n }\n\n if (segment === 'page') {\n return [segment]\n }\n\n const parallelRoutes = flightRouterState[1] ?? {}\n\n const childrenPath = parallelRoutes.children\n ? extractSourcePageSegmentsFromFlightRouterState(parallelRoutes.children)\n : undefined\n\n if (childrenPath !== undefined) {\n return segment === ''\n ? childrenPath\n : [removeLeadingSlash(segment), ...childrenPath]\n }\n\n for (const [key, value] of Object.entries(parallelRoutes)) {\n if (key === 'children') continue\n\n const childPath = extractSourcePageSegmentsFromFlightRouterState(value)\n\n if (childPath !== undefined) {\n return segment === ''\n ? childPath\n : [removeLeadingSlash(segment), ...childPath]\n }\n }\n\n return undefined\n}\n\nexport function extractSourcePageFromFlightRouterState(\n flightRouterState: FlightRouterState\n): string | undefined {\n const sourcePageSegments =\n extractSourcePageSegmentsFromFlightRouterState(flightRouterState)\n\n return sourcePageSegments ? `/${sourcePageSegments.join('/')}` : undefined\n}\n\nfunction computeChangedPathImpl(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const [segmentA, parallelRoutesA] = treeA\n const [segmentB, parallelRoutesB] = treeB\n\n const normalizedSegmentA = segmentToPathname(segmentA)\n const normalizedSegmentB = segmentToPathname(segmentB)\n\n if (\n INTERCEPTION_ROUTE_MARKERS.some(\n (m) =>\n normalizedSegmentA.startsWith(m) || normalizedSegmentB.startsWith(m)\n )\n ) {\n return ''\n }\n\n if (!matchSegment(segmentA, segmentB)) {\n // once we find where the tree changed, we compute the rest of the path by traversing the tree\n return extractPathFromFlightRouterState(treeB) ?? ''\n }\n\n for (const parallelRouterKey in parallelRoutesA) {\n if (parallelRoutesB[parallelRouterKey]) {\n const changedPath = computeChangedPathImpl(\n parallelRoutesA[parallelRouterKey],\n parallelRoutesB[parallelRouterKey]\n )\n if (changedPath !== null) {\n return `${segmentToPathname(segmentB)}/${changedPath}`\n }\n }\n }\n\n return null\n}\n\nexport function computeChangedPath(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const changedPath = computeChangedPathImpl(treeA, treeB)\n\n if (changedPath == null || changedPath === '/') {\n return changedPath\n }\n\n // lightweight normalization to remove route groups\n return normalizeSegments(changedPath.split('/'))\n}\n\n/**\n * Recursively extracts dynamic parameters from FlightRouterState.\n */\nexport function getSelectedParams(\n currentTree: FlightRouterState,\n params: Params = {}\n): Params {\n const parallelRoutes = currentTree[1]\n\n for (const parallelRoute of Object.values(parallelRoutes)) {\n const segment = parallelRoute[0]\n const isDynamicParameter = Array.isArray(segment)\n const segmentValue = isDynamicParameter ? segment[1] : segment\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) continue\n\n // Ensure catchAll and optional catchall are turned into an array\n const isCatchAll =\n isDynamicParameter && (segment[2] === 'c' || segment[2] === 'oc')\n\n if (isCatchAll) {\n params[segment[0]] = segment[1].split('/')\n } else if (isDynamicParameter) {\n params[segment[0]] = segment[1]\n }\n\n params = getSelectedParams(parallelRoute, params)\n }\n\n return params\n}\n","// Adapted from React's sanitizeURL function found here: https://github.com/facebook/react/blob/b565373afd0cc1988497e1107106e851e8cfb261/packages/react-dom-bindings/src/shared/sanitizeURL.js\n\n// A javascript: URL can contain leading C0 control or \\u0020 SPACE,\n// and any newline or tab are filtered out as if they're not part of the URL.\n// https://url.spec.whatwg.org/#url-parsing\n// Tab or newline are defined as \\r\\n\\t:\n// https://infra.spec.whatwg.org/#ascii-tab-or-newline\n// A C0 control is a code point in the range \\u0000 NULL to \\u001F\n// INFORMATION SEPARATOR ONE, inclusive:\n// https://infra.spec.whatwg.org/#c0-control-or-space\n\nconst isJavaScriptProtocol =\n // eslint-disable-next-line no-control-regex\n /^[\\u0000-\\u001F ]*j[\\r\\n\\t]*a[\\r\\n\\t]*v[\\r\\n\\t]*a[\\r\\n\\t]*s[\\r\\n\\t]*c[\\r\\n\\t]*r[\\r\\n\\t]*i[\\r\\n\\t]*p[\\r\\n\\t]*t[\\r\\n\\t]*:/i\n\nexport function isJavaScriptURLString(url: string): boolean {\n return isJavaScriptProtocol.test('' + (url as unknown as string))\n}\n","/**\n * Navigation lock for the Instant Navigation Testing API.\n *\n * Manages the in-memory lock (a promise) that gates dynamic data writes\n * during instant navigation captures, and owns all cookie state\n * transitions (pending → captured-MPA, pending → captured-SPA).\n *\n * External actors (Playwright, devtools) set [0] to start a lock scope\n * and delete the cookie to end one. Next.js writes captured values.\n * The CookieStore handler distinguishes them by value: pending = external,\n * captured = self-write (ignored).\n */\n\nimport type { FlightRouterState } from '../../../shared/lib/app-router-types'\nimport { NEXT_INSTANT_TEST_COOKIE } from '../app-router-headers'\nimport { refreshOnInstantNavigationUnlock } from '../use-action-queue'\n\ntype InstantNavCookieState = 'pending' | 'mpa' | 'spa'\n\ntype InstantCookie =\n // pending (waiting to capture)\n | [captured: 0, id: string]\n // captured MPA page load\n | [captured: 1, id: string, state: null]\n // captured SPA navigation (from/to route trees)\n | [\n captured: 1,\n id: string,\n state: { from: FlightRouterState; to: FlightRouterState | null },\n ]\n\nfunction parseCookieValue(raw: string): InstantNavCookieState {\n try {\n const parsed = JSON.parse(raw)\n if (Array.isArray(parsed) && parsed.length >= 3) {\n const rawState = parsed[2]\n return rawState === null ? 'mpa' : 'spa'\n }\n } catch {}\n return 'pending'\n}\n\nfunction writeCookieValue(value: InstantCookie): void {\n if (typeof cookieStore === 'undefined') {\n return\n }\n // Read the existing cookie to preserve its attributes (domain, path),\n // then write back with the new value. This updates the same cookie\n // entry that the external actor created, regardless of how it was\n // scoped.\n cookieStore.get(NEXT_INSTANT_TEST_COOKIE).then((existing: any) => {\n if (existing) {\n const options: any = {\n name: NEXT_INSTANT_TEST_COOKIE,\n value: JSON.stringify(value),\n path: existing.path ?? '/',\n }\n if (existing.domain) {\n options.domain = existing.domain\n }\n cookieStore.set(options)\n }\n })\n}\n\ntype NavigationLockState = {\n promise: Promise\n resolve: () => void\n}\n\nlet lockState: NavigationLockState | null = null\n\nfunction acquireLock(): void {\n if (lockState !== null) {\n return\n }\n let resolve: () => void\n const promise = new Promise((r) => {\n resolve = r\n })\n lockState = { promise, resolve: resolve! }\n}\n\nfunction releaseLock(): void {\n if (lockState !== null) {\n lockState.resolve()\n lockState = null\n }\n}\n\n/**\n * Sets up the cookie-based lock. Handles the initial page load state and\n * registers a CookieStore listener for runtime changes.\n *\n * Called once during page initialization from app-globals.ts.\n */\nexport function startListeningForInstantNavigationCookie(): void {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n // If the server served a static shell, this is an MPA page load\n // while the lock is held. Transition to captured-MPA and acquire.\n if (self.__next_instant_test) {\n if (typeof cookieStore !== 'undefined') {\n // If the cookie was already cleared during the MPA page\n // transition, reload to get the full dynamic page.\n cookieStore.get(NEXT_INSTANT_TEST_COOKIE).then((cookie: any) => {\n if (!cookie) {\n window.location.reload()\n }\n })\n }\n\n writeCookieValue([1, `c${Math.random()}`, null])\n acquireLock()\n }\n\n if (typeof cookieStore === 'undefined') {\n return\n }\n\n cookieStore.addEventListener('change', (event: CookieChangeEvent) => {\n for (const cookie of event.changed) {\n if (cookie.name === NEXT_INSTANT_TEST_COOKIE) {\n const state = parseCookieValue(cookie.value ?? '')\n\n if (state !== 'pending') {\n // Captured value — our own transition. Ignore.\n return\n }\n\n // Pending value — external actor starting a new lock scope.\n if (lockState !== null) {\n releaseLock()\n }\n acquireLock()\n return\n }\n }\n\n for (const cookie of event.deleted) {\n if (cookie.name === NEXT_INSTANT_TEST_COOKIE) {\n releaseLock()\n refreshOnInstantNavigationUnlock()\n return\n }\n }\n })\n }\n}\n\n/**\n * Transitions the cookie from pending to captured-SPA. Called when a\n * client-side navigation is captured by the lock.\n *\n * @param fromTree - The flight router state of the from-route\n * @param toTree - The flight router state of the to-route (null if not yet known)\n */\nexport function transitionToCapturedSPA(\n fromTree: FlightRouterState,\n toTree: FlightRouterState | null\n): void {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n writeCookieValue([1, `c${Math.random()}`, { from: fromTree, to: toTree }])\n }\n}\n\n/**\n * Updates the captured-SPA cookie with the resolved route trees.\n * Called after the prefetch resolves and the target route tree is known.\n */\nexport function updateCapturedSPAToTree(\n fromTree: FlightRouterState,\n toTree: FlightRouterState\n): void {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n writeCookieValue([1, `c${Math.random()}`, { from: fromTree, to: toTree }])\n }\n}\n\n/**\n * Returns true if the navigation lock is currently active.\n */\nexport function isNavigationLocked(): boolean {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n return lockState !== null\n }\n return false\n}\n\n/**\n * Waits for the navigation lock to be released, if it's currently held.\n * No-op if the lock is not acquired.\n */\nexport async function waitForNavigationLockIfActive(): Promise {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n if (lockState !== null) {\n await lockState.promise\n }\n }\n}\n","import type {\n CacheNodeSeedData,\n FlightRouterState,\n FlightSegmentPath,\n ScrollRef,\n} from '../../../shared/lib/app-router-types'\nimport type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type { HeadData } from '../../../shared/lib/app-router-types'\nimport type { NormalizedFlightData } from '../../flight-data-helpers'\nimport { fetchServerResponse } from '../router-reducer/fetch-server-response'\nimport {\n startPPRNavigation,\n spawnDynamicRequests,\n FreshnessPolicy,\n type NavigationRequestAccumulation,\n} from '../router-reducer/ppr-navigations'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants'\nimport {\n EntryStatus,\n readRouteCacheEntry,\n deprecated_requestOptimisticRouteCacheEntry,\n convertRootFlightRouterStateToRouteTree,\n getStaleAt,\n writeStaticStageResponseIntoCache,\n processRuntimePrefetchStream,\n writeDynamicRenderResponseIntoCache,\n type RouteTree,\n type FulfilledRouteCacheEntry,\n} from './cache'\nimport { discoverKnownRoute } from './optimistic-routes'\nimport { createCacheKey, type NormalizedSearch } from './cache-key'\nimport { schedulePrefetchTask } from './scheduler'\nimport { PrefetchPriority, FetchStrategy } from './types'\nimport { getLinkForCurrentNavigation } from '../links'\nimport type { PageVaryPath } from './vary-path'\nimport type { AppRouterState } from '../router-reducer/router-reducer-types'\nimport { ScrollBehavior } from '../router-reducer/router-reducer-types'\nimport { computeChangedPath } from '../router-reducer/compute-changed-path'\nimport { isJavaScriptURLString } from '../../lib/javascript-url'\nimport { UnknownDynamicStaleTime, computeDynamicStaleAt } from './bfcache'\n\n/**\n * Navigate to a new URL, using the Segment Cache to construct a response.\n *\n * To allow for synchronous navigations whenever possible, this is not an async\n * function. It returns a promise only if there's no matching prefetch in\n * the cache. Otherwise it returns an immediate result and uses Suspense/RSC to\n * stream in any missing data.\n */\nexport function navigate(\n state: AppRouterState,\n url: URL,\n currentUrl: URL,\n currentRenderedSearch: string,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n scrollBehavior: ScrollBehavior,\n navigateType: 'push' | 'replace'\n): AppRouterState | Promise {\n // Instant Navigation Testing API: when the lock is active, ensure a\n // prefetch task has been initiated before proceeding with the navigation.\n // This guarantees that segment data requests are at least pending, even\n // for routes that already have a cached route tree. Without this, the\n // static shell might be incomplete because some segments were never\n // requested.\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n const { isNavigationLocked } =\n require('./navigation-testing-lock') as typeof import('./navigation-testing-lock')\n if (isNavigationLocked()) {\n return ensurePrefetchThenNavigate(\n state,\n url,\n currentUrl,\n currentRenderedSearch,\n currentCacheNode,\n currentFlightRouterState,\n nextUrl,\n freshnessPolicy,\n scrollBehavior,\n navigateType\n )\n }\n }\n\n return navigateImpl(\n state,\n url,\n currentUrl,\n currentRenderedSearch,\n currentCacheNode,\n currentFlightRouterState,\n nextUrl,\n freshnessPolicy,\n scrollBehavior,\n navigateType\n )\n}\n\nfunction navigateImpl(\n state: AppRouterState,\n url: URL,\n currentUrl: URL,\n currentRenderedSearch: string,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n scrollBehavior: ScrollBehavior,\n navigateType: 'push' | 'replace'\n): AppRouterState | Promise {\n const now = Date.now()\n const href = url.href\n\n const cacheKey = createCacheKey(href, nextUrl)\n const route = readRouteCacheEntry(now, cacheKey)\n if (route !== null && route.status === EntryStatus.Fulfilled) {\n // We have a matching prefetch.\n return navigateUsingPrefetchedRouteTree(\n now,\n state,\n url,\n currentUrl,\n currentRenderedSearch,\n nextUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n scrollBehavior,\n navigateType,\n route\n )\n }\n\n // There was no matching route tree in the cache. Let's see if we can\n // construct an \"optimistic\" route tree using the deprecated search-params\n // based matching. This is only used when the new optimisticRouting flag is\n // disabled.\n //\n // Do not construct an optimistic route tree if there was a cache hit, but\n // the entry has a rejected status, since it may have been rejected due to a\n // rewrite or redirect based on the search params.\n //\n // TODO: There are multiple reasons a prefetch might be rejected; we should\n // track them explicitly and choose what to do here based on that.\n if (!process.env.__NEXT_OPTIMISTIC_ROUTING) {\n if (route === null || route.status !== EntryStatus.Rejected) {\n const optimisticRoute = deprecated_requestOptimisticRouteCacheEntry(\n now,\n url,\n nextUrl\n )\n if (optimisticRoute !== null) {\n // We have an optimistic route tree. Proceed with the normal flow.\n return navigateUsingPrefetchedRouteTree(\n now,\n state,\n url,\n currentUrl,\n currentRenderedSearch,\n nextUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n scrollBehavior,\n navigateType,\n optimisticRoute\n )\n }\n }\n }\n\n // There's no matching prefetch for this route in the cache. We must lazily\n // fetch it from the server before we can perform the navigation.\n //\n // TODO: If this is a gesture navigation, instead of performing a\n // dynamic request, we should do a runtime prefetch.\n return navigateToUnknownRoute(\n now,\n state,\n url,\n currentUrl,\n currentRenderedSearch,\n nextUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n scrollBehavior,\n navigateType\n ).catch(() => {\n // If the navigation fails, return the current state\n return state\n })\n}\n\nexport function navigateToKnownRoute(\n now: number,\n state: AppRouterState,\n url: URL,\n canonicalUrl: string,\n navigationSeed: NavigationSeed,\n currentUrl: URL,\n currentRenderedSearch: string,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n nextUrl: string | null,\n scrollBehavior: ScrollBehavior,\n navigateType: 'push' | 'replace',\n debugInfo: Array | null,\n // The route cache entry used for this navigation, if it came from route\n // prediction. Passed through so it can be marked as having a dynamic rewrite\n // if the server returns a different pathname (indicating dynamic rewrite\n // behavior).\n //\n // When null, the navigation did not use route prediction - either because\n // the route was already fully cached, or it's a navigation that doesn't\n // involve prediction (refresh, history traversal, server action, etc.).\n // In these cases, if a mismatch occurs, we still mark the route as having a\n // dynamic rewrite by traversing the known route tree (see\n // dispatchRetryDueToTreeMismatch).\n routeCacheEntry: FulfilledRouteCacheEntry | null\n): AppRouterState {\n // A version of navigate() that accepts the target route tree as an argument\n // rather than reading it from the prefetch cache.\n const accumulation: NavigationRequestAccumulation = {\n separateRefreshUrls: null,\n scrollRef: null,\n }\n // We special case navigations to the exact same URL as the current location.\n // It's a common UI pattern for apps to refresh when you click a link to the\n // current page. So when this happens, we refresh the dynamic data in the page\n // segments.\n //\n // Note that this does not apply if the any part of the hash or search query\n // has changed. This might feel a bit weird but it makes more sense when you\n // consider that the way to trigger this behavior is to click the same link\n // multiple times.\n //\n // TODO: We should probably refresh the *entire* route when this case occurs,\n // not just the page segments. Essentially treating it the same as a refresh()\n // triggered by an action, which is the more explicit way of modeling the UI\n // pattern described above.\n //\n // Also note that this only refreshes the dynamic data, not static/ cached\n // data. If the page segment is fully static and prefetched, the request is\n // skipped. (This is also how refresh() works.)\n const isSamePageNavigation = url.href === currentUrl.href\n const task = startPPRNavigation(\n now,\n currentUrl,\n currentRenderedSearch,\n currentCacheNode,\n currentFlightRouterState,\n navigationSeed.routeTree,\n navigationSeed.metadataVaryPath,\n freshnessPolicy,\n navigationSeed.data,\n navigationSeed.head,\n navigationSeed.dynamicStaleAt,\n isSamePageNavigation,\n accumulation\n )\n if (task !== null) {\n if (freshnessPolicy !== FreshnessPolicy.Gesture) {\n spawnDynamicRequests(\n task,\n url,\n nextUrl,\n freshnessPolicy,\n accumulation,\n routeCacheEntry,\n navigateType\n )\n }\n return completeSoftNavigation(\n state,\n url,\n nextUrl,\n task.route,\n task.node,\n navigationSeed.renderedSearch,\n canonicalUrl,\n navigateType,\n scrollBehavior,\n accumulation.scrollRef,\n debugInfo\n )\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return completeHardNavigation(state, url, navigateType)\n}\n\nfunction navigateUsingPrefetchedRouteTree(\n now: number,\n state: AppRouterState,\n url: URL,\n currentUrl: URL,\n currentRenderedSearch: string,\n nextUrl: string | null,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n scrollBehavior: ScrollBehavior,\n navigateType: 'push' | 'replace',\n route: FulfilledRouteCacheEntry\n): AppRouterState {\n const routeTree = route.tree\n const canonicalUrl = route.canonicalUrl + url.hash\n const renderedSearch = route.renderedSearch\n const prefetchSeed: NavigationSeed = {\n renderedSearch,\n routeTree,\n metadataVaryPath: route.metadata.varyPath as any,\n data: null,\n head: null,\n dynamicStaleAt: computeDynamicStaleAt(now, UnknownDynamicStaleTime),\n }\n return navigateToKnownRoute(\n now,\n state,\n url,\n canonicalUrl,\n prefetchSeed,\n currentUrl,\n currentRenderedSearch,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n nextUrl,\n scrollBehavior,\n navigateType,\n null,\n route\n )\n}\n\n// Used to request all the dynamic data for a route, rather than just a subset,\n// e.g. during a refresh or a revalidation. Typically this gets constructed\n// during the normal flow when diffing the route tree, but for an unprefetched\n// navigation, where we don't know the structure of the target route, we use\n// this instead.\nconst DynamicRequestTreeForEntireRoute: FlightRouterState = [\n '',\n {},\n null,\n 'refetch',\n]\n\nasync function navigateToUnknownRoute(\n now: number,\n state: AppRouterState,\n url: URL,\n currentUrl: URL,\n currentRenderedSearch: string,\n nextUrl: string | null,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n scrollBehavior: ScrollBehavior,\n navigateType: 'push' | 'replace'\n): Promise {\n // Runs when a navigation happens but there's no cached prefetch we can use.\n // Don't bother to wait for a prefetch response; go straight to a full\n // navigation that contains both static and dynamic data in a single stream.\n // (This is unlike the old navigation implementation, which instead blocks\n // the dynamic request until a prefetch request is received.)\n //\n // To avoid duplication of logic, we're going to pretend that the tree\n // returned by the dynamic request is, in fact, a prefetch tree. Then we can\n // use the same server response to write the actual data into the CacheNode\n // tree. So it's the same flow as the \"happy path\" (prefetch, then\n // navigation), except we use a single server response for both stages.\n\n let dynamicRequestTree: FlightRouterState\n switch (freshnessPolicy) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n case FreshnessPolicy.Gesture:\n dynamicRequestTree = currentFlightRouterState\n break\n case FreshnessPolicy.Hydration: // <- shouldn't happen during client nav\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n dynamicRequestTree = DynamicRequestTreeForEntireRoute\n break\n default:\n freshnessPolicy satisfies never\n dynamicRequestTree = currentFlightRouterState\n break\n }\n\n const promiseForDynamicServerResponse = fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n })\n const result = await promiseForDynamicServerResponse\n if (typeof result === 'string') {\n // This is an MPA navigation.\n const redirectUrl = new URL(result, location.origin)\n return completeHardNavigation(state, redirectUrl, navigateType)\n }\n\n const {\n flightData,\n canonicalUrl,\n renderedSearch,\n couldBeIntercepted,\n supportsPerSegmentPrefetching,\n dynamicStaleTime,\n staticStageData,\n runtimePrefetchStream,\n responseHeaders,\n debugInfo,\n } = result\n\n // Since the response format of dynamic requests and prefetches is slightly\n // different, we'll need to massage the data a bit. Create FlightRouterState\n // tree that simulates what we'd receive as the result of a prefetch.\n const navigationSeed = convertServerPatchToFullTree(\n now,\n currentFlightRouterState,\n flightData,\n renderedSearch,\n dynamicStaleTime\n )\n\n // Learn the route pattern so we can predict it for future navigations.\n // hasDynamicRewrite is false because this is a fresh navigation to an\n // unknown route - any rewrite detection happens during the traversal inside\n // discoverKnownRoute. The hasDynamicRewrite param is only set to true when\n // retrying after a tree mismatch (see dispatchRetryDueToTreeMismatch).\n const metadataVaryPath = navigationSeed.metadataVaryPath\n if (metadataVaryPath !== null) {\n discoverKnownRoute(\n now,\n url.pathname,\n nextUrl,\n null, // No pending entry\n navigationSeed.routeTree,\n metadataVaryPath,\n couldBeIntercepted,\n createHrefFromUrl(canonicalUrl),\n supportsPerSegmentPrefetching,\n false // hasDynamicRewrite - not a retry, rewrite detection happens during traversal\n )\n\n if (staticStageData !== null) {\n const { response: staticStageResponse, isResponsePartial } =\n staticStageData\n\n // Write the static stage of the response into the segment cache so that\n // subsequent navigations can serve cached static segments instantly.\n getStaleAt(now, staticStageResponse.s)\n .then((staleAt) => {\n const buildId =\n responseHeaders.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ??\n staticStageResponse.b\n\n writeStaticStageResponseIntoCache(\n now,\n staticStageResponse.f,\n buildId,\n staticStageResponse.h,\n staleAt,\n currentFlightRouterState,\n renderedSearch,\n isResponsePartial\n )\n })\n .catch(() => {\n // The static stage processing failed. Not fatal — the navigation\n // completed normally, we just won't write into the cache.\n })\n }\n\n if (runtimePrefetchStream !== null) {\n processRuntimePrefetchStream(\n now,\n runtimePrefetchStream,\n currentFlightRouterState,\n renderedSearch\n )\n .then((processed) => {\n if (processed !== null) {\n writeDynamicRenderResponseIntoCache(\n now,\n FetchStrategy.PPRRuntime,\n processed.flightDatas,\n processed.buildId,\n processed.isResponsePartial,\n processed.headVaryParams,\n processed.staleAt,\n processed.navigationSeed,\n null\n )\n }\n })\n .catch(() => {\n // The runtime prefetch cache write failed. Not fatal — the\n // navigation completed normally, we just won't cache runtime data.\n })\n }\n }\n\n return navigateToKnownRoute(\n now,\n state,\n url,\n createHrefFromUrl(canonicalUrl),\n navigationSeed,\n currentUrl,\n currentRenderedSearch,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n nextUrl,\n scrollBehavior,\n navigateType,\n debugInfo,\n // Unknown route navigations don't use route prediction - the route tree\n // came directly from the server. If a mismatch occurs during dynamic data\n // fetch, the retry handler will traverse the known route tree to mark the\n // entry as having a dynamic rewrite.\n null\n )\n}\n\nexport function completeHardNavigation(\n state: AppRouterState,\n url: URL,\n navigateType: 'push' | 'replace'\n): AppRouterState {\n if (isJavaScriptURLString(url.href)) {\n console.error(\n 'Next.js has blocked a javascript: URL as a security precaution.'\n )\n return state\n }\n const newState: AppRouterState = {\n canonicalUrl:\n url.origin === location.origin ? createHrefFromUrl(url) : url.href,\n pushRef: {\n pendingPush: navigateType === 'push',\n mpaNavigation: true,\n preserveCustomHistoryState: false,\n },\n // TODO: None of the rest of these values are consistent with the incoming\n // navigation. We rely on the fact that AppRouter will suspend and trigger\n // a hard navigation before it accesses any of these values. But instead\n // we should trigger the hard navigation and blocking any subsequent\n // router updates without updating React.\n renderedSearch: state.renderedSearch,\n focusAndScrollRef: state.focusAndScrollRef,\n cache: state.cache,\n tree: state.tree,\n nextUrl: state.nextUrl,\n previousNextUrl: state.previousNextUrl,\n debugInfo: null,\n }\n return newState\n}\n\nexport function completeSoftNavigation(\n oldState: AppRouterState,\n url: URL,\n referringNextUrl: string | null,\n tree: FlightRouterState,\n cache: CacheNode,\n renderedSearch: string,\n canonicalUrl: string,\n navigateType: 'push' | 'replace',\n scrollBehavior: ScrollBehavior,\n scrollRef: ScrollRef | null,\n collectedDebugInfo: Array | null\n) {\n // The \"Next-Url\" is a special representation of the URL that Next.js\n // uses to implement interception routes.\n // TODO: Get rid of this extra traversal by computing this during the\n // same traversal that computes the tree itself. We should also figure out\n // what is the minimum information needed for the server to correctly\n // intercept the route.\n const changedPath = computeChangedPath(oldState.tree, tree)\n const nextUrlForNewRoute = changedPath ? changedPath : oldState.nextUrl\n\n // This value is stored on the state as `previousNextUrl`; the naming is\n // confusing. What it represents is the \"Next-Url\" header that was used to\n // fetch the incoming route. It's essentially the refererer URL, but in a\n // Next.js specific format. During refreshes, this is sent back to the server\n // instead of the current route's \"Next-Url\" so that the same interception\n // logic is applied as during the original navigation.\n const previousNextUrl = referringNextUrl\n\n // Check if the only thing that changed was the hash fragment.\n const oldUrl = new URL(oldState.canonicalUrl, url)\n const onlyHashChange =\n // We don't need to compare the origins, because client-driven\n // navigations are always same-origin.\n url.pathname === oldUrl.pathname &&\n url.search === oldUrl.search &&\n url.hash !== oldUrl.hash\n\n // Determine whether and how the page should scroll after this\n // navigation.\n //\n // By default, we scroll to the segments that were navigated to — i.e.\n // segments in the new part of the route, as opposed to shared segments\n // that were already part of the previous route. All newly navigated\n // segments share a single ScrollRef. When they mount, the first one\n // to mount initiates the scroll. They share a ref so that only one\n // scroll happens per navigation.\n //\n // If a subsequent navigation produces new segments, those supersede\n // any pending scroll from the previous navigation by invalidating its\n // ScrollRef. If a navigation doesn't produce any new segments (e.g.\n // a refresh where the route structure didn't change), any pending\n // scrolls from previous navigations are unaffected.\n //\n // The branches below handle special cases layered on top of this\n // default model.\n let activeScrollRef: ScrollRef | null\n let forceScroll: boolean\n if (scrollBehavior === ScrollBehavior.NoScroll) {\n // The user explicitly opted out of scrolling (e.g. scroll={false}\n // on a Link or router.push).\n //\n // If this navigation created new scroll targets (scrollRef !== null),\n // neutralize them. If it didn't, any prior scroll targets carried\n // forward on the cache nodes via reuseSharedCacheNode remain active.\n if (scrollRef !== null) {\n scrollRef.current = false\n }\n activeScrollRef = oldState.focusAndScrollRef.scrollRef\n forceScroll = false\n } else if (onlyHashChange) {\n // Hash-only navigations should scroll regardless of per-node state.\n // Create a fresh ref so the first segment to scroll consumes it.\n //\n // Invalidate any scroll ref from a prior navigation that hasn't\n // been consumed yet.\n const oldScrollRef = oldState.focusAndScrollRef.scrollRef\n if (oldScrollRef !== null) {\n oldScrollRef.current = false\n }\n // Also invalidate any per-node refs that were accumulated during\n // this navigation's tree construction — the hash-only ref\n // supersedes them.\n if (scrollRef !== null) {\n scrollRef.current = false\n }\n activeScrollRef = { current: true }\n forceScroll = true\n } else {\n // Default case. Use the accumulated scrollRef (may be null if no\n // new segments were created). The handler checks per-node refs, so\n // unchanged parallel route slots won't scroll.\n activeScrollRef = scrollRef\n\n // If this navigation created new scroll targets, invalidate any\n // pending scroll from a previous navigation.\n if (scrollRef !== null) {\n const oldScrollRef = oldState.focusAndScrollRef.scrollRef\n if (oldScrollRef !== null) {\n oldScrollRef.current = false\n }\n }\n forceScroll = false\n }\n\n const newState: AppRouterState = {\n canonicalUrl,\n renderedSearch,\n pushRef: {\n pendingPush: navigateType === 'push',\n mpaNavigation: false,\n preserveCustomHistoryState: false,\n },\n focusAndScrollRef: {\n scrollRef: activeScrollRef,\n forceScroll,\n onlyHashChange,\n hashFragment:\n // Remove leading # and decode hash to make non-latin hashes work.\n //\n // Empty hash should trigger default behavior of scrolling layout into\n // view. #top is handled in layout-router.\n //\n // Refer to `ScrollAndFocusHandler` for details on how this is used.\n scrollBehavior !== ScrollBehavior.NoScroll && url.hash !== ''\n ? decodeURIComponent(url.hash.slice(1))\n : oldState.focusAndScrollRef.hashFragment,\n },\n cache,\n tree,\n nextUrl: nextUrlForNewRoute,\n previousNextUrl,\n debugInfo: collectedDebugInfo,\n }\n return newState\n}\n\nexport function completeTraverseNavigation(\n state: AppRouterState,\n url: URL,\n renderedSearch: string,\n cache: CacheNode,\n tree: FlightRouterState,\n nextUrl: string | null\n) {\n return {\n // Set canonical url\n canonicalUrl: createHrefFromUrl(url),\n renderedSearch,\n pushRef: {\n pendingPush: false,\n mpaNavigation: false,\n // Ensures that the custom history state that was set is preserved when applying this update.\n preserveCustomHistoryState: true,\n },\n focusAndScrollRef: state.focusAndScrollRef,\n cache,\n // Restore provided tree\n tree,\n nextUrl,\n // TODO: We need to restore previousNextUrl, too, which represents the\n // Next-Url that was used to fetch the data. Anywhere we fetch using the\n // canonical URL, there should be a corresponding Next-Url.\n previousNextUrl: null,\n debugInfo: null,\n }\n}\n\n// TODO: The rest of this file is related to converting the server response into\n// the data structures used by the client. Probably should move to a\n// separate module.\n\nexport type NavigationSeed = {\n renderedSearch: string\n routeTree: RouteTree\n metadataVaryPath: PageVaryPath | null\n data: CacheNodeSeedData | null\n head: HeadData | null\n dynamicStaleAt: number\n}\n\nexport function convertServerPatchToFullTree(\n now: number,\n currentTree: FlightRouterState,\n flightData: Array | null,\n renderedSearch: string,\n dynamicStaleTimeSeconds: number\n): NavigationSeed {\n // During a client navigation or prefetch, the server sends back only a patch\n // for the parts of the tree that have changed.\n //\n // This applies the patch to the base tree to create a full representation of\n // the resulting tree.\n //\n // The return type includes a full FlightRouterState tree and a full\n // CacheNodeSeedData tree. (Conceptually these are the same tree, and should\n // eventually be unified, but there's still lots of existing code that\n // operates on FlightRouterState trees alone without the CacheNodeSeedData.)\n //\n // TODO: This similar to what apply-router-state-patch-to-tree does. It\n // will eventually fully replace it. We should get rid of all the remaining\n // places where we iterate over the server patch format. This should also\n // eventually replace normalizeFlightData.\n\n let baseTree: FlightRouterState = currentTree\n let baseData: CacheNodeSeedData | null = null\n let head: HeadData | null = null\n if (flightData !== null) {\n for (const {\n segmentPath,\n tree: treePatch,\n seedData: dataPatch,\n head: headPatch,\n } of flightData) {\n const result = convertServerPatchToFullTreeImpl(\n baseTree,\n baseData,\n treePatch,\n dataPatch,\n segmentPath,\n renderedSearch,\n 0\n )\n baseTree = result.tree\n baseData = result.data\n // This is the same for all patches per response, so just pick an\n // arbitrary one\n head = headPatch\n }\n }\n\n const finalFlightRouterState = baseTree\n\n // Convert the final FlightRouterState into a RouteTree type.\n //\n // TODO: Eventually, FlightRouterState will evolve to being a transport format\n // only. The RouteTree type will become the main type used for dealing with\n // routes on the client, and we'll store it in the state directly.\n const acc = { metadataVaryPath: null }\n const routeTree = convertRootFlightRouterStateToRouteTree(\n finalFlightRouterState,\n renderedSearch as NormalizedSearch,\n acc\n )\n\n return {\n routeTree,\n metadataVaryPath: acc.metadataVaryPath,\n data: baseData,\n renderedSearch,\n head,\n dynamicStaleAt: computeDynamicStaleAt(now, dynamicStaleTimeSeconds),\n }\n}\n\nfunction convertServerPatchToFullTreeImpl(\n baseRouterState: FlightRouterState,\n baseData: CacheNodeSeedData | null,\n treePatch: FlightRouterState,\n dataPatch: CacheNodeSeedData | null,\n segmentPath: FlightSegmentPath,\n renderedSearch: string,\n index: number\n): { tree: FlightRouterState; data: CacheNodeSeedData | null } {\n if (index === segmentPath.length) {\n // We reached the part of the tree that we need to patch.\n return {\n tree: treePatch,\n data: dataPatch,\n }\n }\n\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n //\n // This path tells us which part of the base tree to apply the tree patch.\n //\n // NOTE: We receive the FlightRouterState patch in the same request as the\n // seed data patch. Therefore we don't need to worry about diffing the segment\n // values; we can assume the server sent us a correct result.\n const updatedParallelRouteKey: string = segmentPath[index]\n // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above\n\n const baseTreeChildren = baseRouterState[1]\n const baseSeedDataChildren = baseData !== null ? baseData[1] : null\n const newTreeChildren: Record = {}\n const newSeedDataChildren: Record = {}\n for (const parallelRouteKey in baseTreeChildren) {\n const childBaseRouterState = baseTreeChildren[parallelRouteKey]\n const childBaseSeedData =\n baseSeedDataChildren !== null\n ? (baseSeedDataChildren[parallelRouteKey] ?? null)\n : null\n if (parallelRouteKey === updatedParallelRouteKey) {\n const result = convertServerPatchToFullTreeImpl(\n childBaseRouterState,\n childBaseSeedData,\n treePatch,\n dataPatch,\n segmentPath,\n renderedSearch,\n // Advance the index by two and keep cloning until we reach\n // the end of the segment path.\n index + 2\n )\n\n newTreeChildren[parallelRouteKey] = result.tree\n newSeedDataChildren[parallelRouteKey] = result.data\n } else {\n // This child is not being patched. Copy it over as-is.\n newTreeChildren[parallelRouteKey] = childBaseRouterState\n newSeedDataChildren[parallelRouteKey] = childBaseSeedData\n }\n }\n\n let clonedTree: FlightRouterState\n let clonedSeedData: CacheNodeSeedData\n // Clone all the fields except the children.\n\n // Clone the FlightRouterState tree. Based on equivalent logic in\n // apply-router-state-patch-to-tree, but should confirm whether we need to\n // copy all of these fields. Not sure the server ever sends, e.g. the\n // refetch marker.\n clonedTree = [baseRouterState[0], newTreeChildren]\n if (2 in baseRouterState) {\n const compressedRefreshState = baseRouterState[2]\n if (\n compressedRefreshState !== undefined &&\n compressedRefreshState !== null\n ) {\n // Since this part of the tree was patched with new data, any parent\n // refresh states should be updated to reflect the new rendered search\n // value. (The refresh state acts like a \"context provider\".) All pages\n // within the same server response share the same renderedSearch value,\n // but the same RouteTree could be composed from multiple different\n // routes, and multiple responses.\n clonedTree[2] = [compressedRefreshState[0], renderedSearch]\n }\n }\n if (3 in baseRouterState) {\n clonedTree[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clonedTree[4] = baseRouterState[4]\n }\n\n // Clone the CacheNodeSeedData tree.\n const isEmptySeedDataPartial = true\n clonedSeedData = [\n null,\n newSeedDataChildren,\n null,\n isEmptySeedDataPartial,\n null,\n ]\n\n return {\n tree: clonedTree,\n data: clonedSeedData,\n }\n}\n\n/**\n * Instant Navigation Testing API: ensures a prefetch task has been initiated\n * and completed before proceeding with the navigation. This guarantees that\n * segment data requests are at least pending, even for routes whose route\n * tree is already cached.\n *\n * After the prefetch completes, delegates to the normal navigation flow.\n */\nasync function ensurePrefetchThenNavigate(\n state: AppRouterState,\n url: URL,\n currentUrl: URL,\n currentRenderedSearch: string,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n scrollBehavior: ScrollBehavior,\n navigateType: 'push' | 'replace'\n): Promise {\n const link = getLinkForCurrentNavigation()\n const fetchStrategy = link !== null ? link.fetchStrategy : FetchStrategy.PPR\n\n // Transition the cookie to captured-SPA immediately, before waiting\n // for the prefetch. This ensures the devtools panel can update its UI\n // right away, even if the prefetch takes time (e.g. dev compilation).\n // The \"to\" tree starts as null and is filled in after the prefetch\n // resolves and the navigation produces a new router state.\n const { transitionToCapturedSPA, updateCapturedSPAToTree } =\n require('./navigation-testing-lock') as typeof import('./navigation-testing-lock')\n transitionToCapturedSPA(currentFlightRouterState, null)\n\n const cacheKey = createCacheKey(url.href, nextUrl)\n\n await new Promise((resolve) => {\n schedulePrefetchTask(\n cacheKey,\n currentFlightRouterState,\n fetchStrategy,\n PrefetchPriority.Default,\n null, // onInvalidate\n resolve // _onComplete callback\n )\n })\n\n // Prefetch is complete. Proceed with the normal navigation flow, which\n // will now find the route in the cache.\n const result = await navigateImpl(\n state,\n url,\n currentUrl,\n currentRenderedSearch,\n currentCacheNode,\n currentFlightRouterState,\n nextUrl,\n freshnessPolicy,\n scrollBehavior,\n navigateType\n )\n\n // Update the cookie with the resolved \"to\" tree so the devtools\n // panel can display both routes immediately.\n updateCapturedSPAToTree(currentFlightRouterState, result.tree)\n\n return result\n}\n","import type {\n NavigateAction,\n ReadonlyReducerState,\n ReducerState,\n} from '../router-reducer-types'\n\nimport {\n completeHardNavigation,\n navigate as navigateUsingSegmentCache,\n} from '../../segment-cache/navigation'\nimport { getStaleTimeMs } from '../../segment-cache/cache'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\n// These values are set by `define-env-plugin` (based on `nextConfig.experimental.staleTimes`)\n// and default to 5 minutes (static) / 0 seconds (dynamic)\nexport const DYNAMIC_STALETIME_MS =\n Number(process.env.__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME) * 1000\n\nexport const STATIC_STALETIME_MS = getStaleTimeMs(\n Number(process.env.__NEXT_CLIENT_ROUTER_STATIC_STALETIME)\n)\n\nexport function navigateReducer(\n state: ReadonlyReducerState,\n action: NavigateAction\n): ReducerState {\n const { url, isExternalUrl, navigateType, scrollBehavior } = action\n\n if (isExternalUrl) {\n return completeHardNavigation(state, url, navigateType)\n }\n\n // Handles case where `` tag is present,\n // which will trigger an MPA navigation.\n if (document.getElementById('__next-page-redirect')) {\n return completeHardNavigation(state, url, navigateType)\n }\n\n // Temporary glue code between the router reducer and the new navigation\n // implementation. Eventually we'll rewrite the router reducer to a\n // state machine.\n const currentUrl = new URL(state.canonicalUrl, location.origin)\n const currentRenderedSearch = state.renderedSearch\n return navigateUsingSegmentCache(\n state,\n url,\n currentUrl,\n currentRenderedSearch,\n state.cache,\n state.tree,\n state.nextUrl,\n FreshnessPolicy.Default,\n scrollBehavior,\n navigateType\n )\n}\n","import { DYNAMIC_STALETIME_MS } from '../router-reducer/reducers/navigate-reducer'\nimport type { SegmentVaryPath } from './vary-path'\n\n/**\n * Sentinel value indicating that no per-page dynamic stale time was provided.\n * When this is the dynamicStaleTime, the default DYNAMIC_STALETIME_MS is used.\n */\nexport const UnknownDynamicStaleTime = -1\n\n/**\n * Converts a dynamic stale time (in seconds, as sent by the server in the `d`\n * field of the Flight response) to an absolute staleAt timestamp. When the\n * value is unknown, falls back to the global DYNAMIC_STALETIME_MS.\n */\nexport function computeDynamicStaleAt(\n now: number,\n dynamicStaleTimeSeconds: number\n): number {\n return dynamicStaleTimeSeconds !== UnknownDynamicStaleTime\n ? now + dynamicStaleTimeSeconds * 1000\n : now + DYNAMIC_STALETIME_MS\n}\nimport {\n setInCacheMap,\n getFromCacheMap,\n type UnknownMapEntry,\n type CacheMap,\n createCacheMap,\n} from './cache-map'\n\nexport type BFCacheEntry = {\n rsc: React.ReactNode | null\n prefetchRsc: React.ReactNode | null\n head: React.ReactNode | null\n prefetchHead: React.ReactNode | null\n\n ref: UnknownMapEntry | null\n size: number\n // The time at which this data was received. Used to compute the stale time\n // for dynamic prefetches (which use STATIC_STALETIME_MS instead of\n // DYNAMIC_STALETIME_MS). Stored explicitly because staleAt may be\n // overridden by a per-page unstable_dynamicStaleTime, which would break\n // any reverse calculation from staleAt.\n navigatedAt: number\n staleAt: number\n version: number\n}\n\nconst bfcacheMap: CacheMap = createCacheMap()\n\nlet currentBfCacheVersion = 0\n\nexport function invalidateBfCache(): void {\n if (typeof window === 'undefined') {\n return\n }\n currentBfCacheVersion++\n}\n\nexport function writeToBFCache(\n now: number,\n varyPath: SegmentVaryPath,\n rsc: React.ReactNode,\n prefetchRsc: React.ReactNode,\n head: React.ReactNode,\n prefetchHead: React.ReactNode,\n dynamicStaleAt: number\n): void {\n if (typeof window === 'undefined') {\n return\n }\n\n const entry: BFCacheEntry = {\n rsc,\n prefetchRsc,\n\n // TODO: These fields will be removed from both BFCacheEntry and\n // SegmentCacheEntry. The head has its own separate cache entry.\n head,\n prefetchHead,\n\n ref: null,\n // TODO: This is just a heuristic. Getting the actual size of the segment\n // isn't feasible because it's part of a larger streaming response. The\n // LRU will still evict it, we just won't have a fully accurate total\n // LRU size. However, we'll probably remove the size tracking from the LRU\n // entirely and use memory pressure events instead.\n size: 100,\n\n navigatedAt: now,\n\n // A back/forward navigation will disregard the stale time. This field is\n // only relevant when staleTimes.dynamic is enabled or unstable_dynamicStaleTime\n // is exported by a page.\n staleAt: dynamicStaleAt,\n version: currentBfCacheVersion,\n }\n const isRevalidation = false\n setInCacheMap(bfcacheMap, varyPath, entry, isRevalidation)\n}\n\nexport function writeHeadToBFCache(\n now: number,\n varyPath: SegmentVaryPath,\n head: React.ReactNode,\n prefetchHead: React.ReactNode,\n dynamicStaleAt: number\n): void {\n // Read the special \"segment\" that represents the head data.\n writeToBFCache(now, varyPath, head, prefetchHead, null, null, dynamicStaleAt)\n}\n\n/**\n * Update the staleAt of an existing BFCache entry. Used after a dynamic\n * response arrives with a per-page stale time from `unstable_dynamicStaleTime`.\n * The per-page value is authoritative — it overrides whatever staleAt was set\n * by the default DYNAMIC_STALETIME_MS.\n */\nexport function updateBFCacheEntryStaleAt(\n varyPath: SegmentVaryPath,\n newStaleAt: number\n): void {\n if (typeof window === 'undefined') {\n return\n }\n const isRevalidation = false\n // Read with staleness bypass (-1) so we can update even stale entries\n const entry = getFromCacheMap(\n -1,\n currentBfCacheVersion,\n bfcacheMap,\n varyPath,\n isRevalidation\n )\n if (entry !== null) {\n entry.staleAt = newStaleAt\n }\n}\n\nexport function readFromBFCache(\n varyPath: SegmentVaryPath\n): BFCacheEntry | null {\n if (typeof window === 'undefined') {\n return null\n }\n const isRevalidation = false\n return getFromCacheMap(\n // During a back/forward navigation, it doesn't matter how stale the data\n // might be. Pass -1 instead of the actual current time to bypass\n // staleness checks.\n -1,\n currentBfCacheVersion,\n bfcacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function readFromBFCacheDuringRegularNavigation(\n now: number,\n varyPath: SegmentVaryPath\n): BFCacheEntry | null {\n if (typeof window === 'undefined') {\n return null\n }\n const isRevalidation = false\n return getFromCacheMap(\n now,\n currentBfCacheVersion,\n bfcacheMap,\n varyPath,\n isRevalidation\n )\n}\n","'use client'\n\n// TODO: Explicitly import from client.browser\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n createFromReadableStream as createFromReadableStreamBrowser,\n createFromFetch as createFromFetchBrowser,\n} from 'react-server-dom-webpack/client'\n\nimport { InvariantError } from '../../../shared/lib/invariant-error'\nimport type {\n FlightRouterState,\n InitialRSCPayload,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\n\nimport {\n type NEXT_ROUTER_PREFETCH_HEADER,\n type NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n type NEXT_INSTANT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_RSC_UNION_QUERY,\n NEXT_URL,\n RSC_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n NEXT_HTML_REQUEST_ID_HEADER,\n NEXT_REQUEST_ID_HEADER,\n} from '../app-router-headers'\nimport { callServer } from '../../app-call-server'\nimport { findSourceMapURL } from '../../app-find-source-map-url'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n type NormalizedFlightData,\n} from '../../flight-data-helpers'\nimport { setCacheBustingSearchParam } from './set-cache-busting-search-param'\nimport { urlToUrlWithoutFlightMarker } from '../../route-params'\nimport type { NormalizedSearch } from '../segment-cache/cache-key'\nimport { getDeploymentId } from '../../../shared/lib/deployment-id'\nimport { getNavigationBuildId } from '../../navigation-build-id'\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants'\nimport { stripIsPartialByte } from '../segment-cache/cache'\nimport { UnknownDynamicStaleTime } from '../segment-cache/bfcache'\n\nconst createFromReadableStream =\n createFromReadableStreamBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromReadableStream']\nconst createFromFetch =\n createFromFetchBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromFetch']\n\nlet createDebugChannel:\n | typeof import('../../dev/debug-channel').createDebugChannel\n | undefined\n\nif (process.env.__NEXT_DEV_SERVER && process.env.__NEXT_REACT_DEBUG_CHANNEL) {\n createDebugChannel = (\n require('../../dev/debug-channel') as typeof import('../../dev/debug-channel')\n ).createDebugChannel\n}\n\nexport interface FetchServerResponseOptions {\n readonly flightRouterState: FlightRouterState\n readonly nextUrl: string | null\n readonly isHmrRefresh?: boolean\n}\n\nexport type StaticStageData<\n T extends\n | NavigationFlightResponse\n | InitialRSCPayload = NavigationFlightResponse,\n> = {\n readonly response: T\n readonly isResponsePartial: boolean\n}\n\ntype SpaFetchServerResponseResult = {\n flightData: NormalizedFlightData[]\n canonicalUrl: URL\n renderedSearch: NormalizedSearch\n couldBeIntercepted: boolean\n supportsPerSegmentPrefetching: boolean\n postponed: boolean\n dynamicStaleTime: number\n staticStageData: StaticStageData | null\n runtimePrefetchStream: ReadableStream | null\n responseHeaders: Headers\n debugInfo: Array | null\n}\n\ntype MpaFetchServerResponseResult = string\n\nexport type FetchServerResponseResult =\n | MpaFetchServerResponseResult\n | SpaFetchServerResponseResult\n\nexport type RequestHeaders = {\n [RSC_HEADER]?: '1'\n [NEXT_ROUTER_STATE_TREE_HEADER]?: string\n [NEXT_URL]?: string\n [NEXT_ROUTER_PREFETCH_HEADER]?: '1' | '2'\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]?: string\n 'x-deployment-id'?: string\n [NEXT_HMR_REFRESH_HEADER]?: '1'\n // A header that is only added in test mode to assert on fetch priority\n 'Next-Test-Fetch-Priority'?: RequestInit['priority']\n [NEXT_HTML_REQUEST_ID_HEADER]?: string // dev-only\n [NEXT_REQUEST_ID_HEADER]?: string // dev-only\n [NEXT_INSTANT_PREFETCH_HEADER]?: '1' // testing API only\n}\n\nfunction doMpaNavigation(url: string): FetchServerResponseResult {\n return urlToUrlWithoutFlightMarker(new URL(url, location.origin)).toString()\n}\n\nlet isPageUnloading = false\n\nif (typeof window !== 'undefined') {\n // Track when the page is unloading, e.g. due to reloading the page or\n // performing hard navigations. This allows us to suppress error logging when\n // the browser cancels in-flight requests during page unload.\n window.addEventListener('pagehide', () => {\n isPageUnloading = true\n })\n\n // Reset the flag on pageshow, e.g. when navigating back and the JavaScript\n // execution context is restored by the browser.\n window.addEventListener('pageshow', () => {\n isPageUnloading = false\n })\n}\n\n/**\n * Fetch the flight data for the provided url. Takes in the current router state\n * to decide what to render server-side.\n */\nexport async function fetchServerResponse(\n url: URL,\n options: FetchServerResponseOptions\n): Promise {\n const { flightRouterState, nextUrl } = options\n\n const headers: RequestHeaders = {\n // Enable flight response\n [RSC_HEADER]: '1',\n // Provide the current router state\n [NEXT_ROUTER_STATE_TREE_HEADER]: prepareFlightRouterStateForRequest(\n flightRouterState,\n options.isHmrRefresh\n ),\n }\n\n if (process.env.NODE_ENV === 'development' && options.isHmrRefresh) {\n headers[NEXT_HMR_REFRESH_HEADER] = '1'\n }\n\n if (nextUrl) {\n headers[NEXT_URL] = nextUrl\n }\n\n // In static export mode, we need to modify the URL to request the .txt file,\n // but we should preserve the original URL for the canonical URL and error handling.\n const originalUrl = url\n\n try {\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n // In \"output: export\" mode, we can't rely on headers to distinguish\n // between HTML and RSC requests. Instead, we append an extra prefix\n // to the request.\n url = new URL(url)\n if (url.pathname.endsWith('/')) {\n url.pathname += 'index.txt'\n } else {\n url.pathname += '.txt'\n }\n }\n }\n\n // Typically, during a navigation, we decode the response using Flight's\n // `createFromFetch` API, which accepts a `fetch` promise.\n // TODO: Remove this check once the old PPR flag is removed\n const isLegacyPPR =\n process.env.__NEXT_PPR && !process.env.__NEXT_CACHE_COMPONENTS\n const shouldImmediatelyDecode = !isLegacyPPR\n const res = await createFetch(\n url,\n headers,\n 'auto',\n shouldImmediatelyDecode\n )\n\n const responseUrl = urlToUrlWithoutFlightMarker(new URL(res.url))\n const canonicalUrl = res.redirected ? responseUrl : originalUrl\n\n const contentType = res.headers.get('content-type') || ''\n const interception = !!res.headers.get('vary')?.includes(NEXT_URL)\n const postponed = !!res.headers.get(NEXT_DID_POSTPONE_HEADER)\n let isFlightResponse = contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n if (!isFlightResponse) {\n isFlightResponse = contentType.startsWith('text/plain')\n }\n }\n }\n\n // If fetch returns something different than flight response handle it like a mpa navigation\n // If the fetch was not 200, we also handle it like a mpa navigation\n if (!isFlightResponse || !res.ok || !res.body) {\n // in case the original URL came with a hash, preserve it before redirecting to the new URL\n if (url.hash) {\n responseUrl.hash = url.hash\n }\n\n return doMpaNavigation(responseUrl.toString())\n }\n\n // We may navigate to a page that requires a different Webpack runtime.\n // In prod, every page will have the same Webpack runtime.\n // In dev, the Webpack runtime is minimal for each page.\n // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page.\n // TODO: This needs to happen in the Flight Client.\n // Or Webpack needs to include the runtime update in the Flight response as\n // a blocking script.\n if (process.env.NODE_ENV !== 'production' && !process.env.TURBOPACK) {\n await (\n require('../../dev/hot-reloader/app/hot-reloader-app') as typeof import('../../dev/hot-reloader/app/hot-reloader-app')\n ).waitForWebpackRuntimeHotUpdate()\n }\n\n let flightResponsePromise = res.flightResponsePromise\n if (flightResponsePromise === null) {\n // Typically, `createFetch` would have already started decoding the\n // Flight response. If it hasn't, though, we need to decode it now.\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once legacy PPR\n // is deleted.\n flightResponsePromise =\n createFromNextReadableStream(\n res.body,\n headers,\n { allowPartialStream: postponed }\n )\n }\n\n const [flightResponse, cacheData] = await Promise.all([\n flightResponsePromise,\n res.cacheData,\n ])\n\n if (\n (res.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? flightResponse.b) !==\n getNavigationBuildId()\n ) {\n // The server build does not match the client build.\n return doMpaNavigation(res.url)\n }\n\n const normalizedFlightData = normalizeFlightData(flightResponse.f)\n if (typeof normalizedFlightData === 'string') {\n return doMpaNavigation(normalizedFlightData)\n }\n\n const staticStageData =\n cacheData !== null\n ? await resolveStaticStageData(cacheData, flightResponse, headers)\n : null\n\n return {\n flightData: normalizedFlightData,\n canonicalUrl: canonicalUrl,\n // TODO: We should be able to read this from the rewrite header, not the\n // Flight response. Theoretically they should always agree, but there are\n // currently some cases where it's incorrect for interception routes. We\n // can always trust the value in the response body. However, per-segment\n // prefetch responses don't embed the value in the body; they rely on the\n // header alone. So we need to investigate why the header is sometimes\n // wrong for interception routes.\n renderedSearch: flightResponse.q as NormalizedSearch,\n couldBeIntercepted: interception,\n supportsPerSegmentPrefetching: flightResponse.S,\n postponed,\n // The dynamicStaleTime is only present in the response body when\n // a page exports unstable_dynamicStaleTime and this is a dynamic render.\n // When absent (UnknownDynamicStaleTime), the client falls back to the\n // global DYNAMIC_STALETIME_MS. The value is in seconds.\n dynamicStaleTime: flightResponse.d ?? UnknownDynamicStaleTime,\n staticStageData,\n runtimePrefetchStream: flightResponse.p ?? null,\n responseHeaders: res.headers,\n debugInfo: flightResponsePromise._debugInfo ?? null,\n }\n } catch (err) {\n if (!isPageUnloading) {\n console.error(\n `Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`,\n err\n )\n }\n\n // If fetch fails handle it like a mpa navigation\n // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response.\n // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction.\n return originalUrl.toString()\n }\n}\n\n// This is a subset of the standard Response type. We use a custom type for\n// this so we can limit which details about the response leak into the rest of\n// the codebase. For example, there's some custom logic for manually following\n// redirects, so \"redirected\" in this type could be a composite of multiple\n// browser fetch calls; however, this fact should not leak to the caller.\nexport type RSCResponse = {\n ok: boolean\n redirected: boolean\n headers: Headers\n body: ReadableStream | null\n status: number\n url: string\n flightResponsePromise: (Promise & { _debugInfo?: Array }) | null\n cacheData: Promise\n}\n\ntype FetchResponseCacheData = {\n isResponsePartial: boolean\n responseBodyClone?: ReadableStream\n}\n\n/**\n * Strips the leading isPartial byte from an RSC navigation response and\n * clones the body for segment cache extraction.\n *\n * When cache components is enabled, the server prepends a single byte:\n * '~' (0x7e) for partial, '#' (0x23) for complete. This must be stripped\n * before Flight decoding because it's not valid RSC data. The body is\n * cloned before Flight can consume it so the clone is available for later use.\n *\n * When cache components is disabled, returns the original response with\n * cacheData: null.\n */\nexport async function processFetch(response: Response): Promise<{\n response: Response\n cacheData: FetchResponseCacheData | null\n}> {\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n if (!response.body) {\n throw new InvariantError(\n 'Expected RSC navigation response to have a body'\n )\n }\n\n const { stream, isPartial } = await stripIsPartialByte(response.body)\n\n let responseStream: ReadableStream\n let cacheData: FetchResponseCacheData\n\n if (process.env.__NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS) {\n const [stream1, stream2] = stream.tee()\n responseStream = stream1\n cacheData = { isResponsePartial: isPartial, responseBodyClone: stream2 }\n } else {\n responseStream = stream\n cacheData = { isResponsePartial: isPartial }\n }\n\n const strippedResponse = new Response(responseStream, {\n headers: response.headers,\n status: response.status,\n statusText: response.statusText,\n })\n\n // The Response constructor doesn't preserve `url` or `redirected` from\n // the original. We need both: `url` for React DevTools and `redirected`\n // for the redirect replay logic below.\n Object.defineProperty(strippedResponse, 'url', { value: response.url })\n Object.defineProperty(strippedResponse, 'redirected', {\n value: response.redirected,\n })\n\n return { response: strippedResponse, cacheData }\n }\n\n return { response, cacheData: null }\n}\n\n/**\n * Resolves the static stage response from the raw `processFetch` outputs and\n * the decoded flight response, for writing into the segment cache.\n *\n * - Fully static: use the decoded flight response as-is, no truncation needed.\n * - Not fully static + `l` field: truncate the body clone at the static stage\n * byte boundary and decode.\n * - Otherwise: no cache-worthy data.\n */\nexport async function resolveStaticStageData<\n T extends NavigationFlightResponse | InitialRSCPayload,\n>(\n cacheData: FetchResponseCacheData,\n flightResponse: T,\n headers: RequestHeaders | undefined\n): Promise | null> {\n const { isResponsePartial, responseBodyClone } = cacheData\n\n if (responseBodyClone) {\n if (!isResponsePartial) {\n // Fully static — cache the entire decoded response as-is.\n responseBodyClone.cancel()\n\n return { response: flightResponse, isResponsePartial: false }\n }\n\n if (flightResponse.l !== undefined) {\n // Partially static — truncate the body clone at the byte boundary and\n // decode it.\n const response = await decodeStaticStage(\n responseBodyClone,\n flightResponse.l,\n headers\n )\n\n return { response, isResponsePartial: true }\n }\n\n // No caching — cancel the unused clone.\n responseBodyClone.cancel()\n }\n\n return null\n}\n\n/**\n * Truncates a Flight stream clone at the given byte boundary and decodes the\n * static stage prefix. Used by both the navigation path and the initial HTML\n * hydration path.\n */\nexport async function decodeStaticStage(\n responseBodyClone: ReadableStream,\n staticStageByteLengthPromise: Promise,\n headers: RequestHeaders | undefined\n): Promise {\n const staticStageByteLength = await staticStageByteLengthPromise\n\n const truncatedStream = truncateStream(\n responseBodyClone,\n staticStageByteLength\n )\n\n return createFromNextReadableStream(truncatedStream, headers, {\n allowPartialStream: true,\n })\n}\n\nexport async function createFetch(\n url: URL,\n headers: RequestHeaders,\n fetchPriority: 'auto' | 'high' | 'low' | null,\n shouldImmediatelyDecode: boolean,\n signal?: AbortSignal\n): Promise> {\n // TODO: In output: \"export\" mode, the headers do nothing. Omit them (and the\n // cache busting search param) from the request so they're\n // maximally cacheable.\n\n if (process.env.__NEXT_TEST_MODE && fetchPriority !== null) {\n headers['Next-Test-Fetch-Priority'] = fetchPriority\n }\n\n const deploymentId = getDeploymentId()\n if (deploymentId) {\n headers['x-deployment-id'] = deploymentId\n }\n\n if (process.env.__NEXT_DEV_SERVER) {\n if (self.__next_r) {\n headers[NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r\n }\n\n // Create a new request ID for the server action request. The server uses\n // this to tag debug information sent via WebSocket to the client, which\n // then routes those chunks to the debug channel associated with this ID.\n headers[NEXT_REQUEST_ID_HEADER] = crypto\n .getRandomValues(new Uint32Array(1))[0]\n .toString(16)\n }\n\n const fetchOptions: RequestInit = {\n // Backwards compat for older browsers. `same-origin` is the default in modern browsers.\n credentials: 'same-origin',\n headers,\n priority: fetchPriority || undefined,\n signal,\n }\n // `fetchUrl` is slightly different from `url` because we add a cache-busting\n // search param to it. This should not leak outside of this function, so we\n // track them separately.\n let fetchUrl = new URL(url)\n await setCacheBustingSearchParam(fetchUrl, headers)\n let processed = fetch(fetchUrl, fetchOptions).then(processFetch)\n let fetchPromise = processed.then(({ response }) => response)\n\n // Immediately pass the fetch promise to the Flight client so that the debug\n // info includes the latency from the client to the server. The internal timer\n // in React starts as soon as `createFromFetch` is called.\n //\n // The only case where we don't do this is during a prefetch, because a\n // top-level prefetch response never blocks a navigation; if it hasn't already\n // been written into the cache by the time the navigation happens, the router\n // will go straight to a dynamic request.\n let flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch(fetchPromise, headers)\n : null\n let browserResponse = await fetchPromise\n\n // If the server responds with a redirect (e.g. 307), and the redirected\n // location does not contain the cache busting search param set in the\n // original request, the response is likely invalid — when following the\n // redirect, the browser forwards the request headers, but since the cache\n // busting search param is missing, the server will reject the request due to\n // a mismatch.\n //\n // Ideally, we would be able to intercept the redirect response and perform it\n // manually, instead of letting the browser automatically follow it, but this\n // is not allowed by the fetch API.\n //\n // So instead, we must \"replay\" the redirect by fetching the new location\n // again, but this time we'll append the cache busting search param to prevent\n // a mismatch.\n //\n // TODO: We can optimize Next.js's built-in middleware APIs by returning a\n // custom status code, to prevent the browser from automatically following it.\n //\n // This does not affect Server Action-based redirects; those are encoded\n // differently, as part of the Flight body. It only affects redirects that\n // occur in a middleware or a third-party proxy.\n\n let redirected = browserResponse.redirected\n if (process.env.__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS) {\n // This is to prevent a redirect loop. Same limit used by Chrome.\n const MAX_REDIRECTS = 20\n for (let n = 0; n < MAX_REDIRECTS; n++) {\n if (!browserResponse.redirected) {\n // The server did not perform a redirect.\n break\n }\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n if (responseUrl.origin !== fetchUrl.origin) {\n // The server redirected to an external URL. The rest of the logic below\n // is not relevant, because it only applies to internal redirects.\n break\n }\n if (\n responseUrl.searchParams.get(NEXT_RSC_UNION_QUERY) ===\n fetchUrl.searchParams.get(NEXT_RSC_UNION_QUERY)\n ) {\n // The redirected URL already includes the cache busting search param.\n // This was probably intentional. Regardless, there's no reason to\n // issue another request to this URL because it already has the param\n // value that we would have added below.\n break\n }\n // The RSC request was redirected. Assume the response is invalid.\n //\n // Append the cache busting search param to the redirected URL and\n // fetch again.\n // TODO: We should abort the previous request.\n fetchUrl = new URL(responseUrl)\n await setCacheBustingSearchParam(fetchUrl, headers)\n processed = fetch(fetchUrl, fetchOptions).then(processFetch)\n fetchPromise = processed.then(({ response }) => response)\n flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch(fetchPromise, headers)\n : null\n browserResponse = await fetchPromise\n // We just performed a manual redirect, so this is now true.\n redirected = true\n }\n }\n\n // Remove the cache busting search param from the response URL, to prevent it\n // from leaking outside of this function.\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n responseUrl.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n const rscResponse: RSCResponse = {\n url: responseUrl.href,\n\n // This is true if any redirects occurred, either automatically by the\n // browser, or manually by us. So it's different from\n // `browserResponse.redirected`, which only tells us whether the browser\n // followed a redirect, and only for the last response in the chain.\n redirected,\n\n // These can be copied from the last browser response we received. We\n // intentionally only expose the subset of fields that are actually used\n // elsewhere in the codebase.\n ok: browserResponse.ok,\n headers: browserResponse.headers,\n body: browserResponse.body,\n status: browserResponse.status,\n\n // This is the exact promise returned by `createFromFetch`. It contains\n // debug information that we need to transfer to any derived promises that\n // are later rendered by React.\n flightResponsePromise: flightResponsePromise,\n\n cacheData: processed.then(({ cacheData }) => cacheData),\n }\n\n return rscResponse\n}\n\nexport function createFromNextReadableStream(\n flightStream: ReadableStream,\n requestHeaders: RequestHeaders | undefined,\n options?: { allowPartialStream?: boolean }\n): Promise {\n return createFromReadableStream(flightStream, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n unstable_allowPartialStream: options?.allowPartialStream,\n })\n}\n\nfunction createFromNextFetch(\n promiseForResponse: Promise,\n requestHeaders: RequestHeaders\n): Promise & { _debugInfo?: Array } {\n return createFromFetch(promiseForResponse, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n })\n}\n\nfunction truncateStream(\n stream: ReadableStream,\n byteLength: number\n): ReadableStream {\n const reader = stream.getReader()\n let remaining = byteLength\n\n return new ReadableStream({\n async pull(controller) {\n if (remaining <= 0) {\n reader.cancel()\n controller.close()\n return\n }\n\n const { done, value } = await reader.read()\n\n if (done) {\n controller.close()\n return\n }\n\n if (value.byteLength <= remaining) {\n controller.enqueue(value)\n remaining -= value.byteLength\n } else {\n controller.enqueue(value.subarray(0, remaining))\n remaining = 0\n reader.cancel()\n controller.close()\n }\n },\n cancel() {\n reader.cancel()\n },\n })\n}\n","export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n","import type {\n TreePrefetch,\n RootTreePrefetch,\n SegmentPrefetch,\n InlinedPrefetchResponse,\n InlinedSegmentPrefetch,\n} from '../../../server/app-render/collect-segment-data'\nimport type {\n CacheNodeSeedData,\n FlightData,\n Segment as FlightRouterStateSegment,\n} from '../../../shared/lib/app-router-types'\nimport {\n readVaryParams,\n type VaryParams,\n type VaryParamsThenable,\n} from '../../../shared/lib/segment-cache/vary-params-decoding'\nimport {\n NEXT_DID_POSTPONE_HEADER,\n NEXT_INSTANT_PREFETCH_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STALE_TIME_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n RSC_CONTENT_TYPE_HEADER,\n RSC_HEADER,\n} from '../app-router-headers'\nimport {\n createFetch,\n createFromNextReadableStream,\n type RSCResponse,\n type RequestHeaders,\n} from '../router-reducer/fetch-server-response'\nimport {\n pingPrefetchTask,\n isPrefetchTaskDirty,\n type PrefetchTask,\n type PrefetchSubtaskResult,\n} from './scheduler'\nimport {\n type RouteVaryPath,\n type SegmentVaryPath,\n type PartialSegmentVaryPath,\n getRouteVaryPath,\n getFulfilledRouteVaryPath,\n getFulfilledSegmentVaryPath,\n getSegmentVaryPathForRequest,\n appendLayoutVaryPath,\n finalizeLayoutVaryPath,\n finalizePageVaryPath,\n clonePageVaryPathWithNewSearchParams,\n type PageVaryPath,\n type LayoutVaryPath,\n finalizeMetadataVaryPath,\n getPartialPageVaryPath,\n getPartialLayoutVaryPath,\n getRenderedSearchFromVaryPath,\n} from './vary-path'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n NormalizedNextUrl,\n RouteCacheKey,\n} from './cache-key'\nimport { createCacheKey as createPrefetchRequestKey } from './cache-key'\nimport {\n doesStaticSegmentAppearInURL,\n getCacheKeyForDynamicParam,\n getRenderedPathname,\n getRenderedSearch,\n parseDynamicParamFromURLPart,\n} from '../../route-params'\nimport {\n createCacheMap,\n getFromCacheMap,\n setInCacheMap,\n setSizeInCacheMap,\n deleteFromCacheMap,\n isValueExpired,\n type CacheMap,\n type UnknownMapEntry,\n} from './cache-map'\nimport {\n appendSegmentRequestKeyPart,\n convertSegmentPathToStaticExportFilename,\n createSegmentRequestKeyPart,\n HEAD_REQUEST_KEY,\n ROOT_SEGMENT_REQUEST_KEY,\n type SegmentRequestKey,\n} from '../../../shared/lib/segment-cache/segment-value-encoding'\nimport type {\n FlightRouterState,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\nimport {\n type NormalizedFlightData,\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n} from '../../flight-data-helpers'\nimport { STATIC_STALETIME_MS } from '../router-reducer/reducers/navigate-reducer'\nimport { pingVisibleLinks } from '../links'\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment'\nimport { FetchStrategy } from './types'\nimport { createPromiseWithResolvers } from '../../../shared/lib/promise-with-resolvers'\nimport { readFromBFCache, UnknownDynamicStaleTime } from './bfcache'\nimport { discoverKnownRoute, matchKnownRoute } from './optimistic-routes'\nimport { convertServerPatchToFullTree, type NavigationSeed } from './navigation'\nimport { getNavigationBuildId } from '../../navigation-build-id'\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants'\n\n/**\n * Ensures a minimum stale time of 30s to avoid issues where the server sends a too\n * short-lived stale time, which would prevent anything from being prefetched.\n */\nexport function getStaleTimeMs(staleTimeSeconds: number): number {\n return Math.max(staleTimeSeconds, 30) * 1000\n}\n\n// A note on async/await when working in the prefetch cache:\n//\n// Most async operations in the prefetch cache should *not* use async/await,\n// Instead, spawn a subtask that writes the results to a cache entry, and attach\n// a \"ping\" listener to notify the prefetch queue to try again.\n//\n// The reason is we need to be able to access the segment cache and traverse its\n// data structures synchronously. For example, if there's a synchronous update\n// we can take an immediate snapshot of the cache to produce something we can\n// render. Limiting the use of async/await also makes it easier to avoid race\n// conditions, which is especially important because is cache is mutable.\n//\n// Another reason is that while we're performing async work, it's possible for\n// existing entries to become stale, or for Link prefetches to be removed from\n// the queue. For optimal scheduling, we need to be able to \"cancel\" subtasks\n// that are no longer needed. So, when a segment is received from the server, we\n// restart from the root of the tree that's being prefetched, to confirm all the\n// parent segments are still cached. If the segment is no longer reachable from\n// the root, then it's effectively canceled. This is similar to the design of\n// Rust Futures, or React Suspense.\n\ntype RouteTreeShared = {\n requestKey: SegmentRequestKey\n // TODO: Remove the `segment` field, now that it can be reconstructed\n // from `param`.\n segment: FlightRouterStateSegment\n refreshState: RefreshState | null\n slots: null | {\n [parallelRouteKey: string]: RouteTree\n }\n // Bitmask of PrefetchHint flags. Encodes route structure metadata:\n // root layout, loading boundaries, instant configs, and runtime prefetch\n // hints.\n prefetchHints: number\n}\n\nexport type RefreshState = {\n canonicalUrl: string\n renderedSearch: NormalizedSearch\n}\n\ntype LayoutRouteTree = RouteTreeShared & {\n isPage: false\n varyPath: LayoutVaryPath\n}\n\ntype PageRouteTree = RouteTreeShared & {\n isPage: true\n varyPath: PageVaryPath\n}\n\nexport type RouteTree = LayoutRouteTree | PageRouteTree\n\ntype RouteCacheEntryShared = {\n // This is false only if we're certain the route cannot be intercepted. It's\n // true in all other cases, including on initialization when we haven't yet\n // received a response from the server.\n couldBeIntercepted: boolean\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Tracks the status of a cache entry as it progresses from no data (Empty),\n * waiting for server data (Pending), and finished (either Fulfilled or\n * Rejected depending on the response from the server.\n */\nexport const enum EntryStatus {\n Empty = 0,\n Pending = 1,\n Fulfilled = 2,\n Rejected = 3,\n}\n\nexport type PendingRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Empty | EntryStatus.Pending\n blockedTasks: Set | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n supportsPerSegmentPrefetching: false\n}\n\ntype RejectedRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Rejected\n blockedTasks: Set | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n supportsPerSegmentPrefetching: boolean\n}\n\nexport type FulfilledRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Fulfilled\n blockedTasks: null\n canonicalUrl: string\n renderedSearch: NormalizedSearch\n tree: RouteTree\n metadata: RouteTree\n supportsPerSegmentPrefetching: boolean\n // When true, this entry should not be used as a template for route\n // prediction. Set when we discover that the URL was rewritten by middleware\n // to a different route structure (e.g., /foo was rewritten to /bar). Since\n // rewrite behavior can vary by param value, we can't safely predict the\n // route structure for other URLs matching this pattern.\n hasDynamicRewrite: boolean\n}\n\nexport type RouteCacheEntry =\n | PendingRouteCacheEntry\n | FulfilledRouteCacheEntry\n | RejectedRouteCacheEntry\n\ntype SegmentCacheEntryShared = {\n fetchStrategy: FetchStrategy\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\nexport type EmptySegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Empty\n rsc: null\n isPartial: true\n promise: null\n}\n\nexport type PendingSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Pending\n rsc: null\n isPartial: boolean\n promise: null | PromiseWithResolvers\n}\n\ntype RejectedSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Rejected\n rsc: null\n isPartial: true\n promise: null\n}\n\nexport type FulfilledSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Fulfilled\n rsc: React.ReactNode | null\n isPartial: boolean\n promise: null\n}\n\nexport type SegmentCacheEntry =\n | EmptySegmentCacheEntry\n | PendingSegmentCacheEntry\n | RejectedSegmentCacheEntry\n | FulfilledSegmentCacheEntry\n\nexport type NonEmptySegmentCacheEntry = Exclude<\n SegmentCacheEntry,\n EmptySegmentCacheEntry\n>\n\nconst isOutputExportMode =\n process.env.NODE_ENV === 'production' &&\n process.env.__NEXT_CONFIG_OUTPUT === 'export'\n\nconst MetadataOnlyRequestTree: FlightRouterState = [\n '',\n {},\n null,\n 'metadata-only',\n]\n\nlet routeCacheMap: CacheMap = createCacheMap()\nlet segmentCacheMap: CacheMap = createCacheMap()\n\n// All invalidation listeners for the whole cache are tracked in single set.\n// Since we don't yet support tag or path-based invalidation, there's no point\n// tracking them any more granularly than this. Once we add granular\n// invalidation, that may change, though generally the model is to just notify\n// the listeners and allow the caller to poll the prefetch cache with a new\n// prefetch task if desired.\nlet invalidationListeners: Set | null = null\n\n// Incrementing counters used to track cache invalidations. Route and segment\n// caches have separate versions so they can be invalidated independently.\n// Invalidation does not eagerly evict anything from the cache; entries are\n// lazily evicted when read.\nlet currentRouteCacheVersion = 0\nlet currentSegmentCacheVersion = 0\n\nexport function getCurrentRouteCacheVersion(): number {\n return currentRouteCacheVersion\n}\n\nexport function getCurrentSegmentCacheVersion(): number {\n return currentSegmentCacheVersion\n}\n\n/**\n * Invalidates all prefetch cache entries (both route and segment caches).\n *\n * After invalidation, triggers re-prefetching of visible links and notifies\n * invalidation listeners.\n */\nexport function invalidateEntirePrefetchCache(\n nextUrl: string | null,\n tree: FlightRouterState\n): void {\n currentRouteCacheVersion++\n currentSegmentCacheVersion++\n\n pingVisibleLinks(nextUrl, tree)\n pingInvalidationListeners(nextUrl, tree)\n}\n\n/**\n * Invalidates all route cache entries. Route entries contain the tree structure\n * (which segments exist at a given URL) but not the segment data itself.\n *\n * After invalidation, triggers re-prefetching of visible links and notifies\n * invalidation listeners.\n */\nexport function invalidateRouteCacheEntries(\n nextUrl: string | null,\n tree: FlightRouterState\n): void {\n currentRouteCacheVersion++\n\n pingVisibleLinks(nextUrl, tree)\n pingInvalidationListeners(nextUrl, tree)\n}\n\n/**\n * Invalidates all segment cache entries. Segment entries contain the actual\n * RSC data for each segment.\n *\n * After invalidation, triggers re-prefetching of visible links and notifies\n * invalidation listeners.\n */\nexport function invalidateSegmentCacheEntries(\n nextUrl: string | null,\n tree: FlightRouterState\n): void {\n currentSegmentCacheVersion++\n\n pingVisibleLinks(nextUrl, tree)\n pingInvalidationListeners(nextUrl, tree)\n}\n\nfunction attachInvalidationListener(task: PrefetchTask): void {\n // This function is called whenever a prefetch task reads a cache entry. If\n // the task has an onInvalidate function associated with it — i.e. the one\n // optionally passed to router.prefetch(onInvalidate) — then we attach that\n // listener to the every cache entry that the task reads. Then, if an entry\n // is invalidated, we call the function.\n if (task.onInvalidate !== null) {\n if (invalidationListeners === null) {\n invalidationListeners = new Set([task])\n } else {\n invalidationListeners.add(task)\n }\n }\n}\n\nfunction notifyInvalidationListener(task: PrefetchTask): void {\n const onInvalidate = task.onInvalidate\n if (onInvalidate !== null) {\n // Clear the callback from the task object to guarantee it's not called more\n // than once.\n task.onInvalidate = null\n\n // This is a user-space function, so we must wrap in try/catch.\n try {\n onInvalidate()\n } catch (error) {\n if (typeof reportError === 'function') {\n reportError(error)\n } else {\n console.error(error)\n }\n }\n }\n}\n\nexport function pingInvalidationListeners(\n nextUrl: string | null,\n tree: FlightRouterState\n): void {\n // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks.\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n if (invalidationListeners !== null) {\n const tasks = invalidationListeners\n invalidationListeners = null\n for (const task of tasks) {\n if (isPrefetchTaskDirty(task, nextUrl, tree)) {\n notifyInvalidationListener(task)\n }\n }\n }\n}\n\nexport function readRouteCacheEntry(\n now: number,\n key: RouteCacheKey\n): RouteCacheEntry | null {\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n const existingEntry = getFromCacheMap(\n now,\n getCurrentRouteCacheVersion(),\n routeCacheMap,\n varyPath,\n isRevalidation\n )\n if (existingEntry !== null) {\n return existingEntry\n }\n\n // No cache hit. Attempt to construct from template using the new\n // optimistic routing mechanism (pattern-based matching).\n if (process.env.__NEXT_OPTIMISTIC_ROUTING) {\n return matchKnownRoute(key.pathname, key.search)\n }\n\n return null\n}\n\nexport function readSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = false\n return getFromCacheMap(\n now,\n getCurrentSegmentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nfunction readRevalidatingSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = true\n return getFromCacheMap(\n now,\n getCurrentSegmentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function waitForSegmentCacheEntry(\n pendingEntry: PendingSegmentCacheEntry\n): Promise {\n // Because the entry is pending, there's already a in-progress request.\n // Attach a promise to the entry that will resolve when the server responds.\n let promiseWithResolvers = pendingEntry.promise\n if (promiseWithResolvers === null) {\n promiseWithResolvers = pendingEntry.promise =\n createPromiseWithResolvers()\n } else {\n // There's already a promise we can use\n }\n return promiseWithResolvers.promise\n}\n\nfunction createDetachedRouteCacheEntry(): PendingRouteCacheEntry {\n return {\n canonicalUrl: null,\n status: EntryStatus.Empty,\n blockedTasks: null,\n tree: null,\n metadata: null,\n // This is initialized to true because we don't know yet whether the route\n // could be intercepted. It's only set to false once we receive a response\n // from the server.\n couldBeIntercepted: true,\n // Similarly, we don't yet know if the route supports PPR.\n supportsPerSegmentPrefetching: false,\n renderedSearch: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n // Since this is an empty entry, there's no reason to ever evict it. It will\n // be updated when the data is populated.\n staleAt: Infinity,\n version: getCurrentRouteCacheVersion(),\n }\n}\n\n/**\n * Checks if an entry for a route exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateRouteCacheEntry(\n now: number,\n task: PrefetchTask,\n key: RouteCacheKey\n): RouteCacheEntry {\n attachInvalidationListener(task)\n\n const existingEntry = readRouteCacheEntry(now, key)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const pendingEntry = createDetachedRouteCacheEntry()\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, varyPath, pendingEntry, isRevalidation)\n return pendingEntry\n}\n\n// TODO: This function predates the new optimisticRouting feature and will be\n// removed once optimisticRouting is stable. The new mechanism (matchKnownRoute)\n// handles search param variations more robustly as part of the general route\n// prediction system. This fallback remains for when optimisticRouting is\n// disabled (staticChildren is null).\nexport function deprecated_requestOptimisticRouteCacheEntry(\n now: number,\n requestedUrl: URL,\n nextUrl: string | null\n): FulfilledRouteCacheEntry | null {\n // This function is called during a navigation when there was no matching\n // route tree in the prefetch cache. Before de-opting to a blocking,\n // unprefetched navigation, we will first attempt to construct an \"optimistic\"\n // route tree by checking the cache for similar routes.\n //\n // Check if there's a route with the same pathname, but with different\n // search params. We can then base our optimistic route tree on this entry.\n //\n // Conceptually, we are simulating what would happen if we did perform a\n // prefetch the requested URL, under the assumption that the server will\n // not redirect or rewrite the request in a different manner than the\n // base route tree. This assumption might not hold, in which case we'll have\n // to recover when we perform the dynamic navigation request. However, this\n // is what would happen if a route were dynamically rewritten/redirected\n // in between the prefetch and the navigation. So the logic needs to exist\n // to handle this case regardless.\n\n // Look for a route with the same pathname, but with an empty search string.\n // TODO: There's nothing inherently special about the empty search string;\n // it's chosen somewhat arbitrarily, with the rationale that it's the most\n // likely one to exist. But we should update this to match _any_ search\n // string. The plan is to generalize this logic alongside other improvements\n // related to \"fallback\" cache entries.\n const requestedSearch = requestedUrl.search as NormalizedSearch\n if (requestedSearch === '') {\n // The caller would have already checked if a route with an empty search\n // string is in the cache. So we can bail out here.\n return null\n }\n const urlWithoutSearchParams = new URL(requestedUrl)\n urlWithoutSearchParams.search = ''\n const routeWithNoSearchParams = readRouteCacheEntry(\n now,\n createPrefetchRequestKey(urlWithoutSearchParams.href, nextUrl)\n )\n\n if (\n routeWithNoSearchParams === null ||\n routeWithNoSearchParams.status !== EntryStatus.Fulfilled\n ) {\n // Bail out of constructing an optimistic route tree. This will result in\n // a blocking, unprefetched navigation.\n return null\n }\n\n // Now we have a base route tree we can \"patch\" with our optimistic values.\n\n // Optimistically assume that redirects for the requested pathname do\n // not vary on the search string. Therefore, if the base route was\n // redirected to a different search string, then the optimistic route\n // should be redirected to the same search string. Otherwise, we use\n // the requested search string.\n const canonicalUrlForRouteWithNoSearchParams = new URL(\n routeWithNoSearchParams.canonicalUrl,\n requestedUrl.origin\n )\n const optimisticCanonicalSearch =\n canonicalUrlForRouteWithNoSearchParams.search !== ''\n ? // Base route was redirected. Reuse the same redirected search string.\n canonicalUrlForRouteWithNoSearchParams.search\n : requestedSearch\n\n // Similarly, optimistically assume that rewrites for the requested\n // pathname do not vary on the search string. Therefore, if the base\n // route was rewritten to a different search string, then the optimistic\n // route should be rewritten to the same search string. Otherwise, we use\n // the requested search string.\n const optimisticRenderedSearch =\n routeWithNoSearchParams.renderedSearch !== ''\n ? // Base route was rewritten. Reuse the same rewritten search string.\n routeWithNoSearchParams.renderedSearch\n : requestedSearch\n\n const optimisticUrl = new URL(\n routeWithNoSearchParams.canonicalUrl,\n location.origin\n )\n optimisticUrl.search = optimisticCanonicalSearch\n const optimisticCanonicalUrl = createHrefFromUrl(optimisticUrl)\n\n const optimisticRouteTree = deprecated_createOptimisticRouteTree(\n routeWithNoSearchParams.tree,\n optimisticRenderedSearch\n )\n const optimisticMetadataTree = deprecated_createOptimisticRouteTree(\n routeWithNoSearchParams.metadata,\n optimisticRenderedSearch\n )\n\n // Clone the base route tree, and override the relevant fields with our\n // optimistic values.\n const optimisticEntry: FulfilledRouteCacheEntry = {\n canonicalUrl: optimisticCanonicalUrl,\n\n status: EntryStatus.Fulfilled,\n // This isn't cloned because it's instance-specific\n blockedTasks: null,\n tree: optimisticRouteTree,\n metadata: optimisticMetadataTree,\n couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted,\n supportsPerSegmentPrefetching:\n routeWithNoSearchParams.supportsPerSegmentPrefetching,\n hasDynamicRewrite: routeWithNoSearchParams.hasDynamicRewrite,\n\n // Override the rendered search with the optimistic value.\n renderedSearch: optimisticRenderedSearch,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt: routeWithNoSearchParams.staleAt,\n version: routeWithNoSearchParams.version,\n }\n\n // Do not insert this entry into the cache. It only exists so we can\n // perform the current navigation. Just return it to the caller.\n return optimisticEntry\n}\n\nfunction deprecated_createOptimisticRouteTree(\n tree: RouteTree,\n newRenderedSearch: NormalizedSearch\n): RouteTree {\n // Create a new route tree that identical to the original one except for\n // the rendered search string, which is contained in the vary path.\n\n let clonedSlots: Record | null = null\n const originalSlots = tree.slots\n if (originalSlots !== null) {\n clonedSlots = {}\n for (const parallelRouteKey in originalSlots) {\n const childTree = originalSlots[parallelRouteKey]\n clonedSlots[parallelRouteKey] = deprecated_createOptimisticRouteTree(\n childTree,\n newRenderedSearch\n )\n }\n }\n\n // We only need to clone the vary path if the route is a page.\n if (tree.isPage) {\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n refreshState: tree.refreshState,\n varyPath: clonePageVaryPathWithNewSearchParams(\n tree.varyPath,\n newRenderedSearch\n ),\n isPage: true,\n slots: clonedSlots,\n\n prefetchHints: tree.prefetchHints,\n }\n }\n\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n refreshState: tree.refreshState,\n varyPath: tree.varyPath,\n isPage: false,\n slots: clonedSlots,\n prefetchHints: tree.prefetchHints,\n }\n}\n\n/**\n * Checks if an entry for a segment exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateSegmentCacheEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n tree: RouteTree\n): SegmentCacheEntry {\n const existingEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache. The stale time is set to a\n // default value; the actual stale time will be set when the entry is\n // fulfilled with data from the server response.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(now)\n const isRevalidation = false\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function readOrCreateRevalidatingSegmentEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n tree: RouteTree\n): SegmentCacheEntry {\n // This function is called when we've already confirmed that a particular\n // segment is cached, but we want to perform another request anyway in case it\n // returns more complete and/or fresher data than we already have. The logic\n // for deciding whether to replace the existing entry is handled elsewhere;\n // this function just handles retrieving a cache entry that we can use to\n // track the revalidation.\n //\n // The reason revalidations are stored in the cache is because we need to be\n // able to dedupe multiple revalidation requests. The reason they have to be\n // handled specially is because we shouldn't overwrite a \"normal\" entry if\n // one exists at the same keypath. So, for each internal cache location, there\n // is a special \"revalidation\" slot that is used solely for this purpose.\n //\n // You can think of it as if all the revalidation entries were stored in a\n // separate cache map from the canonical entries, and then transfered to the\n // canonical cache map once the request is complete — this isn't how it's\n // actually implemented, since it's more efficient to store them in the same\n // data structure as the normal entries, but that's how it's modeled\n // conceptually.\n\n // TODO: Once we implement Fallback behavior for params, where an entry is\n // re-keyed based on response information, we'll need to account for the\n // possibility that the keypath of the previous entry is more generic than\n // the keypath of the revalidating entry. In other words, the server could\n // return a less generic entry upon revalidation. For now, though, this isn't\n // a concern because the keypath is based solely on the prefetch strategy,\n // not on data contained in the response.\n const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache. The stale time is set to a\n // default value; the actual stale time will be set when the entry is\n // fulfilled with data from the server response.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(now)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function overwriteRevalidatingSegmentCacheEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n tree: RouteTree\n) {\n // This function is called when we've already decided to replace an existing\n // revalidation entry. Create a new entry and write it into the cache,\n // overwriting the previous value. The stale time is set to a default value;\n // the actual stale time will be set when the entry is fulfilled with data\n // from the server response.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(now)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function upsertSegmentEntry(\n now: number,\n varyPath: SegmentVaryPath,\n candidateEntry: SegmentCacheEntry\n): SegmentCacheEntry | null {\n // We have a new entry that has not yet been inserted into the cache. Before\n // we do so, we need to confirm whether it takes precedence over the existing\n // entry (if one exists).\n // TODO: We should not upsert an entry if its key was invalidated in the time\n // since the request was made. We can do that by passing the \"owner\" entry to\n // this function and confirming it's the same as `existingEntry`.\n\n if (isValueExpired(now, getCurrentSegmentCacheVersion(), candidateEntry)) {\n // The entry is expired. We cannot upsert it.\n return null\n }\n\n const existingEntry = readSegmentCacheEntry(now, varyPath)\n if (existingEntry !== null) {\n // Don't replace a more specific segment with a less-specific one. A case where this\n // might happen is if the existing segment was fetched via\n // ``.\n if (\n // We fetched the new segment using a different, less specific fetch strategy\n // than the segment we already have in the cache, so it can't have more content.\n (candidateEntry.fetchStrategy !== existingEntry.fetchStrategy &&\n !canNewFetchStrategyProvideMoreContent(\n existingEntry.fetchStrategy,\n candidateEntry.fetchStrategy\n )) ||\n // The existing entry isn't partial, but the new one is.\n // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?)\n (!existingEntry.isPartial && candidateEntry.isPartial)\n ) {\n // We're going to leave revalidating entry in the cache so that it doesn't\n // get revalidated again unnecessarily. Downgrade the Fulfilled entry to\n // Rejected and null out the data so it can be garbage collected. We leave\n // `staleAt` intact to prevent subsequent revalidation attempts only until\n // the entry expires.\n const rejectedEntry: RejectedSegmentCacheEntry = candidateEntry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.rsc = null\n return null\n }\n\n // Evict the existing entry from the cache.\n deleteFromCacheMap(existingEntry)\n }\n\n const isRevalidation = false\n setInCacheMap(segmentCacheMap, varyPath, candidateEntry, isRevalidation)\n return candidateEntry\n}\n\nexport function createDetachedSegmentCacheEntry(\n now: number\n): EmptySegmentCacheEntry {\n // Default stale time for pending segment cache entries. The actual stale time\n // is set when the entry is fulfilled with data from the server response.\n const staleAt = now + 30 * 1000\n const emptyEntry: EmptySegmentCacheEntry = {\n status: EntryStatus.Empty,\n // Default to assuming the fetch strategy will be PPR. This will be updated\n // when a fetch is actually initiated.\n fetchStrategy: FetchStrategy.PPR,\n rsc: null,\n isPartial: true,\n promise: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt,\n version: 0,\n }\n return emptyEntry\n}\n\nexport function upgradeToPendingSegment(\n emptyEntry: EmptySegmentCacheEntry,\n fetchStrategy: FetchStrategy\n): PendingSegmentCacheEntry {\n const pendingEntry: PendingSegmentCacheEntry = emptyEntry as any\n pendingEntry.status = EntryStatus.Pending\n pendingEntry.fetchStrategy = fetchStrategy\n\n if (fetchStrategy === FetchStrategy.Full) {\n // We can assume the response will contain the full segment data. Set this\n // to false so we know it's OK to omit this segment from any navigation\n // requests that may happen while the data is still pending.\n pendingEntry.isPartial = false\n }\n\n // Set the version here, since this is right before the request is initiated.\n // The next time the segment cache version is incremented, the entry will\n // effectively be evicted. This happens before initiating the request, rather\n // than when receiving the response, because it's guaranteed to happen\n // before the data is read on the server.\n pendingEntry.version = getCurrentSegmentCacheVersion()\n return pendingEntry\n}\n\nexport function attemptToFulfillDynamicSegmentFromBFCache(\n now: number,\n segment: EmptySegmentCacheEntry,\n tree: RouteTree\n): FulfilledSegmentCacheEntry | null {\n // Attempts to fulfill an empty segment cache entry using data from the\n // bfcache. This is only valid during a Full prefetch (i.e. one that includes\n // dynamic data), because the bfcache stores data from navigations which\n // always include dynamic data.\n\n // We always use the canonical vary path when checking the bfcache. This is\n // the same operation we'd use to access the cache during a\n // regular navigation.\n const varyPath = tree.varyPath\n\n // Read from the BFCache without expiring it (pass -1). We check freshness\n // ourselves using navigatedAt, because the BFCache's staleAt may have been\n // overridden by a per-page unstable_dynamicStaleTime and can't be used to\n // derive the original request time.\n const bfcacheEntry = readFromBFCache(varyPath)\n if (bfcacheEntry !== null) {\n // The stale time for dynamic prefetches (default: 5 mins) is different\n // from the stale time for regular navigations (default: 0 secs). Use\n // navigatedAt to compute the correct expiry for prefetch purposes.\n const dynamicPrefetchStaleAt =\n bfcacheEntry.navigatedAt + STATIC_STALETIME_MS\n if (now > dynamicPrefetchStaleAt) {\n return null\n }\n\n const pendingSegment = upgradeToPendingSegment(segment, FetchStrategy.Full)\n const isPartial = false\n return fulfillSegmentCacheEntry(\n pendingSegment,\n bfcacheEntry.rsc,\n dynamicPrefetchStaleAt,\n isPartial\n )\n }\n return null\n}\n\n/**\n * Attempts to replace an existing segment cache entry with data from the\n * bfcache. Unlike `attemptToFulfillDynamicSegmentFromBFCache` (which fills an\n * empty entry), this creates a new entry and upserts it, so it works even when\n * the segment is already fulfilled.\n */\nexport function attemptToUpgradeSegmentFromBFCache(\n now: number,\n tree: RouteTree\n): FulfilledSegmentCacheEntry | null {\n const varyPath = tree.varyPath\n const bfcacheEntry = readFromBFCache(varyPath)\n if (bfcacheEntry !== null) {\n const dynamicPrefetchStaleAt =\n bfcacheEntry.navigatedAt + STATIC_STALETIME_MS\n if (now > dynamicPrefetchStaleAt) {\n return null\n }\n const pendingSegment = upgradeToPendingSegment(\n createDetachedSegmentCacheEntry(now),\n FetchStrategy.Full\n )\n const isPartial = false\n const newEntry = fulfillSegmentCacheEntry(\n pendingSegment,\n bfcacheEntry.rsc,\n dynamicPrefetchStaleAt,\n isPartial\n )\n const segmentVaryPath = getSegmentVaryPathForRequest(\n FetchStrategy.Full,\n tree\n )\n const upserted = upsertSegmentEntry(now, segmentVaryPath, newEntry)\n if (upserted !== null && upserted.status === EntryStatus.Fulfilled) {\n return upserted\n }\n }\n return null\n}\n\nfunction pingBlockedTasks(entry: {\n blockedTasks: Set | null\n}): void {\n const blockedTasks = entry.blockedTasks\n if (blockedTasks !== null) {\n for (const task of blockedTasks) {\n pingPrefetchTask(task)\n }\n entry.blockedTasks = null\n }\n}\n\nexport function createMetadataRouteTree(\n metadataVaryPath: PageVaryPath\n): RouteTree {\n // The Head is not actually part of the route tree, but other than that, it's\n // fetched and cached like a segment. Some functions expect a RouteTree\n // object, so rather than fork the logic in all those places, we use this\n // \"fake\" one.\n const metadata: RouteTree = {\n requestKey: HEAD_REQUEST_KEY,\n segment: HEAD_REQUEST_KEY,\n refreshState: null,\n varyPath: metadataVaryPath,\n // The metadata isn't really a \"page\" (though it isn't really a \"segment\"\n // either) but for the purposes of how this field is used, it behaves like\n // one. If this logic ever gets more complex we can change this to an enum.\n isPage: true,\n slots: null,\n prefetchHints: 0,\n }\n return metadata\n}\n\nexport function fulfillRouteCacheEntry(\n now: number,\n entry: PendingRouteCacheEntry,\n tree: RouteTree,\n metadataVaryPath: PageVaryPath,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n supportsPerSegmentPrefetching: boolean\n): FulfilledRouteCacheEntry {\n // Get the rendered search from the vary path\n const renderedSearch =\n getRenderedSearchFromVaryPath(metadataVaryPath) ?? ('' as NormalizedSearch)\n const fulfilledEntry: FulfilledRouteCacheEntry = entry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.tree = tree\n fulfilledEntry.metadata = createMetadataRouteTree(metadataVaryPath)\n // Route structure is essentially static — it only changes on deploy.\n // Always use the static stale time.\n // NOTE: An exception is rewrites/redirects in middleware or proxy, which can\n // change routes dynamically. We have other strategies for handling those.\n fulfilledEntry.staleAt = now + STATIC_STALETIME_MS\n fulfilledEntry.couldBeIntercepted = couldBeIntercepted\n fulfilledEntry.canonicalUrl = canonicalUrl\n fulfilledEntry.renderedSearch = renderedSearch\n fulfilledEntry.supportsPerSegmentPrefetching = supportsPerSegmentPrefetching\n fulfilledEntry.hasDynamicRewrite = false\n pingBlockedTasks(entry)\n return fulfilledEntry\n}\n\nexport function writeRouteIntoCache(\n now: number,\n pathname: NormalizedPathname,\n nextUrl: string | null,\n tree: RouteTree,\n metadataVaryPath: PageVaryPath,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n supportsPerSegmentPrefetching: boolean\n): FulfilledRouteCacheEntry {\n const pendingEntry = createDetachedRouteCacheEntry()\n const fulfilledEntry = fulfillRouteCacheEntry(\n now,\n pendingEntry,\n tree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n supportsPerSegmentPrefetching\n )\n const renderedSearch = fulfilledEntry.renderedSearch\n const varyPath = getFulfilledRouteVaryPath(\n pathname,\n renderedSearch,\n nextUrl as NormalizedNextUrl | null,\n couldBeIntercepted\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, varyPath, fulfilledEntry, isRevalidation)\n return fulfilledEntry\n}\n\n/**\n * Marks a route cache entry as having a dynamic rewrite. Called when we\n * discover that a route pattern has dynamic rewrite behavior - i.e., we used\n * an optimistic route tree for prediction, but the server responded with a\n * different rendered pathname.\n *\n * Once marked, attempts to use this entry as a template for prediction will\n * bail out to server resolution.\n */\nexport function markRouteEntryAsDynamicRewrite(\n entry: FulfilledRouteCacheEntry\n): void {\n entry.hasDynamicRewrite = true\n // Note: The caller is responsible for also calling invalidateRouteCacheEntries\n // to invalidate other entries that may have been derived from this template\n // before we knew it had a dynamic rewrite.\n}\n\nfunction fulfillSegmentCacheEntry(\n segmentCacheEntry: PendingSegmentCacheEntry,\n rsc: React.ReactNode,\n staleAt: number,\n isPartial: boolean\n): FulfilledSegmentCacheEntry {\n const fulfilledEntry: FulfilledSegmentCacheEntry = segmentCacheEntry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.rsc = rsc\n fulfilledEntry.staleAt = staleAt\n fulfilledEntry.isPartial = isPartial\n // Resolve any listeners that were waiting for this data.\n if (segmentCacheEntry.promise !== null) {\n segmentCacheEntry.promise.resolve(fulfilledEntry)\n // Free the promise for garbage collection.\n fulfilledEntry.promise = null\n }\n return fulfilledEntry\n}\n\nfunction rejectRouteCacheEntry(\n entry: PendingRouteCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedRouteCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n pingBlockedTasks(entry)\n}\n\nfunction rejectSegmentCacheEntry(\n entry: PendingSegmentCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedSegmentCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n if (entry.promise !== null) {\n // NOTE: We don't currently propagate the reason the prefetch was canceled\n // but we could by accepting a `reason` argument.\n entry.promise.resolve(null)\n entry.promise = null\n }\n}\n\ntype RouteTreeAccumulator = {\n metadataVaryPath: PageVaryPath | null\n}\n\nfunction convertRootTreePrefetchToRouteTree(\n rootTree: RootTreePrefetch,\n renderedPathname: string,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n) {\n // Remove trailing and leading slashes\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n const rootSegment = ROOT_SEGMENT_REQUEST_KEY\n return convertTreePrefetchToRouteTree(\n rootTree.tree,\n rootSegment,\n null,\n ROOT_SEGMENT_REQUEST_KEY,\n pathnameParts,\n index,\n renderedSearch,\n acc\n )\n}\n\nfunction convertTreePrefetchToRouteTree(\n prefetch: TreePrefetch,\n segment: FlightRouterStateSegment,\n partialVaryPath: PartialSegmentVaryPath | null,\n requestKey: SegmentRequestKey,\n pathnameParts: Array,\n pathnamePartsIndex: number,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n // Converts the route tree sent by the server into the format used by the\n // cache. The cached version of the tree includes additional fields, such as a\n // cache key for each segment. Since this is frequently accessed, we compute\n // it once instead of on every access. This same cache key is also used to\n // request the segment from the server.\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n const prefetchSlots = prefetch.slots\n if (prefetchSlots !== null) {\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n\n slots = {}\n for (let parallelRouteKey in prefetchSlots) {\n const childPrefetch = prefetchSlots[parallelRouteKey]\n const childSegmentName = childPrefetch.name\n const childParam = childPrefetch.param\n\n let childDoesAppearInURL: boolean\n let childSegment: FlightRouterStateSegment\n let childPartialVaryPath: PartialSegmentVaryPath | null\n if (childParam !== null) {\n // This segment is parameterized. Get the param from the pathname.\n const childParamValue = parseDynamicParamFromURLPart(\n childParam.type,\n pathnameParts,\n pathnamePartsIndex\n )\n\n // Assign a cache key to the segment, based on the param value. In the\n // pre-Segment Cache implementation, the server computes this and sends\n // it in the body of the response. In the Segment Cache implementation,\n // the server sends an empty string and we fill it in here.\n\n // TODO: We're intentionally not adding the search param to page\n // segments here; it's tracked separately and added back during a read.\n // This would clearer if we waited to construct the segment until it's\n // read from the cache, since that's effectively what we're\n // doing anyway.\n const childParamKey =\n // The server omits this field from the prefetch response when\n // cacheComponents is enabled.\n childParam.key !== null\n ? childParam.key\n : // If no param key was sent, use the value parsed on the client.\n getCacheKeyForDynamicParam(\n childParamValue,\n '' as NormalizedSearch\n )\n\n childPartialVaryPath = appendLayoutVaryPath(\n partialVaryPath,\n childParamKey,\n childSegmentName\n )\n childSegment = [\n childSegmentName,\n childParamKey,\n childParam.type,\n childParam.siblings,\n ]\n childDoesAppearInURL = true\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n childPartialVaryPath = partialVaryPath\n childSegment = childSegmentName\n childDoesAppearInURL = doesStaticSegmentAppearInURL(childSegmentName)\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = childDoesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n slots[parallelRouteKey] = convertTreePrefetchToRouteTree(\n childPrefetch,\n childSegment,\n childPartialVaryPath,\n childRequestKey,\n pathnameParts,\n childPathnamePartsIndex,\n renderedSearch,\n acc\n )\n }\n } else {\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n return {\n requestKey,\n segment,\n refreshState: null,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n varyPath: varyPath as any,\n isPage: isPage as boolean as any,\n slots,\n prefetchHints: prefetch.prefetchHints,\n }\n}\n\nexport function convertRootFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n return convertFlightRouterStateToRouteTree(\n flightRouterState,\n ROOT_SEGMENT_REQUEST_KEY,\n null,\n renderedSearch,\n acc\n )\n}\n\nexport function convertReusedFlightRouterStateToRouteTree(\n parentRouteTree: RouteTree,\n parallelRouteKey: string,\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n) {\n // Create a RouteTree for a FlightRouterState that was reused from an older\n // route. This happens during a navigation when a parallel route slot does not\n // match the target route; we reuse whatever slot was already active.\n\n // Unlike a FlightRouterState, the RouteTree type contains backreferences to\n // the parent segments. Append the vary path to the parent's vary path.\n const parentPartialVaryPath = parentRouteTree.isPage\n ? getPartialPageVaryPath(parentRouteTree.varyPath)\n : getPartialLayoutVaryPath(parentRouteTree.varyPath)\n const segment = flightRouterState[0]\n // And the request key.\n const parentRequestKey = parentRouteTree.requestKey\n const requestKeyPart = createSegmentRequestKeyPart(segment)\n const requestKey = appendSegmentRequestKeyPart(\n parentRequestKey,\n parallelRouteKey,\n requestKeyPart\n )\n return convertFlightRouterStateToRouteTree(\n flightRouterState,\n requestKey,\n parentPartialVaryPath,\n renderedSearch,\n acc\n )\n}\n\nfunction convertFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n requestKey: SegmentRequestKey,\n parentPartialVaryPath: PartialSegmentVaryPath | null,\n parentRenderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n const originalSegment = flightRouterState[0]\n\n // If the FlightRouterState has a refresh state, then this segment is part of\n // an inactive parallel route. It has a different rendered search query than\n // the outer parent route. In order to construct the inactive route correctly,\n // we must restore the query that was originally used to render it.\n const compressedRefreshState = flightRouterState[2] ?? null\n const refreshState =\n compressedRefreshState !== null\n ? {\n canonicalUrl: compressedRefreshState[0] as string,\n renderedSearch: compressedRefreshState[1] as NormalizedSearch,\n }\n : null\n const renderedSearch =\n refreshState !== null ? refreshState.renderedSearch : parentRenderedSearch\n\n let segment: FlightRouterStateSegment\n let partialVaryPath: PartialSegmentVaryPath | null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n if (Array.isArray(originalSegment)) {\n isPage = false\n const paramCacheKey = originalSegment[1]\n const paramName = originalSegment[0]\n partialVaryPath = appendLayoutVaryPath(\n parentPartialVaryPath,\n paramCacheKey,\n paramName\n )\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n segment = originalSegment\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n partialVaryPath = parentPartialVaryPath\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n\n // The navigation implementation expects the search params to be included\n // in the segment. However, in the case of a static response, the search\n // params are omitted. So the client needs to add them back in when reading\n // from the Segment Cache.\n //\n // For consistency, we'll do this for dynamic responses, too.\n //\n // TODO: We should move search params out of FlightRouterState and handle\n // them entirely on the client, similar to our plan for dynamic params.\n segment = PAGE_SEGMENT_KEY\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n segment = originalSegment\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n\n const parallelRoutes = flightRouterState[1]\n for (let parallelRouteKey in parallelRoutes) {\n const childRouterState = parallelRoutes[parallelRouteKey]\n const childSegment = childRouterState[0]\n // TODO: Eventually, the param values will not be included in the response\n // from the server. We'll instead fill them in on the client by parsing\n // the URL. This is where we'll do that.\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n const childTree = convertFlightRouterStateToRouteTree(\n childRouterState,\n childRequestKey,\n partialVaryPath,\n renderedSearch,\n acc\n )\n if (slots === null) {\n slots = {\n [parallelRouteKey]: childTree,\n }\n } else {\n slots[parallelRouteKey] = childTree\n }\n }\n\n return {\n requestKey,\n segment,\n refreshState,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n varyPath: varyPath as any,\n isPage: isPage as boolean as any,\n slots,\n prefetchHints: flightRouterState[4] ?? 0,\n }\n}\n\nexport function convertRouteTreeToFlightRouterState(\n routeTree: RouteTree\n): FlightRouterState {\n const parallelRoutes: Record = {}\n if (routeTree.slots !== null) {\n for (const parallelRouteKey in routeTree.slots) {\n parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(\n routeTree.slots[parallelRouteKey]\n )\n }\n }\n const flightRouterState: FlightRouterState = [\n routeTree.segment,\n parallelRoutes,\n null,\n null,\n ]\n return flightRouterState\n}\n\nexport async function fetchRouteOnCacheMiss(\n entry: PendingRouteCacheEntry,\n key: RouteCacheKey\n): Promise | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n const pathname = key.pathname\n const search = key.search\n const nextUrl = key.nextUrl\n const segmentPath = '/_tree' as SegmentRequestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: segmentPath,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n // Tell the server to perform a static pre-render for the Instant Navigation\n // Testing API. Static pre-renders don't normally happen during development.\n addInstantPrefetchHeaderIfLocked(headers)\n\n try {\n const url = new URL(pathname + search, location.origin)\n let response\n let urlAfterRedirects\n if (isOutputExportMode) {\n // In output: \"export\" mode, we can't use headers to request a particular\n // segment. Instead, we encode the extra request information into the URL.\n // This is not part of the \"public\" interface of the app; it's an internal\n // Next.js implementation detail that the app developer should not need to\n // concern themselves with.\n //\n // For example, to request a segment:\n //\n // Path passed to : /path/to/page\n // Path passed to fetch: /path/to/page/__next-segments/_tree\n //\n // (This is not the exact protocol, just an illustration.)\n //\n // Before we do that, though, we need to account for redirects. Even in\n // output: \"export\" mode, a proxy might redirect the page to a different\n // location, but we shouldn't assume or expect that they also redirect all\n // the segment files, too.\n //\n // To check whether the page is redirected, previously we perform a range\n // request of 64 bytes of the HTML document to check if the target page\n // is part of this app (by checking if build id matches). Only if the target\n // page is part of this app do we determine the final canonical URL.\n //\n // However, as mentioned in https://github.com/vercel/next.js/pull/85903,\n // some popular static hosting providers (like Cloudflare Pages or Render.com)\n // do not support range requests, in the worst case, the entire HTML instead\n // of 64 bytes could be returned, which is wasteful.\n //\n // So instead, we drops the check for build id here, and simply perform\n // a HEAD request to rejects 1xx/4xx/5xx responses, and then determine the\n // final URL after redirects.\n //\n // NOTE: We could embed the route tree into the HTML document, to avoid\n // a second request. We're not doing that currently because it would make\n // the HTML document larger and affect normal page loads.\n const headResponse = await fetch(url, {\n method: 'HEAD',\n })\n if (headResponse.status < 200 || headResponse.status >= 400) {\n // The target page responded w/o a successful status code\n // Could be a WAF serving a 403, or a 5xx from a backend\n //\n // Note that we can't use headResponse.ok here, because\n // Response#ok returns `false` with 3xx responses.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n urlAfterRedirects = headResponse.redirected\n ? new URL(headResponse.url)\n : url\n\n response = await fetchPrefetchResponse(\n addSegmentPathToUrlInOutputExportMode(urlAfterRedirects, segmentPath),\n headers\n )\n } else {\n // \"Server\" mode. We can use request headers instead of the pathname.\n // TODO: The eventual plan is to get rid of our custom request headers and\n // encode everything into the URL, using a similar strategy to the\n // \"output: export\" block above.\n response = await fetchPrefetchResponse(url, headers)\n urlAfterRedirects =\n response !== null && response.redirected ? new URL(response.url) : url\n }\n\n if (\n !response ||\n !response.ok ||\n // 204 is a Cache miss. Though theoretically this shouldn't happen when\n // PPR is enabled, because we always respond to route tree requests, even\n // if it needs to be blockingly generated on demand.\n response.status === 204 ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // TODO: The canonical URL is the href without the origin. I think\n // historically the reason for this is because the initial canonical URL\n // gets passed as a prop to the top-level React component, which means it\n // needs to be computed during SSR. If it were to include the origin, it\n // would need to always be same as location.origin on the client, to prevent\n // a hydration mismatch. To sidestep this complexity, we omit the origin.\n //\n // However, since this is neither a native URL object nor a fully qualified\n // URL string, we need to be careful about how we use it. To prevent subtle\n // mistakes, we should create a special type for it, instead of just string.\n // Or, we should just use a (readonly) URL object instead. The type of the\n // prop that we pass to seed the initial state does not need to be the same\n // type as the state itself.\n const canonicalUrl = createHrefFromUrl(urlAfterRedirects)\n\n // Check whether the response varies based on the Next-Url header.\n const varyHeader = response.headers.get('vary')\n const couldBeIntercepted =\n varyHeader !== null && varyHeader.includes(NEXT_URL)\n\n // TODO: The `closed` promise was originally used to track when a streaming\n // network connection closes, so the scheduler could limit concurrent\n // connections. Now that prefetch responses are buffered, `closed` is\n // resolved immediately after buffering — before the outer function even\n // returns. This mechanism is only still meaningful for dynamic (Full)\n // prefetches, which use incremental streaming. Consider removing the\n // `closed` plumbing for buffered prefetch paths.\n const closed = createPromiseWithResolvers()\n\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route.\n const routeIsPPREnabled =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '2' ||\n // In output: \"export\" mode, we can't rely on response headers. But if we\n // receive a well-formed response, we can assume it's a static response,\n // because all data is static in this mode.\n isOutputExportMode\n\n if (routeIsPPREnabled) {\n const { stream: prefetchStream, size: responseSize } =\n await createNonTaskyPrefetchResponseStream(response.body)\n closed.resolve()\n setSizeInCacheMap(entry, responseSize)\n const serverData = await createFromNextReadableStream(\n prefetchStream,\n headers,\n { allowPartialStream: true }\n )\n\n if (\n (response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ??\n serverData.buildId) !== getNavigationBuildId()\n ) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // Get the params that were used to render the target page. These may\n // be different from the params in the request URL, if the page\n // was rewritten.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootTreePrefetchToRouteTree(\n serverData,\n renderedPathname,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n discoverKnownRoute(\n Date.now(),\n pathname,\n nextUrl,\n entry,\n routeTree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n routeIsPPREnabled,\n false // hasDynamicRewrite\n )\n } else {\n // PPR is not enabled for this route. The server responds with a\n // different format (FlightRouterState) that we need to convert.\n // TODO: We will unify the responses eventually. I'm keeping the types\n // separate for now because FlightRouterState has so many\n // overloaded concerns.\n const { stream: prefetchStream, size: responseSize } =\n await createNonTaskyPrefetchResponseStream(response.body)\n closed.resolve()\n setSizeInCacheMap(entry, responseSize)\n const serverData =\n await createFromNextReadableStream(\n prefetchStream,\n headers,\n { allowPartialStream: true }\n )\n\n if (\n (response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ??\n serverData.b) !== getNavigationBuildId()\n ) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // Read head vary params synchronously. Individual segments carry their\n // own thenables in CacheNodeSeedData.\n const headVaryParamsThenable = serverData.h\n const headVaryParams =\n headVaryParamsThenable !== null\n ? readVaryParams(headVaryParamsThenable)\n : null\n writeDynamicTreeResponseIntoCache(\n Date.now(),\n // The non-PPR response format is what we'd get if we prefetched these segments\n // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly.\n FetchStrategy.LoadingBoundary,\n response as RSCResponse,\n serverData,\n entry,\n couldBeIntercepted,\n canonicalUrl,\n routeIsPPREnabled,\n headVaryParams,\n pathname,\n nextUrl\n )\n }\n\n if (!couldBeIntercepted) {\n // This route will never be intercepted. So we can use this entry for all\n // requests to this route, regardless of the Next-Url header. This works\n // because when reading the cache we always check for a valid\n // non-intercepted entry first.\n\n // Re-key the entry. The `set` implementation handles removing it from\n // its previous position in the cache. We don't need to do anything to\n // update the LRU, because the entry is already in it.\n // TODO: Treat this as an upsert — should check if an entry already\n // exists at the new keypath, and if so, whether we should keep that\n // one instead.\n const fulfilledVaryPath: RouteVaryPath = getFulfilledRouteVaryPath(\n pathname,\n search,\n nextUrl,\n couldBeIntercepted\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, fulfilledVaryPath, entry, isRevalidation)\n }\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n}\n\nexport async function fetchSegmentOnCacheMiss(\n route: FulfilledRouteCacheEntry,\n segmentCacheEntry: PendingSegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): Promise | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n //\n // Segment fetches are non-blocking so we don't need to ping the scheduler\n // on completion.\n\n // Use the canonical URL to request the segment, not the original URL. These\n // are usually the same, but the canonical URL will be different if the route\n // tree response was redirected. To avoid an extra waterfall on every segment\n // request, we pass the redirected URL instead of the original one.\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = routeKey.nextUrl\n\n const requestKey = tree.requestKey\n const normalizedRequestKey =\n requestKey === ROOT_SEGMENT_REQUEST_KEY\n ? // The root segment is a special case. To simplify the server-side\n // handling of these requests, we encode the root segment path as\n // `_index` instead of as an empty string. This should be treated as\n // an implementation detail and not as a stable part of the protocol.\n // It just needs to match the equivalent logic that happens when\n // prerendering the responses. It should not leak outside of Next.js.\n ('/_index' as SegmentRequestKey)\n : requestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: normalizedRequestKey,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n // Tell the server to perform a static pre-render for the Instant Navigation\n // Testing API. Static pre-renders don't normally happen during development.\n addInstantPrefetchHeaderIfLocked(headers)\n\n const requestUrl = isOutputExportMode\n ? // In output: \"export\" mode, we need to add the segment path to the URL.\n addSegmentPathToUrlInOutputExportMode(url, normalizedRequestKey)\n : url\n try {\n const response = await fetchPrefetchResponse(requestUrl, headers)\n if (\n !response ||\n !response.ok ||\n response.status === 204 || // Cache miss\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route. Theoretically this should never happen\n // because we only issue requests for segments once we've verified that\n // the route supports PPR.\n (response.headers.get(NEXT_DID_POSTPONE_HEADER) !== '2' &&\n // In output: \"export\" mode, we can't rely on response headers. But if\n // we receive a well-formed response, we can assume it's a static\n // response, because all data is static in this mode.\n !isOutputExportMode) ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n\n // See TODO in fetchRouteOnCacheMiss about removing `closed` for\n // buffered prefetch paths.\n const closed = createPromiseWithResolvers()\n\n const { stream: prefetchStream, size: responseSize } =\n await createNonTaskyPrefetchResponseStream(response.body)\n closed.resolve()\n setSizeInCacheMap(segmentCacheEntry, responseSize)\n const serverData = await createFromNextReadableStream(\n prefetchStream,\n headers,\n { allowPartialStream: true }\n )\n if (\n (response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ??\n serverData.buildId) !== getNavigationBuildId()\n ) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n const now = Date.now()\n const staleAt = now + getStaleTimeMs(serverData.staleTime)\n const fulfilledEntry = fulfillSegmentCacheEntry(\n segmentCacheEntry,\n serverData.rsc,\n staleAt,\n serverData.isPartial\n )\n\n // If the server tells us which params the segment varies by, we can re-key\n // the entry to a more generic vary path. This allows the entry to be reused\n // across different param values for params that the segment doesn't\n // actually depend on.\n const varyParams = serverData.varyParams\n const fulfilledVaryPath =\n process.env.__NEXT_VARY_PARAMS && varyParams !== null\n ? getFulfilledSegmentVaryPath(tree.varyPath, varyParams)\n : getSegmentVaryPathForRequest(segmentCacheEntry.fetchStrategy, tree)\n // Re-key and upsert the entry at the fulfilled vary path. This ensures\n // the entry is stored at the most generic path possible based on which\n // params the segment actually depends on.\n upsertSegmentEntry(now, fulfilledVaryPath, fulfilledEntry)\n\n return {\n value: fulfilledEntry,\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n closed: closed.promise,\n }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n}\n\n// TODO: The inlined prefetch flow below is temporary. Eventually, inlining\n// will be the default behavior controlled by a size heuristic rather than a\n// boolean flag. At that point, the per-segment and inlined fetch paths will\n// merge, and these separate functions will be removed.\n//\n// The call site in the scheduler is guarded by\n// process.env.__NEXT_PREFETCH_INLINING, so these functions are\n// dead-code-eliminated from the client bundle when the feature is disabled.\n\nexport async function fetchInlinedSegmentsOnCacheMiss(\n route: FulfilledRouteCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree,\n spawnedEntries: Map\n): Promise | null> {\n // When prefetch inlining is enabled, all segment data for a route is bundled\n // into a single /_inlined response instead of individual per-segment\n // requests. This function fetches that response and walks the tree to fill\n // all segment cache entries at once.\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = routeKey.nextUrl\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: '/' + PAGE_SEGMENT_KEY,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n addInstantPrefetchHeaderIfLocked(headers)\n\n try {\n const response = await fetchPrefetchResponse(url, headers)\n if (\n !response ||\n !response.ok ||\n response.status === 204 ||\n (response.headers.get(NEXT_DID_POSTPONE_HEADER) !== '2' &&\n !isOutputExportMode) ||\n !response.body\n ) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n // See TODO in fetchRouteOnCacheMiss about removing `closed` for\n // buffered prefetch paths.\n const closed = createPromiseWithResolvers()\n\n const { stream: prefetchStream } =\n await createNonTaskyPrefetchResponseStream(response.body)\n closed.resolve()\n const serverData =\n await createFromNextReadableStream(\n prefetchStream,\n headers,\n { allowPartialStream: true }\n )\n\n if (\n (response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ??\n serverData.tree.segment.buildId) !== getNavigationBuildId()\n ) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n const now = Date.now()\n\n // Walk the inlined tree in parallel with the RouteTree and fill\n // segment cache entries.\n fillInlinedSegmentEntries(now, route, tree, serverData.tree, spawnedEntries)\n\n // Fill the head entry.\n const headStaleAt = now + getStaleTimeMs(serverData.head.staleTime)\n const headKey = route.metadata.requestKey\n const ownedHeadEntry = spawnedEntries.get(headKey)\n if (ownedHeadEntry !== undefined) {\n fulfillSegmentCacheEntry(\n ownedHeadEntry,\n serverData.head.rsc,\n headStaleAt,\n serverData.head.isPartial\n )\n } else {\n // The head was already cached. Try to upsert if the entry is empty.\n const existingEntry = readOrCreateSegmentCacheEntry(\n now,\n FetchStrategy.PPR,\n route.metadata\n )\n if (existingEntry.status === EntryStatus.Empty) {\n fulfillSegmentCacheEntry(\n upgradeToPendingSegment(existingEntry, FetchStrategy.PPR),\n serverData.head.rsc,\n headStaleAt,\n serverData.head.isPartial\n )\n }\n }\n\n // Reject any remaining entries that were not fulfilled by the response.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n\n return { value: null, closed: closed.promise }\n } catch (error) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n}\n\nfunction fillInlinedSegmentEntries(\n now: number,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n inlinedNode: InlinedSegmentPrefetch,\n spawnedEntries: Map\n): void {\n // Check if the spawned entries map has an entry for this segment's key.\n const segment = inlinedNode.segment\n const staleAt = now + getStaleTimeMs(segment.staleTime)\n const ownedEntry = spawnedEntries.get(tree.requestKey)\n if (ownedEntry !== undefined) {\n // We own this entry. Fulfill it directly.\n fulfillSegmentCacheEntry(\n ownedEntry,\n segment.rsc,\n staleAt,\n segment.isPartial\n )\n } else {\n // Not owned by us — this is extra data from the inlined response for a\n // segment that was already cached. Try to upsert if the entry is empty.\n const existingEntry = readOrCreateSegmentCacheEntry(\n now,\n FetchStrategy.PPR,\n tree\n )\n if (existingEntry.status === EntryStatus.Empty) {\n fulfillSegmentCacheEntry(\n upgradeToPendingSegment(existingEntry, FetchStrategy.PPR),\n segment.rsc,\n staleAt,\n segment.isPartial\n )\n }\n }\n\n // Recurse into children.\n if (tree.slots !== null && inlinedNode.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n const childInlinedNode = inlinedNode.slots[parallelRouteKey]\n if (childInlinedNode !== undefined) {\n fillInlinedSegmentEntries(\n now,\n route,\n childTree,\n childInlinedNode,\n spawnedEntries\n )\n }\n }\n }\n}\n\nexport async function fetchSegmentPrefetchesUsingDynamicRequest(\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n dynamicRequestTree: FlightRouterState,\n spawnedEntries: Map\n): Promise | null> {\n const key = task.key\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = key.nextUrl\n\n if (\n spawnedEntries.size === 1 &&\n spawnedEntries.has(route.metadata.requestKey)\n ) {\n // The only thing pending is the head. Instruct the server to\n // skip over everything else.\n dynamicRequestTree = MetadataOnlyRequestTree\n }\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_STATE_TREE_HEADER]:\n prepareFlightRouterStateForRequest(dynamicRequestTree),\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n switch (fetchStrategy) {\n case FetchStrategy.Full: {\n // We omit the prefetch header from a full prefetch because it's essentially\n // just a navigation request that happens ahead of time — it should include\n // all the same data in the response.\n break\n }\n case FetchStrategy.PPRRuntime: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '2'\n break\n }\n case FetchStrategy.LoadingBoundary: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '1'\n break\n }\n default: {\n fetchStrategy satisfies never\n }\n }\n\n try {\n const response = await fetchPrefetchResponse(url, headers)\n if (!response || !response.ok || !response.body) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n const renderedSearch = getRenderedSearch(response)\n if (renderedSearch !== route.renderedSearch) {\n // The search params that were used to render the target page are\n // different from the search params in the request URL. This only happens\n // when there's a dynamic rewrite in between the tree prefetch and the\n // data prefetch.\n // TODO: For now, since this is an edge case, we reject the prefetch, but\n // the proper way to handle this is to evict the stale route tree entry\n // then fill the cache with the new response.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n // Track when the network connection closes. Only meaningful for Full\n // (dynamic) prefetches which use incremental streaming. For buffered\n // paths, this is resolved immediately — see TODO in fetchRouteOnCacheMiss.\n const closed = createPromiseWithResolvers()\n\n let fulfilledEntries: Array | null = null\n let prefetchStream: ReadableStream\n let bufferedResponseSize: number | null = null\n if (fetchStrategy === FetchStrategy.Full) {\n // Full prefetches are dynamic responses stored in the prefetch cache.\n // They don't carry vary params or other cache metadata, so there's no\n // need to buffer them. Use the incremental version to allow data to be\n // processed as it arrives.\n prefetchStream = createIncrementalPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(totalBytesReceivedSoFar) {\n // When processing a dynamic response, we don't know how large each\n // individual segment is, so approximate by assigning each segment\n // the average of the total response size.\n if (fulfilledEntries === null) {\n // Haven't received enough data yet to know which segments\n // were included.\n return\n }\n const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length\n for (const entry of fulfilledEntries) {\n setSizeInCacheMap(entry, averageSize)\n }\n }\n )\n } else {\n const { stream, size } = await createNonTaskyPrefetchResponseStream(\n response.body\n )\n closed.resolve()\n prefetchStream = stream\n bufferedResponseSize = size\n }\n\n const [serverData, cacheData] = await Promise.all([\n createFromNextReadableStream(\n prefetchStream,\n headers,\n { allowPartialStream: true }\n ),\n response.cacheData,\n ])\n\n // Read head vary params synchronously. Individual segments carry their\n // own thenables in CacheNodeSeedData.\n const headVaryParamsThenable = serverData.h\n const headVaryParams =\n headVaryParamsThenable !== null\n ? readVaryParams(headVaryParamsThenable)\n : null\n\n const now = Date.now()\n const staleAt = await getStaleAt(now, serverData.s, response)\n // PPRRuntime prefetches are partial when the server marks the response\n // as '~' (Partial). Full/LoadingBoundary prefetches are always complete.\n const isResponsePartial =\n fetchStrategy === FetchStrategy.PPRRuntime &&\n (cacheData?.isResponsePartial ?? false)\n\n // Aside from writing the data into the cache, this function also returns\n // the entries that were fulfilled, so we can streamingly update their sizes\n // in the LRU as more data comes in.\n const buildId =\n response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.b\n const flightDatas = normalizeFlightData(serverData.f)\n if (typeof flightDatas === 'string') {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n const navigationSeed = convertServerPatchToFullTree(\n now,\n dynamicRequestTree,\n flightDatas,\n renderedSearch,\n // Not needed for prefetch responses; pass unknown to use the default.\n UnknownDynamicStaleTime\n )\n fulfilledEntries = writeDynamicRenderResponseIntoCache(\n now,\n fetchStrategy,\n flightDatas,\n buildId,\n isResponsePartial,\n headVaryParams,\n staleAt,\n navigationSeed,\n spawnedEntries\n )\n\n // For buffered responses, update LRU sizes now that we know which\n // entries were fulfilled.\n if (\n bufferedResponseSize !== null &&\n fulfilledEntries !== null &&\n fulfilledEntries.length > 0\n ) {\n const averageSize = bufferedResponseSize / fulfilledEntries.length\n for (const entry of fulfilledEntries) {\n setSizeInCacheMap(entry, averageSize)\n }\n }\n\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n}\n\nfunction writeDynamicTreeResponseIntoCache(\n now: number,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n response: RSCResponse,\n serverData: NavigationFlightResponse,\n entry: PendingRouteCacheEntry,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n routeIsPPREnabled: boolean,\n headVaryParams: VaryParams | null,\n originalPathname: string,\n nextUrl: string | null\n): void {\n const renderedSearch = getRenderedSearch(response)\n\n const normalizedFlightDataResult = normalizeFlightData(serverData.f)\n if (\n // A string result means navigating to this route will result in an\n // MPA navigation.\n typeof normalizedFlightDataResult === 'string' ||\n normalizedFlightDataResult.length !== 1\n ) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n const flightData = normalizedFlightDataResult[0]\n if (!flightData.isRootRender) {\n // Unexpected response format.\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n const flightRouterState = flightData.tree\n // If the response was postponed, segments may contain dynamic holes.\n // The head has its own partiality flag (flightDataEntry.isHeadPartial)\n // which is handled separately in writeDynamicRenderResponseIntoCache.\n const isResponsePartial =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '1'\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootFlightRouterStateToRouteTree(\n flightRouterState,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n discoverKnownRoute(\n now,\n originalPathname,\n nextUrl,\n entry,\n routeTree,\n metadataVaryPath,\n couldBeIntercepted,\n canonicalUrl,\n routeIsPPREnabled,\n false // hasDynamicRewrite\n )\n\n // If the server sent segment data as part of the response, we should write\n // it into the cache to prevent a second, redundant prefetch request.\n // TODO: This is a leftover branch from before Client Segment Cache was\n // enabled everywhere. Tree prefetches should never include segment data. We\n // can delete it. Leaving for a subsequent PR.\n const navigationSeed = convertServerPatchToFullTree(\n now,\n flightRouterState,\n normalizedFlightDataResult,\n renderedSearch,\n UnknownDynamicStaleTime\n )\n const buildId =\n response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.b\n writeDynamicRenderResponseIntoCache(\n now,\n fetchStrategy,\n normalizedFlightDataResult,\n buildId,\n isResponsePartial,\n headVaryParams,\n getStaleAtFromHeader(now, response),\n navigationSeed,\n null\n )\n}\n\nfunction rejectSegmentEntriesIfStillPending(\n entries: Map,\n staleAt: number\n): Array {\n const fulfilledEntries = []\n for (const entry of entries.values()) {\n if (entry.status === EntryStatus.Pending) {\n rejectSegmentCacheEntry(entry, staleAt)\n } else if (entry.status === EntryStatus.Fulfilled) {\n fulfilledEntries.push(entry)\n }\n }\n return fulfilledEntries\n}\n\nexport function writeDynamicRenderResponseIntoCache(\n now: number,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPR\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n flightDatas: NormalizedFlightData[],\n buildId: string | undefined,\n isResponsePartial: boolean,\n headVaryParams: VaryParams | null,\n staleAt: number,\n navigationSeed: NavigationSeed,\n spawnedEntries: Map | null\n): Array | null {\n if (buildId && buildId !== getNavigationBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n\n const routeTree = navigationSeed.routeTree\n const metadataTree =\n navigationSeed.metadataVaryPath !== null\n ? createMetadataRouteTree(navigationSeed.metadataVaryPath)\n : null\n\n for (const flightDataEntry of flightDatas) {\n const seedData = flightDataEntry.seedData\n if (seedData !== null) {\n // The data sent by the server represents only a subtree of the app. We\n // need to find the part of the task tree that matches the response.\n //\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n const segmentPath = flightDataEntry.segmentPath\n let tree = routeTree\n for (let i = 0; i < segmentPath.length; i += 2) {\n const parallelRouteKey: string = segmentPath[i]\n if (tree?.slots?.[parallelRouteKey] !== undefined) {\n tree = tree.slots[parallelRouteKey]\n } else {\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n }\n\n writeSeedDataIntoCache(\n now,\n fetchStrategy,\n tree,\n staleAt,\n seedData,\n isResponsePartial,\n spawnedEntries\n )\n }\n\n const head = flightDataEntry.head\n if (head !== null && metadataTree !== null) {\n // When Cache Components is enabled, the server conservatively marks\n // the head as partial during static generation (isPossiblyPartialHead\n // in app-render.tsx), even for fully static pages where the head is\n // actually complete. When the response is non-partial, we override\n // this since the server confirmed no dynamic content exists.\n //\n // Without Cache Components, the server always sends the correct\n // isHeadPartial value, so no override is needed.\n const isHeadPartial =\n !isResponsePartial && process.env.__NEXT_CACHE_COMPONENTS\n ? false\n : flightDataEntry.isHeadPartial\n\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n head,\n isHeadPartial,\n staleAt,\n // For head entries, use the head-specific vary params passed as\n // parameter.\n headVaryParams,\n metadataTree,\n spawnedEntries\n )\n }\n }\n // Any entry that's still pending was intentionally not rendered by the\n // server, because it was inside the loading boundary. Mark them as rejected\n // so we know not to fetch them again.\n // TODO: If PPR is enabled on some routes but not others, then it's possible\n // that a different page is able to do a per-segment prefetch of one of the\n // segments we're marking as rejected here. We should mark on the segment\n // somehow that the reason for the rejection is because of a non-PPR prefetch.\n // That way a per-segment prefetch knows to disregard the rejection.\n if (spawnedEntries !== null) {\n const fulfilledEntries = rejectSegmentEntriesIfStillPending(\n spawnedEntries,\n now + 10 * 1000\n )\n return fulfilledEntries\n }\n return null\n}\n\nfunction writeSeedDataIntoCache(\n now: number,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPR\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n tree: RouteTree,\n staleAt: number,\n seedData: CacheNodeSeedData,\n isResponsePartial: boolean,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // This function is used to write the result of a runtime server request\n // (CacheNodeSeedData) into the prefetch cache.\n const rsc = seedData[0]\n const isPartial = rsc === null || isResponsePartial\n const varyParamsThenable = seedData[4]\n // Each segment carries its own vary params thenable in the seed data. The\n // thenable resolves to the set of params the segment accessed during render.\n // A null thenable means tracking was not enabled (not a prerender).\n const varyParams =\n varyParamsThenable !== null ? readVaryParams(varyParamsThenable) : null\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n rsc,\n isPartial,\n staleAt,\n varyParams,\n tree,\n entriesOwnedByCurrentTask\n )\n\n // Recursively write the child data into the cache.\n const slots = tree.slots\n if (slots !== null) {\n const seedDataChildren = seedData[1]\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n const childSeedData: CacheNodeSeedData | null | void =\n seedDataChildren[parallelRouteKey]\n if (childSeedData !== null && childSeedData !== undefined) {\n writeSeedDataIntoCache(\n now,\n fetchStrategy,\n childTree,\n staleAt,\n childSeedData,\n isResponsePartial,\n entriesOwnedByCurrentTask\n )\n }\n }\n }\n}\n\nfunction fulfillEntrySpawnedByRuntimePrefetch(\n now: number,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPR\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n rsc: React.ReactNode,\n isPartial: boolean,\n staleAt: number,\n segmentVaryParams: Set | null,\n tree: RouteTree,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // We should only write into cache entries that are owned by us. Or create\n // a new one and write into that. We must never write over an entry that was\n // created by a different task, because that causes data races.\n const ownedEntry =\n entriesOwnedByCurrentTask !== null\n ? entriesOwnedByCurrentTask.get(tree.requestKey)\n : undefined\n if (ownedEntry !== undefined) {\n const fulfilledEntry = fulfillSegmentCacheEntry(\n ownedEntry,\n rsc,\n staleAt,\n isPartial\n )\n // Re-key the entry based on which params the segment actually depends on.\n if (process.env.__NEXT_VARY_PARAMS && segmentVaryParams !== null) {\n const fulfilledVaryPath = getFulfilledSegmentVaryPath(\n tree.varyPath,\n segmentVaryParams\n )\n const isRevalidation = false\n setInCacheMap(\n segmentCacheMap,\n fulfilledVaryPath,\n fulfilledEntry,\n isRevalidation\n )\n }\n } else {\n // There's no matching entry. Attempt to create a new one.\n const possiblyNewEntry = readOrCreateSegmentCacheEntry(\n now,\n fetchStrategy,\n tree\n )\n if (possiblyNewEntry.status === EntryStatus.Empty) {\n // Confirmed this is a new entry. We can fulfill it.\n const newEntry = possiblyNewEntry\n const fulfilledEntry = fulfillSegmentCacheEntry(\n upgradeToPendingSegment(newEntry, fetchStrategy),\n rsc,\n staleAt,\n isPartial\n )\n // Re-key the entry based on which params the segment actually depends on.\n if (process.env.__NEXT_VARY_PARAMS && segmentVaryParams !== null) {\n const fulfilledVaryPath = getFulfilledSegmentVaryPath(\n tree.varyPath,\n segmentVaryParams\n )\n const isRevalidation = false\n setInCacheMap(\n segmentCacheMap,\n fulfilledVaryPath,\n fulfilledEntry,\n isRevalidation\n )\n }\n } else {\n // There was already an entry in the cache. But we may be able to\n // replace it with the new one from the server.\n const newEntry = fulfillSegmentCacheEntry(\n upgradeToPendingSegment(\n createDetachedSegmentCacheEntry(now),\n fetchStrategy\n ),\n rsc,\n staleAt,\n isPartial\n )\n // Use the fulfilled vary path if available, otherwise fall back to\n // the request vary path.\n const varyPath =\n process.env.__NEXT_VARY_PARAMS && segmentVaryParams !== null\n ? getFulfilledSegmentVaryPath(tree.varyPath, segmentVaryParams)\n : getSegmentVaryPathForRequest(fetchStrategy, tree)\n upsertSegmentEntry(now, varyPath, newEntry)\n }\n }\n}\n\nasync function fetchPrefetchResponse(\n url: URL,\n headers: RequestHeaders\n): Promise | null> {\n const fetchPriority = 'low'\n // When issuing a prefetch request, don't immediately decode the response; we\n // use the lower level `createFromResponse` API instead because we need to do\n // some extra processing of the response stream. See\n // `createNonTaskyPrefetchResponseStream` for more details.\n const shouldImmediatelyDecode = false\n const response = await createFetch(\n url,\n headers,\n fetchPriority,\n shouldImmediatelyDecode\n )\n if (!response.ok) {\n return null\n }\n\n // Check the content type\n if (isOutputExportMode) {\n // In output: \"export\" mode, we relaxed about the content type, since it's\n // not Next.js that's serving the response. If the status is OK, assume the\n // response is valid. If it's not a valid response, the Flight client won't\n // be able to decode it, and we'll treat it as a miss.\n } else {\n const contentType = response.headers.get('content-type')\n const isFlightResponse =\n contentType && contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n if (!isFlightResponse) {\n return null\n }\n }\n return response\n}\n\nasync function createNonTaskyPrefetchResponseStream(\n body: ReadableStream\n): Promise<{ stream: ReadableStream; size: number }> {\n // Buffer the entire response before passing it to the Flight client. This\n // ensures that when Flight processes the stream, all model data is available\n // synchronously. This is important for readVaryParams, which synchronously\n // checks the thenable status — if data arrived in multiple network chunks,\n // the thenables might not yet be fulfilled.\n //\n // TODO: There are too many intermediate stream transformations in the\n // prefetch response pipeline (e.g. stripIsPartialByte, this function).\n // These could all be consolidated into a single transformation. Refactor\n // once the cached navigations experiment lands.\n //\n // Read the entire response from the network.\n const reader = body.getReader()\n const chunks: Uint8Array[] = []\n let size = 0\n while (true) {\n const { done, value } = await reader.read()\n if (done) break\n chunks.push(value)\n size += value.byteLength\n }\n // Concatenate into a single chunk so that Flight's processBinaryChunk\n // processes all rows synchronously in one call. Multiple chunks would not\n // be sufficient: even though reader.read() resolves as a microtask for\n // already-enqueued data, the `await` continuation from\n // createFromReadableStream can interleave between chunks. If the root\n // model row isn't the first row (e.g. outlined values come first), the\n // PromiseResolveThenableJob from `await` can cause the root to initialize\n // eagerly, scheduling the continuation before remaining chunks (including\n // promise value rows) are processed. A single chunk avoids this.\n let buffer: Uint8Array\n if (chunks.length === 1) {\n buffer = chunks[0]\n } else if (chunks.length > 1) {\n buffer = new Uint8Array(size)\n let offset = 0\n for (const chunk of chunks) {\n buffer.set(chunk, offset)\n offset += chunk.byteLength\n }\n } else {\n buffer = new Uint8Array(0)\n }\n const stream = new ReadableStream({\n start(controller) {\n controller.enqueue(buffer)\n controller.close()\n },\n })\n return { stream, size }\n}\n\n/**\n * Creates a streaming (non-buffered) prefetch response stream for dynamic/Full\n * prefetches. These are essentially dynamic responses that get stored in the\n * prefetch cache — they don't carry vary params or other cache metadata that\n * requires synchronous thenable resolution, so there's no need to buffer them.\n * They should continue to stream so consumers can process data as it arrives.\n */\nfunction createIncrementalPrefetchResponseStream(\n originalFlightStream: ReadableStream,\n onStreamClose: () => void,\n onResponseSizeUpdate: (size: number) => void\n): ReadableStream {\n // While processing the original stream, we incrementally update the size\n // of the cache entry in the LRU.\n let totalByteLength = 0\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n\n // Incrementally update the size of the cache entry in the LRU.\n totalByteLength += value.byteLength\n onResponseSizeUpdate(totalByteLength)\n continue\n }\n controller.close()\n onStreamClose()\n return\n }\n },\n })\n}\n\nfunction addSegmentPathToUrlInOutputExportMode(\n url: URL,\n segmentPath: SegmentRequestKey\n): URL {\n if (isOutputExportMode) {\n // In output: \"export\" mode, we cannot use a header to encode the segment\n // path. Instead, we append it to the end of the pathname.\n const staticUrl = new URL(url)\n const routeDir = staticUrl.pathname.endsWith('/')\n ? staticUrl.pathname.slice(0, -1)\n : staticUrl.pathname\n const staticExportFilename =\n convertSegmentPathToStaticExportFilename(segmentPath)\n staticUrl.pathname = `${routeDir}/${staticExportFilename}`\n return staticUrl\n }\n return url\n}\n\n/**\n * Checks whether the new fetch strategy is likely to provide more content than the old one.\n *\n * Generally, when an app uses dynamic data, a \"more specific\" fetch strategy is expected to provide more content:\n * - `LoadingBoundary` only provides static layouts\n * - `PPR` can provide shells for each segment (even for segments that use dynamic data)\n * - `PPRRuntime` can additionally include content that uses searchParams, params, or cookies\n * - `Full` includes all the content, even if it uses dynamic data\n *\n * However, it's possible that a more specific fetch strategy *won't* give us more content if:\n * - a segment is fully static\n * (then, `PPR`/`PPRRuntime`/`Full` will all yield equivalent results)\n * - providing searchParams/params/cookies doesn't reveal any more content, e.g. because of an `await connection()`\n * (then, `PPR` and `PPRRuntime` will yield equivalent results, only `Full` will give us more)\n * Because of this, when comparing two segments, we should also check if the existing segment is partial.\n * If it's not partial, then there's no need to prefetch it again, even using a \"more specific\" strategy.\n * There's currently no way to know if `PPRRuntime` will yield more data that `PPR`, so we have to assume it will.\n *\n * Also note that, in practice, we don't expect to be comparing `LoadingBoundary` to `PPR`/`PPRRuntime`,\n * because a non-PPR-enabled route wouldn't ever use the latter strategies. It might however use `Full`.\n */\nexport function canNewFetchStrategyProvideMoreContent(\n currentStrategy: FetchStrategy,\n newStrategy: FetchStrategy\n): boolean {\n return currentStrategy < newStrategy\n}\n\n/**\n * Adds the instant prefetch header if the navigation lock is active.\n * Uses a lazy require to ensure dead code elimination.\n */\nfunction addInstantPrefetchHeaderIfLocked(\n headers: Record\n): void {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n const { isNavigationLocked } =\n require('./navigation-testing-lock') as typeof import('./navigation-testing-lock')\n if (isNavigationLocked()) {\n headers[NEXT_INSTANT_PREFETCH_HEADER] = '1'\n }\n }\n}\n\nfunction getStaleAtFromHeader(\n now: number,\n response: RSCResponse\n): number {\n const staleTimeSeconds = parseInt(\n response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '',\n 10\n )\n\n const staleTimeMs = !isNaN(staleTimeSeconds)\n ? getStaleTimeMs(staleTimeSeconds)\n : STATIC_STALETIME_MS\n\n return now + staleTimeMs\n}\n\n/**\n * Reads the stale time from an async iterable or a response header and\n * returns a staleAt timestamp.\n *\n * TODO: Buffer the response and then read the iterable values\n * synchronously, similar to readVaryParams. This would avoid the need to\n * make this async, and we could also use it in\n * writeDynamicTreeResponseIntoCache. This will also be needed when React\n * starts leaving async iterables hanging when the outer RSC stream is\n * aborted e.g. due to sync I/O (with unstable_allowPartialStream).\n */\nexport async function getStaleAt(\n now: number,\n staleTimeIterable: AsyncIterable | undefined,\n response?: RSCResponse\n): Promise {\n if (staleTimeIterable !== undefined) {\n // Iterate the async iterable and take the last yielded value. The server\n // yields updated staleTime values during the render; the last one is the\n // final staleTime.\n let staleTimeSeconds: number | undefined\n for await (const value of staleTimeIterable) {\n staleTimeSeconds = value\n }\n\n if (staleTimeSeconds !== undefined) {\n const staleTimeMs = isNaN(staleTimeSeconds)\n ? STATIC_STALETIME_MS\n : getStaleTimeMs(staleTimeSeconds)\n\n return now + staleTimeMs\n }\n }\n\n if (response !== undefined) {\n return getStaleAtFromHeader(now, response)\n }\n\n return now + STATIC_STALETIME_MS\n}\n\n/**\n * Writes the static stage of a navigation response into the segment cache.\n * When `isResponsePartial` is false, segments are written as non-partial with\n * `FetchStrategy.Full` so no dynamic follow-up is needed. Default segments\n * are skipped (by `writeSeedDataIntoCache`) to avoid caching fallback content\n * that would block refreshes from overwriting with dynamic data.\n */\nexport function writeStaticStageResponseIntoCache(\n now: number,\n flightData: FlightData,\n buildId: string | undefined,\n headVaryParamsThenable: VaryParamsThenable | null,\n staleAt: number,\n baseTree: FlightRouterState,\n renderedSearch: string,\n isResponsePartial: boolean\n): void {\n const fetchStrategy = isResponsePartial\n ? FetchStrategy.PPR\n : FetchStrategy.Full\n\n const headVaryParams =\n headVaryParamsThenable !== null\n ? readVaryParams(headVaryParamsThenable)\n : null\n\n const flightDatas = normalizeFlightData(flightData)\n if (typeof flightDatas === 'string') {\n return\n }\n const navigationSeed = convertServerPatchToFullTree(\n now,\n baseTree,\n flightDatas,\n renderedSearch,\n UnknownDynamicStaleTime\n )\n writeDynamicRenderResponseIntoCache(\n now,\n fetchStrategy,\n flightDatas,\n buildId,\n isResponsePartial,\n headVaryParams,\n staleAt,\n navigationSeed,\n null // spawnedEntries — no pre-created entries; will create or upsert\n )\n}\n\n/**\n * Decodes an embedded runtime prefetch Flight stream, normalizes the flight\n * data, and derives a `NavigationSeed` from the base tree.\n *\n * Returns `null` if the response triggers an MPA navigation.\n */\nexport async function processRuntimePrefetchStream(\n now: number,\n runtimePrefetchStream: ReadableStream,\n baseTree: FlightRouterState,\n renderedSearch: string\n): Promise<{\n flightDatas: NormalizedFlightData[]\n navigationSeed: NavigationSeed\n buildId: string | undefined\n isResponsePartial: boolean\n headVaryParams: VaryParams | null\n staleAt: number\n} | null> {\n const { stream, isPartial } = await stripIsPartialByte(runtimePrefetchStream)\n\n const serverData =\n await createFromNextReadableStream(\n stream,\n undefined,\n { allowPartialStream: true }\n )\n\n const headVaryParamsThenable = serverData.h\n const headVaryParams =\n headVaryParamsThenable !== null\n ? readVaryParams(headVaryParamsThenable)\n : null\n\n const staleAt = await getStaleAt(now, serverData.s)\n\n const flightDatas = normalizeFlightData(serverData.f)\n if (typeof flightDatas === 'string') {\n return null\n }\n const navigationSeed = convertServerPatchToFullTree(\n now,\n baseTree,\n flightDatas,\n renderedSearch,\n UnknownDynamicStaleTime\n )\n\n return {\n flightDatas,\n navigationSeed,\n buildId: serverData.b,\n isResponsePartial: isPartial,\n headVaryParams,\n staleAt,\n }\n}\n\n/**\n * Strips the leading isPartial byte from an RSC response stream.\n *\n * The server prepends a single byte: '~' (0x7e) for partial, '#' (0x23) for\n * complete. These bytes cannot appear as the first byte of a valid RSC Flight\n * response (Flight rows start with a hex digit or ':').\n *\n * If the first byte is not a recognized marker, the stream is returned intact\n * and `isPartial` is determined by the cachedNavigations experimental flag.\n */\nexport async function stripIsPartialByte(\n stream: ReadableStream\n): Promise<{ stream: ReadableStream; isPartial: boolean }> {\n // When there is no recognized marker byte, the fallback depends on whether\n // Cached Navigations is enabled. When enabled, dynamic navigation responses\n // don't have a marker but may contain dynamic holes, so they are treated as\n // partial. When disabled, unmarked responses are treated as non-partial.\n const defaultIsPartial = !!process.env.__NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS\n\n const reader = stream.getReader()\n const { done, value } = await reader.read()\n\n if (done || !value || value.byteLength === 0) {\n return {\n stream: new ReadableStream({ start: (c) => c.close() }),\n isPartial: defaultIsPartial,\n }\n }\n\n const firstByte = value[0]\n const hasMarker = firstByte === 0x23 || firstByte === 0x7e\n const isPartial = hasMarker ? firstByte === 0x7e : defaultIsPartial\n\n const remainder = hasMarker\n ? value.byteLength > 1\n ? value.subarray(1)\n : null\n : value\n\n return {\n isPartial,\n stream: new ReadableStream({\n start(controller) {\n if (remainder) {\n controller.enqueue(remainder)\n }\n },\n async pull(controller) {\n const result = await reader.read()\n if (result.done) {\n controller.close()\n } else {\n controller.enqueue(result.value)\n }\n },\n }),\n }\n}\n","import type {\n FlightRouterState,\n Segment as FlightRouterStateSegment,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { PrefetchHint } from '../../../shared/lib/app-router-types'\nimport { matchSegment } from '../match-segments'\nimport {\n readOrCreateRouteCacheEntry,\n readOrCreateSegmentCacheEntry,\n fetchRouteOnCacheMiss,\n fetchSegmentOnCacheMiss,\n fetchInlinedSegmentsOnCacheMiss,\n EntryStatus,\n type FulfilledRouteCacheEntry,\n type RouteCacheEntry,\n type SegmentCacheEntry,\n type RouteTree,\n fetchSegmentPrefetchesUsingDynamicRequest,\n type PendingSegmentCacheEntry,\n convertRouteTreeToFlightRouterState,\n readOrCreateRevalidatingSegmentEntry,\n upgradeToPendingSegment,\n overwriteRevalidatingSegmentCacheEntry,\n canNewFetchStrategyProvideMoreContent,\n attemptToFulfillDynamicSegmentFromBFCache,\n attemptToUpgradeSegmentFromBFCache,\n} from './cache'\nimport type { RouteCacheKey } from './cache-key'\nimport { createCacheKey } from './cache-key'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './types'\nimport {\n getCurrentRouteCacheVersion,\n getCurrentSegmentCacheVersion,\n} from './cache'\nimport {\n addSearchParamsIfPageSegment,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport type { SegmentRequestKey } from '../../../shared/lib/segment-cache/segment-value-encoding'\nimport { cleanup } from './lru'\n\nconst scheduleMicrotask =\n typeof queueMicrotask === 'function'\n ? queueMicrotask\n : (fn: () => unknown) =>\n Promise.resolve()\n .then(fn)\n .catch((error) =>\n setTimeout(() => {\n throw error\n })\n )\n\nexport type PrefetchTask = {\n key: RouteCacheKey\n\n /**\n * The FlightRouterState at the time the task was initiated. This is needed\n * when falling back to the non-PPR behavior, which only prefetches up to\n * the first loading boundary.\n */\n treeAtTimeOfPrefetch: FlightRouterState\n\n /**\n * The cache versions at the time the task was initiated. Used to determine\n * if the cache was invalidated since the task was initiated. Route and\n * segment caches have separate versions so they can be invalidated\n * independently.\n */\n routeCacheVersion: number\n segmentCacheVersion: number\n\n /**\n * Whether to prefetch dynamic data, in addition to static data. This is\n * used by ``.\n *\n * Note that a task with `FetchStrategy.PPR` might need to use\n * `FetchStrategy.LoadingBoundary` instead if we find out that a route\n * does not support PPR after doing the initial route prefetch.\n */\n fetchStrategy: PrefetchTaskFetchStrategy\n\n /**\n * sortId is an incrementing counter\n *\n * Newer prefetches are prioritized over older ones, so that as new links\n * enter the viewport, they are not starved by older links that are no\n * longer relevant. In the future, we can add additional prioritization\n * heuristics, like removing prefetches once a link leaves the viewport.\n *\n * The sortId is assigned when the prefetch is initiated, and reassigned if\n * the same task is prefetched again (effectively bumping it to the top of\n * the queue).\n *\n * TODO: We can add additional fields here to indicate what kind of prefetch\n * it is. For example, was it initiated by a link? Or was it an imperative\n * call? If it was initiated by a link, we can remove it from the queue when\n * the link leaves the viewport, but if it was an imperative call, then we\n * should keep it in the queue until it's fulfilled.\n *\n * We can also add priority levels. For example, hovering over a link could\n * increase the priority of its prefetch.\n */\n sortId: number\n\n /**\n * The priority of the task. Like sortId, this affects the task's position in\n * the queue, so it must never be updated without resifting the heap.\n */\n priority: PrefetchPriority\n\n /**\n * The phase of the task. Tasks are split into multiple phases so that their\n * priority can be adjusted based on what kind of work they're doing.\n * Concretely, prefetching the route tree is higher priority than prefetching\n * segment data.\n */\n phase: PrefetchPhase\n\n /**\n * These fields are temporary state for tracking the currently running task.\n * They are reset after each iteration of the task queue.\n */\n hasBackgroundWork: boolean\n spawnedRuntimePrefetches: Set | null\n\n /**\n * True if the prefetch was cancelled.\n */\n isCanceled: boolean\n\n /**\n * The callback passed to `router.prefetch`, if given.\n */\n onInvalidate: null | (() => void)\n\n /**\n * The index of the task in the heap's backing array. Used to efficiently\n * change the priority of a task by re-sifting it, which requires knowing\n * where it is in the array. This is only used internally by the heap\n * algorithm. The naive alternative is indexOf every time a task is queued,\n * which has O(n) complexity.\n *\n * We also use this field to check whether a task is currently in the queue.\n */\n _heapIndex: number\n\n /**\n * Called when the prefetch task finishes (either completed or canceled).\n * Used by the Instant Navigation Testing API to await prefetch completion.\n * Not exposed in production builds by default.\n *\n * Note: \"Complete\" means the scheduler has no more work to do for this task\n * — all network requests have been spawned. It does not mean all data has\n * been retrieved; responses may still be in flight.\n */\n _onComplete?: () => void\n}\n\nconst enum PrefetchTaskExitStatus {\n /**\n * The task yielded because there are too many requests in progress.\n */\n InProgress,\n\n /**\n * The task is blocked. It needs more data before it can proceed.\n *\n * Currently the only reason this happens is we're still waiting to receive a\n * route tree from the server, because we can't start prefetching the segments\n * until we know what to prefetch.\n */\n Blocked,\n\n /**\n * There's nothing left to prefetch.\n */\n Done,\n}\n\n/**\n * Prefetch tasks are processed in two phases: first the route tree is fetched,\n * then the segments. We use this to priortize tasks that have not yet fetched\n * the route tree.\n */\nconst enum PrefetchPhase {\n RouteTree = 1,\n Segments = 0,\n}\n\nexport type PrefetchSubtaskResult = {\n /**\n * A promise that resolves when the network connection is closed.\n */\n closed: Promise\n value: T\n}\n\nconst taskHeap: Array = []\n\nlet inProgressRequests = 0\n\nlet sortIdCounter = 0\nlet didScheduleMicrotask = false\n\n// The most recently hovered (or touched, etc) link, i.e. the most recent task\n// scheduled at Intent priority. There's only ever a single task at Intent\n// priority at a time. We reserve special network bandwidth for this task only.\nlet mostRecentlyHoveredLink: PrefetchTask | null = null\n\n// CDN cache propagation delay after revalidation (in milliseconds)\nconst REVALIDATION_COOLDOWN_MS = 300\n\n// Timeout handle for the revalidation cooldown. When non-null, prefetch\n// requests are blocked to allow CDN cache propagation.\nlet revalidationCooldownTimeoutHandle: ReturnType | null =\n null\n\n/**\n * Called by the cache when revalidation occurs. Starts a cooldown period\n * during which prefetch requests are blocked to allow CDN cache propagation.\n */\nexport function startRevalidationCooldown(): void {\n // Clear any existing timeout in case multiple revalidations happen\n // in quick succession.\n if (revalidationCooldownTimeoutHandle !== null) {\n clearTimeout(revalidationCooldownTimeoutHandle)\n }\n\n // Schedule the cooldown to expire after the delay.\n revalidationCooldownTimeoutHandle = setTimeout(() => {\n revalidationCooldownTimeoutHandle = null\n // Retry the prefetch queue now that the cooldown has expired.\n pingPrefetchScheduler()\n }, REVALIDATION_COOLDOWN_MS)\n}\n\nexport type IncludeDynamicData = null | 'full' | 'dynamic'\n\n/**\n * Initiates a prefetch task for the given URL. If a prefetch for the same URL\n * is already in progress, this will bump it to the top of the queue.\n *\n * This is not a user-facing function. By the time this is called, the href is\n * expected to be validated and normalized.\n *\n * @param key The RouteCacheKey to prefetch.\n * @param treeAtTimeOfPrefetch The app's current FlightRouterState\n * @param fetchStrategy Whether to prefetch dynamic data, in addition to\n * static data. This is used by ``.\n * @param _onComplete Called when the prefetch task finishes. Testing API only.\n */\nexport function schedulePrefetchTask(\n key: RouteCacheKey,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority,\n onInvalidate: null | (() => void),\n _onComplete?: () => void\n): PrefetchTask {\n // Spawn a new prefetch task\n const task: PrefetchTask = {\n key,\n treeAtTimeOfPrefetch,\n routeCacheVersion: getCurrentRouteCacheVersion(),\n segmentCacheVersion: getCurrentSegmentCacheVersion(),\n priority,\n phase: PrefetchPhase.RouteTree,\n hasBackgroundWork: false,\n spawnedRuntimePrefetches: null,\n fetchStrategy,\n sortId: sortIdCounter++,\n isCanceled: false,\n onInvalidate,\n _heapIndex: -1,\n }\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n task._onComplete = _onComplete\n }\n\n trackMostRecentlyHoveredLink(task)\n\n heapPush(taskHeap, task)\n\n // Schedule an async task to process the queue.\n //\n // The main reason we process the queue in an async task is for batching.\n // It's common for a single JS task/event to trigger multiple prefetches.\n // By deferring to a microtask, we only process the queue once per JS task.\n // If they have different priorities, it also ensures they are processed in\n // the optimal order.\n pingPrefetchScheduler()\n\n return task\n}\n\nexport function cancelPrefetchTask(task: PrefetchTask): void {\n // Remove the prefetch task from the queue. If the task already completed,\n // then this is a no-op.\n //\n // We must also explicitly mark the task as canceled so that a blocked task\n // does not get added back to the queue when it's pinged by the network.\n task.isCanceled = true\n heapDelete(taskHeap, task)\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n // Call completion callback. In practice this shouldn't be reached for\n // test-initiated prefetches since cancellation is only used by the Link\n // component when elements scroll out of viewport.\n const onComplete = task._onComplete\n task._onComplete = undefined\n onComplete?.()\n }\n}\n\nexport function reschedulePrefetchTask(\n task: PrefetchTask,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority\n): void {\n // Bump the prefetch task to the top of the queue, as if it were a fresh\n // task. This is essentially the same as canceling the task and scheduling\n // a new one, except it reuses the original object.\n //\n // The primary use case is to increase the priority of a Link-initated\n // prefetch on hover.\n //\n // Note: _onComplete is not reset here because it's preserved on the same\n // task object. When the rescheduled task completes, the original callback\n // will still be invoked.\n\n // Un-cancel the task, in case it was previously canceled.\n task.isCanceled = false\n task.phase = PrefetchPhase.RouteTree\n\n // Assign a new sort ID to move it ahead of all other tasks at the same\n // priority level. (Higher sort IDs are processed first.)\n task.sortId = sortIdCounter++\n task.priority =\n // If this task is the most recently hovered link, maintain its\n // Intent priority, even if the rescheduled priority is lower.\n task === mostRecentlyHoveredLink ? PrefetchPriority.Intent : priority\n\n task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch\n task.fetchStrategy = fetchStrategy\n\n trackMostRecentlyHoveredLink(task)\n\n if (task._heapIndex !== -1) {\n // The task is already in the queue.\n heapResift(taskHeap, task)\n } else {\n heapPush(taskHeap, task)\n }\n pingPrefetchScheduler()\n}\n\nexport function isPrefetchTaskDirty(\n task: PrefetchTask,\n nextUrl: string | null,\n tree: FlightRouterState\n): boolean {\n // This is used to quickly bail out of a prefetch task if the result is\n // guaranteed to not have changed since the task was initiated. This is\n // strictly an optimization — theoretically, if it always returned true, no\n // behavior should change because a full prefetch task will effectively\n // perform the same checks.\n return (\n task.routeCacheVersion !== getCurrentRouteCacheVersion() ||\n task.segmentCacheVersion !== getCurrentSegmentCacheVersion() ||\n task.treeAtTimeOfPrefetch !== tree ||\n task.key.nextUrl !== nextUrl\n )\n}\n\nfunction trackMostRecentlyHoveredLink(task: PrefetchTask) {\n // Track the mostly recently hovered link, i.e. the most recently scheduled\n // task at Intent priority. There must only be one such task at a time.\n if (\n task.priority === PrefetchPriority.Intent &&\n task !== mostRecentlyHoveredLink\n ) {\n if (mostRecentlyHoveredLink !== null) {\n // Bump the previously hovered link's priority down to Default.\n if (mostRecentlyHoveredLink.priority !== PrefetchPriority.Background) {\n mostRecentlyHoveredLink.priority = PrefetchPriority.Default\n heapResift(taskHeap, mostRecentlyHoveredLink)\n }\n }\n mostRecentlyHoveredLink = task\n }\n}\n\nexport function pingPrefetchScheduler() {\n if (didScheduleMicrotask) {\n // Already scheduled a task to process the queue\n return\n }\n didScheduleMicrotask = true\n scheduleMicrotask(processQueueInMicrotask)\n}\n\n/**\n * Checks if we've exceeded the maximum number of concurrent prefetch requests,\n * to avoid saturating the browser's internal network queue. This is a\n * cooperative limit — prefetch tasks should check this before issuing\n * new requests.\n *\n * Also checks if we're within the revalidation cooldown window, during which\n * prefetch requests are delayed to allow CDN cache propagation.\n */\nfunction hasNetworkBandwidth(task: PrefetchTask): boolean {\n // Check if we're within the revalidation cooldown window\n if (revalidationCooldownTimeoutHandle !== null) {\n // We're within the cooldown window. Return false to prevent prefetching.\n // When the cooldown expires, the timeout will call ensureWorkIsScheduled()\n // to retry the queue.\n return false\n }\n\n // TODO: Also check if there's an in-progress navigation. We should never\n // add prefetch requests to the network queue if an actual navigation is\n // taking place, to ensure there's sufficient bandwidth for render-blocking\n // data and resources.\n\n // TODO: Consider reserving some amount of bandwidth for static prefetches.\n\n if (task.priority === PrefetchPriority.Intent) {\n // The most recently hovered link is allowed to exceed the default limit.\n //\n // The goal is to always have enough bandwidth to start a new prefetch\n // request when hovering over a link.\n //\n // However, because we don't abort in-progress requests, it's still possible\n // we'll run out of bandwidth. When links are hovered in quick succession,\n // there could be multiple hover requests running simultaneously.\n return inProgressRequests < 12\n }\n\n // The default limit is lower than the limit for a hovered link.\n return inProgressRequests < 4\n}\n\nfunction spawnPrefetchSubtask(\n prefetchSubtask: Promise | null>\n): Promise {\n // When the scheduler spawns an async task, we don't await its result.\n // Instead, the async task writes its result directly into the cache, then\n // pings the scheduler to continue.\n //\n // We process server responses streamingly, so the prefetch subtask will\n // likely resolve before we're finished receiving all the data. The subtask\n // result includes a promise that resolves once the network connection is\n // closed. The scheduler uses this to control network bandwidth by tracking\n // and limiting the number of concurrent requests.\n inProgressRequests++\n return prefetchSubtask.then((result) => {\n if (result === null) {\n // The prefetch task errored before it could start processing the\n // network stream. Assume the connection is closed.\n onPrefetchConnectionClosed()\n return null\n }\n // Wait for the connection to close before freeing up more bandwidth.\n result.closed.then(onPrefetchConnectionClosed)\n return result.value\n })\n}\n\nfunction onPrefetchConnectionClosed(): void {\n inProgressRequests--\n\n // Notify the scheduler that we have more bandwidth, and can continue\n // processing tasks.\n pingPrefetchScheduler()\n}\n\n/**\n * Notify the scheduler that we've received new data for an in-progress\n * prefetch. The corresponding task will be added back to the queue (unless the\n * task has been canceled in the meantime).\n */\nexport function pingPrefetchTask(task: PrefetchTask) {\n // \"Ping\" a prefetch that's already in progress to notify it of new data.\n if (\n // Check if prefetch was canceled.\n task.isCanceled ||\n // Check if prefetch is already queued.\n task._heapIndex !== -1\n ) {\n return\n }\n // Add the task back to the queue.\n heapPush(taskHeap, task)\n pingPrefetchScheduler()\n}\n\nfunction processQueueInMicrotask() {\n didScheduleMicrotask = false\n\n // We aim to minimize how often we read the current time. Since nearly all\n // functions in the prefetch scheduler are synchronous, we can read the time\n // once and pass it as an argument wherever it's needed.\n const now = Date.now()\n\n // Process the task queue until we run out of network bandwidth.\n let task = heapPeek(taskHeap)\n while (task !== null && hasNetworkBandwidth(task)) {\n task.routeCacheVersion = getCurrentRouteCacheVersion()\n task.segmentCacheVersion = getCurrentSegmentCacheVersion()\n\n const exitStatus = pingRoute(now, task)\n\n // These fields are only valid for a single attempt. Reset them after each\n // iteration of the task queue.\n const hasBackgroundWork = task.hasBackgroundWork\n task.hasBackgroundWork = false\n task.spawnedRuntimePrefetches = null\n\n switch (exitStatus) {\n case PrefetchTaskExitStatus.InProgress:\n // The task yielded because there are too many requests in progress.\n // Stop processing tasks until we have more bandwidth.\n return\n case PrefetchTaskExitStatus.Blocked:\n // The task is blocked. It needs more data before it can proceed.\n // Keep the task out of the queue until the server responds.\n heapPop(taskHeap)\n // Continue to the next task\n task = heapPeek(taskHeap)\n continue\n case PrefetchTaskExitStatus.Done:\n if (task.phase === PrefetchPhase.RouteTree) {\n // Finished prefetching the route tree. Proceed to prefetching\n // the segments.\n task.phase = PrefetchPhase.Segments\n heapResift(taskHeap, task)\n } else if (hasBackgroundWork) {\n // The task spawned additional background work. Reschedule the task\n // at background priority.\n task.priority = PrefetchPriority.Background\n heapResift(taskHeap, task)\n } else {\n // The prefetch is complete. Continue to the next task.\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n // Notify the Instant Navigation Testing API that the prefetch has\n // completed, so it can proceed with navigation.\n const onComplete = task._onComplete\n task._onComplete = undefined\n onComplete?.()\n }\n heapPop(taskHeap)\n }\n task = heapPeek(taskHeap)\n continue\n default:\n exitStatus satisfies never\n }\n }\n\n // Run LRU cleanup only when the scheduler is fully idle: no queued tasks and\n // no in-progress requests. At that point, all active prefetch tasks have\n // finished reading from the cache (moving recently used entries to the front\n // of the list), so only genuinely stale data gets evicted.\n if (task === null && inProgressRequests === 0) {\n cleanup()\n }\n}\n\n/**\n * Check this during a prefetch task to determine if background work can be\n * performed. If so, it evaluates to `true`. Otherwise, it returns `false`,\n * while also scheduling a background task to run later. Usage:\n *\n * @example\n * if (background(task)) {\n * // Perform background-pri work\n * }\n */\nfunction background(task: PrefetchTask): boolean {\n if (task.priority === PrefetchPriority.Background) {\n return true\n }\n task.hasBackgroundWork = true\n return false\n}\n\nfunction pingRoute(now: number, task: PrefetchTask): PrefetchTaskExitStatus {\n const key = task.key\n const route = readOrCreateRouteCacheEntry(now, task, key)\n const exitStatus = pingRootRouteTree(now, task, route)\n\n if (exitStatus !== PrefetchTaskExitStatus.InProgress && key.search !== '') {\n // If the URL has a non-empty search string, also prefetch the pathname\n // without the search string. We use the searchless route tree as a base for\n // optimistic routing; see requestOptimisticRouteCacheEntry for details.\n //\n // Note that we don't need to prefetch any of the segment data. Just the\n // route tree.\n //\n // TODO: This is a temporary solution; the plan is to replace this by adding\n // a wildcard lookup method to the TupleMap implementation. This is\n // non-trivial to implement because it needs to account for things like\n // fallback route entries, hence this temporary workaround.\n const url = new URL(key.pathname, location.origin)\n const keyWithoutSearch = createCacheKey(url.href, key.nextUrl)\n const routeWithoutSearch = readOrCreateRouteCacheEntry(\n now,\n task,\n keyWithoutSearch\n )\n switch (routeWithoutSearch.status) {\n case EntryStatus.Empty: {\n if (background(task)) {\n routeWithoutSearch.status = EntryStatus.Pending\n spawnPrefetchSubtask(\n fetchRouteOnCacheMiss(routeWithoutSearch, keyWithoutSearch)\n )\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected: {\n // Either the route tree is already cached, or there's already a\n // request in progress. Since we don't need to fetch any segment data\n // for this route, there's nothing left to do.\n break\n }\n default:\n routeWithoutSearch satisfies never\n }\n }\n\n return exitStatus\n}\n\nfunction pingRootRouteTree(\n now: number,\n task: PrefetchTask,\n route: RouteCacheEntry\n): PrefetchTaskExitStatus {\n switch (route.status) {\n case EntryStatus.Empty: {\n // Route is not yet cached, and there's no request already in progress.\n // Spawn a task to request the route, load it into the cache, and ping\n // the task to continue.\n\n // TODO: There are multiple strategies in the API for prefetching\n // a route. Currently we've only implemented the main one: per-segment,\n // static-data only.\n //\n // There's also ``\n // which prefetch both static *and* dynamic data.\n // Similarly, we need to fallback to the old, per-page\n // behavior if PPR is disabled for a route (via the incremental opt-in).\n //\n // Those cases will be handled here.\n spawnPrefetchSubtask(fetchRouteOnCacheMiss(route, task.key))\n\n // If the request takes longer than a minute, a subsequent request should\n // retry instead of waiting for this one. When the response is received,\n // this value will be replaced by a new value based on the stale time sent\n // from the server.\n // TODO: We should probably also manually abort the fetch task, to reclaim\n // server bandwidth.\n route.staleAt = now + 60 * 1000\n\n // Upgrade to Pending so we know there's already a request in progress\n route.status = EntryStatus.Pending\n\n // Intentional fallthrough to the Pending branch\n }\n case EntryStatus.Pending: {\n // Still pending. We can't start prefetching the segments until the route\n // tree has loaded. Add the task to the set of blocked tasks so that it\n // is notified when the route tree is ready.\n const blockedTasks = route.blockedTasks\n if (blockedTasks === null) {\n route.blockedTasks = new Set([task])\n } else {\n blockedTasks.add(task)\n }\n return PrefetchTaskExitStatus.Blocked\n }\n case EntryStatus.Rejected: {\n // Route tree failed to load. Treat as a 404.\n return PrefetchTaskExitStatus.Done\n }\n case EntryStatus.Fulfilled: {\n if (task.phase !== PrefetchPhase.Segments) {\n // Do not prefetch segment data until we've entered the segment phase.\n return PrefetchTaskExitStatus.Done\n }\n // Recursively fill in the segment tree.\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const tree = route.tree\n\n // A task's fetch strategy gets set to `PPR` for any \"auto\" prefetch.\n // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead.\n // We don't need to do this for runtime prefetches, because those are only available in\n // `cacheComponents`, where every route is PPR.\n let fetchStrategy: FetchStrategy\n if (tree.prefetchHints & PrefetchHint.SubtreeHasInstant) {\n // If `instant` is defined anywhere on the target route, ignore the\n // fetch strategy and switch to unified strategy used by Cache\n // Components (called `PPR` for now, will likely be renamed).\n //\n // In practice, this just means that a \"full\" prefetch () has no effect. You're meant to use Runtime\n // Prefetching instead — that's the new pattern that replaces\n // prefetch={true}.\n //\n // The reason we check for `instant` rather than the `cacheComponents`\n // flag is to support incremental adoption. `prefetch={true}` will\n // continue to work until you opt into `instant`.\n fetchStrategy = FetchStrategy.PPR\n } else if (task.fetchStrategy === FetchStrategy.PPR) {\n fetchStrategy = route.supportsPerSegmentPrefetching\n ? FetchStrategy.PPR\n : FetchStrategy.LoadingBoundary\n } else {\n fetchStrategy = task.fetchStrategy\n }\n\n switch (fetchStrategy) {\n case FetchStrategy.PPR: {\n // For Cache Components pages, each segment may be prefetched\n // statically or using a runtime request, based on various\n // configurations and heuristics. We'll do this in two passes: first\n // traverse the tree and perform all the static prefetches.\n //\n // Then, if there are any segments that need a runtime request,\n // do another pass to perform a runtime prefetch.\n pingStaticHead(now, task, route)\n const exitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree\n )\n if (exitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches\n if (spawnedRuntimePrefetches !== null) {\n // During the first pass, we discovered segments that require a\n // runtime prefetch. Do a second pass to construct a request tree.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(\n now,\n task,\n route,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n const requestTree = pingRuntimePrefetches(\n now,\n task,\n route,\n tree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n // Perform a dynamic prefetch request and populate the cache with\n // the result.\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n FetchStrategy.PPRRuntime,\n requestTree,\n spawnedEntries\n )\n )\n }\n }\n\n return PrefetchTaskExitStatus.Done\n }\n case FetchStrategy.Full:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.LoadingBoundary: {\n // Prefetch multiple segments using a single dynamic request.\n // TODO: We can consolidate this branch with previous one by modeling\n // it as if the first segment in the new tree has runtime prefetching\n // enabled. Will do this as a follow-up refactor. Might want to remove\n // the special metatdata case below first. In the meantime, it's not\n // really that much duplication, just would be nice to remove one of\n // these codepaths.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy)\n const dynamicRequestTree = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree,\n spawnedEntries,\n fetchStrategy\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n fetchStrategy,\n dynamicRequestTree,\n spawnedEntries\n )\n )\n }\n return PrefetchTaskExitStatus.Done\n }\n default:\n fetchStrategy satisfies never\n }\n break\n }\n default: {\n route satisfies never\n }\n }\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingStaticHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry\n): void {\n // The Head data for a page (metadata, viewport) is not really a route\n // segment, in the sense that it doesn't appear in the route tree. But we\n // store it in the cache as if it were, using a special key.\n pingStaticSegmentData(\n now,\n task,\n route,\n readOrCreateSegmentCacheEntry(now, FetchStrategy.PPR, route.metadata),\n task.key,\n route.metadata\n )\n}\n\nfunction pingRuntimeHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n spawnedEntries: Map,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): void {\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n route.metadata,\n false,\n spawnedEntries,\n // When prefetching the head, there's no difference between Full\n // and LoadingBoundary\n fetchStrategy === FetchStrategy.LoadingBoundary\n ? FetchStrategy.Full\n : fetchStrategy\n )\n}\n\n// TODO: Rename dynamic -> runtime throughout this module\n\nfunction pingSharedPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree\n): PrefetchTaskExitStatus {\n // When Cache Components is enabled (or PPR, or a fully static route when PPR\n // is disabled; those cases are treated equivalently to Cache Components), we\n // start by prefetching each segment individually. Once we reach the \"new\"\n // part of the tree — the part that doesn't exist on the current page — we\n // may choose to switch to a runtime prefetch instead, based on the\n // information sent by the server in the route tree.\n //\n // The traversal starts in the \"shared\" part of the tree. Once we reach the\n // \"new\" part of the tree, we switch to a different traversal,\n // pingNewPartOfCacheComponentsTree.\n\n // Prefetch this segment's static data.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n newTree\n )\n pingStaticSegmentData(now, task, route, segment, task.key, newTree)\n\n // Recursively ping the children.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n let childExitStatus\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // We're still in the \"shared\" part of the tree.\n childExitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild\n )\n } else {\n // We've entered the \"new\" part of the tree. Switch\n // traversal functions.\n childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n newTreeChild\n )\n }\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingNewPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): PrefetchTaskExitStatus.InProgress | PrefetchTaskExitStatus.Done {\n // We're now prefetching in the \"new\" part of the tree, the part that doesn't\n // exist on the current page. (In other words, we're deeper than the\n // shared layouts.) Segments in here default to being prefetched statically.\n // However, if the server instructs us to, we may switch to a runtime\n // prefetch instead. Traverse the tree and check at each segment.\n if (tree.prefetchHints & PrefetchHint.HasRuntimePrefetch) {\n // This route has a runtime prefetch response. Since we're below the shared\n // layout, everything from this point should be prefetched using a single,\n // combined runtime request, rather than using per-segment static requests.\n // This is true even if some of the child segments are known to be fully\n // static — once we've decided to perform a runtime prefetch, we might as\n // well respond with the static segments in the same roundtrip. (That's how\n // regular navigations work, too.) We'll still skip over segments that are\n // already cached, though.\n //\n // It's the server's responsibility to set a reasonable value of\n // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the\n // server may send a value of `false` even if the user opts in, if it\n // determines during build that the route is always fully static. There are\n // more optimizations we can do once we implement fallback param\n // tracking, too.\n //\n // Use the task object to collect the segments that need a runtime prefetch.\n // This will signal to the outer task queue that a second traversal is\n // required to construct a request tree.\n if (task.spawnedRuntimePrefetches === null) {\n task.spawnedRuntimePrefetches = new Set([tree.requestKey])\n } else {\n task.spawnedRuntimePrefetches.add(tree.requestKey)\n }\n // Then exit the traversal without prefetching anything further.\n return PrefetchTaskExitStatus.Done\n }\n\n // This segment should not be runtime prefetched. Prefetch its static data.\n const segment = readOrCreateSegmentCacheEntry(now, task.fetchStrategy, tree)\n pingStaticSegmentData(now, task, route, segment, task.key, tree)\n if (tree.slots !== null) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n // Recursively ping the children.\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n const childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n childTree\n )\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n // This segment and all its children have finished prefetching.\n return PrefetchTaskExitStatus.Done\n}\n\nfunction diffRouteTreeAgainstCurrent(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree,\n spawnedEntries: Map,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): FlightRouterState {\n // This is a single recursive traversal that does multiple things:\n // - Finds the parts of the target route (newTree) that are not part of\n // of the current page (oldTree) by diffing them, using the same algorithm\n // as a real navigation.\n // - Constructs a request tree (FlightRouterState) that describes which\n // segments need to be prefetched and which ones are already cached.\n // - Creates a set of pending cache entries for the segments that need to\n // be prefetched, so that a subsequent prefetch task does not request the\n // same segments again.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n let requestTreeChildren: Record = {}\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // This segment is already part of the current route. Keep traversing.\n const requestTreeChild = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n } else {\n // This segment is not part of the current route. We're entering a\n // part of the tree that we need to prefetch (unless everything is\n // already cached).\n switch (fetchStrategy) {\n case FetchStrategy.LoadingBoundary: {\n // When PPR is disabled, we can't prefetch per segment. We must\n // fallback to the old prefetch behavior and send a dynamic request.\n // Only routes that include a loading boundary can be prefetched in\n // this way.\n //\n // This is simlar to a \"full\" prefetch, but we're much more\n // conservative about which segments to include in the request.\n //\n // The server will only render up to the first loading boundary\n // inside new part of the tree. If there's no loading boundary\n // anywhere in the tree, the server will never return any data, so\n // we can skip the request.\n const subtreeHasLoadingBoundary =\n (newTreeChild.prefetchHints &\n (PrefetchHint.SegmentHasLoadingBoundary |\n PrefetchHint.SubtreeHasLoadingBoundary)) !==\n 0\n const requestTreeChild = subtreeHasLoadingBoundary\n ? pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n newTreeChild,\n null,\n spawnedEntries\n )\n : // There's no loading boundary within this tree. Bail out.\n convertRouteTreeToFlightRouterState(newTreeChild)\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.PPRRuntime: {\n // This is a runtime prefetch. Fetch all cacheable data in the tree,\n // not just the static PPR shell.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.Full: {\n // This is a \"full\" prefetch. Fetch all the data in the tree, both\n // static and dynamic. We issue roughly the same request that we\n // would during a real navigation. The goal is that once the\n // navigation occurs, the router should not have to fetch any\n // additional data.\n //\n // Although the response will include dynamic data, opting into a\n // Full prefetch — via — implicitly\n // instructs the cache to treat the response as \"static\", or non-\n // dynamic, since the whole point is to cache it for\n // future navigations.\n //\n // Construct a tree (currently a FlightRouterState) that represents\n // which segments need to be prefetched and which ones are already\n // cached. If the tree is empty, then we can exit. Otherwise, we'll\n // send the request tree to the server and use the response to\n // populate the segment cache.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n default:\n fetchStrategy satisfies never\n }\n }\n }\n }\n const requestTree: FlightRouterState = [\n newTree.segment,\n requestTreeChildren,\n null,\n null,\n ]\n return requestTree\n}\n\nfunction pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n refetchMarkerContext: 'refetch' | 'inside-shared-layout' | null,\n spawnedEntries: Map\n): FlightRouterState {\n // This function is similar to pingRouteTreeAndIncludeDynamicData, except the\n // server is only going to return a minimal loading state — it will stop\n // rendering at the first loading boundary. Whereas a Full prefetch is\n // intentionally aggressive and tries to pretfetch all the data that will be\n // needed for a navigation, a LoadingBoundary prefetch is much more\n // conservative. For example, it will omit from the request tree any segment\n // that is already cached, regardles of whether it's partial or full. By\n // contrast, a Full prefetch will refetch partial segments.\n\n // \"inside-shared-layout\" tells the server where to start looking for a\n // loading boundary.\n let refetchMarker: 'refetch' | 'inside-shared-layout' | null =\n refetchMarkerContext === null ? 'inside-shared-layout' : null\n\n const segment = readOrCreateSegmentCacheEntry(now, task.fetchStrategy, tree)\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached. Add a refetch marker so the server knows\n // to start rendering here.\n // TODO: Instead of a \"refetch\" marker, we could just omit this subtree's\n // FlightRouterState from the request tree. I think this would probably\n // already work even without any updates to the server. For consistency,\n // though, I'll send the full tree and we'll look into this later as part\n // of a larger redesign of the request protocol.\n\n // Add the pending cache entry to the result map.\n spawnedEntries.set(\n tree.requestKey,\n upgradeToPendingSegment(\n segment,\n // Set the fetch strategy to LoadingBoundary to indicate that the server\n // might not include it in the pending response. If another route is able\n // to issue a per-segment request, we'll do that in the background.\n FetchStrategy.LoadingBoundary\n )\n )\n if (refetchMarkerContext !== 'refetch') {\n refetchMarker = refetchMarkerContext = 'refetch'\n } else {\n // There's already a parent with a refetch marker, so we don't need\n // to add another one.\n }\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n const segmentHasLoadingBoundary =\n (tree.prefetchHints & PrefetchHint.SegmentHasLoadingBoundary) !== 0\n if (segmentHasLoadingBoundary) {\n // This segment has a loading boundary, which means the server won't\n // render its children. So there's nothing left to prefetch along this\n // path. We can bail out.\n return convertRouteTreeToFlightRouterState(tree)\n }\n // NOTE: If the cached segment were fetched using PPR, then it might be\n // partial. We could get a more complete version of the segment by\n // including it in this non-PPR request.\n //\n // We're intentionally choosing not to, though, because it's generally\n // better to avoid doing a full prefetch whenever possible.\n break\n }\n case EntryStatus.Pending: {\n // There's another prefetch currently in progress. Don't add the refetch\n // marker yet, so the server knows it can skip rendering this segment.\n break\n }\n case EntryStatus.Rejected: {\n // The segment failed to load. We shouldn't issue another request until\n // the stale time has elapsed.\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n childTree,\n refetchMarkerContext,\n spawnedEntries\n )\n }\n }\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n ]\n return requestTree\n}\n\nfunction pingRouteTreeAndIncludeDynamicData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n isInsideRefetchingParent: boolean,\n spawnedEntries: Map,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): FlightRouterState {\n // The tree we're constructing is the same shape as the tree we're navigating\n // to. But even though this is a \"new\" tree, some of the individual segments\n // may be cached as a result of other route prefetches.\n //\n // So we need to find the first uncached segment along each path add an\n // explicit \"refetch\" marker so the server knows where to start rendering.\n // Once the server starts rendering along a path, it keeps rendering the\n // entire subtree.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n // Note that `fetchStrategy` might be different from `task.fetchStrategy`,\n // and we have to use the former here.\n // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to\n // always use runtime prefetching (via `export const prefetch`), and those should check for\n // entries that include search params.\n fetchStrategy,\n tree\n )\n\n let spawnedSegment: PendingSegmentCacheEntry | null = null\n\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached.\n if (fetchStrategy === FetchStrategy.Full) {\n // Check if there's a matching entry in the bfcache. If so, fulfill the\n // segment using the bfcache entry instead of issuing a new request.\n const fulfilled = attemptToFulfillDynamicSegmentFromBFCache(\n now,\n segment,\n tree\n )\n if (fulfilled !== null) {\n break\n }\n }\n // Include it in the request.\n spawnedSegment = upgradeToPendingSegment(segment, fetchStrategy)\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n if (\n segment.isPartial &&\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The cached segment contains dynamic holes, and was prefetched using a\n // less specific strategy than the current one. This means we're in one\n // of these cases:\n // - we have a static prefetch, and we're doing a runtime prefetch\n // - we have a static or runtime prefetch, and we're doing a Full\n // prefetch (or a navigation).\n // In either case, we need to include it in the request to get a more\n // specific (or full) version. However, if there's a non-stale bfcache\n // entry from a previous navigation, prefer that over making a new\n // request.\n if (fetchStrategy === FetchStrategy.Full) {\n const fulfilled = attemptToUpgradeSegmentFromBFCache(now, tree)\n if (fulfilled !== null) {\n break\n }\n }\n spawnedSegment = pingFullSegmentRevalidation(now, tree, fetchStrategy)\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Rejected: {\n // There's either another prefetch currently in progress, or the previous\n // attempt failed. If the new strategy can provide more content, fetch it again.\n if (\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n spawnedSegment = pingFullSegmentRevalidation(now, tree, fetchStrategy)\n }\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n childTree,\n isInsideRefetchingParent || spawnedSegment !== null,\n spawnedEntries,\n fetchStrategy\n )\n }\n }\n\n if (spawnedSegment !== null) {\n // Add the pending entry to the result map.\n spawnedEntries.set(tree.requestKey, spawnedSegment)\n }\n\n // Don't bother to add a refetch marker if one is already present in a parent.\n const refetchMarker =\n !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null\n\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n ]\n return requestTree\n}\n\nfunction pingRuntimePrefetches(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n spawnedRuntimePrefetches: Set,\n spawnedEntries: Map\n): FlightRouterState {\n // Construct a request tree (FlightRouterState) for a runtime prefetch. If\n // a segment is part of the runtime prefetch, the tree is constructed by\n // diffing against what's already in the prefetch cache. Otherwise, we send\n // a regular FlightRouterState with no special markers.\n //\n // See pingRouteTreeAndIncludeDynamicData for details.\n if (spawnedRuntimePrefetches.has(tree.requestKey)) {\n // This segment needs a runtime prefetch.\n return pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n tree,\n false,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n }\n let requestTreeChildren: Record = {}\n const slots = tree.slots\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(\n now,\n task,\n route,\n childTree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n }\n }\n\n // This segment is not part of the runtime prefetch. Clone the base tree.\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n null,\n ]\n return requestTree\n}\n\nfunction pingStaticSegmentData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n segment: SegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n switch (segment.status) {\n case EntryStatus.Empty:\n if (process.env.__NEXT_PREFETCH_INLINING) {\n // All segment data for this route is bundled into a single\n // /_inlined response. Walk the full route tree to collect all\n // Empty segments, upgrade them to Pending, and spawn one\n // bundled request. Subsequent calls for other segments in the\n // same tree will see them as Pending and skip.\n const inlinedEntries = collectInlinedEntries(now, route)\n if (inlinedEntries.size > 0) {\n spawnPrefetchSubtask(\n fetchInlinedSegmentsOnCacheMiss(\n route,\n routeKey,\n route.tree,\n inlinedEntries\n )\n )\n }\n break\n }\n // Upgrade to Pending so we know there's already a request in progress\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(segment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n )\n break\n case EntryStatus.Pending: {\n // There's already a request in progress. Depending on what kind of\n // request it is, we may want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // There's already a request in progress. Don't do anything.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a pending request, but because it's using the old\n // prefetching strategy, we can't be sure if it will be fulfilled by\n // the response — it might be inside the loading boundary. Perform\n // a revalidation, but because it's speculative, wait to do it at\n // background priority.\n if (background(task)) {\n // TODO: Instead of speculatively revalidating, consider including\n // `hasLoading` in the route tree prefetch response.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n }\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Rejected: {\n // The existing entry in the cache was rejected. Depending on how it\n // was originally fetched, we may or may not want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // The previous attempt to fetch this entry failed. Don't attempt to\n // fetch it again until the entry expires.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a rejected entry, but it was fetched using the loading\n // boundary strategy. So the reason it wasn't returned by the server\n // might just be because it was inside a loading boundary. Or because\n // there was a dynamic rewrite. Revalidate it using the per-\n // segment strategy.\n //\n // Because a rejected segment will definitely prevent the segment (and\n // all of its children) from rendering, we perform this revalidation\n // immediately instead of deferring it to a background task.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Fulfilled:\n // Segment is already cached. There's nothing left to prefetch.\n break\n default:\n segment satisfies never\n }\n\n // Segments do not have dependent tasks, so once the prefetch is initiated,\n // there's nothing else for us to do (except write the server data into the\n // entry, which is handled by `fetchSegmentOnCacheMiss`).\n}\n\n/**\n * Walks the RouteTree (including the head metadata) and collects any segments\n * that are still Empty into a Map, upgrading them to Pending. These entries\n * will be fulfilled by the inlined prefetch response.\n */\nfunction collectInlinedEntries(\n now: number,\n route: FulfilledRouteCacheEntry\n): Map {\n const entries = new Map()\n collectInlinedEntriesImpl(now, route.tree, entries)\n // Also collect the head/metadata entry.\n const headEntry = readOrCreateSegmentCacheEntry(\n now,\n FetchStrategy.PPR,\n route.metadata\n )\n if (headEntry.status === EntryStatus.Empty) {\n entries.set(\n route.metadata.requestKey,\n upgradeToPendingSegment(headEntry, FetchStrategy.PPR)\n )\n }\n return entries\n}\n\nfunction collectInlinedEntriesImpl(\n now: number,\n tree: RouteTree,\n entries: Map\n): void {\n const entry = readOrCreateSegmentCacheEntry(now, FetchStrategy.PPR, tree)\n if (entry.status === EntryStatus.Empty) {\n entries.set(\n tree.requestKey,\n upgradeToPendingSegment(entry, FetchStrategy.PPR)\n )\n }\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n collectInlinedEntriesImpl(now, tree.slots[parallelRouteKey], entries)\n }\n }\n}\n\nfunction pingPPRSegmentRevalidation(\n now: number,\n route: FulfilledRouteCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n FetchStrategy.PPR,\n tree\n )\n switch (revalidatingSegment.status) {\n case EntryStatus.Empty:\n // Spawn a prefetch request. The fetch function handles upserting\n // the entry at the correct fulfilled vary path upon completion.\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(revalidatingSegment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n )\n break\n case EntryStatus.Pending:\n // There's already a revalidation in progress.\n break\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n break\n default:\n revalidatingSegment satisfies never\n }\n}\n\nfunction pingFullSegmentRevalidation(\n now: number,\n tree: RouteTree,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): PendingSegmentCacheEntry | null {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n fetchStrategy,\n tree\n )\n if (revalidatingSegment.status === EntryStatus.Empty) {\n // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the\n // segments that we need. So we don't initiate a request here directly. By\n // returning a pending entry from this function, it signals to the caller\n // that this segment should be included in the request that's sent to\n // the server.\n const pendingSegment = upgradeToPendingSegment(\n revalidatingSegment,\n fetchStrategy\n )\n // The upsert is handled by fulfillEntrySpawnedByRuntimePrefetch\n // when the dynamic prefetch response is written into the cache.\n return pendingSegment\n } else {\n // There's already a revalidation in progress.\n const nonEmptyRevalidatingSegment = revalidatingSegment\n if (\n canNewFetchStrategyProvideMoreContent(\n nonEmptyRevalidatingSegment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The existing revalidation was fetched using a less specific strategy.\n // Reset it and start a new revalidation.\n const emptySegment = overwriteRevalidatingSegmentCacheEntry(\n now,\n fetchStrategy,\n tree\n )\n const pendingSegment = upgradeToPendingSegment(\n emptySegment,\n fetchStrategy\n )\n // The upsert is handled by fulfillEntrySpawnedByRuntimePrefetch\n // when the dynamic prefetch response is written into the cache.\n return pendingSegment\n }\n switch (nonEmptyRevalidatingSegment.status) {\n case EntryStatus.Pending:\n // There's already an in-progress prefetch that includes this segment.\n return null\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n return null\n default:\n nonEmptyRevalidatingSegment satisfies never\n return null\n }\n }\n}\n\nfunction doesCurrentSegmentMatchCachedSegment(\n route: FulfilledRouteCacheEntry,\n currentSegment: Segment,\n cachedSegment: Segment\n): boolean {\n if (cachedSegment === PAGE_SEGMENT_KEY) {\n // In the FlightRouterState stored by the router, the page segment has the\n // rendered search params appended to the name of the segment. In the\n // prefetch cache, however, this is stored separately. So, when comparing\n // the router's current FlightRouterState to the cached FlightRouterState,\n // we need to make sure we compare both parts of the segment.\n // TODO: This is not modeled clearly. We use the same type,\n // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache\n // _and_ the server response format, when conceptually those are three\n // different things and treated in different ways. We should encode more of\n // this information into the type design so mistakes are less likely.\n return (\n currentSegment ===\n addSearchParamsIfPageSegment(\n PAGE_SEGMENT_KEY,\n Object.fromEntries(new URLSearchParams(route.renderedSearch))\n )\n )\n }\n // Non-page segments are compared using the same function as the server\n return matchSegment(cachedSegment, currentSegment)\n}\n\n// -----------------------------------------------------------------------------\n// The remainder of the module is a MinHeap implementation. Try not to put any\n// logic below here unless it's related to the heap algorithm. We can extract\n// this to a separate module if/when we need multiple kinds of heaps.\n// -----------------------------------------------------------------------------\n\nfunction compareQueuePriority(a: PrefetchTask, b: PrefetchTask) {\n // Since the queue is a MinHeap, this should return a positive number if b is\n // higher priority than a, and a negative number if a is higher priority\n // than b.\n\n // `priority` is an integer, where higher numbers are higher priority.\n const priorityDiff = b.priority - a.priority\n if (priorityDiff !== 0) {\n return priorityDiff\n }\n\n // If the priority is the same, check which phase the prefetch is in — is it\n // prefetching the route tree, or the segments? Route trees are prioritized.\n const phaseDiff = b.phase - a.phase\n if (phaseDiff !== 0) {\n return phaseDiff\n }\n\n // Finally, check the insertion order. `sortId` is an incrementing counter\n // assigned to prefetches. We want to process the newest prefetches first.\n return b.sortId - a.sortId\n}\n\nfunction heapPush(heap: Array, node: PrefetchTask): void {\n const index = heap.length\n heap.push(node)\n node._heapIndex = index\n heapSiftUp(heap, node, index)\n}\n\nfunction heapPeek(heap: Array): PrefetchTask | null {\n return heap.length === 0 ? null : heap[0]\n}\n\nfunction heapPop(heap: Array): PrefetchTask | null {\n if (heap.length === 0) {\n return null\n }\n const first = heap[0]\n first._heapIndex = -1\n const last = heap.pop() as PrefetchTask\n if (last !== first) {\n heap[0] = last\n last._heapIndex = 0\n heapSiftDown(heap, last, 0)\n }\n return first\n}\n\nfunction heapDelete(heap: Array, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n node._heapIndex = -1\n if (heap.length !== 0) {\n const last = heap.pop() as PrefetchTask\n if (last !== node) {\n heap[index] = last\n last._heapIndex = index\n heapSiftDown(heap, last, index)\n }\n }\n }\n}\n\nfunction heapResift(heap: Array, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n if (index === 0) {\n heapSiftDown(heap, node, 0)\n } else {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Sift up.\n heapSiftUp(heap, node, index)\n } else {\n // The parent is smaller (or equal). Sift down.\n heapSiftDown(heap, node, index)\n }\n }\n }\n}\n\nfunction heapSiftUp(\n heap: Array,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n while (index > 0) {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Swap positions.\n heap[parentIndex] = node\n node._heapIndex = parentIndex\n heap[index] = parent\n parent._heapIndex = index\n\n index = parentIndex\n } else {\n // The parent is smaller. Exit.\n return\n }\n }\n}\n\nfunction heapSiftDown(\n heap: Array,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n const length = heap.length\n const halfLength = length >>> 1\n while (index < halfLength) {\n const leftIndex = (index + 1) * 2 - 1\n const left = heap[leftIndex]\n const rightIndex = leftIndex + 1\n const right = heap[rightIndex]\n\n // If the left or right node is smaller, swap with the smaller of those.\n if (compareQueuePriority(left, node) < 0) {\n if (rightIndex < length && compareQueuePriority(right, left) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n heap[index] = left\n left._heapIndex = index\n heap[leftIndex] = node\n node._heapIndex = leftIndex\n\n index = leftIndex\n }\n } else if (rightIndex < length && compareQueuePriority(right, node) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n // Neither child is smaller. Exit.\n return\n }\n }\n}\n","import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './segment-cache/types'\nimport { createCacheKey } from './segment-cache/cache-key'\nimport {\n type PrefetchTask,\n schedulePrefetchTask as scheduleSegmentPrefetchTask,\n cancelPrefetchTask,\n reschedulePrefetchTask,\n isPrefetchTaskDirty,\n} from './segment-cache/scheduler'\nimport { startTransition } from 'react'\n\ntype LinkElement = HTMLAnchorElement | SVGAElement\n\ntype Element = LinkElement | HTMLFormElement\n\n// Properties that are shared between Link and Form instances. We use the same\n// shape for both to prevent a polymorphic de-opt in the VM.\ntype LinkOrFormInstanceShared = {\n router: AppRouterInstance\n fetchStrategy: PrefetchTaskFetchStrategy\n\n isVisible: boolean\n\n // The most recently initiated prefetch task. It may or may not have\n // already completed. The same prefetch task object can be reused across\n // multiple prefetches of the same link.\n prefetchTask: PrefetchTask | null\n}\n\nexport type FormInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: null\n}\n\ntype PrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype NonPrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: null\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype PrefetchableInstance = PrefetchableLinkInstance | FormInstance\n\nexport type LinkInstance =\n | PrefetchableLinkInstance\n | NonPrefetchableLinkInstance\n\n// Tracks the most recently navigated link instance. When null, indicates\n// the current navigation was not initiated by a link click.\nlet linkForMostRecentNavigation: LinkInstance | null = null\n\n// Status object indicating link is pending\nexport const PENDING_LINK_STATUS = { pending: true }\n\n// Status object indicating link is idle\nexport const IDLE_LINK_STATUS = { pending: false }\n\n// Updates the loading state when navigating between links\n// - Resets the previous link's loading state\n// - Sets the new link's loading state\n// - Updates tracking of current navigation\nexport function setLinkForCurrentNavigation(link: LinkInstance | null) {\n startTransition(() => {\n linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS)\n link?.setOptimisticLinkStatus(PENDING_LINK_STATUS)\n linkForMostRecentNavigation = link\n })\n}\n\n// Unmounts the current link instance from navigation tracking\nexport function unmountLinkForCurrentNavigation(link: LinkInstance) {\n if (linkForMostRecentNavigation === link) {\n linkForMostRecentNavigation = null\n }\n}\n\n/**\n * Returns the link instance that initiated the most recent navigation.\n * Returns null if the navigation was not initiated by a link click.\n *\n * Used by the Instant Navigation Testing API in dev mode to match the\n * fetch strategy of the link during cache-miss navigations.\n */\nexport function getLinkForCurrentNavigation(): LinkInstance | null {\n return linkForMostRecentNavigation\n}\n\n// Use a WeakMap to associate a Link instance with its DOM element. This is\n// used by the IntersectionObserver to track the link's visibility.\nconst prefetchable:\n | WeakMap\n | Map =\n typeof WeakMap === 'function' ? new WeakMap() : new Map()\n\n// A Set of the currently visible links. We re-prefetch visible links after a\n// cache invalidation, or when the current URL changes. It's a separate data\n// structure from the WeakMap above because only the visible links need to\n// be enumerated.\nconst prefetchableAndVisible: Set = new Set()\n\n// A single IntersectionObserver instance shared by all components.\nconst observer: IntersectionObserver | null =\n typeof IntersectionObserver === 'function'\n ? new IntersectionObserver(handleIntersect, {\n rootMargin: '200px',\n })\n : null\n\nfunction observeVisibility(element: Element, instance: PrefetchableInstance) {\n const existingInstance = prefetchable.get(element)\n if (existingInstance !== undefined) {\n // This shouldn't happen because each component should have its own\n // anchor tag instance, but it's defensive coding to avoid a memory leak in\n // case there's a logical error somewhere else.\n unmountPrefetchableInstance(element)\n }\n // Only track prefetchable links that have a valid prefetch URL\n prefetchable.set(element, instance)\n if (observer !== null) {\n observer.observe(element)\n }\n}\n\nfunction coercePrefetchableUrl(href: string): URL | null {\n if (typeof window !== 'undefined') {\n const { createPrefetchURL } =\n require('./app-router-utils') as typeof import('./app-router-utils')\n\n try {\n return createPrefetchURL(href)\n } catch {\n // createPrefetchURL sometimes throws an error if an invalid URL is\n // provided, though I'm not sure if it's actually necessary.\n // TODO: Consider removing the throw from the inner function, or change it\n // to reportError. Or maybe the error isn't even necessary for automatic\n // prefetches, just navigations.\n const reportErrorFn =\n typeof reportError === 'function' ? reportError : console.error\n reportErrorFn(\n `Cannot prefetch '${href}' because it cannot be converted to a URL.`\n )\n return null\n }\n } else {\n return null\n }\n}\n\nexport function mountLinkInstance(\n element: LinkElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy,\n prefetchEnabled: boolean,\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n): LinkInstance {\n if (prefetchEnabled) {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL !== null) {\n const instance: PrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus,\n }\n // We only observe the link's visibility if it's prefetchable. For\n // example, this excludes links to external URLs.\n observeVisibility(element, instance)\n return instance\n }\n }\n // If the link is not prefetchable, we still create an instance so we can\n // track its optimistic state (i.e. useLinkStatus).\n const instance: NonPrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: null,\n setOptimisticLinkStatus,\n }\n return instance\n}\n\nexport function mountFormInstance(\n element: HTMLFormElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy\n): void {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL === null) {\n // This href is not prefetchable, so we don't track it.\n // TODO: We currently observe/unobserve a form every time its href changes.\n // For Links, this isn't a big deal because the href doesn't usually change,\n // but for forms it's extremely common. We should optimize this.\n return\n }\n const instance: FormInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus: null,\n }\n observeVisibility(element, instance)\n}\n\nexport function unmountPrefetchableInstance(element: Element) {\n const instance = prefetchable.get(element)\n if (instance !== undefined) {\n prefetchable.delete(element)\n prefetchableAndVisible.delete(instance)\n const prefetchTask = instance.prefetchTask\n if (prefetchTask !== null) {\n cancelPrefetchTask(prefetchTask)\n }\n }\n if (observer !== null) {\n observer.unobserve(element)\n }\n}\n\nfunction handleIntersect(entries: Array) {\n for (const entry of entries) {\n // Some extremely old browsers or polyfills don't reliably support\n // isIntersecting so we check intersectionRatio instead. (Do we care? Not\n // really. But whatever this is fine.)\n const isVisible = entry.intersectionRatio > 0\n onLinkVisibilityChanged(entry.target as HTMLAnchorElement, isVisible)\n }\n}\n\nexport function onLinkVisibilityChanged(element: Element, isVisible: boolean) {\n if (process.env.NODE_ENV !== 'production') {\n // Prefetching on viewport is disabled in development for performance\n // reasons, because it requires compiling the target page.\n // TODO: Investigate re-enabling this.\n return\n }\n\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n\n instance.isVisible = isVisible\n if (isVisible) {\n prefetchableAndVisible.add(instance)\n } else {\n prefetchableAndVisible.delete(instance)\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Default)\n}\n\nexport function onNavigationIntent(\n element: HTMLAnchorElement | SVGAElement,\n unstable_upgradeToDynamicPrefetch: boolean\n) {\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n // Prefetch the link on hover/touchstart.\n if (instance !== undefined) {\n if (\n process.env.__NEXT_DYNAMIC_ON_HOVER &&\n unstable_upgradeToDynamicPrefetch\n ) {\n // Switch to a full prefetch\n instance.fetchStrategy = FetchStrategy.Full\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Intent)\n }\n}\n\nfunction rescheduleLinkPrefetch(\n instance: PrefetchableInstance,\n priority: PrefetchPriority.Default | PrefetchPriority.Intent\n) {\n // Ensures that app-router-instance is not compiled in the server bundle\n if (typeof window !== 'undefined') {\n const existingPrefetchTask = instance.prefetchTask\n\n if (!instance.isVisible) {\n // Cancel any in-progress prefetch task. (If it already finished then this\n // is a no-op.)\n if (existingPrefetchTask !== null) {\n cancelPrefetchTask(existingPrefetchTask)\n }\n // We don't need to reset the prefetchTask to null upon cancellation; an\n // old task object can be rescheduled with reschedulePrefetchTask. This is a\n // micro-optimization but also makes the code simpler (don't need to\n // worry about whether an old task object is stale).\n return\n }\n\n const { getCurrentAppRouterState } =\n require('./app-router-instance') as typeof import('./app-router-instance')\n\n const appRouterState = getCurrentAppRouterState()\n if (appRouterState !== null) {\n const treeAtTimeOfPrefetch = appRouterState.tree\n if (existingPrefetchTask === null) {\n // Initiate a prefetch task.\n const nextUrl = appRouterState.nextUrl\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority,\n null\n )\n } else {\n // We already have an old task object that we can reschedule. This is\n // effectively the same as canceling the old task and creating a new one.\n reschedulePrefetchTask(\n existingPrefetchTask,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority\n )\n }\n }\n }\n}\n\nexport function pingVisibleLinks(\n nextUrl: string | null,\n tree: FlightRouterState\n) {\n // For each currently visible link, cancel the existing prefetch task (if it\n // exists) and schedule a new one. This is effectively the same as if all the\n // visible links left and then re-entered the viewport.\n //\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n for (const instance of prefetchableAndVisible) {\n const task = instance.prefetchTask\n if (task !== null && !isPrefetchTaskDirty(task, nextUrl, tree)) {\n // The cache has not been invalidated, and none of the inputs have\n // changed. Bail out.\n continue\n }\n // Something changed. Cancel the existing prefetch task and schedule a\n // new one.\n if (task !== null) {\n cancelPrefetchTask(task)\n }\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n tree,\n instance.fetchStrategy,\n PrefetchPriority.Default,\n null\n )\n }\n}\n","import { parsePath } from './parse-path'\n\n/**\n * Checks if a given path starts with a given prefix. It ensures it matches\n * exactly without containing extra chars. e.g. prefix /docs should replace\n * for /docs, /docs/, /docs/a but not /docsss\n * @param path The path to check.\n * @param prefix The prefix to check against.\n */\nexport function pathHasPrefix(path: string, prefix: string) {\n if (typeof path !== 'string') {\n return false\n }\n\n const { pathname } = parsePath(path)\n return pathname === prefix || pathname.startsWith(prefix + '/')\n}\n","import { pathHasPrefix } from '../shared/lib/router/utils/path-has-prefix'\n\nconst basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || ''\n\nexport function hasBasePath(path: string): boolean {\n return pathHasPrefix(path, basePath)\n}\n","import { isAbsoluteUrl, getLocationOrigin } from '../../utils'\nimport { hasBasePath } from '../../../../client/has-base-path'\n\n/**\n * Detects whether a given url is routable by the Next.js router (browser only).\n */\nexport function isLocalURL(url: string): boolean {\n // prevent a hydration mismatch on href for url with anchor refs\n if (!isAbsoluteUrl(url)) return true\n try {\n // absolute urls can be local if they are on the same origin\n const locationOrigin = getLocationOrigin()\n const resolved = new URL(url, locationOrigin)\n return resolved.origin === locationOrigin && hasBasePath(resolved.pathname)\n } catch (_) {\n return false\n }\n}\n","let errorOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const errors = new Set()\n errorOnce = (msg: string) => {\n if (!errors.has(msg)) {\n console.error(msg)\n }\n errors.add(msg)\n }\n}\n\nexport { errorOnce }\n","'use client'\n\nimport React, { createContext, useContext, useOptimistic, useRef } from 'react'\nimport type { UrlObject } from 'url'\nimport { formatUrl } from '../../shared/lib/router/utils/format-url'\nimport { AppRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { useMergedRef } from '../use-merged-ref'\nimport { isAbsoluteUrl } from '../../shared/lib/utils'\nimport { addBasePath } from '../add-base-path'\nimport { warnOnce } from '../../shared/lib/utils/warn-once'\nimport { ScrollBehavior } from '../components/router-reducer/router-reducer-types'\nimport type { PENDING_LINK_STATUS } from '../components/links'\nimport {\n IDLE_LINK_STATUS,\n mountLinkInstance,\n onNavigationIntent,\n unmountLinkForCurrentNavigation,\n unmountPrefetchableInstance,\n type LinkInstance,\n} from '../components/links'\nimport { isLocalURL } from '../../shared/lib/router/utils/is-local-url'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n} from '../components/segment-cache/types'\nimport { errorOnce } from '../../shared/lib/utils/error-once'\n\ntype Url = string | UrlObject\ntype RequiredKeys = {\n [K in keyof T]-?: {} extends Pick ? never : K\n}[keyof T]\ntype OptionalKeys = {\n [K in keyof T]-?: {} extends Pick ? K : never\n}[keyof T]\n\ntype OnNavigateEventHandler = (event: { preventDefault: () => void }) => void\n\ntype InternalLinkProps = {\n /**\n * **Required**. The path or URL to navigate to. It can also be an object (similar to `URL`).\n *\n * @example\n * ```tsx\n * // Navigate to /dashboard:\n * Dashboard\n *\n * // Navigate to /about?name=test:\n * \n * About\n * \n * ```\n *\n * @remarks\n * - For external URLs, use a fully qualified URL such as `https://...`.\n * - In the App Router, dynamic routes must not include bracketed segments in `href`.\n */\n href: Url\n\n /**\n * @deprecated v10.0.0: `href` props pointing to a dynamic route are\n * automatically resolved and no longer require the `as` prop.\n */\n as?: Url\n\n /**\n * Replace the current `history` state instead of adding a new URL into the stack.\n *\n * @defaultValue `false`\n *\n * @example\n * ```tsx\n * \n * About (replaces the history state)\n * \n * ```\n */\n replace?: boolean\n\n /**\n * Whether to override the default scroll behavior. If `true`, Next.js attempts to maintain\n * the scroll position if the newly navigated page is still visible. If not, it scrolls to the top.\n *\n * If `false`, Next.js will not modify the scroll behavior at all.\n *\n * @defaultValue `true`\n *\n * @example\n * ```tsx\n * \n * No auto scroll\n * \n * ```\n */\n scroll?: boolean\n\n /**\n * Update the path of the current page without rerunning data fetching methods\n * like `getStaticProps`, `getServerSideProps`, or `getInitialProps`.\n *\n * @remarks\n * `shallow` only applies to the Pages Router. For the App Router, see the\n * [following documentation](https://nextjs.org/docs/app/building-your-application/routing/linking-and-navigating#using-the-native-history-api).\n *\n * @defaultValue `false`\n *\n * @example\n * ```tsx\n * \n * Shallow navigation\n * \n * ```\n */\n shallow?: boolean\n\n /**\n * Forces `Link` to pass its `href` to the child component. Useful if the child is a custom\n * component that wraps an `` tag, or if you're using certain styling libraries.\n *\n * @defaultValue `false`\n *\n * @example\n * ```tsx\n * \n * Dashboard\n * \n * ```\n */\n passHref?: boolean\n\n /**\n * Prefetch the page in the background.\n * Any `` that is in the viewport (initially or through scroll) will be prefetched.\n * Prefetch can be disabled by passing `prefetch={false}`.\n *\n * @remarks\n * Prefetching is only enabled in production.\n *\n * - In the **App Router**:\n * - `\"auto\"`, `null`, `undefined` (default): Prefetch behavior depends on static vs dynamic routes:\n * - Static routes: fully prefetched\n * - Dynamic routes: partial prefetch to the nearest segment with a `loading.js`\n * - `true`: Always prefetch the full route and data.\n * - `false`: Disable prefetching on both viewport and hover.\n * - In the **Pages Router**:\n * - `true` (default): Prefetches the route and data in the background on viewport or hover.\n * - `false`: Prefetch only on hover, not on viewport.\n *\n * @defaultValue `true` (Pages Router) or `null` (App Router)\n *\n * @example\n * ```tsx\n * \n * Dashboard\n * \n * ```\n */\n prefetch?: boolean | 'auto' | null\n\n /**\n * (unstable) Switch to a full prefetch on hover. Effectively the same as\n * updating the prefetch prop to `true` in a mouse event.\n */\n unstable_dynamicOnHover?: boolean\n\n /**\n * The active locale is automatically prepended in the Pages Router. `locale` allows for providing\n * a different locale, or can be set to `false` to opt out of automatic locale behavior.\n *\n * @remarks\n * Note: locale only applies in the Pages Router and is ignored in the App Router.\n *\n * @example\n * ```tsx\n * // Use the 'fr' locale:\n * \n * About (French)\n * \n *\n * // Disable locale prefix:\n * \n * About (no locale prefix)\n * \n * ```\n */\n locale?: string | false\n\n /**\n * Enable legacy link behavior.\n *\n * @deprecated This will be removed in a future version\n * @defaultValue `false`\n * @see https://github.com/vercel/next.js/commit/489e65ed98544e69b0afd7e0cfc3f9f6c2b803b7\n */\n legacyBehavior?: boolean\n\n /**\n * Optional event handler for when the mouse pointer is moved onto the ``.\n */\n onMouseEnter?: React.MouseEventHandler\n\n /**\n * Optional event handler for when the `` is touched.\n */\n onTouchStart?: React.TouchEventHandler\n\n /**\n * Optional event handler for when the `` is clicked.\n */\n onClick?: React.MouseEventHandler\n\n /**\n * Optional event handler for when the `` is navigated.\n */\n onNavigate?: OnNavigateEventHandler\n\n /**\n * Transition types to apply when navigating. These types are passed to\n * [`React.addTransitionType`](https://react.dev/reference/react/addTransitionType)\n * inside the navigation transition, enabling\n * [``](https://react.dev/reference/react/ViewTransition) components\n * to apply different animations based on the type of navigation.\n *\n * @example\n * ```tsx\n * About\n * ```\n */\n transitionTypes?: string[]\n}\n\n// TODO-APP: Include the full set of Anchor props\n// adding this to the publicly exported type currently breaks existing apps\n\n// `RouteInferType` is a stub here to avoid breaking `typedRoutes` when the type\n// isn't generated yet. It will be replaced when type generation runs.\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nexport type LinkProps = InternalLinkProps\ntype LinkPropsRequired = RequiredKeys\ntype LinkPropsOptional = OptionalKeys>\n\nfunction isModifiedEvent(event: React.MouseEvent): boolean {\n const eventTarget = event.currentTarget as HTMLAnchorElement | SVGAElement\n const target = eventTarget.getAttribute('target')\n return (\n (target && target !== '_self') ||\n event.metaKey ||\n event.ctrlKey ||\n event.shiftKey ||\n event.altKey || // triggers resource download\n (event.nativeEvent && event.nativeEvent.which === 2)\n )\n}\n\nfunction linkClicked(\n e: React.MouseEvent,\n href: string,\n linkInstanceRef: React.RefObject,\n replace?: boolean,\n scroll?: boolean,\n onNavigate?: OnNavigateEventHandler,\n transitionTypes?: string[]\n): void {\n if (typeof window !== 'undefined') {\n const { nodeName } = e.currentTarget\n\n // anchors inside an svg have a lowercase nodeName\n const isAnchorNodeName = nodeName.toUpperCase() === 'A'\n if (\n (isAnchorNodeName && isModifiedEvent(e)) ||\n e.currentTarget.hasAttribute('download')\n ) {\n // ignore click for browser’s default behavior\n return\n }\n\n if (!isLocalURL(href)) {\n if (replace) {\n // browser default behavior does not replace the history state\n // so we need to do it manually\n e.preventDefault()\n location.replace(href)\n }\n\n // ignore click for browser’s default behavior\n return\n }\n\n e.preventDefault()\n\n if (onNavigate) {\n let isDefaultPrevented = false\n\n onNavigate({\n preventDefault: () => {\n isDefaultPrevented = true\n },\n })\n\n if (isDefaultPrevented) {\n return\n }\n }\n\n const { dispatchNavigateAction } =\n require('../components/app-router-instance') as typeof import('../components/app-router-instance')\n\n React.startTransition(() => {\n dispatchNavigateAction(\n href,\n replace ? 'replace' : 'push',\n scroll === false ? ScrollBehavior.NoScroll : ScrollBehavior.Default,\n linkInstanceRef.current,\n transitionTypes\n )\n })\n }\n}\n\nfunction formatStringOrUrl(urlObjOrString: UrlObject | string): string {\n if (typeof urlObjOrString === 'string') {\n return urlObjOrString\n }\n\n return formatUrl(urlObjOrString)\n}\n\n/**\n * A React component that extends the HTML `` element to provide\n * [prefetching](https://nextjs.org/docs/app/building-your-application/routing/linking-and-navigating#2-prefetching)\n * and client-side navigation. This is the primary way to navigate between routes in Next.js.\n *\n * @remarks\n * - Prefetching is only enabled in production.\n *\n * @see https://nextjs.org/docs/app/api-reference/components/link\n */\nexport default function LinkComponent(\n props: LinkProps & {\n children: React.ReactNode\n ref: React.Ref\n }\n) {\n const [linkStatus, setOptimisticLinkStatus] = useOptimistic(IDLE_LINK_STATUS)\n\n let children: React.ReactNode\n\n const linkInstanceRef = useRef(null)\n\n const {\n href: hrefProp,\n as: asProp,\n children: childrenProp,\n prefetch: prefetchProp = null,\n passHref,\n replace,\n shallow,\n scroll,\n onClick,\n onMouseEnter: onMouseEnterProp,\n onTouchStart: onTouchStartProp,\n legacyBehavior = false,\n onNavigate,\n transitionTypes,\n ref: forwardedRef,\n unstable_dynamicOnHover,\n ...restProps\n } = props\n\n children = childrenProp\n\n if (\n legacyBehavior &&\n (typeof children === 'string' || typeof children === 'number')\n ) {\n children = {children}\n }\n\n const router = React.useContext(AppRouterContext)\n\n const prefetchEnabled = prefetchProp !== false\n\n const fetchStrategy =\n prefetchProp !== false\n ? getFetchStrategyFromPrefetchProp(prefetchProp)\n : // TODO: it makes no sense to assign a fetchStrategy when prefetching is disabled.\n FetchStrategy.PPR\n\n if (process.env.NODE_ENV !== 'production') {\n function createPropError(args: {\n key: string\n expected: string\n actual: string\n }) {\n return new Error(\n `Failed prop type: The prop \\`${args.key}\\` expects a ${args.expected} in \\`\\`, but got \\`${args.actual}\\` instead.` +\n (typeof window !== 'undefined'\n ? \"\\nOpen your browser's console to view the Component stack trace.\"\n : '')\n )\n }\n\n // TypeScript trick for type-guarding:\n const requiredPropsGuard: Record = {\n href: true,\n } as const\n const requiredProps: LinkPropsRequired[] = Object.keys(\n requiredPropsGuard\n ) as LinkPropsRequired[]\n requiredProps.forEach((key: LinkPropsRequired) => {\n if (key === 'href') {\n if (\n props[key] == null ||\n (typeof props[key] !== 'string' && typeof props[key] !== 'object')\n ) {\n throw createPropError({\n key,\n expected: '`string` or `object`',\n actual: props[key] === null ? 'null' : typeof props[key],\n })\n }\n } else {\n // TypeScript trick for type-guarding:\n const _: never = key\n }\n })\n\n // TypeScript trick for type-guarding:\n const optionalPropsGuard: Record = {\n as: true,\n replace: true,\n scroll: true,\n shallow: true,\n passHref: true,\n prefetch: true,\n unstable_dynamicOnHover: true,\n onClick: true,\n onMouseEnter: true,\n onTouchStart: true,\n legacyBehavior: true,\n onNavigate: true,\n transitionTypes: true,\n } as const\n const optionalProps: LinkPropsOptional[] = Object.keys(\n optionalPropsGuard\n ) as LinkPropsOptional[]\n optionalProps.forEach((key: LinkPropsOptional) => {\n const valType = typeof props[key]\n\n if (key === 'as') {\n if (props[key] && valType !== 'string' && valType !== 'object') {\n throw createPropError({\n key,\n expected: '`string` or `object`',\n actual: valType,\n })\n }\n } else if (\n key === 'onClick' ||\n key === 'onMouseEnter' ||\n key === 'onTouchStart' ||\n key === 'onNavigate'\n ) {\n if (props[key] && valType !== 'function') {\n throw createPropError({\n key,\n expected: '`function`',\n actual: valType,\n })\n }\n } else if (\n key === 'replace' ||\n key === 'scroll' ||\n key === 'shallow' ||\n key === 'passHref' ||\n key === 'legacyBehavior' ||\n key === 'unstable_dynamicOnHover'\n ) {\n if (props[key] != null && valType !== 'boolean') {\n throw createPropError({\n key,\n expected: '`boolean`',\n actual: valType,\n })\n }\n } else if (key === 'prefetch') {\n if (\n props[key] != null &&\n valType !== 'boolean' &&\n props[key] !== 'auto'\n ) {\n throw createPropError({\n key,\n expected: '`boolean | \"auto\"`',\n actual: valType,\n })\n }\n } else if (key === 'transitionTypes') {\n if (props[key] != null && !Array.isArray(props[key])) {\n throw createPropError({\n key,\n expected: '`string[]`',\n actual: valType,\n })\n }\n } else {\n // TypeScript trick for type-guarding:\n const _: never = key\n }\n })\n }\n\n const resolvedHref = asProp || hrefProp\n const formattedHref = formatStringOrUrl(resolvedHref)\n\n if (process.env.NODE_ENV !== 'production') {\n if (props.locale) {\n warnOnce(\n 'The `locale` prop is not supported in `next/link` while using the `app` router. Read more about app router internalization: https://nextjs.org/docs/app/building-your-application/routing/internationalization'\n )\n }\n if (!asProp) {\n let href: string | undefined\n if (typeof resolvedHref === 'string') {\n href = resolvedHref\n } else if (\n typeof resolvedHref === 'object' &&\n typeof resolvedHref.pathname === 'string'\n ) {\n href = resolvedHref.pathname\n }\n\n if (href) {\n const hasDynamicSegment = href\n .split('/')\n .some((segment) => segment.startsWith('[') && segment.endsWith(']'))\n\n if (hasDynamicSegment) {\n throw new Error(\n `Dynamic href \\`${href}\\` found in while using the \\`/app\\` router, this is not supported. Read more: https://nextjs.org/docs/messages/app-dir-dynamic-href`\n )\n }\n }\n }\n }\n\n // This will return the first child, if multiple are provided it will throw an error\n let child: any\n if (legacyBehavior) {\n if ((children as any)?.$$typeof === Symbol.for('react.lazy')) {\n throw new Error(\n `\\`\\` received a direct child that is either a Server Component, or JSX that was loaded with React.lazy(). This is not supported. Either remove legacyBehavior, or make the direct child a Client Component that renders the Link's \\`\\` tag.`\n )\n }\n\n if (process.env.NODE_ENV === 'development') {\n if (onClick) {\n console.warn(\n `\"onClick\" was passed to with \\`href\\` of \\`${formattedHref}\\` but \"legacyBehavior\" was set. The legacy behavior requires onClick be set on the child of next/link`\n )\n }\n if (onMouseEnterProp) {\n console.warn(\n `\"onMouseEnter\" was passed to with \\`href\\` of \\`${formattedHref}\\` but \"legacyBehavior\" was set. The legacy behavior requires onMouseEnter be set on the child of next/link`\n )\n }\n try {\n child = React.Children.only(children)\n } catch (err) {\n if (!children) {\n throw new Error(\n `No children were passed to with \\`href\\` of \\`${formattedHref}\\` but one child is required https://nextjs.org/docs/messages/link-no-children`\n )\n }\n throw new Error(\n `Multiple children were passed to with \\`href\\` of \\`${formattedHref}\\` but only one child is supported https://nextjs.org/docs/messages/link-multiple-children` +\n (typeof window !== 'undefined'\n ? \" \\nOpen your browser's console to view the Component stack trace.\"\n : '')\n )\n }\n } else {\n child = React.Children.only(children)\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if ((children as any)?.type === 'a') {\n throw new Error(\n 'Invalid with child. Please remove or use .\\nLearn more: https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor'\n )\n }\n }\n }\n\n const childRef: any = legacyBehavior\n ? child && typeof child === 'object' && child.ref\n : forwardedRef\n\n // Use a callback ref to attach an IntersectionObserver to the anchor tag on\n // mount. In the future we will also use this to keep track of all the\n // currently mounted instances, e.g. so we can re-prefetch them after\n // a revalidation or refresh.\n const observeLinkVisibilityOnMount = React.useCallback(\n (element: HTMLAnchorElement | SVGAElement) => {\n if (router !== null) {\n linkInstanceRef.current = mountLinkInstance(\n element,\n formattedHref,\n router,\n fetchStrategy,\n prefetchEnabled,\n setOptimisticLinkStatus\n )\n }\n\n return () => {\n if (linkInstanceRef.current) {\n unmountLinkForCurrentNavigation(linkInstanceRef.current)\n linkInstanceRef.current = null\n }\n unmountPrefetchableInstance(element)\n }\n },\n [\n prefetchEnabled,\n formattedHref,\n router,\n fetchStrategy,\n setOptimisticLinkStatus,\n ]\n )\n\n const mergedRef = useMergedRef(observeLinkVisibilityOnMount, childRef)\n\n const childProps: {\n onTouchStart?: React.TouchEventHandler\n onMouseEnter: React.MouseEventHandler\n onClick: React.MouseEventHandler\n href?: string\n ref?: any\n } = {\n ref: mergedRef,\n onClick(e) {\n if (process.env.NODE_ENV !== 'production') {\n if (!e) {\n throw new Error(\n `Component rendered inside next/link has to pass click event to \"onClick\" prop.`\n )\n }\n }\n\n if (!legacyBehavior && typeof onClick === 'function') {\n onClick(e)\n }\n\n if (\n legacyBehavior &&\n child.props &&\n typeof child.props.onClick === 'function'\n ) {\n child.props.onClick(e)\n }\n\n if (!router) {\n return\n }\n if (e.defaultPrevented) {\n return\n }\n linkClicked(\n e,\n formattedHref,\n linkInstanceRef,\n replace,\n scroll,\n onNavigate,\n transitionTypes\n )\n },\n onMouseEnter(e) {\n if (!legacyBehavior && typeof onMouseEnterProp === 'function') {\n onMouseEnterProp(e)\n }\n\n if (\n legacyBehavior &&\n child.props &&\n typeof child.props.onMouseEnter === 'function'\n ) {\n child.props.onMouseEnter(e)\n }\n\n if (!router) {\n return\n }\n if (!prefetchEnabled || process.env.NODE_ENV === 'development') {\n return\n }\n\n const upgradeToDynamicPrefetch = unstable_dynamicOnHover === true\n onNavigationIntent(\n e.currentTarget as HTMLAnchorElement | SVGAElement,\n upgradeToDynamicPrefetch\n )\n },\n onTouchStart: process.env.__NEXT_LINK_NO_TOUCH_START\n ? undefined\n : function onTouchStart(e) {\n if (!legacyBehavior && typeof onTouchStartProp === 'function') {\n onTouchStartProp(e)\n }\n\n if (\n legacyBehavior &&\n child.props &&\n typeof child.props.onTouchStart === 'function'\n ) {\n child.props.onTouchStart(e)\n }\n\n if (!router) {\n return\n }\n if (!prefetchEnabled) {\n return\n }\n\n const upgradeToDynamicPrefetch = unstable_dynamicOnHover === true\n onNavigationIntent(\n e.currentTarget as HTMLAnchorElement | SVGAElement,\n upgradeToDynamicPrefetch\n )\n },\n }\n\n // If the url is absolute, we can bypass the logic to prepend the basePath.\n if (isAbsoluteUrl(formattedHref)) {\n childProps.href = formattedHref\n } else if (\n !legacyBehavior ||\n passHref ||\n (child.type === 'a' && !('href' in child.props))\n ) {\n childProps.href = addBasePath(formattedHref)\n }\n\n let link: React.ReactNode\n\n if (legacyBehavior) {\n if (process.env.NODE_ENV === 'development') {\n errorOnce(\n '`legacyBehavior` is deprecated and will be removed in a future ' +\n 'release. A codemod is available to upgrade your components:\\n\\n' +\n 'npx @next/codemod@latest new-link .\\n\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/upgrading/codemods#remove-a-tags-from-link-components'\n )\n }\n link = React.cloneElement(child, childProps)\n } else {\n link = (\n \n {children}\n \n )\n }\n\n return (\n \n {link}\n \n )\n}\n\nconst LinkStatusContext = createContext<\n typeof PENDING_LINK_STATUS | typeof IDLE_LINK_STATUS\n>(IDLE_LINK_STATUS)\n\nexport const useLinkStatus = () => {\n return useContext(LinkStatusContext)\n}\n\nfunction getFetchStrategyFromPrefetchProp(\n prefetchProp: Exclude\n): PrefetchTaskFetchStrategy {\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n if (prefetchProp === true) {\n return FetchStrategy.Full\n }\n\n // `null` or `\"auto\"`: this is the default \"auto\" mode, where we will prefetch partially if the link is in the viewport.\n // This will also include invalid prop values that don't match the types specified here.\n // (although those should've been filtered out by prop validation in dev)\n prefetchProp satisfies null | 'auto'\n return FetchStrategy.PPR\n } else {\n return prefetchProp === null || prefetchProp === 'auto'\n ? // We default to PPR, and we'll discover whether or not the route supports it with the initial prefetch.\n FetchStrategy.PPR\n : // In the old implementation without runtime prefetches, `prefetch={true}` forces all dynamic data to be prefetched.\n // To preserve backwards-compatibility, anything other than `false`, `null`, or `\"auto\"` results in a full prefetch.\n // (although invalid values should've been filtered out by prop validation in dev)\n FetchStrategy.Full\n }\n}\n"],"names":["_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","_interop_require_wildcard","obj","__esModule","default","cache","has","get","newObj","__proto__","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","exports","_","assign","searchParamsToUrlQuery","urlQueryToSearchParams","searchParams","query","value","entries","existing","Array","isArray","push","stringifyUrlQueryParam","param","isNaN","String","URLSearchParams","item","append","target","searchParamsList","keys","delete","formatUrl","formatWithValidation","urlObjectKeys","slashedProtocols","urlObj","auth","hostname","protocol","pathname","hash","host","encodeURIComponent","replace","indexOf","port","querystring","search","endsWith","slashes","test","url","process","env","NODE_ENV","forEach","includes","console","warn","useMergedRef","refA","refB","cleanupA","useRef","cleanupB","useCallback","current","cleanupFnA","cleanupFnB","applyRef","cleanup","DecodeError","MiddlewareNotFoundError","MissingStaticPage","NormalizeError","PageNotFoundError","SP","ST","WEB_VITALS","execOnce","getDisplayName","getLocationOrigin","getURL","isAbsoluteUrl","isResSent","loadGetInitialProps","normalizeRepeatedSlashes","stringifyError","fn","used","result","args","ABSOLUTE_URL_REGEX","window","location","href","origin","substring","length","Component","displayName","name","res","finished","headersSent","urlParts","split","urlNoQuery","slice","join","App","ctx","getInitialProps","message","Error","pageProps","props","performance","every","method","constructor","page","code","error","JSON","stringify","stack","parsePath","path","hashIndex","queryIndex","hasQuery","undefined","addPathPrefix","prefix","startsWith","removeTrailingSlash","route","normalizePathTrailingSlash","__NEXT_MANUAL_TRAILING_SLASH","__NEXT_TRAILING_SLASH","addBasePath","basePath","__NEXT_ROUTER_BASEPATH","required","__NEXT_MANUAL_CLIENT_BASE_PATH","warnOnce","warnings","Set","msg","add","ACTION_HMR_REFRESH","ACTION_NAVIGATE","ACTION_REFRESH","ACTION_RESTORE","ACTION_SERVER_ACTION","ACTION_SERVER_PATCH","PrefetchKind","ScrollBehavior","FetchStrategy","NavigationResultTag","PrefetchPriority","createCacheKey","originalHref","nextUrl","originalUrl","URL","cacheKey","PrefetchHint","matchSegment","existingSegment","segment","readVaryParams","thenable","then","noop","status","ACTION_HEADER","FLIGHT_HEADERS","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_ACTION_REVALIDATED_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_HMR_REFRESH_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_INSTANT_PREFETCH_HEADER","NEXT_INSTANT_TEST_COOKIE","NEXT_IS_PRERENDER_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_RSC_UNION_QUERY","NEXT_URL","RSC_CONTENT_TYPE_HEADER","RSC_HEADER","InvariantError","options","isThenable","promise","dispatchAppRouterAction","dispatchGestureState","refreshOnInstantNavigationUnlock","useActionQueue","dispatch","__NEXT_EXPOSE_TESTING_API","type","bypassCacheInvalidation","reload","action","setGestureRouterState","state","__DEV__","promisesWithDebugInfo","actionQueue","canonicalState","setState","React","useState","setGesture","useOptimistic","nextDispatch","useAppDevRenderingIndicator","require","appDevRenderingIndicator","stateWithDebugInfo","useMemo","promiseWithDebugInfo","debugInfo","Promise","resolve","asyncState","_debugInfo","use","callServer","actionId","actionArgs","reject","startTransition","findSourceMapURL","__NEXT_DEV_SERVER","filename","document","DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","isPageSegment","stringifiedQuery","segments","parallelRouteKey","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","values","segmentValue","HEAD_REQUEST_KEY","ROOT_SEGMENT_REQUEST_KEY","appendSegmentRequestKeyPart","convertSegmentPathToStaticExportFilename","createSegmentRequestKeyPart","safeName","encodeToFilesystemAndURLSafeString","paramType","encodedName","parentRequestKey","childRequestKeyPart","slotKey","simpleParamValueRegex","base64url","btoa","doesStaticSegmentAppearInURL","getCacheKeyForDynamicParam","getParamValueFromCacheKey","getRenderedPathname","getRenderedSearch","parseDynamicParamFromURLPart","urlSearchParamsToParsedUrlQuery","urlToUrlWithoutFlightMarker","response","rewrittenQuery","headers","rewrittenPath","canonicalizeURLPart","part","decodeURIComponent","pathnameParts","partIndex","map","s","i","paramValue","renderedSearch","pageSegmentWithSearchParams","fromEntries","urlWithoutFlightParameters","__NEXT_CONFIG_OUTPUT","paramCacheKey","isCatchAll","createHrefFromUrl","includeHash","createInitialRSCPayloadFromFallbackPrerender","getFlightDataPartsFromPath","getNextFlightSegmentPath","normalizeFlightData","prepareFlightRouterStateForRequest","flightDataPath","flightDataPathLength","seedData","head","isHeadPartial","pathToSegment","isRootRender","fallbackInitialRSCPayload","renderedPathname","canonicalUrl","originalFlightDataPath","f","originalFlightRouterState","payload","c","q","fillInFallbackFlightRouterState","m","G","S","h","b","flightRouterState","filter","p","index","fillInFallbackFlightRouterStateImpl","pathnamePartsIndex","originalSegment","newSegment","doesAppearInURL","paramName","staticSiblings","childPathnamePartsIndex","newChildren","childFlightRouterState","newState","flightSegmentPath","flightData","isHmrRefresh","stripClientOnlyDataFromFlightRouterState","_refreshState","refreshMarker","prefetchHints","cleanedSegment","stripClientOnlyDataFromSegment","cleanedParallelRoutes","childState","djb2Hash","hexHash","str","char","charCodeAt","toString","computeCacheBustingSearchParam","computeLegacyCacheBustingSearchParam","CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES","textEncoder","TextEncoder","encodeCacheBustingSearchParam","bytes","binary","fromCharCode","normalizeCacheBustingInput","createCacheBustingSearchParamInput","prefetchHeader","segmentPrefetchHeader","stateTreeHeader","nextUrlHeader","computeCacheBustingSearchParamFromInput","input","digest","globalThis","crypto","subtle","encode","Uint8Array","subarray","setCacheBustingSearchParam","setCacheBustingSearchParamWithHash","computeClientCacheBustingSearchParam","uniqueCacheKey","existingSearch","rawQuery","pairs","pair","getNavigationBuildId","setNavigationBuildId","globalBuildId","buildId","ACTION_SUFFIX","APP_DIR_ALIAS","CACHE_ONE_YEAR_SECONDS","DOT_NEXT_ALIAS","ESLINT_DEFAULT_DIRS","GSP_NO_RETURNED_VALUE","GSSP_COMPONENT_MEMBER_ERROR","GSSP_NO_RETURNED_VALUE","HTML_CONTENT_TYPE_HEADER","INFINITE_CACHE","INSTRUMENTATION_HOOK_FILENAME","JSON_CONTENT_TYPE_HEADER","MATCHED_PATH_HEADER","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","NEXT_BODY_SUFFIX","NEXT_CACHE_IMPLICIT_TAG_ID","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_CACHE_ROOT_PARAM_TAG_ID","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_DATA_SUFFIX","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_META_SUFFIX","NEXT_NAV_DEPLOYMENT_ID_HEADER","NEXT_QUERY_PARAM_PREFIX","NEXT_RESUME_HEADER","NEXT_RESUME_STATE_LENGTH_HEADER","NON_STANDARD_NODE_ENV","PAGES_DIR_ALIAS","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","PROXY_FILENAME","PROXY_LOCATION_REGEXP","PUBLIC_DIR_MIDDLEWARE_CONFLICT","ROOT_DIR_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","SERVER_PROPS_EXPORT_ERROR","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","SERVER_RUNTIME","SSG_FALLBACK_EXPORT_ERROR","SSG_GET_INITIAL_PROPS_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","TEXT_PLAIN_CONTENT_TYPE_HEADER","UNSTABLE_REVALIDATE_RENAME_ERROR","WEBPACK_LAYERS","WEBPACK_RESOURCE_QUERIES","WEB_SOCKET_MAX_RECONNECTIONS","edge","experimentalEdge","nodejs","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","edgeSSREntry","metadata","metadataRoute","metadataImageMeta","isNavigatingToNewRootLayout","currentTree","nextTree","currentTreeSegment","nextTreeSegment","currentIsRootLayout","IsRootLayout","nextIsRootLayout","slots","currentTreeChildren","slot","nextTreeChild","currentTreeChild","getLastCommittedTree","setLastCommittedTree","lastCommittedTree","deleteFromLru","lruPut","updateLruSize","lruSize","maxLruSize","prev","next","size","ensureCleanupIsScheduled","tail","newNodeSize","prevNodeSize","deleted","pingPrefetchScheduler","ninetyPercentMax","deleteMapEntry","Fallback","createCacheMap","deleteFromCacheMap","getFromCacheMap","isValueExpired","setInCacheMap","setSizeInCacheMap","Revalidation","cacheMap","parent","getOrInitialize","isRevalidation","entry","remainingKeys","previousKey","existingEntry","Map","newEntry","now","currentCacheVersion","rootEntry","getEntryWithFallbackImpl","staleAt","version","lazilyEvictIfNeeded","fallbackEntry","setMapEntryValue","dropRef","oldEntry","ref","parentMap","revalidatingEntry","appendLayoutVaryPath","clonePageVaryPathWithNewSearchParams","finalizeLayoutVaryPath","finalizeMetadataVaryPath","finalizePageVaryPath","getFulfilledRouteVaryPath","getFulfilledSegmentVaryPath","getPartialLayoutVaryPath","getPartialPageVaryPath","getRenderedSearchFromVaryPath","getRouteVaryPath","getSegmentVaryPathForRequest","varyPath","id","couldBeIntercepted","parentPath","varyPathPart","requestKey","layoutVaryPath","finalizedVaryPath","pageVaryPath","pageRequestKey","fetchStrategy","originalVaryPath","isPage","doesVaryOnSearchParams","Full","PPRRuntime","searchParamsVaryPath","pathParamsVaryPath","patchedVaryPath","newSearch","clonedVaryPath","original","varyParams","clone","discoverKnownRoute","matchKnownRoute","resetKnownRoutes","createEmptyPart","staticChildren","dynamicChild","dynamicChildParamName","dynamicChildParamType","pattern","knownRouteTreeRoot","pendingEntry","routeTree","metadataVaryPath","supportsPerSegmentPrefetching","hasDynamicRewrite","firstPart","remainingParts","fulfilledEntry","fulfillRouteCacheEntry","discoverKnownRoutePart","discoverDynamicChild","newChild","mutablePart","parentKnownRoutePart","urlPart","fullTree","segmentAppearsInURL","knownRoutePart","nextUrlPart","nextRemainingParts","writeRouteIntoCache","sibling","existingChild","resultFromChildren","childRouteTree","refreshState","resolvedParams","match","matchKnownRoutePart","matchedPart","acc","reifiedTree","reifyRouteTree","reifiedMetadata","createMetadataRouteTree","syntheticEntry","EntryStatus","Fulfilled","blockedTasks","staticChild","dynamicPart","dynamicPattern","parentPartialVaryPath","partialVaryPath","newValue","newCacheKey","newSlots","newVaryPath","FreshnessPolicy","createInitialCacheNodeForHydration","isDeferredRsc","spawnDynamicRequests","startPPRNavigation","navigatedAt","initialTree","seedHead","seedDynamicStaleAt","accumulation","separateRefreshUrls","scrollRef","task","createCacheNodeOnNavigation","oldUrl","oldRenderedSearch","oldCacheNode","oldRouterState","newRouteTree","newMetadataVaryPath","freshness","isSamePageNavigation","didFindRootLayout","parentNeedsDynamicRequest","parentRefreshState","oldRootRefreshState","updateCacheNodeOnNavigation","oldSegment","createSegmentFromRouteTree","oldRouterStateChildren","seedDataChildren","childDidFindRootLayout","shouldRefreshDynamicData","isLeafSegment","newCacheNode","needsDynamicRequest","dropPrefetchRsc","reuseSharedCacheNode","seedRsc","createCacheNodeForSegment","cacheNode","maybeRefreshState","accumulateRefreshUrl","patchedRouterStateChildren","taskChildren","childNeedsDynamicRequest","dynamicRequestTreeChildren","newCacheNodeSlots","oldCacheNodeSlots","newRouteTreeChild","oldRouterStateChild","seedDataChild","oldSegmentChild","newSegmentChild","seedHeadChild","reuseActiveSegmentInDefaultSlot","oldCacheNodeChild","taskChild","taskChildRoute","dynamicRequestTreeChild","dynamicRequestTree","newFlightRouterState","createDynamicRequestTree","accumulateScrollRef","patchRouterStateWithNewChildren","baseRouterState","newRouterState","refreshUrl","parentRouteTree","reusedUrl","reusedRenderedSearch","oldRefreshState","reusedRouteTree","convertReusedFlightRouterStateToRouteTree","existingCacheNode","createCacheNode","rsc","prefetchRsc","prefetchHead","dynamicStaleAt","bfcacheEntry","readFromBFCacheDuringRegularNavigation","writeToBFCache","writeHeadToBFCache","readFromBFCache","oldRsc","oldRscDidResolve","cachedRsc","isCachedRscPartial","segmentEntry","readSegmentCacheEntry","isPartial","Pending","promiseForFulfilledEntry","waitForSegmentCacheEntry","Empty","Rejected","doesSegmentNeedDynamicRequest","createDeferredRsc","doesHeadNeedDynamicRequest","cachedHead","isCachedHeadPartial","metadataEntry","__NEXT_OPTIMISTIC_ROUTING","previousNavigationDidMismatch","primaryUrl","freshnessPolicy","routeCacheEntry","navigateType","primaryRequestPromise","fetchMissingDynamicData","refreshRequestPromises","scopedDynamicRequestTree","voidPromise","finishNavigationTask","exitStatus","waitForRequestsToFinish","abortRemainingPendingTasks","isHardRetry","primaryRequestResult","dispatchRetryDueToTreeMismatch","seed","onFulfill","remainingCount","onReject","refreshRequestPromise","retryUrl","retryNextUrl","baseTree","originalNavigateType","markRouteEntryAsDynamicRewrite","Date","invalidateRouteCacheEntries","lastCommitted","retryNavigateType","retryAction","previousTree","mpa","fetchServerResponse","convertServerPatchToFullTree","dynamicStaleTime","waitForNavigationLock","staticStageData","staticStageResponse","isResponsePartial","getStaleAt","responseHeaders","writeStaticStageResponseIntoCache","catch","runtimePrefetchStream","processRuntimePrefetchStream","processed","writeDynamicRenderResponseIntoCache","flightDatas","headVaryParams","navigationSeed","computeDynamicStaleAt","didReceiveUnknownParallelRoute","writeDynamicDataIntoNavigationTask","data","serverRouteTree","dynamicData","dynamicHead","finishPendingCacheNode","updateBFCacheEntryStaleAt","serverChildren","dynamicDataChildren","serverRouteTreeChild","dynamicDataChild","taskSegment","serverSegment","childDidReceiveUnknownParallelRoute","dynamicSegmentData","abortPendingCacheNode","childExitStatus","DEFERRED","Symbol","tag","pendingRsc","rej","responseDebugInfo","fulfilledRsc","apply","rejectedRsc","reason","waitForNavigationLockIfActive","ensureLeadingSlash","compareAppPaths","normalizeAppPath","normalizeRscURL","reduce","a","aHasSlot","bHasSlot","localeCompare","INTERCEPTION_ROUTE_MARKERS","extractInterceptionRouteInformation","isInterceptionRouteAppPath","find","interceptingRoute","marker","interceptedRoute","concat","splitInterceptingRoute","computeChangedPath","extractPathFromFlightRouterState","extractSourcePageFromFlightRouterState","getSelectedParams","removeLeadingSlash","segmentToPathname","segmentToSourcePagePathname","dynamicParamType","normalizeSegments","some","childrenPath","childPath","extractSourcePageSegmentsFromFlightRouterState","sourcePageSegments","computeChangedPathImpl","treeA","treeB","segmentA","parallelRoutesA","segmentB","parallelRoutesB","normalizedSegmentA","normalizedSegmentB","parallelRouterKey","changedPath","params","parallelRoute","isDynamicParameter","isJavaScriptURLString","isJavaScriptProtocol","isNavigationLocked","startListeningForInstantNavigationCookie","transitionToCapturedSPA","updateCapturedSPAToTree","parseCookieValue","raw","parsed","parse","rawState","writeCookieValue","cookieStore","domain","lockState","acquireLock","r","releaseLock","self","__next_instant_test","cookie","Math","random","addEventListener","event","changed","fromTree","toTree","from","to","completeHardNavigation","completeSoftNavigation","completeTraverseNavigation","navigate","navigateToKnownRoute","currentUrl","currentRenderedSearch","currentCacheNode","currentFlightRouterState","scrollBehavior","ensurePrefetchThenNavigate","navigateImpl","readRouteCacheEntry","navigateUsingPrefetchedRouteTree","optimisticRoute","deprecated_requestOptimisticRouteCacheEntry","navigateToUnknownRoute","Gesture","prefetchSeed","UnknownDynamicStaleTime","DynamicRequestTreeForEntireRoute","Default","HistoryTraversal","Hydration","RefreshAll","HMRRefresh","promiseForDynamicServerResponse","redirectUrl","pushRef","pendingPush","mpaNavigation","preserveCustomHistoryState","focusAndScrollRef","previousNextUrl","oldState","referringNextUrl","collectedDebugInfo","nextUrlForNewRoute","onlyHashChange","activeScrollRef","forceScroll","NoScroll","oldScrollRef","hashFragment","dynamicStaleTimeSeconds","baseData","treePatch","dataPatch","headPatch","convertServerPatchToFullTreeImpl","finalFlightRouterState","convertRootFlightRouterStateToRouteTree","updatedParallelRouteKey","baseTreeChildren","baseSeedDataChildren","newTreeChildren","newSeedDataChildren","childBaseRouterState","childBaseSeedData","clonedTree","clonedSeedData","compressedRefreshState","isEmptySeedDataPartial","link","getLinkForCurrentNavigation","PPR","schedulePrefetchTask","DYNAMIC_STALETIME_MS","STATIC_STALETIME_MS","navigateReducer","Number","__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME","getStaleTimeMs","__NEXT_CLIENT_ROUTER_STATIC_STALETIME","isExternalUrl","getElementById","navigateUsingSegmentCache","invalidateBfCache","bfcacheMap","currentBfCacheVersion","newStaleAt","createFetch","createFromNextReadableStream","decodeStaticStage","processFetch","resolveStaticStageData","createFromReadableStream","createFromReadableStreamBrowser","createFromFetch","createFromFetchBrowser","createDebugChannel","__NEXT_REACT_DEBUG_CHANNEL","doMpaNavigation","isPageUnloading","isLegacyPPR","__NEXT_PPR","__NEXT_CACHE_COMPONENTS","shouldImmediatelyDecode","responseUrl","redirected","contentType","interception","postponed","isFlightResponse","ok","body","TURBOPACK","waitForWebpackRuntimeHotUpdate","flightResponsePromise","allowPartialStream","flightResponse","cacheData","all","normalizedFlightData","d","err","stream","stripIsPartialByte","responseStream","__NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS","stream1","stream2","tee","responseBodyClone","strippedResponse","Response","statusText","cancel","l","staticStageByteLengthPromise","staticStageByteLength","truncatedStream","truncateStream","fetchPriority","signal","__NEXT_TEST_MODE","deploymentId","getDeploymentId","__next_r","getRandomValues","Uint32Array","fetchOptions","credentials","priority","fetchUrl","fetch","fetchPromise","createFromNextFetch","browserResponse","__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS","MAX_REDIRECTS","n","rscResponse","flightStream","requestHeaders","debugChannel","unstable_allowPartialStream","promiseForResponse","byteLength","reader","getReader","remaining","ReadableStream","pull","controller","close","done","read","enqueue","createPromiseWithResolvers","attemptToFulfillDynamicSegmentFromBFCache","attemptToUpgradeSegmentFromBFCache","canNewFetchStrategyProvideMoreContent","convertRouteTreeToFlightRouterState","createDetachedSegmentCacheEntry","fetchInlinedSegmentsOnCacheMiss","fetchRouteOnCacheMiss","fetchSegmentOnCacheMiss","fetchSegmentPrefetchesUsingDynamicRequest","getCurrentRouteCacheVersion","getCurrentSegmentCacheVersion","invalidateEntirePrefetchCache","invalidateSegmentCacheEntries","overwriteRevalidatingSegmentCacheEntry","pingInvalidationListeners","readOrCreateRevalidatingSegmentEntry","readOrCreateRouteCacheEntry","readOrCreateSegmentCacheEntry","upgradeToPendingSegment","upsertSegmentEntry","staleTimeSeconds","max","isOutputExportMode","MetadataOnlyRequestTree","routeCacheMap","segmentCacheMap","invalidationListeners","currentRouteCacheVersion","currentSegmentCacheVersion","pingVisibleLinks","attachInvalidationListener","onInvalidate","notifyInvalidationListener","reportError","tasks","isPrefetchTaskDirty","readRevalidatingSegmentCacheEntry","promiseWithResolvers","createDetachedRouteCacheEntry","Infinity","requestedUrl","requestedSearch","urlWithoutSearchParams","routeWithNoSearchParams","createPrefetchRequestKey","canonicalUrlForRouteWithNoSearchParams","optimisticCanonicalSearch","optimisticRenderedSearch","optimisticUrl","optimisticCanonicalUrl","optimisticRouteTree","deprecated_createOptimisticRouteTree","optimisticMetadataTree","optimisticEntry","newRenderedSearch","clonedSlots","originalSlots","childTree","varyPathForRequest","candidateEntry","rejectedEntry","emptyEntry","dynamicPrefetchStaleAt","pendingSegment","fulfillSegmentCacheEntry","segmentVaryPath","upserted","pingBlockedTasks","pingPrefetchTask","segmentCacheEntry","rejectRouteCacheEntry","rejectSegmentCacheEntry","convertRootTreePrefetchToRouteTree","rootTree","rootSegment","convertTreePrefetchToRouteTree","prefetch","prefetchSlots","childPrefetch","childSegmentName","childParam","childDoesAppearInURL","childSegment","childPartialVaryPath","childParamValue","childParamKey","siblings","childRequestKey","convertFlightRouterStateToRouteTree","requestKeyPart","parentRenderedSearch","childRouterState","addInstantPrefetchHeaderIfLocked","urlAfterRedirects","headResponse","fetchPrefetchResponse","addSegmentPathToUrlInOutputExportMode","varyHeader","closed","routeIsPPREnabled","prefetchStream","responseSize","createNonTaskyPrefetchResponseStream","serverData","headVaryParamsThenable","writeDynamicTreeResponseIntoCache","LoadingBoundary","fulfilledVaryPath","routeKey","normalizedRequestKey","requestUrl","staleTime","__NEXT_VARY_PARAMS","spawnedEntries","rejectSegmentEntriesIfStillPending","fillInlinedSegmentEntries","headStaleAt","headKey","ownedHeadEntry","inlinedNode","ownedEntry","childInlinedNode","fulfilledEntries","bufferedResponseSize","createIncrementalPrefetchResponseStream","onResponseSizeUpdate","totalBytesReceivedSoFar","averageSize","originalPathname","normalizedFlightDataResult","getStaleAtFromHeader","metadataTree","flightDataEntry","writeSeedDataIntoCache","fulfillEntrySpawnedByRuntimePrefetch","entriesOwnedByCurrentTask","varyParamsThenable","childSeedData","segmentVaryParams","possiblyNewEntry","chunks","buffer","offset","chunk","start","originalFlightStream","onStreamClose","totalByteLength","staticUrl","routeDir","staticExportFilename","currentStrategy","newStrategy","parseInt","staleTimeMs","staleTimeIterable","defaultIsPartial","firstByte","hasMarker","remainder","cancelPrefetchTask","reschedulePrefetchTask","startRevalidationCooldown","scheduleMicrotask","queueMicrotask","setTimeout","taskHeap","inProgressRequests","sortIdCounter","didScheduleMicrotask","mostRecentlyHoveredLink","REVALIDATION_COOLDOWN_MS","revalidationCooldownTimeoutHandle","clearTimeout","treeAtTimeOfPrefetch","_onComplete","routeCacheVersion","segmentCacheVersion","phase","hasBackgroundWork","spawnedRuntimePrefetches","sortId","isCanceled","_heapIndex","trackMostRecentlyHoveredLink","heapPush","heapDelete","onComplete","Intent","heapResift","Background","processQueueInMicrotask","hasNetworkBandwidth","spawnPrefetchSubtask","prefetchSubtask","onPrefetchConnectionClosed","heapPeek","pingRoute","heapPop","background","pingRootRouteTree","keyWithoutSearch","routeWithoutSearch","SubtreeHasInstant","pingStaticHead","pingSharedPartOfCacheComponentsTree","pingRuntimeHead","requestTree","pingRuntimePrefetches","diffRouteTreeAgainstCurrent","pingStaticSegmentData","pingRouteTreeAndIncludeDynamicData","oldTree","newTree","oldTreeChildren","newTreeChild","newTreeChildSegment","oldTreeChild","oldTreeChildSegment","doesCurrentSegmentMatchCachedSegment","pingNewPartOfCacheComponentsTree","HasRuntimePrefetch","requestTreeChildren","requestTreeChild","subtreeHasLoadingBoundary","SegmentHasLoadingBoundary","SubtreeHasLoadingBoundary","pingPPRDisabledRouteTreeUpToLoadingBoundary","refetchMarkerContext","refetchMarker","segmentHasLoadingBoundary","isInsideRefetchingParent","spawnedSegment","fulfilled","pingFullSegmentRevalidation","__NEXT_PREFETCH_INLINING","inlinedEntries","collectInlinedEntries","pingPPRSegmentRevalidation","collectInlinedEntriesImpl","headEntry","revalidatingSegment","nonEmptyRevalidatingSegment","emptySegment","currentSegment","cachedSegment","compareQueuePriority","priorityDiff","phaseDiff","heap","heapSiftUp","last","pop","heapSiftDown","parentIndex","halfLength","leftIndex","left","rightIndex","right","IDLE_LINK_STATUS","PENDING_LINK_STATUS","mountFormInstance","mountLinkInstance","onLinkVisibilityChanged","onNavigationIntent","setLinkForCurrentNavigation","unmountLinkForCurrentNavigation","unmountPrefetchableInstance","linkForMostRecentNavigation","pending","setOptimisticLinkStatus","prefetchable","prefetchableAndVisible","observer","IntersectionObserver","handleIntersect","rootMargin","observeVisibility","element","instance","existingInstance","observe","coercePrefetchableUrl","createPrefetchURL","reportErrorFn","router","prefetchEnabled","prefetchURL","isVisible","prefetchTask","prefetchHref","unobserve","intersectionRatio","rescheduleLinkPrefetch","unstable_upgradeToDynamicPrefetch","__NEXT_DYNAMIC_ON_HOVER","existingPrefetchTask","getCurrentAppRouterState","appRouterState","scheduleSegmentPrefetchTask","pathHasPrefix","hasBasePath","isLocalURL","locationOrigin","resolved","errorOnce","errors","LinkComponent","useLinkStatus","isModifiedEvent","eventTarget","currentTarget","getAttribute","metaKey","ctrlKey","shiftKey","altKey","nativeEvent","which","linkClicked","e","linkInstanceRef","scroll","onNavigate","transitionTypes","nodeName","isAnchorNodeName","toUpperCase","hasAttribute","preventDefault","isDefaultPrevented","dispatchNavigateAction","formatStringOrUrl","urlObjOrString","linkStatus","hrefProp","as","asProp","childrenProp","prefetchProp","passHref","shallow","onClick","onMouseEnter","onMouseEnterProp","onTouchStart","onTouchStartProp","legacyBehavior","forwardedRef","unstable_dynamicOnHover","restProps","useContext","AppRouterContext","getFetchStrategyFromPrefetchProp","createPropError","expected","actual","requiredPropsGuard","requiredProps","optionalPropsGuard","optionalProps","valType","resolvedHref","formattedHref","locale","hasDynamicSegment","child","$$typeof","for","Children","only","childRef","observeLinkVisibilityOnMount","mergedRef","childProps","defaultPrevented","upgradeToDynamicPrefetch","__NEXT_LINK_NO_TOUCH_START","cloneElement","LinkStatusContext","Provider","createContext"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_gsap_0xy-.4m._.js b/.next/server/chunks/ssr/node_modules_gsap_0xy-.4m._.js new file mode 100644 index 0000000..ad4b605 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_gsap_0xy-.4m._.js @@ -0,0 +1,3 @@ +module.exports=[26304,a=>{"use strict";function b(a){if(void 0===a)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return a}function c(a,b){a.prototype=Object.create(b.prototype),a.prototype.constructor=a,a.__proto__=b}var d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F={autoSleep:120,force3D:"auto",nullTargetWarn:1,units:{lineHeight:""}},G={duration:.5,overwrite:!1,delay:0},H=2*Math.PI,I=H/4,J=0,K=Math.sqrt,L=Math.cos,M=Math.sin,N=function(a){return"string"==typeof a},O=function(a){return"function"==typeof a},P=function(a){return"number"==typeof a},Q=function(a){return void 0===a},R=function(a){return"object"==typeof a},S=function(a){return!1!==a},T=function(){return!1},U=function(a){return O(a)||N(a)},V="function"==typeof ArrayBuffer&&ArrayBuffer.isView||function(){},W=Array.isArray,X=/random\([^)]+\)/g,Y=/,\s*/g,Z=/(?:-?\.?\d|\.)+/gi,$=/[-+=.]*\d+[.e\-+]*\d*[e\-+]*\d*/g,_=/[-+=.]*\d+[.e-]*\d*[a-z%]*/g,aa=/[-+=.]*\d+\.?\d*(?:e-|e\+)?\d*/gi,ab=/[+-]=-?[.\d]+/,ac=/[^,'"\[\]\s]+/gi,ad=/^[+\-=e\s\d]*\d+[.\d]*([a-z]*|%)\s*$/i,ae={},af={},ag=function(a,b){return console.warn("Invalid property",a,"set to",b,"Missing plugin? gsap.registerPlugin()")},ah=function(a,b){return!b&&console.warn(a)},ai=function(a,b){return a&&(ae[a]=b)&&af&&(af[a]=b)||ae},aj=function(){return 0},ak={suppressEvents:!0,isStart:!0,kill:!1},al={suppressEvents:!0,kill:!1},am={suppressEvents:!0},an={},ao=[],ap={},aq={},ar={},as=30,at=[],au="",av=function(a){var b,c,d=a[0];if(R(d)||O(d)||(a=[a]),!(b=(d._gsap||{}).harness)){for(c=at.length;c--&&!at[c].targetTest(d););b=at[c]}for(c=a.length;c--;)a[c]&&(a[c]._gsap||(a[c]._gsap=new bQ(a[c],b)))||a.splice(c,1);return a},aw=function(a){return a._gsap||av(bf(a))[0]._gsap},ax=function(a,b,c){return(c=a[b])&&O(c)?a[b]():Q(c)&&a.getAttribute&&a.getAttribute(b)||c},ay=function(a,b){return(a=a.split(",")).forEach(b)||a},az=function(a){return Math.round(1e5*a)/1e5||0},aA=function(a){return Math.round(1e7*a)/1e7||0},aB=function(a,b){var c=b.charAt(0),d=parseFloat(b.substr(2));return a=parseFloat(a),"+"===c?a+d:"-"===c?a-d:"*"===c?a*d:a/d},aC=function(a,b){for(var c=b.length,d=0;0>a.indexOf(b[d])&&++df;)g=g._prev;return g?(b._next=g._next,g._next=b):(b._next=a[c],a[c]=b),b._next?b._next._prev=b:a[d]=b,b._prev=g,b.parent=b._dp=a,b},aP=function(a,b,c,d){void 0===c&&(c="_first"),void 0===d&&(d="_last");var e=b._prev,f=b._next;e?e._next=f:a[c]===b&&(a[c]=f),f?f._prev=e:a[d]===b&&(a[d]=e),b._next=b._prev=b.parent=null},aQ=function(a,b){a.parent&&(!b||a.parent.autoRemoveChildren)&&a.parent.remove&&a.parent.remove(a),a._act=0},aR=function(a,b){if(a&&(!b||b._end>a._dur||b._start<0))for(var c=a;c;)c._dirty=1,c=c.parent;return a},aS=function(a){for(var b=a.parent;b&&b.parent;)b._dirty=1,b.totalDuration(),b=b.parent;return a},aT=function(a,b,c,d){return a._startAt&&(v?a._startAt.revert(al):a.vars.immediateRender&&!a.vars.autoRevert||a._startAt.render(b,!0,d))},aU=function(a){return a._repeat?aV(a._tTime,a=a.duration()+a._rDelay)*a:0},aV=function(a,b){var c=Math.floor(a=aA(a/b));return a&&c===a?c-1:c},aW=function(a,b){return(a-b._start)*b._ts+(b._ts>=0?0:b._dirty?b.totalDuration():b._tDur)},aX=function(a){return a._end=aA(a._start+(a._tDur/Math.abs(a._ts||a._rts||1e-8)||0))},aY=function(a,b){var c=a._dp;return c&&c.smoothChildTiming&&a._ts&&(a._start=aA(c._time-(a._ts>0?b/a._ts:-(((a._dirty?a.totalDuration():a._tDur)-b)/a._ts))),aX(a),c._dirty||aR(c,a)),a},aZ=function(a,b){var c;if((b._time||!b._dur&&b._initted||b._start1e-8)&&b.render(c,!0)),aR(a,b)._dp&&a._initted&&a._time>=a._dur&&a._ts){if(a._dur=0&&c.totalTime(c._tTime),c=c._dp;a._zTime=-1e-8}},a$=function(a,b,c,d){return b.parent&&aQ(b),b._start=aA((P(c)?c:c||a!==x?a8(a,c,b):a._time)+b._delay),b._end=aA(b._start+(b.totalDuration()/Math.abs(b.timeScale())||0)),aO(a,b,"_first","_last",a._sort?"_start":0),a2(b)||(a._recent=b),d||aZ(a,b),a._ts<0&&aY(a,a._tTime),a},a_=function(a,b){return(ae.ScrollTrigger||ag("scrollTrigger",b))&&ae.ScrollTrigger.create(b,a)},a0=function(a,b,c,d,e){return(b1(a,b,e),a._initted)?!c&&a._pt&&!v&&(a._dur&&!1!==a.vars.lazy||!a._dur&&a.vars.lazy)&&C!==bC.frame?(ao.push(a),a._lazy=[e,d],1):void 0:1},a1=function a(b){var c=b.parent;return c&&c._ts&&c._initted&&!c._lock&&(0>c.rawTime()||a(c))},a2=function(a){var b=a.data;return"isFromStart"===b||"isStart"===b},a3=function(a,b,c,d){var e,f,g,h=a.ratio,i=b<0||!b&&(!a._start&&a1(a)&&!(!a._initted&&a2(a))||(a._ts<0||a._dp._ts<0)&&!a2(a))?0:1,j=a._rDelay,k=0;if(j&&a._repeat&&(f=aV(k=bb(0,a._tDur,b),j),a._yoyo&&1&f&&(i=1-i),f!==aV(a._tTime,j)&&(h=1-i,a.vars.repeatRefresh&&a._initted&&a.invalidate())),i!==h||v||d||1e-8===a._zTime||!b&&a._zTime){if(!a._initted&&a0(a,b,d,c,k))return;for(g=a._zTime,a._zTime=b||1e-8*!!c,c||(c=b&&!g),a.ratio=i,a._from&&(i=1-i),a._time=0,a._tTime=k,e=a._pt;e;)e.r(i,e.d),e=e._next;b<0&&aT(a,b,c,!0),a._onUpdate&&!c&&bq(a,"onUpdate"),k&&a._repeat&&!c&&a.parent&&bq(a,"onRepeat"),(b>=a._tDur||b<0)&&a.ratio===i&&(i&&aQ(a,1),c||v||(bq(a,i?"onComplete":"onReverseComplete",!0),a._prom&&a._prom()))}else a._zTime||(a._zTime=b)},a4=function(a,b,c){var d;if(c>b)for(d=a._first;d&&d._start<=c;){if("isPause"===d.data&&d._start>b)return d;d=d._next}else for(d=a._last;d&&d._start>=c;){if("isPause"===d.data&&d._start0&&!d&&aY(a,a._tTime=a._tDur*g),a.parent&&aX(a),c||aR(a.parent,a),a},a6=function(a){return a instanceof bS?aR(a):a5(a,a._dur)},a7={_start:0,endTime:aj,totalDuration:aj},a8=function a(b,c,d){var e,f,g,h=b.labels,i=b._recent||a7,j=b.duration()>=1e8?i.endTime(!1):b._dur;return N(c)&&(isNaN(c)||c in h)?(f=c.charAt(0),g="%"===c.substr(-1),e=c.indexOf("="),"<"===f||">"===f)?(e>=0&&(c=c.replace(/=/,"")),("<"===f?i._start:i.endTime(i._repeat>=0))+(parseFloat(c.substr(1))||0)*(g?(e<0?i:d).totalDuration()/100:1)):e<0?(c in h||(h[c]=j),h[c]):(f=parseFloat(c.charAt(e-1)+c.substr(e+1)),g&&d&&(f=f/100*(W(d)?d[0]:d).totalDuration()),e>1?a(b,c.substr(0,e-1),d)+f:j+f):null==c?j:+c},a9=function(a,b,c){var d,e,f=P(b[1]),g=(f?2:1)+(a<2?0:1),h=b[g];if(f&&(h.duration=b[1]),h.parent=c,a){for(d=h,e=c;e&&!("immediateRender"in d);)d=e.vars.defaults||{},e=S(e.vars.inherit)&&e.parent;h.immediateRender=S(d.immediateRender),a<2?h.runBackwards=1:h.startAt=b[g-1]}return new b8(b[0],h,b[g+1])},ba=function(a,b){return a||0===a?b(a):b},bb=function(a,b,c){return cb?b:c},bc=function(a,b){return N(a)&&(b=ad.exec(a))?b[1]:""},bd=[].slice,be=function(a,b){return a&&R(a)&&"length"in a&&(!b&&!a.length||a.length-1 in a&&R(a[0]))&&!a.nodeType&&a!==y},bf=function(a,b,c){var d;return w&&!b&&w.selector?w.selector(a):N(a)&&!c&&(z||!bD())?bd.call((b||A).querySelectorAll(a),0):W(a)?(void 0===d&&(d=[]),a.forEach(function(a){var b;return N(a)&&!c||be(a,1)?(b=d).push.apply(b,bf(a)):d.push(a)})||d):be(a)?bd.call(a,0):a?[a]:[]},bg=function(a){return a=bf(a)[0]||ah("Invalid scope")||{},function(b){var c=a.current||a.nativeElement||a;return bf(b,c.querySelectorAll?c:c===a?ah("Invalid scope")||A.createElement("div"):a)}},bh=function(a){return a.sort(function(){return .5-Math.random()})},bi=function(a){if(O(a))return a;var b=R(a)?a:{each:a},c=bL(b.ease),d=b.from||0,e=parseFloat(b.base)||0,f={},g=d>0&&d<1,h=isNaN(d)||g,i=b.axis,j=d,k=d;return N(d)?j=k=({center:.5,edges:.5,end:1})[d]||0:!g&&h&&(j=d[0],k=d[1]),function(a,g,l){var m,n,o,p,q,r,s,t,u,v=(l||b).length,w=f[v];if(!w){if(!(u="auto"===b.grid?0:(b.grid||[1,1e8])[1])){for(s=-1e8;s<(s=l[u++].getBoundingClientRect().left)&&us&&(s=q),qv?v-1:i?"y"===i?v/u:u:Math.max(u,v/u))||0)*("edges"===d?-1:1),w.b=v<0?e-v:e,w.u=bc(b.amount||b.each)||0,c=c&&v<0?bK(c):c}return v=(w[a]-w.min)/w.max||0,aA(w.b+(c?c(v):v)*w.v)+w.u}},bj=function(a){var b=Math.pow(10,((a+"").split(".")[1]||"").length);return function(c){var d=aA(Math.round(parseFloat(c)/a)*a*b);return(d-d%1)/b+(P(c)?0:bc(c))}},bk=function(a,b){var c,d,e=W(a);return!e&&R(a)&&(c=e=a.radius||1e8,a.values?(d=!P((a=bf(a.values))[0]))&&(c*=c):a=bj(a.increment)),ba(b,e?O(a)?function(b){return Math.abs((d=a(b))-b)<=c?d:b}:function(b){for(var e,f,g=parseFloat(d?b.x:b),h=parseFloat(d?b.y:0),i=1e8,j=0,k=a.length;k--;)(e=d?(e=a[k].x-g)*e+(f=a[k].y-h)*f:Math.abs(a[k]-g))(e=Math.abs(e))&&(f=d,h=e);return f},bq=function(a,b,c){var d,e,f,g=a.vars,h=g[b],i=w,j=a._ctx;if(h)return d=g[b+"Params"],e=g.callbackScope||a,c&&ao.length&&aD(),j&&(w=j),f=d?h.apply(e,d):h.call(e),w=i,f},br=function(a){return aQ(a),a.scrollTrigger&&a.scrollTrigger.kill(!!v),1>a.progress()&&bq(a,"onInterrupt"),a},bs=[],bt=function(a){if(a)if(a=!a.name&&a.default||a,T()||a.headless){var b=a.name,c=O(a),d=b&&!c&&a.init?function(){this._props=[]}:a,e={init:aj,render:ch,add:b$,kill:cj,modifier:ci,rawVars:0},f={targetTest:0,get:0,getSetter:cd,aliases:{},register:0};if(bD(),a!==d){if(aq[b])return;aI(d,aI(aL(a,e),f)),aJ(d.prototype,aJ(e,aL(a,f))),aq[d.prop=b]=d,a.targetTest&&(at.push(d),an[b]=1),b=("css"===b?"CSS":b.charAt(0).toUpperCase()+b.substr(1))+"Plugin"}ai(b,d),a.register&&a.register(cA,d,cm)}else bs.push(a)},bu={aqua:[0,255,255],lime:[0,255,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,255],navy:[0,0,128],white:[255,255,255],olive:[128,128,0],yellow:[255,255,0],orange:[255,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[255,0,0],pink:[255,192,203],cyan:[0,255,255],transparent:[255,255,255,0]},bv=function(a,b,c){return(6*(a+=a<0?1:a>1?-1:0)<1?b+(c-b)*a*6:a<.5?c:3*a<2?b+(c-b)*(2/3-a)*6:b)*255+.5|0},bw=function(a,b,c){var d,e,f,g,h,i,j,k,l,m,n=a?P(a)?[a>>16,a>>8&255,255&a]:0:bu.black;if(!n){if(","===a.substr(-1)&&(a=a.substr(0,a.length-1)),bu[a])n=bu[a];else if("#"===a.charAt(0)){if(a.length<6&&(d=a.charAt(1),a="#"+d+d+(e=a.charAt(2))+e+(f=a.charAt(3))+f+(5===a.length?a.charAt(4)+a.charAt(4):"")),9===a.length)return[(n=parseInt(a.substr(1,6),16))>>16,n>>8&255,255&n,parseInt(a.substr(7),16)/255];n=[(a=parseInt(a.substr(1),16))>>16,a>>8&255,255&a]}else if("hsl"===a.substr(0,3))if(n=m=a.match(Z),b){if(~a.indexOf("="))return n=a.match($),c&&n.length<4&&(n[3]=1),n}else g=n[0]%360/360,h=n[1]/100,e=(i=n[2]/100)<=.5?i*(h+1):i+h-i*h,d=2*i-e,n.length>3&&(n[3]*=1),n[0]=bv(g+1/3,d,e),n[1]=bv(g,d,e),n[2]=bv(g-1/3,d,e);else n=a.match(Z)||bu.transparent;n=n.map(Number)}return b&&!m&&(d=n[0]/255,i=((j=Math.max(d,e=n[1]/255,f=n[2]/255))+(k=Math.min(d,e,f)))/2,j===k?g=h=0:(l=j-k,h=i>.5?l/(2-j-k):l/(j+k),g=(j===d?(e-f)/l+6*(em||t<0)&&(o+=t-n),p+=t,((c=(e=p-o)-r)>0||u)&&(h=++i.frame,j=e-1e3*i.time,i.time=e/=1e3,r+=c+(c>=q?4:q-c),d=1),u||(f=g(a)),d)for(k=0;ktypeof requestAnimationFrame&&requestAnimationFrame,f&&i.sleep(),g=h||function(a){return setTimeout(a,r-1e3*i.time+1|0)},E=1,t(2))},sleep:function(){(h?cancelAnimationFrame:clearTimeout)(f),E=0,g=aj},lagSmoothing:function(a,b){n=Math.min(b||33,m=a||1/0)},fps:function(a){q=1e3/(a||240),r=1e3*i.time+q},add:function(a,b,c){var d=b?function(b,c,e,f){a(b,c,e,f),i.remove(d)}:a;return i.remove(a),s[c?"unshift":"push"](d),bD(),d},remove:function(a,b){~(b=s.indexOf(a))&&s.splice(b,1)&&k>=b&&k--},_listeners:s}),bD=function(){return!E&&bC.wake()},bE={},bF=/^[\d.\-M][\d.\-,\s]/,bG=/["']/g,bH=function(a){for(var b,c,d,e={},f=a.substr(1,a.length-3).split(":"),g=f[0],h=1,i=f.length;h1&&c.config?c.config.apply(null,~a.indexOf("{")?[bH(b[1])]:bI(a).split(",").map(aG)):bE._CE&&bF.test(a)?bE._CE("",a):c},bK=function(a){return function(b){return 1-a(1-b)}},bL=function(a,b){return a&&(O(a)?a:bE[a]||bJ(a))||b},bM=function(a,b,c,d){void 0===c&&(c=function(a){return 1-b(1-a)}),void 0===d&&(d=function(a){return a<.5?b(2*a)/2:1-b((1-a)*2)/2});var e,f={easeIn:b,easeOut:c,easeInOut:d};return ay(a,function(a){for(var b in bE[a]=ae[a]=f,bE[e=a.toLowerCase()]=c,f)bE[e+("easeIn"===b?".in":"easeOut"===b?".out":".inOut")]=bE[a+"."+b]=f[b]}),f},bN=function(a){return function(b){return b<.5?(1-a(1-2*b))/2:.5+a((b-.5)*2)/2}},bO=function a(b,c,d){var e=c>=1?c:1,f=(d||(b?.3:.45))/(c<1?c:1),g=f/H*(Math.asin(1/e)||0),h=function(a){return 1===a?1:e*Math.pow(2,-10*a)*M((a-g)*f)+1},i="out"===b?h:"in"===b?function(a){return 1-h(1-a)}:bN(h);return f=H/f,i.config=function(c,d){return a(b,c,d)},i},bP=function a(b,c){void 0===c&&(c=1.70158);var d=function(a){return a?--a*a*((c+1)*a+c)+1:0},e="out"===b?d:"in"===b?function(a){return 1-d(1-a)}:bN(d);return e.config=function(c){return a(b,c)},e};ay("Linear,Quad,Cubic,Quart,Quint,Strong",function(a,b){var c=b<5?b+1:b;bM(a+",Power"+(c-1),b?function(a){return Math.pow(a,c)}:function(a){return a},function(a){return 1-Math.pow(1-a,c)},function(a){return a<.5?Math.pow(2*a,c)/2:1-Math.pow((1-a)*2,c)/2})}),bE.Linear.easeNone=bE.none=bE.Linear.easeIn,bM("Elastic",bO("in"),bO("out"),bO()),bU=2*(bT=1/2.75),bV=2.5*bT,bM("Bounce",function(a){return 1-bW(1-a)},bW=function(a){return a0?a+(a+this._rDelay)*this._repeat:a):this.totalDuration()&&this._dur},b.totalDuration=function(a){return arguments.length?(this._dirty=0,a5(this,this._repeat<0?a:(a-this._repeat*this._rDelay)/(this._repeat+1))):this._tDur},b.totalTime=function(a,b){if(bD(),!arguments.length)return this._tTime;var c=this._dp;if(c&&c.smoothChildTiming&&this._ts){for(aY(this,a),!c._dp||c.parent||aZ(c,this);c&&c.parent;)c.parent._time!==c._start+(c._ts>=0?c._tTime/c._ts:-((c.totalDuration()-c._tTime)/c._ts))&&c.totalTime(c._tTime,!0),c=c.parent;!this.parent&&this._dp.autoRemoveChildren&&(this._ts>0&&a0||!this._tDur&&!a)&&a$(this._dp,this,this._start-this._delay)}return(this._tTime!==a||!this._dur&&!b||this._initted&&1e-8===Math.abs(this._zTime)||!this._initted&&this._dur&&a||!a&&!this._initted&&(this.add||this._ptLookup))&&(this._ts||(this._pTime=a),aF(this,a,b)),this},b.time=function(a,b){return arguments.length?this.totalTime(Math.min(this.totalDuration(),a+aU(this))%(this._dur+this._rDelay)||(a?this._dur:0),b):this._time},b.totalProgress=function(a,b){return arguments.length?this.totalTime(this.totalDuration()*a,b):this.totalDuration()?Math.min(1,this._tTime/this._tDur):this.rawTime()>=0&&this._initted?1:0},b.progress=function(a,b){return arguments.length?this.totalTime(this.duration()*(this._yoyo&&!(1&this.iteration())?1-a:a)+aU(this),b):this.duration()?Math.min(1,this._time/this._dur):+(this.rawTime()>0)},b.iteration=function(a,b){var c=this.duration()+this._rDelay;return arguments.length?this.totalTime(this._time+(a-1)*c,b):this._repeat?aV(this._tTime,c)+1:1},b.timeScale=function(a,b){if(!arguments.length)return -1e-8===this._rts?0:this._rts;if(this._rts===a)return this;var c=this.parent&&this._ts?aW(this.parent._time,this):this._tTime;return this._rts=+a||0,this._ts=this._ps||-1e-8===a?0:this._rts,this.totalTime(bb(-Math.abs(this._delay),this.totalDuration(),c),!1!==b),aX(this),aS(this)},b.paused=function(a){return arguments.length?(this._ps!==a&&(this._ps=a,a?(this._pTime=this._tTime||Math.max(-this._delay,this.rawTime()),this._ts=this._act=0):(bD(),this._ts=this._rts,this.totalTime(this.parent&&!this.parent.smoothChildTiming?this.rawTime():this._tTime||this._pTime,1===this.progress()&&1e-8!==Math.abs(this._zTime)&&(this._tTime-=1e-8)))),this):this._ps},b.startTime=function(a){if(arguments.length){this._start=aA(a);var b=this.parent||this._dp;return b&&(b._sort||!this.parent)&&a$(b,this,this._start-this._delay),this}return this._start},b.endTime=function(a){return this._start+(S(a)?this.totalDuration():this.duration())/Math.abs(this._ts||1)},b.rawTime=function(a){var b=this.parent||this._dp;return b?a&&(!this._ts||this._repeat&&this._time&&1>this.totalProgress())?this._tTime%(this._dur+this._rDelay):this._ts?aW(b.rawTime(a),this):this._tTime:this._tTime},b.revert=function(a){void 0===a&&(a=am);var b=v;return v=a,aE(this)&&(this.timeline&&this.timeline.revert(a),this.totalTime(-.01,a.suppressEvents)),"nested"!==this.data&&!1!==a.kill&&this.kill(),v=b,this},b.globalTime=function(a){for(var b=this,c=arguments.length?a:b.rawTime();b;)c=b._start+c/(Math.abs(b._ts)||1),b=b._dp;return!this.parent&&this._sat?this._sat.globalTime(a):c},b.repeat=function(a){return arguments.length?(this._repeat=a===1/0?-2:a,a6(this)):-2===this._repeat?1/0:this._repeat},b.repeatDelay=function(a){if(arguments.length){var b=this._time;return this._rDelay=a,a6(this),b?this.time(b):this}return this._rDelay},b.yoyo=function(a){return arguments.length?(this._yoyo=a,this):this._yoyo},b.seek=function(a,b){return this.totalTime(a8(this,a),S(b))},b.restart=function(a,b){return this.play().totalTime(a?-this._delay:0,S(b)),this._dur||(this._zTime=-1e-8),this},b.play=function(a,b){return null!=a&&this.seek(a,b),this.reversed(!1).paused(!1)},b.reverse=function(a,b){return null!=a&&this.seek(a||this.totalDuration(),b),this.reversed(!0).paused(!1)},b.pause=function(a,b){return null!=a&&this.seek(a,b),this.paused(!0)},b.resume=function(){return this.paused(!1)},b.reversed=function(a){return arguments.length?(!!a!==this.reversed()&&this.timeScale(-this._rts||(a?-1e-8:0)),this):this._rts<0},b.invalidate=function(){return this._initted=this._act=0,this._zTime=-1e-8,this},b.isActive=function(){var a,b=this.parent||this._dp,c=this._start;return!!(!b||this._ts&&this._initted&&b.isActive()&&(a=b.rawTime(!0))>=c&&a1?(b?(d[a]=b,c&&(d[a+"Params"]=c),"onUpdate"===a&&(this._onUpdate=b)):delete d[a],this):d[a]},b.then=function(a){var b=this,c=b._prom;return new Promise(function(d){var e=O(a)?a:aH,f=function(){var a=b.then;b.then=null,c&&c(),O(e)&&(e=e(b))&&(e.then||e===b)&&(b.then=a),d(e),b.then=a};b._initted&&1===b.totalProgress()&&b._ts>=0||!b._tTime&&b._ts<0?f():b._prom=f})},b.kill=function(){br(this)},a}();aI(bR.prototype,{_time:0,_start:0,_end:0,_tTime:0,_tDur:0,_dirty:0,_repeat:0,_yoyo:!1,parent:null,_initted:!1,_rDelay:0,_ts:1,_dp:0,ratio:0,_zTime:-1e-8,_prom:0,_ps:!1,_rts:1});var bS=function(a){function d(c,d){var e;return void 0===c&&(c={}),(e=a.call(this,c)||this).labels={},e.smoothChildTiming=!!c.smoothChildTiming,e.autoRemoveChildren=!!c.autoRemoveChildren,e._sort=S(c.sortChildren),x&&a$(c.parent||x,b(e),d),c.reversed&&e.reverse(),c.paused&&e.paused(!0),c.scrollTrigger&&a_(b(e),c.scrollTrigger),e}c(d,a);var e=d.prototype;return e.to=function(a,b,c){return a9(0,arguments,this),this},e.from=function(a,b,c){return a9(1,arguments,this),this},e.fromTo=function(a,b,c,d){return a9(2,arguments,this),this},e.set=function(a,b,c){return b.duration=0,b.parent=this,aM(b).repeatDelay||(b.repeat=0),b.immediateRender=!!b.immediateRender,new b8(a,b,a8(this,c),1),this},e.call=function(a,b,c){return a$(this,b8.delayedCall(0,a,b),c)},e.staggerTo=function(a,b,c,d,e,f,g){return c.duration=b,c.stagger=c.stagger||d,c.onComplete=f,c.onCompleteParams=g,c.parent=this,new b8(a,c,a8(this,e)),this},e.staggerFrom=function(a,b,c,d,e,f,g){return c.runBackwards=1,aM(c).immediateRender=S(c.immediateRender),this.staggerTo(a,b,c,d,e,f,g)},e.staggerFromTo=function(a,b,c,d,e,f,g,h){return d.startAt=c,aM(d).immediateRender=S(d.immediateRender),this.staggerTo(a,b,d,e,f,g,h)},e.render=function(a,b,c){var d,e,f,g,h,i,j,k,l,m,n,o,p=this._time,q=this._dirty?this.totalDuration():this._tDur,r=this._dur,s=a<=0?0:aA(a),t=this._zTime<0!=a<0&&(this._initted||!r);if(this!==x&&s>q&&a>=0&&(s=q),s!==this._tTime||c||t){if(p!==this._time&&r&&(s+=this._time-p,a+=this._time-p),d=s,l=this._start,i=!(k=this._ts),t&&(r||(p=this._zTime),(a||!b)&&(this._zTime=a)),this._repeat){if(n=this._yoyo,h=r+this._rDelay,this._repeat<-1&&a<0)return this.totalTime(100*h+a,b,c);if(d=aA(s%h),s===q?(g=this._repeat,d=r):((g=~~(m=aA(s/h)))&&g===m&&(d=r,g--),d>r&&(d=r)),m=aV(this._tTime,h),!p&&this._tTime&&m!==g&&this._tTime-m*h-this._dur<=0&&(m=g),n&&1&g&&(d=r-d,o=1),g!==m&&!this._lock){var u=n&&1&m,w=u===(n&&1&g);if(g=p&&a>=0)for(e=this._first;e;){if(f=e._next,(e._act||d>=e._start)&&e._ts&&j!==e){if(e.parent!==this)return this.render(a,b,c);if(e.render(e._ts>0?(d-e._start)*e._ts:(e._dirty?e.totalDuration():e._tDur)+(d-e._start)*e._ts,b,c),d!==this._time||!this._ts&&!i){j=0,f&&(s+=this._zTime=-1e-8);break}}e=f}else{e=this._last;for(var y=a<0?a:d;e;){if(f=e._prev,(e._act||y<=e._end)&&e._ts&&j!==e){if(e.parent!==this)return this.render(a,b,c);if(e.render(e._ts>0?(y-e._start)*e._ts:(e._dirty?e.totalDuration():e._tDur)+(y-e._start)*e._ts,b,c||v&&aE(e)),d!==this._time||!this._ts&&!i){j=0,f&&(s+=this._zTime=y?-1e-8:1e-8);break}}e=f}}if(j&&!b&&(this.pause(),j.render(d>=p?0:-1e-8)._zTime=d>=p?1:-1,this._ts))return this._start=l,aX(this),this.render(a,b,c);this._onUpdate&&!b&&bq(this,"onUpdate",!0),(s===q&&this._tTime>=this.totalDuration()||!s&&p)&&(l===this._start||Math.abs(k)!==Math.abs(this._ts))&&!this._lock&&((a||!r)&&(s===q&&this._ts>0||!s&&this._ts<0)&&aQ(this,1),b||a<0&&!p||!s&&!p&&q||(bq(this,s===q&&a>=0?"onComplete":"onReverseComplete",!0),this._prom&&!(s0)&&this._prom()))}return this},e.add=function(a,b){var c=this;if(P(b)||(b=a8(this,b,a)),!(a instanceof bR)){if(W(a))return a.forEach(function(a){return c.add(a,b)}),this;if(N(a))return this.addLabel(a,b);if(!O(a))return this;a=b8.delayedCall(0,a)}return this!==a?a$(this,a,b):this},e.getChildren=function(a,b,c,d){void 0===a&&(a=!0),void 0===b&&(b=!0),void 0===c&&(c=!0),void 0===d&&(d=-1e8);for(var e=[],f=this._first;f;)f._start>=d&&(f instanceof b8?b&&e.push(f):(c&&e.push(f),a&&e.push.apply(e,f.getChildren(!0,b,c)))),f=f._next;return e},e.getById=function(a){for(var b=this.getChildren(1,1,1),c=b.length;c--;)if(b[c].vars.id===a)return b[c]},e.remove=function(a){return N(a)?this.removeLabel(a):O(a)?this.killTweensOf(a):(a.parent===this&&aP(this,a),a===this._recent&&(this._recent=this._last),aR(this))},e.totalTime=function(b,c){return arguments.length?(this._forcing=1,!this._dp&&this._ts&&(this._start=aA(bC.time-(this._ts>0?b/this._ts:-((this.totalDuration()-b)/this._ts)))),a.prototype.totalTime.call(this,b,c),this._forcing=0,this):this._tTime},e.addLabel=function(a,b){return this.labels[a]=a8(this,b),this},e.removeLabel=function(a){return delete this.labels[a],this},e.addPause=function(a,b,c){var d=b8.delayedCall(0,b||aj,c);return d.data="isPause",this._hasPause=1,a$(this,d,a8(this,a))},e.removePause=function(a){var b=this._first;for(a=a8(this,a);b;)b._start===a&&"isPause"===b.data&&aQ(b),b=b._next},e.killTweensOf=function(a,b,c){for(var d=this.getTweensOf(a,c),e=d.length;e--;)bX!==d[e]&&d[e].kill(a,b);return this},e.getTweensOf=function(a,b){for(var c,d=[],e=bf(a),f=this._first,g=P(b);f;)f instanceof b8?aC(f._targets,e)&&(g?(!bX||f._initted&&f._ts)&&f.globalTime(0)<=b&&f.globalTime(f.totalDuration())>b:!b||f.isActive())&&d.push(f):(c=f.getTweensOf(e,b)).length&&d.push.apply(d,c),f=f._next;return d},e.tweenTo=function(a,b){b=b||{};var c,d=this,e=a8(d,a),f=b,g=f.startAt,h=f.onStart,i=f.onStartParams,j=f.immediateRender,k=b8.to(d,aI({ease:b.ease||"none",lazy:!1,immediateRender:!1,time:e,overwrite:"auto",duration:b.duration||Math.abs((e-(g&&"time"in g?g.time:d._time))/d.timeScale())||1e-8,onStart:function(){if(d.pause(),!c){var a=b.duration||Math.abs((e-(g&&"time"in g?g.time:d._time))/d.timeScale());k._dur!==a&&a5(k,a,0,1).render(k._time,!0,!0),c=1}h&&h.apply(k,i||[])}},b));return j?k.render(0):k},e.tweenFromTo=function(a,b,c){return this.tweenTo(b,aI({startAt:{time:a8(this,a)}},c))},e.recent=function(){return this._recent},e.nextLabel=function(a){return void 0===a&&(a=this._time),bp(this,a8(this,a))},e.previousLabel=function(a){return void 0===a&&(a=this._time),bp(this,a8(this,a),1)},e.currentLabel=function(a){return arguments.length?this.seek(a,!0):this.previousLabel(this._time+1e-8)},e.shiftChildren=function(a,b,c){void 0===c&&(c=0);var d,e=this._first,f=this.labels;for(a=aA(a);e;)e._start>=c&&(e._start+=a,e._end+=a),e=e._next;if(b)for(d in f)f[d]>=c&&(f[d]+=a);return aR(this)},e.invalidate=function(b){var c=this._first;for(this._lock=0;c;)c.invalidate(b),c=c._next;return a.prototype.invalidate.call(this,b)},e.clear=function(a){void 0===a&&(a=!0);for(var b,c=this._first;c;)b=c._next,this.remove(c),c=b;return this._dp&&(this._time=this._tTime=this._pTime=0),a&&(this.labels={}),aR(this)},e.totalDuration=function(a){var b,c,d,e=0,f=this._last,g=1e8;if(arguments.length)return this.timeScale((this._repeat<0?this.duration():this.totalDuration())/(this.reversed()?-a:a));if(this._dirty){for(d=this.parent;f;)b=f._prev,f._dirty&&f.totalDuration(),(c=f._start)>g&&this._sort&&f._ts&&!this._lock?(this._lock=1,a$(this,f,c-f._delay,1)._lock=0):g=c,c<0&&f._ts&&(e-=c,(!d&&!this._dp||d&&d.smoothChildTiming)&&(this._start+=aA(c/this._ts),this._time-=c,this._tTime-=c),this.shiftChildren(-c,!1,-Infinity),g=0),f._end>e&&f._ts&&(e=f._end),f=b;a5(this,this===x&&this._time>e?this._time:e,1,1),this._dirty=0}return this._tDur},d.updateRoot=function(a){if(x._ts&&(aF(x,aW(a,x)),C=bC.frame),bC.frame>=as){as+=F.autoSleep||120;var b=x._first;if((!b||!b._ts)&&F.autoSleep&&bC._listeners.length<2){for(;b&&!b._ts;)b=b._next;b||bC.sleep()}}},d}(bR);aI(bS.prototype,{_lock:0,_hasPause:0,_forcing:0});var bT,bU,bV,bW,bX,bY,bZ=function(a,b,c,d,e,f,g){var h,i,j,k,l,m,n,o,p=new cm(this._pt,a,b,0,1,cg,null,e),q=0,r=0;for(p.b=c,p.e=d,c+="",d+="",(n=~d.indexOf("random("))&&(d=bn(d)),f&&(f(o=[c,d],a,b),c=o[0],d=o[1]),i=c.match(aa)||[];h=aa.exec(d);)k=h[0],l=d.substring(q,h.index),j?j=(j+1)%5:"rgba("===l.substr(-5)&&(j=1),k!==i[r++]&&(m=parseFloat(i[r-1])||0,p._pt={_next:p._pt,p:l||1===r?l:",",s:m,c:"="===k.charAt(1)?aB(m,k)-m:parseFloat(k)-m,m:j&&j<4?Math.round:0},q=aa.lastIndex);return p.c=q")}),g.duration();else{for(k in i={},w)"ease"===k||"easeEach"===k||b4(k,w[k],i,w.easeEach);for(k in i)for(h=0,D=i[k].sort(function(a,b){return a.t-b.t}),H=0;hm-1e-8&&!o?m:a<1e-8?0:a;if(n){if(p!==this._tTime||!a||c||!this._initted&&this._tTime||this._startAt&&this._zTime<0!==o||this._lazy){if(d=p,k=this.timeline,this._repeat){if(g=n+this._rDelay,this._repeat<-1&&o)return this.totalTime(100*g+a,b,c);if(d=aA(p%g),p===m?(f=this._repeat,d=n):(f=~~(h=aA(p/g)))&&f===h?(d=n,f--):d>n&&(d=n),(i=this._yoyo&&1&f)&&(d=n-d),h=aV(this._tTime,g),d===l&&!c&&this._initted&&f===h)return this._tTime=p,this;f!==h&&this.vars.repeatRefresh&&!i&&!this._lock&&d!==g&&this._initted&&(this._lock=c=1,this.render(aA(g*f),!0).invalidate()._lock=0)}if(!this._initted){if(a0(this,o?a:d,c,b,p))return this._tTime=0,this;if(l!==this._time&&!(c&&this.vars.repeatRefresh&&f!==h))return this;if(n!==this._dur)return this.render(a,b,c)}if(this._rEase){var q=d0||!p&&this._ts<0)&&aQ(this,1),!b&&!(o&&!l)&&(p||l||i)&&(bq(this,p===m?"onComplete":"onReverseComplete",!0),this._prom&&!(p0)&&this._prom()))}}else a3(this,a,b,c);return this},e.targets=function(){return this._targets},e.invalidate=function(b){return b&&this.vars.runBackwards||(this._startAt=0),this._pt=this._op=this._onUpdate=this._lazy=this.ratio=0,this._ptLookup=[],this.timeline&&this.timeline.invalidate(b),a.prototype.invalidate.call(this,b)},e.resetTo=function(a,b,c,d,e){E||bC.wake(),this._ts||this.play();var f=Math.min(this._dur,(this._dp._time-this._start)*this._ts);return(this._initted||b1(this,f),b2(this,a,b,c,d,this._ease(f/this._dur),f,e))?this.resetTo(a,b,c,d,1):(aY(this,0),this.parent||aO(this._dp,this,"_first","_last",this._dp._sort?"_start":0),this.render(0))},e.kill=function(a,b){if(void 0===b&&(b="all"),!a&&(!b||"all"===b))return this._lazy=this._pt=0,this.parent?br(this):this.scrollTrigger&&this.scrollTrigger.kill(!!v),this;if(this.timeline){var c=this.timeline.totalDuration();return this.timeline.killTweensOf(a,b,bX&&!0!==bX.vars.overwrite)._first||br(this),this.parent&&c!==this.timeline.totalDuration()&&a5(this,this._dur*this.timeline._tDur/c,0,1),this}var d,e,f,g,h,i,j,k=this._targets,l=a?bf(a):k,m=this._ptLookup,n=this._pt;if((!b||"all"===b)&&aN(k,l))return"all"===b&&(this._pt=0),br(this);for(d=this._op=this._op||[],"all"!==b&&(N(b)&&(h={},ay(b,function(a){return h[a]=1}),b=h),b=b3(k,b)),j=k.length;j--;)if(~l.indexOf(k[j]))for(h in e=m[j],"all"===b?(d[j]=b,g=e,f={}):(f=d[j]=d[j]||{},g=b),g)(i=e&&e[h])&&("kill"in i.d&&!0!==i.d.kill(h)||aP(this,i,"_pt"),delete e[h]),"all"!==f&&(f[h]=1);return this._initted&&!this._pt&&n&&br(this),this},d.to=function(a,b){return new d(a,b,arguments[2])},d.from=function(a,b){return a9(1,arguments)},d.delayedCall=function(a,b,c,e){return new d(b,0,{immediateRender:!1,lazy:!1,overwrite:!1,delay:a,onComplete:b,onReverseComplete:b,onCompleteParams:c,onReverseCompleteParams:c,callbackScope:e})},d.fromTo=function(a,b,c){return a9(2,arguments)},d.set=function(a,b){return b.duration=0,b.repeatDelay||(b.repeat=0),new d(a,b)},d.killTweensOf=function(a,b,c){return x.killTweensOf(a,b,c)},d}(bR);aI(b8.prototype,{_targets:[],_lazy:0,_startAt:0,_op:0,_onInit:0}),ay("staggerTo,staggerFrom,staggerFromTo",function(a){b8[a]=function(){var b=new bS,c=bd.call(arguments,0);return c.splice("staggerFromTo"===a?5:4,0,0),b[a].apply(b,c)}});var b9=function(a,b,c){return a[b]=c},ca=function(a,b,c){return a[b](c)},cb=function(a,b,c,d){return a[b](d.fp,c)},cc=function(a,b,c){return a.setAttribute(b,c)},cd=function(a,b){return O(a[b])?ca:Q(a[b])&&a.setAttribute?cc:b9},ce=function(a,b){return b.set(b.t,b.p,Math.round((b.s+b.c*a)*1e6)/1e6,b)},cf=function(a,b){return b.set(b.t,b.p,!!(b.s+b.c*a),b)},cg=function(a,b){var c=b._pt,d="";if(!a&&b.b)d=b.b;else if(1===a&&b.e)d=b.e;else{for(;c;)d=c.p+(c.m?c.m(c.s+c.c*a):Math.round((c.s+c.c*a)*1e4)/1e4)+d,c=c._next;d+=b.c}b.set(b.t,b.p,d,b)},ch=function(a,b){for(var c=b._pt;c;)c.r(a,c.d),c=c._next},ci=function(a,b,c,d){for(var e,f=this._pt;f;)e=f._next,f.p===d&&f.modifier(a,b,c),f=e},cj=function(a){for(var b,c,d=this._pt;d;)c=d._next,(d.p!==a||d.op)&&d.op!==a?d.dep||(b=1):aP(this,d,"_pt"),d=c;return!b},ck=function(a,b,c,d){d.mSet(a,b,d.m.call(d.tween,c,d.mt),d)},cl=function(a){for(var b,c,d,e,f=a._pt;f;){for(b=f._next,c=d;c&&c.pr>f.pr;)c=c._next;(f._prev=c?c._prev:e)?f._prev._next=f:d=f,(f._next=c)?c._prev=f:e=f,f=b}a._pt=d},cm=function(){function a(a,b,c,d,e,f,g,h,i){this.t=b,this.s=d,this.c=e,this.p=c,this.r=f||ce,this.d=g||this,this.set=h||b9,this.pr=i||0,this._next=a,a&&(a._prev=this)}return a.prototype.modifier=function(a,b,c){this.mSet=this.mSet||this.set,this.set=ck,this.m=a,this.mt=c,this.tween=b},a}();ay(au+"parent,duration,ease,delay,overwrite,runBackwards,startAt,yoyo,immediateRender,repeat,repeatDelay,data,paused,reversed,lazy,callbackScope,stringFilter,id,yoyoEase,stagger,inherit,repeatRefresh,keyframes,autoRevert,scrollTrigger,easeReverse",function(a){return an[a]=1}),ae.TweenMax=ae.TweenLite=b8,ae.TimelineLite=ae.TimelineMax=bS,x=new bS({sortChildren:!1,defaults:G,autoRemoveChildren:!0,id:"root",smoothChildTiming:!0}),F.stringFilter=bB;var cn=[],co={},cp=[],cq=0,cr=0,cs=function(a){return(co[a]||cp).map(function(a){return a()})},ct=function(){var a=Date.now(),b=[];a-cq>2&&(cs("matchMediaInit"),cn.forEach(function(a){var c,d,e,f,g=a.queries,h=a.conditions;for(d in g)(c=y.matchMedia(g[d]).matches)&&(e=1),c!==h[d]&&(h[d]=c,f=1);f&&(a.revert(),e&&b.push(a))}),cs("matchMediaRevert"),b.forEach(function(a){return a.onMatch(a,function(b){return a.add(null,b)})}),cq=a,cs("matchMedia"))},cu=function(){function a(a,b){this.selector=b&&bg(b),this.data=[],this._r=[],this.isReverted=!1,this.id=cr++,a&&this.add(a)}var b=a.prototype;return b.add=function(a,b,c){O(a)&&(c=b,b=a,a=O);var d=this,e=function(){var a,e=w,f=d.selector;return e&&e!==d&&e.data.push(d),c&&(d.selector=bg(c)),w=d,a=b.apply(d,arguments),O(a)&&d._r.push(a),w=e,d.selector=f,d.isReverted=!1,a};return d.last=e,a===O?e(d,function(a){return d.add(null,a)}):a?d[a]=e:e},b.ignore=function(a){var b=w;w=null,a(this),w=b},b.getTweens=function(){var b=[];return this.data.forEach(function(c){return c instanceof a?b.push.apply(b,c.getTweens()):c instanceof b8&&!(c.parent&&"nested"===c.parent.data)&&b.push(c)}),b},b.clear=function(){this._r.length=this.data.length=0},b.kill=function(a,b){var c=this;if(a){for(var d,e=c.getTweens(),f=c.data.length;f--;)"isFlip"===(d=c.data[f]).data&&(d.revert(),d.getChildren(!0,!0,!1).forEach(function(a){return e.splice(e.indexOf(a),1)}));for(e.map(function(a){return{g:a._dur||a._delay||a._sat&&!a._sat.vars.immediateRender?a.globalTime(0):-1/0,t:a}}).sort(function(a,b){return b.g-a.g||-1/0}).forEach(function(b){return b.t.revert(a)}),f=c.data.length;f--;)(d=c.data[f])instanceof bS?"nested"!==d.data&&(d.scrollTrigger&&d.scrollTrigger.revert(),d.kill()):d instanceof b8||!d.revert||d.revert(a);c._r.forEach(function(b){return b(a,c)}),c.isReverted=!0}else this.data.forEach(function(a){return a.kill&&a.kill()});if(this.clear(),b)for(var g=cn.length;g--;)cn[g].id===this.id&&cn.splice(g,1)},b.revert=function(a){this.kill(a||{})},a}(),cv=function(){function a(a){this.contexts=[],this.scope=a,w&&w.data.push(this)}var b=a.prototype;return b.add=function(a,b,c){R(a)||(a={matches:a});var d,e,f,g=new cu(0,c||this.scope),h=g.conditions={};for(e in w&&!g.selector&&(g.selector=w.selector),this.contexts.push(g),b=g.add("onMatch",b),g.queries=a,a)"all"===e?f=1:(d=y.matchMedia(a[e]))&&(0>cn.indexOf(g)&&cn.push(g),(h[e]=d.matches)&&(f=1),d.addListener?d.addListener(ct):d.addEventListener("change",ct));return f&&b(g,function(a){return g.add(null,a)}),this},b.revert=function(a){this.kill(a||{})},b.kill=function(a){this.contexts.forEach(function(b){return b.kill(a,!0)})},a}(),cw={registerPlugin:function(){for(var a=arguments.length,b=Array(a),c=0;c1){var d=a.map(function(a){return cA.quickSetter(a,b,c)}),e=d.length;return function(a){for(var b=e;b--;)d[b](a)}}a=a[0]||{};var f=aq[b],g=aw(a),h=g.harness&&(g.harness.aliases||{})[b]||b,i=f?function(b){var d=new f;D._pt=0,d.init(a,c?b+c:b,D,0,[a]),d.render(1,d),D._pt&&ch(1,D)}:g.set(a,h);return f?i:function(b){return i(a,h,c?b+c:b,g,1)}},quickTo:function(a,b,c){var d,e=cA.to(a,aI(((d={})[b]="+=0.1",d.paused=!0,d.stagger=0,d),c||{})),f=function(a,c,d){return e.resetTo(b,a,c,d)};return f.tween=e,f},isTweening:function(a){return x.getTweensOf(a,!0).length>0},defaults:function(a){return a&&a.ease&&(a.ease=bL(a.ease,G.ease)),aK(G,a||{})},config:function(a){return aK(F,a||{})},registerEffect:function(a){var b=a.name,c=a.effect,d=a.plugins,e=a.defaults,f=a.extendTimeline;(d||"").split(",").forEach(function(a){return a&&!aq[a]&&!ae[a]&&ah(b+" effect requires "+a+" plugin.")}),ar[b]=function(a,b,d){return c(bf(a),aI(b||{},e),d)},f&&(bS.prototype[b]=function(a,c,d){return this.add(ar[b](a,R(c)?c:(d=c)&&{},this),d)})},registerEase:function(a,b){bE[a]=bL(b)},parseEase:function(a,b){return arguments.length?bL(a,b):bE},getById:function(a){return x.getById(a)},exportRoot:function(a,b){void 0===a&&(a={});var c,d,e=new bS(a);for(e.smoothChildTiming=S(a.smoothChildTiming),x.remove(e),e._dp=0,e._time=e._tTime=x._time,c=x._first;c;)d=c._next,(b||!(!c._dur&&c instanceof b8&&c.vars.onComplete===c._targets[0]))&&a$(e,c,c._start-c._delay),c=d;return a$(x,e,0),e},context:function(a,b){return a?new cu(a,b):w},matchMedia:function(a){return new cv(a)},matchMediaRefresh:function(){return cn.forEach(function(a){var b,c,d=a.conditions;for(c in d)d[c]&&(d[c]=!1,b=1);b&&a.revert()})||ct()},addEventListener:function(a,b){var c=co[a]||(co[a]=[]);~c.indexOf(b)||c.push(b)},removeEventListener:function(a,b){var c=co[a],d=c&&c.indexOf(b);d>=0&&c.splice(d,1)},utils:{wrap:function a(b,c,d){var e=c-b;return W(b)?bm(b,a(0,b.length),c):ba(d,function(a){return(e+(a-b)%e)%e+b})},wrapYoyo:function a(b,c,d){var e=c-b,f=2*e;return W(b)?bm(b,a(0,b.length-1),c):ba(d,function(a){return a=(f+(a-b)%f)%f||0,b+(a>e?f-a:a)})},distribute:bi,random:bl,snap:bk,normalize:function(a,b,c){return bo(a,b,0,1,c)},getUnit:bc,clamp:function(a,b,c){return ba(c,function(c){return bb(a,b,c)})},splitColor:bw,toArray:bf,selector:bg,mapRange:bo,pipe:function(){for(var a=arguments.length,b=Array(a),c=0;c=0)return;g.svg&&(this.svgo=e.getAttribute("data-svg-origin"),this.props.push(c2,c,"")),b=c1}(f||c)&&this.props.push(b,c,f[b])},c4=function(a){a.translate&&(a.removeProperty("translate"),a.removeProperty("scale"),a.removeProperty("rotate"))},c5=function(){var a,b,c=this.props,d=this.target,e=d.style,f=d._gsap;for(a=0;a=0?c9[e]:"")+a},db=function(){},dc=function(a){var b,c=a.ownerSVGElement,d=c7("svg",c&&c.getAttribute("xmlns")||"http://www.w3.org/2000/svg"),e=a.cloneNode(!0);e.style.display="block",d.appendChild(e),cC.appendChild(d);try{b=e.getBBox()}catch(a){}return d.removeChild(e),cC.removeChild(d),b},dd=function(a,b){for(var c=b.length;c--;)if(a.hasAttribute(b[c]))return a.getAttribute(b[c])},de=function(a){var b,c;try{b=a.getBBox()}catch(d){b=dc(a),c=1}return b&&(b.width||b.height)||c||(b=dc(a)),!b||b.width||b.x||b.y?b:{x:+dd(a,["x","cx","x1"])||0,y:+dd(a,["y","cy","y1"])||0,width:0,height:0}},df=function(a){return!!(a.getCTM&&(!a.parentNode||a.ownerSVGElement)&&de(a))},dg=function(a,b){if(b){var c,d=a.style;b in cI&&b!==c2&&(b=c1),d.removeProperty?(("ms"===(c=b.substr(0,2))||"webkit"===b.substr(0,6))&&(b="-"+b),d.removeProperty("--"===c?b:b.replace(cM,"-$1").toLowerCase())):d.removeAttribute(b)}},dh=function(a,b,c,d,e,f){var g=new cm(a._pt,b,c,0,1,f?cW:cV);return a._pt=g,g.b=d,g.e=e,a._props.push(c),g},di={deg:1,rad:1,turn:1},dj={grid:1,flex:1},dk=function a(b,c,d,e){var f,g,h,i,j=parseFloat(d)||0,k=(d+"").trim().substr((j+"").length)||"px",l=cE.style,m=cN.test(c),n="svg"===b.tagName.toLowerCase(),o=(n?"client":"offset")+(m?"Width":"Height"),p="px"===e,q="%"===e;if(e===k||!j||di[e]||di[k])return j;if("px"===k||p||(j=a(b,c,d,"px")),i=b.getCTM&&df(b),(q||"%"===k)&&(cI[c]||~c.indexOf("adius")))return f=i?b.getBBox()[m?"width":"height"]:b[o],az(q?j/f*100:j/100*f);if(l[m?"width":"height"]=100+(p?k:e),g="rem"!==e&&~c.indexOf("adius")||"em"===e&&b.appendChild&&!n?b:b.parentNode,i&&(g=(b.ownerSVGElement||{}).parentNode),g&&g!==cB&&g.appendChild||(g=cB.body),(h=g._gsap)&&q&&h.width&&m&&h.time===bC.time&&!h.uncache)return az(j/h.width*100);if(q&&("height"===c||"width"===c)){var r=b.style[c];b.style[c]=100+e,f=b[o],r?b.style[c]=r:dg(b,c)}else(q||"%"===k)&&!dj[c8(g,"display")]&&(l.position=c8(b,"position")),g===b&&(l.position="static"),g.appendChild(cE),f=cE[o],g.removeChild(cE),l.position="absolute";return m&&q&&((h=aw(g)).time=bC.time,h.width=g[o]),az(p?f*j/100:f&&j?100/f*j:0)},dl=function(a,b,c,d){var e;return cD||db(),b in cP&&"transform"!==b&&~(b=cP[b]).indexOf(",")&&(b=b.split(",")[0]),cI[b]&&"transform"!==b?(e=dy(a,d),e="transformOrigin"!==b?e[b]:e.svg?e.origin:dz(c8(a,c2))+" "+e.zOrigin+"px"):(!(e=a.style[b])||"auto"===e||d||~(e+"").indexOf("calc("))&&(e=dr[b]&&dr[b](a,b,c)||c8(a,b)||ax(a,b)||+("opacity"===b)),c&&!~(e+"").trim().indexOf(" ")?dk(a,b,e,c)+c:e},dm=function(a,b,c,d){if(!c||"none"===c){var e=da(b,a,1),f=e&&c8(a,e,1);f&&f!==c?(b=e,c=f):"borderColor"===b&&(c=c8(a,"borderTopColor"))}var g,h,i,j,k,l,m,n,o,p,q,r=new cm(this._pt,a.style,b,0,1,cg),s=0,t=0;if(r.b=c,r.e=d,c+="","var(--"===(d+="").substring(0,6)&&(d=c8(a,d.substring(4,d.indexOf(")")))),"auto"===d&&(l=a.style[b],a.style[b]=d,d=c8(a,b)||d,l?a.style[b]=l:dg(a,b)),bB(g=[c,d]),c=g[0],d=g[1],i=c.match(_)||[],(d.match(_)||[]).length){for(;h=_.exec(d);)m=h[0],o=d.substring(s,h.index),k?k=(k+1)%5:("rgba("===o.substr(-5)||"hsla("===o.substr(-5))&&(k=1),m!==(l=i[t++]||"")&&(j=parseFloat(l)||0,q=l.substr((j+"").length),"="===m.charAt(1)&&(m=aB(j,m)+q),n=parseFloat(m),p=m.substr((n+"").length),s=_.lastIndex-p.length,p||(p=p||F.units[b]||q,s===d.length&&(d+=p,r.e+=p)),q!==p&&(j=dk(a,b,l,p)||0),r._pt={_next:r._pt,p:o||1===t?o:",",s:j,c:n-j,m:k&&k<4||"zIndex"===b?Math.round:0});r.c=s-1;)cI[c=h[e]]&&(d=1,c="transformOrigin"===c?c2:c1),dg(f,c);d&&(dg(f,c1),i&&(i.svg&&f.removeAttribute("transform"),g.scale=g.rotate=g.translate="none",dy(f,1),i.uncache=1,c4(g)))}},dr={clearProps:function(a,b,c,d,e){if("isFromStart"!==e.data){var f=a._pt=new cm(a._pt,b,c,0,0,dq);return f.u=d,f.pr=-10,f.tween=e,a._props.push(c),1}}},ds=[1,0,0,1,0,0],dt={},du=function(a){return"matrix(1, 0, 0, 1, 0, 0)"===a||"none"===a||!a},dv=function(a){var b=c8(a,c1);return du(b)?ds:b.substr(7).match($).map(az)},dw=function(a,b){var c,d,e,f,g=a._gsap||aw(a),h=a.style,i=dv(a);return g.svg&&a.getAttribute("transform")?"1,0,0,1,0,0"===(i=[(e=a.transform.baseVal.consolidate().matrix).a,e.b,e.c,e.d,e.e,e.f]).join(",")?ds:i:(i!==ds||a.offsetParent||a===cC||g.svg||(e=h.display,h.display="block",(c=a.parentNode)&&(a.offsetParent||a.getBoundingClientRect().width)||(f=1,d=a.nextElementSibling,cC.appendChild(a)),i=dv(a),e?h.display=e:dg(a,"display"),f&&(d?c.insertBefore(a,d):c?c.appendChild(a):cC.removeChild(a))),b&&i.length>6?[i[0],i[1],i[4],i[5],i[12],i[13]]:i)},dx=function(a,b,c,d,e,f){var g,h,i,j,k=a._gsap,l=e||dw(a,!0),m=k.xOrigin||0,n=k.yOrigin||0,o=k.xOffset||0,p=k.yOffset||0,q=l[0],r=l[1],s=l[2],t=l[3],u=l[4],v=l[5],w=b.split(" "),x=parseFloat(w[0])||0,y=parseFloat(w[1])||0;c?l!==ds&&(h=q*t-r*s)&&(i=t/h*x+-s/h*y+(s*v-t*u)/h,j=-r/h*x+q/h*y-(q*v-r*u)/h,x=i,y=j):(x=(g=de(a)).x+(~w[0].indexOf("%")?x/100*g.width:x),y=g.y+(~(w[1]||w[0]).indexOf("%")?y/100*g.height:y)),d||!1!==d&&k.smooth?(k.xOffset=o+((u=x-m)*q+(v=y-n)*s)-u,k.yOffset=p+(u*r+v*t)-v):k.xOffset=k.yOffset=0,k.xOrigin=x,k.yOrigin=y,k.smooth=!!d,k.origin=b,k.originIsAbsolute=!!c,a.style[c2]="0px 0px",f&&(dh(f,k,"xOrigin",m,x),dh(f,k,"yOrigin",n,y),dh(f,k,"xOffset",o,k.xOffset),dh(f,k,"yOffset",p,k.yOffset)),a.setAttribute("data-svg-origin",x+" "+y)},dy=function(a,b){var c=a._gsap||new bQ(a);if("x"in c&&!b&&!c.uncache)return c;var d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,G,H,I,J,K=a.style,L=c.scaleX<0,M=getComputedStyle(a),N=c8(a,c2)||"0";return d=e=f=i=j=k=l=m=n=0,g=h=1,c.svg=!!(a.getCTM&&df(a)),M.translate&&(("none"!==M.translate||"none"!==M.scale||"none"!==M.rotate)&&(K[c1]=("none"!==M.translate?"translate3d("+(M.translate+" 0 0").split(" ").slice(0,3).join(", ")+") ":"")+("none"!==M.rotate?"rotate("+M.rotate+") ":"")+("none"!==M.scale?"scale("+M.scale.split(" ").join(",")+") ":"")+("none"!==M[c1]?M[c1]:"")),K.scale=K.rotate=K.translate="none"),q=dw(a,c.svg),c.svg&&(c.uncache?(B=a.getBBox(),N=c.xOrigin-B.x+"px "+(c.yOrigin-B.y)+"px",A=""):A=!b&&a.getAttribute("data-svg-origin"),dx(a,A||N,!!A||c.originIsAbsolute,!1!==c.smooth,q)),o=c.xOrigin||0,p=c.yOrigin||0,q!==ds&&(u=q[0],v=q[1],w=q[2],x=q[3],d=y=q[4],e=z=q[5],6===q.length?(g=Math.sqrt(u*u+v*v),h=Math.sqrt(x*x+w*w),i=u||v?cL(v,u)*cJ:0,(l=w||x?cL(w,x)*cJ+i:0)&&(h*=Math.abs(Math.cos(l*cK))),c.svg&&(d-=o-(o*u+p*w),e-=p-(o*v+p*x))):(J=q[6],H=q[7],D=q[8],E=q[9],G=q[10],I=q[11],d=q[12],e=q[13],f=q[14],j=(r=cL(J,G))*cJ,r&&(A=y*(s=Math.cos(-r))+D*(t=Math.sin(-r)),B=z*s+E*t,C=J*s+G*t,D=-(y*t)+D*s,E=-(z*t)+E*s,G=-(J*t)+G*s,I=-(H*t)+I*s,y=A,z=B,J=C),k=(r=cL(-w,G))*cJ,r&&(A=u*(s=Math.cos(-r))-D*(t=Math.sin(-r)),B=v*s-E*t,C=w*s-G*t,I=x*t+I*s,u=A,v=B,w=C),i=(r=cL(v,u))*cJ,r&&(A=u*(s=Math.cos(r))+v*(t=Math.sin(r)),B=y*s+z*t,v=v*s-u*t,z=z*s-y*t,u=A,y=B),j&&Math.abs(j)+Math.abs(i)>359.9&&(j=i=0,k=180-k),g=az(Math.sqrt(u*u+v*v+w*w)),h=az(Math.sqrt(z*z+J*J)),l=Math.abs(r=cL(y,z))>2e-4?r*cJ:0,n=I?1/(I<0?-I:I):0),c.svg&&(A=a.getAttribute("transform"),c.forceCSS=a.setAttribute("transform","")||!du(c8(a,c1)),A&&a.setAttribute("transform",A))),Math.abs(l)>90&&270>Math.abs(l)&&(L?(g*=-1,l+=i<=0?180:-180,i+=i<=0?180:-180):(h*=-1,l+=l<=0?180:-180)),b=b||c.uncache,c.x=d-((c.xPercent=d&&(!b&&c.xPercent||(Math.round(a.offsetWidth/2)===Math.round(-d)?-50:0)))?a.offsetWidth*c.xPercent/100:0)+"px",c.y=e-((c.yPercent=e&&(!b&&c.yPercent||(Math.round(a.offsetHeight/2)===Math.round(-e)?-50:0)))?a.offsetHeight*c.yPercent/100:0)+"px",c.z=f+"px",c.scaleX=az(g),c.scaleY=az(h),c.rotation=az(i)+"deg",c.rotationX=az(j)+"deg",c.rotationY=az(k)+"deg",c.skewX=l+"deg",c.skewY=m+"deg",c.transformPerspective=n+"px",(c.zOrigin=parseFloat(N.split(" ")[2])||!b&&c.zOrigin||0)&&(K[c2]=dz(N)),c.xOffset=c.yOffset=0,c.force3D=F.force3D,c.renderTransform=c.svg?dE:cH?dD:dB,c.uncache=0,c},dz=function(a){return(a=a.split(" "))[0]+" "+a[1]},dA=function(a,b,c){var d=bc(b);return az(parseFloat(b)+parseFloat(dk(a,"x",c+"px",d)))+d},dB=function(a,b){b.z="0px",b.rotationY=b.rotationX="0deg",b.force3D=0,dD(a,b)},dC="0deg",dD=function(a,b){var c=b||this,d=c.xPercent,e=c.yPercent,f=c.x,g=c.y,h=c.z,i=c.rotation,j=c.rotationY,k=c.rotationX,l=c.skewX,m=c.skewY,n=c.scaleX,o=c.scaleY,p=c.transformPerspective,q=c.force3D,r=c.target,s=c.zOrigin,t="",u="auto"===q&&a&&1!==a||!0===q;if(s&&(k!==dC||j!==dC)){var v,w=parseFloat(j)*cK,x=Math.sin(w),y=Math.cos(w);f=dA(r,f,-(x*(v=Math.cos(w=parseFloat(k)*cK))*s)),g=dA(r,g,-(-Math.sin(w)*s)),h=dA(r,h,-(y*v*s)+s)}"0px"!==p&&(t+="perspective("+p+") "),(d||e)&&(t+="translate("+d+"%, "+e+"%) "),(u||"0px"!==f||"0px"!==g||"0px"!==h)&&(t+="0px"!==h||u?"translate3d("+f+", "+g+", "+h+") ":"translate("+f+", "+g+") "),i!==dC&&(t+="rotate("+i+") "),j!==dC&&(t+="rotateY("+j+") "),k!==dC&&(t+="rotateX("+k+") "),(l!==dC||m!==dC)&&(t+="skew("+l+", "+m+") "),(1!==n||1!==o)&&(t+="scale("+n+", "+o+") "),r.style[c1]=t||"translate(0, 0)"},dE=function(a,b){var c,d,e,f,g,h=b||this,i=h.xPercent,j=h.yPercent,k=h.x,l=h.y,m=h.rotation,n=h.skewX,o=h.skewY,p=h.scaleX,q=h.scaleY,r=h.target,s=h.xOrigin,t=h.yOrigin,u=h.xOffset,v=h.yOffset,w=h.forceCSS,x=parseFloat(k),y=parseFloat(l);m=parseFloat(m),n=parseFloat(n),(o=parseFloat(o))&&(n+=o=parseFloat(o),m+=o),m||n?(m*=cK,n*=cK,c=Math.cos(m)*p,d=Math.sin(m)*p,e=-(Math.sin(m-n)*q),f=Math.cos(m-n)*q,n&&(o*=cK,e*=g=Math.sqrt(1+(g=Math.tan(n-o))*g),f*=g,o&&(c*=g=Math.sqrt(1+(g=Math.tan(o))*g),d*=g)),c=az(c),d=az(d),e=az(e),f=az(f)):(c=p,f=q,d=e=0),(x&&!~(k+"").indexOf("px")||y&&!~(l+"").indexOf("px"))&&(x=dk(r,"x",k,"px"),y=dk(r,"y",l,"px")),(s||t||u||v)&&(x=az(x+s-(s*c+t*e)+u),y=az(y+t-(s*d+t*f)+v)),(i||j)&&(x=az(x+i/100*(g=r.getBBox()).width),y=az(y+j/100*g.height)),g="matrix("+c+","+d+","+e+","+f+","+x+","+y+")",r.setAttribute("transform",g),w&&(r.style[c1]=g)},dF=function(a,b,c,d,e){var f,g,h=N(e),i=parseFloat(e)*(h&&~e.indexOf("rad")?cJ:1)-d,j=d+i+"deg";return h&&("short"===(f=e.split("_")[1])&&(i%=360)!=i%180&&(i+=i<0?360:-360),"cw"===f&&i<0?i=(i+36e9)%360-360*~~(i/360):"ccw"===f&&i>0&&(i=(i-36e9)%360-360*~~(i/360))),a._pt=g=new cm(a._pt,b,c,d,i,cR),g.e=j,g.u="deg",a._props.push(c),g},dG=function(a,b){for(var c in b)a[c]=b[c];return a},dH=function(a,b,c){var d,e,f,g,h,i,j,k=dG({},c._gsap),l=c.style;for(e in k.svg?(f=c.getAttribute("transform"),c.setAttribute("transform",""),l[c1]=b,d=dy(c,1),dg(c,c1),c.setAttribute("transform",f)):(f=getComputedStyle(c)[c1],l[c1]=b,d=dy(c,1),l[c1]=f),cI)(f=k[e])!==(g=d[e])&&0>"perspective,force3D,transformOrigin,svgOrigin".indexOf(e)&&(h=bc(f)!==(j=bc(g))?dk(c,e,f,j):parseFloat(f),i=parseFloat(g),a._pt=new cm(a._pt,d,e,h,i-h,cQ),a._pt.u=j||0,a._props.push(e));dG(d,k)};ay("padding,margin,Width,Radius",function(a,b){var c="Right",d="Bottom",e="Left",f=(b<3?["Top",c,d,e]:["Top"+e,"Top"+c,d+c,d+e]).map(function(c){return b<2?a+c:"border"+c+a});dr[b>1?"border"+a:a]=function(a,b,c,d,e){var g,h;if(arguments.length<4)return 5===(h=(g=f.map(function(b){return dl(a,b,c)})).join(" ")).split(g[0]).length?g[0]:h;g=(d+"").split(" "),h={},f.forEach(function(a,b){return h[a]=g[b]=g[b]||g[(b-1)/2|0]}),a.init(b,h,e)}});var dI={name:"css",register:db,targetTest:function(a){return a.style&&a.nodeType},init:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w=this._props,x=a.style,y=c.vars.startAt;for(l in cD||db(),this.styles=this.styles||c6(a),u=this.styles.props,this.tween=c,b)if("autoRound"!==l&&(g=b[l],!(aq[l]&&b0(l,b,c,d,a,e)))){if(j=typeof g,k=dr[l],"function"===j&&(j=typeof(g=g.call(c,d,a,e))),"string"===j&&~g.indexOf("random(")&&(g=bn(g)),k)k(this,a,l,g,c)&&(t=1);else if("--"===l.substr(0,2))f=(getComputedStyle(a).getPropertyValue(l)+"").trim(),g+="",bz.lastIndex=0,!bz.test(f)&&(m=bc(f),(n=bc(g))?m!==n&&(f=dk(a,l,f,n)+n):m&&(g+=m)),this.add(x,"setProperty",f,g,d,e,0,0,l),w.push(l),u.push(l,0,x[l]);else if("undefined"!==j){if(y&&l in y?(N(f="function"==typeof y[l]?y[l].call(c,d,a,e):y[l])&&~f.indexOf("random(")&&(f=bn(f)),bc(f+"")||"auto"===f||(f+=F.units[l]||bc(dl(a,l))||""),"="===(f+"").charAt(1)&&(f=dl(a,l))):f=dl(a,l),i=parseFloat(f),(o="string"===j&&"="===g.charAt(1)&&g.substr(0,2))&&(g=g.substr(2)),h=parseFloat(g),l in cP&&("autoAlpha"===l&&(1===i&&"hidden"===dl(a,"visibility")&&h&&(i=0),u.push("visibility",0,x.visibility),dh(this,x,"visibility",i?"inherit":"hidden",h?"inherit":"hidden",!h)),"scale"!==l&&"transform"!==l&&~(l=cP[l]).indexOf(",")&&(l=l.split(",")[0])),p=l in cI){if(this.styles.save(l),v=g,"string"===j&&"var(--"===g.substring(0,6)){if("calc("===(g=c8(a,g.substring(4,g.indexOf(")")))).substring(0,5)){var z=a.style.perspective;a.style.perspective=g,g=c8(a,"perspective"),z?a.style.perspective=z:dg(a,"perspective")}h=parseFloat(g)}if(q||((r=a._gsap).renderTransform&&!b.parseTransform||dy(a,b.parseTransform),s=!1!==b.smoothOrigin&&r.smooth,(q=this._pt=new cm(this._pt,x,c1,0,1,r.renderTransform,r,0,-1)).dep=1),"scale"===l)this._pt=new cm(this._pt,r,"scaleY",r.scaleY,(o?aB(r.scaleY,o+h):h)-r.scaleY||0,cQ),this._pt.u=0,w.push("scaleY",l),l+="X";else if("transformOrigin"===l){u.push(c2,0,x[c2]),g=dp(g),r.svg?dx(a,g,0,s,0,this):((n=parseFloat(g.split(" ")[2])||0)!==r.zOrigin&&dh(this,r,"zOrigin",r.zOrigin,n),dh(this,x,l,dz(f),dz(g)));continue}else if("svgOrigin"===l){dx(a,g,1,s,0,this);continue}else if(l in dt){dF(this,r,l,i,o?aB(i,o+g):g);continue}else if("smoothOrigin"===l){dh(this,r,"smooth",r.smooth,g);continue}else if("force3D"===l){r[l]=g;continue}else if("transform"===l){dH(this,g,a);continue}}else l in x||(l=da(l)||l);if(p||(h||0===h)&&(i||0===i)&&!cO.test(g)&&l in x)m=(f+"").substr((i+"").length),h||(h=0),n=bc(g)||(l in F.units?F.units[l]:m),m!==n&&(i=dk(a,l,f,n)),this._pt=new cm(this._pt,p?r:x,l,i,(o?aB(i,o+h):h)-i,!p&&("px"===n||"zIndex"===l)&&!1!==b.autoRound?cU:cQ),this._pt.u=n||0,p&&v!==g?(this._pt.b=f,this._pt.e=v,this._pt.r=cT):m!==n&&"%"!==n&&(this._pt.b=f,this._pt.r=cS);else if(l in x)dm.call(this,a,l,f,o?o+g:g);else if(l in a)this.add(a,l,f||a[l],o?o+g:g,d,e);else if("parseTransform"!==l){ag(l,g);continue}p||(l in x?u.push(l,0,x[l]):"function"==typeof a[l]?u.push(l,2,a[l]()):u.push(l,1,f||a[l])),w.push(l)}}t&&cl(this)},render:function(a,b){if(b.tween._time||!cG())for(var c=b._pt;c;)c.r(a,c.d),c=c._next;else b.styles.revert()},get:dl,aliases:cP,getSetter:function(a,b,c){var d=cP[b];return d&&0>d.indexOf(",")&&(b=d),b in cI&&b!==c2&&(a._gsap.x||dl(a,"x"))?c&&cF===c?"scale"===b?c$:cZ:(cF=c||{},"scale"===b?c_:c0):a.style&&!Q(a.style[b])?cX:~b.indexOf("-")?cY:cd(a,b)},core:{_removeProperty:dg,_getMatrix:dw}};cA.utils.checkPrefix=da,cA.core.getStyleSaver=c6,e=ay("x,y,z,scale,scaleX,scaleY,xPercent,yPercent,"+(d="rotation,rotationX,rotationY,skewX,skewY")+",transform,transformOrigin,svgOrigin,force3D,smoothOrigin,transformPerspective",function(a){cI[a]=1}),ay(d,function(a){F.units[a]="deg",dt[a]=1}),cP[e[13]]="x,y,z,scale,scaleX,scaleY,xPercent,yPercent,"+d,ay("0:translateX,1:translateY,2:translateZ,8:rotate,8:rotationZ,8:rotateZ,9:rotateX,10:rotateY",function(a){var b=a.split(":");cP[b[1]]=e[b[0]]}),ay("x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective",function(a){F.units[a]="px"}),cA.registerPlugin(dI);var dJ=cA.registerPlugin(dI)||cA;dJ.core.Tween,a.s(["default",0,dJ],26304)},81783,a=>{"use strict";var b,c,d,e,f,g,h,i,j,k,l,m,n,o=function(){return b||!1},p=1,q=[],r=[],s=[],t=Date.now,u=function(a,b){return b},v=function(){var a=j.core,b=a.bridge||{},c=a._scrollers,d=a._proxies;c.push.apply(c,r),d.push.apply(d,s),r=c,s=d,u=function(a,c){return b[a](c)}},w=function(a,b){return~s.indexOf(a)&&s[s.indexOf(a)+1][b]},x=function(a){return!!~k.indexOf(a)},y=function(a,b,c,d,e){return a.addEventListener(b,c,{passive:!1!==d,capture:!!e})},z=function(a,b,c,d){return a.removeEventListener(b,c,!!d)},A="scrollLeft",B="scrollTop",C=function(){return l&&l.isPressed||r.cache++},D=function(a,b){var c=function c(e){if(e||0===e){p&&(d.history.scrollRestoration="manual");var f=l&&l.isPressed;a(e=c.v=Math.round(e)||(l&&l.iOS?1:0)),c.cacheID=r.cache,f&&u("ss",e)}else(b||r.cache!==c.cacheID||u("ref"))&&(c.cacheID=r.cache,c.v=a());return c.v+c.offset};return c.offset=0,a&&c},E={s:A,p:"left",p2:"Left",os:"right",os2:"Right",d:"width",d2:"Width",a:"x",sc:D(function(a){return arguments.length?d.scrollTo(a,F.sc()):d.pageXOffset||e[A]||f[A]||g[A]||0})},F={s:B,p:"top",p2:"Top",os:"bottom",os2:"Bottom",d:"height",d2:"Height",a:"y",op:E,sc:D(function(a){return arguments.length?d.scrollTo(E.sc(),a):d.pageYOffset||e[B]||f[B]||g[B]||0})},G=function(a,c){return(c&&c._ctx&&c._ctx.selector||b.utils.toArray)(a)[0]||("string"==typeof a&&!1!==b.config().nullTargetWarn?console.warn("Element not found:",a):null)},H=function(a,b){for(var c=b.length;c--;)if(b[c]===a||b[c].contains(a))return!0;return!1},I=function(a,c){var d=c.s,g=c.sc;x(a)&&(a=e.scrollingElement||f);var h=r.indexOf(a),i=g===F.sc?1:2;~h||(h=r.push(a)-1),r[h+i]||y(a,"scroll",C);var j=r[h+i],k=j||(r[h+i]=D(w(a,d),!0)||(x(a)?g:D(function(b){return arguments.length?a[d]=b:a[d]})));return k.target=a,j||(k.smooth="smooth"===b.getProperty(a,"scrollBehavior")),k},J=function(a,b,c){var d=a,e=a,f=t(),g=f,h=b||50,i=Math.max(500,3*h),j=function(a,b){var i=t();b||i-f>h?(e=d,d=a,g=f,f=i):c?d+=a:d=e+(a-e)/(i-g)*(f-g)};return{update:j,reset:function(){e=d=c?0:d,g=f=0},getVelocity:function(a){var b=g,h=e,k=t();return(a||0===a)&&a!==d&&j(a),f===g||k-g>i?0:(d+(c?h:-h))/((c?k:f)-b)*1e3}}},K=function(a,b){return b&&!a._gsapAllow&&!1!==a.cancelable&&a.preventDefault(),a.changedTouches?a.changedTouches[0]:a},L=function(a){var b=Math.max.apply(Math,a),c=Math.min.apply(Math,a);return Math.abs(b)>=Math.abs(c)?b:c},M=function(){(j=b.core.globals().ScrollTrigger)&&j.core&&v()},N=function(a){return b=a||o(),!c&&b&&"u">typeof document&&document.body&&(d=window,f=(e=document).documentElement,g=e.body,k=[d,e,f,g],b.utils.clamp,n=b.core.context||function(){},i="onpointerenter"in g?"pointer":"mouse",h=O.isTouch=d.matchMedia&&d.matchMedia("(hover: none), (pointer: coarse)").matches?1:2*("ontouchstart"in d||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0),m=O.eventTypes=("ontouchstart"in f?"touchstart,touchmove,touchcancel,touchend":!("onpointerdown"in f)?"mousedown,mousemove,mouseup,mouseup":"pointerdown,pointermove,pointercancel,pointerup").split(","),setTimeout(function(){return p=0},500),c=1),j||M(),c};E.op=F,r.cache=0;var O=function(){var a;function k(a){this.init(a)}return k.prototype.init=function(a){c||N(b)||console.warn("Please gsap.registerPlugin(Observer)"),j||M();var k=a.tolerance,o=a.dragMinimum,p=a.type,r=a.target,s=a.lineHeight,u=a.debounce,v=a.preventDefault,w=a.onStop,A=a.onStopDelay,B=a.ignore,D=a.wheelSpeed,O=a.event,P=a.onDragStart,Q=a.onDragEnd,R=a.onDrag,S=a.onPress,T=a.onRelease,U=a.onRight,V=a.onLeft,W=a.onUp,X=a.onDown,Y=a.onChangeX,Z=a.onChangeY,$=a.onChange,_=a.onToggleX,aa=a.onToggleY,ab=a.onHover,ac=a.onHoverEnd,ad=a.onMove,ae=a.ignoreCheck,af=a.isNormalizer,ag=a.onGestureStart,ah=a.onGestureEnd,ai=a.onWheel,aj=a.onEnable,ak=a.onDisable,al=a.onClick,am=a.scrollSpeed,an=a.capture,ao=a.allowClicks,ap=a.lockAxis,aq=a.onLockAxis;this.target=r=G(r)||f,this.vars=a,B&&(B=b.utils.toArray(B)),k=k||1e-9,o=o||0,D=D||1,am=am||1,p=p||"wheel,touch,pointer",u=!1!==u,s||(s=parseFloat(d.getComputedStyle(g).lineHeight)||22);var ar,as,at,au,av,aw,ax,ay=this,az=0,aA=0,aB=a.passive||!v&&!1!==a.passive,aC=I(r,E),aD=I(r,F),aE=aC(),aF=aD(),aG=~p.indexOf("touch")&&!~p.indexOf("pointer")&&"pointerdown"===m[0],aH=x(r),aI=r.ownerDocument||e,aJ=[0,0,0],aK=[0,0,0],aL=0,aM=function(){return aL=t()},aN=function(a,b){return(ay.event=a)&&B&&H(a.target,B)||b&&aG&&"touch"!==a.pointerType||ae&&ae(a,b)},aO=function(){var a=ay.deltaX=L(aJ),b=ay.deltaY=L(aK),c=Math.abs(a)>=k,d=Math.abs(b)>=k;$&&(c||d)&&$(ay,a,b,aJ,aK),c&&(U&&ay.deltaX>0&&U(ay),V&&ay.deltaX<0&&V(ay),Y&&Y(ay),_&&ay.deltaX<0!=az<0&&_(ay),az=ay.deltaX,aJ[0]=aJ[1]=aJ[2]=0),d&&(X&&ay.deltaY>0&&X(ay),W&&ay.deltaY<0&&W(ay),Z&&Z(ay),aa&&ay.deltaY<0!=aA<0&&aa(ay),aA=ay.deltaY,aK[0]=aK[1]=aK[2]=0),(au||at)&&(ad&&ad(ay),at&&(P&&1===at&&P(ay),R&&R(ay),at=0),au=!1),aw&&(aw=!1,1)&&aq&&aq(ay),av&&(ai(ay),av=!1),ar=0},aP=function(a,b,c){aJ[c]+=a,aK[c]+=b,ay._vx.update(a),ay._vy.update(b),u?ar||(ar=requestAnimationFrame(aO)):aO()},aQ=function(a,b){ap&&!ax&&(ay.axis=ax=Math.abs(a)>Math.abs(b)?"x":"y",aw=!0),"y"!==ax&&(aJ[2]+=a,ay._vx.update(a,!0)),"x"!==ax&&(aK[2]+=b,ay._vy.update(b,!0)),u?ar||(ar=requestAnimationFrame(aO)):aO()},aR=function(a){if(!aN(a,1)){var b=(a=K(a,v)).clientX,c=a.clientY,d=b-ay.x,e=c-ay.y,f=ay.isDragging;ay.x=b,ay.y=c,(f||(d||e)&&(Math.abs(ay.startX-b)>=o||Math.abs(ay.startY-c)>=o))&&(at||(at=f?2:1),f||(ay.isDragging=!0),aQ(d,e))}},aS=ay.onPress=function(a){aN(a,1)||a&&a.button||(ay.axis=ax=null,as.pause(),ay.isPressed=!0,a=K(a),az=aA=0,ay.startX=ay.x=a.clientX,ay.startY=ay.y=a.clientY,ay._vx.reset(),ay._vy.reset(),y(af?r:aI,m[1],aR,aB,!0),ay.deltaX=ay.deltaY=0,S&&S(ay))},aT=ay.onRelease=function(a){if(!aN(a,1)){z(af?r:aI,m[1],aR,!0);var c=!isNaN(ay.y-ay.startY),e=ay.isDragging,f=e&&(Math.abs(ay.x-ay.startX)>3||Math.abs(ay.y-ay.startY)>3),g=K(a);!f&&c&&(ay._vx.reset(),ay._vy.reset(),v&&ao&&b.delayedCall(.08,function(){if(t()-aL>300&&!a.defaultPrevented){if(a.target.click)a.target.click();else if(aI.createEvent){var b=aI.createEvent("MouseEvents");b.initMouseEvent("click",!0,!0,d,1,g.screenX,g.screenY,g.clientX,g.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(b)}}})),ay.isDragging=ay.isGesturing=ay.isPressed=!1,w&&e&&!af&&as.restart(!0),at&&aO(),Q&&e&&Q(ay),T&&T(ay,f)}},aU=function(a){return a.touches&&a.touches.length>1&&(ay.isGesturing=!0)&&ag(a,ay.isDragging)},aV=function(){return ay.isGesturing=!1,ah(ay)},aW=function(a){if(!aN(a)){var b=aC(),c=aD();aP((b-aE)*am,(c-aF)*am,1),aE=b,aF=c,w&&as.restart(!0)}},aX=function(a){if(!aN(a)){a=K(a,v),ai&&(av=!0);var b=(1===a.deltaMode?s:2===a.deltaMode?d.innerHeight:1)*D;aP(a.deltaX*b,a.deltaY*b,0),w&&!af&&as.restart(!0)}},aY=function(a){if(!aN(a)){var b=a.clientX,c=a.clientY,d=b-ay.x,e=c-ay.y;ay.x=b,ay.y=c,au=!0,w&&as.restart(!0),(d||e)&&aQ(d,e)}},aZ=function(a){ay.event=a,ab(ay)},a$=function(a){ay.event=a,ac(ay)},a_=function(a){return aN(a)||K(a,v)&&al(ay)};as=ay._dc=b.delayedCall(A||.25,function(){ay._vx.reset(),ay._vy.reset(),as.pause(),w&&w(ay)}).pause(),ay.deltaX=ay.deltaY=0,ay._vx=J(0,50,!0),ay._vy=J(0,50,!0),ay.scrollX=aC,ay.scrollY=aD,ay.isDragging=ay.isGesturing=ay.isPressed=!1,n(this),ay.enable=function(a){return!ay.isEnabled&&(y(aH?aI:r,"scroll",C),p.indexOf("scroll")>=0&&y(aH?aI:r,"scroll",aW,aB,an),p.indexOf("wheel")>=0&&y(r,"wheel",aX,aB,an),(p.indexOf("touch")>=0&&h||p.indexOf("pointer")>=0)&&(y(r,m[0],aS,aB,an),y(aI,m[2],aT),y(aI,m[3],aT),ao&&y(r,"click",aM,!0,!0),al&&y(r,"click",a_),ag&&y(aI,"gesturestart",aU),ah&&y(aI,"gestureend",aV),ab&&y(r,i+"enter",aZ),ac&&y(r,i+"leave",a$),ad&&y(r,i+"move",aY)),ay.isEnabled=!0,ay.isDragging=ay.isGesturing=ay.isPressed=au=at=!1,ay._vx.reset(),ay._vy.reset(),aE=aC(),aF=aD(),a&&a.type&&aS(a),aj&&aj(ay)),ay},ay.disable=function(){ay.isEnabled&&(q.filter(function(a){return a!==ay&&x(a.target)}).length||z(aH?aI:r,"scroll",C),ay.isPressed&&(ay._vx.reset(),ay._vy.reset(),z(af?r:aI,m[1],aR,!0)),z(aH?aI:r,"scroll",aW,an),z(r,"wheel",aX,an),z(r,m[0],aS,an),z(aI,m[2],aT),z(aI,m[3],aT),z(r,"click",aM,!0),z(r,"click",a_),z(aI,"gesturestart",aU),z(aI,"gestureend",aV),z(r,i+"enter",aZ),z(r,i+"leave",a$),z(r,i+"move",aY),ay.isEnabled=ay.isPressed=ay.isDragging=!1,ak&&ak(ay))},ay.kill=ay.revert=function(){ay.disable();var a=q.indexOf(ay);a>=0&&q.splice(a,1),l===ay&&(l=0)},q.push(ay),af&&x(r)&&(l=ay),ay.enable(O)},a=[{key:"velocityX",get:function(){return this._vx.getVelocity()}},{key:"velocityY",get:function(){return this._vy.getVelocity()}}],function(a,b){for(var c=0;c-1);return c["_"+b+"Clamp"]=d,d?a.substr(6,a.length-7):a},aF=function(a,b){return b&&(!aS(a)||"clamp("!==a.substr(0,6))?"clamp("+a+")":a},aG=function(){return aa=1},aH=function(){return aa=0},aI=function(a){return a},aJ=function(a){return Math.round(1e5*a)/1e5||0},aK=function(){return!1},aL=function(){return P||aK()&&(P=window.gsap)&&P.registerPlugin&&P},aM=function(a){return!!~V.indexOf(a)},aN=function(a){return("Height"===a?ar:R["inner"+a])||T["client"+a]||U["client"+a]},aO=function(a){return w(a,"getBoundingClientRect")||(aM(a)?function(){return bV.width=R.innerWidth,bV.height=ar,bV}:function(){return bc(a)})},aP=function(a,b,c){var d=c.d,e=c.d2,f=c.a;return(f=w(a,"getBoundingClientRect"))?function(){return f()[d]}:function(){return(b?aN(e):a["client"+e])||0}},aQ=function(a,b){var c=b.s,d=b.d2,e=b.d,f=b.a;return Math.max(0,(f=w(a,c="scroll"+d))?f()-aO(a)()[e]:aM(a)?(T[c]||U[c])-aN(d):a[c]-a["offset"+d])},aR=function(a,b){for(var c=0;c0){for(a-=e,f=0;f=a)return c[f];return c[f-1]}for(f=c.length,a+=e;f--;)if(c[f]<=a)return c[f];return c[0]}:function(c,d,e){void 0===e&&(e=.001);var f=b(c);return!d||Math.abs(f-c)c&&(d*=b/100),a=a.substr(0,c-1)),a=d+(a in bm?bm[a]*b:~a.indexOf("%")?parseFloat(a)*b/100:parseFloat(a)||0)}return a},bo=function(a,b,c,d,e,f,g,h){var i=e.startColor,j=e.endColor,k=e.fontSize,l=e.indent,m=e.fontWeight,n=S.createElement("div"),o=aM(c)||"fixed"===w(c,"pinType"),p=-1!==a.indexOf("scroller"),q=o?U:"IFRAME"===c.tagName?c.contentDocument.body:c,r=-1!==a.indexOf("start"),s=r?i:j,t="border-color:"+s+";font-size:"+k+";color:"+s+";font-weight:"+m+";pointer-events:none;white-space:nowrap;font-family:sans-serif,Arial;z-index:1000;padding:4px 8px;border-width:0;border-style:solid;";return t+="position:"+((p||h)&&o?"fixed;":"absolute;"),(p||h||!o)&&(t+=(d===F?a$:a_)+":"+(f+parseFloat(l))+"px;"),g&&(t+="box-sizing:border-box;text-align:left;width:"+g.offsetWidth+"px;"),n._isStart=r,n.setAttribute("class","gsap-marker-"+a+(b?" marker-"+b:"")),n.style.cssText=t,n.innerText=b||0===b?a+"-"+b:a,q.children[0]?q.insertBefore(n,q.children[0]):q.appendChild(n),n._offset=n["offset"+d.op.d2],bp(n,0,d,r),n},bp=function(a,b,c,d){var e={display:"block"},f=c[d?"os2":"p2"],g=c[d?"p2":"os2"];a._isFlipped=d,e[c.a+"Percent"]=d?-100:0,e[c.a]=d?"1px":0,e["border"+f+a7]=1,e["border"+g+a7]=0,e[c.p]=b+"px",P.set(a,e)},bq=[],br={},bs=function(){return aA()-aC>34&&(av||(av=requestAnimationFrame(bM)))},bt=function(){aj&&aj.isPressed&&!(aj.startX>U.clientWidth)||(r.cache++,aj?av||(av=requestAnimationFrame(bM)):bM(),aC||bz("scrollStart"),aC=aA())},bu=function(){am=R.innerWidth,al=R.innerHeight},bv=function(a){r.cache++,(!0===a||!_&&!ai&&!S.fullscreenElement&&!S.webkitFullscreenElement&&(!ak||am!==R.innerWidth||Math.abs(R.innerHeight-al)>.25*R.innerHeight))&&W.restart(!0)},bw={},bx=[],by=function a(){return bi(b0,"scrollEnd",a)||bJ(!0)},bz=function(a){return bw[a]&&bw[a].map(function(a){return a()})||bx},bA=[],bB=function(a){for(var b=0;bb,d=a._startClamp&&a.start>=b;(c||d)&&a.setPositions(d?b-1:a.start,c?Math.max(d?b:a.start+1,b):a.end,!0)}),bI(!1),at=0,c.forEach(function(a){return a&&a.render&&a.render(-1)}),r.forEach(function(a){aT(a)&&(a.smooth&&requestAnimationFrame(function(){return a.target.style.scrollBehavior="smooth"}),a.rec&&a(a.rec))}),bE(ap,1),W.pause(),bF++,aw=2,bM(2),bq.forEach(function(a){return aT(a.vars.onRefresh)&&a.vars.onRefresh(a)}),aw=b0.isRefreshing=!1,bz("refresh")},bK=0,bL=1,bM=function(a){if(2===a||!aw&&!as){b0.isUpdating=!0,ay&&ay.update(0);var b=bq.length,c=aA(),d=c-aB>=50,e=b&&bq[0].scroll();if(bL=bK>e?-1:1,aw||(bK=e),d&&(aC&&!aa&&c-aC>200&&(aC=0,bz("scrollEnd")),Z=aB,aB=c),bL<0){for(ac=b;ac-- >0;)bq[ac]&&bq[ac].update(0,d);bL=1}else for(ac=0;ac20),c-=c-u}if(n&&(h[n]=a||-.001,a<0&&(a=0)),f){var x=a+c,y=f._isStart;o="scroll"+d.d2,bp(f,x,d,y&&x>20||!y&&(k?Math.max(U[o],T[o]):f.parentNode[o])<=x+1),k&&(i=bc(g),k&&(f.style[d.op.p]=i[d.op.p]-d.op.m-f._offset+"px"))}return m&&q&&(o=bc(q),m.seek(l),p=bc(q),m._caScrollDist=o[d.p]-p[d.p],a=a/m._caScrollDist*l),m&&m.seek(r),m?a:Math.round(a)},bX=/(webkit|moz|length|cssText|inset)/i,bY=function(a,b,c,d){if(a.parentNode!==b){var e,f,g=a.style;if(b===U){for(e in a._stOrig=g.cssText,f=a9(a))+e||bX.test(e)||!f[e]||"string"!=typeof g[e]||"0"===e||(g[e]=f[e]);g.top=c,g.left=d}else g.cssText=a._stOrig;P.core.getCache(a).uncache=1,b.appendChild(a)}},bZ=function(a,b,c){var d=b,e=d;return function(b){var f=Math.round(a());return f!==d&&f!==e&&Math.abs(f-d)>3&&Math.abs(f-e)>3&&(b=f,c&&c()),e=d,d=Math.round(b)}},b$=function(a,b,c){var d={};d[b.p]="+="+c,P.set(a,d)},b_=function(a,b){var c=I(a,b),d="_scroll"+b.p2,e=function b(e,f,g,h,i){var j=b.tween,k=f.onComplete,l={};g=g||c();var m=bZ(c,g,function(){j.kill(),b.tween=0});return i=h&&i||0,h=h||e-g,j&&j.kill(),f[d]=e,f.inherit=!1,f.modifiers=l,l[d]=function(){return m(g+h*j.ratio+i*j.ratio*j.ratio)},f.onUpdate=function(){r.cache++,b.tween&&bM()},f.onComplete=function(){b.tween=0,k&&k.call(j)},j=b.tween=P.to(a,f)};return a[d]=c,c.wheelHandler=function(){return e.tween&&e.tween.kill()&&(e.tween=0)},bh(a,"wheel",c.wheelHandler),b0.isTouch&&bh(a,"touchmove",c.wheelHandler),e},b0=function(){function a(b,c){Q||a.register(P)||console.warn("Please gsap.registerPlugin(ScrollTrigger)"),ao(this),this.init(b,c)}return a.prototype.init=function(b,c){if(this.progress=this.start=0,this.vars&&this.kill(!0,!0),!aD){this.update=this.refresh=this.kill=aI;return}var d,e,f,g,h,i,j,k,l,m,n,o,p,q,t,u,v,x,y,z,A,B,C,D,H,J,K,L,M,N,O,Q,V,W,$,ab,ad,ae,af,ai,aj,ak=b=bb(aS(b)||aU(b)||b.nodeType?{trigger:b}:b,bl),al=ak.onUpdate,am=ak.toggleClass,an=ak.id,ao=ak.onToggle,ap=ak.onRefresh,aq=ak.scrub,ar=ak.trigger,as=ak.pin,av=ak.pinSpacing,ax=ak.invalidateOnRefresh,aB=ak.anticipatePin,aG=ak.onScrubComplete,aH=ak.onSnapComplete,aK=ak.once,aL=ak.snap,aN=ak.pinReparent,aR=ak.pinSpacer,aZ=ak.containerAnimation,a$=ak.fastScrollEnd,a_=ak.preventOverlaps,bg=b.horizontal||b.containerAnimation&&!1!==b.horizontal?E:F,bj=!aq&&0!==aq,bm=G(b.scroller||R),bp=P.core.getCache(bm),bs=aM(bm),bu=("pinType"in b?b.pinType:w(bm,"pinType")||bs&&"fixed")==="fixed",bw=[b.onEnter,b.onLeave,b.onEnterBack,b.onLeaveBack],bx=bj&&b.toggleActions.split(" "),bz="markers"in b?b.markers:bl.markers,bA=bs?0:parseFloat(a9(bm)["border"+bg.p2+a7])||0,bB=this,bC=b.onRefreshInit&&function(){return b.onRefreshInit(bB)},bD=aP(bm,bs,bg),bE=!bs||~s.indexOf(bm)?aO(bm):function(){return bV},bF=0,bH=0,bI=0,bJ=I(bm,bg);if(bB._startClamp=bB._endClamp=!1,bB._dir=bg,aB*=45,bB.scroller=bm,bB.scroll=aZ?aZ.time.bind(aZ):bJ,i=bJ(),bB.vars=b,c=c||b.animation,"refreshPriority"in b&&(ag=1,-9999===b.refreshPriority&&(ay=bB)),bp.tweenScroll=bp.tweenScroll||{top:b_(bm,F),left:b_(bm,E)},bB.tweenTo=f=bp.tweenScroll[bg.p],bB.scrubDuration=function(a){($=aU(a)&&a)?W?W.duration(a):W=P.to(c,{ease:"expo",totalProgress:"+=0",inherit:!1,duration:$,paused:!0,onComplete:function(){return aG&&aG(bB)}}):(W&&W.progress(1).kill(),W=0)},c&&(c.vars.lazy=!1,c._initted&&!bB.isReverted||!1!==c.vars.immediateRender&&!1!==b.immediateRender&&c.duration()&&c.render(0,!0,!0),bB.animation=c.pause(),c.scrollTrigger=bB,bB.scrubDuration(aq),Q=0,an||(an=c.vars.id)),aL&&((!aV(aL)||aL.push)&&(aL={snapTo:aL}),"scrollBehavior"in U.style&&P.set(bs?[U,T]:bm,{scrollBehavior:"auto"}),r.forEach(function(a){return aT(a)&&a.target===(bs?S.scrollingElement||T:bm)&&(a.smooth=!1)}),h=aT(aL.snapTo)?aL.snapTo:"labels"===aL.snapTo?(d=c,function(a){return P.utils.snap(be(d),a)}):"labelsDirectional"===aL.snapTo?(e=c,function(a,b){return bf(be(e))(a,b.direction)}):!1!==aL.directional?function(a,b){return bf(aL.snapTo)(a,aA()-bH<500?0:b.direction)}:P.utils.snap(aL.snapTo),ab=aV(ab=aL.duration||{min:.1,max:2})?Y(ab.min,ab.max):Y(ab,ab),ad=P.delayedCall(aL.delay||$/2||.1,function(){var a=bJ(),b=aA()-bH<500,d=f.tween;if((b||10>Math.abs(bB.getVelocity()))&&!d&&!aa&&bF!==a){var e,g,i=(a-k)/u,j=c&&!bj?c.totalProgress():i,m=b?0:(j-V)/(aA()-Z)*1e3||0,n=P.utils.clamp(-i,1-i,aY(m/2)*m/.185),o=i+(!1===aL.inertia?0:n),p=aL,q=p.onStart,r=p.onInterrupt,s=p.onComplete;if(aU(e=h(o,bB))||(e=o),g=Math.max(0,Math.round(k+e*u)),a<=l&&a>=k&&g!==a){if(d&&!d._initted&&d.data<=aY(g-a))return;!1===aL.inertia&&(n=e-i),f(g,{duration:ab(aY(.185*Math.max(aY(o-j),aY(e-j))/m/.05||0)),ease:aL.ease||"power3",data:aY(g-a),onInterrupt:function(){return ad.restart(!0)&&r&&aX(bB,r)},onComplete:function(){bB.update(),bF=bJ(),c&&!bj&&(W?W.resetTo("totalProgress",e,c._tTime/c._tDur):c.progress(e)),Q=V=c&&!bj?c.totalProgress():bB.progress,aH&&aH(bB),s&&aX(bB,s)}},a,n*u,g-a-n*u),q&&aX(bB,q,f.tween)}}else bB.isActive&&bF!==a&&ad.restart(!0)}).pause()),an&&(br[an]=bB),(aj=(ar=bB.trigger=G(ar||!0!==as&&as))&&ar._gsap&&ar._gsap.stRevert)&&(aj=aj(bB)),as=!0===as?ar:G(as),aS(am)&&(am={targets:ar,className:am}),as&&(!1===av||av===a6||(av=(!!av||!as.parentNode||!as.parentNode.style||"flex"!==a9(as.parentNode).display)&&a5),bB.pin=as,(g=P.core.getCache(as)).spacer?v=g.pinState:(aR&&((aR=G(aR))&&!aR.nodeType&&(aR=aR.current||aR.nativeElement),g.spacerIsNative=!!aR,aR&&(g.spacerState=bT(aR))),g.spacer=z=aR||S.createElement("div"),z.classList.add("pin-spacer"),an&&z.classList.add("pin-spacer-"+an),g.pinState=v=bT(as)),!1!==b.force3D&&P.set(as,{force3D:!0}),bB.spacer=z=g.spacer,J=(O=a9(as))[av+bg.os2],B=P.getProperty(as),C=P.quickSetter(as,bg.a,"px"),bQ(as,z,O),y=bT(as)),bz){q=aV(bz)?bb(bz,bk):bk,o=bo("scroller-start",an,bm,bg,q,0),p=bo("scroller-end",an,bm,bg,q,0,o),A=o["offset"+bg.op.d2];var bK=G(w(bm,"content")||bm);m=this.markerStart=bo("start",an,bK,bg,q,A,0,aZ),n=this.markerEnd=bo("end",an,bK,bg,q,A,0,aZ),aZ&&(ai=P.quickSetter([m,n],bg.a,"px")),bu||s.length&&!0===w(bm,"fixedMarkers")||(ba(bs?U:bm),P.set([o,p],{force3D:!0}),L=P.quickSetter(o,bg.a,"px"),N=P.quickSetter(p,bg.a,"px"))}if(aZ){var bM=aZ.vars.onUpdate,bN=aZ.vars.onUpdateParams;aZ.eventCallback("onUpdate",function(){bB.update(0,0,1),bM&&bM.apply(aZ,bN||[])})}if(bB.previous=function(){return bq[bq.indexOf(bB)-1]},bB.next=function(){return bq[bq.indexOf(bB)+1]},bB.revert=function(a,b){if(!b)return bB.kill(!0);var d=!1!==a||!bB.enabled,e=_;d!==bB.isReverted&&(d&&(ae=Math.max(bJ(),bB.scroll.rec||0),bI=bB.progress,af=c&&c.progress()),m&&[m,n,o,p].forEach(function(a){return a.style.display=d?"none":"block"}),d&&(_=bB,bB.update(d)),!as||aN&&bB.isActive||(d?bP(as,z,v):bQ(as,z,a9(as),K)),d||bB.update(d),_=e,bB.isReverted=d)},bB.refresh=function(d,e,g,h){if(!_&&bB.enabled||e){if(as&&d&&aC)return void bh(a,"scrollEnd",by);!aw&&bC&&bC(bB),_=bB,f.tween&&!g&&(f.tween.kill(),f.tween=0),W&&W.pause(),ax&&c&&(c.revert({kill:!1}).invalidate(),c.getChildren?c.getChildren(!0,!0,!1).forEach(function(a){return a.vars.immediateRender&&a.render(0,!0,!0)}):c.vars.immediateRender&&c.render(0,!0,!0)),bB.isReverted||bB.revert(!0,!0),bB._subPinOffset=!1;var q,r,s,w,A,C,J,L,N,O,Q,R,V,X=bD(),Y=bE(),Z=aZ?aZ.duration():aQ(bm,bg),$=u<=.01||!u,aa=0,ab=h||0,ac=aV(g)?g.end:b.end,ag=b.endTrigger||ar,ai=aV(g)?g.start:b.start||(0!==b.start&&ar?as?"0 0":"0 100%":0),aj=bB.pinnedContainer=b.pinnedContainer&&G(b.pinnedContainer,bB),ak=ar&&Math.max(0,bq.indexOf(bB))||0,al=ak;for(bz&&aV(g)&&(R=P.getProperty(o,bg.p),V=P.getProperty(p,bg.p));al-- >0;)(C=bq[al]).end||C.refresh(0,1)||(_=bB),(J=C.pin)&&(J===ar||J===as||J===aj)&&!C.isReverted&&(O||(O=[]),O.unshift(C),C.revert(!0,!0)),C!==bq[al]&&(ak--,al--);for(aT(ai)&&(ai=ai(bB)),k=bW(ai=aE(ai,"start",bB),ar,X,bg,bJ(),m,o,bB,Y,bA,bu,Z,aZ,bB._startClamp&&"_startClamp")||(as?-.001:0),aT(ac)&&(ac=ac(bB)),aS(ac)&&!ac.indexOf("+=")&&(~ac.indexOf(" ")?ac=(aS(ai)?ai.split(" ")[0]:"")+ac:(aa=bn(ac.substr(2),X),ac=aS(ai)?ai:(aZ?P.utils.mapRange(0,aZ.duration(),aZ.scrollTrigger.start,aZ.scrollTrigger.end,k):k)+aa,ag=ar)),ac=aE(ac,"end",bB),l=Math.max(k,bW(ac||(ag?"100% 0":Z),ag,X,bg,bJ()+aa,n,p,bB,Y,bA,bu,Z,aZ,bB._endClamp&&"_endClamp"))||-.001,aa=0,al=ak;al--;)(J=(C=bq[al]||{}).pin)&&C.start-C._pinPush<=k&&!aZ&&C.end>0&&(q=C.end-(bB._startClamp?Math.max(0,C.start):C.start),(J===ar&&C.start-C._pinPush=aQ(bm,bg)))q=a9(as),w=bg===F,s=bJ(),D=parseFloat(B(bg.a))+ab,!Z&&l>1&&(Q={style:Q=(bs?S.scrollingElement||T:bm).style,value:Q["overflow"+bg.a.toUpperCase()]},bs&&"scroll"!==a9(U)["overflow"+bg.a.toUpperCase()]&&(Q.style["overflow"+bg.a.toUpperCase()]="scroll")),bQ(as,z,q),y=bT(as),r=bc(as,!0),L=bu&&I(bm,w?E:F)(),av?((K=[av+bg.os2,u+ab+"px"]).t=z,(al=av===a5?bd(as,bg)+u+ab:0)&&(K.push(bg.d,al+"px"),"auto"!==z.style.flexBasis&&(z.style.flexBasis=al+"px")),bS(K),aj&&bq.forEach(function(a){a.pin===aj&&!1!==a.vars.pinSpacing&&(a._subPinOffset=!0)}),bu&&bJ(ae)):(al=bd(as,bg))&&"auto"!==z.style.flexBasis&&(z.style.flexBasis=al+"px"),bu&&((A={top:r.top+(w?s-k:L)+"px",left:r.left+(w?L:s-k)+"px",boxSizing:"border-box",position:"fixed"})[a0]=A["max"+a7]=Math.ceil(r.width)+"px",A[a1]=A["max"+a8]=Math.ceil(r.height)+"px",A[a6]=A[a6+"Top"]=A[a6+a2]=A[a6+a4]=A[a6+a3]="0",A[a5]=q[a5],A[a5+"Top"]=q[a5+"Top"],A[a5+a2]=q[a5+a2],A[a5+a4]=q[a5+a4],A[a5+a3]=q[a5+a3],x=bU(v,A,aN),aw&&bJ(0)),c?(N=c._initted,ah(1),c.render(c.duration(),!0,!0),H=B(bg.a)-D+u+ab,M=Math.abs(u-H)>1,bu&&M&&x.splice(x.length-2,2),c.render(0,!0,!0),N||c.invalidate(!0),c.parent||c.totalTime(c.totalTime()),ah(0)):H=u,Q&&(Q.value?Q.style["overflow"+bg.a.toUpperCase()]=Q.value:Q.style.removeProperty("overflow-"+bg.a));else if(ar&&bJ()&&!aZ)for(r=ar.parentNode;r&&r!==U;)r._pinOffset&&(k-=r._pinOffset,l-=r._pinOffset),r=r.parentNode;O&&O.forEach(function(a){return a.revert(!1,!0)}),bB.start=k,bB.end=l,i=j=aw?ae:bJ(),aZ||aw||(i0?bq.slice(0,b).reverse():bq.slice(b+1);return(aS(a)?c.filter(function(b){return b.vars.preventOverlaps===a}):c).filter(function(a){return bB.direction>0?a.end<=k:a.start>=l})},bB.update=function(a,b,d){if(!aZ||d||a){var e,g,h,m,n,p,q,r=!0===aw?ae:bB.scroll(),s=a?0:(r-k)/u,t=s<0?0:s>1?1:s||0,v=bB.progress;if(b&&(j=i,i=aZ?bJ():r,aL&&(V=Q,Q=c&&!bj?c.totalProgress():t)),aB&&as&&!_&&!az&&aC&&(!t&&kr+(r-j)/(aA()-Z)*aB&&(t=.9999)),t!==v&&bB.enabled){if(m=(n=(e=bB.isActive=!!t&&t<1)!=(!!v&&v<1))||!!t!=!!v,bB.direction=t>v?1:-1,bB.progress=t,m&&!_&&(g=t&&!v?0:1===t?1:1===v?2:3,bj&&(h=!n&&"none"!==bx[g+1]&&bx[g+1]||bx[g],q=c&&("complete"===h||"reset"===h||h in c))),a_&&(n||q)&&(q||aq||!c)&&(aT(a_)?a_(bB):bB.getTrailing(a_).forEach(function(a){return a.endAnimation()})),!bj&&(!W||_||az?c&&c.totalProgress(t,!!(_&&(bH||a))):(W._dp._time-W._start!==W._time&&W.render(W._dp._time-W._start),W.resetTo?W.resetTo("totalProgress",t,c._tTime/c._tDur):(W.vars.totalProgress=t,W.invalidate().restart()))),as)if(a&&av&&(z.style[av+bg.os2]=J),bu){if(m){if(p=!a&&t>v&&l+1>r&&r+1>=aQ(bm,bg),aN)if(!a&&(e||p)){var w=bc(as,!0),A=r-k;bY(as,U,w.top+(bg===F?A:0)+"px",w.left+(bg===F?0:A)+"px")}else bY(as,z);bS(e||p?x:y),M&&t<1&&e||C(D+(1!==t||p?0:H))}}else C(aJ(D+H*t));!aL||f.tween||_||az||ad.restart(!0),am&&(n||aK&&t&&(t<1||!au))&&X(am.targets).forEach(function(a){return a.classList[e||aK?"add":"remove"](am.className)}),!al||bj||a||al(bB),m&&!_?(bj&&(q&&("complete"===h?c.pause().totalProgress(1):"reset"===h?c.restart(!0).pause():"restart"===h?c.restart(!0):c[h]()),al&&al(bB)),(n||!au)&&(ao&&n&&aX(bB,ao),bw[g]&&aX(bB,bw[g]),aK&&(1===t?bB.kill(!1,1):bw[g]=0),!n&&bw[g=1===t?1:3]&&aX(bB,bw[g])),a$&&!e&&Math.abs(bB.getVelocity())>(aU(a$)?a$:2500)&&(aW(bB.callbackAnimation),W?W.progress(1):aW(c,"reverse"===h?1:!t,1))):bj&&al&&!_&&al(bB)}if(N){var B=aZ?r/aZ.duration()*(aZ._caScrollDist||0):r;L(B+ +!!o._isFlipped),N(B)}ai&&ai(-r/aZ.duration()*(aZ._caScrollDist||0))}},bB.enable=function(b,c){bB.enabled||(bB.enabled=!0,bh(bm,"resize",bv),bs||bh(bm,"scroll",bt),bC&&bh(a,"refreshInit",bC),!1!==b&&(bB.progress=bI=0,i=j=bF=bJ()),!1!==c&&bB.refresh())},bB.getTween=function(a){return a&&f?f.tween:W},bB.setPositions=function(a,b,c,d){if(aZ){var e=aZ.scrollTrigger,f=aZ.duration(),g=e.end-e.start;a=e.start+g*a/f,b=e.start+g*b/f}bB.refresh(!1,!1,{start:aF(a,c&&!!bB._startClamp),end:aF(b,c&&!!bB._endClamp)},d),bB.update()},bB.adjustPinSpacing=function(a){if(K&&a){var b=K.indexOf(bg.d)+1;K[b]=parseFloat(K[b])+a+"px",K[1]=parseFloat(K[1])+a+"px",bS(K)}},bB.disable=function(b,c){if(!1!==b&&bB.revert(!0,!0),bB.enabled&&(bB.enabled=bB.isActive=!1,c||W&&W.pause(),ae=0,g&&(g.uncache=1),bC&&bi(a,"refreshInit",bC),ad&&(ad.pause(),f.tween&&f.tween.kill()&&(f.tween=0)),!bs)){for(var d=bq.length;d--;)if(bq[d].scroller===bm&&bq[d]!==bB)return;bi(bm,"resize",bv),bs||bi(bm,"scroll",bt)}},bB.kill=function(a,d){bB.disable(a,d),W&&!d&&W.kill(),an&&delete br[an];var e=bq.indexOf(bB);e>=0&&bq.splice(e,1),e===ac&&bL>0&&ac--,e=0,bq.forEach(function(a){return a.scroller===bB.scroller&&(e=1)}),e||aw||(bB.scroll.rec=0),c&&(c.scrollTrigger=null,a&&c.revert({kill:!1}),d||c.kill()),m&&[m,n,o,p].forEach(function(a){return a.parentNode&&a.parentNode.removeChild(a)}),ay===bB&&(ay=0),as&&(g&&(g.uncache=1),e=0,bq.forEach(function(a){return a.pin===as&&e++}),e||(g.spacer=0)),b.onKill&&b.onKill(bB)},bq.push(bB),bB.enable(!1,!1),aj&&aj(bB),c&&c.add&&!u){var bO=bB.update;bB.update=function(){bB.update=bO,r.cache++,k||l||bB.refresh()},P.delayedCall(.01,bB.update),u=.01,k=l=0}else bB.refresh();as&&bG()},a.register=function(b){return Q||(P=b||aL(),aK()&&window.document&&a.enable(),Q=aD),Q},a.defaults=function(a){if(a)for(var b in a)bl[b]=a[b];return bl},a.disable=function(a,b){aD=0,bq.forEach(function(c){return c[b?"kill":"disable"](a)}),bi(R,"wheel",bt),bi(S,"scroll",bt),clearInterval($),bi(S,"touchcancel",aI),bi(U,"touchstart",aI),bg(bi,S,"pointerdown,touchstart,mousedown",aG),bg(bi,S,"pointerup,touchend,mouseup",aH),W.kill(),aR(bi);for(var c=0;c0&&d.left+e0&&d.top+e=0&&bA.splice(b,5),bA.push(a,a.style.cssText,a.getBBox&&a.getAttribute("transform"),P.core.getCache(a),ao())}}):bA},b0.revert=function(a,b){return bD(!a,b)},b0.create=function(a,b){return new b0(a,b)},b0.refresh=function(a){return a?bv(!0):(Q||b0.register())&&bJ(!0)},b0.update=function(a){return++r.cache&&bM(2*(!0===a))},b0.clearScrollMemory=bE,b0.maxScroll=function(a,b){return aQ(a,b?E:F)},b0.getScrollFunc=function(a,b){return I(G(a),b?E:F)},b0.getById=function(a){return br[a]},b0.getAll=function(){return bq.filter(function(a){return"ScrollSmoother"!==a.vars.id})},b0.isScrolling=function(){return!!aC},b0.snapDirectional=bf,b0.addEventListener=function(a,b){var c=bw[a]||(bw[a]=[]);~c.indexOf(b)||c.push(b)},b0.removeEventListener=function(a,b){var c=bw[a],d=c&&c.indexOf(b);d>=0&&c.splice(d,1)},b0.batch=function(a,b){var c,d=[],e={},f=b.interval||.016,g=b.batchMax||1e9,h=function(a,b){var c=[],d=[],e=P.delayedCall(f,function(){b(c,d),c=[],d=[]}).pause();return function(a){c.length||e.restart(!0),c.push(a.trigger),d.push(a),g<=c.length&&e.progress(1)}};for(c in b)e[c]="on"===c.substr(0,2)&&aT(b[c])&&"onRefreshInit"!==c?h(c,b[c]):b[c];return aT(g)&&(g=g(),bh(b0,"refresh",function(){return g=b.batchMax()})),X(a).forEach(function(a){var b={};for(c in e)b[c]=e[c];b.trigger=a,d.push(b0.create(b))}),d};var b1,b2=function(a,b,c,d){return b>d?a(d):b<0&&a(0),c>d?(d-b)/(c-b):c<0?b/(b-c):1},b3=function a(b,c){!0===c?b.style.removeProperty("touch-action"):b.style.touchAction=!0===c?"auto":c?"pan-"+c+(O.isTouch?" pinch-zoom":""):"none",b===T&&a(U,c)},b4={auto:1,scroll:1},b5=function(a){var b,c=a.event,d=a.target,e=a.axis,f=(c.changedTouches?c.changedTouches[0]:c).target,g=f._gsap||P.core.getCache(f),h=aA();if(!g._isScrollT||h-g._isScrollT>2e3){for(;f&&f!==U&&(f.scrollHeight<=f.clientHeight&&f.scrollWidth<=f.clientWidth||!(b4[(b=a9(f)).overflowY]||b4[b.overflowX]));)f=f.parentNode;g._isScroll=f&&f!==d&&!aM(f)&&(b4[(b=a9(f)).overflowY]||b4[b.overflowX]),g._isScrollT=h}(g._isScroll||"x"===e)&&(c.stopPropagation(),c._gsapAllow=!0)},b6=function(a,b,c,d){return O.create({target:a,capture:!0,debounce:!1,lockAxis:!0,type:b,onWheel:d=d&&b5,onPress:d,onDrag:d,onScroll:d,onEnable:function(){return c&&bh(S,O.eventTypes[0],b8,!1,!0)},onDisable:function(){return bi(S,O.eventTypes[0],b8,!0)}})},b7=/(input|label|select|textarea)/i,b8=function(a){var b=b7.test(a.target.tagName);(b||b1)&&(a._gsapAllow=!0,b1=b)},b9=function(a){aV(a)||(a={}),a.preventDefault=a.isNormalizer=a.allowClicks=!0,a.type||(a.type="wheel,touch"),a.debounce=!!a.debounce,a.id=a.id||"normalizer";var b,c,d,e,f,g,h,i,j=a,k=j.normalizeScrollX,l=j.momentum,m=j.allowNestedScroll,n=j.onRelease,o=G(a.target)||T,p=P.core.globals().ScrollSmoother,q=p&&p.get(),s=an&&(a.content&&G(a.content)||q&&!1!==a.content&&!q.smooth()&&q.content()),t=I(o,F),u=I(o,E),v=1,w=(O.isTouch&&R.visualViewport?R.visualViewport.scale*R.visualViewport.width:R.outerWidth)/R.innerWidth,x=0,y=aT(l)?function(){return l(b)}:function(){return l||2.8},z=b6(o,a.type,!0,m),A=function(){return e=!1},B=aI,C=aI,D=function(){c=aQ(o,F),C=Y(+!!an,c),k&&(B=Y(0,aQ(o,E))),d=bF},H=function(){s._gsap.y=aJ(parseFloat(s._gsap.y)+t.offset)+"px",s.style.transform="matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, "+parseFloat(s._gsap.y)+", 0, 1)",t.offset=t.cacheID=0},J=function(){if(e){requestAnimationFrame(A);var a=aJ(b.deltaY/2),c=C(t.v-a);if(s&&c!==t.v+t.offset){t.offset=c-t.v;var d=aJ((parseFloat(s&&s._gsap.y)||0)-t.offset);s.style.transform="matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, "+d+", 0, 1)",s._gsap.y=d+"px",t.cacheID=r.cache,bM()}return!0}t.offset&&H(),e=!0},K=function(){D(),f.isActive()&&f.vars.scrollY>c&&(t()>c?f.progress(1)&&t(c):f.resetTo("scrollY",c))};return s&&P.set(s,{y:"+=0"}),a.ignoreCheck=function(a){return an&&"touchmove"===a.type&&J(a)||v>1.05&&"touchstart"!==a.type||b.isGesturing||a.touches&&a.touches.length>1},a.onPress=function(){e=!1;var a=v;v=aJ((R.visualViewport&&R.visualViewport.scale||1)/w),f.pause(),a!==v&&b3(o,v>1.01||!k&&"x"),g=u(),h=t(),D(),d=bF},a.onRelease=a.onGestureStart=function(a,b){if(t.offset&&H(),b){r.cache++;var d,e,g=y();k&&(e=(d=u())+-(.05*g*a.velocityX)/.227,g*=b2(u,d,e,aQ(o,E)),f.vars.scrollX=B(e)),e=(d=t())+-(.05*g*a.velocityY)/.227,g*=b2(t,d,e,aQ(o,F)),f.vars.scrollY=C(e),f.invalidate().duration(g).play(.01),(an&&f.vars.scrollY>=c||d>=c-1)&&P.to({},{onUpdate:K,duration:g})}else i.restart(!0);n&&n(a)},a.onWheel=function(){f._ts&&f.pause(),aA()-x>1e3&&(d=0,x=aA())},a.onChange=function(a,b,c,e,f){if(bF!==d&&D(),b&&k&&u(B(e[2]===b?g+(a.startX-a.x):u()+b-e[1])),c){t.offset&&H();var i=f[2]===c,j=i?h+a.startY-a.y:t()+c-f[1],l=C(j);i&&j!==l&&(h+=l-j),t(l)}(c||b)&&bM()},a.onEnable=function(){b3(o,!k&&"x"),b0.addEventListener("refresh",K),bh(R,"resize",K),t.smooth&&(t.target.style.scrollBehavior="auto",t.smooth=u.smooth=!1),z.enable()},a.onDisable=function(){b3(o,!0),bi(R,"resize",K),b0.removeEventListener("refresh",K),z.kill()},a.lockAxis=!1!==a.lockAxis,(b=new O(a)).iOS=an,an&&!t()&&t(1),an&&P.ticker.add(aI),i=b._dc,f=P.to(b,{ease:"power4",paused:!0,inherit:!1,scrollX:k?"+=0.1":"+=0",scrollY:"+=0.1",modifiers:{scrollY:bZ(t,t(),function(){return f.pause()})},onUpdate:bM,onComplete:i.vars.onComplete}),b};b0.sort=function(a){if(aT(a))return bq.sort(a);var b=R.pageYOffset||0;return b0.getAll().forEach(function(a){return a._sortY=a.trigger?b+a.trigger.getBoundingClientRect().top:a.start+R.innerHeight}),bq.sort(a||function(a,b){return -1e6*(a.vars.refreshPriority||0)+(a.vars.containerAnimation?1e6:a._sortY)-((b.vars.containerAnimation?1e6:b._sortY)+-1e6*(b.vars.refreshPriority||0))})},b0.observe=function(a){return new O(a)},b0.normalizeScroll=function(a){if(void 0===a)return aj;if(!0===a&&aj)return aj.enable();if(!1===a){aj&&aj.kill(),aj=a;return}var b=a instanceof O?a:b9(a);return aj&&aj.target===b.target&&aj.kill(),aM(b.target)&&(aj=b),b},b0.core={_getVelocityProp:J,_inputObserver:b6,_scrollers:r,_proxies:s,bridge:{ss:function(){aC||bz("scrollStart"),aC=aA()},ref:function(){return _}}},aL()&&P.registerPlugin(b0),a.s(["ScrollTrigger",0,b0],81783)}]; + +//# sourceMappingURL=node_modules_gsap_0xy-.4m._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_gsap_0xy-.4m._.js.map b/.next/server/chunks/ssr/node_modules_gsap_0xy-.4m._.js.map new file mode 100644 index 0000000..339de55 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_gsap_0xy-.4m._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/gsap/gsap-core.js","../../../../node_modules/gsap/CSSPlugin.js","../../../../node_modules/gsap/index.js","../../../../node_modules/gsap/Observer.js","../../../../node_modules/gsap/ScrollTrigger.js"],"sourcesContent":["function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\n/*!\n * GSAP 3.15.0\n * https://gsap.com\n *\n * @license Copyright 2008-2026, GreenSock. All rights reserved.\n * Subject to the terms at https://gsap.com/standard-license\n * @author: Jack Doyle, jack@greensock.com\n*/\n\n/* eslint-disable */\nvar _config = {\n autoSleep: 120,\n force3D: \"auto\",\n nullTargetWarn: 1,\n units: {\n lineHeight: \"\"\n }\n},\n _defaults = {\n duration: .5,\n overwrite: false,\n delay: 0\n},\n _suppressOverwrites,\n _reverting,\n _context,\n _bigNum = 1e8,\n _tinyNum = 1 / _bigNum,\n _2PI = Math.PI * 2,\n _HALF_PI = _2PI / 4,\n _gsID = 0,\n _sqrt = Math.sqrt,\n _cos = Math.cos,\n _sin = Math.sin,\n _isString = function _isString(value) {\n return typeof value === \"string\";\n},\n _isFunction = function _isFunction(value) {\n return typeof value === \"function\";\n},\n _isNumber = function _isNumber(value) {\n return typeof value === \"number\";\n},\n _isUndefined = function _isUndefined(value) {\n return typeof value === \"undefined\";\n},\n _isObject = function _isObject(value) {\n return typeof value === \"object\";\n},\n _isNotFalse = function _isNotFalse(value) {\n return value !== false;\n},\n _windowExists = function _windowExists() {\n return typeof window !== \"undefined\";\n},\n _isFuncOrString = function _isFuncOrString(value) {\n return _isFunction(value) || _isString(value);\n},\n _isTypedArray = typeof ArrayBuffer === \"function\" && ArrayBuffer.isView || function () {},\n // note: IE10 has ArrayBuffer, but NOT ArrayBuffer.isView().\n_isArray = Array.isArray,\n _randomExp = /random\\([^)]+\\)/g,\n _commaDelimExp = /,\\s*/g,\n _strictNumExp = /(?:-?\\.?\\d|\\.)+/gi,\n //only numbers (including negatives and decimals) but NOT relative values.\n_numExp = /[-+=.]*\\d+[.e\\-+]*\\d*[e\\-+]*\\d*/g,\n //finds any numbers, including ones that start with += or -=, negative numbers, and ones in scientific notation like 1e-8.\n_numWithUnitExp = /[-+=.]*\\d+[.e-]*\\d*[a-z%]*/g,\n _complexStringNumExp = /[-+=.]*\\d+\\.?\\d*(?:e-|e\\+)?\\d*/gi,\n //duplicate so that while we're looping through matches from exec(), it doesn't contaminate the lastIndex of _numExp which we use to search for colors too.\n_relExp = /[+-]=-?[.\\d]+/,\n _delimitedValueExp = /[^,'\"\\[\\]\\s]+/gi,\n // previously /[#\\-+.]*\\b[a-z\\d\\-=+%.]+/gi but didn't catch special characters.\n_unitExp = /^[+\\-=e\\s\\d]*\\d+[.\\d]*([a-z]*|%)\\s*$/i,\n _globalTimeline,\n _win,\n _coreInitted,\n _doc,\n _globals = {},\n _installScope = {},\n _coreReady,\n _install = function _install(scope) {\n return (_installScope = _merge(scope, _globals)) && gsap;\n},\n _missingPlugin = function _missingPlugin(property, value) {\n return console.warn(\"Invalid property\", property, \"set to\", value, \"Missing plugin? gsap.registerPlugin()\");\n},\n _warn = function _warn(message, suppress) {\n return !suppress && console.warn(message);\n},\n _addGlobal = function _addGlobal(name, obj) {\n return name && (_globals[name] = obj) && _installScope && (_installScope[name] = obj) || _globals;\n},\n _emptyFunc = function _emptyFunc() {\n return 0;\n},\n _startAtRevertConfig = {\n suppressEvents: true,\n isStart: true,\n kill: false\n},\n _revertConfigNoKill = {\n suppressEvents: true,\n kill: false\n},\n _revertConfig = {\n suppressEvents: true\n},\n _reservedProps = {},\n _lazyTweens = [],\n _lazyLookup = {},\n _lastRenderedFrame,\n _plugins = {},\n _effects = {},\n _nextGCFrame = 30,\n _harnessPlugins = [],\n _callbackNames = \"\",\n _harness = function _harness(targets) {\n var target = targets[0],\n harnessPlugin,\n i;\n _isObject(target) || _isFunction(target) || (targets = [targets]);\n\n if (!(harnessPlugin = (target._gsap || {}).harness)) {\n // find the first target with a harness. We assume targets passed into an animation will be of similar type, meaning the same kind of harness can be used for them all (performance optimization)\n i = _harnessPlugins.length;\n\n while (i-- && !_harnessPlugins[i].targetTest(target)) {}\n\n harnessPlugin = _harnessPlugins[i];\n }\n\n i = targets.length;\n\n while (i--) {\n targets[i] && (targets[i]._gsap || (targets[i]._gsap = new GSCache(targets[i], harnessPlugin))) || targets.splice(i, 1);\n }\n\n return targets;\n},\n _getCache = function _getCache(target) {\n return target._gsap || _harness(toArray(target))[0]._gsap;\n},\n _getProperty = function _getProperty(target, property, v) {\n return (v = target[property]) && _isFunction(v) ? target[property]() : _isUndefined(v) && target.getAttribute && target.getAttribute(property) || v;\n},\n _forEachName = function _forEachName(names, func) {\n return (names = names.split(\",\")).forEach(func) || names;\n},\n //split a comma-delimited list of names into an array, then run a forEach() function and return the split array (this is just a way to consolidate/shorten some code).\n_round = function _round(value) {\n return Math.round(value * 100000) / 100000 || 0;\n},\n _roundPrecise = function _roundPrecise(value) {\n return Math.round(value * 10000000) / 10000000 || 0;\n},\n // increased precision mostly for timing values.\n_parseRelative = function _parseRelative(start, value) {\n var operator = value.charAt(0),\n end = parseFloat(value.substr(2));\n start = parseFloat(start);\n return operator === \"+\" ? start + end : operator === \"-\" ? start - end : operator === \"*\" ? start * end : start / end;\n},\n _arrayContainsAny = function _arrayContainsAny(toSearch, toFind) {\n //searches one array to find matches for any of the items in the toFind array. As soon as one is found, it returns true. It does NOT return all the matches; it's simply a boolean search.\n var l = toFind.length,\n i = 0;\n\n for (; toSearch.indexOf(toFind[i]) < 0 && ++i < l;) {}\n\n return i < l;\n},\n _lazyRender = function _lazyRender() {\n var l = _lazyTweens.length,\n a = _lazyTweens.slice(0),\n i,\n tween;\n\n _lazyLookup = {};\n _lazyTweens.length = 0;\n\n for (i = 0; i < l; i++) {\n tween = a[i];\n tween && tween._lazy && (tween.render(tween._lazy[0], tween._lazy[1], true)._lazy = 0);\n }\n},\n _isRevertWorthy = function _isRevertWorthy(animation) {\n return !!(animation._initted || animation._startAt || animation.add);\n},\n _lazySafeRender = function _lazySafeRender(animation, time, suppressEvents, force) {\n _lazyTweens.length && !_reverting && _lazyRender();\n animation.render(time, suppressEvents, force || !!(_reverting && time < 0 && _isRevertWorthy(animation)));\n _lazyTweens.length && !_reverting && _lazyRender(); //in case rendering caused any tweens to lazy-init, we should render them because typically when someone calls seek() or time() or progress(), they expect an immediate render.\n},\n _numericIfPossible = function _numericIfPossible(value) {\n var n = parseFloat(value);\n return (n || n === 0) && (value + \"\").match(_delimitedValueExp).length < 2 ? n : _isString(value) ? value.trim() : value;\n},\n _passThrough = function _passThrough(p) {\n return p;\n},\n _setDefaults = function _setDefaults(obj, defaults) {\n for (var p in defaults) {\n p in obj || (obj[p] = defaults[p]);\n }\n\n return obj;\n},\n _setKeyframeDefaults = function _setKeyframeDefaults(excludeDuration) {\n return function (obj, defaults) {\n for (var p in defaults) {\n p in obj || p === \"duration\" && excludeDuration || p === \"ease\" || (obj[p] = defaults[p]);\n }\n };\n},\n _merge = function _merge(base, toMerge) {\n for (var p in toMerge) {\n base[p] = toMerge[p];\n }\n\n return base;\n},\n _mergeDeep = function _mergeDeep(base, toMerge) {\n for (var p in toMerge) {\n p !== \"__proto__\" && p !== \"constructor\" && p !== \"prototype\" && (base[p] = _isObject(toMerge[p]) ? _mergeDeep(base[p] || (base[p] = {}), toMerge[p]) : toMerge[p]);\n }\n\n return base;\n},\n _copyExcluding = function _copyExcluding(obj, excluding) {\n var copy = {},\n p;\n\n for (p in obj) {\n p in excluding || (copy[p] = obj[p]);\n }\n\n return copy;\n},\n _inheritDefaults = function _inheritDefaults(vars) {\n var parent = vars.parent || _globalTimeline,\n func = vars.keyframes ? _setKeyframeDefaults(_isArray(vars.keyframes)) : _setDefaults;\n\n if (_isNotFalse(vars.inherit)) {\n while (parent) {\n func(vars, parent.vars.defaults);\n parent = parent.parent || parent._dp;\n }\n }\n\n return vars;\n},\n _arraysMatch = function _arraysMatch(a1, a2) {\n var i = a1.length,\n match = i === a2.length;\n\n while (match && i-- && a1[i] === a2[i]) {}\n\n return i < 0;\n},\n _addLinkedListItem = function _addLinkedListItem(parent, child, firstProp, lastProp, sortBy) {\n if (firstProp === void 0) {\n firstProp = \"_first\";\n }\n\n if (lastProp === void 0) {\n lastProp = \"_last\";\n }\n\n var prev = parent[lastProp],\n t;\n\n if (sortBy) {\n t = child[sortBy];\n\n while (prev && prev[sortBy] > t) {\n prev = prev._prev;\n }\n }\n\n if (prev) {\n child._next = prev._next;\n prev._next = child;\n } else {\n child._next = parent[firstProp];\n parent[firstProp] = child;\n }\n\n if (child._next) {\n child._next._prev = child;\n } else {\n parent[lastProp] = child;\n }\n\n child._prev = prev;\n child.parent = child._dp = parent;\n return child;\n},\n _removeLinkedListItem = function _removeLinkedListItem(parent, child, firstProp, lastProp) {\n if (firstProp === void 0) {\n firstProp = \"_first\";\n }\n\n if (lastProp === void 0) {\n lastProp = \"_last\";\n }\n\n var prev = child._prev,\n next = child._next;\n\n if (prev) {\n prev._next = next;\n } else if (parent[firstProp] === child) {\n parent[firstProp] = next;\n }\n\n if (next) {\n next._prev = prev;\n } else if (parent[lastProp] === child) {\n parent[lastProp] = prev;\n }\n\n child._next = child._prev = child.parent = null; // don't delete the _dp just so we can revert if necessary. But parent should be null to indicate the item isn't in a linked list.\n},\n _removeFromParent = function _removeFromParent(child, onlyIfParentHasAutoRemove) {\n child.parent && (!onlyIfParentHasAutoRemove || child.parent.autoRemoveChildren) && child.parent.remove && child.parent.remove(child);\n child._act = 0;\n},\n _uncache = function _uncache(animation, child) {\n if (animation && (!child || child._end > animation._dur || child._start < 0)) {\n // performance optimization: if a child animation is passed in we should only uncache if that child EXTENDS the animation (its end time is beyond the end)\n var a = animation;\n\n while (a) {\n a._dirty = 1;\n a = a.parent;\n }\n }\n\n return animation;\n},\n _recacheAncestors = function _recacheAncestors(animation) {\n var parent = animation.parent;\n\n while (parent && parent.parent) {\n //sometimes we must force a re-sort of all children and update the duration/totalDuration of all ancestor timelines immediately in case, for example, in the middle of a render loop, one tween alters another tween's timeScale which shoves its startTime before 0, forcing the parent timeline to shift around and shiftChildren() which could affect that next tween's render (startTime). Doesn't matter for the root timeline though.\n parent._dirty = 1;\n parent.totalDuration();\n parent = parent.parent;\n }\n\n return animation;\n},\n _rewindStartAt = function _rewindStartAt(tween, totalTime, suppressEvents, force) {\n return tween._startAt && (_reverting ? tween._startAt.revert(_revertConfigNoKill) : tween.vars.immediateRender && !tween.vars.autoRevert || tween._startAt.render(totalTime, true, force));\n},\n _hasNoPausedAncestors = function _hasNoPausedAncestors(animation) {\n return !animation || animation._ts && _hasNoPausedAncestors(animation.parent);\n},\n _elapsedCycleDuration = function _elapsedCycleDuration(animation) {\n return animation._repeat ? _animationCycle(animation._tTime, animation = animation.duration() + animation._rDelay) * animation : 0;\n},\n // feed in the totalTime and cycleDuration and it'll return the cycle (iteration minus 1) and if the playhead is exactly at the very END, it will NOT bump up to the next cycle.\n_animationCycle = function _animationCycle(tTime, cycleDuration) {\n var whole = Math.floor(tTime = _roundPrecise(tTime / cycleDuration));\n return tTime && whole === tTime ? whole - 1 : whole;\n},\n _parentToChildTotalTime = function _parentToChildTotalTime(parentTime, child) {\n return (parentTime - child._start) * child._ts + (child._ts >= 0 ? 0 : child._dirty ? child.totalDuration() : child._tDur);\n},\n _setEnd = function _setEnd(animation) {\n return animation._end = _roundPrecise(animation._start + (animation._tDur / Math.abs(animation._ts || animation._rts || _tinyNum) || 0));\n},\n _alignPlayhead = function _alignPlayhead(animation, totalTime) {\n // adjusts the animation's _start and _end according to the provided totalTime (only if the parent's smoothChildTiming is true and the animation isn't paused). It doesn't do any rendering or forcing things back into parent timelines, etc. - that's what totalTime() is for.\n var parent = animation._dp;\n\n if (parent && parent.smoothChildTiming && animation._ts) {\n animation._start = _roundPrecise(parent._time - (animation._ts > 0 ? totalTime / animation._ts : ((animation._dirty ? animation.totalDuration() : animation._tDur) - totalTime) / -animation._ts));\n\n _setEnd(animation);\n\n parent._dirty || _uncache(parent, animation); //for performance improvement. If the parent's cache is already dirty, it already took care of marking the ancestors as dirty too, so skip the function call here.\n }\n\n return animation;\n},\n\n/*\n_totalTimeToTime = (clampedTotalTime, duration, repeat, repeatDelay, yoyo) => {\n\tlet cycleDuration = duration + repeatDelay,\n\t\ttime = _round(clampedTotalTime % cycleDuration);\n\tif (time > duration) {\n\t\ttime = duration;\n\t}\n\treturn (yoyo && (~~(clampedTotalTime / cycleDuration) & 1)) ? duration - time : time;\n},\n*/\n_postAddChecks = function _postAddChecks(timeline, child) {\n var t;\n\n if (child._time || !child._dur && child._initted || child._start < timeline._time && (child._dur || !child.add)) {\n // in case, for example, the _start is moved on a tween that has already rendered, or if it's being inserted into a timeline BEFORE where the playhead is currently. Imagine it's at its end state, then the startTime is moved WAY later (after the end of this timeline), it should render at its beginning. Special case: if it's a timeline (has .add() method) and no duration, we can skip rendering because the user may be populating it AFTER adding it to a parent timeline (unconventional, but possible, and we wouldn't want it to get removed if the parent's autoRemoveChildren is true).\n t = _parentToChildTotalTime(timeline.rawTime(), child);\n\n if (!child._dur || _clamp(0, child.totalDuration(), t) - child._tTime > _tinyNum) {\n child.render(t, true);\n }\n } //if the timeline has already ended but the inserted tween/timeline extends the duration, we should enable this timeline again so that it renders properly. We should also align the playhead with the parent timeline's when appropriate.\n\n\n if (_uncache(timeline, child)._dp && timeline._initted && timeline._time >= timeline._dur && timeline._ts) {\n //in case any of the ancestors had completed but should now be enabled...\n if (timeline._dur < timeline.duration()) {\n t = timeline;\n\n while (t._dp) {\n t.rawTime() >= 0 && t.totalTime(t._tTime); //moves the timeline (shifts its startTime) if necessary, and also enables it. If it's currently zero, though, it may not be scheduled to render until later so there's no need to force it to align with the current playhead position. Only move to catch up with the playhead.\n\n t = t._dp;\n }\n }\n\n timeline._zTime = -_tinyNum; // helps ensure that the next render() will be forced (crossingStart = true in render()), even if the duration hasn't changed (we're adding a child which would need to get rendered). Definitely an edge case. Note: we MUST do this AFTER the loop above where the totalTime() might trigger a render() because this _addToTimeline() method gets called from the Animation constructor, BEFORE tweens even record their targets, etc. so we wouldn't want things to get triggered in the wrong order.\n }\n},\n _addToTimeline = function _addToTimeline(timeline, child, position, skipChecks) {\n child.parent && _removeFromParent(child);\n child._start = _roundPrecise((_isNumber(position) ? position : position || timeline !== _globalTimeline ? _parsePosition(timeline, position, child) : timeline._time) + child._delay);\n child._end = _roundPrecise(child._start + (child.totalDuration() / Math.abs(child.timeScale()) || 0));\n\n _addLinkedListItem(timeline, child, \"_first\", \"_last\", timeline._sort ? \"_start\" : 0);\n\n _isFromOrFromStart(child) || (timeline._recent = child);\n skipChecks || _postAddChecks(timeline, child);\n timeline._ts < 0 && _alignPlayhead(timeline, timeline._tTime); // if the timeline is reversed and the new child makes it longer, we may need to adjust the parent's _start (push it back)\n\n return timeline;\n},\n _scrollTrigger = function _scrollTrigger(animation, trigger) {\n return (_globals.ScrollTrigger || _missingPlugin(\"scrollTrigger\", trigger)) && _globals.ScrollTrigger.create(trigger, animation);\n},\n _attemptInitTween = function _attemptInitTween(tween, time, force, suppressEvents, tTime) {\n _initTween(tween, time, tTime);\n\n if (!tween._initted) {\n return 1;\n }\n\n if (!force && tween._pt && !_reverting && (tween._dur && tween.vars.lazy !== false || !tween._dur && tween.vars.lazy) && _lastRenderedFrame !== _ticker.frame) {\n _lazyTweens.push(tween);\n\n tween._lazy = [tTime, suppressEvents];\n return 1;\n }\n},\n _parentPlayheadIsBeforeStart = function _parentPlayheadIsBeforeStart(_ref) {\n var parent = _ref.parent;\n return parent && parent._ts && parent._initted && !parent._lock && (parent.rawTime() < 0 || _parentPlayheadIsBeforeStart(parent));\n},\n // check parent's _lock because when a timeline repeats/yoyos and does its artificial wrapping, we shouldn't force the ratio back to 0\n_isFromOrFromStart = function _isFromOrFromStart(_ref2) {\n var data = _ref2.data;\n return data === \"isFromStart\" || data === \"isStart\";\n},\n _renderZeroDurationTween = function _renderZeroDurationTween(tween, totalTime, suppressEvents, force) {\n var prevRatio = tween.ratio,\n ratio = totalTime < 0 || !totalTime && (!tween._start && _parentPlayheadIsBeforeStart(tween) && !(!tween._initted && _isFromOrFromStart(tween)) || (tween._ts < 0 || tween._dp._ts < 0) && !_isFromOrFromStart(tween)) ? 0 : 1,\n // if the tween or its parent is reversed and the totalTime is 0, we should go to a ratio of 0. Edge case: if a from() or fromTo() stagger tween is placed later in a timeline, the \"startAt\" zero-duration tween could initially render at a time when the parent timeline's playhead is technically BEFORE where this tween is, so make sure that any \"from\" and \"fromTo\" startAt tweens are rendered the first time at a ratio of 1.\n repeatDelay = tween._rDelay,\n tTime = 0,\n pt,\n iteration,\n prevIteration;\n\n if (repeatDelay && tween._repeat) {\n // in case there's a zero-duration tween that has a repeat with a repeatDelay\n tTime = _clamp(0, tween._tDur, totalTime);\n iteration = _animationCycle(tTime, repeatDelay);\n tween._yoyo && iteration & 1 && (ratio = 1 - ratio);\n\n if (iteration !== _animationCycle(tween._tTime, repeatDelay)) {\n // if iteration changed\n prevRatio = 1 - ratio;\n tween.vars.repeatRefresh && tween._initted && tween.invalidate();\n }\n }\n\n if (ratio !== prevRatio || _reverting || force || tween._zTime === _tinyNum || !totalTime && tween._zTime) {\n if (!tween._initted && _attemptInitTween(tween, totalTime, force, suppressEvents, tTime)) {\n // if we render the very beginning (time == 0) of a fromTo(), we must force the render (normal tweens wouldn't need to render at a time of 0 when the prevTime was also 0). This is also mandatory to make sure overwriting kicks in immediately.\n return;\n }\n\n prevIteration = tween._zTime;\n tween._zTime = totalTime || (suppressEvents ? _tinyNum : 0); // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect.\n\n suppressEvents || (suppressEvents = totalTime && !prevIteration); // if it was rendered previously at exactly 0 (_zTime) and now the playhead is moving away, DON'T fire callbacks otherwise they'll seem like duplicates.\n\n tween.ratio = ratio;\n tween._from && (ratio = 1 - ratio);\n tween._time = 0;\n tween._tTime = tTime;\n pt = tween._pt;\n\n while (pt) {\n pt.r(ratio, pt.d);\n pt = pt._next;\n }\n\n totalTime < 0 && _rewindStartAt(tween, totalTime, suppressEvents, true);\n tween._onUpdate && !suppressEvents && _callback(tween, \"onUpdate\");\n tTime && tween._repeat && !suppressEvents && tween.parent && _callback(tween, \"onRepeat\");\n\n if ((totalTime >= tween._tDur || totalTime < 0) && tween.ratio === ratio) {\n ratio && _removeFromParent(tween, 1);\n\n if (!suppressEvents && !_reverting) {\n _callback(tween, ratio ? \"onComplete\" : \"onReverseComplete\", true);\n\n tween._prom && tween._prom();\n }\n }\n } else if (!tween._zTime) {\n tween._zTime = totalTime;\n }\n},\n _findNextPauseTween = function _findNextPauseTween(animation, prevTime, time) {\n var child;\n\n if (time > prevTime) {\n child = animation._first;\n\n while (child && child._start <= time) {\n if (child.data === \"isPause\" && child._start > prevTime) {\n return child;\n }\n\n child = child._next;\n }\n } else {\n child = animation._last;\n\n while (child && child._start >= time) {\n if (child.data === \"isPause\" && child._start < prevTime) {\n return child;\n }\n\n child = child._prev;\n }\n }\n},\n _setDuration = function _setDuration(animation, duration, skipUncache, leavePlayhead) {\n var repeat = animation._repeat,\n dur = _roundPrecise(duration) || 0,\n totalProgress = animation._tTime / animation._tDur;\n totalProgress && !leavePlayhead && (animation._time *= dur / animation._dur);\n animation._dur = dur;\n animation._tDur = !repeat ? dur : repeat < 0 ? 1e10 : _roundPrecise(dur * (repeat + 1) + animation._rDelay * repeat);\n totalProgress > 0 && !leavePlayhead && _alignPlayhead(animation, animation._tTime = animation._tDur * totalProgress);\n animation.parent && _setEnd(animation);\n skipUncache || _uncache(animation.parent, animation);\n return animation;\n},\n _onUpdateTotalDuration = function _onUpdateTotalDuration(animation) {\n return animation instanceof Timeline ? _uncache(animation) : _setDuration(animation, animation._dur);\n},\n _zeroPosition = {\n _start: 0,\n endTime: _emptyFunc,\n totalDuration: _emptyFunc\n},\n _parsePosition = function _parsePosition(animation, position, percentAnimation) {\n var labels = animation.labels,\n recent = animation._recent || _zeroPosition,\n clippedDuration = animation.duration() >= _bigNum ? recent.endTime(false) : animation._dur,\n //in case there's a child that infinitely repeats, users almost never intend for the insertion point of a new child to be based on a SUPER long value like that so we clip it and assume the most recently-added child's endTime should be used instead.\n i,\n offset,\n isPercent;\n\n if (_isString(position) && (isNaN(position) || position in labels)) {\n //if the string is a number like \"1\", check to see if there's a label with that name, otherwise interpret it as a number (absolute value).\n offset = position.charAt(0);\n isPercent = position.substr(-1) === \"%\";\n i = position.indexOf(\"=\");\n\n if (offset === \"<\" || offset === \">\") {\n i >= 0 && (position = position.replace(/=/, \"\"));\n return (offset === \"<\" ? recent._start : recent.endTime(recent._repeat >= 0)) + (parseFloat(position.substr(1)) || 0) * (isPercent ? (i < 0 ? recent : percentAnimation).totalDuration() / 100 : 1);\n }\n\n if (i < 0) {\n position in labels || (labels[position] = clippedDuration);\n return labels[position];\n }\n\n offset = parseFloat(position.charAt(i - 1) + position.substr(i + 1));\n\n if (isPercent && percentAnimation) {\n offset = offset / 100 * (_isArray(percentAnimation) ? percentAnimation[0] : percentAnimation).totalDuration();\n }\n\n return i > 1 ? _parsePosition(animation, position.substr(0, i - 1), percentAnimation) + offset : clippedDuration + offset;\n }\n\n return position == null ? clippedDuration : +position;\n},\n _createTweenType = function _createTweenType(type, params, timeline) {\n var isLegacy = _isNumber(params[1]),\n varsIndex = (isLegacy ? 2 : 1) + (type < 2 ? 0 : 1),\n vars = params[varsIndex],\n irVars,\n parent;\n\n isLegacy && (vars.duration = params[1]);\n vars.parent = timeline;\n\n if (type) {\n irVars = vars;\n parent = timeline;\n\n while (parent && !(\"immediateRender\" in irVars)) {\n // inheritance hasn't happened yet, but someone may have set a default in an ancestor timeline. We could do vars.immediateRender = _isNotFalse(_inheritDefaults(vars).immediateRender) but that'd exact a slight performance penalty because _inheritDefaults() also runs in the Tween constructor. We're paying a small kb price here to gain speed.\n irVars = parent.vars.defaults || {};\n parent = _isNotFalse(parent.vars.inherit) && parent.parent;\n }\n\n vars.immediateRender = _isNotFalse(irVars.immediateRender);\n type < 2 ? vars.runBackwards = 1 : vars.startAt = params[varsIndex - 1]; // \"from\" vars\n }\n\n return new Tween(params[0], vars, params[varsIndex + 1]);\n},\n _conditionalReturn = function _conditionalReturn(value, func) {\n return value || value === 0 ? func(value) : func;\n},\n _clamp = function _clamp(min, max, value) {\n return value < min ? min : value > max ? max : value;\n},\n getUnit = function getUnit(value, v) {\n return !_isString(value) || !(v = _unitExp.exec(value)) ? \"\" : v[1];\n},\n // note: protect against padded numbers as strings, like \"100.100\". That shouldn't return \"00\" as the unit. If it's numeric, return no unit.\nclamp = function clamp(min, max, value) {\n return _conditionalReturn(value, function (v) {\n return _clamp(min, max, v);\n });\n},\n _slice = [].slice,\n _isArrayLike = function _isArrayLike(value, nonEmpty) {\n return value && _isObject(value) && \"length\" in value && (!nonEmpty && !value.length || value.length - 1 in value && _isObject(value[0])) && !value.nodeType && value !== _win;\n},\n _flatten = function _flatten(ar, leaveStrings, accumulator) {\n if (accumulator === void 0) {\n accumulator = [];\n }\n\n return ar.forEach(function (value) {\n var _accumulator;\n\n return _isString(value) && !leaveStrings || _isArrayLike(value, 1) ? (_accumulator = accumulator).push.apply(_accumulator, toArray(value)) : accumulator.push(value);\n }) || accumulator;\n},\n // takes any value and returns an Array. If it's a string (and leaveStrings isn't true), it'll use document.querySelectorAll() and convert that to an array. It'll also accept iterables like jQuery objects.\ntoArray = function toArray(value, scope, leaveStrings) {\n return _context && !scope && _context.selector ? _context.selector(value) : _isString(value) && !leaveStrings && (_coreInitted || !_wake()) ? _slice.call((scope || _doc).querySelectorAll(value), 0) : _isArray(value) ? _flatten(value, leaveStrings) : _isArrayLike(value) ? _slice.call(value, 0) : value ? [value] : [];\n},\n selector = function selector(value) {\n value = toArray(value)[0] || _warn(\"Invalid scope\") || {};\n return function (v) {\n var el = value.current || value.nativeElement || value;\n return toArray(v, el.querySelectorAll ? el : el === value ? _warn(\"Invalid scope\") || _doc.createElement(\"div\") : value);\n };\n},\n shuffle = function shuffle(a) {\n return a.sort(function () {\n return .5 - Math.random();\n });\n},\n // alternative that's a bit faster and more reliably diverse but bigger: for (let j, v, i = a.length; i; j = (Math.random() * i) | 0, v = a[--i], a[i] = a[j], a[j] = v); return a;\n// for distributing values across an Array. Can accept a number, a function or (most commonly) an object which can contain the following properties: {base, amount, from, ease, grid, axis, length, each}. Returns a function that expects the following parameters: index, target, array.\ndistribute = function distribute(v) {\n if (_isFunction(v)) {\n return v;\n }\n\n var vars = _isObject(v) ? v : {\n each: v\n },\n //n:1 is just to indicate v was a number; we leverage that later to set v according to the length we get. If a number is passed in, we treat it like the old stagger value where 0.1, for example, would mean that things would be distributed with 0.1 between each element in the array rather than a total \"amount\" that's chunked out among them all.\n ease = _parseEase(vars.ease),\n from = vars.from || 0,\n base = parseFloat(vars.base) || 0,\n cache = {},\n isDecimal = from > 0 && from < 1,\n ratios = isNaN(from) || isDecimal,\n axis = vars.axis,\n ratioX = from,\n ratioY = from;\n\n if (_isString(from)) {\n ratioX = ratioY = {\n center: .5,\n edges: .5,\n end: 1\n }[from] || 0;\n } else if (!isDecimal && ratios) {\n ratioX = from[0];\n ratioY = from[1];\n }\n\n return function (i, target, a) {\n var l = (a || vars).length,\n distances = cache[l],\n originX,\n originY,\n x,\n y,\n d,\n j,\n max,\n min,\n wrapAt;\n\n if (!distances) {\n wrapAt = vars.grid === \"auto\" ? 0 : (vars.grid || [1, _bigNum])[1];\n\n if (!wrapAt) {\n max = -_bigNum;\n\n while (max < (max = a[wrapAt++].getBoundingClientRect().left) && wrapAt < l) {}\n\n wrapAt < l && wrapAt--;\n }\n\n distances = cache[l] = [];\n originX = ratios ? Math.min(wrapAt, l) * ratioX - .5 : from % wrapAt;\n originY = wrapAt === _bigNum ? 0 : ratios ? l * ratioY / wrapAt - .5 : from / wrapAt | 0;\n max = 0;\n min = _bigNum;\n\n for (j = 0; j < l; j++) {\n x = j % wrapAt - originX;\n y = originY - (j / wrapAt | 0);\n distances[j] = d = !axis ? _sqrt(x * x + y * y) : Math.abs(axis === \"y\" ? y : x);\n d > max && (max = d);\n d < min && (min = d);\n }\n\n from === \"random\" && shuffle(distances);\n distances.max = max - min;\n distances.min = min;\n distances.v = l = (parseFloat(vars.amount) || parseFloat(vars.each) * (wrapAt > l ? l - 1 : !axis ? Math.max(wrapAt, l / wrapAt) : axis === \"y\" ? l / wrapAt : wrapAt) || 0) * (from === \"edges\" ? -1 : 1);\n distances.b = l < 0 ? base - l : base;\n distances.u = getUnit(vars.amount || vars.each) || 0; //unit\n\n ease = ease && l < 0 ? _invertEase(ease) : ease;\n }\n\n l = (distances[i] - distances.min) / distances.max || 0;\n return _roundPrecise(distances.b + (ease ? ease(l) : l) * distances.v) + distances.u; //round in order to work around floating point errors\n };\n},\n _roundModifier = function _roundModifier(v) {\n //pass in 0.1 get a function that'll round to the nearest tenth, or 5 to round to the closest 5, or 0.001 to the closest 1000th, etc.\n var p = Math.pow(10, ((v + \"\").split(\".\")[1] || \"\").length); //to avoid floating point math errors (like 24 * 0.1 == 2.4000000000000004), we chop off at a specific number of decimal places (much faster than toFixed())\n\n return function (raw) {\n var n = _roundPrecise(Math.round(parseFloat(raw) / v) * v * p);\n\n return (n - n % 1) / p + (_isNumber(raw) ? 0 : getUnit(raw)); // n - n % 1 replaces Math.floor() in order to handle negative values properly. For example, Math.floor(-150.00000000000003) is 151!\n };\n},\n snap = function snap(snapTo, value) {\n var isArray = _isArray(snapTo),\n radius,\n is2D;\n\n if (!isArray && _isObject(snapTo)) {\n radius = isArray = snapTo.radius || _bigNum;\n\n if (snapTo.values) {\n snapTo = toArray(snapTo.values);\n\n if (is2D = !_isNumber(snapTo[0])) {\n radius *= radius; //performance optimization so we don't have to Math.sqrt() in the loop.\n }\n } else {\n snapTo = _roundModifier(snapTo.increment);\n }\n }\n\n return _conditionalReturn(value, !isArray ? _roundModifier(snapTo) : _isFunction(snapTo) ? function (raw) {\n is2D = snapTo(raw);\n return Math.abs(is2D - raw) <= radius ? is2D : raw;\n } : function (raw) {\n var x = parseFloat(is2D ? raw.x : raw),\n y = parseFloat(is2D ? raw.y : 0),\n min = _bigNum,\n closest = 0,\n i = snapTo.length,\n dx,\n dy;\n\n while (i--) {\n if (is2D) {\n dx = snapTo[i].x - x;\n dy = snapTo[i].y - y;\n dx = dx * dx + dy * dy;\n } else {\n dx = Math.abs(snapTo[i] - x);\n }\n\n if (dx < min) {\n min = dx;\n closest = i;\n }\n }\n\n closest = !radius || min <= radius ? snapTo[closest] : raw;\n return is2D || closest === raw || _isNumber(raw) ? closest : closest + getUnit(raw);\n });\n},\n random = function random(min, max, roundingIncrement, returnFunction) {\n return _conditionalReturn(_isArray(min) ? !max : roundingIncrement === true ? !!(roundingIncrement = 0) : !returnFunction, function () {\n return _isArray(min) ? min[~~(Math.random() * min.length)] : (roundingIncrement = roundingIncrement || 1e-5) && (returnFunction = roundingIncrement < 1 ? Math.pow(10, (roundingIncrement + \"\").length - 2) : 1) && Math.floor(Math.round((min - roundingIncrement / 2 + Math.random() * (max - min + roundingIncrement * .99)) / roundingIncrement) * roundingIncrement * returnFunction) / returnFunction;\n });\n},\n pipe = function pipe() {\n for (var _len = arguments.length, functions = new Array(_len), _key = 0; _key < _len; _key++) {\n functions[_key] = arguments[_key];\n }\n\n return function (value) {\n return functions.reduce(function (v, f) {\n return f(v);\n }, value);\n };\n},\n unitize = function unitize(func, unit) {\n return function (value) {\n return func(parseFloat(value)) + (unit || getUnit(value));\n };\n},\n normalize = function normalize(min, max, value) {\n return mapRange(min, max, 0, 1, value);\n},\n _wrapArray = function _wrapArray(a, wrapper, value) {\n return _conditionalReturn(value, function (index) {\n return a[~~wrapper(index)];\n });\n},\n wrap = function wrap(min, max, value) {\n // NOTE: wrap() CANNOT be an arrow function! A very odd compiling bug causes problems (unrelated to GSAP).\n var range = max - min;\n return _isArray(min) ? _wrapArray(min, wrap(0, min.length), max) : _conditionalReturn(value, function (value) {\n return (range + (value - min) % range) % range + min;\n });\n},\n wrapYoyo = function wrapYoyo(min, max, value) {\n var range = max - min,\n total = range * 2;\n return _isArray(min) ? _wrapArray(min, wrapYoyo(0, min.length - 1), max) : _conditionalReturn(value, function (value) {\n value = (total + (value - min) % total) % total || 0;\n return min + (value > range ? total - value : value);\n });\n},\n _replaceRandom = function _replaceRandom(s) {\n return s.replace(_randomExp, function (match) {\n //replaces all occurrences of random(...) in a string with the calculated random value. can be a range like random(-100, 100, 5) or an array like random([0, 100, 500])\n var arIndex = match.indexOf(\"[\") + 1,\n values = match.substring(arIndex || 7, arIndex ? match.indexOf(\"]\") : match.length - 1).split(_commaDelimExp);\n return random(arIndex ? values : +values[0], arIndex ? 0 : +values[1], +values[2] || 1e-5);\n });\n},\n mapRange = function mapRange(inMin, inMax, outMin, outMax, value) {\n var inRange = inMax - inMin,\n outRange = outMax - outMin;\n return _conditionalReturn(value, function (value) {\n return outMin + ((value - inMin) / inRange * outRange || 0);\n });\n},\n interpolate = function interpolate(start, end, progress, mutate) {\n var func = isNaN(start + end) ? 0 : function (p) {\n return (1 - p) * start + p * end;\n };\n\n if (!func) {\n var isString = _isString(start),\n master = {},\n p,\n i,\n interpolators,\n l,\n il;\n\n progress === true && (mutate = 1) && (progress = null);\n\n if (isString) {\n start = {\n p: start\n };\n end = {\n p: end\n };\n } else if (_isArray(start) && !_isArray(end)) {\n interpolators = [];\n l = start.length;\n il = l - 2;\n\n for (i = 1; i < l; i++) {\n interpolators.push(interpolate(start[i - 1], start[i])); //build the interpolators up front as a performance optimization so that when the function is called many times, it can just reuse them.\n }\n\n l--;\n\n func = function func(p) {\n p *= l;\n var i = Math.min(il, ~~p);\n return interpolators[i](p - i);\n };\n\n progress = end;\n } else if (!mutate) {\n start = _merge(_isArray(start) ? [] : {}, start);\n }\n\n if (!interpolators) {\n for (p in end) {\n _addPropTween.call(master, start, p, \"get\", end[p]);\n }\n\n func = function func(p) {\n return _renderPropTweens(p, master) || (isString ? start.p : start);\n };\n }\n }\n\n return _conditionalReturn(progress, func);\n},\n _getLabelInDirection = function _getLabelInDirection(timeline, fromTime, backward) {\n //used for nextLabel() and previousLabel()\n var labels = timeline.labels,\n min = _bigNum,\n p,\n distance,\n label;\n\n for (p in labels) {\n distance = labels[p] - fromTime;\n\n if (distance < 0 === !!backward && distance && min > (distance = Math.abs(distance))) {\n label = p;\n min = distance;\n }\n }\n\n return label;\n},\n _callback = function _callback(animation, type, executeLazyFirst) {\n var v = animation.vars,\n callback = v[type],\n prevContext = _context,\n context = animation._ctx,\n params,\n scope,\n result;\n\n if (!callback) {\n return;\n }\n\n params = v[type + \"Params\"];\n scope = v.callbackScope || animation;\n executeLazyFirst && _lazyTweens.length && _lazyRender(); //in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onUpdate on a timeline that reports/checks tweened values.\n\n context && (_context = context);\n result = params ? callback.apply(scope, params) : callback.call(scope);\n _context = prevContext;\n return result;\n},\n _interrupt = function _interrupt(animation) {\n _removeFromParent(animation);\n\n animation.scrollTrigger && animation.scrollTrigger.kill(!!_reverting);\n animation.progress() < 1 && _callback(animation, \"onInterrupt\");\n return animation;\n},\n _quickTween,\n _registerPluginQueue = [],\n _createPlugin = function _createPlugin(config) {\n if (!config) return;\n config = !config.name && config[\"default\"] || config; // UMD packaging wraps things oddly, so for example MotionPathHelper becomes {MotionPathHelper:MotionPathHelper, default:MotionPathHelper}.\n\n if (_windowExists() || config.headless) {\n // edge case: some build tools may pass in a null/undefined value\n var name = config.name,\n isFunc = _isFunction(config),\n Plugin = name && !isFunc && config.init ? function () {\n this._props = [];\n } : config,\n //in case someone passes in an object that's not a plugin, like CustomEase\n instanceDefaults = {\n init: _emptyFunc,\n render: _renderPropTweens,\n add: _addPropTween,\n kill: _killPropTweensOf,\n modifier: _addPluginModifier,\n rawVars: 0\n },\n statics = {\n targetTest: 0,\n get: 0,\n getSetter: _getSetter,\n aliases: {},\n register: 0\n };\n\n _wake();\n\n if (config !== Plugin) {\n if (_plugins[name]) {\n return;\n }\n\n _setDefaults(Plugin, _setDefaults(_copyExcluding(config, instanceDefaults), statics)); //static methods\n\n\n _merge(Plugin.prototype, _merge(instanceDefaults, _copyExcluding(config, statics))); //instance methods\n\n\n _plugins[Plugin.prop = name] = Plugin;\n\n if (config.targetTest) {\n _harnessPlugins.push(Plugin);\n\n _reservedProps[name] = 1;\n }\n\n name = (name === \"css\" ? \"CSS\" : name.charAt(0).toUpperCase() + name.substr(1)) + \"Plugin\"; //for the global name. \"motionPath\" should become MotionPathPlugin\n }\n\n _addGlobal(name, Plugin);\n\n config.register && config.register(gsap, Plugin, PropTween);\n } else {\n _registerPluginQueue.push(config);\n }\n},\n\n/*\n * --------------------------------------------------------------------------------------\n * COLORS\n * --------------------------------------------------------------------------------------\n */\n_255 = 255,\n _colorLookup = {\n aqua: [0, _255, _255],\n lime: [0, _255, 0],\n silver: [192, 192, 192],\n black: [0, 0, 0],\n maroon: [128, 0, 0],\n teal: [0, 128, 128],\n blue: [0, 0, _255],\n navy: [0, 0, 128],\n white: [_255, _255, _255],\n olive: [128, 128, 0],\n yellow: [_255, _255, 0],\n orange: [_255, 165, 0],\n gray: [128, 128, 128],\n purple: [128, 0, 128],\n green: [0, 128, 0],\n red: [_255, 0, 0],\n pink: [_255, 192, 203],\n cyan: [0, _255, _255],\n transparent: [_255, _255, _255, 0]\n},\n // possible future idea to replace the hard-coded color name values - put this in the ticker.wake() where we set the _doc:\n// let ctx = _doc.createElement(\"canvas\").getContext(\"2d\");\n// _forEachName(\"aqua,lime,silver,black,maroon,teal,blue,navy,white,olive,yellow,orange,gray,purple,green,red,pink,cyan\", color => {ctx.fillStyle = color; _colorLookup[color] = splitColor(ctx.fillStyle)});\n_hue = function _hue(h, m1, m2) {\n h += h < 0 ? 1 : h > 1 ? -1 : 0;\n return (h * 6 < 1 ? m1 + (m2 - m1) * h * 6 : h < .5 ? m2 : h * 3 < 2 ? m1 + (m2 - m1) * (2 / 3 - h) * 6 : m1) * _255 + .5 | 0;\n},\n splitColor = function splitColor(v, toHSL, forceAlpha) {\n var a = !v ? _colorLookup.black : _isNumber(v) ? [v >> 16, v >> 8 & _255, v & _255] : 0,\n r,\n g,\n b,\n h,\n s,\n l,\n max,\n min,\n d,\n wasHSL;\n\n if (!a) {\n if (v.substr(-1) === \",\") {\n //sometimes a trailing comma is included and we should chop it off (typically from a comma-delimited list of values like a textShadow:\"2px 2px 2px blue, 5px 5px 5px rgb(255,0,0)\" - in this example \"blue,\" has a trailing comma. We could strip it out inside parseComplex() but we'd need to do it to the beginning and ending values plus it wouldn't provide protection from other potential scenarios like if the user passes in a similar value.\n v = v.substr(0, v.length - 1);\n }\n\n if (_colorLookup[v]) {\n a = _colorLookup[v];\n } else if (v.charAt(0) === \"#\") {\n if (v.length < 6) {\n //for shorthand like #9F0 or #9F0F (could have alpha)\n r = v.charAt(1);\n g = v.charAt(2);\n b = v.charAt(3);\n v = \"#\" + r + r + g + g + b + b + (v.length === 5 ? v.charAt(4) + v.charAt(4) : \"\");\n }\n\n if (v.length === 9) {\n // hex with alpha, like #fd5e53ff\n a = parseInt(v.substr(1, 6), 16);\n return [a >> 16, a >> 8 & _255, a & _255, parseInt(v.substr(7), 16) / 255];\n }\n\n v = parseInt(v.substr(1), 16);\n a = [v >> 16, v >> 8 & _255, v & _255];\n } else if (v.substr(0, 3) === \"hsl\") {\n a = wasHSL = v.match(_strictNumExp);\n\n if (!toHSL) {\n h = +a[0] % 360 / 360;\n s = +a[1] / 100;\n l = +a[2] / 100;\n g = l <= .5 ? l * (s + 1) : l + s - l * s;\n r = l * 2 - g;\n a.length > 3 && (a[3] *= 1); //cast as number\n\n a[0] = _hue(h + 1 / 3, r, g);\n a[1] = _hue(h, r, g);\n a[2] = _hue(h - 1 / 3, r, g);\n } else if (~v.indexOf(\"=\")) {\n //if relative values are found, just return the raw strings with the relative prefixes in place.\n a = v.match(_numExp);\n forceAlpha && a.length < 4 && (a[3] = 1);\n return a;\n }\n } else {\n a = v.match(_strictNumExp) || _colorLookup.transparent;\n }\n\n a = a.map(Number);\n }\n\n if (toHSL && !wasHSL) {\n r = a[0] / _255;\n g = a[1] / _255;\n b = a[2] / _255;\n max = Math.max(r, g, b);\n min = Math.min(r, g, b);\n l = (max + min) / 2;\n\n if (max === min) {\n h = s = 0;\n } else {\n d = max - min;\n s = l > 0.5 ? d / (2 - max - min) : d / (max + min);\n h = max === r ? (g - b) / d + (g < b ? 6 : 0) : max === g ? (b - r) / d + 2 : (r - g) / d + 4;\n h *= 60;\n }\n\n a[0] = ~~(h + .5);\n a[1] = ~~(s * 100 + .5);\n a[2] = ~~(l * 100 + .5);\n }\n\n forceAlpha && a.length < 4 && (a[3] = 1);\n return a;\n},\n _colorOrderData = function _colorOrderData(v) {\n // strips out the colors from the string, finds all the numeric slots (with units) and returns an array of those. The Array also has a \"c\" property which is an Array of the index values where the colors belong. This is to help work around issues where there's a mis-matched order of color/numeric data like drop-shadow(#f00 0px 1px 2px) and drop-shadow(0x 1px 2px #f00). This is basically a helper function used in _formatColors()\n var values = [],\n c = [],\n i = -1;\n v.split(_colorExp).forEach(function (v) {\n var a = v.match(_numWithUnitExp) || [];\n values.push.apply(values, a);\n c.push(i += a.length + 1);\n });\n values.c = c;\n return values;\n},\n _formatColors = function _formatColors(s, toHSL, orderMatchData) {\n var result = \"\",\n colors = (s + result).match(_colorExp),\n type = toHSL ? \"hsla(\" : \"rgba(\",\n i = 0,\n c,\n shell,\n d,\n l;\n\n if (!colors) {\n return s;\n }\n\n colors = colors.map(function (color) {\n return (color = splitColor(color, toHSL, 1)) && type + (toHSL ? color[0] + \",\" + color[1] + \"%,\" + color[2] + \"%,\" + color[3] : color.join(\",\")) + \")\";\n });\n\n if (orderMatchData) {\n d = _colorOrderData(s);\n c = orderMatchData.c;\n\n if (c.join(result) !== d.c.join(result)) {\n shell = s.replace(_colorExp, \"1\").split(_numWithUnitExp);\n l = shell.length - 1;\n\n for (; i < l; i++) {\n result += shell[i] + (~c.indexOf(i) ? colors.shift() || type + \"0,0,0,0)\" : (d.length ? d : colors.length ? colors : orderMatchData).shift());\n }\n }\n }\n\n if (!shell) {\n shell = s.split(_colorExp);\n l = shell.length - 1;\n\n for (; i < l; i++) {\n result += shell[i] + colors[i];\n }\n }\n\n return result + shell[l];\n},\n _colorExp = function () {\n var s = \"(?:\\\\b(?:(?:rgb|rgba|hsl|hsla)\\\\(.+?\\\\))|\\\\B#(?:[0-9a-f]{3,4}){1,2}\\\\b\",\n //we'll dynamically build this Regular Expression to conserve file size. After building it, it will be able to find rgb(), rgba(), # (hexadecimal), and named color values like red, blue, purple, etc.,\n p;\n\n for (p in _colorLookup) {\n s += \"|\" + p + \"\\\\b\";\n }\n\n return new RegExp(s + \")\", \"gi\");\n}(),\n _hslExp = /hsl[a]?\\(/,\n _colorStringFilter = function _colorStringFilter(a) {\n var combined = a.join(\" \"),\n toHSL;\n _colorExp.lastIndex = 0;\n\n if (_colorExp.test(combined)) {\n toHSL = _hslExp.test(combined);\n a[1] = _formatColors(a[1], toHSL);\n a[0] = _formatColors(a[0], toHSL, _colorOrderData(a[1])); // make sure the order of numbers/colors match with the END value.\n\n return true;\n }\n},\n\n/*\n * --------------------------------------------------------------------------------------\n * TICKER\n * --------------------------------------------------------------------------------------\n */\n_tickerActive,\n _ticker = function () {\n var _getTime = Date.now,\n _lagThreshold = 500,\n _adjustedLag = 33,\n _startTime = _getTime(),\n _lastUpdate = _startTime,\n _gap = 1000 / 240,\n _nextTime = _gap,\n _listeners = [],\n _id,\n _req,\n _raf,\n _self,\n _delta,\n _i,\n _tick = function _tick(v) {\n var elapsed = _getTime() - _lastUpdate,\n manual = v === true,\n overlap,\n dispatch,\n time,\n frame;\n\n (elapsed > _lagThreshold || elapsed < 0) && (_startTime += elapsed - _adjustedLag);\n _lastUpdate += elapsed;\n time = _lastUpdate - _startTime;\n overlap = time - _nextTime;\n\n if (overlap > 0 || manual) {\n frame = ++_self.frame;\n _delta = time - _self.time * 1000;\n _self.time = time = time / 1000;\n _nextTime += overlap + (overlap >= _gap ? 4 : _gap - overlap);\n dispatch = 1;\n }\n\n manual || (_id = _req(_tick)); //make sure the request is made before we dispatch the \"tick\" event so that timing is maintained. Otherwise, if processing the \"tick\" requires a bunch of time (like 15ms) and we're using a setTimeout() that's based on 16.7ms, it'd technically take 31.7ms between frames otherwise.\n\n if (dispatch) {\n for (_i = 0; _i < _listeners.length; _i++) {\n // use _i and check _listeners.length instead of a variable because a listener could get removed during the loop, and if that happens to an element less than the current index, it'd throw things off in the loop.\n _listeners[_i](time, _delta, frame, v);\n }\n }\n };\n\n _self = {\n time: 0,\n frame: 0,\n tick: function tick() {\n _tick(true);\n },\n deltaRatio: function deltaRatio(fps) {\n return _delta / (1000 / (fps || 60));\n },\n wake: function wake() {\n if (_coreReady) {\n if (!_coreInitted && _windowExists()) {\n _win = _coreInitted = window;\n _doc = _win.document || {};\n _globals.gsap = gsap;\n (_win.gsapVersions || (_win.gsapVersions = [])).push(gsap.version);\n\n _install(_installScope || _win.GreenSockGlobals || !_win.gsap && _win || {});\n\n _registerPluginQueue.forEach(_createPlugin);\n }\n\n _raf = typeof requestAnimationFrame !== \"undefined\" && requestAnimationFrame;\n _id && _self.sleep();\n\n _req = _raf || function (f) {\n return setTimeout(f, _nextTime - _self.time * 1000 + 1 | 0);\n };\n\n _tickerActive = 1;\n\n _tick(2);\n }\n },\n sleep: function sleep() {\n (_raf ? cancelAnimationFrame : clearTimeout)(_id);\n _tickerActive = 0;\n _req = _emptyFunc;\n },\n lagSmoothing: function lagSmoothing(threshold, adjustedLag) {\n _lagThreshold = threshold || Infinity; // zero should be interpreted as basically unlimited\n\n _adjustedLag = Math.min(adjustedLag || 33, _lagThreshold);\n },\n fps: function fps(_fps) {\n _gap = 1000 / (_fps || 240);\n _nextTime = _self.time * 1000 + _gap;\n },\n add: function add(callback, once, prioritize) {\n var func = once ? function (t, d, f, v) {\n callback(t, d, f, v);\n\n _self.remove(func);\n } : callback;\n\n _self.remove(callback);\n\n _listeners[prioritize ? \"unshift\" : \"push\"](func);\n\n _wake();\n\n return func;\n },\n remove: function remove(callback, i) {\n ~(i = _listeners.indexOf(callback)) && _listeners.splice(i, 1) && _i >= i && _i--;\n },\n _listeners: _listeners\n };\n return _self;\n}(),\n _wake = function _wake() {\n return !_tickerActive && _ticker.wake();\n},\n //also ensures the core classes are initialized.\n\n/*\n* -------------------------------------------------\n* EASING\n* -------------------------------------------------\n*/\n_easeMap = {},\n _customEaseExp = /^[\\d.\\-M][\\d.\\-,\\s]/,\n _quotesExp = /[\"']/g,\n _parseObjectInString = function _parseObjectInString(value) {\n //takes a string like \"{wiggles:10, type:anticipate})\" and turns it into a real object. Notice it ends in \")\" and includes the {} wrappers. This is because we only use this function for parsing ease configs and prioritized optimization rather than reusability.\n var obj = {},\n split = value.substr(1, value.length - 3).split(\":\"),\n key = split[0],\n i = 1,\n l = split.length,\n index,\n val,\n parsedVal;\n\n for (; i < l; i++) {\n val = split[i];\n index = i !== l - 1 ? val.lastIndexOf(\",\") : val.length;\n parsedVal = val.substr(0, index);\n obj[key] = isNaN(parsedVal) ? parsedVal.replace(_quotesExp, \"\").trim() : +parsedVal;\n key = val.substr(index + 1).trim();\n }\n\n return obj;\n},\n _valueInParentheses = function _valueInParentheses(value) {\n var open = value.indexOf(\"(\") + 1,\n close = value.indexOf(\")\"),\n nested = value.indexOf(\"(\", open);\n return value.substring(open, ~nested && nested < close ? value.indexOf(\")\", close + 1) : close);\n},\n _configEaseFromString = function _configEaseFromString(name) {\n //name can be a string like \"elastic.out(1,0.5)\", and pass in _easeMap as obj and it'll parse it out and call the actual function like _easeMap.Elastic.easeOut.config(1,0.5). It will also parse custom ease strings as long as CustomEase is loaded and registered (internally as _easeMap._CE).\n var split = (name + \"\").split(\"(\"),\n ease = _easeMap[split[0]];\n return ease && split.length > 1 && ease.config ? ease.config.apply(null, ~name.indexOf(\"{\") ? [_parseObjectInString(split[1])] : _valueInParentheses(name).split(\",\").map(_numericIfPossible)) : _easeMap._CE && _customEaseExp.test(name) ? _easeMap._CE(\"\", name) : ease;\n},\n _invertEase = function _invertEase(ease) {\n return function (p) {\n return 1 - ease(1 - p);\n };\n},\n _parseEase = function _parseEase(ease, defaultEase) {\n return !ease ? defaultEase : (_isFunction(ease) ? ease : _easeMap[ease] || _configEaseFromString(ease)) || defaultEase;\n},\n _insertEase = function _insertEase(names, easeIn, easeOut, easeInOut) {\n if (easeOut === void 0) {\n easeOut = function easeOut(p) {\n return 1 - easeIn(1 - p);\n };\n }\n\n if (easeInOut === void 0) {\n easeInOut = function easeInOut(p) {\n return p < .5 ? easeIn(p * 2) / 2 : 1 - easeIn((1 - p) * 2) / 2;\n };\n }\n\n var ease = {\n easeIn: easeIn,\n easeOut: easeOut,\n easeInOut: easeInOut\n },\n lowercaseName;\n\n _forEachName(names, function (name) {\n _easeMap[name] = _globals[name] = ease;\n _easeMap[lowercaseName = name.toLowerCase()] = easeOut;\n\n for (var p in ease) {\n _easeMap[lowercaseName + (p === \"easeIn\" ? \".in\" : p === \"easeOut\" ? \".out\" : \".inOut\")] = _easeMap[name + \".\" + p] = ease[p];\n }\n });\n\n return ease;\n},\n _easeInOutFromOut = function _easeInOutFromOut(easeOut) {\n return function (p) {\n return p < .5 ? (1 - easeOut(1 - p * 2)) / 2 : .5 + easeOut((p - .5) * 2) / 2;\n };\n},\n _configElastic = function _configElastic(type, amplitude, period) {\n var p1 = amplitude >= 1 ? amplitude : 1,\n //note: if amplitude is < 1, we simply adjust the period for a more natural feel. Otherwise the math doesn't work right and the curve starts at 1.\n p2 = (period || (type ? .3 : .45)) / (amplitude < 1 ? amplitude : 1),\n p3 = p2 / _2PI * (Math.asin(1 / p1) || 0),\n easeOut = function easeOut(p) {\n return p === 1 ? 1 : p1 * Math.pow(2, -10 * p) * _sin((p - p3) * p2) + 1;\n },\n ease = type === \"out\" ? easeOut : type === \"in\" ? function (p) {\n return 1 - easeOut(1 - p);\n } : _easeInOutFromOut(easeOut);\n\n p2 = _2PI / p2; //precalculate to optimize\n\n ease.config = function (amplitude, period) {\n return _configElastic(type, amplitude, period);\n };\n\n return ease;\n},\n _configBack = function _configBack(type, overshoot) {\n if (overshoot === void 0) {\n overshoot = 1.70158;\n }\n\n var easeOut = function easeOut(p) {\n return p ? --p * p * ((overshoot + 1) * p + overshoot) + 1 : 0;\n },\n ease = type === \"out\" ? easeOut : type === \"in\" ? function (p) {\n return 1 - easeOut(1 - p);\n } : _easeInOutFromOut(easeOut);\n\n ease.config = function (overshoot) {\n return _configBack(type, overshoot);\n };\n\n return ease;\n}; // a cheaper (kb and cpu) but more mild way to get a parameterized weighted ease by feeding in a value between -1 (easeIn) and 1 (easeOut) where 0 is linear.\n// _weightedEase = ratio => {\n// \tlet y = 0.5 + ratio / 2;\n// \treturn p => (2 * (1 - p) * p * y + p * p);\n// },\n// a stronger (but more expensive kb/cpu) parameterized weighted ease that lets you feed in a value between -1 (easeIn) and 1 (easeOut) where 0 is linear.\n// _weightedEaseStrong = ratio => {\n// \tratio = .5 + ratio / 2;\n// \tlet o = 1 / 3 * (ratio < .5 ? ratio : 1 - ratio),\n// \t\tb = ratio - o,\n// \t\tc = ratio + o;\n// \treturn p => p === 1 ? p : 3 * b * (1 - p) * (1 - p) * p + 3 * c * (1 - p) * p * p + p * p * p;\n// };\n\n\n_forEachName(\"Linear,Quad,Cubic,Quart,Quint,Strong\", function (name, i) {\n var power = i < 5 ? i + 1 : i;\n\n _insertEase(name + \",Power\" + (power - 1), i ? function (p) {\n return Math.pow(p, power);\n } : function (p) {\n return p;\n }, function (p) {\n return 1 - Math.pow(1 - p, power);\n }, function (p) {\n return p < .5 ? Math.pow(p * 2, power) / 2 : 1 - Math.pow((1 - p) * 2, power) / 2;\n });\n});\n\n_easeMap.Linear.easeNone = _easeMap.none = _easeMap.Linear.easeIn;\n\n_insertEase(\"Elastic\", _configElastic(\"in\"), _configElastic(\"out\"), _configElastic());\n\n(function (n, c) {\n var n1 = 1 / c,\n n2 = 2 * n1,\n n3 = 2.5 * n1,\n easeOut = function easeOut(p) {\n return p < n1 ? n * p * p : p < n2 ? n * Math.pow(p - 1.5 / c, 2) + .75 : p < n3 ? n * (p -= 2.25 / c) * p + .9375 : n * Math.pow(p - 2.625 / c, 2) + .984375;\n };\n\n _insertEase(\"Bounce\", function (p) {\n return 1 - easeOut(1 - p);\n }, easeOut);\n})(7.5625, 2.75);\n\n_insertEase(\"Expo\", function (p) {\n return Math.pow(2, 10 * (p - 1)) * p + p * p * p * p * p * p * (1 - p);\n}); // previously 2 ** (10 * (p - 1)) but that doesn't end up with the value quite at the right spot so we do a blended ease to ensure it lands where it should perfectly.\n\n\n_insertEase(\"Circ\", function (p) {\n return -(_sqrt(1 - p * p) - 1);\n});\n\n_insertEase(\"Sine\", function (p) {\n return p === 1 ? 1 : -_cos(p * _HALF_PI) + 1;\n});\n\n_insertEase(\"Back\", _configBack(\"in\"), _configBack(\"out\"), _configBack());\n\n_easeMap.SteppedEase = _easeMap.steps = _globals.SteppedEase = {\n config: function config(steps, immediateStart) {\n if (steps === void 0) {\n steps = 1;\n }\n\n var p1 = 1 / steps,\n p2 = steps + (immediateStart ? 0 : 1),\n p3 = immediateStart ? 1 : 0,\n max = 1 - _tinyNum;\n return function (p) {\n return ((p2 * _clamp(0, max, p) | 0) + p3) * p1;\n };\n }\n};\n_defaults.ease = _easeMap[\"quad.out\"];\n\n_forEachName(\"onComplete,onUpdate,onStart,onRepeat,onReverseComplete,onInterrupt\", function (name) {\n return _callbackNames += name + \",\" + name + \"Params,\";\n});\n/*\n * --------------------------------------------------------------------------------------\n * CACHE\n * --------------------------------------------------------------------------------------\n */\n\n\nexport var GSCache = function GSCache(target, harness) {\n this.id = _gsID++;\n target._gsap = this;\n this.target = target;\n this.harness = harness;\n this.get = harness ? harness.get : _getProperty;\n this.set = harness ? harness.getSetter : _getSetter;\n};\n/*\n * --------------------------------------------------------------------------------------\n * ANIMATION\n * --------------------------------------------------------------------------------------\n */\n\nexport var Animation = /*#__PURE__*/function () {\n function Animation(vars) {\n this.vars = vars;\n this._delay = +vars.delay || 0;\n\n if (this._repeat = vars.repeat === Infinity ? -2 : vars.repeat || 0) {\n // TODO: repeat: Infinity on a timeline's children must flag that timeline internally and affect its totalDuration, otherwise it'll stop in the negative direction when reaching the start.\n this._rDelay = vars.repeatDelay || 0;\n this._yoyo = !!vars.yoyo || !!vars.yoyoEase;\n }\n\n this._ts = 1;\n\n _setDuration(this, +vars.duration, 1, 1);\n\n this.data = vars.data;\n\n if (_context) {\n this._ctx = _context;\n\n _context.data.push(this);\n }\n\n _tickerActive || _ticker.wake();\n }\n\n var _proto = Animation.prototype;\n\n _proto.delay = function delay(value) {\n if (value || value === 0) {\n this.parent && this.parent.smoothChildTiming && this.startTime(this._start + value - this._delay);\n this._delay = value;\n return this;\n }\n\n return this._delay;\n };\n\n _proto.duration = function duration(value) {\n return arguments.length ? this.totalDuration(this._repeat > 0 ? value + (value + this._rDelay) * this._repeat : value) : this.totalDuration() && this._dur;\n };\n\n _proto.totalDuration = function totalDuration(value) {\n if (!arguments.length) {\n return this._tDur;\n }\n\n this._dirty = 0;\n return _setDuration(this, this._repeat < 0 ? value : (value - this._repeat * this._rDelay) / (this._repeat + 1));\n };\n\n _proto.totalTime = function totalTime(_totalTime, suppressEvents) {\n _wake();\n\n if (!arguments.length) {\n return this._tTime;\n }\n\n var parent = this._dp;\n\n if (parent && parent.smoothChildTiming && this._ts) {\n _alignPlayhead(this, _totalTime);\n\n !parent._dp || parent.parent || _postAddChecks(parent, this); // edge case: if this is a child of a timeline that already completed, for example, we must re-activate the parent.\n //in case any of the ancestor timelines had completed but should now be enabled, we should reset their totalTime() which will also ensure that they're lined up properly and enabled. Skip for animations that are on the root (wasteful). Example: a TimelineLite.exportRoot() is performed when there's a paused tween on the root, the export will not complete until that tween is unpaused, but imagine a child gets restarted later, after all [unpaused] tweens have completed. The start of that child would get pushed out, but one of the ancestors may have completed.\n\n while (parent && parent.parent) {\n if (parent.parent._time !== parent._start + (parent._ts >= 0 ? parent._tTime / parent._ts : (parent.totalDuration() - parent._tTime) / -parent._ts)) {\n parent.totalTime(parent._tTime, true);\n }\n\n parent = parent.parent;\n }\n\n if (!this.parent && this._dp.autoRemoveChildren && (this._ts > 0 && _totalTime < this._tDur || this._ts < 0 && _totalTime > 0 || !this._tDur && !_totalTime)) {\n //if the animation doesn't have a parent, put it back into its last parent (recorded as _dp for exactly cases like this). Limit to parents with autoRemoveChildren (like globalTimeline) so that if the user manually removes an animation from a timeline and then alters its playhead, it doesn't get added back in.\n _addToTimeline(this._dp, this, this._start - this._delay);\n }\n }\n\n if (this._tTime !== _totalTime || !this._dur && !suppressEvents || this._initted && Math.abs(this._zTime) === _tinyNum || !this._initted && this._dur && _totalTime || !_totalTime && !this._initted && (this.add || this._ptLookup)) {\n // check for _ptLookup on a Tween instance to ensure it has actually finished being instantiated, otherwise if this.reverse() gets called in the Animation constructor, it could trigger a render() here even though the _targets weren't populated, thus when _init() is called there won't be any PropTweens (it'll act like the tween is non-functional)\n this._ts || (this._pTime = _totalTime); // otherwise, if an animation is paused, then the playhead is moved back to zero, then resumed, it'd revert back to the original time at the pause\n //if (!this._lock) { // avoid endless recursion (not sure we need this yet or if it's worth the performance hit)\n // this._lock = 1;\n\n _lazySafeRender(this, _totalTime, suppressEvents); // this._lock = 0;\n //}\n\n }\n\n return this;\n };\n\n _proto.time = function time(value, suppressEvents) {\n return arguments.length ? this.totalTime(Math.min(this.totalDuration(), value + _elapsedCycleDuration(this)) % (this._dur + this._rDelay) || (value ? this._dur : 0), suppressEvents) : this._time; // note: if the modulus results in 0, the playhead could be exactly at the end or the beginning, and we always defer to the END with a non-zero value, otherwise if you set the time() to the very end (duration()), it would render at the START!\n };\n\n _proto.totalProgress = function totalProgress(value, suppressEvents) {\n return arguments.length ? this.totalTime(this.totalDuration() * value, suppressEvents) : this.totalDuration() ? Math.min(1, this._tTime / this._tDur) : this.rawTime() >= 0 && this._initted ? 1 : 0;\n };\n\n _proto.progress = function progress(value, suppressEvents) {\n return arguments.length ? this.totalTime(this.duration() * (this._yoyo && !(this.iteration() & 1) ? 1 - value : value) + _elapsedCycleDuration(this), suppressEvents) : this.duration() ? Math.min(1, this._time / this._dur) : this.rawTime() > 0 ? 1 : 0;\n };\n\n _proto.iteration = function iteration(value, suppressEvents) {\n var cycleDuration = this.duration() + this._rDelay;\n\n return arguments.length ? this.totalTime(this._time + (value - 1) * cycleDuration, suppressEvents) : this._repeat ? _animationCycle(this._tTime, cycleDuration) + 1 : 1;\n } // potential future addition:\n // isPlayingBackwards() {\n // \tlet animation = this,\n // \t\torientation = 1; // 1 = forward, -1 = backward\n // \twhile (animation) {\n // \t\torientation *= animation.reversed() || (animation.repeat() && !(animation.iteration() & 1)) ? -1 : 1;\n // \t\tanimation = animation.parent;\n // \t}\n // \treturn orientation < 0;\n // }\n ;\n\n _proto.timeScale = function timeScale(value, suppressEvents) {\n if (!arguments.length) {\n return this._rts === -_tinyNum ? 0 : this._rts; // recorded timeScale. Special case: if someone calls reverse() on an animation with timeScale of 0, we assign it -_tinyNum to remember it's reversed.\n }\n\n if (this._rts === value) {\n return this;\n }\n\n var tTime = this.parent && this._ts ? _parentToChildTotalTime(this.parent._time, this) : this._tTime; // make sure to do the parentToChildTotalTime() BEFORE setting the new _ts because the old one must be used in that calculation.\n // future addition? Up side: fast and minimal file size. Down side: only works on this animation; if a timeline is reversed, for example, its childrens' onReverse wouldn't get called.\n //(+value < 0 && this._rts >= 0) && _callback(this, \"onReverse\", true);\n // prioritize rendering where the parent's playhead lines up instead of this._tTime because there could be a tween that's animating another tween's timeScale in the same rendering loop (same parent), thus if the timeScale tween renders first, it would alter _start BEFORE _tTime was set on that tick (in the rendering loop), effectively freezing it until the timeScale tween finishes.\n\n this._rts = +value || 0;\n this._ts = this._ps || value === -_tinyNum ? 0 : this._rts; // _ts is the functional timeScale which would be 0 if the animation is paused.\n\n this.totalTime(_clamp(-Math.abs(this._delay), this.totalDuration(), tTime), suppressEvents !== false);\n\n _setEnd(this); // if parent.smoothChildTiming was false, the end time didn't get updated in the _alignPlayhead() method, so do it here.\n\n\n return _recacheAncestors(this);\n };\n\n _proto.paused = function paused(value) {\n if (!arguments.length) {\n return this._ps;\n } // possible future addition - if an animation is removed from its parent and then .restart() or .play() or .resume() is called, perhaps we should force it back into the globalTimeline but be careful because what if it's already at its end? We don't want it to just persist forever and not get released for GC.\n // !this.parent && !value && this._tTime < this._tDur && this !== _globalTimeline && _globalTimeline.add(this);\n\n\n if (this._ps !== value) {\n this._ps = value;\n\n if (value) {\n this._pTime = this._tTime || Math.max(-this._delay, this.rawTime()); // if the pause occurs during the delay phase, make sure that's factored in when resuming.\n\n this._ts = this._act = 0; // _ts is the functional timeScale, so a paused tween would effectively have a timeScale of 0. We record the \"real\" timeScale as _rts (recorded time scale)\n } else {\n _wake();\n\n this._ts = this._rts; //only defer to _pTime (pauseTime) if tTime is zero. Remember, someone could pause() an animation, then scrub the playhead and resume(). If the parent doesn't have smoothChildTiming, we render at the rawTime() because the startTime won't get updated.\n\n this.totalTime(this.parent && !this.parent.smoothChildTiming ? this.rawTime() : this._tTime || this._pTime, this.progress() === 1 && Math.abs(this._zTime) !== _tinyNum && (this._tTime -= _tinyNum)); // edge case: animation.progress(1).pause().play() wouldn't render again because the playhead is already at the end, but the call to totalTime() below will add it back to its parent...and not remove it again (since removing only happens upon rendering at a new time). Offsetting the _tTime slightly is done simply to cause the final render in totalTime() that'll pop it off its timeline (if autoRemoveChildren is true, of course). Check to make sure _zTime isn't -_tinyNum to avoid an edge case where the playhead is pushed to the end but INSIDE a tween/callback, the timeline itself is paused thus halting rendering and leaving a few unrendered. When resuming, it wouldn't render those otherwise.\n }\n }\n\n return this;\n };\n\n _proto.startTime = function startTime(value) {\n if (arguments.length) {\n this._start = _roundPrecise(value);\n var parent = this.parent || this._dp;\n parent && (parent._sort || !this.parent) && _addToTimeline(parent, this, this._start - this._delay);\n return this;\n }\n\n return this._start;\n };\n\n _proto.endTime = function endTime(includeRepeats) {\n return this._start + (_isNotFalse(includeRepeats) ? this.totalDuration() : this.duration()) / Math.abs(this._ts || 1);\n };\n\n _proto.rawTime = function rawTime(wrapRepeats) {\n var parent = this.parent || this._dp; // _dp = detached parent\n\n return !parent ? this._tTime : wrapRepeats && (!this._ts || this._repeat && this._time && this.totalProgress() < 1) ? this._tTime % (this._dur + this._rDelay) : !this._ts ? this._tTime : _parentToChildTotalTime(parent.rawTime(wrapRepeats), this);\n };\n\n _proto.revert = function revert(config) {\n if (config === void 0) {\n config = _revertConfig;\n }\n\n var prevIsReverting = _reverting;\n _reverting = config;\n\n if (_isRevertWorthy(this)) {\n this.timeline && this.timeline.revert(config);\n this.totalTime(-0.01, config.suppressEvents);\n }\n\n this.data !== \"nested\" && config.kill !== false && this.kill();\n _reverting = prevIsReverting;\n return this;\n };\n\n _proto.globalTime = function globalTime(rawTime) {\n var animation = this,\n time = arguments.length ? rawTime : animation.rawTime();\n\n while (animation) {\n time = animation._start + time / (Math.abs(animation._ts) || 1);\n animation = animation._dp;\n }\n\n return !this.parent && this._sat ? this._sat.globalTime(rawTime) : time; // the _startAt tweens for .fromTo() and .from() that have immediateRender should always be FIRST in the timeline (important for context.revert()). \"_sat\" stands for _startAtTween, referring to the parent tween that created the _startAt. We must discern if that tween had immediateRender so that we can know whether or not to prioritize it in revert().\n };\n\n _proto.repeat = function repeat(value) {\n if (arguments.length) {\n this._repeat = value === Infinity ? -2 : value;\n return _onUpdateTotalDuration(this);\n }\n\n return this._repeat === -2 ? Infinity : this._repeat;\n };\n\n _proto.repeatDelay = function repeatDelay(value) {\n if (arguments.length) {\n var time = this._time;\n this._rDelay = value;\n\n _onUpdateTotalDuration(this);\n\n return time ? this.time(time) : this;\n }\n\n return this._rDelay;\n };\n\n _proto.yoyo = function yoyo(value) {\n if (arguments.length) {\n this._yoyo = value;\n return this;\n }\n\n return this._yoyo;\n };\n\n _proto.seek = function seek(position, suppressEvents) {\n return this.totalTime(_parsePosition(this, position), _isNotFalse(suppressEvents));\n };\n\n _proto.restart = function restart(includeDelay, suppressEvents) {\n this.play().totalTime(includeDelay ? -this._delay : 0, _isNotFalse(suppressEvents));\n this._dur || (this._zTime = -_tinyNum); // ensures onComplete fires on a zero-duration animation that gets restarted.\n\n return this;\n };\n\n _proto.play = function play(from, suppressEvents) {\n from != null && this.seek(from, suppressEvents);\n return this.reversed(false).paused(false);\n };\n\n _proto.reverse = function reverse(from, suppressEvents) {\n from != null && this.seek(from || this.totalDuration(), suppressEvents);\n return this.reversed(true).paused(false);\n };\n\n _proto.pause = function pause(atTime, suppressEvents) {\n atTime != null && this.seek(atTime, suppressEvents);\n return this.paused(true);\n };\n\n _proto.resume = function resume() {\n return this.paused(false);\n };\n\n _proto.reversed = function reversed(value) {\n if (arguments.length) {\n !!value !== this.reversed() && this.timeScale(-this._rts || (value ? -_tinyNum : 0)); // in case timeScale is zero, reversing would have no effect so we use _tinyNum.\n\n return this;\n }\n\n return this._rts < 0;\n };\n\n _proto.invalidate = function invalidate() {\n this._initted = this._act = 0;\n this._zTime = -_tinyNum;\n return this;\n };\n\n _proto.isActive = function isActive() {\n var parent = this.parent || this._dp,\n start = this._start,\n rawTime;\n return !!(!parent || this._ts && this._initted && parent.isActive() && (rawTime = parent.rawTime(true)) >= start && rawTime < this.endTime(true) - _tinyNum);\n };\n\n _proto.eventCallback = function eventCallback(type, callback, params) {\n var vars = this.vars;\n\n if (arguments.length > 1) {\n if (!callback) {\n delete vars[type];\n } else {\n vars[type] = callback;\n params && (vars[type + \"Params\"] = params);\n type === \"onUpdate\" && (this._onUpdate = callback);\n }\n\n return this;\n }\n\n return vars[type];\n };\n\n _proto.then = function then(onFulfilled) {\n var self = this,\n prevProm = self._prom;\n return new Promise(function (resolve) {\n var f = _isFunction(onFulfilled) ? onFulfilled : _passThrough,\n _resolve = function _resolve() {\n var _then = self.then;\n self.then = null; // temporarily null the then() method to avoid an infinite loop (see https://github.com/greensock/GSAP/issues/322)\n\n prevProm && prevProm();\n _isFunction(f) && (f = f(self)) && (f.then || f === self) && (self.then = _then);\n resolve(f);\n self.then = _then;\n };\n\n if (self._initted && self.totalProgress() === 1 && self._ts >= 0 || !self._tTime && self._ts < 0) {\n _resolve();\n } else {\n self._prom = _resolve;\n }\n });\n };\n\n _proto.kill = function kill() {\n _interrupt(this);\n };\n\n return Animation;\n}();\n\n_setDefaults(Animation.prototype, {\n _time: 0,\n _start: 0,\n _end: 0,\n _tTime: 0,\n _tDur: 0,\n _dirty: 0,\n _repeat: 0,\n _yoyo: false,\n parent: null,\n _initted: false,\n _rDelay: 0,\n _ts: 1,\n _dp: 0,\n ratio: 0,\n _zTime: -_tinyNum,\n _prom: 0,\n _ps: false,\n _rts: 1\n});\n/*\n * -------------------------------------------------\n * TIMELINE\n * -------------------------------------------------\n */\n\n\nexport var Timeline = /*#__PURE__*/function (_Animation) {\n _inheritsLoose(Timeline, _Animation);\n\n function Timeline(vars, position) {\n var _this;\n\n if (vars === void 0) {\n vars = {};\n }\n\n _this = _Animation.call(this, vars) || this;\n _this.labels = {};\n _this.smoothChildTiming = !!vars.smoothChildTiming;\n _this.autoRemoveChildren = !!vars.autoRemoveChildren;\n _this._sort = _isNotFalse(vars.sortChildren);\n _globalTimeline && _addToTimeline(vars.parent || _globalTimeline, _assertThisInitialized(_this), position);\n vars.reversed && _this.reverse();\n vars.paused && _this.paused(true);\n vars.scrollTrigger && _scrollTrigger(_assertThisInitialized(_this), vars.scrollTrigger);\n return _this;\n }\n\n var _proto2 = Timeline.prototype;\n\n _proto2.to = function to(targets, vars, position) {\n _createTweenType(0, arguments, this);\n\n return this;\n };\n\n _proto2.from = function from(targets, vars, position) {\n _createTweenType(1, arguments, this);\n\n return this;\n };\n\n _proto2.fromTo = function fromTo(targets, fromVars, toVars, position) {\n _createTweenType(2, arguments, this);\n\n return this;\n };\n\n _proto2.set = function set(targets, vars, position) {\n vars.duration = 0;\n vars.parent = this;\n _inheritDefaults(vars).repeatDelay || (vars.repeat = 0);\n vars.immediateRender = !!vars.immediateRender;\n new Tween(targets, vars, _parsePosition(this, position), 1);\n return this;\n };\n\n _proto2.call = function call(callback, params, position) {\n return _addToTimeline(this, Tween.delayedCall(0, callback, params), position);\n } //ONLY for backward compatibility! Maybe delete?\n ;\n\n _proto2.staggerTo = function staggerTo(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams) {\n vars.duration = duration;\n vars.stagger = vars.stagger || stagger;\n vars.onComplete = onCompleteAll;\n vars.onCompleteParams = onCompleteAllParams;\n vars.parent = this;\n new Tween(targets, vars, _parsePosition(this, position));\n return this;\n };\n\n _proto2.staggerFrom = function staggerFrom(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams) {\n vars.runBackwards = 1;\n _inheritDefaults(vars).immediateRender = _isNotFalse(vars.immediateRender);\n return this.staggerTo(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams);\n };\n\n _proto2.staggerFromTo = function staggerFromTo(targets, duration, fromVars, toVars, stagger, position, onCompleteAll, onCompleteAllParams) {\n toVars.startAt = fromVars;\n _inheritDefaults(toVars).immediateRender = _isNotFalse(toVars.immediateRender);\n return this.staggerTo(targets, duration, toVars, stagger, position, onCompleteAll, onCompleteAllParams);\n };\n\n _proto2.render = function render(totalTime, suppressEvents, force) {\n var prevTime = this._time,\n tDur = this._dirty ? this.totalDuration() : this._tDur,\n dur = this._dur,\n tTime = totalTime <= 0 ? 0 : _roundPrecise(totalTime),\n // if a paused timeline is resumed (or its _start is updated for another reason...which rounds it), that could result in the playhead shifting a **tiny** amount and a zero-duration child at that spot may get rendered at a different ratio, like its totalTime in render() may be 1e-17 instead of 0, for example.\n crossingStart = this._zTime < 0 !== totalTime < 0 && (this._initted || !dur),\n time,\n child,\n next,\n iteration,\n cycleDuration,\n prevPaused,\n pauseTween,\n timeScale,\n prevStart,\n prevIteration,\n yoyo,\n isYoyo;\n this !== _globalTimeline && tTime > tDur && totalTime >= 0 && (tTime = tDur);\n\n if (tTime !== this._tTime || force || crossingStart) {\n if (prevTime !== this._time && dur) {\n //if totalDuration() finds a child with a negative startTime and smoothChildTiming is true, things get shifted around internally so we need to adjust the time accordingly. For example, if a tween starts at -30 we must shift EVERYTHING forward 30 seconds and move this timeline's startTime backward by 30 seconds so that things align with the playhead (no jump).\n tTime += this._time - prevTime;\n totalTime += this._time - prevTime;\n }\n\n time = tTime;\n prevStart = this._start;\n timeScale = this._ts;\n prevPaused = !timeScale;\n\n if (crossingStart) {\n dur || (prevTime = this._zTime); //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect.\n\n (totalTime || !suppressEvents) && (this._zTime = totalTime);\n }\n\n if (this._repeat) {\n //adjust the time for repeats and yoyos\n yoyo = this._yoyo;\n cycleDuration = dur + this._rDelay;\n\n if (this._repeat < -1 && totalTime < 0) {\n return this.totalTime(cycleDuration * 100 + totalTime, suppressEvents, force);\n }\n\n time = _roundPrecise(tTime % cycleDuration); //round to avoid floating point errors. (4 % 0.8 should be 0 but some browsers report it as 0.79999999!)\n\n if (tTime === tDur) {\n // the tDur === tTime is for edge cases where there's a lengthy decimal on the duration and it may reach the very end but the time is rendered as not-quite-there (remember, tDur is rounded to 4 decimals whereas dur isn't)\n iteration = this._repeat;\n time = dur;\n } else {\n prevIteration = _roundPrecise(tTime / cycleDuration); // full decimal version of iterations, not the previous iteration (we're reusing prevIteration variable for efficiency)\n\n iteration = ~~prevIteration;\n\n if (iteration && iteration === prevIteration) {\n time = dur;\n iteration--;\n }\n\n time > dur && (time = dur);\n }\n\n prevIteration = _animationCycle(this._tTime, cycleDuration);\n !prevTime && this._tTime && prevIteration !== iteration && this._tTime - prevIteration * cycleDuration - this._dur <= 0 && (prevIteration = iteration); // edge case - if someone does addPause() at the very beginning of a repeating timeline, that pause is technically at the same spot as the end which causes this._time to get set to 0 when the totalTime would normally place the playhead at the end. See https://gsap.com/forums/topic/23823-closing-nav-animation-not-working-on-ie-and-iphone-6-maybe-other-older-browser/?tab=comments#comment-113005 also, this._tTime - prevIteration * cycleDuration - this._dur <= 0 just checks to make sure it wasn't previously in the \"repeatDelay\" portion\n\n if (yoyo && iteration & 1) {\n time = dur - time;\n isYoyo = 1;\n }\n /*\n make sure children at the end/beginning of the timeline are rendered properly. If, for example,\n a 3-second long timeline rendered at 2.9 seconds previously, and now renders at 3.2 seconds (which\n would get translated to 2.8 seconds if the timeline yoyos or 0.2 seconds if it just repeats), there\n could be a callback or a short tween that's at 2.95 or 3 seconds in which wouldn't render. So\n we need to push the timeline to the end (and/or beginning depending on its yoyo value). Also we must\n ensure that zero-duration tweens at the very beginning or end of the Timeline work.\n */\n\n\n if (iteration !== prevIteration && !this._lock) {\n var rewinding = yoyo && prevIteration & 1,\n doesWrap = rewinding === (yoyo && iteration & 1);\n iteration < prevIteration && (rewinding = !rewinding);\n prevTime = rewinding ? 0 : tTime % dur ? dur : tTime; // if the playhead is landing exactly at the end of an iteration, use that totalTime rather than only the duration, otherwise it'll skip the 2nd render since it's effectively at the same time.\n\n this._lock = 1;\n this.render(prevTime || (isYoyo ? 0 : _roundPrecise(iteration * cycleDuration)), suppressEvents, !dur)._lock = 0;\n this._tTime = tTime; // if a user gets the iteration() inside the onRepeat, for example, it should be accurate.\n\n !suppressEvents && this.parent && _callback(this, \"onRepeat\");\n\n if (this.vars.repeatRefresh && !isYoyo) {\n this.invalidate()._lock = 1;\n prevIteration = iteration; // otherwise, the onStart() may fire on the 2nd iteration.\n }\n\n if (prevTime && prevTime !== this._time || prevPaused !== !this._ts || this.vars.onRepeat && !this.parent && !this._act) {\n // if prevTime is 0 and we render at the very end, _time will be the end, thus won't match. So in this edge case, prevTime won't match _time but that's okay. If it gets killed in the onRepeat, eject as well.\n return this;\n }\n\n dur = this._dur; // in case the duration changed in the onRepeat\n\n tDur = this._tDur;\n\n if (doesWrap) {\n this._lock = 2;\n prevTime = rewinding ? dur : -0.0001;\n this.render(prevTime, true);\n this.vars.repeatRefresh && !isYoyo && this.invalidate();\n }\n\n this._lock = 0;\n\n if (!this._ts && !prevPaused) {\n return this;\n }\n }\n }\n\n if (this._hasPause && !this._forcing && this._lock < 2) {\n pauseTween = _findNextPauseTween(this, _roundPrecise(prevTime), _roundPrecise(time));\n\n if (pauseTween) {\n tTime -= time - (time = pauseTween._start);\n }\n }\n\n this._tTime = tTime;\n this._time = time;\n this._act = !!timeScale; // as long as it's not paused, force it to be active so that if the user renders independent of the parent timeline, it'll be forced to re-render on the next tick.\n\n if (!this._initted) {\n this._onUpdate = this.vars.onUpdate;\n this._initted = 1;\n this._zTime = totalTime;\n prevTime = 0; // upon init, the playhead should always go forward; someone could invalidate() a completed timeline and then if they restart(), that would make child tweens render in reverse order which could lock in the wrong starting values if they build on each other, like tl.to(obj, {x: 100}).to(obj, {x: 0}).\n }\n\n if (!prevTime && tTime && dur && !suppressEvents && !prevIteration) {\n _callback(this, \"onStart\");\n\n if (this._tTime !== tTime) {\n // in case the onStart triggered a render at a different spot, eject. Like if someone did animation.pause(0.5) or something inside the onStart.\n return this;\n }\n }\n\n if (time >= prevTime && totalTime >= 0) {\n child = this._first;\n\n while (child) {\n next = child._next;\n\n if ((child._act || time >= child._start) && child._ts && pauseTween !== child) {\n if (child.parent !== this) {\n // an extreme edge case - the child's render could do something like kill() the \"next\" one in the linked list, or reparent it. In that case we must re-initiate the whole render to be safe.\n return this.render(totalTime, suppressEvents, force);\n }\n\n child.render(child._ts > 0 ? (time - child._start) * child._ts : (child._dirty ? child.totalDuration() : child._tDur) + (time - child._start) * child._ts, suppressEvents, force);\n\n if (time !== this._time || !this._ts && !prevPaused) {\n //in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete\n pauseTween = 0;\n next && (tTime += this._zTime = -_tinyNum); // it didn't finish rendering, so flag zTime as negative so that the next time render() is called it'll be forced (to render any remaining children)\n\n break;\n }\n }\n\n child = next;\n }\n } else {\n child = this._last;\n var adjustedTime = totalTime < 0 ? totalTime : time; //when the playhead goes backward beyond the start of this timeline, we must pass that information down to the child animations so that zero-duration tweens know whether to render their starting or ending values.\n\n while (child) {\n next = child._prev;\n\n if ((child._act || adjustedTime <= child._end) && child._ts && pauseTween !== child) {\n if (child.parent !== this) {\n // an extreme edge case - the child's render could do something like kill() the \"next\" one in the linked list, or reparent it. In that case we must re-initiate the whole render to be safe.\n return this.render(totalTime, suppressEvents, force);\n }\n\n child.render(child._ts > 0 ? (adjustedTime - child._start) * child._ts : (child._dirty ? child.totalDuration() : child._tDur) + (adjustedTime - child._start) * child._ts, suppressEvents, force || _reverting && _isRevertWorthy(child)); // if reverting, we should always force renders of initted tweens (but remember that .fromTo() or .from() may have a _startAt but not _initted yet). If, for example, a .fromTo() tween with a stagger (which creates an internal timeline) gets reverted BEFORE some of its child tweens render for the first time, it may not properly trigger them to revert.\n\n if (time !== this._time || !this._ts && !prevPaused) {\n //in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete\n pauseTween = 0;\n next && (tTime += this._zTime = adjustedTime ? -_tinyNum : _tinyNum); // it didn't finish rendering, so adjust zTime so that so that the next time render() is called it'll be forced (to render any remaining children)\n\n break;\n }\n }\n\n child = next;\n }\n }\n\n if (pauseTween && !suppressEvents) {\n this.pause();\n pauseTween.render(time >= prevTime ? 0 : -_tinyNum)._zTime = time >= prevTime ? 1 : -1;\n\n if (this._ts) {\n //the callback resumed playback! So since we may have held back the playhead due to where the pause is positioned, go ahead and jump to where it's SUPPOSED to be (if no pause happened).\n this._start = prevStart; //if the pause was at an earlier time and the user resumed in the callback, it could reposition the timeline (changing its startTime), throwing things off slightly, so we make sure the _start doesn't shift.\n\n _setEnd(this);\n\n return this.render(totalTime, suppressEvents, force);\n }\n }\n\n this._onUpdate && !suppressEvents && _callback(this, \"onUpdate\", true);\n if (tTime === tDur && this._tTime >= this.totalDuration() || !tTime && prevTime) if (prevStart === this._start || Math.abs(timeScale) !== Math.abs(this._ts)) if (!this._lock) {\n // remember, a child's callback may alter this timeline's playhead or timeScale which is why we need to add some of these checks.\n (totalTime || !dur) && (tTime === tDur && this._ts > 0 || !tTime && this._ts < 0) && _removeFromParent(this, 1); // don't remove if the timeline is reversed and the playhead isn't at 0, otherwise tl.progress(1).reverse() won't work. Only remove if the playhead is at the end and timeScale is positive, or if the playhead is at 0 and the timeScale is negative.\n\n if (!suppressEvents && !(totalTime < 0 && !prevTime) && (tTime || prevTime || !tDur)) {\n _callback(this, tTime === tDur && totalTime >= 0 ? \"onComplete\" : \"onReverseComplete\", true);\n\n this._prom && !(tTime < tDur && this.timeScale() > 0) && this._prom();\n }\n }\n }\n\n return this;\n };\n\n _proto2.add = function add(child, position) {\n var _this2 = this;\n\n _isNumber(position) || (position = _parsePosition(this, position, child));\n\n if (!(child instanceof Animation)) {\n if (_isArray(child)) {\n child.forEach(function (obj) {\n return _this2.add(obj, position);\n });\n return this;\n }\n\n if (_isString(child)) {\n return this.addLabel(child, position);\n }\n\n if (_isFunction(child)) {\n child = Tween.delayedCall(0, child);\n } else {\n return this;\n }\n }\n\n return this !== child ? _addToTimeline(this, child, position) : this; //don't allow a timeline to be added to itself as a child!\n };\n\n _proto2.getChildren = function getChildren(nested, tweens, timelines, ignoreBeforeTime) {\n if (nested === void 0) {\n nested = true;\n }\n\n if (tweens === void 0) {\n tweens = true;\n }\n\n if (timelines === void 0) {\n timelines = true;\n }\n\n if (ignoreBeforeTime === void 0) {\n ignoreBeforeTime = -_bigNum;\n }\n\n var a = [],\n child = this._first;\n\n while (child) {\n if (child._start >= ignoreBeforeTime) {\n if (child instanceof Tween) {\n tweens && a.push(child);\n } else {\n timelines && a.push(child);\n nested && a.push.apply(a, child.getChildren(true, tweens, timelines));\n }\n }\n\n child = child._next;\n }\n\n return a;\n };\n\n _proto2.getById = function getById(id) {\n var animations = this.getChildren(1, 1, 1),\n i = animations.length;\n\n while (i--) {\n if (animations[i].vars.id === id) {\n return animations[i];\n }\n }\n };\n\n _proto2.remove = function remove(child) {\n if (_isString(child)) {\n return this.removeLabel(child);\n }\n\n if (_isFunction(child)) {\n return this.killTweensOf(child);\n }\n\n child.parent === this && _removeLinkedListItem(this, child);\n\n if (child === this._recent) {\n this._recent = this._last;\n }\n\n return _uncache(this);\n };\n\n _proto2.totalTime = function totalTime(_totalTime2, suppressEvents) {\n if (!arguments.length) {\n return this._tTime;\n }\n\n this._forcing = 1;\n\n if (!this._dp && this._ts) {\n //special case for the global timeline (or any other that has no parent or detached parent).\n this._start = _roundPrecise(_ticker.time - (this._ts > 0 ? _totalTime2 / this._ts : (this.totalDuration() - _totalTime2) / -this._ts));\n }\n\n _Animation.prototype.totalTime.call(this, _totalTime2, suppressEvents);\n\n this._forcing = 0;\n return this;\n };\n\n _proto2.addLabel = function addLabel(label, position) {\n this.labels[label] = _parsePosition(this, position);\n return this;\n };\n\n _proto2.removeLabel = function removeLabel(label) {\n delete this.labels[label];\n return this;\n };\n\n _proto2.addPause = function addPause(position, callback, params) {\n var t = Tween.delayedCall(0, callback || _emptyFunc, params);\n t.data = \"isPause\";\n this._hasPause = 1;\n return _addToTimeline(this, t, _parsePosition(this, position));\n };\n\n _proto2.removePause = function removePause(position) {\n var child = this._first;\n position = _parsePosition(this, position);\n\n while (child) {\n if (child._start === position && child.data === \"isPause\") {\n _removeFromParent(child);\n }\n\n child = child._next;\n }\n };\n\n _proto2.killTweensOf = function killTweensOf(targets, props, onlyActive) {\n var tweens = this.getTweensOf(targets, onlyActive),\n i = tweens.length;\n\n while (i--) {\n _overwritingTween !== tweens[i] && tweens[i].kill(targets, props);\n }\n\n return this;\n };\n\n _proto2.getTweensOf = function getTweensOf(targets, onlyActive) {\n var a = [],\n parsedTargets = toArray(targets),\n child = this._first,\n isGlobalTime = _isNumber(onlyActive),\n // a number is interpreted as a global time. If the animation spans\n children;\n\n while (child) {\n if (child instanceof Tween) {\n if (_arrayContainsAny(child._targets, parsedTargets) && (isGlobalTime ? (!_overwritingTween || child._initted && child._ts) && child.globalTime(0) <= onlyActive && child.globalTime(child.totalDuration()) > onlyActive : !onlyActive || child.isActive())) {\n // note: if this is for overwriting, it should only be for tweens that aren't paused and are initted.\n a.push(child);\n }\n } else if ((children = child.getTweensOf(parsedTargets, onlyActive)).length) {\n a.push.apply(a, children);\n }\n\n child = child._next;\n }\n\n return a;\n } // potential future feature - targets() on timelines\n // targets() {\n // \tlet result = [];\n // \tthis.getChildren(true, true, false).forEach(t => result.push(...t.targets()));\n // \treturn result.filter((v, i) => result.indexOf(v) === i);\n // }\n ;\n\n _proto2.tweenTo = function tweenTo(position, vars) {\n vars = vars || {};\n\n var tl = this,\n endTime = _parsePosition(tl, position),\n _vars = vars,\n startAt = _vars.startAt,\n _onStart = _vars.onStart,\n onStartParams = _vars.onStartParams,\n immediateRender = _vars.immediateRender,\n initted,\n tween = Tween.to(tl, _setDefaults({\n ease: vars.ease || \"none\",\n lazy: false,\n immediateRender: false,\n time: endTime,\n overwrite: \"auto\",\n duration: vars.duration || Math.abs((endTime - (startAt && \"time\" in startAt ? startAt.time : tl._time)) / tl.timeScale()) || _tinyNum,\n onStart: function onStart() {\n tl.pause();\n\n if (!initted) {\n var duration = vars.duration || Math.abs((endTime - (startAt && \"time\" in startAt ? startAt.time : tl._time)) / tl.timeScale());\n tween._dur !== duration && _setDuration(tween, duration, 0, 1).render(tween._time, true, true);\n initted = 1;\n }\n\n _onStart && _onStart.apply(tween, onStartParams || []); //in case the user had an onStart in the vars - we don't want to overwrite it.\n }\n }, vars));\n\n return immediateRender ? tween.render(0) : tween;\n };\n\n _proto2.tweenFromTo = function tweenFromTo(fromPosition, toPosition, vars) {\n return this.tweenTo(toPosition, _setDefaults({\n startAt: {\n time: _parsePosition(this, fromPosition)\n }\n }, vars));\n };\n\n _proto2.recent = function recent() {\n return this._recent;\n };\n\n _proto2.nextLabel = function nextLabel(afterTime) {\n if (afterTime === void 0) {\n afterTime = this._time;\n }\n\n return _getLabelInDirection(this, _parsePosition(this, afterTime));\n };\n\n _proto2.previousLabel = function previousLabel(beforeTime) {\n if (beforeTime === void 0) {\n beforeTime = this._time;\n }\n\n return _getLabelInDirection(this, _parsePosition(this, beforeTime), 1);\n };\n\n _proto2.currentLabel = function currentLabel(value) {\n return arguments.length ? this.seek(value, true) : this.previousLabel(this._time + _tinyNum);\n };\n\n _proto2.shiftChildren = function shiftChildren(amount, adjustLabels, ignoreBeforeTime) {\n if (ignoreBeforeTime === void 0) {\n ignoreBeforeTime = 0;\n }\n\n var child = this._first,\n labels = this.labels,\n p;\n amount = _roundPrecise(amount);\n\n while (child) {\n if (child._start >= ignoreBeforeTime) {\n child._start += amount;\n child._end += amount;\n }\n\n child = child._next;\n }\n\n if (adjustLabels) {\n for (p in labels) {\n if (labels[p] >= ignoreBeforeTime) {\n labels[p] += amount;\n }\n }\n }\n\n return _uncache(this);\n };\n\n _proto2.invalidate = function invalidate(soft) {\n var child = this._first;\n this._lock = 0;\n\n while (child) {\n child.invalidate(soft);\n child = child._next;\n }\n\n return _Animation.prototype.invalidate.call(this, soft);\n };\n\n _proto2.clear = function clear(includeLabels) {\n if (includeLabels === void 0) {\n includeLabels = true;\n }\n\n var child = this._first,\n next;\n\n while (child) {\n next = child._next;\n this.remove(child);\n child = next;\n }\n\n this._dp && (this._time = this._tTime = this._pTime = 0);\n includeLabels && (this.labels = {});\n return _uncache(this);\n };\n\n _proto2.totalDuration = function totalDuration(value) {\n var max = 0,\n self = this,\n child = self._last,\n prevStart = _bigNum,\n prev,\n start,\n parent;\n\n if (arguments.length) {\n return self.timeScale((self._repeat < 0 ? self.duration() : self.totalDuration()) / (self.reversed() ? -value : value));\n }\n\n if (self._dirty) {\n parent = self.parent;\n\n while (child) {\n prev = child._prev; //record it here in case the tween changes position in the sequence...\n\n child._dirty && child.totalDuration(); //could change the tween._startTime, so make sure the animation's cache is clean before analyzing it.\n\n start = child._start;\n\n if (start > prevStart && self._sort && child._ts && !self._lock) {\n //in case one of the tweens shifted out of order, it needs to be re-inserted into the correct position in the sequence\n self._lock = 1; //prevent endless recursive calls - there are methods that get triggered that check duration/totalDuration when we add().\n\n _addToTimeline(self, child, start - child._delay, 1)._lock = 0;\n } else {\n prevStart = start;\n }\n\n if (start < 0 && child._ts) {\n //children aren't allowed to have negative startTimes unless smoothChildTiming is true, so adjust here if one is found.\n max -= start;\n\n if (!parent && !self._dp || parent && parent.smoothChildTiming) {\n self._start += _roundPrecise(start / self._ts);\n self._time -= start;\n self._tTime -= start;\n }\n\n self.shiftChildren(-start, false, -1e999);\n prevStart = 0;\n }\n\n child._end > max && child._ts && (max = child._end);\n child = prev;\n }\n\n _setDuration(self, self === _globalTimeline && self._time > max ? self._time : max, 1, 1);\n\n self._dirty = 0;\n }\n\n return self._tDur;\n };\n\n Timeline.updateRoot = function updateRoot(time) {\n if (_globalTimeline._ts) {\n _lazySafeRender(_globalTimeline, _parentToChildTotalTime(time, _globalTimeline));\n\n _lastRenderedFrame = _ticker.frame;\n }\n\n if (_ticker.frame >= _nextGCFrame) {\n _nextGCFrame += _config.autoSleep || 120;\n var child = _globalTimeline._first;\n if (!child || !child._ts) if (_config.autoSleep && _ticker._listeners.length < 2) {\n while (child && !child._ts) {\n child = child._next;\n }\n\n child || _ticker.sleep();\n }\n }\n };\n\n return Timeline;\n}(Animation);\n\n_setDefaults(Timeline.prototype, {\n _lock: 0,\n _hasPause: 0,\n _forcing: 0\n});\n\nvar _addComplexStringPropTween = function _addComplexStringPropTween(target, prop, start, end, setter, stringFilter, funcParam) {\n //note: we call _addComplexStringPropTween.call(tweenInstance...) to ensure that it's scoped properly. We may call it from within a plugin too, thus \"this\" would refer to the plugin.\n var pt = new PropTween(this._pt, target, prop, 0, 1, _renderComplexString, null, setter),\n index = 0,\n matchIndex = 0,\n result,\n startNums,\n color,\n endNum,\n chunk,\n startNum,\n hasRandom,\n a;\n pt.b = start;\n pt.e = end;\n start += \"\"; //ensure values are strings\n\n end += \"\";\n\n if (hasRandom = ~end.indexOf(\"random(\")) {\n end = _replaceRandom(end);\n }\n\n if (stringFilter) {\n a = [start, end];\n stringFilter(a, target, prop); //pass an array with the starting and ending values and let the filter do whatever it needs to the values.\n\n start = a[0];\n end = a[1];\n }\n\n startNums = start.match(_complexStringNumExp) || [];\n\n while (result = _complexStringNumExp.exec(end)) {\n endNum = result[0];\n chunk = end.substring(index, result.index);\n\n if (color) {\n color = (color + 1) % 5;\n } else if (chunk.substr(-5) === \"rgba(\") {\n color = 1;\n }\n\n if (endNum !== startNums[matchIndex++]) {\n startNum = parseFloat(startNums[matchIndex - 1]) || 0; //these nested PropTweens are handled in a special way - we'll never actually call a render or setter method on them. We'll just loop through them in the parent complex string PropTween's render method.\n\n pt._pt = {\n _next: pt._pt,\n p: chunk || matchIndex === 1 ? chunk : \",\",\n //note: SVG spec allows omission of comma/space when a negative sign is wedged between two numbers, like 2.5-5.3 instead of 2.5,-5.3 but when tweening, the negative value may switch to positive, so we insert the comma just in case.\n s: startNum,\n c: endNum.charAt(1) === \"=\" ? _parseRelative(startNum, endNum) - startNum : parseFloat(endNum) - startNum,\n m: color && color < 4 ? Math.round : 0\n };\n index = _complexStringNumExp.lastIndex;\n }\n }\n\n pt.c = index < end.length ? end.substring(index, end.length) : \"\"; //we use the \"c\" of the PropTween to store the final part of the string (after the last number)\n\n pt.fp = funcParam;\n\n if (_relExp.test(end) || hasRandom) {\n pt.e = 0; //if the end string contains relative values or dynamic random(...) values, delete the end it so that on the final render we don't actually set it to the string with += or -= characters (forces it to use the calculated value).\n }\n\n this._pt = pt; //start the linked list with this new PropTween. Remember, we call _addComplexStringPropTween.call(tweenInstance...) to ensure that it's scoped properly. We may call it from within a plugin too, thus \"this\" would refer to the plugin.\n\n return pt;\n},\n _addPropTween = function _addPropTween(target, prop, start, end, index, targets, modifier, stringFilter, funcParam, optional) {\n _isFunction(end) && (end = end(index || 0, target, targets));\n var currentValue = target[prop],\n parsedStart = start !== \"get\" ? start : !_isFunction(currentValue) ? currentValue : funcParam ? target[prop.indexOf(\"set\") || !_isFunction(target[\"get\" + prop.substr(3)]) ? prop : \"get\" + prop.substr(3)](funcParam) : target[prop](),\n setter = !_isFunction(currentValue) ? _setterPlain : funcParam ? _setterFuncWithParam : _setterFunc,\n pt;\n\n if (_isString(end)) {\n if (~end.indexOf(\"random(\")) {\n end = _replaceRandom(end);\n }\n\n if (end.charAt(1) === \"=\") {\n pt = _parseRelative(parsedStart, end) + (getUnit(parsedStart) || 0);\n\n if (pt || pt === 0) {\n // to avoid isNaN, like if someone passes in a value like \"!= whatever\"\n end = pt;\n }\n }\n }\n\n if (!optional || parsedStart !== end || _forceAllPropTweens) {\n if (!isNaN(parsedStart * end) && end !== \"\") {\n // fun fact: any number multiplied by \"\" is evaluated as the number 0!\n pt = new PropTween(this._pt, target, prop, +parsedStart || 0, end - (parsedStart || 0), typeof currentValue === \"boolean\" ? _renderBoolean : _renderPlain, 0, setter);\n funcParam && (pt.fp = funcParam);\n modifier && pt.modifier(modifier, this, target);\n return this._pt = pt;\n }\n\n !currentValue && !(prop in target) && _missingPlugin(prop, end);\n return _addComplexStringPropTween.call(this, target, prop, parsedStart, end, setter, stringFilter || _config.stringFilter, funcParam);\n }\n},\n //creates a copy of the vars object and processes any function-based values (putting the resulting values directly into the copy) as well as strings with \"random()\" in them. It does NOT process relative values.\n_processVars = function _processVars(vars, index, target, targets, tween) {\n _isFunction(vars) && (vars = _parseFuncOrString(vars, tween, index, target, targets));\n\n if (!_isObject(vars) || vars.style && vars.nodeType || _isArray(vars) || _isTypedArray(vars)) {\n return _isString(vars) ? _parseFuncOrString(vars, tween, index, target, targets) : vars;\n }\n\n var copy = {},\n p;\n\n for (p in vars) {\n copy[p] = _parseFuncOrString(vars[p], tween, index, target, targets);\n }\n\n return copy;\n},\n _checkPlugin = function _checkPlugin(property, vars, tween, index, target, targets) {\n var plugin, pt, ptLookup, i;\n\n if (_plugins[property] && (plugin = new _plugins[property]()).init(target, plugin.rawVars ? vars[property] : _processVars(vars[property], index, target, targets, tween), tween, index, targets) !== false) {\n tween._pt = pt = new PropTween(tween._pt, target, property, 0, 1, plugin.render, plugin, 0, plugin.priority);\n\n if (tween !== _quickTween) {\n ptLookup = tween._ptLookup[tween._targets.indexOf(target)]; //note: we can't use tween._ptLookup[index] because for staggered tweens, the index from the fullTargets array won't match what it is in each individual tween that spawns from the stagger.\n\n i = plugin._props.length;\n\n while (i--) {\n ptLookup[plugin._props[i]] = pt;\n }\n }\n }\n\n return plugin;\n},\n _overwritingTween,\n //store a reference temporarily so we can avoid overwriting itself.\n_forceAllPropTweens,\n _initTween = function _initTween(tween, time, tTime) {\n var vars = tween.vars,\n ease = vars.ease,\n startAt = vars.startAt,\n immediateRender = vars.immediateRender,\n lazy = vars.lazy,\n onUpdate = vars.onUpdate,\n runBackwards = vars.runBackwards,\n yoyoEase = vars.yoyoEase,\n keyframes = vars.keyframes,\n autoRevert = vars.autoRevert,\n dur = tween._dur,\n prevStartAt = tween._startAt,\n targets = tween._targets,\n parent = tween.parent,\n fullTargets = parent && parent.data === \"nested\" ? parent.vars.targets : targets,\n autoOverwrite = tween._overwrite === \"auto\" && !_suppressOverwrites,\n tl = tween.timeline,\n reverseEase = vars.easeReverse || yoyoEase,\n cleanVars,\n i,\n p,\n pt,\n target,\n hasPriority,\n gsData,\n harness,\n plugin,\n ptLookup,\n index,\n harnessVars,\n overwritten;\n tl && (!keyframes || !ease) && (ease = \"none\");\n tween._ease = _parseEase(ease, _defaults.ease);\n tween._rEase = reverseEase && (_parseEase(reverseEase) || tween._ease);\n tween._from = !tl && !!vars.runBackwards; //nested timelines should never run backwards - the backwards-ness is in the child tweens.\n\n if (tween._from) tween.ratio = 1;\n\n if (!tl || keyframes && !vars.stagger) {\n //if there's an internal timeline, skip all the parsing because we passed that task down the chain.\n harness = targets[0] ? _getCache(targets[0]).harness : 0;\n harnessVars = harness && vars[harness.prop]; //someone may need to specify CSS-specific values AND non-CSS values, like if the element has an \"x\" property plus it's a standard DOM element. We allow people to distinguish by wrapping plugin-specific stuff in a css:{} object for example.\n\n cleanVars = _copyExcluding(vars, _reservedProps);\n\n if (prevStartAt) {\n prevStartAt._zTime < 0 && prevStartAt.progress(1); // in case it's a lazy startAt that hasn't rendered yet.\n\n time < 0 && runBackwards && immediateRender && !autoRevert ? prevStartAt.render(-1, true) : prevStartAt.revert(runBackwards && dur ? _revertConfigNoKill : _startAtRevertConfig); // if it's a \"startAt\" (not \"from()\" or runBackwards: true), we only need to do a shallow revert (keep transforms cached in CSSPlugin)\n // don't just _removeFromParent(prevStartAt.render(-1, true)) because that'll leave inline styles. We're creating a new _startAt for \"startAt\" tweens that re-capture things to ensure that if the pre-tween values changed since the tween was created, they're recorded.\n\n prevStartAt._lazy = 0;\n }\n\n if (startAt) {\n _removeFromParent(tween._startAt = Tween.set(targets, _setDefaults({\n data: \"isStart\",\n overwrite: false,\n parent: parent,\n immediateRender: true,\n lazy: !prevStartAt && _isNotFalse(lazy),\n startAt: null,\n delay: 0,\n onUpdate: onUpdate && function () {\n return _callback(tween, \"onUpdate\");\n },\n stagger: 0\n }, startAt))); //copy the properties/values into a new object to avoid collisions, like var to = {x:0}, from = {x:500}; timeline.fromTo(e, from, to).fromTo(e, to, from);\n\n\n tween._startAt._dp = 0; // don't allow it to get put back into root timeline! Like when revert() is called and totalTime() gets set.\n\n tween._startAt._sat = tween; // used in globalTime(). _sat stands for _startAtTween\n\n time < 0 && (_reverting || !immediateRender && !autoRevert) && tween._startAt.revert(_revertConfigNoKill); // rare edge case, like if a render is forced in the negative direction of a non-initted tween.\n\n if (immediateRender) {\n if (dur && time <= 0 && tTime <= 0) {\n // check tTime here because in the case of a yoyo tween whose playhead gets pushed to the end like tween.progress(1), we should allow it through so that the onComplete gets fired properly.\n time && (tween._zTime = time);\n return; //we skip initialization here so that overwriting doesn't occur until the tween actually begins. Otherwise, if you create several immediateRender:true tweens of the same target/properties to drop into a Timeline, the last one created would overwrite the first ones because they didn't get placed into the timeline yet before the first render occurs and kicks in overwriting.\n }\n }\n } else if (runBackwards && dur) {\n // from() tweens must be handled uniquely: their beginning values must be rendered but we don't want overwriting to occur yet (when time is still 0). Wait until the tween actually begins before doing all the routines like overwriting. At that time, we should render at the END of the tween to ensure that things initialize correctly (remember, from() tweens go backwards)\n if (!prevStartAt) {\n time && (immediateRender = false); //in rare cases (like if a from() tween runs and then is invalidate()-ed), immediateRender could be true but the initial forced-render gets skipped, so there's no need to force the render in this context when the _time is greater than 0\n\n p = _setDefaults({\n overwrite: false,\n data: \"isFromStart\",\n //we tag the tween with as \"isFromStart\" so that if [inside a plugin] we need to only do something at the very END of a tween, we have a way of identifying this tween as merely the one that's setting the beginning values for a \"from()\" tween. For example, clearProps in CSSPlugin should only get applied at the very END of a tween and without this tag, from(...{height:100, clearProps:\"height\", delay:1}) would wipe the height at the beginning of the tween and after 1 second, it'd kick back in.\n lazy: immediateRender && !prevStartAt && _isNotFalse(lazy),\n immediateRender: immediateRender,\n //zero-duration tweens render immediately by default, but if we're not specifically instructed to render this tween immediately, we should skip this and merely _init() to record the starting values (rendering them immediately would push them to completion which is wasteful in that case - we'd have to render(-1) immediately after)\n stagger: 0,\n parent: parent //ensures that nested tweens that had a stagger are handled properly, like gsap.from(\".class\", {y: gsap.utils.wrap([-100,100]), stagger: 0.5})\n\n }, cleanVars);\n harnessVars && (p[harness.prop] = harnessVars); // in case someone does something like .from(..., {css:{}})\n\n _removeFromParent(tween._startAt = Tween.set(targets, p));\n\n tween._startAt._dp = 0; // don't allow it to get put back into root timeline!\n\n tween._startAt._sat = tween; // used in globalTime()\n\n time < 0 && (_reverting ? tween._startAt.revert(_revertConfigNoKill) : tween._startAt.render(-1, true));\n tween._zTime = time;\n\n if (!immediateRender) {\n _initTween(tween._startAt, _tinyNum, _tinyNum); //ensures that the initial values are recorded\n\n } else if (!time) {\n return;\n }\n }\n }\n\n tween._pt = tween._ptCache = 0;\n lazy = dur && _isNotFalse(lazy) || lazy && !dur;\n\n for (i = 0; i < targets.length; i++) {\n target = targets[i];\n gsData = target._gsap || _harness(targets)[i]._gsap;\n tween._ptLookup[i] = ptLookup = {};\n _lazyLookup[gsData.id] && _lazyTweens.length && _lazyRender(); //if other tweens of the same target have recently initted but haven't rendered yet, we've got to force the render so that the starting values are correct (imagine populating a timeline with a bunch of sequential tweens and then jumping to the end)\n\n index = fullTargets === targets ? i : fullTargets.indexOf(target);\n\n if (harness && (plugin = new harness()).init(target, harnessVars || cleanVars, tween, index, fullTargets) !== false) {\n tween._pt = pt = new PropTween(tween._pt, target, plugin.name, 0, 1, plugin.render, plugin, 0, plugin.priority);\n\n plugin._props.forEach(function (name) {\n ptLookup[name] = pt;\n });\n\n plugin.priority && (hasPriority = 1);\n }\n\n if (!harness || harnessVars) {\n for (p in cleanVars) {\n if (_plugins[p] && (plugin = _checkPlugin(p, cleanVars, tween, index, target, fullTargets))) {\n plugin.priority && (hasPriority = 1);\n } else {\n ptLookup[p] = pt = _addPropTween.call(tween, target, p, \"get\", cleanVars[p], index, fullTargets, 0, vars.stringFilter);\n }\n }\n }\n\n tween._op && tween._op[i] && tween.kill(target, tween._op[i]);\n\n if (autoOverwrite && tween._pt) {\n _overwritingTween = tween;\n\n _globalTimeline.killTweensOf(target, ptLookup, tween.globalTime(time)); // make sure the overwriting doesn't overwrite THIS tween!!!\n\n\n overwritten = !tween.parent;\n _overwritingTween = 0;\n }\n\n tween._pt && lazy && (_lazyLookup[gsData.id] = 1);\n }\n\n hasPriority && _sortPropTweensByPriority(tween);\n tween._onInit && tween._onInit(tween); //plugins like RoundProps must wait until ALL of the PropTweens are instantiated. In the plugin's init() function, it sets the _onInit on the tween instance. May not be pretty/intuitive, but it's fast and keeps file size down.\n }\n\n tween._onUpdate = onUpdate;\n tween._initted = (!tween._op || tween._pt) && !overwritten; // if overwrittenProps resulted in the entire tween being killed, do NOT flag it as initted or else it may render for one tick.\n\n keyframes && time <= 0 && tl.render(_bigNum, true, true); // if there's a 0% keyframe, it'll render in the \"before\" state for any staggered/delayed animations thus when the following tween initializes, it'll use the \"before\" state instead of the \"after\" state as the initial values.\n},\n _updatePropTweens = function _updatePropTweens(tween, property, value, start, startIsRelative, ratio, time, skipRecursion) {\n var ptCache = (tween._pt && tween._ptCache || (tween._ptCache = {}))[property],\n pt,\n rootPT,\n lookup,\n i;\n\n if (!ptCache) {\n ptCache = tween._ptCache[property] = [];\n lookup = tween._ptLookup;\n i = tween._targets.length;\n\n while (i--) {\n pt = lookup[i][property];\n\n if (pt && pt.d && pt.d._pt) {\n // it's a plugin, so find the nested PropTween\n pt = pt.d._pt;\n\n while (pt && pt.p !== property && pt.fp !== property) {\n // \"fp\" is functionParam for things like setting CSS variables which require .setProperty(\"--var-name\", value)\n pt = pt._next;\n }\n }\n\n if (!pt) {\n // there is no PropTween associated with that property, so we must FORCE one to be created and ditch out of this\n // if the tween has other properties that already rendered at new positions, we'd normally have to rewind to put them back like tween.render(0, true) before forcing an _initTween(), but that can create another edge case like tweening a timeline's progress would trigger onUpdates to fire which could move other things around. It's better to just inform users that .resetTo() should ONLY be used for tweens that already have that property. For example, you can't gsap.to(...{ y: 0 }) and then tween.restTo(\"x\", 200) for example.\n _forceAllPropTweens = 1; // otherwise, when we _addPropTween() and it finds no change between the start and end values, it skips creating a PropTween (for efficiency...why tween when there's no difference?) but in this case we NEED that PropTween created so we can edit it.\n\n tween.vars[property] = \"+=0\";\n\n _initTween(tween, time);\n\n _forceAllPropTweens = 0;\n return skipRecursion ? _warn(property + \" not eligible for reset. Try splitting into individual properties\") : 1; // if someone tries to do a quickTo() on a special property like borderRadius which must get split into 4 different properties, that's not eligible for .resetTo().\n }\n\n ptCache.push(pt);\n }\n }\n\n i = ptCache.length;\n\n while (i--) {\n rootPT = ptCache[i];\n pt = rootPT._pt || rootPT; // complex values may have nested PropTweens. We only accommodate the FIRST value.\n\n pt.s = (start || start === 0) && !startIsRelative ? start : pt.s + (start || 0) + ratio * pt.c;\n pt.c = value - pt.s;\n rootPT.e && (rootPT.e = _round(value) + getUnit(rootPT.e)); // mainly for CSSPlugin (end value)\n\n rootPT.b && (rootPT.b = pt.s + getUnit(rootPT.b)); // (beginning value)\n }\n},\n _addAliasesToVars = function _addAliasesToVars(targets, vars) {\n var harness = targets[0] ? _getCache(targets[0]).harness : 0,\n propertyAliases = harness && harness.aliases,\n copy,\n p,\n i,\n aliases;\n\n if (!propertyAliases) {\n return vars;\n }\n\n copy = _merge({}, vars);\n\n for (p in propertyAliases) {\n if (p in copy) {\n aliases = propertyAliases[p].split(\",\");\n i = aliases.length;\n\n while (i--) {\n copy[aliases[i]] = copy[p];\n }\n }\n }\n\n return copy;\n},\n // parses multiple formats, like {\"0%\": {x: 100}, {\"50%\": {x: -20}} and { x: {\"0%\": 100, \"50%\": -20} }, and an \"ease\" can be set on any object. We populate an \"allProps\" object with an Array for each property, like {x: [{}, {}], y:[{}, {}]} with data for each property tween. The objects have a \"t\" (time), \"v\", (value), and \"e\" (ease) property. This allows us to piece together a timeline later.\n_parseKeyframe = function _parseKeyframe(prop, obj, allProps, easeEach) {\n var ease = obj.ease || easeEach || \"power1.inOut\",\n p,\n a;\n\n if (_isArray(obj)) {\n a = allProps[prop] || (allProps[prop] = []); // t = time (out of 100), v = value, e = ease\n\n obj.forEach(function (value, i) {\n return a.push({\n t: i / (obj.length - 1) * 100,\n v: value,\n e: ease\n });\n });\n } else {\n for (p in obj) {\n a = allProps[p] || (allProps[p] = []);\n p === \"ease\" || a.push({\n t: parseFloat(prop),\n v: obj[p],\n e: ease\n });\n }\n }\n},\n _parseFuncOrString = function _parseFuncOrString(value, tween, i, target, targets) {\n return _isFunction(value) ? value.call(tween, i, target, targets) : _isString(value) && ~value.indexOf(\"random(\") ? _replaceRandom(value) : value;\n},\n _staggerTweenProps = _callbackNames + \"repeat,repeatDelay,yoyo,repeatRefresh,yoyoEase,easeReverse,autoRevert\",\n _staggerPropsToSkip = {};\n\n_forEachName(_staggerTweenProps + \",id,stagger,delay,duration,paused,scrollTrigger\", function (name) {\n return _staggerPropsToSkip[name] = 1;\n});\n/*\n * --------------------------------------------------------------------------------------\n * TWEEN\n * --------------------------------------------------------------------------------------\n */\n\n\nexport var Tween = /*#__PURE__*/function (_Animation2) {\n _inheritsLoose(Tween, _Animation2);\n\n function Tween(targets, vars, position, skipInherit) {\n var _this3;\n\n if (typeof vars === \"number\") {\n position.duration = vars;\n vars = position;\n position = null;\n }\n\n _this3 = _Animation2.call(this, skipInherit ? vars : _inheritDefaults(vars)) || this;\n var _this3$vars = _this3.vars,\n duration = _this3$vars.duration,\n delay = _this3$vars.delay,\n immediateRender = _this3$vars.immediateRender,\n stagger = _this3$vars.stagger,\n overwrite = _this3$vars.overwrite,\n keyframes = _this3$vars.keyframes,\n defaults = _this3$vars.defaults,\n scrollTrigger = _this3$vars.scrollTrigger,\n parent = vars.parent || _globalTimeline,\n parsedTargets = (_isArray(targets) || _isTypedArray(targets) ? _isNumber(targets[0]) : \"length\" in vars) ? [targets] : toArray(targets),\n tl,\n i,\n copy,\n l,\n p,\n curTarget,\n staggerFunc,\n staggerVarsToMerge;\n _this3._targets = parsedTargets.length ? _harness(parsedTargets) : _warn(\"GSAP target \" + targets + \" not found. https://gsap.com\", !_config.nullTargetWarn) || [];\n _this3._ptLookup = []; //PropTween lookup. An array containing an object for each target, having keys for each tweening property\n\n _this3._overwrite = overwrite;\n\n if (keyframes || stagger || _isFuncOrString(duration) || _isFuncOrString(delay)) {\n vars = _this3.vars;\n var easeReverse = vars.easeReverse || vars.yoyoEase;\n tl = _this3.timeline = new Timeline({\n data: \"nested\",\n defaults: defaults || {},\n targets: parent && parent.data === \"nested\" ? parent.vars.targets : parsedTargets\n }); // we need to store the targets because for staggers and keyframes, we end up creating an individual tween for each but function-based values need to know the index and the whole Array of targets.\n\n tl.kill();\n tl.parent = tl._dp = _assertThisInitialized(_this3);\n tl._start = 0;\n\n if (stagger || _isFuncOrString(duration) || _isFuncOrString(delay)) {\n l = parsedTargets.length;\n staggerFunc = stagger && distribute(stagger);\n\n if (_isObject(stagger)) {\n //users can pass in callbacks like onStart/onComplete in the stagger object. These should fire with each individual tween.\n for (p in stagger) {\n if (~_staggerTweenProps.indexOf(p)) {\n staggerVarsToMerge || (staggerVarsToMerge = {});\n staggerVarsToMerge[p] = stagger[p];\n }\n }\n }\n\n for (i = 0; i < l; i++) {\n copy = _copyExcluding(vars, _staggerPropsToSkip);\n copy.stagger = 0;\n easeReverse && (copy.easeReverse = easeReverse);\n staggerVarsToMerge && _merge(copy, staggerVarsToMerge);\n curTarget = parsedTargets[i]; //don't just copy duration or delay because if they're a string or function, we'd end up in an infinite loop because _isFuncOrString() would evaluate as true in the child tweens, entering this loop, etc. So we parse the value straight from vars and default to 0.\n\n copy.duration = +_parseFuncOrString(duration, _assertThisInitialized(_this3), i, curTarget, parsedTargets);\n copy.delay = (+_parseFuncOrString(delay, _assertThisInitialized(_this3), i, curTarget, parsedTargets) || 0) - _this3._delay;\n\n if (!stagger && l === 1 && copy.delay) {\n // if someone does delay:\"random(1, 5)\", repeat:-1, for example, the delay shouldn't be inside the repeat.\n _this3._delay = delay = copy.delay;\n _this3._start += delay;\n copy.delay = 0;\n }\n\n tl.to(curTarget, copy, staggerFunc ? staggerFunc(i, curTarget, parsedTargets) : 0);\n tl._ease = _easeMap.none;\n }\n\n tl.duration() ? duration = delay = 0 : _this3.timeline = 0; // if the timeline's duration is 0, we don't need a timeline internally!\n } else if (keyframes) {\n _inheritDefaults(_setDefaults(tl.vars.defaults, {\n ease: \"none\"\n }));\n\n tl._ease = _parseEase(keyframes.ease || vars.ease || \"none\");\n var time = 0,\n a,\n kf,\n v;\n\n if (_isArray(keyframes)) {\n keyframes.forEach(function (frame) {\n return tl.to(parsedTargets, frame, \">\");\n });\n tl.duration(); // to ensure tl._dur is cached because we tap into it for performance purposes in the render() method.\n } else {\n copy = {};\n\n for (p in keyframes) {\n p === \"ease\" || p === \"easeEach\" || _parseKeyframe(p, keyframes[p], copy, keyframes.easeEach);\n }\n\n for (p in copy) {\n a = copy[p].sort(function (a, b) {\n return a.t - b.t;\n });\n time = 0;\n\n for (i = 0; i < a.length; i++) {\n kf = a[i];\n v = {\n ease: kf.e,\n duration: (kf.t - (i ? a[i - 1].t : 0)) / 100 * duration\n };\n v[p] = kf.v;\n tl.to(parsedTargets, v, time);\n time += v.duration;\n }\n }\n\n tl.duration() < duration && tl.to({}, {\n duration: duration - tl.duration()\n }); // in case keyframes didn't go to 100%\n }\n }\n\n duration || _this3.duration(duration = tl.duration());\n } else {\n _this3.timeline = 0; //speed optimization, faster lookups (no going up the prototype chain)\n }\n\n if (overwrite === true && !_suppressOverwrites) {\n _overwritingTween = _assertThisInitialized(_this3);\n\n _globalTimeline.killTweensOf(parsedTargets);\n\n _overwritingTween = 0;\n }\n\n _addToTimeline(parent, _assertThisInitialized(_this3), position);\n\n vars.reversed && _this3.reverse();\n vars.paused && _this3.paused(true);\n\n if (immediateRender || !duration && !keyframes && _this3._start === _roundPrecise(parent._time) && _isNotFalse(immediateRender) && _hasNoPausedAncestors(_assertThisInitialized(_this3)) && parent.data !== \"nested\") {\n _this3._tTime = -_tinyNum; //forces a render without having to set the render() \"force\" parameter to true because we want to allow lazying by default (using the \"force\" parameter always forces an immediate full render)\n\n _this3.render(Math.max(0, -delay) || 0); //in case delay is negative\n\n }\n\n scrollTrigger && _scrollTrigger(_assertThisInitialized(_this3), scrollTrigger);\n return _this3;\n }\n\n var _proto3 = Tween.prototype;\n\n _proto3.render = function render(totalTime, suppressEvents, force) {\n var prevTime = this._time,\n tDur = this._tDur,\n dur = this._dur,\n isNegative = totalTime < 0,\n tTime = totalTime > tDur - _tinyNum && !isNegative ? tDur : totalTime < _tinyNum ? 0 : totalTime,\n time,\n pt,\n iteration,\n cycleDuration,\n prevIteration,\n isYoyo,\n ratio,\n timeline;\n\n if (!dur) {\n _renderZeroDurationTween(this, totalTime, suppressEvents, force);\n } else if (tTime !== this._tTime || !totalTime || force || !this._initted && this._tTime || this._startAt && this._zTime < 0 !== isNegative || this._lazy) {\n // this senses if we're crossing over the start time, in which case we must record _zTime and force the render, but we do it in this lengthy conditional way for performance reasons (usually we can skip the calculations): this._initted && (this._zTime < 0) !== (totalTime < 0)\n time = tTime;\n timeline = this.timeline;\n\n if (this._repeat) {\n //adjust the time for repeats and yoyos\n cycleDuration = dur + this._rDelay;\n\n if (this._repeat < -1 && isNegative) {\n return this.totalTime(cycleDuration * 100 + totalTime, suppressEvents, force);\n }\n\n time = _roundPrecise(tTime % cycleDuration); //round to avoid floating point errors. (4 % 0.8 should be 0 but some browsers report it as 0.79999999!)\n\n if (tTime === tDur) {\n // the tDur === tTime is for edge cases where there's a lengthy decimal on the duration and it may reach the very end but the time is rendered as not-quite-there (remember, tDur is rounded to 4 decimals whereas dur isn't)\n iteration = this._repeat;\n time = dur;\n } else {\n prevIteration = _roundPrecise(tTime / cycleDuration); // full decimal version of iterations, not the previous iteration (we're reusing prevIteration variable for efficiency)\n\n iteration = ~~prevIteration;\n\n if (iteration && iteration === prevIteration) {\n time = dur;\n iteration--;\n } else if (time > dur) {\n time = dur;\n }\n }\n\n isYoyo = this._yoyo && iteration & 1;\n if (isYoyo) time = dur - time;\n prevIteration = _animationCycle(this._tTime, cycleDuration);\n\n if (time === prevTime && !force && this._initted && iteration === prevIteration) {\n //could be during the repeatDelay part. No need to render and fire callbacks.\n this._tTime = tTime;\n return this;\n }\n\n if (iteration !== prevIteration) {\n //repeatRefresh functionality\n if (this.vars.repeatRefresh && !isYoyo && !this._lock && time !== cycleDuration && this._initted) {\n // this._time will === cycleDuration when we render at EXACTLY the end of an iteration. Without this condition, it'd often do the repeatRefresh render TWICE (again on the very next tick).\n this._lock = force = 1; //force, otherwise if lazy is true, the _attemptInitTween() will return and we'll jump out and get caught bouncing on each tick.\n\n this.render(_roundPrecise(cycleDuration * iteration), true).invalidate()._lock = 0;\n }\n }\n }\n\n if (!this._initted) {\n if (_attemptInitTween(this, isNegative ? totalTime : time, force, suppressEvents, tTime)) {\n this._tTime = 0; // in constructor if immediateRender is true, we set _tTime to -_tinyNum to have the playhead cross the starting point but we can't leave _tTime as a negative number.\n\n return this;\n }\n\n if (prevTime !== this._time && !(force && this.vars.repeatRefresh && iteration !== prevIteration)) {\n // rare edge case - during initialization, an onUpdate in the _startAt (.fromTo()) might force this tween to render at a different spot in which case we should ditch this render() call so that it doesn't revert the values. But we also don't want to dump if we're doing a repeatRefresh render!\n return this;\n }\n\n if (dur !== this._dur) {\n // while initting, a plugin like InertiaPlugin might alter the duration, so rerun from the start to ensure everything renders as it should.\n return this.render(totalTime, suppressEvents, force);\n }\n }\n\n if (this._rEase) {\n var inv = time < prevTime;\n\n if (inv !== this._inv) {\n var segDur = inv ? prevTime : dur - prevTime;\n this._inv = inv;\n if (this._from) this.ratio = 1 - this.ratio;\n this._invRatio = this.ratio;\n this._invTime = prevTime;\n this._invRecip = segDur ? (inv ? -1 : 1) / segDur : 0;\n this._invScale = inv ? -this.ratio : 1 - this.ratio;\n this._invEase = inv ? this._rEase : this._ease;\n }\n\n this.ratio = ratio = this._invRatio + this._invScale * this._invEase((time - this._invTime) * this._invRecip);\n } else {\n this.ratio = ratio = this._ease(time / dur);\n }\n\n if (this._from) this.ratio = ratio = 1 - ratio;\n this._tTime = tTime;\n this._time = time;\n\n if (!this._act && this._ts) {\n this._act = 1; //as long as it's not paused, force it to be active so that if the user renders independent of the parent timeline, it'll be forced to re-render on the next tick.\n\n this._lazy = 0;\n }\n\n if (!prevTime && tTime && !suppressEvents && !prevIteration) {\n _callback(this, \"onStart\");\n\n if (this._tTime !== tTime) {\n // in case the onStart triggered a render at a different spot, eject. Like if someone did animation.pause(0.5) or something inside the onStart.\n return this;\n }\n }\n\n pt = this._pt;\n\n while (pt) {\n pt.r(ratio, pt.d);\n pt = pt._next;\n }\n\n timeline && timeline.render(totalTime < 0 ? totalTime : timeline._dur * timeline._ease(time / this._dur), suppressEvents, force) || this._startAt && (this._zTime = totalTime);\n\n if (this._onUpdate && !suppressEvents) {\n isNegative && _rewindStartAt(this, totalTime, suppressEvents, force); //note: for performance reasons, we tuck this conditional logic inside less traveled areas (most tweens don't have an onUpdate). We'd just have it at the end before the onComplete, but the values should be updated before any onUpdate is called, so we ALSO put it here and then if it's not called, we do so later near the onComplete.\n\n _callback(this, \"onUpdate\");\n }\n\n this._repeat && iteration !== prevIteration && this.vars.onRepeat && !suppressEvents && this.parent && _callback(this, \"onRepeat\");\n\n if ((tTime === this._tDur || !tTime) && this._tTime === tTime) {\n isNegative && !this._onUpdate && _rewindStartAt(this, totalTime, true, true);\n (totalTime || !dur) && (tTime === this._tDur && this._ts > 0 || !tTime && this._ts < 0) && _removeFromParent(this, 1); // don't remove if we're rendering at exactly a time of 0, as there could be autoRevert values that should get set on the next tick (if the playhead goes backward beyond the startTime, negative totalTime). Don't remove if the timeline is reversed and the playhead isn't at 0, otherwise tl.progress(1).reverse() won't work. Only remove if the playhead is at the end and timeScale is positive, or if the playhead is at 0 and the timeScale is negative.\n\n if (!suppressEvents && !(isNegative && !prevTime) && (tTime || prevTime || isYoyo)) {\n // if prevTime and tTime are zero, we shouldn't fire the onReverseComplete. This could happen if you gsap.to(... {paused:true}).play();\n _callback(this, tTime === tDur ? \"onComplete\" : \"onReverseComplete\", true);\n\n this._prom && !(tTime < tDur && this.timeScale() > 0) && this._prom();\n }\n }\n }\n\n return this;\n };\n\n _proto3.targets = function targets() {\n return this._targets;\n };\n\n _proto3.invalidate = function invalidate(soft) {\n // \"soft\" gives us a way to clear out everything EXCEPT the recorded pre-\"from\" portion of from() tweens. Otherwise, for example, if you tween.progress(1).render(0, true true).invalidate(), the \"from\" values would persist and then on the next render, the from() tweens would initialize and the current value would match the \"from\" values, thus animate from the same value to the same value (no animation). We tap into this in ScrollTrigger's refresh() where we must push a tween to completion and then back again but honor its init state in case the tween is dependent on another tween further up on the page.\n (!soft || !this.vars.runBackwards) && (this._startAt = 0);\n this._pt = this._op = this._onUpdate = this._lazy = this.ratio = 0;\n this._ptLookup = [];\n this.timeline && this.timeline.invalidate(soft);\n return _Animation2.prototype.invalidate.call(this, soft);\n };\n\n _proto3.resetTo = function resetTo(property, value, start, startIsRelative, skipRecursion) {\n _tickerActive || _ticker.wake();\n this._ts || this.play();\n var time = Math.min(this._dur, (this._dp._time - this._start) * this._ts),\n ratio;\n this._initted || _initTween(this, time);\n ratio = this._ease(time / this._dur); // don't just get tween.ratio because it may not have rendered yet.\n // possible future addition to allow an object with multiple values to update, like tween.resetTo({x: 100, y: 200}); At this point, it doesn't seem worth the added kb given the fact that most users will likely opt for the convenient gsap.quickTo() way of interacting with this method.\n // if (_isObject(property)) { // performance optimization\n // \tfor (p in property) {\n // \t\tif (_updatePropTweens(this, p, property[p], value ? value[p] : null, start, ratio, time)) {\n // \t\t\treturn this.resetTo(property, value, start, startIsRelative); // if a PropTween wasn't found for the property, it'll get forced with a re-initialization so we need to jump out and start over again.\n // \t\t}\n // \t}\n // } else {\n\n if (_updatePropTweens(this, property, value, start, startIsRelative, ratio, time, skipRecursion)) {\n return this.resetTo(property, value, start, startIsRelative, 1); // if a PropTween wasn't found for the property, it'll get forced with a re-initialization so we need to jump out and start over again.\n } //}\n\n\n _alignPlayhead(this, 0);\n\n this.parent || _addLinkedListItem(this._dp, this, \"_first\", \"_last\", this._dp._sort ? \"_start\" : 0);\n return this.render(0);\n };\n\n _proto3.kill = function kill(targets, vars) {\n if (vars === void 0) {\n vars = \"all\";\n }\n\n if (!targets && (!vars || vars === \"all\")) {\n this._lazy = this._pt = 0;\n this.parent ? _interrupt(this) : this.scrollTrigger && this.scrollTrigger.kill(!!_reverting);\n return this;\n }\n\n if (this.timeline) {\n var tDur = this.timeline.totalDuration();\n this.timeline.killTweensOf(targets, vars, _overwritingTween && _overwritingTween.vars.overwrite !== true)._first || _interrupt(this); // if nothing is left tweening, interrupt.\n\n this.parent && tDur !== this.timeline.totalDuration() && _setDuration(this, this._dur * this.timeline._tDur / tDur, 0, 1); // if a nested tween is killed that changes the duration, it should affect this tween's duration. We must use the ratio, though, because sometimes the internal timeline is stretched like for keyframes where they don't all add up to whatever the parent tween's duration was set to.\n\n return this;\n }\n\n var parsedTargets = this._targets,\n killingTargets = targets ? toArray(targets) : parsedTargets,\n propTweenLookup = this._ptLookup,\n firstPT = this._pt,\n overwrittenProps,\n curLookup,\n curOverwriteProps,\n props,\n p,\n pt,\n i;\n\n if ((!vars || vars === \"all\") && _arraysMatch(parsedTargets, killingTargets)) {\n vars === \"all\" && (this._pt = 0);\n return _interrupt(this);\n }\n\n overwrittenProps = this._op = this._op || [];\n\n if (vars !== \"all\") {\n //so people can pass in a comma-delimited list of property names\n if (_isString(vars)) {\n p = {};\n\n _forEachName(vars, function (name) {\n return p[name] = 1;\n });\n\n vars = p;\n }\n\n vars = _addAliasesToVars(parsedTargets, vars);\n }\n\n i = parsedTargets.length;\n\n while (i--) {\n if (~killingTargets.indexOf(parsedTargets[i])) {\n curLookup = propTweenLookup[i];\n\n if (vars === \"all\") {\n overwrittenProps[i] = vars;\n props = curLookup;\n curOverwriteProps = {};\n } else {\n curOverwriteProps = overwrittenProps[i] = overwrittenProps[i] || {};\n props = vars;\n }\n\n for (p in props) {\n pt = curLookup && curLookup[p];\n\n if (pt) {\n if (!(\"kill\" in pt.d) || pt.d.kill(p) === true) {\n _removeLinkedListItem(this, pt, \"_pt\");\n }\n\n delete curLookup[p];\n }\n\n if (curOverwriteProps !== \"all\") {\n curOverwriteProps[p] = 1;\n }\n }\n }\n }\n\n this._initted && !this._pt && firstPT && _interrupt(this); //if all tweening properties are killed, kill the tween. Without this line, if there's a tween with multiple targets and then you killTweensOf() each target individually, the tween would technically still remain active and fire its onComplete even though there aren't any more properties tweening.\n\n return this;\n };\n\n Tween.to = function to(targets, vars) {\n return new Tween(targets, vars, arguments[2]);\n };\n\n Tween.from = function from(targets, vars) {\n return _createTweenType(1, arguments);\n };\n\n Tween.delayedCall = function delayedCall(delay, callback, params, scope) {\n return new Tween(callback, 0, {\n immediateRender: false,\n lazy: false,\n overwrite: false,\n delay: delay,\n onComplete: callback,\n onReverseComplete: callback,\n onCompleteParams: params,\n onReverseCompleteParams: params,\n callbackScope: scope\n }); // we must use onReverseComplete too for things like timeline.add(() => {...}) which should be triggered in BOTH directions (forward and reverse)\n };\n\n Tween.fromTo = function fromTo(targets, fromVars, toVars) {\n return _createTweenType(2, arguments);\n };\n\n Tween.set = function set(targets, vars) {\n vars.duration = 0;\n vars.repeatDelay || (vars.repeat = 0);\n return new Tween(targets, vars);\n };\n\n Tween.killTweensOf = function killTweensOf(targets, props, onlyActive) {\n return _globalTimeline.killTweensOf(targets, props, onlyActive);\n };\n\n return Tween;\n}(Animation);\n\n_setDefaults(Tween.prototype, {\n _targets: [],\n _lazy: 0,\n _startAt: 0,\n _op: 0,\n _onInit: 0\n}); //add the pertinent timeline methods to Tween instances so that users can chain conveniently and create a timeline automatically. (removed due to concerns that it'd ultimately add to more confusion especially for beginners)\n// _forEachName(\"to,from,fromTo,set,call,add,addLabel,addPause\", name => {\n// \tTween.prototype[name] = function() {\n// \t\tlet tl = new Timeline();\n// \t\treturn _addToTimeline(tl, this)[name].apply(tl, toArray(arguments));\n// \t}\n// });\n//for backward compatibility. Leverage the timeline calls.\n\n\n_forEachName(\"staggerTo,staggerFrom,staggerFromTo\", function (name) {\n Tween[name] = function () {\n var tl = new Timeline(),\n params = _slice.call(arguments, 0);\n\n params.splice(name === \"staggerFromTo\" ? 5 : 4, 0, 0);\n return tl[name].apply(tl, params);\n };\n});\n/*\n * --------------------------------------------------------------------------------------\n * PROPTWEEN\n * --------------------------------------------------------------------------------------\n */\n\n\nvar _setterPlain = function _setterPlain(target, property, value) {\n return target[property] = value;\n},\n _setterFunc = function _setterFunc(target, property, value) {\n return target[property](value);\n},\n _setterFuncWithParam = function _setterFuncWithParam(target, property, value, data) {\n return target[property](data.fp, value);\n},\n _setterAttribute = function _setterAttribute(target, property, value) {\n return target.setAttribute(property, value);\n},\n _getSetter = function _getSetter(target, property) {\n return _isFunction(target[property]) ? _setterFunc : _isUndefined(target[property]) && target.setAttribute ? _setterAttribute : _setterPlain;\n},\n _renderPlain = function _renderPlain(ratio, data) {\n return data.set(data.t, data.p, Math.round((data.s + data.c * ratio) * 1000000) / 1000000, data);\n},\n _renderBoolean = function _renderBoolean(ratio, data) {\n return data.set(data.t, data.p, !!(data.s + data.c * ratio), data);\n},\n _renderComplexString = function _renderComplexString(ratio, data) {\n var pt = data._pt,\n s = \"\";\n\n if (!ratio && data.b) {\n //b = beginning string\n s = data.b;\n } else if (ratio === 1 && data.e) {\n //e = ending string\n s = data.e;\n } else {\n while (pt) {\n s = pt.p + (pt.m ? pt.m(pt.s + pt.c * ratio) : Math.round((pt.s + pt.c * ratio) * 10000) / 10000) + s; //we use the \"p\" property for the text inbetween (like a suffix). And in the context of a complex string, the modifier (m) is typically just Math.round(), like for RGB colors.\n\n pt = pt._next;\n }\n\n s += data.c; //we use the \"c\" of the PropTween to store the final chunk of non-numeric text.\n }\n\n data.set(data.t, data.p, s, data);\n},\n _renderPropTweens = function _renderPropTweens(ratio, data) {\n var pt = data._pt;\n\n while (pt) {\n pt.r(ratio, pt.d);\n pt = pt._next;\n }\n},\n _addPluginModifier = function _addPluginModifier(modifier, tween, target, property) {\n var pt = this._pt,\n next;\n\n while (pt) {\n next = pt._next;\n pt.p === property && pt.modifier(modifier, tween, target);\n pt = next;\n }\n},\n _killPropTweensOf = function _killPropTweensOf(property) {\n var pt = this._pt,\n hasNonDependentRemaining,\n next;\n\n while (pt) {\n next = pt._next;\n\n if (pt.p === property && !pt.op || pt.op === property) {\n _removeLinkedListItem(this, pt, \"_pt\");\n } else if (!pt.dep) {\n hasNonDependentRemaining = 1;\n }\n\n pt = next;\n }\n\n return !hasNonDependentRemaining;\n},\n _setterWithModifier = function _setterWithModifier(target, property, value, data) {\n data.mSet(target, property, data.m.call(data.tween, value, data.mt), data);\n},\n _sortPropTweensByPriority = function _sortPropTweensByPriority(parent) {\n var pt = parent._pt,\n next,\n pt2,\n first,\n last; //sorts the PropTween linked list in order of priority because some plugins need to do their work after ALL of the PropTweens were created (like RoundPropsPlugin and ModifiersPlugin)\n\n while (pt) {\n next = pt._next;\n pt2 = first;\n\n while (pt2 && pt2.pr > pt.pr) {\n pt2 = pt2._next;\n }\n\n if (pt._prev = pt2 ? pt2._prev : last) {\n pt._prev._next = pt;\n } else {\n first = pt;\n }\n\n if (pt._next = pt2) {\n pt2._prev = pt;\n } else {\n last = pt;\n }\n\n pt = next;\n }\n\n parent._pt = first;\n}; //PropTween key: t = target, p = prop, r = renderer, d = data, s = start, c = change, op = overwriteProperty (ONLY populated when it's different than p), pr = priority, _next/_prev for the linked list siblings, set = setter, m = modifier, mSet = modifierSetter (the original setter, before a modifier was added)\n\n\nexport var PropTween = /*#__PURE__*/function () {\n function PropTween(next, target, prop, start, change, renderer, data, setter, priority) {\n this.t = target;\n this.s = start;\n this.c = change;\n this.p = prop;\n this.r = renderer || _renderPlain;\n this.d = data || this;\n this.set = setter || _setterPlain;\n this.pr = priority || 0;\n this._next = next;\n\n if (next) {\n next._prev = this;\n }\n }\n\n var _proto4 = PropTween.prototype;\n\n _proto4.modifier = function modifier(func, tween, target) {\n this.mSet = this.mSet || this.set; //in case it was already set (a PropTween can only have one modifier)\n\n this.set = _setterWithModifier;\n this.m = func;\n this.mt = target; //modifier target\n\n this.tween = tween;\n };\n\n return PropTween;\n}(); //Initialization tasks\n\n_forEachName(_callbackNames + \"parent,duration,ease,delay,overwrite,runBackwards,startAt,yoyo,immediateRender,repeat,repeatDelay,data,paused,reversed,lazy,callbackScope,stringFilter,id,yoyoEase,stagger,inherit,repeatRefresh,keyframes,autoRevert,scrollTrigger,easeReverse\", function (name) {\n return _reservedProps[name] = 1;\n});\n\n_globals.TweenMax = _globals.TweenLite = Tween;\n_globals.TimelineLite = _globals.TimelineMax = Timeline;\n_globalTimeline = new Timeline({\n sortChildren: false,\n defaults: _defaults,\n autoRemoveChildren: true,\n id: \"root\",\n smoothChildTiming: true\n});\n_config.stringFilter = _colorStringFilter;\n\nvar _media = [],\n _listeners = {},\n _emptyArray = [],\n _lastMediaTime = 0,\n _contextID = 0,\n _dispatch = function _dispatch(type) {\n return (_listeners[type] || _emptyArray).map(function (f) {\n return f();\n });\n},\n _onMediaChange = function _onMediaChange() {\n var time = Date.now(),\n matches = [];\n\n if (time - _lastMediaTime > 2) {\n _dispatch(\"matchMediaInit\");\n\n _media.forEach(function (c) {\n var queries = c.queries,\n conditions = c.conditions,\n match,\n p,\n anyMatch,\n toggled;\n\n for (p in queries) {\n match = _win.matchMedia(queries[p]).matches; // Firefox doesn't update the \"matches\" property of the MediaQueryList object correctly - it only does so as it calls its change handler - so we must re-create a media query here to ensure it's accurate.\n\n match && (anyMatch = 1);\n\n if (match !== conditions[p]) {\n conditions[p] = match;\n toggled = 1;\n }\n }\n\n if (toggled) {\n c.revert();\n anyMatch && matches.push(c);\n }\n });\n\n _dispatch(\"matchMediaRevert\");\n\n matches.forEach(function (c) {\n return c.onMatch(c, function (func) {\n return c.add(null, func);\n });\n });\n _lastMediaTime = time;\n\n _dispatch(\"matchMedia\");\n }\n};\n\nvar Context = /*#__PURE__*/function () {\n function Context(func, scope) {\n this.selector = scope && selector(scope);\n this.data = [];\n this._r = []; // returned/cleanup functions\n\n this.isReverted = false;\n this.id = _contextID++; // to work around issues that frameworks like Vue cause by making things into Proxies which make it impossible to do something like _media.indexOf(this) because \"this\" would no longer refer to the Context instance itself - it'd refer to a Proxy! We needed a way to identify the context uniquely\n\n func && this.add(func);\n }\n\n var _proto5 = Context.prototype;\n\n _proto5.add = function add(name, func, scope) {\n // possible future addition if we need the ability to add() an animation to a context and for whatever reason cannot create that animation inside of a context.add(() => {...}) function.\n // if (name && _isFunction(name.revert)) {\n // \tthis.data.push(name);\n // \treturn (name._ctx = this);\n // }\n if (_isFunction(name)) {\n scope = func;\n func = name;\n name = _isFunction;\n }\n\n var self = this,\n f = function f() {\n var prev = _context,\n prevSelector = self.selector,\n result;\n prev && prev !== self && prev.data.push(self);\n scope && (self.selector = selector(scope));\n _context = self;\n result = func.apply(self, arguments);\n _isFunction(result) && self._r.push(result);\n _context = prev;\n self.selector = prevSelector;\n self.isReverted = false;\n return result;\n };\n\n self.last = f;\n return name === _isFunction ? f(self, function (func) {\n return self.add(null, func);\n }) : name ? self[name] = f : f;\n };\n\n _proto5.ignore = function ignore(func) {\n var prev = _context;\n _context = null;\n func(this);\n _context = prev;\n };\n\n _proto5.getTweens = function getTweens() {\n var a = [];\n this.data.forEach(function (e) {\n return e instanceof Context ? a.push.apply(a, e.getTweens()) : e instanceof Tween && !(e.parent && e.parent.data === \"nested\") && a.push(e);\n });\n return a;\n };\n\n _proto5.clear = function clear() {\n this._r.length = this.data.length = 0;\n };\n\n _proto5.kill = function kill(revert, matchMedia) {\n var _this4 = this;\n\n if (revert) {\n (function () {\n var tweens = _this4.getTweens(),\n i = _this4.data.length,\n t;\n\n while (i--) {\n // Flip plugin tweens are very different in that they should actually be pushed to their end. The plugin replaces the timeline's .revert() method to do exactly that. But we also need to remove any of those nested tweens inside the flip timeline so that they don't get individually reverted.\n t = _this4.data[i];\n\n if (t.data === \"isFlip\") {\n t.revert();\n t.getChildren(true, true, false).forEach(function (tween) {\n return tweens.splice(tweens.indexOf(tween), 1);\n });\n }\n } // save as an object so that we can cache the globalTime for each tween to optimize performance during the sort\n\n\n tweens.map(function (t) {\n return {\n g: t._dur || t._delay || t._sat && !t._sat.vars.immediateRender ? t.globalTime(0) : -Infinity,\n t: t\n };\n }).sort(function (a, b) {\n return b.g - a.g || -Infinity;\n }).forEach(function (o) {\n return o.t.revert(revert);\n }); // note: all of the _startAt tweens should be reverted in reverse order that they were created, and they'll all have the same globalTime (-1) so the \" || -1\" in the sort keeps the order properly.\n\n i = _this4.data.length;\n\n while (i--) {\n // make sure we loop backwards so that, for example, SplitTexts that were created later on the same element get reverted first\n t = _this4.data[i];\n\n if (t instanceof Timeline) {\n if (t.data !== \"nested\") {\n t.scrollTrigger && t.scrollTrigger.revert();\n t.kill(); // don't revert() the timeline because that's duplicating efforts since we already reverted all the tweens\n }\n } else {\n !(t instanceof Tween) && t.revert && t.revert(revert);\n }\n }\n\n _this4._r.forEach(function (f) {\n return f(revert, _this4);\n });\n\n _this4.isReverted = true;\n })();\n } else {\n this.data.forEach(function (e) {\n return e.kill && e.kill();\n });\n }\n\n this.clear();\n\n if (matchMedia) {\n var i = _media.length;\n\n while (i--) {\n // previously, we checked _media.indexOf(this), but some frameworks like Vue enforce Proxy objects that make it impossible to get the proper result that way, so we must use a unique ID number instead.\n _media[i].id === this.id && _media.splice(i, 1);\n }\n }\n } // killWithCleanup() {\n // \tthis.kill();\n // \tthis._r.forEach(f => f(false, this));\n // }\n ;\n\n _proto5.revert = function revert(config) {\n this.kill(config || {});\n };\n\n return Context;\n}();\n\nvar MatchMedia = /*#__PURE__*/function () {\n function MatchMedia(scope) {\n this.contexts = [];\n this.scope = scope;\n _context && _context.data.push(this);\n }\n\n var _proto6 = MatchMedia.prototype;\n\n _proto6.add = function add(conditions, func, scope) {\n _isObject(conditions) || (conditions = {\n matches: conditions\n });\n var context = new Context(0, scope || this.scope),\n cond = context.conditions = {},\n mq,\n p,\n active;\n _context && !context.selector && (context.selector = _context.selector); // in case a context is created inside a context. Like a gsap.matchMedia() that's inside a scoped gsap.context()\n\n this.contexts.push(context);\n func = context.add(\"onMatch\", func);\n context.queries = conditions;\n\n for (p in conditions) {\n if (p === \"all\") {\n active = 1;\n } else {\n mq = _win.matchMedia(conditions[p]);\n\n if (mq) {\n _media.indexOf(context) < 0 && _media.push(context);\n (cond[p] = mq.matches) && (active = 1);\n mq.addListener ? mq.addListener(_onMediaChange) : mq.addEventListener(\"change\", _onMediaChange);\n }\n }\n }\n\n active && func(context, function (f) {\n return context.add(null, f);\n });\n return this;\n } // refresh() {\n // \tlet time = _lastMediaTime,\n // \t\tmedia = _media;\n // \t_lastMediaTime = -1;\n // \t_media = this.contexts;\n // \t_onMediaChange();\n // \t_lastMediaTime = time;\n // \t_media = media;\n // }\n ;\n\n _proto6.revert = function revert(config) {\n this.kill(config || {});\n };\n\n _proto6.kill = function kill(revert) {\n this.contexts.forEach(function (c) {\n return c.kill(revert, true);\n });\n };\n\n return MatchMedia;\n}();\n/*\n * --------------------------------------------------------------------------------------\n * GSAP\n * --------------------------------------------------------------------------------------\n */\n\n\nvar _gsap = {\n registerPlugin: function registerPlugin() {\n for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n args.forEach(function (config) {\n return _createPlugin(config);\n });\n },\n timeline: function timeline(vars) {\n return new Timeline(vars);\n },\n getTweensOf: function getTweensOf(targets, onlyActive) {\n return _globalTimeline.getTweensOf(targets, onlyActive);\n },\n getProperty: function getProperty(target, property, unit, uncache) {\n _isString(target) && (target = toArray(target)[0]); //in case selector text or an array is passed in\n\n var getter = _getCache(target || {}).get,\n format = unit ? _passThrough : _numericIfPossible;\n\n unit === \"native\" && (unit = \"\");\n return !target ? target : !property ? function (property, unit, uncache) {\n return format((_plugins[property] && _plugins[property].get || getter)(target, property, unit, uncache));\n } : format((_plugins[property] && _plugins[property].get || getter)(target, property, unit, uncache));\n },\n quickSetter: function quickSetter(target, property, unit) {\n target = toArray(target);\n\n if (target.length > 1) {\n var setters = target.map(function (t) {\n return gsap.quickSetter(t, property, unit);\n }),\n l = setters.length;\n return function (value) {\n var i = l;\n\n while (i--) {\n setters[i](value);\n }\n };\n }\n\n target = target[0] || {};\n\n var Plugin = _plugins[property],\n cache = _getCache(target),\n p = cache.harness && (cache.harness.aliases || {})[property] || property,\n // in case it's an alias, like \"rotate\" for \"rotation\".\n setter = Plugin ? function (value) {\n var p = new Plugin();\n _quickTween._pt = 0;\n p.init(target, unit ? value + unit : value, _quickTween, 0, [target]);\n p.render(1, p);\n _quickTween._pt && _renderPropTweens(1, _quickTween);\n } : cache.set(target, p);\n\n return Plugin ? setter : function (value) {\n return setter(target, p, unit ? value + unit : value, cache, 1);\n };\n },\n quickTo: function quickTo(target, property, vars) {\n var _setDefaults2;\n\n var tween = gsap.to(target, _setDefaults((_setDefaults2 = {}, _setDefaults2[property] = \"+=0.1\", _setDefaults2.paused = true, _setDefaults2.stagger = 0, _setDefaults2), vars || {})),\n func = function func(value, start, startIsRelative) {\n return tween.resetTo(property, value, start, startIsRelative);\n };\n\n func.tween = tween;\n return func;\n },\n isTweening: function isTweening(targets) {\n return _globalTimeline.getTweensOf(targets, true).length > 0;\n },\n defaults: function defaults(value) {\n value && value.ease && (value.ease = _parseEase(value.ease, _defaults.ease));\n return _mergeDeep(_defaults, value || {});\n },\n config: function config(value) {\n return _mergeDeep(_config, value || {});\n },\n registerEffect: function registerEffect(_ref3) {\n var name = _ref3.name,\n effect = _ref3.effect,\n plugins = _ref3.plugins,\n defaults = _ref3.defaults,\n extendTimeline = _ref3.extendTimeline;\n (plugins || \"\").split(\",\").forEach(function (pluginName) {\n return pluginName && !_plugins[pluginName] && !_globals[pluginName] && _warn(name + \" effect requires \" + pluginName + \" plugin.\");\n });\n\n _effects[name] = function (targets, vars, tl) {\n return effect(toArray(targets), _setDefaults(vars || {}, defaults), tl);\n };\n\n if (extendTimeline) {\n Timeline.prototype[name] = function (targets, vars, position) {\n return this.add(_effects[name](targets, _isObject(vars) ? vars : (position = vars) && {}, this), position);\n };\n }\n },\n registerEase: function registerEase(name, ease) {\n _easeMap[name] = _parseEase(ease);\n },\n parseEase: function parseEase(ease, defaultEase) {\n return arguments.length ? _parseEase(ease, defaultEase) : _easeMap;\n },\n getById: function getById(id) {\n return _globalTimeline.getById(id);\n },\n exportRoot: function exportRoot(vars, includeDelayedCalls) {\n if (vars === void 0) {\n vars = {};\n }\n\n var tl = new Timeline(vars),\n child,\n next;\n tl.smoothChildTiming = _isNotFalse(vars.smoothChildTiming);\n\n _globalTimeline.remove(tl);\n\n tl._dp = 0; //otherwise it'll get re-activated when adding children and be re-introduced into _globalTimeline's linked list (then added to itself).\n\n tl._time = tl._tTime = _globalTimeline._time;\n child = _globalTimeline._first;\n\n while (child) {\n next = child._next;\n\n if (includeDelayedCalls || !(!child._dur && child instanceof Tween && child.vars.onComplete === child._targets[0])) {\n _addToTimeline(tl, child, child._start - child._delay);\n }\n\n child = next;\n }\n\n _addToTimeline(_globalTimeline, tl, 0);\n\n return tl;\n },\n context: function context(func, scope) {\n return func ? new Context(func, scope) : _context;\n },\n matchMedia: function matchMedia(scope) {\n return new MatchMedia(scope);\n },\n matchMediaRefresh: function matchMediaRefresh() {\n return _media.forEach(function (c) {\n var cond = c.conditions,\n found,\n p;\n\n for (p in cond) {\n if (cond[p]) {\n cond[p] = false;\n found = 1;\n }\n }\n\n found && c.revert();\n }) || _onMediaChange();\n },\n addEventListener: function addEventListener(type, callback) {\n var a = _listeners[type] || (_listeners[type] = []);\n ~a.indexOf(callback) || a.push(callback);\n },\n removeEventListener: function removeEventListener(type, callback) {\n var a = _listeners[type],\n i = a && a.indexOf(callback);\n i >= 0 && a.splice(i, 1);\n },\n utils: {\n wrap: wrap,\n wrapYoyo: wrapYoyo,\n distribute: distribute,\n random: random,\n snap: snap,\n normalize: normalize,\n getUnit: getUnit,\n clamp: clamp,\n splitColor: splitColor,\n toArray: toArray,\n selector: selector,\n mapRange: mapRange,\n pipe: pipe,\n unitize: unitize,\n interpolate: interpolate,\n shuffle: shuffle\n },\n install: _install,\n effects: _effects,\n ticker: _ticker,\n updateRoot: Timeline.updateRoot,\n plugins: _plugins,\n globalTimeline: _globalTimeline,\n core: {\n PropTween: PropTween,\n globals: _addGlobal,\n Tween: Tween,\n Timeline: Timeline,\n Animation: Animation,\n getCache: _getCache,\n _removeLinkedListItem: _removeLinkedListItem,\n reverting: function reverting() {\n return _reverting;\n },\n context: function context(toAdd) {\n if (toAdd && _context) {\n _context.data.push(toAdd);\n\n toAdd._ctx = _context;\n }\n\n return _context;\n },\n suppressOverwrites: function suppressOverwrites(value) {\n return _suppressOverwrites = value;\n }\n }\n};\n\n_forEachName(\"to,from,fromTo,delayedCall,set,killTweensOf\", function (name) {\n return _gsap[name] = Tween[name];\n});\n\n_ticker.add(Timeline.updateRoot);\n\n_quickTween = _gsap.to({}, {\n duration: 0\n}); // ---- EXTRA PLUGINS --------------------------------------------------------\n\nvar _getPluginPropTween = function _getPluginPropTween(plugin, prop) {\n var pt = plugin._pt;\n\n while (pt && pt.p !== prop && pt.op !== prop && pt.fp !== prop) {\n pt = pt._next;\n }\n\n return pt;\n},\n _addModifiers = function _addModifiers(tween, modifiers) {\n var targets = tween._targets,\n p,\n i,\n pt;\n\n for (p in modifiers) {\n i = targets.length;\n\n while (i--) {\n pt = tween._ptLookup[i][p];\n\n if (pt && (pt = pt.d)) {\n if (pt._pt) {\n // is a plugin\n pt = _getPluginPropTween(pt, p);\n }\n\n pt && pt.modifier && pt.modifier(modifiers[p], tween, targets[i], p);\n }\n }\n }\n},\n _buildModifierPlugin = function _buildModifierPlugin(name, modifier) {\n return {\n name: name,\n headless: 1,\n rawVars: 1,\n //don't pre-process function-based values or \"random()\" strings.\n init: function init(target, vars, tween) {\n tween._onInit = function (tween) {\n var temp, p;\n\n if (_isString(vars)) {\n temp = {};\n\n _forEachName(vars, function (name) {\n return temp[name] = 1;\n }); //if the user passes in a comma-delimited list of property names to roundProps, like \"x,y\", we round to whole numbers.\n\n\n vars = temp;\n }\n\n if (modifier) {\n temp = {};\n\n for (p in vars) {\n temp[p] = modifier(vars[p]);\n }\n\n vars = temp;\n }\n\n _addModifiers(tween, vars);\n };\n }\n };\n}; //register core plugins\n\n\nexport var gsap = _gsap.registerPlugin({\n name: \"attr\",\n init: function init(target, vars, tween, index, targets) {\n var p, pt, v;\n this.tween = tween;\n\n for (p in vars) {\n v = target.getAttribute(p) || \"\";\n pt = this.add(target, \"setAttribute\", (v || 0) + \"\", vars[p], index, targets, 0, 0, p);\n pt.op = p;\n pt.b = v; // record the beginning value so we can revert()\n\n this._props.push(p);\n }\n },\n render: function render(ratio, data) {\n var pt = data._pt;\n\n while (pt) {\n _reverting ? pt.set(pt.t, pt.p, pt.b, pt) : pt.r(ratio, pt.d); // if reverting, go back to the original (pt.b)\n\n pt = pt._next;\n }\n }\n}, {\n name: \"endArray\",\n headless: 1,\n init: function init(target, value) {\n var i = value.length;\n\n while (i--) {\n this.add(target, i, target[i] || 0, value[i], 0, 0, 0, 0, 0, 1);\n }\n }\n}, _buildModifierPlugin(\"roundProps\", _roundModifier), _buildModifierPlugin(\"modifiers\"), _buildModifierPlugin(\"snap\", snap)) || _gsap; //to prevent the core plugins from being dropped via aggressive tree shaking, we must include them in the variable declaration in this way.\n\nTween.version = Timeline.version = gsap.version = \"3.15.0\";\n_coreReady = 1;\n_windowExists() && _wake();\nvar Power0 = _easeMap.Power0,\n Power1 = _easeMap.Power1,\n Power2 = _easeMap.Power2,\n Power3 = _easeMap.Power3,\n Power4 = _easeMap.Power4,\n Linear = _easeMap.Linear,\n Quad = _easeMap.Quad,\n Cubic = _easeMap.Cubic,\n Quart = _easeMap.Quart,\n Quint = _easeMap.Quint,\n Strong = _easeMap.Strong,\n Elastic = _easeMap.Elastic,\n Back = _easeMap.Back,\n SteppedEase = _easeMap.SteppedEase,\n Bounce = _easeMap.Bounce,\n Sine = _easeMap.Sine,\n Expo = _easeMap.Expo,\n Circ = _easeMap.Circ;\nexport { Power0, Power1, Power2, Power3, Power4, Linear, Quad, Cubic, Quart, Quint, Strong, Elastic, Back, SteppedEase, Bounce, Sine, Expo, Circ };\nexport { Tween as TweenMax, Tween as TweenLite, Timeline as TimelineMax, Timeline as TimelineLite, gsap as default, wrap, wrapYoyo, distribute, random, snap, normalize, getUnit, clamp, splitColor, toArray, selector, mapRange, pipe, unitize, interpolate, shuffle }; //export some internal methods/orojects for use in CSSPlugin so that we can externalize that file and allow custom builds that exclude it.\n\nexport { _getProperty, _numExp, _numWithUnitExp, _isString, _isUndefined, _renderComplexString, _relExp, _setDefaults, _removeLinkedListItem, _forEachName, _sortPropTweensByPriority, _colorStringFilter, _replaceRandom, _checkPlugin, _plugins, _ticker, _config, _roundModifier, _round, _missingPlugin, _getSetter, _getCache, _colorExp, _parseRelative };","/*!\n * CSSPlugin 3.15.0\n * https://gsap.com\n *\n * Copyright 2008-2026, GreenSock. All rights reserved.\n * Subject to the terms at https://gsap.com/standard-license\n * @author: Jack Doyle, jack@greensock.com\n*/\n\n/* eslint-disable */\nimport { gsap, _getProperty, _numExp, _numWithUnitExp, getUnit, _isString, _isUndefined, _renderComplexString, _relExp, _forEachName, _sortPropTweensByPriority, _colorStringFilter, _checkPlugin, _replaceRandom, _plugins, GSCache, PropTween, _config, _ticker, _round, _missingPlugin, _getSetter, _getCache, _colorExp, _parseRelative, _setDefaults, _removeLinkedListItem //for the commented-out className feature.\n} from \"./gsap-core.js\";\n\nvar _win,\n _doc,\n _docElement,\n _pluginInitted,\n _tempDiv,\n _tempDivStyler,\n _recentSetterPlugin,\n _reverting,\n _windowExists = function _windowExists() {\n return typeof window !== \"undefined\";\n},\n _transformProps = {},\n _RAD2DEG = 180 / Math.PI,\n _DEG2RAD = Math.PI / 180,\n _atan2 = Math.atan2,\n _bigNum = 1e8,\n _capsExp = /([A-Z])/g,\n _horizontalExp = /(left|right|width|margin|padding|x)/i,\n _complexExp = /[\\s,\\(]\\S/,\n _propertyAliases = {\n autoAlpha: \"opacity,visibility\",\n scale: \"scaleX,scaleY\",\n alpha: \"opacity\"\n},\n _renderCSSProp = function _renderCSSProp(ratio, data) {\n return data.set(data.t, data.p, Math.round((data.s + data.c * ratio) * 10000) / 10000 + data.u, data);\n},\n _renderPropWithEnd = function _renderPropWithEnd(ratio, data) {\n return data.set(data.t, data.p, ratio === 1 ? data.e : Math.round((data.s + data.c * ratio) * 10000) / 10000 + data.u, data);\n},\n _renderCSSPropWithBeginning = function _renderCSSPropWithBeginning(ratio, data) {\n return data.set(data.t, data.p, ratio ? Math.round((data.s + data.c * ratio) * 10000) / 10000 + data.u : data.b, data);\n},\n //if units change, we need a way to render the original unit/value when the tween goes all the way back to the beginning (ratio:0)\n_renderCSSPropWithBeginningAndEnd = function _renderCSSPropWithBeginningAndEnd(ratio, data) {\n return data.set(data.t, data.p, ratio === 1 ? data.e : ratio ? Math.round((data.s + data.c * ratio) * 10000) / 10000 + data.u : data.b, data);\n},\n //if units change, we need a way to render the original unit/value when the tween goes all the way back to the beginning (ratio:0)\n_renderRoundedCSSProp = function _renderRoundedCSSProp(ratio, data) {\n var value = data.s + data.c * ratio;\n data.set(data.t, data.p, ~~(value + (value < 0 ? -.5 : .5)) + data.u, data);\n},\n _renderNonTweeningValue = function _renderNonTweeningValue(ratio, data) {\n return data.set(data.t, data.p, ratio ? data.e : data.b, data);\n},\n _renderNonTweeningValueOnlyAtEnd = function _renderNonTweeningValueOnlyAtEnd(ratio, data) {\n return data.set(data.t, data.p, ratio !== 1 ? data.b : data.e, data);\n},\n _setterCSSStyle = function _setterCSSStyle(target, property, value) {\n return target.style[property] = value;\n},\n _setterCSSProp = function _setterCSSProp(target, property, value) {\n return target.style.setProperty(property, value);\n},\n _setterTransform = function _setterTransform(target, property, value) {\n return target._gsap[property] = value;\n},\n _setterScale = function _setterScale(target, property, value) {\n return target._gsap.scaleX = target._gsap.scaleY = value;\n},\n _setterScaleWithRender = function _setterScaleWithRender(target, property, value, data, ratio) {\n var cache = target._gsap;\n cache.scaleX = cache.scaleY = value;\n cache.renderTransform(ratio, cache);\n},\n _setterTransformWithRender = function _setterTransformWithRender(target, property, value, data, ratio) {\n var cache = target._gsap;\n cache[property] = value;\n cache.renderTransform(ratio, cache);\n},\n _transformProp = \"transform\",\n _transformOriginProp = _transformProp + \"Origin\",\n _saveStyle = function _saveStyle(property, isNotCSS) {\n var _this = this;\n\n var target = this.target,\n style = target.style,\n cache = target._gsap;\n\n if (property in _transformProps && style) {\n this.tfm = this.tfm || {};\n\n if (property !== \"transform\") {\n property = _propertyAliases[property] || property;\n ~property.indexOf(\",\") ? property.split(\",\").forEach(function (a) {\n return _this.tfm[a] = _get(target, a);\n }) : this.tfm[property] = cache.x ? cache[property] : _get(target, property); // note: scale would map to \"scaleX,scaleY\", thus we loop and apply them both.\n\n property === _transformOriginProp && (this.tfm.zOrigin = cache.zOrigin);\n } else {\n return _propertyAliases.transform.split(\",\").forEach(function (p) {\n return _saveStyle.call(_this, p, isNotCSS);\n });\n }\n\n if (this.props.indexOf(_transformProp) >= 0) {\n return;\n }\n\n if (cache.svg) {\n this.svgo = target.getAttribute(\"data-svg-origin\");\n this.props.push(_transformOriginProp, isNotCSS, \"\");\n }\n\n property = _transformProp;\n }\n\n (style || isNotCSS) && this.props.push(property, isNotCSS, style[property]);\n},\n _removeIndependentTransforms = function _removeIndependentTransforms(style) {\n if (style.translate) {\n style.removeProperty(\"translate\");\n style.removeProperty(\"scale\");\n style.removeProperty(\"rotate\");\n }\n},\n _revertStyle = function _revertStyle() {\n var props = this.props,\n target = this.target,\n style = target.style,\n cache = target._gsap,\n i,\n p;\n\n for (i = 0; i < props.length; i += 3) {\n // stored like this: property, isNotCSS, value\n if (!props[i + 1]) {\n props[i + 2] ? style[props[i]] = props[i + 2] : style.removeProperty(props[i].substr(0, 2) === \"--\" ? props[i] : props[i].replace(_capsExp, \"-$1\").toLowerCase());\n } else if (props[i + 1] === 2) {\n // non-CSS value (function-based)\n target[props[i]](props[i + 2]);\n } else {\n // non-CSS value (not function-based)\n target[props[i]] = props[i + 2];\n }\n }\n\n if (this.tfm) {\n for (p in this.tfm) {\n cache[p] = this.tfm[p];\n }\n\n if (cache.svg) {\n cache.renderTransform();\n target.setAttribute(\"data-svg-origin\", this.svgo || \"\");\n }\n\n i = _reverting();\n\n if ((!i || !i.isStart) && !style[_transformProp]) {\n _removeIndependentTransforms(style);\n\n if (cache.zOrigin && style[_transformOriginProp]) {\n style[_transformOriginProp] += \" \" + cache.zOrigin + \"px\"; // since we're uncaching, we must put the zOrigin back into the transformOrigin so that we can pull it out accurately when we parse again. Otherwise, we'd lose the z portion of the origin since we extract it to protect from Safari bugs.\n\n cache.zOrigin = 0;\n cache.renderTransform();\n }\n\n cache.uncache = 1; // if it's a startAt that's being reverted in the _initTween() of the core, we don't need to uncache transforms. This is purely a performance optimization.\n }\n }\n},\n _getStyleSaver = function _getStyleSaver(target, properties) {\n var saver = {\n target: target,\n props: [],\n revert: _revertStyle,\n save: _saveStyle\n };\n target._gsap || gsap.core.getCache(target); // just make sure there's a _gsap cache defined because we read from it in _saveStyle() and it's more efficient to just check it here once.\n\n properties && target.style && target.nodeType && properties.split(\",\").forEach(function (p) {\n return saver.save(p);\n }); // make sure it's a DOM node too.\n\n return saver;\n},\n _supports3D,\n _createElement = function _createElement(type, ns) {\n var e = _doc.createElementNS ? _doc.createElementNS((ns || \"http://www.w3.org/1999/xhtml\").replace(/^https/, \"http\"), type) : _doc.createElement(type); //some servers swap in https for http in the namespace which can break things, making \"style\" inaccessible.\n\n return e && e.style ? e : _doc.createElement(type); //some environments won't allow access to the element's style when created with a namespace in which case we default to the standard createElement() to work around the issue. Also note that when GSAP is embedded directly inside an SVG file, createElement() won't allow access to the style object in Firefox (see https://gsap.com/forums/topic/20215-problem-using-tweenmax-in-standalone-self-containing-svg-file-err-cannot-set-property-csstext-of-undefined/).\n},\n _getComputedProperty = function _getComputedProperty(target, property, skipPrefixFallback) {\n var cs = getComputedStyle(target);\n return cs[property] || cs.getPropertyValue(property.replace(_capsExp, \"-$1\").toLowerCase()) || cs.getPropertyValue(property) || !skipPrefixFallback && _getComputedProperty(target, _checkPropPrefix(property) || property, 1) || \"\"; //css variables may not need caps swapped out for dashes and lowercase.\n},\n _prefixes = \"O,Moz,ms,Ms,Webkit\".split(\",\"),\n _checkPropPrefix = function _checkPropPrefix(property, element, preferPrefix) {\n var e = element || _tempDiv,\n s = e.style,\n i = 5;\n\n if (property in s && !preferPrefix) {\n return property;\n }\n\n property = property.charAt(0).toUpperCase() + property.substr(1);\n\n while (i-- && !(_prefixes[i] + property in s)) {}\n\n return i < 0 ? null : (i === 3 ? \"ms\" : i >= 0 ? _prefixes[i] : \"\") + property;\n},\n _initCore = function _initCore() {\n if (_windowExists() && window.document) {\n _win = window;\n _doc = _win.document;\n _docElement = _doc.documentElement;\n _tempDiv = _createElement(\"div\") || {\n style: {}\n };\n _tempDivStyler = _createElement(\"div\");\n _transformProp = _checkPropPrefix(_transformProp);\n _transformOriginProp = _transformProp + \"Origin\";\n _tempDiv.style.cssText = \"border-width:0;line-height:0;position:absolute;padding:0\"; //make sure to override certain properties that may contaminate measurements, in case the user has overreaching style sheets.\n\n _supports3D = !!_checkPropPrefix(\"perspective\");\n _reverting = gsap.core.reverting;\n _pluginInitted = 1;\n }\n},\n _getReparentedCloneBBox = function _getReparentedCloneBBox(target) {\n //works around issues in some browsers (like Firefox) that don't correctly report getBBox() on SVG elements inside a element and/or . We try creating an SVG, adding it to the documentElement and toss the element in there so that it's definitely part of the rendering tree, then grab the bbox and if it works, we actually swap out the original getBBox() method for our own that does these extra steps whenever getBBox is needed. This helps ensure that performance is optimal (only do all these extra steps when absolutely necessary...most elements don't need it).\n var owner = target.ownerSVGElement,\n svg = _createElement(\"svg\", owner && owner.getAttribute(\"xmlns\") || \"http://www.w3.org/2000/svg\"),\n clone = target.cloneNode(true),\n bbox;\n\n clone.style.display = \"block\";\n svg.appendChild(clone);\n\n _docElement.appendChild(svg);\n\n try {\n bbox = clone.getBBox();\n } catch (e) {}\n\n svg.removeChild(clone);\n\n _docElement.removeChild(svg);\n\n return bbox;\n},\n _getAttributeFallbacks = function _getAttributeFallbacks(target, attributesArray) {\n var i = attributesArray.length;\n\n while (i--) {\n if (target.hasAttribute(attributesArray[i])) {\n return target.getAttribute(attributesArray[i]);\n }\n }\n},\n _getBBox = function _getBBox(target) {\n var bounds, cloned;\n\n try {\n bounds = target.getBBox(); //Firefox throws errors if you try calling getBBox() on an SVG element that's not rendered (like in a or ). https://bugzilla.mozilla.org/show_bug.cgi?id=612118\n } catch (error) {\n bounds = _getReparentedCloneBBox(target);\n cloned = 1;\n }\n\n bounds && (bounds.width || bounds.height) || cloned || (bounds = _getReparentedCloneBBox(target)); //some browsers (like Firefox) misreport the bounds if the element has zero width and height (it just assumes it's at x:0, y:0), thus we need to manually grab the position in that case.\n\n return bounds && !bounds.width && !bounds.x && !bounds.y ? {\n x: +_getAttributeFallbacks(target, [\"x\", \"cx\", \"x1\"]) || 0,\n y: +_getAttributeFallbacks(target, [\"y\", \"cy\", \"y1\"]) || 0,\n width: 0,\n height: 0\n } : bounds;\n},\n _isSVG = function _isSVG(e) {\n return !!(e.getCTM && (!e.parentNode || e.ownerSVGElement) && _getBBox(e));\n},\n //reports if the element is an SVG on which getBBox() actually works\n_removeProperty = function _removeProperty(target, property) {\n if (property) {\n var style = target.style,\n first2Chars;\n\n if (property in _transformProps && property !== _transformOriginProp) {\n property = _transformProp;\n }\n\n if (style.removeProperty) {\n first2Chars = property.substr(0, 2);\n\n if (first2Chars === \"ms\" || property.substr(0, 6) === \"webkit\") {\n //Microsoft and some Webkit browsers don't conform to the standard of capitalizing the first prefix character, so we adjust so that when we prefix the caps with a dash, it's correct (otherwise it'd be \"ms-transform\" instead of \"-ms-transform\" for IE9, for example)\n property = \"-\" + property;\n }\n\n style.removeProperty(first2Chars === \"--\" ? property : property.replace(_capsExp, \"-$1\").toLowerCase());\n } else {\n //note: old versions of IE use \"removeAttribute()\" instead of \"removeProperty()\"\n style.removeAttribute(property);\n }\n }\n},\n _addNonTweeningPT = function _addNonTweeningPT(plugin, target, property, beginning, end, onlySetAtEnd) {\n var pt = new PropTween(plugin._pt, target, property, 0, 1, onlySetAtEnd ? _renderNonTweeningValueOnlyAtEnd : _renderNonTweeningValue);\n plugin._pt = pt;\n pt.b = beginning;\n pt.e = end;\n\n plugin._props.push(property);\n\n return pt;\n},\n _nonConvertibleUnits = {\n deg: 1,\n rad: 1,\n turn: 1\n},\n _nonStandardLayouts = {\n grid: 1,\n flex: 1\n},\n //takes a single value like 20px and converts it to the unit specified, like \"%\", returning only the numeric amount.\n_convertToUnit = function _convertToUnit(target, property, value, unit) {\n var curValue = parseFloat(value) || 0,\n curUnit = (value + \"\").trim().substr((curValue + \"\").length) || \"px\",\n // some browsers leave extra whitespace at the beginning of CSS variables, hence the need to trim()\n style = _tempDiv.style,\n horizontal = _horizontalExp.test(property),\n isRootSVG = target.tagName.toLowerCase() === \"svg\",\n measureProperty = (isRootSVG ? \"client\" : \"offset\") + (horizontal ? \"Width\" : \"Height\"),\n amount = 100,\n toPixels = unit === \"px\",\n toPercent = unit === \"%\",\n px,\n parent,\n cache,\n isSVG;\n\n if (unit === curUnit || !curValue || _nonConvertibleUnits[unit] || _nonConvertibleUnits[curUnit]) {\n return curValue;\n }\n\n curUnit !== \"px\" && !toPixels && (curValue = _convertToUnit(target, property, value, \"px\"));\n isSVG = target.getCTM && _isSVG(target);\n\n if ((toPercent || curUnit === \"%\") && (_transformProps[property] || ~property.indexOf(\"adius\"))) {\n px = isSVG ? target.getBBox()[horizontal ? \"width\" : \"height\"] : target[measureProperty];\n return _round(toPercent ? curValue / px * amount : curValue / 100 * px);\n }\n\n style[horizontal ? \"width\" : \"height\"] = amount + (toPixels ? curUnit : unit);\n parent = unit !== \"rem\" && ~property.indexOf(\"adius\") || unit === \"em\" && target.appendChild && !isRootSVG ? target : target.parentNode;\n\n if (isSVG) {\n parent = (target.ownerSVGElement || {}).parentNode;\n }\n\n if (!parent || parent === _doc || !parent.appendChild) {\n parent = _doc.body;\n }\n\n cache = parent._gsap;\n\n if (cache && toPercent && cache.width && horizontal && cache.time === _ticker.time && !cache.uncache) {\n return _round(curValue / cache.width * amount);\n } else {\n if (toPercent && (property === \"height\" || property === \"width\")) {\n // if we're dealing with width/height that's inside a container with padding and/or it's a flexbox/grid container, we must apply it to the target itself rather than the _tempDiv in order to ensure complete accuracy, factoring in the parent's padding.\n var v = target.style[property];\n target.style[property] = amount + unit;\n px = target[measureProperty];\n v ? target.style[property] = v : _removeProperty(target, property);\n } else {\n (toPercent || curUnit === \"%\") && !_nonStandardLayouts[_getComputedProperty(parent, \"display\")] && (style.position = _getComputedProperty(target, \"position\"));\n parent === target && (style.position = \"static\"); // like for borderRadius, if it's a % we must have it relative to the target itself but that may not have position: relative or position: absolute in which case it'd go up the chain until it finds its offsetParent (bad). position: static protects against that.\n\n parent.appendChild(_tempDiv);\n px = _tempDiv[measureProperty];\n parent.removeChild(_tempDiv);\n style.position = \"absolute\";\n }\n\n if (horizontal && toPercent) {\n cache = _getCache(parent);\n cache.time = _ticker.time;\n cache.width = parent[measureProperty];\n }\n }\n\n return _round(toPixels ? px * curValue / amount : px && curValue ? amount / px * curValue : 0);\n},\n _get = function _get(target, property, unit, uncache) {\n var value;\n _pluginInitted || _initCore();\n\n if (property in _propertyAliases && property !== \"transform\") {\n property = _propertyAliases[property];\n\n if (~property.indexOf(\",\")) {\n property = property.split(\",\")[0];\n }\n }\n\n if (_transformProps[property] && property !== \"transform\") {\n value = _parseTransform(target, uncache);\n value = property !== \"transformOrigin\" ? value[property] : value.svg ? value.origin : _firstTwoOnly(_getComputedProperty(target, _transformOriginProp)) + \" \" + value.zOrigin + \"px\";\n } else {\n value = target.style[property];\n\n if (!value || value === \"auto\" || uncache || ~(value + \"\").indexOf(\"calc(\")) {\n value = _specialProps[property] && _specialProps[property](target, property, unit) || _getComputedProperty(target, property) || _getProperty(target, property) || (property === \"opacity\" ? 1 : 0); // note: some browsers, like Firefox, don't report borderRadius correctly! Instead, it only reports every corner like borderTopLeftRadius\n }\n }\n\n return unit && !~(value + \"\").trim().indexOf(\" \") ? _convertToUnit(target, property, value, unit) + unit : value;\n},\n _tweenComplexCSSString = function _tweenComplexCSSString(target, prop, start, end) {\n // note: we call _tweenComplexCSSString.call(pluginInstance...) to ensure that it's scoped properly. We may call it from within a plugin too, thus \"this\" would refer to the plugin.\n if (!start || start === \"none\") {\n // some browsers like Safari actually PREFER the prefixed property and mis-report the unprefixed value like clipPath (BUG). In other words, even though clipPath exists in the style (\"clipPath\" in target.style) and it's set in the CSS properly (along with -webkit-clip-path), Safari reports clipPath as \"none\" whereas WebkitClipPath reports accurately like \"ellipse(100% 0% at 50% 0%)\", so in this case we must SWITCH to using the prefixed property instead. See https://gsap.com/forums/topic/18310-clippath-doesnt-work-on-ios/\n var p = _checkPropPrefix(prop, target, 1),\n s = p && _getComputedProperty(target, p, 1);\n\n if (s && s !== start) {\n prop = p;\n start = s;\n } else if (prop === \"borderColor\") {\n start = _getComputedProperty(target, \"borderTopColor\"); // Firefox bug: always reports \"borderColor\" as \"\", so we must fall back to borderTopColor. See https://gsap.com/forums/topic/24583-how-to-return-colors-that-i-had-after-reverse/\n }\n }\n\n var pt = new PropTween(this._pt, target.style, prop, 0, 1, _renderComplexString),\n index = 0,\n matchIndex = 0,\n a,\n result,\n startValues,\n startNum,\n color,\n startValue,\n endValue,\n endNum,\n chunk,\n endUnit,\n startUnit,\n endValues;\n pt.b = start;\n pt.e = end;\n start += \"\"; // ensure values are strings\n\n end += \"\";\n\n if (end.substring(0, 6) === \"var(--\") {\n end = _getComputedProperty(target, end.substring(4, end.indexOf(\")\")));\n }\n\n if (end === \"auto\") {\n startValue = target.style[prop];\n target.style[prop] = end;\n end = _getComputedProperty(target, prop) || end;\n startValue ? target.style[prop] = startValue : _removeProperty(target, prop);\n }\n\n a = [start, end];\n\n _colorStringFilter(a); // pass an array with the starting and ending values and let the filter do whatever it needs to the values. If colors are found, it returns true and then we must match where the color shows up order-wise because for things like boxShadow, sometimes the browser provides the computed values with the color FIRST, but the user provides it with the color LAST, so flip them if necessary. Same for drop-shadow().\n\n\n start = a[0];\n end = a[1];\n startValues = start.match(_numWithUnitExp) || [];\n endValues = end.match(_numWithUnitExp) || [];\n\n if (endValues.length) {\n while (result = _numWithUnitExp.exec(end)) {\n endValue = result[0];\n chunk = end.substring(index, result.index);\n\n if (color) {\n color = (color + 1) % 5;\n } else if (chunk.substr(-5) === \"rgba(\" || chunk.substr(-5) === \"hsla(\") {\n color = 1;\n }\n\n if (endValue !== (startValue = startValues[matchIndex++] || \"\")) {\n startNum = parseFloat(startValue) || 0;\n startUnit = startValue.substr((startNum + \"\").length);\n endValue.charAt(1) === \"=\" && (endValue = _parseRelative(startNum, endValue) + startUnit);\n endNum = parseFloat(endValue);\n endUnit = endValue.substr((endNum + \"\").length);\n index = _numWithUnitExp.lastIndex - endUnit.length;\n\n if (!endUnit) {\n //if something like \"perspective:300\" is passed in and we must add a unit to the end\n endUnit = endUnit || _config.units[prop] || startUnit;\n\n if (index === end.length) {\n end += endUnit;\n pt.e += endUnit;\n }\n }\n\n if (startUnit !== endUnit) {\n startNum = _convertToUnit(target, prop, startValue, endUnit) || 0;\n } // these nested PropTweens are handled in a special way - we'll never actually call a render or setter method on them. We'll just loop through them in the parent complex string PropTween's render method.\n\n\n pt._pt = {\n _next: pt._pt,\n p: chunk || matchIndex === 1 ? chunk : \",\",\n //note: SVG spec allows omission of comma/space when a negative sign is wedged between two numbers, like 2.5-5.3 instead of 2.5,-5.3 but when tweening, the negative value may switch to positive, so we insert the comma just in case.\n s: startNum,\n c: endNum - startNum,\n m: color && color < 4 || prop === \"zIndex\" ? Math.round : 0\n };\n }\n }\n\n pt.c = index < end.length ? end.substring(index, end.length) : \"\"; //we use the \"c\" of the PropTween to store the final part of the string (after the last number)\n } else {\n pt.r = prop === \"display\" && end === \"none\" ? _renderNonTweeningValueOnlyAtEnd : _renderNonTweeningValue;\n }\n\n _relExp.test(end) && (pt.e = 0); //if the end string contains relative values or dynamic random(...) values, delete the end it so that on the final render we don't actually set it to the string with += or -= characters (forces it to use the calculated value).\n\n this._pt = pt; //start the linked list with this new PropTween. Remember, we call _tweenComplexCSSString.call(pluginInstance...) to ensure that it's scoped properly. We may call it from within another plugin too, thus \"this\" would refer to the plugin.\n\n return pt;\n},\n _keywordToPercent = {\n top: \"0%\",\n bottom: \"100%\",\n left: \"0%\",\n right: \"100%\",\n center: \"50%\"\n},\n _convertKeywordsToPercentages = function _convertKeywordsToPercentages(value) {\n var split = value.split(\" \"),\n x = split[0],\n y = split[1] || \"50%\";\n\n if (x === \"top\" || x === \"bottom\" || y === \"left\" || y === \"right\") {\n //the user provided them in the wrong order, so flip them\n value = x;\n x = y;\n y = value;\n }\n\n split[0] = _keywordToPercent[x] || x;\n split[1] = _keywordToPercent[y] || y;\n return split.join(\" \");\n},\n _renderClearProps = function _renderClearProps(ratio, data) {\n if (data.tween && data.tween._time === data.tween._dur) {\n var target = data.t,\n style = target.style,\n props = data.u,\n cache = target._gsap,\n prop,\n clearTransforms,\n i;\n\n if (props === \"all\" || props === true) {\n style.cssText = \"\";\n clearTransforms = 1;\n } else {\n props = props.split(\",\");\n i = props.length;\n\n while (--i > -1) {\n prop = props[i];\n\n if (_transformProps[prop]) {\n clearTransforms = 1;\n prop = prop === \"transformOrigin\" ? _transformOriginProp : _transformProp;\n }\n\n _removeProperty(target, prop);\n }\n }\n\n if (clearTransforms) {\n _removeProperty(target, _transformProp);\n\n if (cache) {\n cache.svg && target.removeAttribute(\"transform\");\n style.scale = style.rotate = style.translate = \"none\";\n\n _parseTransform(target, 1); // force all the cached values back to \"normal\"/identity, otherwise if there's another tween that's already set to render transforms on this element, it could display the wrong values.\n\n\n cache.uncache = 1;\n\n _removeIndependentTransforms(style);\n }\n }\n }\n},\n // note: specialProps should return 1 if (and only if) they have a non-zero priority. It indicates we need to sort the linked list.\n_specialProps = {\n clearProps: function clearProps(plugin, target, property, endValue, tween) {\n if (tween.data !== \"isFromStart\") {\n var pt = plugin._pt = new PropTween(plugin._pt, target, property, 0, 0, _renderClearProps);\n pt.u = endValue;\n pt.pr = -10;\n pt.tween = tween;\n\n plugin._props.push(property);\n\n return 1;\n }\n }\n /* className feature (about 0.4kb gzipped).\n , className(plugin, target, property, endValue, tween) {\n \tlet _renderClassName = (ratio, data) => {\n \t\t\tdata.css.render(ratio, data.css);\n \t\t\tif (!ratio || ratio === 1) {\n \t\t\t\tlet inline = data.rmv,\n \t\t\t\t\ttarget = data.t,\n \t\t\t\t\tp;\n \t\t\t\ttarget.setAttribute(\"class\", ratio ? data.e : data.b);\n \t\t\t\tfor (p in inline) {\n \t\t\t\t\t_removeProperty(target, p);\n \t\t\t\t}\n \t\t\t}\n \t\t},\n \t\t_getAllStyles = (target) => {\n \t\t\tlet styles = {},\n \t\t\t\tcomputed = getComputedStyle(target),\n \t\t\t\tp;\n \t\t\tfor (p in computed) {\n \t\t\t\tif (isNaN(p) && p !== \"cssText\" && p !== \"length\") {\n \t\t\t\t\tstyles[p] = computed[p];\n \t\t\t\t}\n \t\t\t}\n \t\t\t_setDefaults(styles, _parseTransform(target, 1));\n \t\t\treturn styles;\n \t\t},\n \t\tstartClassList = target.getAttribute(\"class\"),\n \t\tstyle = target.style,\n \t\tcssText = style.cssText,\n \t\tcache = target._gsap,\n \t\tclassPT = cache.classPT,\n \t\tinlineToRemoveAtEnd = {},\n \t\tdata = {t:target, plugin:plugin, rmv:inlineToRemoveAtEnd, b:startClassList, e:(endValue.charAt(1) !== \"=\") ? endValue : startClassList.replace(new RegExp(\"(?:\\\\s|^)\" + endValue.substr(2) + \"(?![\\\\w-])\"), \"\") + ((endValue.charAt(0) === \"+\") ? \" \" + endValue.substr(2) : \"\")},\n \t\tchangingVars = {},\n \t\tstartVars = _getAllStyles(target),\n \t\ttransformRelated = /(transform|perspective)/i,\n \t\tendVars, p;\n \tif (classPT) {\n \t\tclassPT.r(1, classPT.d);\n \t\t_removeLinkedListItem(classPT.d.plugin, classPT, \"_pt\");\n \t}\n \ttarget.setAttribute(\"class\", data.e);\n \tendVars = _getAllStyles(target, true);\n \ttarget.setAttribute(\"class\", startClassList);\n \tfor (p in endVars) {\n \t\tif (endVars[p] !== startVars[p] && !transformRelated.test(p)) {\n \t\t\tchangingVars[p] = endVars[p];\n \t\t\tif (!style[p] && style[p] !== \"0\") {\n \t\t\t\tinlineToRemoveAtEnd[p] = 1;\n \t\t\t}\n \t\t}\n \t}\n \tcache.classPT = plugin._pt = new PropTween(plugin._pt, target, \"className\", 0, 0, _renderClassName, data, 0, -11);\n \tif (style.cssText !== cssText) { //only apply if things change. Otherwise, in cases like a background-image that's pulled dynamically, it could cause a refresh. See https://gsap.com/forums/topic/20368-possible-gsap-bug-switching-classnames-in-chrome/.\n \t\tstyle.cssText = cssText; //we recorded cssText before we swapped classes and ran _getAllStyles() because in cases when a className tween is overwritten, we remove all the related tweening properties from that class change (otherwise class-specific stuff can't override properties we've directly set on the target's style object due to specificity).\n \t}\n \t_parseTransform(target, true); //to clear the caching of transforms\n \tdata.css = new gsap.plugins.css();\n \tdata.css.init(target, changingVars, tween);\n \tplugin._props.push(...data.css._props);\n \treturn 1;\n }\n */\n\n},\n\n/*\n * --------------------------------------------------------------------------------------\n * TRANSFORMS\n * --------------------------------------------------------------------------------------\n */\n_identity2DMatrix = [1, 0, 0, 1, 0, 0],\n _rotationalProperties = {},\n _isNullTransform = function _isNullTransform(value) {\n return value === \"matrix(1, 0, 0, 1, 0, 0)\" || value === \"none\" || !value;\n},\n _getComputedTransformMatrixAsArray = function _getComputedTransformMatrixAsArray(target) {\n var matrixString = _getComputedProperty(target, _transformProp);\n\n return _isNullTransform(matrixString) ? _identity2DMatrix : matrixString.substr(7).match(_numExp).map(_round);\n},\n _getMatrix = function _getMatrix(target, force2D) {\n var cache = target._gsap || _getCache(target),\n style = target.style,\n matrix = _getComputedTransformMatrixAsArray(target),\n parent,\n nextSibling,\n temp,\n addedToDOM;\n\n if (cache.svg && target.getAttribute(\"transform\")) {\n temp = target.transform.baseVal.consolidate().matrix; //ensures that even complex values like \"translate(50,60) rotate(135,0,0)\" are parsed because it mashes it into a matrix.\n\n matrix = [temp.a, temp.b, temp.c, temp.d, temp.e, temp.f];\n return matrix.join(\",\") === \"1,0,0,1,0,0\" ? _identity2DMatrix : matrix;\n } else if (matrix === _identity2DMatrix && !target.offsetParent && target !== _docElement && !cache.svg) {\n //note: if offsetParent is null, that means the element isn't in the normal document flow, like if it has display:none or one of its ancestors has display:none). Firefox returns null for getComputedStyle() if the element is in an iframe that has display:none. https://bugzilla.mozilla.org/show_bug.cgi?id=548397\n //browsers don't report transforms accurately unless the element is in the DOM and has a display value that's not \"none\". Firefox and Microsoft browsers have a partial bug where they'll report transforms even if display:none BUT not any percentage-based values like translate(-50%, 8px) will be reported as if it's translate(0, 8px).\n temp = style.display;\n style.display = \"block\";\n parent = target.parentNode;\n\n if (!parent || !target.offsetParent && !target.getBoundingClientRect().width) {\n // note: in 3.3.0 we switched target.offsetParent to _doc.body.contains(target) to avoid [sometimes unnecessary] MutationObserver calls but that wasn't adequate because there are edge cases where nested position: fixed elements need to get reparented to accurately sense transforms. See https://github.com/greensock/GSAP/issues/388 and https://github.com/greensock/GSAP/issues/375. Note: position: fixed elements report a null offsetParent but they could also be invisible because they're in an ancestor with display: none, so we check getBoundingClientRect(). We only want to alter the DOM if we absolutely have to because it can cause iframe content to reload, like a Vimeo video.\n addedToDOM = 1; //flag\n\n nextSibling = target.nextElementSibling;\n\n _docElement.appendChild(target); //we must add it to the DOM in order to get values properly\n\n }\n\n matrix = _getComputedTransformMatrixAsArray(target);\n temp ? style.display = temp : _removeProperty(target, \"display\");\n\n if (addedToDOM) {\n nextSibling ? parent.insertBefore(target, nextSibling) : parent ? parent.appendChild(target) : _docElement.removeChild(target);\n }\n }\n\n return force2D && matrix.length > 6 ? [matrix[0], matrix[1], matrix[4], matrix[5], matrix[12], matrix[13]] : matrix;\n},\n _applySVGOrigin = function _applySVGOrigin(target, origin, originIsAbsolute, smooth, matrixArray, pluginToAddPropTweensTo) {\n var cache = target._gsap,\n matrix = matrixArray || _getMatrix(target, true),\n xOriginOld = cache.xOrigin || 0,\n yOriginOld = cache.yOrigin || 0,\n xOffsetOld = cache.xOffset || 0,\n yOffsetOld = cache.yOffset || 0,\n a = matrix[0],\n b = matrix[1],\n c = matrix[2],\n d = matrix[3],\n tx = matrix[4],\n ty = matrix[5],\n originSplit = origin.split(\" \"),\n xOrigin = parseFloat(originSplit[0]) || 0,\n yOrigin = parseFloat(originSplit[1]) || 0,\n bounds,\n determinant,\n x,\n y;\n\n if (!originIsAbsolute) {\n bounds = _getBBox(target);\n xOrigin = bounds.x + (~originSplit[0].indexOf(\"%\") ? xOrigin / 100 * bounds.width : xOrigin);\n yOrigin = bounds.y + (~(originSplit[1] || originSplit[0]).indexOf(\"%\") ? yOrigin / 100 * bounds.height : yOrigin); // if (!(\"xOrigin\" in cache) && (xOrigin || yOrigin)) { // added in 3.12.3, reverted in 3.12.4; requires more exploration\n // \txOrigin -= bounds.x;\n // \tyOrigin -= bounds.y;\n // }\n } else if (matrix !== _identity2DMatrix && (determinant = a * d - b * c)) {\n //if it's zero (like if scaleX and scaleY are zero), skip it to avoid errors with dividing by zero.\n x = xOrigin * (d / determinant) + yOrigin * (-c / determinant) + (c * ty - d * tx) / determinant;\n y = xOrigin * (-b / determinant) + yOrigin * (a / determinant) - (a * ty - b * tx) / determinant;\n xOrigin = x;\n yOrigin = y; // theory: we only had to do this for smoothing and it assumes that the previous one was not originIsAbsolute.\n }\n\n if (smooth || smooth !== false && cache.smooth) {\n tx = xOrigin - xOriginOld;\n ty = yOrigin - yOriginOld;\n cache.xOffset = xOffsetOld + (tx * a + ty * c) - tx;\n cache.yOffset = yOffsetOld + (tx * b + ty * d) - ty;\n } else {\n cache.xOffset = cache.yOffset = 0;\n }\n\n cache.xOrigin = xOrigin;\n cache.yOrigin = yOrigin;\n cache.smooth = !!smooth;\n cache.origin = origin;\n cache.originIsAbsolute = !!originIsAbsolute;\n target.style[_transformOriginProp] = \"0px 0px\"; //otherwise, if someone sets an origin via CSS, it will likely interfere with the SVG transform attribute ones (because remember, we're baking the origin into the matrix() value).\n\n if (pluginToAddPropTweensTo) {\n _addNonTweeningPT(pluginToAddPropTweensTo, cache, \"xOrigin\", xOriginOld, xOrigin);\n\n _addNonTweeningPT(pluginToAddPropTweensTo, cache, \"yOrigin\", yOriginOld, yOrigin);\n\n _addNonTweeningPT(pluginToAddPropTweensTo, cache, \"xOffset\", xOffsetOld, cache.xOffset);\n\n _addNonTweeningPT(pluginToAddPropTweensTo, cache, \"yOffset\", yOffsetOld, cache.yOffset);\n }\n\n target.setAttribute(\"data-svg-origin\", xOrigin + \" \" + yOrigin);\n},\n _parseTransform = function _parseTransform(target, uncache) {\n var cache = target._gsap || new GSCache(target);\n\n if (\"x\" in cache && !uncache && !cache.uncache) {\n return cache;\n }\n\n var style = target.style,\n invertedScaleX = cache.scaleX < 0,\n px = \"px\",\n deg = \"deg\",\n cs = getComputedStyle(target),\n origin = _getComputedProperty(target, _transformOriginProp) || \"0\",\n x,\n y,\n z,\n scaleX,\n scaleY,\n rotation,\n rotationX,\n rotationY,\n skewX,\n skewY,\n perspective,\n xOrigin,\n yOrigin,\n matrix,\n angle,\n cos,\n sin,\n a,\n b,\n c,\n d,\n a12,\n a22,\n t1,\n t2,\n t3,\n a13,\n a23,\n a33,\n a42,\n a43,\n a32;\n x = y = z = rotation = rotationX = rotationY = skewX = skewY = perspective = 0;\n scaleX = scaleY = 1;\n cache.svg = !!(target.getCTM && _isSVG(target));\n\n if (cs.translate) {\n // accommodate independent transforms by combining them into normal ones.\n if (cs.translate !== \"none\" || cs.scale !== \"none\" || cs.rotate !== \"none\") {\n style[_transformProp] = (cs.translate !== \"none\" ? \"translate3d(\" + (cs.translate + \" 0 0\").split(\" \").slice(0, 3).join(\", \") + \") \" : \"\") + (cs.rotate !== \"none\" ? \"rotate(\" + cs.rotate + \") \" : \"\") + (cs.scale !== \"none\" ? \"scale(\" + cs.scale.split(\" \").join(\",\") + \") \" : \"\") + (cs[_transformProp] !== \"none\" ? cs[_transformProp] : \"\");\n }\n\n style.scale = style.rotate = style.translate = \"none\";\n }\n\n matrix = _getMatrix(target, cache.svg);\n\n if (cache.svg) {\n if (cache.uncache) {\n // if cache.uncache is true (and maybe if origin is 0,0), we need to set element.style.transformOrigin = (cache.xOrigin - bbox.x) + \"px \" + (cache.yOrigin - bbox.y) + \"px\". Previously we let the data-svg-origin stay instead, but when introducing revert(), it complicated things.\n t2 = target.getBBox();\n origin = cache.xOrigin - t2.x + \"px \" + (cache.yOrigin - t2.y) + \"px\";\n t1 = \"\";\n } else {\n t1 = !uncache && target.getAttribute(\"data-svg-origin\"); // Remember, to work around browser inconsistencies we always force SVG elements' transformOrigin to 0,0 and offset the translation accordingly.\n }\n\n _applySVGOrigin(target, t1 || origin, !!t1 || cache.originIsAbsolute, cache.smooth !== false, matrix);\n }\n\n xOrigin = cache.xOrigin || 0;\n yOrigin = cache.yOrigin || 0;\n\n if (matrix !== _identity2DMatrix) {\n a = matrix[0]; //a11\n\n b = matrix[1]; //a21\n\n c = matrix[2]; //a31\n\n d = matrix[3]; //a41\n\n x = a12 = matrix[4];\n y = a22 = matrix[5]; //2D matrix\n\n if (matrix.length === 6) {\n scaleX = Math.sqrt(a * a + b * b);\n scaleY = Math.sqrt(d * d + c * c);\n rotation = a || b ? _atan2(b, a) * _RAD2DEG : 0; //note: if scaleX is 0, we cannot accurately measure rotation. Same for skewX with a scaleY of 0. Therefore, we default to the previously recorded value (or zero if that doesn't exist).\n\n skewX = c || d ? _atan2(c, d) * _RAD2DEG + rotation : 0;\n skewX && (scaleY *= Math.abs(Math.cos(skewX * _DEG2RAD)));\n\n if (cache.svg) {\n x -= xOrigin - (xOrigin * a + yOrigin * c);\n y -= yOrigin - (xOrigin * b + yOrigin * d);\n } //3D matrix\n\n } else {\n a32 = matrix[6];\n a42 = matrix[7];\n a13 = matrix[8];\n a23 = matrix[9];\n a33 = matrix[10];\n a43 = matrix[11];\n x = matrix[12];\n y = matrix[13];\n z = matrix[14];\n angle = _atan2(a32, a33);\n rotationX = angle * _RAD2DEG; //rotationX\n\n if (angle) {\n cos = Math.cos(-angle);\n sin = Math.sin(-angle);\n t1 = a12 * cos + a13 * sin;\n t2 = a22 * cos + a23 * sin;\n t3 = a32 * cos + a33 * sin;\n a13 = a12 * -sin + a13 * cos;\n a23 = a22 * -sin + a23 * cos;\n a33 = a32 * -sin + a33 * cos;\n a43 = a42 * -sin + a43 * cos;\n a12 = t1;\n a22 = t2;\n a32 = t3;\n } //rotationY\n\n\n angle = _atan2(-c, a33);\n rotationY = angle * _RAD2DEG;\n\n if (angle) {\n cos = Math.cos(-angle);\n sin = Math.sin(-angle);\n t1 = a * cos - a13 * sin;\n t2 = b * cos - a23 * sin;\n t3 = c * cos - a33 * sin;\n a43 = d * sin + a43 * cos;\n a = t1;\n b = t2;\n c = t3;\n } //rotationZ\n\n\n angle = _atan2(b, a);\n rotation = angle * _RAD2DEG;\n\n if (angle) {\n cos = Math.cos(angle);\n sin = Math.sin(angle);\n t1 = a * cos + b * sin;\n t2 = a12 * cos + a22 * sin;\n b = b * cos - a * sin;\n a22 = a22 * cos - a12 * sin;\n a = t1;\n a12 = t2;\n }\n\n if (rotationX && Math.abs(rotationX) + Math.abs(rotation) > 359.9) {\n //when rotationY is set, it will often be parsed as 180 degrees different than it should be, and rotationX and rotation both being 180 (it looks the same), so we adjust for that here.\n rotationX = rotation = 0;\n rotationY = 180 - rotationY;\n }\n\n scaleX = _round(Math.sqrt(a * a + b * b + c * c));\n scaleY = _round(Math.sqrt(a22 * a22 + a32 * a32));\n angle = _atan2(a12, a22);\n skewX = Math.abs(angle) > 0.0002 ? angle * _RAD2DEG : 0;\n perspective = a43 ? 1 / (a43 < 0 ? -a43 : a43) : 0;\n }\n\n if (cache.svg) {\n //sense if there are CSS transforms applied on an SVG element in which case we must overwrite them when rendering. The transform attribute is more reliable cross-browser, but we can't just remove the CSS ones because they may be applied in a CSS rule somewhere (not just inline).\n t1 = target.getAttribute(\"transform\");\n cache.forceCSS = target.setAttribute(\"transform\", \"\") || !_isNullTransform(_getComputedProperty(target, _transformProp));\n t1 && target.setAttribute(\"transform\", t1);\n }\n }\n\n if (Math.abs(skewX) > 90 && Math.abs(skewX) < 270) {\n if (invertedScaleX) {\n scaleX *= -1;\n skewX += rotation <= 0 ? 180 : -180;\n rotation += rotation <= 0 ? 180 : -180;\n } else {\n scaleY *= -1;\n skewX += skewX <= 0 ? 180 : -180;\n }\n }\n\n uncache = uncache || cache.uncache;\n cache.x = x - ((cache.xPercent = x && (!uncache && cache.xPercent || (Math.round(target.offsetWidth / 2) === Math.round(-x) ? -50 : 0))) ? target.offsetWidth * cache.xPercent / 100 : 0) + px;\n cache.y = y - ((cache.yPercent = y && (!uncache && cache.yPercent || (Math.round(target.offsetHeight / 2) === Math.round(-y) ? -50 : 0))) ? target.offsetHeight * cache.yPercent / 100 : 0) + px;\n cache.z = z + px;\n cache.scaleX = _round(scaleX);\n cache.scaleY = _round(scaleY);\n cache.rotation = _round(rotation) + deg;\n cache.rotationX = _round(rotationX) + deg;\n cache.rotationY = _round(rotationY) + deg;\n cache.skewX = skewX + deg;\n cache.skewY = skewY + deg;\n cache.transformPerspective = perspective + px;\n\n if (cache.zOrigin = parseFloat(origin.split(\" \")[2]) || !uncache && cache.zOrigin || 0) {\n style[_transformOriginProp] = _firstTwoOnly(origin);\n }\n\n cache.xOffset = cache.yOffset = 0;\n cache.force3D = _config.force3D;\n cache.renderTransform = cache.svg ? _renderSVGTransforms : _supports3D ? _renderCSSTransforms : _renderNon3DTransforms;\n cache.uncache = 0;\n return cache;\n},\n _firstTwoOnly = function _firstTwoOnly(value) {\n return (value = value.split(\" \"))[0] + \" \" + value[1];\n},\n //for handling transformOrigin values, stripping out the 3rd dimension\n_addPxTranslate = function _addPxTranslate(target, start, value) {\n var unit = getUnit(start);\n return _round(parseFloat(start) + parseFloat(_convertToUnit(target, \"x\", value + \"px\", unit))) + unit;\n},\n _renderNon3DTransforms = function _renderNon3DTransforms(ratio, cache) {\n cache.z = \"0px\";\n cache.rotationY = cache.rotationX = \"0deg\";\n cache.force3D = 0;\n\n _renderCSSTransforms(ratio, cache);\n},\n _zeroDeg = \"0deg\",\n _zeroPx = \"0px\",\n _endParenthesis = \") \",\n _renderCSSTransforms = function _renderCSSTransforms(ratio, cache) {\n var _ref = cache || this,\n xPercent = _ref.xPercent,\n yPercent = _ref.yPercent,\n x = _ref.x,\n y = _ref.y,\n z = _ref.z,\n rotation = _ref.rotation,\n rotationY = _ref.rotationY,\n rotationX = _ref.rotationX,\n skewX = _ref.skewX,\n skewY = _ref.skewY,\n scaleX = _ref.scaleX,\n scaleY = _ref.scaleY,\n transformPerspective = _ref.transformPerspective,\n force3D = _ref.force3D,\n target = _ref.target,\n zOrigin = _ref.zOrigin,\n transforms = \"\",\n use3D = force3D === \"auto\" && ratio && ratio !== 1 || force3D === true; // Safari has a bug that causes it not to render 3D transform-origin values properly, so we force the z origin to 0, record it in the cache, and then do the math here to offset the translate values accordingly (basically do the 3D transform-origin part manually)\n\n\n if (zOrigin && (rotationX !== _zeroDeg || rotationY !== _zeroDeg)) {\n var angle = parseFloat(rotationY) * _DEG2RAD,\n a13 = Math.sin(angle),\n a33 = Math.cos(angle),\n cos;\n\n angle = parseFloat(rotationX) * _DEG2RAD;\n cos = Math.cos(angle);\n x = _addPxTranslate(target, x, a13 * cos * -zOrigin);\n y = _addPxTranslate(target, y, -Math.sin(angle) * -zOrigin);\n z = _addPxTranslate(target, z, a33 * cos * -zOrigin + zOrigin);\n }\n\n if (transformPerspective !== _zeroPx) {\n transforms += \"perspective(\" + transformPerspective + _endParenthesis;\n }\n\n if (xPercent || yPercent) {\n transforms += \"translate(\" + xPercent + \"%, \" + yPercent + \"%) \";\n }\n\n if (use3D || x !== _zeroPx || y !== _zeroPx || z !== _zeroPx) {\n transforms += z !== _zeroPx || use3D ? \"translate3d(\" + x + \", \" + y + \", \" + z + \") \" : \"translate(\" + x + \", \" + y + _endParenthesis;\n }\n\n if (rotation !== _zeroDeg) {\n transforms += \"rotate(\" + rotation + _endParenthesis;\n }\n\n if (rotationY !== _zeroDeg) {\n transforms += \"rotateY(\" + rotationY + _endParenthesis;\n }\n\n if (rotationX !== _zeroDeg) {\n transforms += \"rotateX(\" + rotationX + _endParenthesis;\n }\n\n if (skewX !== _zeroDeg || skewY !== _zeroDeg) {\n transforms += \"skew(\" + skewX + \", \" + skewY + _endParenthesis;\n }\n\n if (scaleX !== 1 || scaleY !== 1) {\n transforms += \"scale(\" + scaleX + \", \" + scaleY + _endParenthesis;\n }\n\n target.style[_transformProp] = transforms || \"translate(0, 0)\";\n},\n _renderSVGTransforms = function _renderSVGTransforms(ratio, cache) {\n var _ref2 = cache || this,\n xPercent = _ref2.xPercent,\n yPercent = _ref2.yPercent,\n x = _ref2.x,\n y = _ref2.y,\n rotation = _ref2.rotation,\n skewX = _ref2.skewX,\n skewY = _ref2.skewY,\n scaleX = _ref2.scaleX,\n scaleY = _ref2.scaleY,\n target = _ref2.target,\n xOrigin = _ref2.xOrigin,\n yOrigin = _ref2.yOrigin,\n xOffset = _ref2.xOffset,\n yOffset = _ref2.yOffset,\n forceCSS = _ref2.forceCSS,\n tx = parseFloat(x),\n ty = parseFloat(y),\n a11,\n a21,\n a12,\n a22,\n temp;\n\n rotation = parseFloat(rotation);\n skewX = parseFloat(skewX);\n skewY = parseFloat(skewY);\n\n if (skewY) {\n //for performance reasons, we combine all skewing into the skewX and rotation values. Remember, a skewY of 10 degrees looks the same as a rotation of 10 degrees plus a skewX of 10 degrees.\n skewY = parseFloat(skewY);\n skewX += skewY;\n rotation += skewY;\n }\n\n if (rotation || skewX) {\n rotation *= _DEG2RAD;\n skewX *= _DEG2RAD;\n a11 = Math.cos(rotation) * scaleX;\n a21 = Math.sin(rotation) * scaleX;\n a12 = Math.sin(rotation - skewX) * -scaleY;\n a22 = Math.cos(rotation - skewX) * scaleY;\n\n if (skewX) {\n skewY *= _DEG2RAD;\n temp = Math.tan(skewX - skewY);\n temp = Math.sqrt(1 + temp * temp);\n a12 *= temp;\n a22 *= temp;\n\n if (skewY) {\n temp = Math.tan(skewY);\n temp = Math.sqrt(1 + temp * temp);\n a11 *= temp;\n a21 *= temp;\n }\n }\n\n a11 = _round(a11);\n a21 = _round(a21);\n a12 = _round(a12);\n a22 = _round(a22);\n } else {\n a11 = scaleX;\n a22 = scaleY;\n a21 = a12 = 0;\n }\n\n if (tx && !~(x + \"\").indexOf(\"px\") || ty && !~(y + \"\").indexOf(\"px\")) {\n tx = _convertToUnit(target, \"x\", x, \"px\");\n ty = _convertToUnit(target, \"y\", y, \"px\");\n }\n\n if (xOrigin || yOrigin || xOffset || yOffset) {\n tx = _round(tx + xOrigin - (xOrigin * a11 + yOrigin * a12) + xOffset);\n ty = _round(ty + yOrigin - (xOrigin * a21 + yOrigin * a22) + yOffset);\n }\n\n if (xPercent || yPercent) {\n //The SVG spec doesn't support percentage-based translation in the \"transform\" attribute, so we merge it into the translation to simulate it.\n temp = target.getBBox();\n tx = _round(tx + xPercent / 100 * temp.width);\n ty = _round(ty + yPercent / 100 * temp.height);\n }\n\n temp = \"matrix(\" + a11 + \",\" + a21 + \",\" + a12 + \",\" + a22 + \",\" + tx + \",\" + ty + \")\";\n target.setAttribute(\"transform\", temp);\n forceCSS && (target.style[_transformProp] = temp); //some browsers prioritize CSS transforms over the transform attribute. When we sense that the user has CSS transforms applied, we must overwrite them this way (otherwise some browser simply won't render the transform attribute changes!)\n},\n _addRotationalPropTween = function _addRotationalPropTween(plugin, target, property, startNum, endValue) {\n var cap = 360,\n isString = _isString(endValue),\n endNum = parseFloat(endValue) * (isString && ~endValue.indexOf(\"rad\") ? _RAD2DEG : 1),\n change = endNum - startNum,\n finalValue = startNum + change + \"deg\",\n direction,\n pt;\n\n if (isString) {\n direction = endValue.split(\"_\")[1];\n\n if (direction === \"short\") {\n change %= cap;\n\n if (change !== change % (cap / 2)) {\n change += change < 0 ? cap : -cap;\n }\n }\n\n if (direction === \"cw\" && change < 0) {\n change = (change + cap * _bigNum) % cap - ~~(change / cap) * cap;\n } else if (direction === \"ccw\" && change > 0) {\n change = (change - cap * _bigNum) % cap - ~~(change / cap) * cap;\n }\n }\n\n plugin._pt = pt = new PropTween(plugin._pt, target, property, startNum, change, _renderPropWithEnd);\n pt.e = finalValue;\n pt.u = \"deg\";\n\n plugin._props.push(property);\n\n return pt;\n},\n _assign = function _assign(target, source) {\n // Internet Explorer doesn't have Object.assign(), so we recreate it here.\n for (var p in source) {\n target[p] = source[p];\n }\n\n return target;\n},\n _addRawTransformPTs = function _addRawTransformPTs(plugin, transforms, target) {\n //for handling cases where someone passes in a whole transform string, like transform: \"scale(2, 3) rotate(20deg) translateY(30em)\"\n var startCache = _assign({}, target._gsap),\n exclude = \"perspective,force3D,transformOrigin,svgOrigin\",\n style = target.style,\n endCache,\n p,\n startValue,\n endValue,\n startNum,\n endNum,\n startUnit,\n endUnit;\n\n if (startCache.svg) {\n startValue = target.getAttribute(\"transform\");\n target.setAttribute(\"transform\", \"\");\n style[_transformProp] = transforms;\n endCache = _parseTransform(target, 1);\n\n _removeProperty(target, _transformProp);\n\n target.setAttribute(\"transform\", startValue);\n } else {\n startValue = getComputedStyle(target)[_transformProp];\n style[_transformProp] = transforms;\n endCache = _parseTransform(target, 1);\n style[_transformProp] = startValue;\n }\n\n for (p in _transformProps) {\n startValue = startCache[p];\n endValue = endCache[p];\n\n if (startValue !== endValue && exclude.indexOf(p) < 0) {\n //tweening to no perspective gives very unintuitive results - just keep the same perspective in that case.\n startUnit = getUnit(startValue);\n endUnit = getUnit(endValue);\n startNum = startUnit !== endUnit ? _convertToUnit(target, p, startValue, endUnit) : parseFloat(startValue);\n endNum = parseFloat(endValue);\n plugin._pt = new PropTween(plugin._pt, endCache, p, startNum, endNum - startNum, _renderCSSProp);\n plugin._pt.u = endUnit || 0;\n\n plugin._props.push(p);\n }\n }\n\n _assign(endCache, startCache);\n}; // handle splitting apart padding, margin, borderWidth, and borderRadius into their 4 components. Firefox, for example, won't report borderRadius correctly - it will only do borderTopLeftRadius and the other corners. We also want to handle paddingTop, marginLeft, borderRightWidth, etc.\n\n\n_forEachName(\"padding,margin,Width,Radius\", function (name, index) {\n var t = \"Top\",\n r = \"Right\",\n b = \"Bottom\",\n l = \"Left\",\n props = (index < 3 ? [t, r, b, l] : [t + l, t + r, b + r, b + l]).map(function (side) {\n return index < 2 ? name + side : \"border\" + side + name;\n });\n\n _specialProps[index > 1 ? \"border\" + name : name] = function (plugin, target, property, endValue, tween) {\n var a, vars;\n\n if (arguments.length < 4) {\n // getter, passed target, property, and unit (from _get())\n a = props.map(function (prop) {\n return _get(plugin, prop, property);\n });\n vars = a.join(\" \");\n return vars.split(a[0]).length === 5 ? a[0] : vars;\n }\n\n a = (endValue + \"\").split(\" \");\n vars = {};\n props.forEach(function (prop, i) {\n return vars[prop] = a[i] = a[i] || a[(i - 1) / 2 | 0];\n });\n plugin.init(target, vars, tween);\n };\n});\n\nexport var CSSPlugin = {\n name: \"css\",\n register: _initCore,\n targetTest: function targetTest(target) {\n return target.style && target.nodeType;\n },\n init: function init(target, vars, tween, index, targets) {\n var props = this._props,\n style = target.style,\n startAt = tween.vars.startAt,\n startValue,\n endValue,\n endNum,\n startNum,\n type,\n specialProp,\n p,\n startUnit,\n endUnit,\n relative,\n isTransformRelated,\n transformPropTween,\n cache,\n smooth,\n hasPriority,\n inlineProps,\n finalTransformValue;\n _pluginInitted || _initCore(); // we may call init() multiple times on the same plugin instance, like when adding special properties, so make sure we don't overwrite the revert data or inlineProps\n\n this.styles = this.styles || _getStyleSaver(target);\n inlineProps = this.styles.props;\n this.tween = tween;\n\n for (p in vars) {\n if (p === \"autoRound\") {\n continue;\n }\n\n endValue = vars[p];\n\n if (_plugins[p] && _checkPlugin(p, vars, tween, index, target, targets)) {\n // plugins\n continue;\n }\n\n type = typeof endValue;\n specialProp = _specialProps[p];\n\n if (type === \"function\") {\n endValue = endValue.call(tween, index, target, targets);\n type = typeof endValue;\n }\n\n if (type === \"string\" && ~endValue.indexOf(\"random(\")) {\n endValue = _replaceRandom(endValue);\n }\n\n if (specialProp) {\n specialProp(this, target, p, endValue, tween) && (hasPriority = 1);\n } else if (p.substr(0, 2) === \"--\") {\n //CSS variable\n startValue = (getComputedStyle(target).getPropertyValue(p) + \"\").trim();\n endValue += \"\";\n _colorExp.lastIndex = 0;\n\n if (!_colorExp.test(startValue)) {\n // colors don't have units\n startUnit = getUnit(startValue);\n endUnit = getUnit(endValue);\n endUnit ? startUnit !== endUnit && (startValue = _convertToUnit(target, p, startValue, endUnit) + endUnit) : startUnit && (endValue += startUnit);\n }\n\n this.add(style, \"setProperty\", startValue, endValue, index, targets, 0, 0, p);\n props.push(p);\n inlineProps.push(p, 0, style[p]);\n } else if (type !== \"undefined\") {\n if (startAt && p in startAt) {\n // in case someone hard-codes a complex value as the start, like top: \"calc(2vh / 2)\". Without this, it'd use the computed value (always in px)\n startValue = typeof startAt[p] === \"function\" ? startAt[p].call(tween, index, target, targets) : startAt[p];\n _isString(startValue) && ~startValue.indexOf(\"random(\") && (startValue = _replaceRandom(startValue));\n getUnit(startValue + \"\") || startValue === \"auto\" || (startValue += _config.units[p] || getUnit(_get(target, p)) || \"\"); // for cases when someone passes in a unitless value like {x: 100}; if we try setting translate(100, 0px) it won't work.\n\n (startValue + \"\").charAt(1) === \"=\" && (startValue = _get(target, p)); // can't work with relative values\n } else {\n startValue = _get(target, p);\n }\n\n startNum = parseFloat(startValue);\n relative = type === \"string\" && endValue.charAt(1) === \"=\" && endValue.substr(0, 2);\n relative && (endValue = endValue.substr(2));\n endNum = parseFloat(endValue);\n\n if (p in _propertyAliases) {\n if (p === \"autoAlpha\") {\n //special case where we control the visibility along with opacity. We still allow the opacity value to pass through and get tweened.\n if (startNum === 1 && _get(target, \"visibility\") === \"hidden\" && endNum) {\n //if visibility is initially set to \"hidden\", we should interpret that as intent to make opacity 0 (a convenience)\n startNum = 0;\n }\n\n inlineProps.push(\"visibility\", 0, style.visibility);\n\n _addNonTweeningPT(this, style, \"visibility\", startNum ? \"inherit\" : \"hidden\", endNum ? \"inherit\" : \"hidden\", !endNum);\n }\n\n if (p !== \"scale\" && p !== \"transform\") {\n p = _propertyAliases[p];\n ~p.indexOf(\",\") && (p = p.split(\",\")[0]);\n }\n }\n\n isTransformRelated = p in _transformProps; //--- TRANSFORM-RELATED ---\n\n if (isTransformRelated) {\n this.styles.save(p);\n finalTransformValue = endValue; // this is always the same as endValue except when it's a var(--) value, in which case we need to calculate the end value.\n\n if (type === \"string\" && endValue.substring(0, 6) === \"var(--\") {\n endValue = _getComputedProperty(target, endValue.substring(4, endValue.indexOf(\")\")));\n\n if (endValue.substring(0, 5) === \"calc(\") {\n var origPerspective = target.style.perspective;\n target.style.perspective = endValue;\n endValue = _getComputedProperty(target, \"perspective\");\n origPerspective ? target.style.perspective = origPerspective : _removeProperty(target, \"perspective\");\n }\n\n endNum = parseFloat(endValue);\n }\n\n if (!transformPropTween) {\n cache = target._gsap;\n cache.renderTransform && !vars.parseTransform || _parseTransform(target, vars.parseTransform); // if, for example, gsap.set(... {transform:\"translateX(50vw)\"}), the _get() call doesn't parse the transform, thus cache.renderTransform won't be set yet so force the parsing of the transform here.\n\n smooth = vars.smoothOrigin !== false && cache.smooth;\n transformPropTween = this._pt = new PropTween(this._pt, style, _transformProp, 0, 1, cache.renderTransform, cache, 0, -1); //the first time through, create the rendering PropTween so that it runs LAST (in the linked list, we keep adding to the beginning)\n\n transformPropTween.dep = 1; //flag it as dependent so that if things get killed/overwritten and this is the only PropTween left, we can safely kill the whole tween.\n }\n\n if (p === \"scale\") {\n this._pt = new PropTween(this._pt, cache, \"scaleY\", cache.scaleY, (relative ? _parseRelative(cache.scaleY, relative + endNum) : endNum) - cache.scaleY || 0, _renderCSSProp);\n this._pt.u = 0;\n props.push(\"scaleY\", p);\n p += \"X\";\n } else if (p === \"transformOrigin\") {\n inlineProps.push(_transformOriginProp, 0, style[_transformOriginProp]);\n endValue = _convertKeywordsToPercentages(endValue); //in case something like \"left top\" or \"bottom right\" is passed in. Convert to percentages.\n\n if (cache.svg) {\n _applySVGOrigin(target, endValue, 0, smooth, 0, this);\n } else {\n endUnit = parseFloat(endValue.split(\" \")[2]) || 0; //handle the zOrigin separately!\n\n endUnit !== cache.zOrigin && _addNonTweeningPT(this, cache, \"zOrigin\", cache.zOrigin, endUnit);\n\n _addNonTweeningPT(this, style, p, _firstTwoOnly(startValue), _firstTwoOnly(endValue));\n }\n\n continue;\n } else if (p === \"svgOrigin\") {\n _applySVGOrigin(target, endValue, 1, smooth, 0, this);\n\n continue;\n } else if (p in _rotationalProperties) {\n _addRotationalPropTween(this, cache, p, startNum, relative ? _parseRelative(startNum, relative + endValue) : endValue);\n\n continue;\n } else if (p === \"smoothOrigin\") {\n _addNonTweeningPT(this, cache, \"smooth\", cache.smooth, endValue);\n\n continue;\n } else if (p === \"force3D\") {\n cache[p] = endValue;\n continue;\n } else if (p === \"transform\") {\n _addRawTransformPTs(this, endValue, target);\n\n continue;\n }\n } else if (!(p in style)) {\n p = _checkPropPrefix(p) || p;\n }\n\n if (isTransformRelated || (endNum || endNum === 0) && (startNum || startNum === 0) && !_complexExp.test(endValue) && p in style) {\n startUnit = (startValue + \"\").substr((startNum + \"\").length);\n endNum || (endNum = 0); // protect against NaN\n\n endUnit = getUnit(endValue) || (p in _config.units ? _config.units[p] : startUnit);\n startUnit !== endUnit && (startNum = _convertToUnit(target, p, startValue, endUnit));\n this._pt = new PropTween(this._pt, isTransformRelated ? cache : style, p, startNum, (relative ? _parseRelative(startNum, relative + endNum) : endNum) - startNum, !isTransformRelated && (endUnit === \"px\" || p === \"zIndex\") && vars.autoRound !== false ? _renderRoundedCSSProp : _renderCSSProp);\n this._pt.u = endUnit || 0;\n\n if (isTransformRelated && finalTransformValue !== endValue) {\n this._pt.b = startValue;\n this._pt.e = finalTransformValue;\n this._pt.r = _renderCSSPropWithBeginningAndEnd;\n } else if (startUnit !== endUnit && endUnit !== \"%\") {\n //when the tween goes all the way back to the beginning, we need to revert it to the OLD/ORIGINAL value (with those units). We record that as a \"b\" (beginning) property and point to a render method that handles that. (performance optimization)\n this._pt.b = startValue;\n this._pt.r = _renderCSSPropWithBeginning;\n }\n } else if (!(p in style)) {\n if (p in target) {\n //maybe it's not a style - it could be a property added directly to an element in which case we'll try to animate that.\n this.add(target, p, startValue || target[p], relative ? relative + endValue : endValue, index, targets);\n } else if (p !== \"parseTransform\") {\n _missingPlugin(p, endValue);\n\n continue;\n }\n } else {\n _tweenComplexCSSString.call(this, target, p, startValue, relative ? relative + endValue : endValue);\n }\n\n isTransformRelated || (p in style ? inlineProps.push(p, 0, style[p]) : typeof target[p] === \"function\" ? inlineProps.push(p, 2, target[p]()) : inlineProps.push(p, 1, startValue || target[p]));\n props.push(p);\n }\n }\n\n hasPriority && _sortPropTweensByPriority(this);\n },\n render: function render(ratio, data) {\n if (data.tween._time || !_reverting()) {\n var pt = data._pt;\n\n while (pt) {\n pt.r(ratio, pt.d);\n pt = pt._next;\n }\n } else {\n data.styles.revert();\n }\n },\n get: _get,\n aliases: _propertyAliases,\n getSetter: function getSetter(target, property, plugin) {\n //returns a setter function that accepts target, property, value and applies it accordingly. Remember, properties like \"x\" aren't as simple as target.style.property = value because they've got to be applied to a proxy object and then merged into a transform string in a renderer.\n var p = _propertyAliases[property];\n p && p.indexOf(\",\") < 0 && (property = p);\n return property in _transformProps && property !== _transformOriginProp && (target._gsap.x || _get(target, \"x\")) ? plugin && _recentSetterPlugin === plugin ? property === \"scale\" ? _setterScale : _setterTransform : (_recentSetterPlugin = plugin || {}) && (property === \"scale\" ? _setterScaleWithRender : _setterTransformWithRender) : target.style && !_isUndefined(target.style[property]) ? _setterCSSStyle : ~property.indexOf(\"-\") ? _setterCSSProp : _getSetter(target, property);\n },\n core: {\n _removeProperty: _removeProperty,\n _getMatrix: _getMatrix\n }\n};\ngsap.utils.checkPrefix = _checkPropPrefix;\ngsap.core.getStyleSaver = _getStyleSaver;\n\n(function (positionAndScale, rotation, others, aliases) {\n var all = _forEachName(positionAndScale + \",\" + rotation + \",\" + others, function (name) {\n _transformProps[name] = 1;\n });\n\n _forEachName(rotation, function (name) {\n _config.units[name] = \"deg\";\n _rotationalProperties[name] = 1;\n });\n\n _propertyAliases[all[13]] = positionAndScale + \",\" + rotation;\n\n _forEachName(aliases, function (name) {\n var split = name.split(\":\");\n _propertyAliases[split[1]] = all[split[0]];\n });\n})(\"x,y,z,scale,scaleX,scaleY,xPercent,yPercent\", \"rotation,rotationX,rotationY,skewX,skewY\", \"transform,transformOrigin,svgOrigin,force3D,smoothOrigin,transformPerspective\", \"0:translateX,1:translateY,2:translateZ,8:rotate,8:rotationZ,8:rotateZ,9:rotateX,10:rotateY\");\n\n_forEachName(\"x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective\", function (name) {\n _config.units[name] = \"px\";\n});\n\ngsap.registerPlugin(CSSPlugin);\nexport { CSSPlugin as default, _getBBox, _createElement, _checkPropPrefix as checkPrefix };","import { gsap, Power0, Power1, Power2, Power3, Power4, Linear, Quad, Cubic, Quart, Quint, Strong, Elastic, Back, SteppedEase, Bounce, Sine, Expo, Circ, TweenLite, TimelineLite, TimelineMax } from \"./gsap-core.js\";\nimport { CSSPlugin } from \"./CSSPlugin.js\";\nvar gsapWithCSS = gsap.registerPlugin(CSSPlugin) || gsap,\n // to protect from tree shaking\nTweenMaxWithCSS = gsapWithCSS.core.Tween;\nexport { gsapWithCSS as gsap, gsapWithCSS as default, CSSPlugin, TweenMaxWithCSS as TweenMax, TweenLite, TimelineMax, TimelineLite, Power0, Power1, Power2, Power3, Power4, Linear, Quad, Cubic, Quart, Quint, Strong, Elastic, Back, SteppedEase, Bounce, Sine, Expo, Circ };","function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\n/*!\n * Observer 3.15.0\n * https://gsap.com\n *\n * @license Copyright 2008-2026, GreenSock. All rights reserved.\n * Subject to the terms at https://gsap.com/standard-license\n * @author: Jack Doyle, jack@greensock.com\n*/\n\n/* eslint-disable */\nvar gsap,\n _coreInitted,\n _clamp,\n _win,\n _doc,\n _docEl,\n _body,\n _isTouch,\n _pointerType,\n ScrollTrigger,\n _root,\n _normalizer,\n _eventTypes,\n _context,\n _getGSAP = function _getGSAP() {\n return gsap || typeof window !== \"undefined\" && (gsap = window.gsap) && gsap.registerPlugin && gsap;\n},\n _startup = 1,\n _observers = [],\n _scrollers = [],\n _proxies = [],\n _getTime = Date.now,\n _bridge = function _bridge(name, value) {\n return value;\n},\n _integrate = function _integrate() {\n var core = ScrollTrigger.core,\n data = core.bridge || {},\n scrollers = core._scrollers,\n proxies = core._proxies;\n scrollers.push.apply(scrollers, _scrollers);\n proxies.push.apply(proxies, _proxies);\n _scrollers = scrollers;\n _proxies = proxies;\n\n _bridge = function _bridge(name, value) {\n return data[name](value);\n };\n},\n _getProxyProp = function _getProxyProp(element, property) {\n return ~_proxies.indexOf(element) && _proxies[_proxies.indexOf(element) + 1][property];\n},\n _isViewport = function _isViewport(el) {\n return !!~_root.indexOf(el);\n},\n _addListener = function _addListener(element, type, func, passive, capture) {\n return element.addEventListener(type, func, {\n passive: passive !== false,\n capture: !!capture\n });\n},\n _removeListener = function _removeListener(element, type, func, capture) {\n return element.removeEventListener(type, func, !!capture);\n},\n _scrollLeft = \"scrollLeft\",\n _scrollTop = \"scrollTop\",\n _onScroll = function _onScroll() {\n return _normalizer && _normalizer.isPressed || _scrollers.cache++;\n},\n _scrollCacheFunc = function _scrollCacheFunc(f, doNotCache) {\n var cachingFunc = function cachingFunc(value) {\n // since reading the scrollTop/scrollLeft/pageOffsetY/pageOffsetX can trigger a layout, this function allows us to cache the value so it only gets read fresh after a \"scroll\" event fires (or while we're refreshing because that can lengthen the page and alter the scroll position). when \"soft\" is true, that means don't actually set the scroll, but cache the new value instead (useful in ScrollSmoother)\n if (value || value === 0) {\n _startup && (_win.history.scrollRestoration = \"manual\"); // otherwise the new position will get overwritten by the browser onload.\n\n var isNormalizing = _normalizer && _normalizer.isPressed;\n value = cachingFunc.v = Math.round(value) || (_normalizer && _normalizer.iOS ? 1 : 0); //TODO: iOS Bug: if you allow it to go to 0, Safari can start to report super strange (wildly inaccurate) touch positions!\n\n f(value);\n cachingFunc.cacheID = _scrollers.cache;\n isNormalizing && _bridge(\"ss\", value); // set scroll (notify ScrollTrigger so it can dispatch a \"scrollStart\" event if necessary\n } else if (doNotCache || _scrollers.cache !== cachingFunc.cacheID || _bridge(\"ref\")) {\n cachingFunc.cacheID = _scrollers.cache;\n cachingFunc.v = f();\n }\n\n return cachingFunc.v + cachingFunc.offset;\n };\n\n cachingFunc.offset = 0;\n return f && cachingFunc;\n},\n _horizontal = {\n s: _scrollLeft,\n p: \"left\",\n p2: \"Left\",\n os: \"right\",\n os2: \"Right\",\n d: \"width\",\n d2: \"Width\",\n a: \"x\",\n sc: _scrollCacheFunc(function (value) {\n return arguments.length ? _win.scrollTo(value, _vertical.sc()) : _win.pageXOffset || _doc[_scrollLeft] || _docEl[_scrollLeft] || _body[_scrollLeft] || 0;\n })\n},\n _vertical = {\n s: _scrollTop,\n p: \"top\",\n p2: \"Top\",\n os: \"bottom\",\n os2: \"Bottom\",\n d: \"height\",\n d2: \"Height\",\n a: \"y\",\n op: _horizontal,\n sc: _scrollCacheFunc(function (value) {\n return arguments.length ? _win.scrollTo(_horizontal.sc(), value) : _win.pageYOffset || _doc[_scrollTop] || _docEl[_scrollTop] || _body[_scrollTop] || 0;\n })\n},\n _getTarget = function _getTarget(t, self) {\n return (self && self._ctx && self._ctx.selector || gsap.utils.toArray)(t)[0] || (typeof t === \"string\" && gsap.config().nullTargetWarn !== false ? console.warn(\"Element not found:\", t) : null);\n},\n _isWithin = function _isWithin(element, list) {\n // check if the element is in the list or is a descendant of an element in the list.\n var i = list.length;\n\n while (i--) {\n if (list[i] === element || list[i].contains(element)) {\n return true;\n }\n }\n\n return false;\n},\n _getScrollFunc = function _getScrollFunc(element, _ref) {\n var s = _ref.s,\n sc = _ref.sc;\n // we store the scroller functions in an alternating sequenced Array like [element, verticalScrollFunc, horizontalScrollFunc, ...] so that we can minimize memory, maximize performance, and we also record the last position as a \".rec\" property in order to revert to that after refreshing to ensure things don't shift around.\n _isViewport(element) && (element = _doc.scrollingElement || _docEl);\n\n var i = _scrollers.indexOf(element),\n offset = sc === _vertical.sc ? 1 : 2;\n\n !~i && (i = _scrollers.push(element) - 1);\n _scrollers[i + offset] || _addListener(element, \"scroll\", _onScroll); // clear the cache when a scroll occurs\n\n var prev = _scrollers[i + offset],\n func = prev || (_scrollers[i + offset] = _scrollCacheFunc(_getProxyProp(element, s), true) || (_isViewport(element) ? sc : _scrollCacheFunc(function (value) {\n return arguments.length ? element[s] = value : element[s];\n })));\n func.target = element;\n prev || (func.smooth = gsap.getProperty(element, \"scrollBehavior\") === \"smooth\"); // only set it the first time (don't reset every time a scrollFunc is requested because perhaps it happens during a refresh() when it's disabled in ScrollTrigger.\n\n return func;\n},\n _getVelocityProp = function _getVelocityProp(value, minTimeRefresh, useDelta) {\n var v1 = value,\n v2 = value,\n t1 = _getTime(),\n t2 = t1,\n min = minTimeRefresh || 50,\n dropToZeroTime = Math.max(500, min * 3),\n update = function update(value, force) {\n var t = _getTime();\n\n if (force || t - t1 > min) {\n v2 = v1;\n v1 = value;\n t2 = t1;\n t1 = t;\n } else if (useDelta) {\n v1 += value;\n } else {\n // not totally necessary, but makes it a bit more accurate by adjusting the v1 value according to the new slope. This way we're not just ignoring the incoming data. Removing for now because it doesn't seem to make much practical difference and it's probably not worth the kb.\n v1 = v2 + (value - v2) / (t - t2) * (t1 - t2);\n }\n },\n reset = function reset() {\n v2 = v1 = useDelta ? 0 : v1;\n t2 = t1 = 0;\n },\n getVelocity = function getVelocity(latestValue) {\n var tOld = t2,\n vOld = v2,\n t = _getTime();\n\n (latestValue || latestValue === 0) && latestValue !== v1 && update(latestValue);\n return t1 === t2 || t - t2 > dropToZeroTime ? 0 : (v1 + (useDelta ? vOld : -vOld)) / ((useDelta ? t : t1) - tOld) * 1000;\n };\n\n return {\n update: update,\n reset: reset,\n getVelocity: getVelocity\n };\n},\n _getEvent = function _getEvent(e, preventDefault) {\n preventDefault && !e._gsapAllow && e.cancelable !== false && e.preventDefault();\n return e.changedTouches ? e.changedTouches[0] : e;\n},\n _getAbsoluteMax = function _getAbsoluteMax(a) {\n var max = Math.max.apply(Math, a),\n min = Math.min.apply(Math, a);\n return Math.abs(max) >= Math.abs(min) ? max : min;\n},\n _setScrollTrigger = function _setScrollTrigger() {\n ScrollTrigger = gsap.core.globals().ScrollTrigger;\n ScrollTrigger && ScrollTrigger.core && _integrate();\n},\n _initCore = function _initCore(core) {\n gsap = core || _getGSAP();\n\n if (!_coreInitted && gsap && typeof document !== \"undefined\" && document.body) {\n _win = window;\n _doc = document;\n _docEl = _doc.documentElement;\n _body = _doc.body;\n _root = [_win, _doc, _docEl, _body];\n _clamp = gsap.utils.clamp;\n\n _context = gsap.core.context || function () {};\n\n _pointerType = \"onpointerenter\" in _body ? \"pointer\" : \"mouse\"; // isTouch is 0 if no touch, 1 if ONLY touch, and 2 if it can accommodate touch but also other types like mouse/pointer.\n\n _isTouch = Observer.isTouch = _win.matchMedia && _win.matchMedia(\"(hover: none), (pointer: coarse)\").matches ? 1 : \"ontouchstart\" in _win || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0 ? 2 : 0;\n _eventTypes = Observer.eventTypes = (\"ontouchstart\" in _docEl ? \"touchstart,touchmove,touchcancel,touchend\" : !(\"onpointerdown\" in _docEl) ? \"mousedown,mousemove,mouseup,mouseup\" : \"pointerdown,pointermove,pointercancel,pointerup\").split(\",\");\n setTimeout(function () {\n return _startup = 0;\n }, 500);\n _coreInitted = 1;\n }\n\n ScrollTrigger || _setScrollTrigger(); // Observer might be initted BEFORE ScrollTrigger, so don't put this with the initting code. ScrollTrigger will call Observer.register() when it inits.\n\n return _coreInitted;\n};\n\n_horizontal.op = _vertical;\n_scrollers.cache = 0;\nexport var Observer = /*#__PURE__*/function () {\n function Observer(vars) {\n this.init(vars);\n }\n\n var _proto = Observer.prototype;\n\n _proto.init = function init(vars) {\n _coreInitted || _initCore(gsap) || console.warn(\"Please gsap.registerPlugin(Observer)\");\n ScrollTrigger || _setScrollTrigger();\n var tolerance = vars.tolerance,\n dragMinimum = vars.dragMinimum,\n type = vars.type,\n target = vars.target,\n lineHeight = vars.lineHeight,\n debounce = vars.debounce,\n preventDefault = vars.preventDefault,\n onStop = vars.onStop,\n onStopDelay = vars.onStopDelay,\n ignore = vars.ignore,\n wheelSpeed = vars.wheelSpeed,\n event = vars.event,\n onDragStart = vars.onDragStart,\n onDragEnd = vars.onDragEnd,\n onDrag = vars.onDrag,\n onPress = vars.onPress,\n onRelease = vars.onRelease,\n onRight = vars.onRight,\n onLeft = vars.onLeft,\n onUp = vars.onUp,\n onDown = vars.onDown,\n onChangeX = vars.onChangeX,\n onChangeY = vars.onChangeY,\n onChange = vars.onChange,\n onToggleX = vars.onToggleX,\n onToggleY = vars.onToggleY,\n onHover = vars.onHover,\n onHoverEnd = vars.onHoverEnd,\n onMove = vars.onMove,\n ignoreCheck = vars.ignoreCheck,\n isNormalizer = vars.isNormalizer,\n onGestureStart = vars.onGestureStart,\n onGestureEnd = vars.onGestureEnd,\n onWheel = vars.onWheel,\n onEnable = vars.onEnable,\n onDisable = vars.onDisable,\n onClick = vars.onClick,\n scrollSpeed = vars.scrollSpeed,\n capture = vars.capture,\n allowClicks = vars.allowClicks,\n lockAxis = vars.lockAxis,\n onLockAxis = vars.onLockAxis;\n this.target = target = _getTarget(target) || _docEl;\n this.vars = vars;\n ignore && (ignore = gsap.utils.toArray(ignore));\n tolerance = tolerance || 1e-9;\n dragMinimum = dragMinimum || 0;\n wheelSpeed = wheelSpeed || 1;\n scrollSpeed = scrollSpeed || 1;\n type = type || \"wheel,touch,pointer\";\n debounce = debounce !== false;\n lineHeight || (lineHeight = parseFloat(_win.getComputedStyle(_body).lineHeight) || 22); // note: browser may report \"normal\", so default to 22.\n\n var id,\n onStopDelayedCall,\n dragged,\n moved,\n wheeled,\n locked,\n axis,\n self = this,\n prevDeltaX = 0,\n prevDeltaY = 0,\n passive = vars.passive || !preventDefault && vars.passive !== false,\n scrollFuncX = _getScrollFunc(target, _horizontal),\n scrollFuncY = _getScrollFunc(target, _vertical),\n scrollX = scrollFuncX(),\n scrollY = scrollFuncY(),\n limitToTouch = ~type.indexOf(\"touch\") && !~type.indexOf(\"pointer\") && _eventTypes[0] === \"pointerdown\",\n // for devices that accommodate mouse events and touch events, we need to distinguish.\n isViewport = _isViewport(target),\n ownerDoc = target.ownerDocument || _doc,\n deltaX = [0, 0, 0],\n // wheel, scroll, pointer/touch\n deltaY = [0, 0, 0],\n onClickTime = 0,\n clickCapture = function clickCapture() {\n return onClickTime = _getTime();\n },\n _ignoreCheck = function _ignoreCheck(e, isPointerOrTouch) {\n return (self.event = e) && ignore && _isWithin(e.target, ignore) || isPointerOrTouch && limitToTouch && e.pointerType !== \"touch\" || ignoreCheck && ignoreCheck(e, isPointerOrTouch);\n },\n onStopFunc = function onStopFunc() {\n self._vx.reset();\n\n self._vy.reset();\n\n onStopDelayedCall.pause();\n onStop && onStop(self);\n },\n update = function update() {\n var dx = self.deltaX = _getAbsoluteMax(deltaX),\n dy = self.deltaY = _getAbsoluteMax(deltaY),\n changedX = Math.abs(dx) >= tolerance,\n changedY = Math.abs(dy) >= tolerance;\n\n onChange && (changedX || changedY) && onChange(self, dx, dy, deltaX, deltaY); // in ScrollTrigger.normalizeScroll(), we need to know if it was touch/pointer so we need access to the deltaX/deltaY Arrays before we clear them out.\n\n if (changedX) {\n onRight && self.deltaX > 0 && onRight(self);\n onLeft && self.deltaX < 0 && onLeft(self);\n onChangeX && onChangeX(self);\n onToggleX && self.deltaX < 0 !== prevDeltaX < 0 && onToggleX(self);\n prevDeltaX = self.deltaX;\n deltaX[0] = deltaX[1] = deltaX[2] = 0;\n }\n\n if (changedY) {\n onDown && self.deltaY > 0 && onDown(self);\n onUp && self.deltaY < 0 && onUp(self);\n onChangeY && onChangeY(self);\n onToggleY && self.deltaY < 0 !== prevDeltaY < 0 && onToggleY(self);\n prevDeltaY = self.deltaY;\n deltaY[0] = deltaY[1] = deltaY[2] = 0;\n }\n\n if (moved || dragged) {\n onMove && onMove(self);\n\n if (dragged) {\n onDragStart && dragged === 1 && onDragStart(self);\n onDrag && onDrag(self);\n dragged = 0;\n }\n\n moved = false;\n }\n\n locked && !(locked = false) && onLockAxis && onLockAxis(self);\n\n if (wheeled) {\n onWheel(self);\n wheeled = false;\n }\n\n id = 0;\n },\n onDelta = function onDelta(x, y, index) {\n deltaX[index] += x;\n deltaY[index] += y;\n\n self._vx.update(x);\n\n self._vy.update(y);\n\n debounce ? id || (id = requestAnimationFrame(update)) : update();\n },\n onTouchOrPointerDelta = function onTouchOrPointerDelta(x, y) {\n if (lockAxis && !axis) {\n self.axis = axis = Math.abs(x) > Math.abs(y) ? \"x\" : \"y\";\n locked = true;\n }\n\n if (axis !== \"y\") {\n deltaX[2] += x;\n\n self._vx.update(x, true); // update the velocity as frequently as possible instead of in the debounced function so that very quick touch-scrolls (flicks) feel natural. If it's the mouse/touch/pointer, force it so that we get snappy/accurate momentum scroll.\n\n }\n\n if (axis !== \"x\") {\n deltaY[2] += y;\n\n self._vy.update(y, true);\n }\n\n debounce ? id || (id = requestAnimationFrame(update)) : update();\n },\n _onDrag = function _onDrag(e) {\n if (_ignoreCheck(e, 1)) {\n return;\n }\n\n e = _getEvent(e, preventDefault);\n var x = e.clientX,\n y = e.clientY,\n dx = x - self.x,\n dy = y - self.y,\n isDragging = self.isDragging;\n self.x = x;\n self.y = y;\n\n if (isDragging || (dx || dy) && (Math.abs(self.startX - x) >= dragMinimum || Math.abs(self.startY - y) >= dragMinimum)) {\n dragged || (dragged = isDragging ? 2 : 1); // dragged: 0 = not dragging, 1 = first drag, 2 = normal drag\n\n isDragging || (self.isDragging = true);\n onTouchOrPointerDelta(dx, dy);\n }\n },\n _onPress = self.onPress = function (e) {\n if (_ignoreCheck(e, 1) || e && e.button) {\n return;\n }\n\n self.axis = axis = null;\n onStopDelayedCall.pause();\n self.isPressed = true;\n e = _getEvent(e); // note: may need to preventDefault(?) Won't side-scroll on iOS Safari if we do, though.\n\n prevDeltaX = prevDeltaY = 0;\n self.startX = self.x = e.clientX;\n self.startY = self.y = e.clientY;\n\n self._vx.reset(); // otherwise the t2 may be stale if the user touches and flicks super fast and releases in less than 2 requestAnimationFrame ticks, causing velocity to be 0.\n\n\n self._vy.reset();\n\n _addListener(isNormalizer ? target : ownerDoc, _eventTypes[1], _onDrag, passive, true);\n\n self.deltaX = self.deltaY = 0;\n onPress && onPress(self);\n },\n _onRelease = self.onRelease = function (e) {\n if (_ignoreCheck(e, 1)) {\n return;\n }\n\n _removeListener(isNormalizer ? target : ownerDoc, _eventTypes[1], _onDrag, true);\n\n var isTrackingDrag = !isNaN(self.y - self.startY),\n wasDragging = self.isDragging,\n isDragNotClick = wasDragging && (Math.abs(self.x - self.startX) > 3 || Math.abs(self.y - self.startY) > 3),\n // some touch devices need some wiggle room in terms of sensing clicks - the finger may move a few pixels.\n eventData = _getEvent(e);\n\n if (!isDragNotClick && isTrackingDrag) {\n self._vx.reset();\n\n self._vy.reset(); //if (preventDefault && allowClicks && self.isPressed) { // check isPressed because in a rare edge case, the inputObserver in ScrollTrigger may stopPropagation() on the press/drag, so the onRelease may get fired without the onPress/onDrag ever getting called, thus it could trigger a click to occur on a link after scroll-dragging it.\n\n\n if (preventDefault && allowClicks) {\n gsap.delayedCall(0.08, function () {\n // some browsers (like Firefox) won't trust script-generated clicks, so if the user tries to click on a video to play it, for example, it simply won't work. Since a regular \"click\" event will most likely be generated anyway (one that has its isTrusted flag set to true), we must slightly delay our script-generated click so that the \"real\"/trusted one is prioritized. Remember, when there are duplicate events in quick succession, we suppress all but the first one. Some browsers don't even trigger the \"real\" one at all, so our synthetic one is a safety valve that ensures that no matter what, a click event does get dispatched.\n if (_getTime() - onClickTime > 300 && !e.defaultPrevented) {\n if (e.target.click) {\n //some browsers (like mobile Safari) don't properly trigger the click event\n e.target.click();\n } else if (ownerDoc.createEvent) {\n var syntheticEvent = ownerDoc.createEvent(\"MouseEvents\");\n syntheticEvent.initMouseEvent(\"click\", true, true, _win, 1, eventData.screenX, eventData.screenY, eventData.clientX, eventData.clientY, false, false, false, false, 0, null);\n e.target.dispatchEvent(syntheticEvent);\n }\n }\n });\n }\n }\n\n self.isDragging = self.isGesturing = self.isPressed = false;\n onStop && wasDragging && !isNormalizer && onStopDelayedCall.restart(true);\n dragged && update(); // in case debouncing, we don't want onDrag to fire AFTER onDragEnd().\n\n onDragEnd && wasDragging && onDragEnd(self);\n onRelease && onRelease(self, isDragNotClick);\n },\n _onGestureStart = function _onGestureStart(e) {\n return e.touches && e.touches.length > 1 && (self.isGesturing = true) && onGestureStart(e, self.isDragging);\n },\n _onGestureEnd = function _onGestureEnd() {\n return (self.isGesturing = false) || onGestureEnd(self);\n },\n onScroll = function onScroll(e) {\n if (_ignoreCheck(e)) {\n return;\n }\n\n var x = scrollFuncX(),\n y = scrollFuncY();\n onDelta((x - scrollX) * scrollSpeed, (y - scrollY) * scrollSpeed, 1);\n scrollX = x;\n scrollY = y;\n onStop && onStopDelayedCall.restart(true);\n },\n _onWheel = function _onWheel(e) {\n if (_ignoreCheck(e)) {\n return;\n }\n\n e = _getEvent(e, preventDefault);\n onWheel && (wheeled = true);\n var multiplier = (e.deltaMode === 1 ? lineHeight : e.deltaMode === 2 ? _win.innerHeight : 1) * wheelSpeed;\n onDelta(e.deltaX * multiplier, e.deltaY * multiplier, 0);\n onStop && !isNormalizer && onStopDelayedCall.restart(true);\n },\n _onMove = function _onMove(e) {\n if (_ignoreCheck(e)) {\n return;\n }\n\n var x = e.clientX,\n y = e.clientY,\n dx = x - self.x,\n dy = y - self.y;\n self.x = x;\n self.y = y;\n moved = true;\n onStop && onStopDelayedCall.restart(true);\n (dx || dy) && onTouchOrPointerDelta(dx, dy);\n },\n _onHover = function _onHover(e) {\n self.event = e;\n onHover(self);\n },\n _onHoverEnd = function _onHoverEnd(e) {\n self.event = e;\n onHoverEnd(self);\n },\n _onClick = function _onClick(e) {\n return _ignoreCheck(e) || _getEvent(e, preventDefault) && onClick(self);\n };\n\n onStopDelayedCall = self._dc = gsap.delayedCall(onStopDelay || 0.25, onStopFunc).pause();\n self.deltaX = self.deltaY = 0;\n self._vx = _getVelocityProp(0, 50, true);\n self._vy = _getVelocityProp(0, 50, true);\n self.scrollX = scrollFuncX;\n self.scrollY = scrollFuncY;\n self.isDragging = self.isGesturing = self.isPressed = false;\n\n _context(this);\n\n self.enable = function (e) {\n if (!self.isEnabled) {\n _addListener(isViewport ? ownerDoc : target, \"scroll\", _onScroll);\n\n type.indexOf(\"scroll\") >= 0 && _addListener(isViewport ? ownerDoc : target, \"scroll\", onScroll, passive, capture);\n type.indexOf(\"wheel\") >= 0 && _addListener(target, \"wheel\", _onWheel, passive, capture);\n\n if (type.indexOf(\"touch\") >= 0 && _isTouch || type.indexOf(\"pointer\") >= 0) {\n _addListener(target, _eventTypes[0], _onPress, passive, capture);\n\n _addListener(ownerDoc, _eventTypes[2], _onRelease);\n\n _addListener(ownerDoc, _eventTypes[3], _onRelease);\n\n allowClicks && _addListener(target, \"click\", clickCapture, true, true);\n onClick && _addListener(target, \"click\", _onClick);\n onGestureStart && _addListener(ownerDoc, \"gesturestart\", _onGestureStart);\n onGestureEnd && _addListener(ownerDoc, \"gestureend\", _onGestureEnd);\n onHover && _addListener(target, _pointerType + \"enter\", _onHover);\n onHoverEnd && _addListener(target, _pointerType + \"leave\", _onHoverEnd);\n onMove && _addListener(target, _pointerType + \"move\", _onMove);\n }\n\n self.isEnabled = true;\n self.isDragging = self.isGesturing = self.isPressed = moved = dragged = false;\n\n self._vx.reset();\n\n self._vy.reset();\n\n scrollX = scrollFuncX();\n scrollY = scrollFuncY();\n e && e.type && _onPress(e);\n onEnable && onEnable(self);\n }\n\n return self;\n };\n\n self.disable = function () {\n if (self.isEnabled) {\n // only remove the _onScroll listener if there aren't any others that rely on the functionality.\n _observers.filter(function (o) {\n return o !== self && _isViewport(o.target);\n }).length || _removeListener(isViewport ? ownerDoc : target, \"scroll\", _onScroll);\n\n if (self.isPressed) {\n self._vx.reset();\n\n self._vy.reset();\n\n _removeListener(isNormalizer ? target : ownerDoc, _eventTypes[1], _onDrag, true);\n }\n\n _removeListener(isViewport ? ownerDoc : target, \"scroll\", onScroll, capture);\n\n _removeListener(target, \"wheel\", _onWheel, capture);\n\n _removeListener(target, _eventTypes[0], _onPress, capture);\n\n _removeListener(ownerDoc, _eventTypes[2], _onRelease);\n\n _removeListener(ownerDoc, _eventTypes[3], _onRelease);\n\n _removeListener(target, \"click\", clickCapture, true);\n\n _removeListener(target, \"click\", _onClick);\n\n _removeListener(ownerDoc, \"gesturestart\", _onGestureStart);\n\n _removeListener(ownerDoc, \"gestureend\", _onGestureEnd);\n\n _removeListener(target, _pointerType + \"enter\", _onHover);\n\n _removeListener(target, _pointerType + \"leave\", _onHoverEnd);\n\n _removeListener(target, _pointerType + \"move\", _onMove);\n\n self.isEnabled = self.isPressed = self.isDragging = false;\n onDisable && onDisable(self);\n }\n };\n\n self.kill = self.revert = function () {\n self.disable();\n\n var i = _observers.indexOf(self);\n\n i >= 0 && _observers.splice(i, 1);\n _normalizer === self && (_normalizer = 0);\n };\n\n _observers.push(self);\n\n isNormalizer && _isViewport(target) && (_normalizer = self);\n self.enable(event);\n };\n\n _createClass(Observer, [{\n key: \"velocityX\",\n get: function get() {\n return this._vx.getVelocity();\n }\n }, {\n key: \"velocityY\",\n get: function get() {\n return this._vy.getVelocity();\n }\n }]);\n\n return Observer;\n}();\nObserver.version = \"3.15.0\";\n\nObserver.create = function (vars) {\n return new Observer(vars);\n};\n\nObserver.register = _initCore;\n\nObserver.getAll = function () {\n return _observers.slice();\n};\n\nObserver.getById = function (id) {\n return _observers.filter(function (o) {\n return o.vars.id === id;\n })[0];\n};\n\n_getGSAP() && gsap.registerPlugin(Observer);\nexport { Observer as default, _isViewport, _scrollers, _getScrollFunc, _getProxyProp, _proxies, _getVelocityProp, _vertical, _horizontal, _getTarget };","/*!\n * ScrollTrigger 3.15.0\n * https://gsap.com\n *\n * @license Copyright 2008-2026, GreenSock. All rights reserved.\n * Subject to the terms at https://gsap.com/standard-license\n * @author: Jack Doyle, jack@greensock.com\n*/\n\n/* eslint-disable */\nimport { Observer, _getTarget, _vertical, _horizontal, _scrollers, _proxies, _getScrollFunc, _getProxyProp, _getVelocityProp } from \"./Observer.js\";\n\nvar gsap,\n _coreInitted,\n _win,\n _doc,\n _docEl,\n _body,\n _root,\n _resizeDelay,\n _toArray,\n _clamp,\n _time2,\n _syncInterval,\n _refreshing,\n _pointerIsDown,\n _transformProp,\n _i,\n _prevWidth,\n _prevHeight,\n _autoRefresh,\n _sort,\n _suppressOverwrites,\n _ignoreResize,\n _normalizer,\n _ignoreMobileResize,\n _baseScreenHeight,\n _baseScreenWidth,\n _fixIOSBug,\n _context,\n _scrollRestoration,\n _div100vh,\n _100vh,\n _isReverted,\n _clampingMax,\n _limitCallbacks,\n // if true, we'll only trigger callbacks if the active state toggles, so if you scroll immediately past both the start and end positions of a ScrollTrigger (thus inactive to inactive), neither its onEnter nor onLeave will be called. This is useful during startup.\n_startup = 1,\n _getTime = Date.now,\n _time1 = _getTime(),\n _lastScrollTime = 0,\n _enabled = 0,\n _parseClamp = function _parseClamp(value, type, self) {\n var clamp = _isString(value) && (value.substr(0, 6) === \"clamp(\" || value.indexOf(\"max\") > -1);\n self[\"_\" + type + \"Clamp\"] = clamp;\n return clamp ? value.substr(6, value.length - 7) : value;\n},\n _keepClamp = function _keepClamp(value, clamp) {\n return clamp && (!_isString(value) || value.substr(0, 6) !== \"clamp(\") ? \"clamp(\" + value + \")\" : value;\n},\n _rafBugFix = function _rafBugFix() {\n return _enabled && requestAnimationFrame(_rafBugFix);\n},\n // in some browsers (like Firefox), screen repaints weren't consistent unless we had SOMETHING queued up in requestAnimationFrame()! So this just creates a super simple loop to keep it alive and smooth out repaints.\n_pointerDownHandler = function _pointerDownHandler() {\n return _pointerIsDown = 1;\n},\n _pointerUpHandler = function _pointerUpHandler() {\n return _pointerIsDown = 0;\n},\n _passThrough = function _passThrough(v) {\n return v;\n},\n _round = function _round(value) {\n return Math.round(value * 100000) / 100000 || 0;\n},\n _windowExists = function _windowExists() {\n return typeof window !== \"undefined\";\n},\n _getGSAP = function _getGSAP() {\n return gsap || _windowExists() && (gsap = window.gsap) && gsap.registerPlugin && gsap;\n},\n _isViewport = function _isViewport(e) {\n return !!~_root.indexOf(e);\n},\n _getViewportDimension = function _getViewportDimension(dimensionProperty) {\n return (dimensionProperty === \"Height\" ? _100vh : _win[\"inner\" + dimensionProperty]) || _docEl[\"client\" + dimensionProperty] || _body[\"client\" + dimensionProperty];\n},\n _getBoundsFunc = function _getBoundsFunc(element) {\n return _getProxyProp(element, \"getBoundingClientRect\") || (_isViewport(element) ? function () {\n _winOffsets.width = _win.innerWidth;\n _winOffsets.height = _100vh;\n return _winOffsets;\n } : function () {\n return _getBounds(element);\n });\n},\n _getSizeFunc = function _getSizeFunc(scroller, isViewport, _ref) {\n var d = _ref.d,\n d2 = _ref.d2,\n a = _ref.a;\n return (a = _getProxyProp(scroller, \"getBoundingClientRect\")) ? function () {\n return a()[d];\n } : function () {\n return (isViewport ? _getViewportDimension(d2) : scroller[\"client\" + d2]) || 0;\n };\n},\n _getOffsetsFunc = function _getOffsetsFunc(element, isViewport) {\n return !isViewport || ~_proxies.indexOf(element) ? _getBoundsFunc(element) : function () {\n return _winOffsets;\n };\n},\n _maxScroll = function _maxScroll(element, _ref2) {\n var s = _ref2.s,\n d2 = _ref2.d2,\n d = _ref2.d,\n a = _ref2.a;\n return Math.max(0, (s = \"scroll\" + d2) && (a = _getProxyProp(element, s)) ? a() - _getBoundsFunc(element)()[d] : _isViewport(element) ? (_docEl[s] || _body[s]) - _getViewportDimension(d2) : element[s] - element[\"offset\" + d2]);\n},\n _iterateAutoRefresh = function _iterateAutoRefresh(func, events) {\n for (var i = 0; i < _autoRefresh.length; i += 3) {\n (!events || ~events.indexOf(_autoRefresh[i + 1])) && func(_autoRefresh[i], _autoRefresh[i + 1], _autoRefresh[i + 2]);\n }\n},\n _isString = function _isString(value) {\n return typeof value === \"string\";\n},\n _isFunction = function _isFunction(value) {\n return typeof value === \"function\";\n},\n _isNumber = function _isNumber(value) {\n return typeof value === \"number\";\n},\n _isObject = function _isObject(value) {\n return typeof value === \"object\";\n},\n _endAnimation = function _endAnimation(animation, reversed, pause) {\n return animation && animation.progress(reversed ? 0 : 1) && pause && animation.pause();\n},\n _callback = function _callback(self, func, extraParam) {\n if (self.enabled) {\n var result = self._ctx ? self._ctx.add(function () {\n return func(self, extraParam);\n }) : func(self, extraParam);\n result && result.totalTime && (self.callbackAnimation = result);\n }\n},\n _abs = Math.abs,\n _left = \"left\",\n _top = \"top\",\n _right = \"right\",\n _bottom = \"bottom\",\n _width = \"width\",\n _height = \"height\",\n _Right = \"Right\",\n _Left = \"Left\",\n _Top = \"Top\",\n _Bottom = \"Bottom\",\n _padding = \"padding\",\n _margin = \"margin\",\n _Width = \"Width\",\n _Height = \"Height\",\n _px = \"px\",\n _getComputedStyle = function _getComputedStyle(element) {\n return _win.getComputedStyle(element.nodeType === Node.DOCUMENT_NODE ? element.scrollingElement : element);\n},\n _makePositionable = function _makePositionable(element) {\n // if the element already has position: absolute or fixed, leave that, otherwise make it position: relative\n var position = _getComputedStyle(element).position;\n\n element.style.position = position === \"absolute\" || position === \"fixed\" ? position : \"relative\";\n},\n _setDefaults = function _setDefaults(obj, defaults) {\n for (var p in defaults) {\n p in obj || (obj[p] = defaults[p]);\n }\n\n return obj;\n},\n _getBounds = function _getBounds(element, withoutTransforms) {\n var tween = withoutTransforms && _getComputedStyle(element)[_transformProp] !== \"matrix(1, 0, 0, 1, 0, 0)\" && gsap.to(element, {\n x: 0,\n y: 0,\n xPercent: 0,\n yPercent: 0,\n rotation: 0,\n rotationX: 0,\n rotationY: 0,\n scale: 1,\n skewX: 0,\n skewY: 0\n }).progress(1),\n bounds = element.getBoundingClientRect ? element.getBoundingClientRect() : element.scrollingElement.getBoundingClientRect();\n tween && tween.progress(0).kill();\n return bounds;\n},\n _getSize = function _getSize(element, _ref3) {\n var d2 = _ref3.d2;\n return element[\"offset\" + d2] || element[\"client\" + d2] || 0;\n},\n _getLabelRatioArray = function _getLabelRatioArray(timeline) {\n var a = [],\n labels = timeline.labels,\n duration = timeline.duration(),\n p;\n\n for (p in labels) {\n a.push(labels[p] / duration);\n }\n\n return a;\n},\n _getClosestLabel = function _getClosestLabel(animation) {\n return function (value) {\n return gsap.utils.snap(_getLabelRatioArray(animation), value);\n };\n},\n _snapDirectional = function _snapDirectional(snapIncrementOrArray) {\n var snap = gsap.utils.snap(snapIncrementOrArray),\n a = Array.isArray(snapIncrementOrArray) && snapIncrementOrArray.slice(0).sort(function (a, b) {\n return a - b;\n });\n return a ? function (value, direction, threshold) {\n if (threshold === void 0) {\n threshold = 1e-3;\n }\n\n var i;\n\n if (!direction) {\n return snap(value);\n }\n\n if (direction > 0) {\n value -= threshold; // to avoid rounding errors. If we're too strict, it might snap forward, then immediately again, and again.\n\n for (i = 0; i < a.length; i++) {\n if (a[i] >= value) {\n return a[i];\n }\n }\n\n return a[i - 1];\n } else {\n i = a.length;\n value += threshold;\n\n while (i--) {\n if (a[i] <= value) {\n return a[i];\n }\n }\n }\n\n return a[0];\n } : function (value, direction, threshold) {\n if (threshold === void 0) {\n threshold = 1e-3;\n }\n\n var snapped = snap(value);\n return !direction || Math.abs(snapped - value) < threshold || snapped - value < 0 === direction < 0 ? snapped : snap(direction < 0 ? value - snapIncrementOrArray : value + snapIncrementOrArray);\n };\n},\n _getLabelAtDirection = function _getLabelAtDirection(timeline) {\n return function (value, st) {\n return _snapDirectional(_getLabelRatioArray(timeline))(value, st.direction);\n };\n},\n _multiListener = function _multiListener(func, element, types, callback) {\n return types.split(\",\").forEach(function (type) {\n return func(element, type, callback);\n });\n},\n _addListener = function _addListener(element, type, func, nonPassive, capture) {\n return element.addEventListener(type, func, {\n passive: !nonPassive,\n capture: !!capture\n });\n},\n _removeListener = function _removeListener(element, type, func, capture) {\n return element.removeEventListener(type, func, !!capture);\n},\n _wheelListener = function _wheelListener(func, el, scrollFunc) {\n scrollFunc = scrollFunc && scrollFunc.wheelHandler;\n\n if (scrollFunc) {\n func(el, \"wheel\", scrollFunc);\n func(el, \"touchmove\", scrollFunc);\n }\n},\n _markerDefaults = {\n startColor: \"green\",\n endColor: \"red\",\n indent: 0,\n fontSize: \"16px\",\n fontWeight: \"normal\"\n},\n _defaults = {\n toggleActions: \"play\",\n anticipatePin: 0\n},\n _keywords = {\n top: 0,\n left: 0,\n center: 0.5,\n bottom: 1,\n right: 1\n},\n _offsetToPx = function _offsetToPx(value, size) {\n if (_isString(value)) {\n var eqIndex = value.indexOf(\"=\"),\n relative = ~eqIndex ? +(value.charAt(eqIndex - 1) + 1) * parseFloat(value.substr(eqIndex + 1)) : 0;\n\n if (~eqIndex) {\n value.indexOf(\"%\") > eqIndex && (relative *= size / 100);\n value = value.substr(0, eqIndex - 1);\n }\n\n value = relative + (value in _keywords ? _keywords[value] * size : ~value.indexOf(\"%\") ? parseFloat(value) * size / 100 : parseFloat(value) || 0);\n }\n\n return value;\n},\n _createMarker = function _createMarker(type, name, container, direction, _ref4, offset, matchWidthEl, containerAnimation) {\n var startColor = _ref4.startColor,\n endColor = _ref4.endColor,\n fontSize = _ref4.fontSize,\n indent = _ref4.indent,\n fontWeight = _ref4.fontWeight;\n\n var e = _doc.createElement(\"div\"),\n useFixedPosition = _isViewport(container) || _getProxyProp(container, \"pinType\") === \"fixed\",\n isScroller = type.indexOf(\"scroller\") !== -1,\n parent = useFixedPosition ? _body : container.tagName === \"IFRAME\" ? container.contentDocument.body : container,\n isStart = type.indexOf(\"start\") !== -1,\n color = isStart ? startColor : endColor,\n css = \"border-color:\" + color + \";font-size:\" + fontSize + \";color:\" + color + \";font-weight:\" + fontWeight + \";pointer-events:none;white-space:nowrap;font-family:sans-serif,Arial;z-index:1000;padding:4px 8px;border-width:0;border-style:solid;\";\n\n css += \"position:\" + ((isScroller || containerAnimation) && useFixedPosition ? \"fixed;\" : \"absolute;\");\n (isScroller || containerAnimation || !useFixedPosition) && (css += (direction === _vertical ? _right : _bottom) + \":\" + (offset + parseFloat(indent)) + \"px;\");\n matchWidthEl && (css += \"box-sizing:border-box;text-align:left;width:\" + matchWidthEl.offsetWidth + \"px;\");\n e._isStart = isStart;\n e.setAttribute(\"class\", \"gsap-marker-\" + type + (name ? \" marker-\" + name : \"\"));\n e.style.cssText = css;\n e.innerText = name || name === 0 ? type + \"-\" + name : type;\n parent.children[0] ? parent.insertBefore(e, parent.children[0]) : parent.appendChild(e);\n e._offset = e[\"offset\" + direction.op.d2];\n\n _positionMarker(e, 0, direction, isStart);\n\n return e;\n},\n _positionMarker = function _positionMarker(marker, start, direction, flipped) {\n var vars = {\n display: \"block\"\n },\n side = direction[flipped ? \"os2\" : \"p2\"],\n oppositeSide = direction[flipped ? \"p2\" : \"os2\"];\n marker._isFlipped = flipped;\n vars[direction.a + \"Percent\"] = flipped ? -100 : 0;\n vars[direction.a] = flipped ? \"1px\" : 0;\n vars[\"border\" + side + _Width] = 1;\n vars[\"border\" + oppositeSide + _Width] = 0;\n vars[direction.p] = start + \"px\";\n gsap.set(marker, vars);\n},\n _triggers = [],\n _ids = {},\n _rafID,\n _sync = function _sync() {\n return _getTime() - _lastScrollTime > 34 && (_rafID || (_rafID = requestAnimationFrame(_updateAll)));\n},\n _onScroll = function _onScroll() {\n // previously, we tried to optimize performance by batching/deferring to the next requestAnimationFrame(), but discovered that Safari has a few bugs that make this unworkable (especially on iOS). See https://codepen.io/GreenSock/pen/16c435b12ef09c38125204818e7b45fc?editors=0010 and https://codepen.io/GreenSock/pen/JjOxYpQ/3dd65ccec5a60f1d862c355d84d14562?editors=0010 and https://codepen.io/GreenSock/pen/ExbrPNa/087cef197dc35445a0951e8935c41503?editors=0010\n if (!_normalizer || !_normalizer.isPressed || _normalizer.startX > _body.clientWidth) {\n // if the user is dragging the scrollbar, allow it.\n _scrollers.cache++;\n\n if (_normalizer) {\n _rafID || (_rafID = requestAnimationFrame(_updateAll));\n } else {\n _updateAll(); // Safari in particular (on desktop) NEEDS the immediate update rather than waiting for a requestAnimationFrame() whereas iOS seems to benefit from waiting for the requestAnimationFrame() tick, at least when normalizing. See https://codepen.io/GreenSock/pen/qBYozqO?editors=0110\n\n }\n\n _lastScrollTime || _dispatch(\"scrollStart\");\n _lastScrollTime = _getTime();\n }\n},\n _setBaseDimensions = function _setBaseDimensions() {\n _baseScreenWidth = _win.innerWidth;\n _baseScreenHeight = _win.innerHeight;\n},\n _onResize = function _onResize(force) {\n _scrollers.cache++;\n (force === true || !_refreshing && !_ignoreResize && !_doc.fullscreenElement && !_doc.webkitFullscreenElement && (!_ignoreMobileResize || _baseScreenWidth !== _win.innerWidth || Math.abs(_win.innerHeight - _baseScreenHeight) > _win.innerHeight * 0.25)) && _resizeDelay.restart(true);\n},\n // ignore resizes triggered by refresh()\n_listeners = {},\n _emptyArray = [],\n _softRefresh = function _softRefresh() {\n return _removeListener(ScrollTrigger, \"scrollEnd\", _softRefresh) || _refreshAll(true);\n},\n _dispatch = function _dispatch(type) {\n return _listeners[type] && _listeners[type].map(function (f) {\n return f();\n }) || _emptyArray;\n},\n _savedStyles = [],\n // when ScrollTrigger.saveStyles() is called, the inline styles are recorded in this Array in a sequential format like [element, cssText, gsCache, media]. This keeps it very memory-efficient and fast to iterate through.\n_revertRecorded = function _revertRecorded(media) {\n for (var i = 0; i < _savedStyles.length; i += 5) {\n if (!media || _savedStyles[i + 4] && _savedStyles[i + 4].query === media) {\n _savedStyles[i].style.cssText = _savedStyles[i + 1];\n _savedStyles[i].getBBox && _savedStyles[i].setAttribute(\"transform\", _savedStyles[i + 2] || \"\");\n _savedStyles[i + 3].uncache = 1;\n }\n }\n},\n _recordScrollPositions = function _recordScrollPositions() {\n return _scrollers.forEach(function (obj) {\n return _isFunction(obj) && ++obj.cacheID && (obj.rec = obj());\n });\n},\n // record the current scroll position. Also force the clearing of the cache because some browsers take a little while to dispatch the \"scroll\" event and the user may have changed the scroll position and then called ScrollTrigger.refresh() right away\n_revertAll = function _revertAll(kill, media) {\n var trigger;\n\n for (_i = 0; _i < _triggers.length; _i++) {\n trigger = _triggers[_i];\n\n if (trigger && (!media || trigger._ctx === media)) {\n if (kill) {\n trigger.kill(1);\n } else {\n trigger.revert(true, true);\n }\n }\n }\n\n _isReverted = true;\n media && _revertRecorded(media);\n media || _dispatch(\"revert\");\n},\n _clearScrollMemory = function _clearScrollMemory(scrollRestoration, force) {\n // zero-out all the recorded scroll positions. Don't use _triggers because if, for example, .matchMedia() is used to create some ScrollTriggers and then the user resizes and it removes ALL ScrollTriggers, and then go back to a size where there are ScrollTriggers, it would have kept the position(s) saved from the initial state.\n _scrollers.cache++;\n (force || !_refreshingAll) && _scrollers.forEach(function (obj) {\n return _isFunction(obj) && obj.cacheID++ && (obj.rec = 0);\n });\n _isString(scrollRestoration) && (_win.history.scrollRestoration = _scrollRestoration = scrollRestoration);\n},\n _refreshingAll,\n _refreshID = 0,\n _queueRefreshID,\n _queueRefreshAll = function _queueRefreshAll() {\n // we don't want to call _refreshAll() every time we create a new ScrollTrigger (for performance reasons) - it's better to batch them. Some frameworks dynamically load content and we can't rely on the window's \"load\" or \"DOMContentLoaded\" events to trigger it.\n if (_queueRefreshID !== _refreshID) {\n var id = _queueRefreshID = _refreshID;\n requestAnimationFrame(function () {\n return id === _refreshID && _refreshAll(true);\n });\n }\n},\n _refresh100vh = function _refresh100vh() {\n _body.appendChild(_div100vh);\n\n _100vh = !_normalizer && _div100vh.offsetHeight || _win.innerHeight;\n\n _body.removeChild(_div100vh);\n},\n _hideAllMarkers = function _hideAllMarkers(hide) {\n return _toArray(\".gsap-marker-start, .gsap-marker-end, .gsap-marker-scroller-start, .gsap-marker-scroller-end\").forEach(function (el) {\n return el.style.display = hide ? \"none\" : \"block\";\n });\n},\n _refreshAll = function _refreshAll(force, skipRevert) {\n _docEl = _doc.documentElement; // some frameworks like Astro may cache the and replace it during routing, so we'll just re-record the _docEl and _body for safety (otherwise, the markers may not get added properly).\n\n _body = _doc.body;\n _root = [_win, _doc, _docEl, _body];\n\n if (_lastScrollTime && !force && !_isReverted) {\n _addListener(ScrollTrigger, \"scrollEnd\", _softRefresh);\n\n return;\n }\n\n _refresh100vh();\n\n _refreshingAll = ScrollTrigger.isRefreshing = true;\n _isReverted || _recordScrollPositions();\n\n var refreshInits = _dispatch(\"refreshInit\");\n\n _sort && ScrollTrigger.sort();\n skipRevert || _revertAll();\n\n _scrollers.forEach(function (obj) {\n if (_isFunction(obj)) {\n obj.smooth && (obj.target.style.scrollBehavior = \"auto\"); // smooth scrolling interferes\n\n obj(0);\n }\n });\n\n _triggers.slice(0).forEach(function (t) {\n return t.refresh();\n }); // don't loop with _i because during a refresh() someone could call ScrollTrigger.update() which would iterate through _i resulting in a skip.\n\n\n _isReverted = false;\n\n _triggers.forEach(function (t) {\n // nested pins (pinnedContainer) with pinSpacing may expand the container, so we must accommodate that here.\n if (t._subPinOffset && t.pin) {\n var prop = t.vars.horizontal ? \"offsetWidth\" : \"offsetHeight\",\n original = t.pin[prop];\n t.revert(true, 1);\n t.adjustPinSpacing(t.pin[prop] - original);\n t.refresh();\n }\n });\n\n _clampingMax = 1; // pinSpacing might be propping a page open, thus when we .setPositions() to clamp a ScrollTrigger's end we should leave the pinSpacing alone. That's what this flag is for.\n\n _hideAllMarkers(true);\n\n _triggers.forEach(function (t) {\n // the scroller's max scroll position may change after all the ScrollTriggers refreshed (like pinning could push it down), so we need to loop back and correct any with end: \"max\". Same for anything with a clamped end\n var max = _maxScroll(t.scroller, t._dir),\n endClamp = t.vars.end === \"max\" || t._endClamp && t.end > max,\n startClamp = t._startClamp && t.start >= max;\n\n (endClamp || startClamp) && t.setPositions(startClamp ? max - 1 : t.start, endClamp ? Math.max(startClamp ? max : t.start + 1, max) : t.end, true);\n });\n\n _hideAllMarkers(false);\n\n _clampingMax = 0;\n refreshInits.forEach(function (result) {\n return result && result.render && result.render(-1);\n }); // if the onRefreshInit() returns an animation (typically a gsap.set()), revert it. This makes it easy to put things in a certain spot before refreshing for measurement purposes, and then put things back.\n\n _scrollers.forEach(function (obj) {\n if (_isFunction(obj)) {\n obj.smooth && requestAnimationFrame(function () {\n return obj.target.style.scrollBehavior = \"smooth\";\n });\n obj.rec && obj(obj.rec);\n }\n });\n\n _clearScrollMemory(_scrollRestoration, 1);\n\n _resizeDelay.pause();\n\n _refreshID++;\n _refreshingAll = 2;\n\n _updateAll(2);\n\n _triggers.forEach(function (t) {\n return _isFunction(t.vars.onRefresh) && t.vars.onRefresh(t);\n });\n\n _refreshingAll = ScrollTrigger.isRefreshing = false;\n\n _dispatch(\"refresh\");\n},\n _lastScroll = 0,\n _direction = 1,\n _primary,\n _updateAll = function _updateAll(force) {\n if (force === 2 || !_refreshingAll && !_isReverted) {\n // _isReverted could be true if, for example, a matchMedia() is in the process of executing. We don't want to update during the time everything is reverted.\n ScrollTrigger.isUpdating = true;\n _primary && _primary.update(0); // ScrollSmoother uses refreshPriority -9999 to become the primary that gets updated before all others because it affects the scroll position.\n\n var l = _triggers.length,\n time = _getTime(),\n recordVelocity = time - _time1 >= 50,\n scroll = l && _triggers[0].scroll();\n\n _direction = _lastScroll > scroll ? -1 : 1;\n _refreshingAll || (_lastScroll = scroll);\n\n if (recordVelocity) {\n if (_lastScrollTime && !_pointerIsDown && time - _lastScrollTime > 200) {\n _lastScrollTime = 0;\n\n _dispatch(\"scrollEnd\");\n }\n\n _time2 = _time1;\n _time1 = time;\n }\n\n if (_direction < 0) {\n _i = l;\n\n while (_i-- > 0) {\n _triggers[_i] && _triggers[_i].update(0, recordVelocity);\n }\n\n _direction = 1;\n } else {\n for (_i = 0; _i < l; _i++) {\n _triggers[_i] && _triggers[_i].update(0, recordVelocity);\n }\n }\n\n ScrollTrigger.isUpdating = false;\n }\n\n _rafID = 0;\n},\n _propNamesToCopy = [_left, _top, _bottom, _right, _margin + _Bottom, _margin + _Right, _margin + _Top, _margin + _Left, \"display\", \"flexShrink\", \"float\", \"zIndex\", \"gridColumnStart\", \"gridColumnEnd\", \"gridRowStart\", \"gridRowEnd\", \"gridArea\", \"justifySelf\", \"alignSelf\", \"placeSelf\", \"order\"],\n _stateProps = _propNamesToCopy.concat([_width, _height, \"boxSizing\", \"max\" + _Width, \"max\" + _Height, \"position\", _margin, _padding, _padding + _Top, _padding + _Right, _padding + _Bottom, _padding + _Left]),\n _swapPinOut = function _swapPinOut(pin, spacer, state) {\n _setState(state);\n\n var cache = pin._gsap;\n\n if (cache.spacerIsNative) {\n _setState(cache.spacerState);\n } else if (pin._gsap.swappedIn) {\n var parent = spacer.parentNode;\n\n if (parent) {\n parent.insertBefore(pin, spacer);\n parent.removeChild(spacer);\n }\n }\n\n pin._gsap.swappedIn = false;\n},\n _swapPinIn = function _swapPinIn(pin, spacer, cs, spacerState) {\n if (!pin._gsap.swappedIn) {\n var i = _propNamesToCopy.length,\n spacerStyle = spacer.style,\n pinStyle = pin.style,\n p;\n\n while (i--) {\n p = _propNamesToCopy[i];\n spacerStyle[p] = cs[p];\n }\n\n spacerStyle.position = cs.position === \"absolute\" ? \"absolute\" : \"relative\";\n cs.display === \"inline\" && (spacerStyle.display = \"inline-block\");\n pinStyle[_bottom] = pinStyle[_right] = \"auto\";\n spacerStyle.flexBasis = cs.flexBasis || \"auto\";\n spacerStyle.overflow = \"visible\";\n spacerStyle.boxSizing = \"border-box\";\n spacerStyle[_width] = _getSize(pin, _horizontal) + _px;\n spacerStyle[_height] = _getSize(pin, _vertical) + _px;\n spacerStyle[_padding] = pinStyle[_margin] = pinStyle[_top] = pinStyle[_left] = \"0\";\n\n _setState(spacerState);\n\n pinStyle[_width] = pinStyle[\"max\" + _Width] = cs[_width];\n pinStyle[_height] = pinStyle[\"max\" + _Height] = cs[_height];\n pinStyle[_padding] = cs[_padding];\n\n if (pin.parentNode !== spacer) {\n pin.parentNode.insertBefore(spacer, pin);\n spacer.appendChild(pin);\n }\n\n pin._gsap.swappedIn = true;\n }\n},\n _capsExp = /([A-Z])/g,\n _setState = function _setState(state) {\n if (state) {\n var style = state.t.style,\n l = state.length,\n i = 0,\n p,\n value;\n (state.t._gsap || gsap.core.getCache(state.t)).uncache = 1; // otherwise transforms may be off\n\n for (; i < l; i += 2) {\n value = state[i + 1];\n p = state[i];\n\n if (value) {\n style[p] = value;\n } else if (style[p]) {\n style.removeProperty(p.replace(_capsExp, \"-$1\").toLowerCase());\n }\n }\n }\n},\n _getState = function _getState(element) {\n // returns an Array with alternating values like [property, value, property, value] and a \"t\" property pointing to the target (element). Makes it fast and cheap.\n var l = _stateProps.length,\n style = element.style,\n state = [],\n i = 0;\n\n for (; i < l; i++) {\n state.push(_stateProps[i], style[_stateProps[i]]);\n }\n\n state.t = element;\n return state;\n},\n _copyState = function _copyState(state, override, omitOffsets) {\n var result = [],\n l = state.length,\n i = omitOffsets ? 8 : 0,\n // skip top, left, right, bottom if omitOffsets is true\n p;\n\n for (; i < l; i += 2) {\n p = state[i];\n result.push(p, p in override ? override[p] : state[i + 1]);\n }\n\n result.t = state.t;\n return result;\n},\n _winOffsets = {\n left: 0,\n top: 0\n},\n // // potential future feature (?) Allow users to calculate where a trigger hits (scroll position) like getScrollPosition(\"#id\", \"top bottom\")\n// _getScrollPosition = (trigger, position, {scroller, containerAnimation, horizontal}) => {\n// \tscroller = _getTarget(scroller || _win);\n// \tlet direction = horizontal ? _horizontal : _vertical,\n// \t\tisViewport = _isViewport(scroller);\n// \t_getSizeFunc(scroller, isViewport, direction);\n// \treturn _parsePosition(position, _getTarget(trigger), _getSizeFunc(scroller, isViewport, direction)(), direction, _getScrollFunc(scroller, direction)(), 0, 0, 0, _getOffsetsFunc(scroller, isViewport)(), isViewport ? 0 : parseFloat(_getComputedStyle(scroller)[\"border\" + direction.p2 + _Width]) || 0, 0, containerAnimation ? containerAnimation.duration() : _maxScroll(scroller), containerAnimation);\n// },\n_parsePosition = function _parsePosition(value, trigger, scrollerSize, direction, scroll, marker, markerScroller, self, scrollerBounds, borderWidth, useFixedPosition, scrollerMax, containerAnimation, clampZeroProp) {\n _isFunction(value) && (value = value(self));\n\n if (_isString(value) && value.substr(0, 3) === \"max\") {\n value = scrollerMax + (value.charAt(4) === \"=\" ? _offsetToPx(\"0\" + value.substr(3), scrollerSize) : 0);\n }\n\n var time = containerAnimation ? containerAnimation.time() : 0,\n p1,\n p2,\n element;\n containerAnimation && containerAnimation.seek(0);\n isNaN(value) || (value = +value); // convert a string number like \"45\" to an actual number\n\n if (!_isNumber(value)) {\n _isFunction(trigger) && (trigger = trigger(self));\n var offsets = (value || \"0\").split(\" \"),\n bounds,\n localOffset,\n globalOffset,\n display;\n element = _getTarget(trigger, self) || _body;\n bounds = _getBounds(element) || {};\n\n if ((!bounds || !bounds.left && !bounds.top) && _getComputedStyle(element).display === \"none\") {\n // if display is \"none\", it won't report getBoundingClientRect() properly\n display = element.style.display;\n element.style.display = \"block\";\n bounds = _getBounds(element);\n display ? element.style.display = display : element.style.removeProperty(\"display\");\n }\n\n localOffset = _offsetToPx(offsets[0], bounds[direction.d]);\n globalOffset = _offsetToPx(offsets[1] || \"0\", scrollerSize);\n value = bounds[direction.p] - scrollerBounds[direction.p] - borderWidth + localOffset + scroll - globalOffset;\n markerScroller && _positionMarker(markerScroller, globalOffset, direction, scrollerSize - globalOffset < 20 || markerScroller._isStart && globalOffset > 20);\n scrollerSize -= scrollerSize - globalOffset; // adjust for the marker\n } else {\n containerAnimation && (value = gsap.utils.mapRange(containerAnimation.scrollTrigger.start, containerAnimation.scrollTrigger.end, 0, scrollerMax, value));\n markerScroller && _positionMarker(markerScroller, scrollerSize, direction, true);\n }\n\n if (clampZeroProp) {\n self[clampZeroProp] = value || -0.001;\n value < 0 && (value = 0);\n }\n\n if (marker) {\n var position = value + scrollerSize,\n isStart = marker._isStart;\n p1 = \"scroll\" + direction.d2;\n\n _positionMarker(marker, position, direction, isStart && position > 20 || !isStart && (useFixedPosition ? Math.max(_body[p1], _docEl[p1]) : marker.parentNode[p1]) <= position + 1);\n\n if (useFixedPosition) {\n scrollerBounds = _getBounds(markerScroller);\n useFixedPosition && (marker.style[direction.op.p] = scrollerBounds[direction.op.p] - direction.op.m - marker._offset + _px);\n }\n }\n\n if (containerAnimation && element) {\n p1 = _getBounds(element);\n containerAnimation.seek(scrollerMax);\n p2 = _getBounds(element);\n containerAnimation._caScrollDist = p1[direction.p] - p2[direction.p];\n value = value / containerAnimation._caScrollDist * scrollerMax;\n }\n\n containerAnimation && containerAnimation.seek(time);\n return containerAnimation ? value : Math.round(value);\n},\n _prefixExp = /(webkit|moz|length|cssText|inset)/i,\n _reparent = function _reparent(element, parent, top, left) {\n if (element.parentNode !== parent) {\n var style = element.style,\n p,\n cs;\n\n if (parent === _body) {\n element._stOrig = style.cssText; // record original inline styles so we can revert them later\n\n cs = _getComputedStyle(element);\n\n for (p in cs) {\n // must copy all relevant styles to ensure that nothing changes visually when we reparent to the . Skip the vendor prefixed ones.\n if (!+p && !_prefixExp.test(p) && cs[p] && typeof style[p] === \"string\" && p !== \"0\") {\n style[p] = cs[p];\n }\n }\n\n style.top = top;\n style.left = left;\n } else {\n style.cssText = element._stOrig;\n }\n\n gsap.core.getCache(element).uncache = 1;\n parent.appendChild(element);\n }\n},\n _interruptionTracker = function _interruptionTracker(getValueFunc, initialValue, onInterrupt) {\n var last1 = initialValue,\n last2 = last1;\n return function (value) {\n var current = Math.round(getValueFunc()); // round because in some [very uncommon] Windows environments, scroll can get reported with decimals even though it was set without.\n\n if (current !== last1 && current !== last2 && Math.abs(current - last1) > 3 && Math.abs(current - last2) > 3) {\n // if the user scrolls, kill the tween. iOS Safari intermittently misreports the scroll position, it may be the most recently-set one or the one before that! When Safari is zoomed (CMD-+), it often misreports as 1 pixel off too! So if we set the scroll position to 125, for example, it'll actually report it as 124.\n value = current;\n onInterrupt && onInterrupt();\n }\n\n last2 = last1;\n last1 = Math.round(value);\n return last1;\n };\n},\n _shiftMarker = function _shiftMarker(marker, direction, value) {\n var vars = {};\n vars[direction.p] = \"+=\" + value;\n gsap.set(marker, vars);\n},\n // _mergeAnimations = animations => {\n// \tlet tl = gsap.timeline({smoothChildTiming: true}).startTime(Math.min(...animations.map(a => a.globalTime(0))));\n// \tanimations.forEach(a => {let time = a.totalTime(); tl.add(a); a.totalTime(time); });\n// \ttl.smoothChildTiming = false;\n// \treturn tl;\n// },\n// returns a function that can be used to tween the scroll position in the direction provided, and when doing so it'll add a .tween property to the FUNCTION itself, and remove it when the tween completes or gets killed. This gives us a way to have multiple ScrollTriggers use a central function for any given scroller and see if there's a scroll tween running (which would affect if/how things get updated)\n_getTweenCreator = function _getTweenCreator(scroller, direction) {\n var getScroll = _getScrollFunc(scroller, direction),\n prop = \"_scroll\" + direction.p2,\n // add a tweenable property to the scroller that's a getter/setter function, like _scrollTop or _scrollLeft. This way, if someone does gsap.killTweensOf(scroller) it'll kill the scroll tween.\n getTween = function getTween(scrollTo, vars, initialValue, change1, change2) {\n var tween = getTween.tween,\n onComplete = vars.onComplete,\n modifiers = {};\n initialValue = initialValue || getScroll();\n\n var checkForInterruption = _interruptionTracker(getScroll, initialValue, function () {\n tween.kill();\n getTween.tween = 0;\n });\n\n change2 = change1 && change2 || 0; // if change1 is 0, we set that to the difference and ignore change2. Otherwise, there would be a compound effect.\n\n change1 = change1 || scrollTo - initialValue;\n tween && tween.kill();\n vars[prop] = scrollTo;\n vars.inherit = false;\n vars.modifiers = modifiers;\n\n modifiers[prop] = function () {\n return checkForInterruption(initialValue + change1 * tween.ratio + change2 * tween.ratio * tween.ratio);\n };\n\n vars.onUpdate = function () {\n _scrollers.cache++;\n getTween.tween && _updateAll(); // if it was interrupted/killed, like in a context.revert(), don't force an updateAll()\n };\n\n vars.onComplete = function () {\n getTween.tween = 0;\n onComplete && onComplete.call(tween);\n };\n\n tween = getTween.tween = gsap.to(scroller, vars);\n return tween;\n };\n\n scroller[prop] = getScroll;\n\n getScroll.wheelHandler = function () {\n return getTween.tween && getTween.tween.kill() && (getTween.tween = 0);\n };\n\n _addListener(scroller, \"wheel\", getScroll.wheelHandler); // Windows machines handle mousewheel scrolling in chunks (like \"3 lines per scroll\") meaning the typical strategy for cancelling the scroll isn't as sensitive. It's much more likely to match one of the previous 2 scroll event positions. So we kill any snapping as soon as there's a wheel event.\n\n\n ScrollTrigger.isTouch && _addListener(scroller, \"touchmove\", getScroll.wheelHandler);\n return getTween;\n};\n\nexport var ScrollTrigger = /*#__PURE__*/function () {\n function ScrollTrigger(vars, animation) {\n _coreInitted || ScrollTrigger.register(gsap) || console.warn(\"Please gsap.registerPlugin(ScrollTrigger)\");\n\n _context(this);\n\n this.init(vars, animation);\n }\n\n var _proto = ScrollTrigger.prototype;\n\n _proto.init = function init(vars, animation) {\n this.progress = this.start = 0;\n this.vars && this.kill(true, true); // in case it's being initted again\n\n if (!_enabled) {\n this.update = this.refresh = this.kill = _passThrough;\n return;\n }\n\n vars = _setDefaults(_isString(vars) || _isNumber(vars) || vars.nodeType ? {\n trigger: vars\n } : vars, _defaults);\n\n var _vars = vars,\n onUpdate = _vars.onUpdate,\n toggleClass = _vars.toggleClass,\n id = _vars.id,\n onToggle = _vars.onToggle,\n onRefresh = _vars.onRefresh,\n scrub = _vars.scrub,\n trigger = _vars.trigger,\n pin = _vars.pin,\n pinSpacing = _vars.pinSpacing,\n invalidateOnRefresh = _vars.invalidateOnRefresh,\n anticipatePin = _vars.anticipatePin,\n onScrubComplete = _vars.onScrubComplete,\n onSnapComplete = _vars.onSnapComplete,\n once = _vars.once,\n snap = _vars.snap,\n pinReparent = _vars.pinReparent,\n pinSpacer = _vars.pinSpacer,\n containerAnimation = _vars.containerAnimation,\n fastScrollEnd = _vars.fastScrollEnd,\n preventOverlaps = _vars.preventOverlaps,\n direction = vars.horizontal || vars.containerAnimation && vars.horizontal !== false ? _horizontal : _vertical,\n isToggle = !scrub && scrub !== 0,\n scroller = _getTarget(vars.scroller || _win),\n scrollerCache = gsap.core.getCache(scroller),\n isViewport = _isViewport(scroller),\n useFixedPosition = (\"pinType\" in vars ? vars.pinType : _getProxyProp(scroller, \"pinType\") || isViewport && \"fixed\") === \"fixed\",\n callbacks = [vars.onEnter, vars.onLeave, vars.onEnterBack, vars.onLeaveBack],\n toggleActions = isToggle && vars.toggleActions.split(\" \"),\n markers = \"markers\" in vars ? vars.markers : _defaults.markers,\n borderWidth = isViewport ? 0 : parseFloat(_getComputedStyle(scroller)[\"border\" + direction.p2 + _Width]) || 0,\n self = this,\n onRefreshInit = vars.onRefreshInit && function () {\n return vars.onRefreshInit(self);\n },\n getScrollerSize = _getSizeFunc(scroller, isViewport, direction),\n getScrollerOffsets = _getOffsetsFunc(scroller, isViewport),\n lastSnap = 0,\n lastRefresh = 0,\n prevProgress = 0,\n scrollFunc = _getScrollFunc(scroller, direction),\n tweenTo,\n pinCache,\n snapFunc,\n scroll1,\n scroll2,\n start,\n end,\n markerStart,\n markerEnd,\n markerStartTrigger,\n markerEndTrigger,\n markerVars,\n executingOnRefresh,\n change,\n pinOriginalState,\n pinActiveState,\n pinState,\n spacer,\n offset,\n pinGetter,\n pinSetter,\n pinStart,\n pinChange,\n spacingStart,\n spacerState,\n markerStartSetter,\n pinMoves,\n markerEndSetter,\n cs,\n snap1,\n snap2,\n scrubTween,\n scrubSmooth,\n snapDurClamp,\n snapDelayedCall,\n prevScroll,\n prevAnimProgress,\n caMarkerSetter,\n customRevertReturn; // for the sake of efficiency, _startClamp/_endClamp serve like a truthy value indicating that clamping was enabled on the start/end, and ALSO store the actual pre-clamped numeric value. We tap into that in ScrollSmoother for speed effects. So for example, if start=\"clamp(top bottom)\" results in a start of -100 naturally, it would get clamped to 0 but -100 would be stored in _startClamp.\n\n\n self._startClamp = self._endClamp = false;\n self._dir = direction;\n anticipatePin *= 45;\n self.scroller = scroller;\n self.scroll = containerAnimation ? containerAnimation.time.bind(containerAnimation) : scrollFunc;\n scroll1 = scrollFunc();\n self.vars = vars;\n animation = animation || vars.animation;\n\n if (\"refreshPriority\" in vars) {\n _sort = 1;\n vars.refreshPriority === -9999 && (_primary = self); // used by ScrollSmoother\n }\n\n scrollerCache.tweenScroll = scrollerCache.tweenScroll || {\n top: _getTweenCreator(scroller, _vertical),\n left: _getTweenCreator(scroller, _horizontal)\n };\n self.tweenTo = tweenTo = scrollerCache.tweenScroll[direction.p];\n\n self.scrubDuration = function (value) {\n scrubSmooth = _isNumber(value) && value;\n\n if (!scrubSmooth) {\n scrubTween && scrubTween.progress(1).kill();\n scrubTween = 0;\n } else {\n scrubTween ? scrubTween.duration(value) : scrubTween = gsap.to(animation, {\n ease: \"expo\",\n totalProgress: \"+=0\",\n inherit: false,\n duration: scrubSmooth,\n paused: true,\n onComplete: function onComplete() {\n return onScrubComplete && onScrubComplete(self);\n }\n });\n }\n };\n\n if (animation) {\n animation.vars.lazy = false;\n animation._initted && !self.isReverted || animation.vars.immediateRender !== false && vars.immediateRender !== false && animation.duration() && animation.render(0, true, true); // special case: if this ScrollTrigger gets re-initted, a from() tween with a stagger could get initted initially and then reverted on the re-init which means it'll need to get rendered again here to properly display things. Otherwise, See https://gsap.com/forums/topic/36777-scrollsmoother-splittext-nextjs/ and https://codepen.io/GreenSock/pen/eYPyPpd?editors=0010\n\n self.animation = animation.pause();\n animation.scrollTrigger = self;\n self.scrubDuration(scrub);\n snap1 = 0;\n id || (id = animation.vars.id);\n }\n\n if (snap) {\n // TODO: potential idea: use legitimate CSS scroll snapping by pushing invisible elements into the DOM that serve as snap positions, and toggle the document.scrollingElement.style.scrollSnapType onToggle. See https://codepen.io/GreenSock/pen/JjLrgWM for a quick proof of concept.\n if (!_isObject(snap) || snap.push) {\n snap = {\n snapTo: snap\n };\n }\n\n \"scrollBehavior\" in _body.style && gsap.set(isViewport ? [_body, _docEl] : scroller, {\n scrollBehavior: \"auto\"\n }); // smooth scrolling doesn't work with snap.\n\n _scrollers.forEach(function (o) {\n return _isFunction(o) && o.target === (isViewport ? _doc.scrollingElement || _docEl : scroller) && (o.smooth = false);\n }); // note: set smooth to false on both the vertical and horizontal scroll getters/setters\n\n\n snapFunc = _isFunction(snap.snapTo) ? snap.snapTo : snap.snapTo === \"labels\" ? _getClosestLabel(animation) : snap.snapTo === \"labelsDirectional\" ? _getLabelAtDirection(animation) : snap.directional !== false ? function (value, st) {\n return _snapDirectional(snap.snapTo)(value, _getTime() - lastRefresh < 500 ? 0 : st.direction);\n } : gsap.utils.snap(snap.snapTo);\n snapDurClamp = snap.duration || {\n min: 0.1,\n max: 2\n };\n snapDurClamp = _isObject(snapDurClamp) ? _clamp(snapDurClamp.min, snapDurClamp.max) : _clamp(snapDurClamp, snapDurClamp);\n snapDelayedCall = gsap.delayedCall(snap.delay || scrubSmooth / 2 || 0.1, function () {\n var scroll = scrollFunc(),\n refreshedRecently = _getTime() - lastRefresh < 500,\n tween = tweenTo.tween;\n\n if ((refreshedRecently || Math.abs(self.getVelocity()) < 10) && !tween && !_pointerIsDown && lastSnap !== scroll) {\n var progress = (scroll - start) / change,\n totalProgress = animation && !isToggle ? animation.totalProgress() : progress,\n velocity = refreshedRecently ? 0 : (totalProgress - snap2) / (_getTime() - _time2) * 1000 || 0,\n change1 = gsap.utils.clamp(-progress, 1 - progress, _abs(velocity / 2) * velocity / 0.185),\n naturalEnd = progress + (snap.inertia === false ? 0 : change1),\n endValue,\n endScroll,\n _snap = snap,\n onStart = _snap.onStart,\n _onInterrupt = _snap.onInterrupt,\n _onComplete = _snap.onComplete;\n endValue = snapFunc(naturalEnd, self);\n _isNumber(endValue) || (endValue = naturalEnd); // in case the function didn't return a number, fall back to using the naturalEnd\n\n endScroll = Math.max(0, Math.round(start + endValue * change));\n\n if (scroll <= end && scroll >= start && endScroll !== scroll) {\n if (tween && !tween._initted && tween.data <= _abs(endScroll - scroll)) {\n // there's an overlapping snap! So we must figure out which one is closer and let that tween live.\n return;\n }\n\n if (snap.inertia === false) {\n change1 = endValue - progress;\n }\n\n tweenTo(endScroll, {\n duration: snapDurClamp(_abs(Math.max(_abs(naturalEnd - totalProgress), _abs(endValue - totalProgress)) * 0.185 / velocity / 0.05 || 0)),\n ease: snap.ease || \"power3\",\n data: _abs(endScroll - scroll),\n // record the distance so that if another snap tween occurs (conflict) we can prioritize the closest snap.\n onInterrupt: function onInterrupt() {\n return snapDelayedCall.restart(true) && _onInterrupt && _callback(self, _onInterrupt);\n },\n onComplete: function onComplete() {\n self.update();\n lastSnap = scrollFunc();\n\n if (animation && !isToggle) {\n // the resolution of the scrollbar is limited, so we should correct the scrubbed animation's playhead at the end to match EXACTLY where it was supposed to snap\n scrubTween ? scrubTween.resetTo(\"totalProgress\", endValue, animation._tTime / animation._tDur) : animation.progress(endValue);\n }\n\n snap1 = snap2 = animation && !isToggle ? animation.totalProgress() : self.progress;\n onSnapComplete && onSnapComplete(self);\n _onComplete && _callback(self, _onComplete);\n }\n }, scroll, change1 * change, endScroll - scroll - change1 * change);\n onStart && _callback(self, onStart, tweenTo.tween);\n }\n } else if (self.isActive && lastSnap !== scroll) {\n snapDelayedCall.restart(true);\n }\n }).pause();\n }\n\n id && (_ids[id] = self);\n trigger = self.trigger = _getTarget(trigger || pin !== true && pin); // if a trigger has some kind of scroll-related effect applied that could contaminate the \"y\" or \"x\" position (like a ScrollSmoother effect), we needed a way to temporarily revert it, so we use the stRevert property of the gsCache. It can return another function that we'll call at the end so it can return to its normal state.\n\n customRevertReturn = trigger && trigger._gsap && trigger._gsap.stRevert;\n customRevertReturn && (customRevertReturn = customRevertReturn(self));\n pin = pin === true ? trigger : _getTarget(pin);\n _isString(toggleClass) && (toggleClass = {\n targets: trigger,\n className: toggleClass\n });\n\n if (pin) {\n pinSpacing === false || pinSpacing === _margin || (pinSpacing = !pinSpacing && pin.parentNode && pin.parentNode.style && _getComputedStyle(pin.parentNode).display === \"flex\" ? false : _padding); // if the parent is display: flex, don't apply pinSpacing by default. We should check that pin.parentNode is an element (not shadow dom window)\n\n self.pin = pin;\n pinCache = gsap.core.getCache(pin);\n\n if (!pinCache.spacer) {\n // record the spacer and pinOriginalState on the cache in case someone tries pinning the same element with MULTIPLE ScrollTriggers - we don't want to have multiple spacers or record the \"original\" pin state after it has already been affected by another ScrollTrigger.\n if (pinSpacer) {\n pinSpacer = _getTarget(pinSpacer);\n pinSpacer && !pinSpacer.nodeType && (pinSpacer = pinSpacer.current || pinSpacer.nativeElement); // for React & Angular\n\n pinCache.spacerIsNative = !!pinSpacer;\n pinSpacer && (pinCache.spacerState = _getState(pinSpacer));\n }\n\n pinCache.spacer = spacer = pinSpacer || _doc.createElement(\"div\");\n spacer.classList.add(\"pin-spacer\");\n id && spacer.classList.add(\"pin-spacer-\" + id);\n pinCache.pinState = pinOriginalState = _getState(pin);\n } else {\n pinOriginalState = pinCache.pinState;\n }\n\n vars.force3D !== false && gsap.set(pin, {\n force3D: true\n });\n self.spacer = spacer = pinCache.spacer;\n cs = _getComputedStyle(pin);\n spacingStart = cs[pinSpacing + direction.os2];\n pinGetter = gsap.getProperty(pin);\n pinSetter = gsap.quickSetter(pin, direction.a, _px); // pin.firstChild && !_maxScroll(pin, direction) && (pin.style.overflow = \"hidden\"); // protects from collapsing margins, but can have unintended consequences as demonstrated here: https://codepen.io/GreenSock/pen/1e42c7a73bfa409d2cf1e184e7a4248d so it was removed in favor of just telling people to set up their CSS to avoid the collapsing margins (overflow: hidden | auto is just one option. Another is border-top: 1px solid transparent).\n\n _swapPinIn(pin, spacer, cs);\n\n pinState = _getState(pin);\n }\n\n if (markers) {\n markerVars = _isObject(markers) ? _setDefaults(markers, _markerDefaults) : _markerDefaults;\n markerStartTrigger = _createMarker(\"scroller-start\", id, scroller, direction, markerVars, 0);\n markerEndTrigger = _createMarker(\"scroller-end\", id, scroller, direction, markerVars, 0, markerStartTrigger);\n offset = markerStartTrigger[\"offset\" + direction.op.d2];\n\n var content = _getTarget(_getProxyProp(scroller, \"content\") || scroller);\n\n markerStart = this.markerStart = _createMarker(\"start\", id, content, direction, markerVars, offset, 0, containerAnimation);\n markerEnd = this.markerEnd = _createMarker(\"end\", id, content, direction, markerVars, offset, 0, containerAnimation);\n containerAnimation && (caMarkerSetter = gsap.quickSetter([markerStart, markerEnd], direction.a, _px));\n\n if (!useFixedPosition && !(_proxies.length && _getProxyProp(scroller, \"fixedMarkers\") === true)) {\n _makePositionable(isViewport ? _body : scroller);\n\n gsap.set([markerStartTrigger, markerEndTrigger], {\n force3D: true\n });\n markerStartSetter = gsap.quickSetter(markerStartTrigger, direction.a, _px);\n markerEndSetter = gsap.quickSetter(markerEndTrigger, direction.a, _px);\n }\n }\n\n if (containerAnimation) {\n var oldOnUpdate = containerAnimation.vars.onUpdate,\n oldParams = containerAnimation.vars.onUpdateParams;\n containerAnimation.eventCallback(\"onUpdate\", function () {\n self.update(0, 0, 1);\n oldOnUpdate && oldOnUpdate.apply(containerAnimation, oldParams || []);\n });\n }\n\n self.previous = function () {\n return _triggers[_triggers.indexOf(self) - 1];\n };\n\n self.next = function () {\n return _triggers[_triggers.indexOf(self) + 1];\n };\n\n self.revert = function (revert, temp) {\n if (!temp) {\n return self.kill(true);\n } // for compatibility with gsap.context() and gsap.matchMedia() which call revert()\n\n\n var r = revert !== false || !self.enabled,\n prevRefreshing = _refreshing;\n\n if (r !== self.isReverted) {\n if (r) {\n prevScroll = Math.max(scrollFunc(), self.scroll.rec || 0); // record the scroll so we can revert later (repositioning/pinning things can affect scroll position). In the static refresh() method, we first record all the scroll positions as a reference.\n\n prevProgress = self.progress;\n prevAnimProgress = animation && animation.progress();\n }\n\n markerStart && [markerStart, markerEnd, markerStartTrigger, markerEndTrigger].forEach(function (m) {\n return m.style.display = r ? \"none\" : \"block\";\n });\n\n if (r) {\n _refreshing = self;\n self.update(r); // make sure the pin is back in its original position so that all the measurements are correct. do this BEFORE swapping the pin out\n }\n\n if (pin && (!pinReparent || !self.isActive)) {\n if (r) {\n _swapPinOut(pin, spacer, pinOriginalState);\n } else {\n _swapPinIn(pin, spacer, _getComputedStyle(pin), spacerState);\n }\n }\n\n r || self.update(r); // when we're restoring, the update should run AFTER swapping the pin into its pin-spacer.\n\n _refreshing = prevRefreshing; // restore. We set it to true during the update() so that things fire properly in there.\n\n self.isReverted = r;\n }\n };\n\n self.refresh = function (soft, force, position, pinOffset) {\n // position is typically only defined if it's coming from setPositions() - it's a way to skip the normal parsing. pinOffset is also only from setPositions() and is mostly related to fancy stuff we need to do in ScrollSmoother with effects\n if ((_refreshing || !self.enabled) && !force) {\n return;\n }\n\n if (pin && soft && _lastScrollTime) {\n _addListener(ScrollTrigger, \"scrollEnd\", _softRefresh);\n\n return;\n }\n\n !_refreshingAll && onRefreshInit && onRefreshInit(self);\n _refreshing = self;\n\n if (tweenTo.tween && !position) {\n // we skip this if a position is passed in because typically that's from .setPositions() and it's best to allow in-progress snapping to continue.\n tweenTo.tween.kill();\n tweenTo.tween = 0;\n }\n\n scrubTween && scrubTween.pause();\n\n if (invalidateOnRefresh && animation) {\n animation.revert({\n kill: false\n }).invalidate();\n animation.getChildren ? animation.getChildren(true, true, false).forEach(function (t) {\n return t.vars.immediateRender && t.render(0, true, true);\n }) : animation.vars.immediateRender && animation.render(0, true, true); // any from() or fromTo() tweens should render immediately (well, unless they have immediateRender: false)\n }\n\n self.isReverted || self.revert(true, true);\n self._subPinOffset = false; // we'll set this to true in the sub-pins if we find any\n\n var size = getScrollerSize(),\n scrollerBounds = getScrollerOffsets(),\n max = containerAnimation ? containerAnimation.duration() : _maxScroll(scroller, direction),\n isFirstRefresh = change <= 0.01 || !change,\n offset = 0,\n otherPinOffset = pinOffset || 0,\n parsedEnd = _isObject(position) ? position.end : vars.end,\n parsedEndTrigger = vars.endTrigger || trigger,\n parsedStart = _isObject(position) ? position.start : vars.start || (vars.start === 0 || !trigger ? 0 : pin ? \"0 0\" : \"0 100%\"),\n pinnedContainer = self.pinnedContainer = vars.pinnedContainer && _getTarget(vars.pinnedContainer, self),\n triggerIndex = trigger && Math.max(0, _triggers.indexOf(self)) || 0,\n i = triggerIndex,\n cs,\n bounds,\n scroll,\n isVertical,\n override,\n curTrigger,\n curPin,\n oppositeScroll,\n initted,\n revertedPins,\n forcedOverflow,\n markerStartOffset,\n markerEndOffset;\n\n if (markers && _isObject(position)) {\n // if we alter the start/end positions with .setPositions(), it generally feeds in absolute NUMBERS which don't convey information about where to line up the markers, so to keep it intuitive, we record how far the trigger positions shift after applying the new numbers and then offset by that much in the opposite direction. We do the same to the associated trigger markers too of course.\n markerStartOffset = gsap.getProperty(markerStartTrigger, direction.p);\n markerEndOffset = gsap.getProperty(markerEndTrigger, direction.p);\n }\n\n while (i-- > 0) {\n // user might try to pin the same element more than once, so we must find any prior triggers with the same pin, revert them, and determine how long they're pinning so that we can offset things appropriately. Make sure we revert from last to first so that things \"rewind\" properly.\n curTrigger = _triggers[i];\n curTrigger.end || curTrigger.refresh(0, 1) || (_refreshing = self); // if it's a timeline-based trigger that hasn't been fully initialized yet because it's waiting for 1 tick, just force the refresh() here, otherwise if it contains a pin that's supposed to affect other ScrollTriggers further down the page, they won't be adjusted properly.\n\n curPin = curTrigger.pin;\n\n if (curPin && (curPin === trigger || curPin === pin || curPin === pinnedContainer) && !curTrigger.isReverted) {\n revertedPins || (revertedPins = []);\n revertedPins.unshift(curTrigger); // we'll revert from first to last to make sure things reach their end state properly\n\n curTrigger.revert(true, true);\n }\n\n if (curTrigger !== _triggers[i]) {\n // in case it got removed.\n triggerIndex--;\n i--;\n }\n }\n\n _isFunction(parsedStart) && (parsedStart = parsedStart(self));\n parsedStart = _parseClamp(parsedStart, \"start\", self);\n start = _parsePosition(parsedStart, trigger, size, direction, scrollFunc(), markerStart, markerStartTrigger, self, scrollerBounds, borderWidth, useFixedPosition, max, containerAnimation, self._startClamp && \"_startClamp\") || (pin ? -0.001 : 0);\n _isFunction(parsedEnd) && (parsedEnd = parsedEnd(self));\n\n if (_isString(parsedEnd) && !parsedEnd.indexOf(\"+=\")) {\n if (~parsedEnd.indexOf(\" \")) {\n parsedEnd = (_isString(parsedStart) ? parsedStart.split(\" \")[0] : \"\") + parsedEnd;\n } else {\n offset = _offsetToPx(parsedEnd.substr(2), size);\n parsedEnd = _isString(parsedStart) ? parsedStart : (containerAnimation ? gsap.utils.mapRange(0, containerAnimation.duration(), containerAnimation.scrollTrigger.start, containerAnimation.scrollTrigger.end, start) : start) + offset; // _parsePosition won't factor in the offset if the start is a number, so do it here.\n\n parsedEndTrigger = trigger;\n }\n }\n\n parsedEnd = _parseClamp(parsedEnd, \"end\", self);\n end = Math.max(start, _parsePosition(parsedEnd || (parsedEndTrigger ? \"100% 0\" : max), parsedEndTrigger, size, direction, scrollFunc() + offset, markerEnd, markerEndTrigger, self, scrollerBounds, borderWidth, useFixedPosition, max, containerAnimation, self._endClamp && \"_endClamp\")) || -0.001;\n offset = 0;\n i = triggerIndex;\n\n while (i--) {\n curTrigger = _triggers[i] || {};\n curPin = curTrigger.pin;\n\n if (curPin && curTrigger.start - curTrigger._pinPush <= start && !containerAnimation && curTrigger.end > 0) {\n cs = curTrigger.end - (self._startClamp ? Math.max(0, curTrigger.start) : curTrigger.start);\n\n if ((curPin === trigger && curTrigger.start - curTrigger._pinPush < start || curPin === pinnedContainer) && isNaN(parsedStart)) {\n // numeric start values shouldn't be offset at all - treat them as absolute\n offset += cs * (1 - curTrigger.progress);\n }\n\n curPin === pin && (otherPinOffset += cs);\n }\n }\n\n start += offset;\n end += offset;\n self._startClamp && (self._startClamp += offset);\n\n if (self._endClamp && !_refreshingAll) {\n self._endClamp = end || -0.001;\n end = Math.min(end, _maxScroll(scroller, direction));\n }\n\n change = end - start || (start -= 0.01) && 0.001;\n\n if (isFirstRefresh) {\n // on the very first refresh(), the prevProgress couldn't have been accurate yet because the start/end were never calculated, so we set it here. Before 3.11.5, it could lead to an inaccurate scroll position restoration with snapping.\n prevProgress = gsap.utils.clamp(0, 1, gsap.utils.normalize(start, end, prevScroll));\n }\n\n self._pinPush = otherPinOffset;\n\n if (markerStart && offset) {\n // offset the markers if necessary\n cs = {};\n cs[direction.a] = \"+=\" + offset;\n pinnedContainer && (cs[direction.p] = \"-=\" + scrollFunc());\n gsap.set([markerStart, markerEnd], cs);\n }\n\n if (pin && !(_clampingMax && self.end >= _maxScroll(scroller, direction))) {\n cs = _getComputedStyle(pin);\n isVertical = direction === _vertical;\n scroll = scrollFunc(); // recalculate because the triggers can affect the scroll\n\n pinStart = parseFloat(pinGetter(direction.a)) + otherPinOffset;\n\n if (!max && end > 1) {\n // makes sure the scroller has a scrollbar, otherwise if something has width: 100%, for example, it would be too big (exclude the scrollbar). See https://gsap.com/forums/topic/25182-scrolltrigger-width-of-page-increase-where-markers-are-set-to-false/\n forcedOverflow = (isViewport ? _doc.scrollingElement || _docEl : scroller).style;\n forcedOverflow = {\n style: forcedOverflow,\n value: forcedOverflow[\"overflow\" + direction.a.toUpperCase()]\n };\n\n if (isViewport && _getComputedStyle(_body)[\"overflow\" + direction.a.toUpperCase()] !== \"scroll\") {\n // avoid an extra scrollbar if BOTH and have overflow set to \"scroll\"\n forcedOverflow.style[\"overflow\" + direction.a.toUpperCase()] = \"scroll\";\n }\n }\n\n _swapPinIn(pin, spacer, cs);\n\n pinState = _getState(pin); // transforms will interfere with the top/left/right/bottom placement, so remove them temporarily. getBoundingClientRect() factors in transforms.\n\n bounds = _getBounds(pin, true);\n oppositeScroll = useFixedPosition && _getScrollFunc(scroller, isVertical ? _horizontal : _vertical)();\n\n if (pinSpacing) {\n spacerState = [pinSpacing + direction.os2, change + otherPinOffset + _px];\n spacerState.t = spacer;\n i = pinSpacing === _padding ? _getSize(pin, direction) + change + otherPinOffset : 0;\n\n if (i) {\n spacerState.push(direction.d, i + _px); // for box-sizing: border-box (must include padding).\n\n spacer.style.flexBasis !== \"auto\" && (spacer.style.flexBasis = i + _px);\n }\n\n _setState(spacerState);\n\n if (pinnedContainer) {\n // in ScrollTrigger.refresh(), we need to re-evaluate the pinContainer's size because this pinSpacing may stretch it out, but we can't just add the exact distance because depending on layout, it may not push things down or it may only do so partially.\n _triggers.forEach(function (t) {\n if (t.pin === pinnedContainer && t.vars.pinSpacing !== false) {\n t._subPinOffset = true;\n }\n });\n }\n\n useFixedPosition && scrollFunc(prevScroll);\n } else {\n i = _getSize(pin, direction);\n i && spacer.style.flexBasis !== \"auto\" && (spacer.style.flexBasis = i + _px);\n }\n\n if (useFixedPosition) {\n override = {\n top: bounds.top + (isVertical ? scroll - start : oppositeScroll) + _px,\n left: bounds.left + (isVertical ? oppositeScroll : scroll - start) + _px,\n boxSizing: \"border-box\",\n position: \"fixed\"\n };\n override[_width] = override[\"max\" + _Width] = Math.ceil(bounds.width) + _px;\n override[_height] = override[\"max\" + _Height] = Math.ceil(bounds.height) + _px;\n override[_margin] = override[_margin + _Top] = override[_margin + _Right] = override[_margin + _Bottom] = override[_margin + _Left] = \"0\";\n override[_padding] = cs[_padding];\n override[_padding + _Top] = cs[_padding + _Top];\n override[_padding + _Right] = cs[_padding + _Right];\n override[_padding + _Bottom] = cs[_padding + _Bottom];\n override[_padding + _Left] = cs[_padding + _Left];\n pinActiveState = _copyState(pinOriginalState, override, pinReparent);\n _refreshingAll && scrollFunc(0);\n }\n\n if (animation) {\n // the animation might be affecting the transform, so we must jump to the end, check the value, and compensate accordingly. Otherwise, when it becomes unpinned, the pinSetter() will get set to a value that doesn't include whatever the animation did.\n initted = animation._initted; // if not, we must invalidate() after this step, otherwise it could lock in starting values prematurely.\n\n _suppressOverwrites(1);\n\n animation.render(animation.duration(), true, true);\n pinChange = pinGetter(direction.a) - pinStart + change + otherPinOffset;\n pinMoves = Math.abs(change - pinChange) > 1;\n useFixedPosition && pinMoves && pinActiveState.splice(pinActiveState.length - 2, 2); // transform is the last property/value set in the state Array. Since the animation is controlling that, we should omit it.\n\n animation.render(0, true, true);\n initted || animation.invalidate(true);\n animation.parent || animation.totalTime(animation.totalTime()); // if, for example, a toggleAction called play() and then refresh() happens and when we render(1) above, it would cause the animation to complete and get removed from its parent, so this makes sure it gets put back in.\n\n _suppressOverwrites(0);\n } else {\n pinChange = change;\n }\n\n forcedOverflow && (forcedOverflow.value ? forcedOverflow.style[\"overflow\" + direction.a.toUpperCase()] = forcedOverflow.value : forcedOverflow.style.removeProperty(\"overflow-\" + direction.a));\n } else if (trigger && scrollFunc() && !containerAnimation) {\n // it may be INSIDE a pinned element, so walk up the tree and look for any elements with _pinOffset to compensate because anything with pinSpacing that's already scrolled would throw off the measurements in getBoundingClientRect()\n bounds = trigger.parentNode;\n\n while (bounds && bounds !== _body) {\n if (bounds._pinOffset) {\n start -= bounds._pinOffset;\n end -= bounds._pinOffset;\n }\n\n bounds = bounds.parentNode;\n }\n }\n\n revertedPins && revertedPins.forEach(function (t) {\n return t.revert(false, true);\n });\n self.start = start;\n self.end = end;\n scroll1 = scroll2 = _refreshingAll ? prevScroll : scrollFunc(); // reset velocity\n\n if (!containerAnimation && !_refreshingAll) {\n scroll1 < prevScroll && scrollFunc(prevScroll);\n self.scroll.rec = 0;\n }\n\n self.revert(false, true);\n lastRefresh = _getTime();\n\n if (snapDelayedCall) {\n lastSnap = -1; // just so snapping gets re-enabled, clear out any recorded last value\n // self.isActive && scrollFunc(start + change * prevProgress); // previously this line was here to ensure that when snapping kicks in, it's from the previous progress but in some cases that's not desirable, like an all-page ScrollTrigger when new content gets added to the page, that'd totally change the progress.\n\n snapDelayedCall.restart(true);\n }\n\n _refreshing = 0;\n animation && isToggle && (animation._initted || prevAnimProgress) && animation.progress() !== prevAnimProgress && animation.progress(prevAnimProgress || 0, true).render(animation.time(), true, true); // must force a re-render because if saveStyles() was used on the target(s), the styles could have been wiped out during the refresh().\n\n if (isFirstRefresh || prevProgress !== self.progress || containerAnimation || invalidateOnRefresh || animation && !animation._initted) {\n // ensures that the direction is set properly (when refreshing, progress is set back to 0 initially, then back again to wherever it needs to be) and that callbacks are triggered.\n animation && !isToggle && (animation._initted || prevProgress || animation.vars.immediateRender !== false) && animation.totalProgress(containerAnimation && start < -0.001 && !prevProgress ? gsap.utils.normalize(start, end, 0) : prevProgress, true); // to avoid issues where animation callbacks like onStart aren't triggered.\n\n self.progress = isFirstRefresh || (scroll1 - start) / change === prevProgress ? 0 : prevProgress;\n }\n\n pin && pinSpacing && (spacer._pinOffset = Math.round(self.progress * pinChange));\n scrubTween && scrubTween.invalidate();\n\n if (!isNaN(markerStartOffset)) {\n // numbers were passed in for the position which are absolute, so instead of just putting the markers at the very bottom of the viewport, we figure out how far they shifted down (it's safe to assume they were originally positioned in closer relation to the trigger element with values like \"top\", \"center\", a percentage or whatever, so we offset that much in the opposite direction to basically revert them to the relative position thy were at previously.\n markerStartOffset -= gsap.getProperty(markerStartTrigger, direction.p);\n markerEndOffset -= gsap.getProperty(markerEndTrigger, direction.p);\n\n _shiftMarker(markerStartTrigger, direction, markerStartOffset);\n\n _shiftMarker(markerStart, direction, markerStartOffset - (pinOffset || 0));\n\n _shiftMarker(markerEndTrigger, direction, markerEndOffset);\n\n _shiftMarker(markerEnd, direction, markerEndOffset - (pinOffset || 0));\n }\n\n isFirstRefresh && !_refreshingAll && self.update(); // edge case - when you reload a page when it's already scrolled down, some browsers fire a \"scroll\" event before DOMContentLoaded, triggering an updateAll(). If we don't update the self.progress as part of refresh(), then when it happens next, it may record prevProgress as 0 when it really shouldn't, potentially causing a callback in an animation to fire again.\n\n if (onRefresh && !_refreshingAll && !executingOnRefresh) {\n // when refreshing all, we do extra work to correct pinnedContainer sizes and ensure things don't exceed the maxScroll, so we should do all the refreshes at the end after all that work so that the start/end values are corrected.\n executingOnRefresh = true;\n onRefresh(self);\n executingOnRefresh = false;\n }\n };\n\n self.getVelocity = function () {\n return (scrollFunc() - scroll2) / (_getTime() - _time2) * 1000 || 0;\n };\n\n self.endAnimation = function () {\n _endAnimation(self.callbackAnimation);\n\n if (animation) {\n scrubTween ? scrubTween.progress(1) : !animation.paused() ? _endAnimation(animation, animation.reversed()) : isToggle || _endAnimation(animation, self.direction < 0, 1);\n }\n };\n\n self.labelToScroll = function (label) {\n return animation && animation.labels && (start || self.refresh() || start) + animation.labels[label] / animation.duration() * change || 0;\n };\n\n self.getTrailing = function (name) {\n var i = _triggers.indexOf(self),\n a = self.direction > 0 ? _triggers.slice(0, i).reverse() : _triggers.slice(i + 1);\n\n return (_isString(name) ? a.filter(function (t) {\n return t.vars.preventOverlaps === name;\n }) : a).filter(function (t) {\n return self.direction > 0 ? t.end <= start : t.start >= end;\n });\n };\n\n self.update = function (reset, recordVelocity, forceFake) {\n if (containerAnimation && !forceFake && !reset) {\n return;\n }\n\n var scroll = _refreshingAll === true ? prevScroll : self.scroll(),\n p = reset ? 0 : (scroll - start) / change,\n clipped = p < 0 ? 0 : p > 1 ? 1 : p || 0,\n prevProgress = self.progress,\n isActive,\n wasActive,\n toggleState,\n action,\n stateChanged,\n toggled,\n isAtMax,\n isTakingAction;\n\n if (recordVelocity) {\n scroll2 = scroll1;\n scroll1 = containerAnimation ? scrollFunc() : scroll;\n\n if (snap) {\n snap2 = snap1;\n snap1 = animation && !isToggle ? animation.totalProgress() : clipped;\n }\n } // anticipate the pinning a few ticks ahead of time based on velocity to avoid a visual glitch due to the fact that most browsers do scrolling on a separate thread (not synced with requestAnimationFrame).\n\n\n if (anticipatePin && pin && !_refreshing && !_startup && _lastScrollTime) {\n if (!clipped && start < scroll + (scroll - scroll2) / (_getTime() - _time2) * anticipatePin) {\n clipped = 0.0001;\n } else if (clipped === 1 && end > scroll + (scroll - scroll2) / (_getTime() - _time2) * anticipatePin) {\n clipped = 0.9999;\n }\n }\n\n if (clipped !== prevProgress && self.enabled) {\n isActive = self.isActive = !!clipped && clipped < 1;\n wasActive = !!prevProgress && prevProgress < 1;\n toggled = isActive !== wasActive;\n stateChanged = toggled || !!clipped !== !!prevProgress; // could go from start all the way to end, thus it didn't toggle but it did change state in a sense (may need to fire a callback)\n\n self.direction = clipped > prevProgress ? 1 : -1;\n self.progress = clipped;\n\n if (stateChanged && !_refreshing) {\n toggleState = clipped && !prevProgress ? 0 : clipped === 1 ? 1 : prevProgress === 1 ? 2 : 3; // 0 = enter, 1 = leave, 2 = enterBack, 3 = leaveBack (we prioritize the FIRST encounter, thus if you scroll really fast past the onEnter and onLeave in one tick, it'd prioritize onEnter.\n\n if (isToggle) {\n action = !toggled && toggleActions[toggleState + 1] !== \"none\" && toggleActions[toggleState + 1] || toggleActions[toggleState]; // if it didn't toggle, that means it shot right past and since we prioritize the \"enter\" action, we should switch to the \"leave\" in this case (but only if one is defined)\n\n isTakingAction = animation && (action === \"complete\" || action === \"reset\" || action in animation);\n }\n }\n\n preventOverlaps && (toggled || isTakingAction) && (isTakingAction || scrub || !animation) && (_isFunction(preventOverlaps) ? preventOverlaps(self) : self.getTrailing(preventOverlaps).forEach(function (t) {\n return t.endAnimation();\n }));\n\n if (!isToggle) {\n if (scrubTween && !_refreshing && !_startup) {\n scrubTween._dp._time - scrubTween._start !== scrubTween._time && scrubTween.render(scrubTween._dp._time - scrubTween._start); // if there's a scrub on both the container animation and this one (or a ScrollSmoother), the update order would cause this one not to have rendered yet, so it wouldn't make any progress before we .restart() it heading toward the new progress so it'd appear stuck thus we force a render here.\n\n if (scrubTween.resetTo) {\n scrubTween.resetTo(\"totalProgress\", clipped, animation._tTime / animation._tDur);\n } else {\n // legacy support (courtesy), before 3.10.0\n scrubTween.vars.totalProgress = clipped;\n scrubTween.invalidate().restart();\n }\n } else if (animation) {\n animation.totalProgress(clipped, !!(_refreshing && (lastRefresh || reset)));\n }\n }\n\n if (pin) {\n reset && pinSpacing && (spacer.style[pinSpacing + direction.os2] = spacingStart);\n\n if (!useFixedPosition) {\n pinSetter(_round(pinStart + pinChange * clipped));\n } else if (stateChanged) {\n isAtMax = !reset && clipped > prevProgress && end + 1 > scroll && scroll + 1 >= _maxScroll(scroller, direction); // if it's at the VERY end of the page, don't switch away from position: fixed because it's pointless and it could cause a brief flash when the user scrolls back up (when it gets pinned again)\n\n if (pinReparent) {\n if (!reset && (isActive || isAtMax)) {\n var bounds = _getBounds(pin, true),\n _offset = scroll - start;\n\n _reparent(pin, _body, bounds.top + (direction === _vertical ? _offset : 0) + _px, bounds.left + (direction === _vertical ? 0 : _offset) + _px);\n } else {\n _reparent(pin, spacer);\n }\n }\n\n _setState(isActive || isAtMax ? pinActiveState : pinState);\n\n pinMoves && clipped < 1 && isActive || pinSetter(pinStart + (clipped === 1 && !isAtMax ? pinChange : 0));\n }\n }\n\n snap && !tweenTo.tween && !_refreshing && !_startup && snapDelayedCall.restart(true);\n toggleClass && (toggled || once && clipped && (clipped < 1 || !_limitCallbacks)) && _toArray(toggleClass.targets).forEach(function (el) {\n return el.classList[isActive || once ? \"add\" : \"remove\"](toggleClass.className);\n }); // classes could affect positioning, so do it even if reset or refreshing is true.\n\n onUpdate && !isToggle && !reset && onUpdate(self);\n\n if (stateChanged && !_refreshing) {\n if (isToggle) {\n if (isTakingAction) {\n if (action === \"complete\") {\n animation.pause().totalProgress(1);\n } else if (action === \"reset\") {\n animation.restart(true).pause();\n } else if (action === \"restart\") {\n animation.restart(true);\n } else {\n animation[action]();\n }\n }\n\n onUpdate && onUpdate(self);\n }\n\n if (toggled || !_limitCallbacks) {\n // on startup, the page could be scrolled and we don't want to fire callbacks that didn't toggle. For example onEnter shouldn't fire if the ScrollTrigger isn't actually entered.\n onToggle && toggled && _callback(self, onToggle);\n callbacks[toggleState] && _callback(self, callbacks[toggleState]);\n once && (clipped === 1 ? self.kill(false, 1) : callbacks[toggleState] = 0); // a callback shouldn't be called again if once is true.\n\n if (!toggled) {\n // it's possible to go completely past, like from before the start to after the end (or vice-versa) in which case BOTH callbacks should be fired in that order\n toggleState = clipped === 1 ? 1 : 3;\n callbacks[toggleState] && _callback(self, callbacks[toggleState]);\n }\n }\n\n if (fastScrollEnd && !isActive && Math.abs(self.getVelocity()) > (_isNumber(fastScrollEnd) ? fastScrollEnd : 2500)) {\n _endAnimation(self.callbackAnimation);\n\n scrubTween ? scrubTween.progress(1) : _endAnimation(animation, action === \"reverse\" ? 1 : !clipped, 1);\n }\n } else if (isToggle && onUpdate && !_refreshing) {\n onUpdate(self);\n }\n } // update absolutely-positioned markers (only if the scroller isn't the viewport)\n\n\n if (markerEndSetter) {\n var n = containerAnimation ? scroll / containerAnimation.duration() * (containerAnimation._caScrollDist || 0) : scroll;\n markerStartSetter(n + (markerStartTrigger._isFlipped ? 1 : 0));\n markerEndSetter(n);\n }\n\n caMarkerSetter && caMarkerSetter(-scroll / containerAnimation.duration() * (containerAnimation._caScrollDist || 0));\n };\n\n self.enable = function (reset, refresh) {\n if (!self.enabled) {\n self.enabled = true;\n\n _addListener(scroller, \"resize\", _onResize);\n\n isViewport || _addListener(scroller, \"scroll\", _onScroll);\n onRefreshInit && _addListener(ScrollTrigger, \"refreshInit\", onRefreshInit);\n\n if (reset !== false) {\n self.progress = prevProgress = 0;\n scroll1 = scroll2 = lastSnap = scrollFunc();\n }\n\n refresh !== false && self.refresh();\n }\n };\n\n self.getTween = function (snap) {\n return snap && tweenTo ? tweenTo.tween : scrubTween;\n };\n\n self.setPositions = function (newStart, newEnd, keepClamp, pinOffset) {\n // doesn't persist after refresh()! Intended to be a way to override values that were set during refresh(), like you could set it in onRefresh()\n if (containerAnimation) {\n // convert ratios into scroll positions. Remember, start/end values on ScrollTriggers that have a containerAnimation refer to the time (in seconds), NOT scroll positions.\n var st = containerAnimation.scrollTrigger,\n duration = containerAnimation.duration(),\n _change = st.end - st.start;\n\n newStart = st.start + _change * newStart / duration;\n newEnd = st.start + _change * newEnd / duration;\n }\n\n self.refresh(false, false, {\n start: _keepClamp(newStart, keepClamp && !!self._startClamp),\n end: _keepClamp(newEnd, keepClamp && !!self._endClamp)\n }, pinOffset);\n self.update();\n };\n\n self.adjustPinSpacing = function (amount) {\n if (spacerState && amount) {\n var i = spacerState.indexOf(direction.d) + 1;\n spacerState[i] = parseFloat(spacerState[i]) + amount + _px;\n spacerState[1] = parseFloat(spacerState[1]) + amount + _px;\n\n _setState(spacerState);\n }\n };\n\n self.disable = function (reset, allowAnimation) {\n reset !== false && self.revert(true, true);\n\n if (self.enabled) {\n self.enabled = self.isActive = false;\n allowAnimation || scrubTween && scrubTween.pause();\n prevScroll = 0;\n pinCache && (pinCache.uncache = 1);\n onRefreshInit && _removeListener(ScrollTrigger, \"refreshInit\", onRefreshInit);\n\n if (snapDelayedCall) {\n snapDelayedCall.pause();\n tweenTo.tween && tweenTo.tween.kill() && (tweenTo.tween = 0);\n }\n\n if (!isViewport) {\n var i = _triggers.length;\n\n while (i--) {\n if (_triggers[i].scroller === scroller && _triggers[i] !== self) {\n return; //don't remove the listeners if there are still other triggers referencing it.\n }\n }\n\n _removeListener(scroller, \"resize\", _onResize);\n\n isViewport || _removeListener(scroller, \"scroll\", _onScroll);\n }\n }\n };\n\n self.kill = function (revert, allowAnimation) {\n self.disable(revert, allowAnimation);\n scrubTween && !allowAnimation && scrubTween.kill();\n id && delete _ids[id];\n\n var i = _triggers.indexOf(self);\n\n i >= 0 && _triggers.splice(i, 1);\n i === _i && _direction > 0 && _i--; // if we're in the middle of a refresh() or update(), splicing would cause skips in the index, so adjust...\n // if no other ScrollTrigger instances of the same scroller are found, wipe out any recorded scroll position. Otherwise, in a single page application, for example, it could maintain scroll position when it really shouldn't.\n\n i = 0;\n\n _triggers.forEach(function (t) {\n return t.scroller === self.scroller && (i = 1);\n });\n\n i || _refreshingAll || (self.scroll.rec = 0);\n\n if (animation) {\n animation.scrollTrigger = null;\n revert && animation.revert({\n kill: false\n });\n allowAnimation || animation.kill();\n }\n\n markerStart && [markerStart, markerEnd, markerStartTrigger, markerEndTrigger].forEach(function (m) {\n return m.parentNode && m.parentNode.removeChild(m);\n });\n _primary === self && (_primary = 0);\n\n if (pin) {\n pinCache && (pinCache.uncache = 1);\n i = 0;\n\n _triggers.forEach(function (t) {\n return t.pin === pin && i++;\n });\n\n i || (pinCache.spacer = 0); // if there aren't any more ScrollTriggers with the same pin, remove the spacer, otherwise it could be contaminated with old/stale values if the user re-creates a ScrollTrigger for the same element.\n }\n\n vars.onKill && vars.onKill(self);\n };\n\n _triggers.push(self);\n\n self.enable(false, false);\n customRevertReturn && customRevertReturn(self);\n\n if (animation && animation.add && !change) {\n // if the animation is a timeline, it may not have been populated yet, so it wouldn't render at the proper place on the first refresh(), thus we should schedule one for the next tick. If \"change\" is defined, we know it must be re-enabling, thus we can refresh() right away.\n var updateFunc = self.update; // some browsers may fire a scroll event BEFORE a tick elapses and/or the DOMContentLoaded fires. So there's a chance update() will be called BEFORE a refresh() has happened on a Timeline-attached ScrollTrigger which means the start/end won't be calculated yet. We don't want to add conditional logic inside the update() method (like check to see if end is defined and if not, force a refresh()) because that's a function that gets hit a LOT (performance). So we swap out the real update() method for this one that'll re-attach it the first time it gets called and of course forces a refresh().\n\n self.update = function () {\n self.update = updateFunc;\n _scrollers.cache++; // otherwise a cached scroll position may get used in the refresh() in a very rare scenario, like if ScrollTriggers are created inside a DOMContentLoaded event and the queued requestAnimationFrame() fires beforehand. See https://gsap.com/community/forums/topic/41267-scrolltrigger-breaks-on-refresh-when-using-domcontentloaded/\n\n start || end || self.refresh();\n };\n\n gsap.delayedCall(0.01, self.update);\n change = 0.01;\n start = end = 0;\n } else {\n self.refresh();\n }\n\n pin && _queueRefreshAll(); // pinning could affect the positions of other things, so make sure we queue a full refresh()\n };\n\n ScrollTrigger.register = function register(core) {\n if (!_coreInitted) {\n gsap = core || _getGSAP();\n _windowExists() && window.document && ScrollTrigger.enable();\n _coreInitted = _enabled;\n }\n\n return _coreInitted;\n };\n\n ScrollTrigger.defaults = function defaults(config) {\n if (config) {\n for (var p in config) {\n _defaults[p] = config[p];\n }\n }\n\n return _defaults;\n };\n\n ScrollTrigger.disable = function disable(reset, kill) {\n _enabled = 0;\n\n _triggers.forEach(function (trigger) {\n return trigger[kill ? \"kill\" : \"disable\"](reset);\n });\n\n _removeListener(_win, \"wheel\", _onScroll);\n\n _removeListener(_doc, \"scroll\", _onScroll);\n\n clearInterval(_syncInterval);\n\n _removeListener(_doc, \"touchcancel\", _passThrough);\n\n _removeListener(_body, \"touchstart\", _passThrough);\n\n _multiListener(_removeListener, _doc, \"pointerdown,touchstart,mousedown\", _pointerDownHandler);\n\n _multiListener(_removeListener, _doc, \"pointerup,touchend,mouseup\", _pointerUpHandler);\n\n _resizeDelay.kill();\n\n _iterateAutoRefresh(_removeListener);\n\n for (var i = 0; i < _scrollers.length; i += 3) {\n _wheelListener(_removeListener, _scrollers[i], _scrollers[i + 1]);\n\n _wheelListener(_removeListener, _scrollers[i], _scrollers[i + 2]);\n }\n };\n\n ScrollTrigger.enable = function enable() {\n _win = window;\n _doc = document;\n _docEl = _doc.documentElement;\n _body = _doc.body;\n\n if (gsap) {\n _toArray = gsap.utils.toArray;\n _clamp = gsap.utils.clamp;\n _context = gsap.core.context || _passThrough;\n _suppressOverwrites = gsap.core.suppressOverwrites || _passThrough;\n _scrollRestoration = _win.history.scrollRestoration || \"auto\";\n _lastScroll = _win.pageYOffset || 0;\n gsap.core.globals(\"ScrollTrigger\", ScrollTrigger); // must register the global manually because in Internet Explorer, functions (classes) don't have a \"name\" property.\n\n if (_body) {\n _enabled = 1;\n _div100vh = document.createElement(\"div\"); // to solve mobile browser address bar show/hide resizing, we shouldn't rely on window.innerHeight. Instead, use a

with its height set to 100vh and measure that since that's what the scrolling is based on anyway and it's not affected by address bar showing/hiding.\n\n _div100vh.style.height = \"100vh\";\n _div100vh.style.position = \"absolute\";\n\n _refresh100vh();\n\n _rafBugFix();\n\n Observer.register(gsap); // isTouch is 0 if no touch, 1 if ONLY touch, and 2 if it can accommodate touch but also other types like mouse/pointer.\n\n ScrollTrigger.isTouch = Observer.isTouch;\n _fixIOSBug = Observer.isTouch && /(iPad|iPhone|iPod|Mac)/g.test(navigator.userAgent); // since 2017, iOS has had a bug that causes event.clientX/Y to be inaccurate when a scroll occurs, thus we must alternate ignoring every other touchmove event to work around it. See https://bugs.webkit.org/show_bug.cgi?id=181954 and https://codepen.io/GreenSock/pen/ExbrPNa/087cef197dc35445a0951e8935c41503\n\n _ignoreMobileResize = Observer.isTouch === 1;\n\n _addListener(_win, \"wheel\", _onScroll); // mostly for 3rd party smooth scrolling libraries.\n\n\n _root = [_win, _doc, _docEl, _body];\n\n if (gsap.matchMedia) {\n ScrollTrigger.matchMedia = function (vars) {\n var mm = gsap.matchMedia(),\n p;\n\n for (p in vars) {\n mm.add(p, vars[p]);\n }\n\n return mm;\n };\n\n gsap.addEventListener(\"matchMediaInit\", function () {\n _recordScrollPositions();\n\n _revertAll();\n });\n gsap.addEventListener(\"matchMediaRevert\", function () {\n return _revertRecorded();\n });\n gsap.addEventListener(\"matchMedia\", function () {\n _refreshAll(0, 1);\n\n _dispatch(\"matchMedia\");\n });\n gsap.matchMedia().add(\"(orientation: portrait)\", function () {\n // when orientation changes, we should take new base measurements for the ignoreMobileResize feature.\n _setBaseDimensions();\n\n return _setBaseDimensions;\n });\n } else {\n console.warn(\"Requires GSAP 3.11.0 or later\");\n }\n\n _setBaseDimensions();\n\n _addListener(_doc, \"scroll\", _onScroll); // some browsers (like Chrome), the window stops dispatching scroll events on the window if you scroll really fast, but it's consistent on the document!\n\n\n var bodyHasStyle = _body.hasAttribute(\"style\"),\n bodyStyle = _body.style,\n border = bodyStyle.borderTopStyle,\n AnimationProto = gsap.core.Animation.prototype,\n bounds,\n i;\n\n AnimationProto.revert || Object.defineProperty(AnimationProto, \"revert\", {\n value: function value() {\n return this.time(-0.01, true);\n }\n }); // only for backwards compatibility (Animation.revert() was added after 3.10.4)\n\n bodyStyle.borderTopStyle = \"solid\"; // works around an issue where a margin of a child element could throw off the bounds of the _body, making it seem like there's a margin when there actually isn't. The border ensures that the bounds are accurate.\n\n bounds = _getBounds(_body);\n _vertical.m = Math.round(bounds.top + _vertical.sc()) || 0; // accommodate the offset of the caused by margins and/or padding\n\n _horizontal.m = Math.round(bounds.left + _horizontal.sc()) || 0;\n border ? bodyStyle.borderTopStyle = border : bodyStyle.removeProperty(\"border-top-style\");\n\n if (!bodyHasStyle) {\n // SSR frameworks like Next.js complain if this attribute gets added.\n _body.setAttribute(\"style\", \"\"); // it's not enough to just removeAttribute() - we must first set it to empty, otherwise Next.js complains.\n\n\n _body.removeAttribute(\"style\");\n } // TODO: (?) maybe move to leveraging the velocity mechanism in Observer and skip intervals.\n\n\n _syncInterval = setInterval(_sync, 250);\n gsap.delayedCall(0.5, function () {\n return _startup = 0;\n });\n\n _addListener(_doc, \"touchcancel\", _passThrough); // some older Android devices intermittently stop dispatching \"touchmove\" events if we don't listen for \"touchcancel\" on the document.\n\n\n _addListener(_body, \"touchstart\", _passThrough); //works around Safari bug: https://gsap.com/forums/topic/21450-draggable-in-iframe-on-mobile-is-buggy/\n\n\n _multiListener(_addListener, _doc, \"pointerdown,touchstart,mousedown\", _pointerDownHandler);\n\n _multiListener(_addListener, _doc, \"pointerup,touchend,mouseup\", _pointerUpHandler);\n\n _transformProp = gsap.utils.checkPrefix(\"transform\");\n\n _stateProps.push(_transformProp);\n\n _coreInitted = _getTime();\n _resizeDelay = gsap.delayedCall(0.2, _refreshAll).pause();\n _autoRefresh = [_doc, \"visibilitychange\", function () {\n var w = _win.innerWidth,\n h = _win.innerHeight;\n\n if (_doc.hidden) {\n _prevWidth = w;\n _prevHeight = h;\n } else if (_prevWidth !== w || _prevHeight !== h) {\n _onResize();\n }\n }, _doc, \"DOMContentLoaded\", _refreshAll, _win, \"load\", _refreshAll, _win, \"resize\", _onResize];\n\n _iterateAutoRefresh(_addListener);\n\n _triggers.forEach(function (trigger) {\n return trigger.enable(0, 1);\n });\n\n for (i = 0; i < _scrollers.length; i += 3) {\n _wheelListener(_removeListener, _scrollers[i], _scrollers[i + 1]);\n\n _wheelListener(_removeListener, _scrollers[i], _scrollers[i + 2]);\n }\n } else if (_doc) {\n var onLoad = function onLoad() {\n ScrollTrigger.enable();\n\n _doc.removeEventListener(\"DOMContentLoaded\", onLoad);\n };\n\n _doc.addEventListener(\"DOMContentLoaded\", onLoad);\n }\n }\n };\n\n ScrollTrigger.config = function config(vars) {\n \"limitCallbacks\" in vars && (_limitCallbacks = !!vars.limitCallbacks);\n var ms = vars.syncInterval;\n ms && clearInterval(_syncInterval) || (_syncInterval = ms) && setInterval(_sync, ms);\n \"ignoreMobileResize\" in vars && (_ignoreMobileResize = ScrollTrigger.isTouch === 1 && vars.ignoreMobileResize);\n\n if (\"autoRefreshEvents\" in vars) {\n _iterateAutoRefresh(_removeListener) || _iterateAutoRefresh(_addListener, vars.autoRefreshEvents || \"none\");\n _ignoreResize = (vars.autoRefreshEvents + \"\").indexOf(\"resize\") === -1;\n }\n };\n\n ScrollTrigger.scrollerProxy = function scrollerProxy(target, vars) {\n var t = _getTarget(target),\n i = _scrollers.indexOf(t),\n isViewport = _isViewport(t);\n\n if (~i) {\n _scrollers.splice(i, isViewport ? 6 : 2);\n }\n\n if (vars) {\n isViewport ? _proxies.unshift(_win, vars, _body, vars, _docEl, vars) : _proxies.unshift(t, vars);\n }\n };\n\n ScrollTrigger.clearMatchMedia = function clearMatchMedia(query) {\n _triggers.forEach(function (t) {\n return t._ctx && t._ctx.query === query && t._ctx.kill(true, true);\n });\n };\n\n ScrollTrigger.isInViewport = function isInViewport(element, ratio, horizontal) {\n var bounds = (_isString(element) ? _getTarget(element) : element).getBoundingClientRect(),\n offset = bounds[horizontal ? _width : _height] * ratio || 0;\n return horizontal ? bounds.right - offset > 0 && bounds.left + offset < _win.innerWidth : bounds.bottom - offset > 0 && bounds.top + offset < _win.innerHeight;\n };\n\n ScrollTrigger.positionInViewport = function positionInViewport(element, referencePoint, horizontal) {\n _isString(element) && (element = _getTarget(element));\n var bounds = element.getBoundingClientRect(),\n size = bounds[horizontal ? _width : _height],\n offset = referencePoint == null ? size / 2 : referencePoint in _keywords ? _keywords[referencePoint] * size : ~referencePoint.indexOf(\"%\") ? parseFloat(referencePoint) * size / 100 : parseFloat(referencePoint) || 0;\n return horizontal ? (bounds.left + offset) / _win.innerWidth : (bounds.top + offset) / _win.innerHeight;\n };\n\n ScrollTrigger.killAll = function killAll(allowListeners) {\n _triggers.slice(0).forEach(function (t) {\n return t.vars.id !== \"ScrollSmoother\" && t.kill();\n });\n\n if (allowListeners !== true) {\n var listeners = _listeners.killAll || [];\n _listeners = {};\n listeners.forEach(function (f) {\n return f();\n });\n }\n };\n\n return ScrollTrigger;\n}();\nScrollTrigger.version = \"3.15.0\";\n\nScrollTrigger.saveStyles = function (targets) {\n return targets ? _toArray(targets).forEach(function (target) {\n // saved styles are recorded in a consecutive alternating Array, like [element, cssText, transform attribute, cache, matchMedia, ...]\n if (target && target.style) {\n var i = _savedStyles.indexOf(target);\n\n i >= 0 && _savedStyles.splice(i, 5);\n\n _savedStyles.push(target, target.style.cssText, target.getBBox && target.getAttribute(\"transform\"), gsap.core.getCache(target), _context());\n }\n }) : _savedStyles;\n};\n\nScrollTrigger.revert = function (soft, media) {\n return _revertAll(!soft, media);\n};\n\nScrollTrigger.create = function (vars, animation) {\n return new ScrollTrigger(vars, animation);\n};\n\nScrollTrigger.refresh = function (safe) {\n return safe ? _onResize(true) : (_coreInitted || ScrollTrigger.register()) && _refreshAll(true);\n};\n\nScrollTrigger.update = function (force) {\n return ++_scrollers.cache && _updateAll(force === true ? 2 : 0);\n};\n\nScrollTrigger.clearScrollMemory = _clearScrollMemory;\n\nScrollTrigger.maxScroll = function (element, horizontal) {\n return _maxScroll(element, horizontal ? _horizontal : _vertical);\n};\n\nScrollTrigger.getScrollFunc = function (element, horizontal) {\n return _getScrollFunc(_getTarget(element), horizontal ? _horizontal : _vertical);\n};\n\nScrollTrigger.getById = function (id) {\n return _ids[id];\n};\n\nScrollTrigger.getAll = function () {\n return _triggers.filter(function (t) {\n return t.vars.id !== \"ScrollSmoother\";\n });\n}; // it's common for people to ScrollTrigger.getAll(t => t.kill()) on page routes, for example, and we don't want it to ruin smooth scrolling by killing the main ScrollSmoother one.\n\n\nScrollTrigger.isScrolling = function () {\n return !!_lastScrollTime;\n};\n\nScrollTrigger.snapDirectional = _snapDirectional;\n\nScrollTrigger.addEventListener = function (type, callback) {\n var a = _listeners[type] || (_listeners[type] = []);\n ~a.indexOf(callback) || a.push(callback);\n};\n\nScrollTrigger.removeEventListener = function (type, callback) {\n var a = _listeners[type],\n i = a && a.indexOf(callback);\n i >= 0 && a.splice(i, 1);\n};\n\nScrollTrigger.batch = function (targets, vars) {\n var result = [],\n varsCopy = {},\n interval = vars.interval || 0.016,\n batchMax = vars.batchMax || 1e9,\n proxyCallback = function proxyCallback(type, callback) {\n var elements = [],\n triggers = [],\n delay = gsap.delayedCall(interval, function () {\n callback(elements, triggers);\n elements = [];\n triggers = [];\n }).pause();\n return function (self) {\n elements.length || delay.restart(true);\n elements.push(self.trigger);\n triggers.push(self);\n batchMax <= elements.length && delay.progress(1);\n };\n },\n p;\n\n for (p in vars) {\n varsCopy[p] = p.substr(0, 2) === \"on\" && _isFunction(vars[p]) && p !== \"onRefreshInit\" ? proxyCallback(p, vars[p]) : vars[p];\n }\n\n if (_isFunction(batchMax)) {\n batchMax = batchMax();\n\n _addListener(ScrollTrigger, \"refresh\", function () {\n return batchMax = vars.batchMax();\n });\n }\n\n _toArray(targets).forEach(function (target) {\n var config = {};\n\n for (p in varsCopy) {\n config[p] = varsCopy[p];\n }\n\n config.trigger = target;\n result.push(ScrollTrigger.create(config));\n });\n\n return result;\n}; // to reduce file size. clamps the scroll and also returns a duration multiplier so that if the scroll gets chopped shorter, the duration gets curtailed as well (otherwise if you're very close to the top of the page, for example, and swipe up really fast, it'll suddenly slow down and take a long time to reach the top).\n\n\nvar _clampScrollAndGetDurationMultiplier = function _clampScrollAndGetDurationMultiplier(scrollFunc, current, end, max) {\n current > max ? scrollFunc(max) : current < 0 && scrollFunc(0);\n return end > max ? (max - current) / (end - current) : end < 0 ? current / (current - end) : 1;\n},\n _allowNativePanning = function _allowNativePanning(target, direction) {\n if (direction === true) {\n target.style.removeProperty(\"touch-action\");\n } else {\n target.style.touchAction = direction === true ? \"auto\" : direction ? \"pan-\" + direction + (Observer.isTouch ? \" pinch-zoom\" : \"\") : \"none\"; // note: Firefox doesn't support it pinch-zoom properly, at least in addition to a pan-x or pan-y.\n }\n\n target === _docEl && _allowNativePanning(_body, direction);\n},\n _overflow = {\n auto: 1,\n scroll: 1\n},\n _nestedScroll = function _nestedScroll(_ref5) {\n var event = _ref5.event,\n target = _ref5.target,\n axis = _ref5.axis;\n\n var node = (event.changedTouches ? event.changedTouches[0] : event).target,\n cache = node._gsap || gsap.core.getCache(node),\n time = _getTime(),\n cs;\n\n if (!cache._isScrollT || time - cache._isScrollT > 2000) {\n // cache for 2 seconds to improve performance.\n while (node && node !== _body && (node.scrollHeight <= node.clientHeight && node.scrollWidth <= node.clientWidth || !(_overflow[(cs = _getComputedStyle(node)).overflowY] || _overflow[cs.overflowX]))) {\n node = node.parentNode;\n }\n\n cache._isScroll = node && node !== target && !_isViewport(node) && (_overflow[(cs = _getComputedStyle(node)).overflowY] || _overflow[cs.overflowX]);\n cache._isScrollT = time;\n }\n\n if (cache._isScroll || axis === \"x\") {\n event.stopPropagation();\n event._gsapAllow = true;\n }\n},\n // capture events on scrollable elements INSIDE the and allow those by calling stopPropagation() when we find a scrollable ancestor\n_inputObserver = function _inputObserver(target, type, inputs, nested) {\n return Observer.create({\n target: target,\n capture: true,\n debounce: false,\n lockAxis: true,\n type: type,\n onWheel: nested = nested && _nestedScroll,\n onPress: nested,\n onDrag: nested,\n onScroll: nested,\n onEnable: function onEnable() {\n return inputs && _addListener(_doc, Observer.eventTypes[0], _captureInputs, false, true);\n },\n onDisable: function onDisable() {\n return _removeListener(_doc, Observer.eventTypes[0], _captureInputs, true);\n }\n });\n},\n _inputExp = /(input|label|select|textarea)/i,\n _inputIsFocused,\n _captureInputs = function _captureInputs(e) {\n var isInput = _inputExp.test(e.target.tagName);\n\n if (isInput || _inputIsFocused) {\n e._gsapAllow = true;\n _inputIsFocused = isInput;\n }\n},\n _getScrollNormalizer = function _getScrollNormalizer(vars) {\n _isObject(vars) || (vars = {});\n vars.preventDefault = vars.isNormalizer = vars.allowClicks = true;\n vars.type || (vars.type = \"wheel,touch\");\n vars.debounce = !!vars.debounce;\n vars.id = vars.id || \"normalizer\";\n\n var _vars2 = vars,\n normalizeScrollX = _vars2.normalizeScrollX,\n momentum = _vars2.momentum,\n allowNestedScroll = _vars2.allowNestedScroll,\n onRelease = _vars2.onRelease,\n self,\n maxY,\n target = _getTarget(vars.target) || _docEl,\n smoother = gsap.core.globals().ScrollSmoother,\n smootherInstance = smoother && smoother.get(),\n content = _fixIOSBug && (vars.content && _getTarget(vars.content) || smootherInstance && vars.content !== false && !smootherInstance.smooth() && smootherInstance.content()),\n scrollFuncY = _getScrollFunc(target, _vertical),\n scrollFuncX = _getScrollFunc(target, _horizontal),\n scale = 1,\n initialScale = (Observer.isTouch && _win.visualViewport ? _win.visualViewport.scale * _win.visualViewport.width : _win.outerWidth) / _win.innerWidth,\n wheelRefresh = 0,\n resolveMomentumDuration = _isFunction(momentum) ? function () {\n return momentum(self);\n } : function () {\n return momentum || 2.8;\n },\n lastRefreshID,\n skipTouchMove,\n inputObserver = _inputObserver(target, vars.type, true, allowNestedScroll),\n resumeTouchMove = function resumeTouchMove() {\n return skipTouchMove = false;\n },\n scrollClampX = _passThrough,\n scrollClampY = _passThrough,\n updateClamps = function updateClamps() {\n maxY = _maxScroll(target, _vertical);\n scrollClampY = _clamp(_fixIOSBug ? 1 : 0, maxY);\n normalizeScrollX && (scrollClampX = _clamp(0, _maxScroll(target, _horizontal)));\n lastRefreshID = _refreshID;\n },\n removeContentOffset = function removeContentOffset() {\n content._gsap.y = _round(parseFloat(content._gsap.y) + scrollFuncY.offset) + \"px\";\n content.style.transform = \"matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, \" + parseFloat(content._gsap.y) + \", 0, 1)\";\n scrollFuncY.offset = scrollFuncY.cacheID = 0;\n },\n ignoreDrag = function ignoreDrag() {\n if (skipTouchMove) {\n requestAnimationFrame(resumeTouchMove);\n\n var offset = _round(self.deltaY / 2),\n scroll = scrollClampY(scrollFuncY.v - offset);\n\n if (content && scroll !== scrollFuncY.v + scrollFuncY.offset) {\n scrollFuncY.offset = scroll - scrollFuncY.v;\n\n var y = _round((parseFloat(content && content._gsap.y) || 0) - scrollFuncY.offset);\n\n content.style.transform = \"matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, \" + y + \", 0, 1)\";\n content._gsap.y = y + \"px\";\n scrollFuncY.cacheID = _scrollers.cache;\n\n _updateAll();\n }\n\n return true;\n }\n\n scrollFuncY.offset && removeContentOffset();\n skipTouchMove = true;\n },\n tween,\n startScrollX,\n startScrollY,\n onStopDelayedCall,\n onResize = function onResize() {\n // if the window resizes, like on an iPhone which Apple FORCES the address bar to show/hide even if we event.preventDefault(), it may be scrolling too far now that the address bar is showing, so we must dynamically adjust the momentum tween.\n updateClamps();\n\n if (tween.isActive() && tween.vars.scrollY > maxY) {\n scrollFuncY() > maxY ? tween.progress(1) && scrollFuncY(maxY) : tween.resetTo(\"scrollY\", maxY);\n }\n };\n\n content && gsap.set(content, {\n y: \"+=0\"\n }); // to ensure there's a cache (element._gsap)\n\n vars.ignoreCheck = function (e) {\n return _fixIOSBug && e.type === \"touchmove\" && ignoreDrag(e) || scale > 1.05 && e.type !== \"touchstart\" || self.isGesturing || e.touches && e.touches.length > 1;\n };\n\n vars.onPress = function () {\n skipTouchMove = false;\n var prevScale = scale;\n scale = _round((_win.visualViewport && _win.visualViewport.scale || 1) / initialScale);\n tween.pause();\n prevScale !== scale && _allowNativePanning(target, scale > 1.01 ? true : normalizeScrollX ? false : \"x\");\n startScrollX = scrollFuncX();\n startScrollY = scrollFuncY();\n updateClamps();\n lastRefreshID = _refreshID;\n };\n\n vars.onRelease = vars.onGestureStart = function (self, wasDragging) {\n scrollFuncY.offset && removeContentOffset();\n\n if (!wasDragging) {\n onStopDelayedCall.restart(true);\n } else {\n _scrollers.cache++; // make sure we're pulling the non-cached value\n // alternate algorithm: durX = Math.min(6, Math.abs(self.velocityX / 800)),\tdur = Math.max(durX, Math.min(6, Math.abs(self.velocityY / 800))); dur = dur * (0.4 + (1 - _power4In(dur / 6)) * 0.6)) * (momentumSpeed || 1)\n\n var dur = resolveMomentumDuration(),\n currentScroll,\n endScroll;\n\n if (normalizeScrollX) {\n currentScroll = scrollFuncX();\n endScroll = currentScroll + dur * 0.05 * -self.velocityX / 0.227; // the constant .227 is from power4(0.05). velocity is inverted because scrolling goes in the opposite direction.\n\n dur *= _clampScrollAndGetDurationMultiplier(scrollFuncX, currentScroll, endScroll, _maxScroll(target, _horizontal));\n tween.vars.scrollX = scrollClampX(endScroll);\n }\n\n currentScroll = scrollFuncY();\n endScroll = currentScroll + dur * 0.05 * -self.velocityY / 0.227; // the constant .227 is from power4(0.05)\n\n dur *= _clampScrollAndGetDurationMultiplier(scrollFuncY, currentScroll, endScroll, _maxScroll(target, _vertical));\n tween.vars.scrollY = scrollClampY(endScroll);\n tween.invalidate().duration(dur).play(0.01);\n\n if (_fixIOSBug && tween.vars.scrollY >= maxY || currentScroll >= maxY - 1) {\n // iOS bug: it'll show the address bar but NOT fire the window \"resize\" event until the animation is done but we must protect against overshoot so we leverage an onUpdate to do so.\n gsap.to({}, {\n onUpdate: onResize,\n duration: dur\n });\n }\n }\n\n onRelease && onRelease(self);\n };\n\n vars.onWheel = function () {\n tween._ts && tween.pause();\n\n if (_getTime() - wheelRefresh > 1000) {\n // after 1 second, refresh the clamps otherwise that'll only happen when ScrollTrigger.refresh() is called or for touch-scrolling.\n lastRefreshID = 0;\n wheelRefresh = _getTime();\n }\n };\n\n vars.onChange = function (self, dx, dy, xArray, yArray) {\n _refreshID !== lastRefreshID && updateClamps();\n dx && normalizeScrollX && scrollFuncX(scrollClampX(xArray[2] === dx ? startScrollX + (self.startX - self.x) : scrollFuncX() + dx - xArray[1])); // for more precision, we track pointer/touch movement from the start, otherwise it'll drift.\n\n if (dy) {\n scrollFuncY.offset && removeContentOffset();\n var isTouch = yArray[2] === dy,\n y = isTouch ? startScrollY + self.startY - self.y : scrollFuncY() + dy - yArray[1],\n yClamped = scrollClampY(y);\n isTouch && y !== yClamped && (startScrollY += yClamped - y);\n scrollFuncY(yClamped);\n }\n\n (dy || dx) && _updateAll();\n };\n\n vars.onEnable = function () {\n _allowNativePanning(target, normalizeScrollX ? false : \"x\");\n\n ScrollTrigger.addEventListener(\"refresh\", onResize);\n\n _addListener(_win, \"resize\", onResize);\n\n if (scrollFuncY.smooth) {\n scrollFuncY.target.style.scrollBehavior = \"auto\";\n scrollFuncY.smooth = scrollFuncX.smooth = false;\n }\n\n inputObserver.enable();\n };\n\n vars.onDisable = function () {\n _allowNativePanning(target, true);\n\n _removeListener(_win, \"resize\", onResize);\n\n ScrollTrigger.removeEventListener(\"refresh\", onResize);\n inputObserver.kill();\n };\n\n vars.lockAxis = vars.lockAxis !== false;\n self = new Observer(vars);\n self.iOS = _fixIOSBug; // used in the Observer getCachedScroll() function to work around an iOS bug that wreaks havoc with TouchEvent.clientY if we allow scroll to go all the way back to 0.\n\n _fixIOSBug && !scrollFuncY() && scrollFuncY(1); // iOS bug causes event.clientY values to freak out (wildly inaccurate) if the scroll position is exactly 0.\n\n _fixIOSBug && gsap.ticker.add(_passThrough); // prevent the ticker from sleeping\n\n onStopDelayedCall = self._dc;\n tween = gsap.to(self, {\n ease: \"power4\",\n paused: true,\n inherit: false,\n scrollX: normalizeScrollX ? \"+=0.1\" : \"+=0\",\n scrollY: \"+=0.1\",\n modifiers: {\n scrollY: _interruptionTracker(scrollFuncY, scrollFuncY(), function () {\n return tween.pause();\n })\n },\n onUpdate: _updateAll,\n onComplete: onStopDelayedCall.vars.onComplete\n }); // we need the modifier to sense if the scroll position is altered outside of the momentum tween (like with a scrollTo tween) so we can pause() it to prevent conflicts.\n\n return self;\n};\n\nScrollTrigger.sort = function (func) {\n if (_isFunction(func)) {\n return _triggers.sort(func);\n }\n\n var scroll = _win.pageYOffset || 0;\n ScrollTrigger.getAll().forEach(function (t) {\n return t._sortY = t.trigger ? scroll + t.trigger.getBoundingClientRect().top : t.start + _win.innerHeight;\n });\n return _triggers.sort(func || function (a, b) {\n return (a.vars.refreshPriority || 0) * -1e6 + (a.vars.containerAnimation ? 1e6 : a._sortY) - ((b.vars.containerAnimation ? 1e6 : b._sortY) + (b.vars.refreshPriority || 0) * -1e6);\n }); // anything with a containerAnimation should refresh last.\n};\n\nScrollTrigger.observe = function (vars) {\n return new Observer(vars);\n};\n\nScrollTrigger.normalizeScroll = function (vars) {\n if (typeof vars === \"undefined\") {\n return _normalizer;\n }\n\n if (vars === true && _normalizer) {\n return _normalizer.enable();\n }\n\n if (vars === false) {\n _normalizer && _normalizer.kill();\n _normalizer = vars;\n return;\n }\n\n var normalizer = vars instanceof Observer ? vars : _getScrollNormalizer(vars);\n _normalizer && _normalizer.target === normalizer.target && _normalizer.kill();\n _isViewport(normalizer.target) && (_normalizer = normalizer);\n return normalizer;\n};\n\nScrollTrigger.core = {\n // smaller file size way to leverage in ScrollSmoother and Observer\n _getVelocityProp: _getVelocityProp,\n _inputObserver: _inputObserver,\n _scrollers: _scrollers,\n _proxies: _proxies,\n bridge: {\n // when normalizeScroll sets the scroll position (ss = setScroll)\n ss: function ss() {\n _lastScrollTime || _dispatch(\"scrollStart\");\n _lastScrollTime = _getTime();\n },\n // a way to get the _refreshing value in Observer\n ref: function ref() {\n return _refreshing;\n }\n }\n};\n_getGSAP() && gsap.registerPlugin(ScrollTrigger);\nexport { ScrollTrigger as default };"],"names":["_assertThisInitialized","self","ReferenceError","_inheritsLoose","subClass","superClass","prototype","Object","create","__proto__","_config","autoSleep","force3D","nullTargetWarn","units","lineHeight","_defaults","duration","overwrite","delay","_suppressOverwrites","_reverting","_context","_bigNum","_tinyNum","_2PI","Math","PI","_HALF_PI","_gsID","_sqrt","sqrt","_cos","cos","_sin","sin","_isString","value","_isFunction","_isNumber","_isUndefined","_isObject","_isNotFalse","_windowExists","_isFuncOrString","_isTypedArray","ArrayBuffer","isView","_isArray","Array","isArray","_randomExp","_commaDelimExp","_strictNumExp","_numExp","_numWithUnitExp","_complexStringNumExp","_relExp","_delimitedValueExp","_unitExp","_globalTimeline","_win","_coreInitted","_doc","_globals","_installScope","_coreReady","_install","scope","_merge","gsap","_missingPlugin","property","console","warn","_warn","message","suppress","_addGlobal","name","obj","_emptyFunc","_startAtRevertConfig","suppressEvents","isStart","kill","_revertConfigNoKill","_revertConfig","_reservedProps","_lazyTweens","_lazyLookup","_lastRenderedFrame","_plugins","_effects","_nextGCFrame","_harnessPlugins","_callbackNames","_harness","targets","target","harnessPlugin","i","_gsap","harness","length","targetTest","GSCache","splice","_getCache","toArray","_getProperty","v","getAttribute","_forEachName","names","func","split","forEach","_round","round","_roundPrecise","_parseRelative","start","operator","charAt","end","parseFloat","substr","_arrayContainsAny","toSearch","toFind","l","indexOf","_lazyRender","a","slice","tween","_lazy","render","_isRevertWorthy","animation","_initted","_startAt","add","_lazySafeRender","time","force","_numericIfPossible","n","match","trim","_passThrough","p","_setDefaults","defaults","_setKeyframeDefaults","excludeDuration","base","toMerge","_mergeDeep","_copyExcluding","excluding","copy","_inheritDefaults","vars","parent","keyframes","inherit","_dp","_arraysMatch","a1","a2","_addLinkedListItem","child","firstProp","lastProp","sortBy","prev","t","_prev","_next","_removeLinkedListItem","next","_removeFromParent","onlyIfParentHasAutoRemove","autoRemoveChildren","remove","_act","_uncache","_end","_dur","_start","_dirty","_recacheAncestors","totalDuration","_rewindStartAt","totalTime","revert","immediateRender","autoRevert","_hasNoPausedAncestors","_ts","_elapsedCycleDuration","_repeat","_animationCycle","_tTime","_rDelay","tTime","cycleDuration","whole","floor","_parentToChildTotalTime","parentTime","_tDur","_setEnd","abs","_rts","_alignPlayhead","smoothChildTiming","_time","_postAddChecks","timeline","rawTime","_clamp","_zTime","_addToTimeline","position","skipChecks","_parsePosition","_delay","timeScale","_sort","_isFromOrFromStart","_recent","_scrollTrigger","trigger","ScrollTrigger","_attemptInitTween","_initTween","_pt","lazy","_ticker","frame","push","_parentPlayheadIsBeforeStart","_ref","_lock","_ref2","data","_renderZeroDurationTween","prevRatio","ratio","repeatDelay","pt","iteration","prevIteration","_yoyo","repeatRefresh","invalidate","_from","r","d","_onUpdate","_callback","_prom","_findNextPauseTween","prevTime","_first","_last","_setDuration","skipUncache","leavePlayhead","repeat","dur","totalProgress","_onUpdateTotalDuration","Timeline","_zeroPosition","endTime","percentAnimation","labels","recent","clippedDuration","offset","isPercent","isNaN","replace","_createTweenType","type","params","isLegacy","varsIndex","irVars","runBackwards","startAt","Tween","_conditionalReturn","min","max","getUnit","exec","clamp","_slice","_isArrayLike","nonEmpty","nodeType","_flatten","ar","leaveStrings","accumulator","_accumulator","apply","selector","_wake","call","querySelectorAll","el","current","nativeElement","createElement","shuffle","sort","random","distribute","each","ease","_parseEase","from","cache","isDecimal","ratios","axis","ratioX","ratioY","center","edges","distances","originX","originY","x","y","j","wrapAt","grid","getBoundingClientRect","left","amount","b","u","_invertEase","_roundModifier","pow","raw","snap","snapTo","radius","is2D","values","increment","closest","dx","dy","roundingIncrement","returnFunction","pipe","_len","arguments","functions","_key","reduce","f","unitize","unit","normalize","mapRange","_wrapArray","wrapper","index","wrap","range","wrapYoyo","total","_replaceRandom","s","arIndex","substring","inMin","inMax","outMin","outMax","inRange","outRange","interpolate","progress","mutate","isString","master","interpolators","il","_addPropTween","_renderPropTweens","_getLabelInDirection","fromTime","backward","distance","label","executeLazyFirst","callback","prevContext","context","_ctx","result","callbackScope","_interrupt","scrollTrigger","_quickTween","_registerPluginQueue","_createPlugin","config","headless","isFunc","Plugin","init","_props","instanceDefaults","_killPropTweensOf","modifier","_addPluginModifier","rawVars","statics","get","getSetter","_getSetter","aliases","register","prop","toUpperCase","PropTween","_255","_colorLookup","aqua","lime","silver","black","maroon","teal","blue","navy","white","olive","yellow","orange","gray","purple","green","red","pink","cyan","transparent","_hue","h","m1","m2","splitColor","toHSL","forceAlpha","g","wasHSL","parseInt","map","Number","_colorOrderData","c","_colorExp","_formatColors","orderMatchData","colors","shell","color","join","shift","RegExp","_hslExp","_colorStringFilter","combined","lastIndex","test","_tickerActive","_getTime","Date","now","_lagThreshold","_adjustedLag","_startTime","_lastUpdate","_gap","_nextTime","_listeners","_id","_req","_raf","_self","_delta","_i","_tick","elapsed","manual","overlap","dispatch","tick","deltaRatio","fps","wake","requestAnimationFrame","sleep","setTimeout","cancelAnimationFrame","clearTimeout","lagSmoothing","threshold","adjustedLag","Infinity","_fps","once","prioritize","_easeMap","_customEaseExp","_quotesExp","_parseObjectInString","key","val","parsedVal","lastIndexOf","_valueInParentheses","open","close","nested","_configEaseFromString","_CE","defaultEase","_insertEase","easeIn","easeOut","easeInOut","lowercaseName","toLowerCase","_easeInOutFromOut","_configElastic","amplitude","period","p1","p2","p3","asin","_configBack","overshoot","power","Linear","easeNone","none","n1","n2","n3","SteppedEase","steps","immediateStart","id","set","Animation","yoyo","yoyoEase","_proto","startTime","_totalTime","_ptLookup","_pTime","_ps","paused","includeRepeats","wrapRepeats","prevIsReverting","globalTime","_sat","seek","restart","includeDelay","play","reversed","reverse","pause","atTime","resume","isActive","eventCallback","then","onFulfilled","prevProm","Promise","resolve","_resolve","_then","_Animation","_this","sortChildren","_proto2","to","fromTo","fromVars","toVars","delayedCall","staggerTo","stagger","onCompleteAll","onCompleteAllParams","onComplete","onCompleteParams","staggerFrom","staggerFromTo","tDur","crossingStart","prevPaused","pauseTween","prevStart","isYoyo","rewinding","doesWrap","onRepeat","_hasPause","_forcing","onUpdate","adjustedTime","_this2","addLabel","getChildren","tweens","timelines","ignoreBeforeTime","getById","animations","removeLabel","killTweensOf","_totalTime2","addPause","removePause","props","onlyActive","getTweensOf","_overwritingTween","parsedTargets","isGlobalTime","children","_targets","tweenTo","tl","_vars","_onStart","onStart","onStartParams","initted","tweenFromTo","fromPosition","toPosition","nextLabel","afterTime","previousLabel","beforeTime","currentLabel","shiftChildren","adjustLabels","soft","clear","includeLabels","updateRoot","_addComplexStringPropTween","setter","stringFilter","funcParam","_renderComplexString","matchIndex","startNums","endNum","chunk","startNum","hasRandom","e","m","fp","optional","currentValue","parsedStart","_setterPlain","_setterFuncWithParam","_setterFunc","_forceAllPropTweens","_renderBoolean","_renderPlain","_processVars","_parseFuncOrString","style","_checkPlugin","plugin","ptLookup","priority","prevStartAt","fullTargets","autoOverwrite","_overwrite","reverseEase","easeReverse","cleanVars","hasPriority","gsData","harnessVars","overwritten","_ease","_rEase","_ptCache","_op","_sortPropTweensByPriority","_onInit","_updatePropTweens","startIsRelative","skipRecursion","ptCache","rootPT","lookup","_addAliasesToVars","propertyAliases","_parseKeyframe","allProps","easeEach","_staggerTweenProps","_staggerPropsToSkip","_Animation2","skipInherit","_this3","_this3$vars","curTarget","staggerFunc","staggerVarsToMerge","kf","_proto3","isNegative","inv","_inv","segDur","_invRatio","_invTime","_invRecip","_invScale","_invEase","resetTo","killingTargets","propTweenLookup","firstPT","overwrittenProps","curLookup","curOverwriteProps","onReverseComplete","onReverseCompleteParams","_setterAttribute","setAttribute","hasNonDependentRemaining","op","dep","_setterWithModifier","mSet","mt","pt2","first","last","pr","change","renderer","_proto4","TweenMax","TweenLite","TimelineLite","TimelineMax","_media","_emptyArray","_lastMediaTime","_contextID","_dispatch","_onMediaChange","matches","queries","conditions","anyMatch","toggled","matchMedia","onMatch","Context","_r","isReverted","_proto5","prevSelector","ignore","getTweens","_this4","o","MatchMedia","contexts","_proto6","cond","mq","active","addListener","addEventListener","registerPlugin","_len2","args","_key2","getProperty","uncache","getter","format","quickSetter","setters","quickTo","_setDefaults2","isTweening","registerEffect","_ref3","effect","plugins","extendTimeline","pluginName","registerEase","parseEase","exportRoot","includeDelayedCalls","matchMediaRefresh","found","removeEventListener","utils","install","effects","ticker","globalTimeline","core","globals","getCache","reverting","toAdd","suppressOverwrites","_getPluginPropTween","_addModifiers","modifiers","_buildModifierPlugin","temp","version","Power0","Power1","Power2","Power3","Power4","Quad","Cubic","Quart","Quint","Strong","Elastic","Back","Bounce","Sine","Expo","Circ","_defineProperties","descriptor","enumerable","configurable","writable","defineProperty","_createClass","Constructor","protoProps","staticProps","_docEl","_body","_isTouch","_pointerType","_root","_normalizer","_eventTypes","_getGSAP","window","_startup","_observers","_scrollers","_proxies","_bridge","_integrate","bridge","scrollers","proxies","_getProxyProp","element","_isViewport","_addListener","passive","capture","_removeListener","_scrollLeft","_scrollTop","_onScroll","isPressed","_scrollCacheFunc","doNotCache","cachingFunc","history","scrollRestoration","isNormalizing","iOS","cacheID","_horizontal","os","os2","d2","sc","scrollTo","_vertical","pageXOffset","pageYOffset","_getTarget","_isWithin","list","contains","_getScrollFunc","scrollingElement","smooth","_getVelocityProp","minTimeRefresh","useDelta","v1","v2","t1","t2","dropToZeroTime","update","reset","getVelocity","latestValue","tOld","vOld","_getEvent","preventDefault","_gsapAllow","cancelable","changedTouches","_getAbsoluteMax","_setScrollTrigger","_initCore","document","body","documentElement","Observer","isTouch","navigator","maxTouchPoints","msMaxTouchPoints","eventTypes","tolerance","dragMinimum","debounce","onStop","onStopDelay","wheelSpeed","event","onDragStart","onDragEnd","onDrag","onPress","onRelease","onRight","onLeft","onUp","onDown","onChangeX","onChangeY","onChange","onToggleX","onToggleY","onHover","onHoverEnd","onMove","ignoreCheck","isNormalizer","onGestureStart","onGestureEnd","onWheel","onEnable","onDisable","onClick","scrollSpeed","allowClicks","lockAxis","onLockAxis","getComputedStyle","onStopDelayedCall","dragged","moved","wheeled","locked","prevDeltaX","prevDeltaY","scrollFuncX","scrollFuncY","scrollX","scrollY","limitToTouch","isViewport","ownerDoc","ownerDocument","deltaX","deltaY","onClickTime","clickCapture","_ignoreCheck","isPointerOrTouch","pointerType","onStopFunc","_vx","_vy","changedX","changedY","onDelta","onTouchOrPointerDelta","_onDrag","clientX","clientY","isDragging","startX","startY","_onPress","button","_onRelease","isTrackingDrag","wasDragging","isDragNotClick","eventData","defaultPrevented","click","createEvent","syntheticEvent","initMouseEvent","screenX","screenY","dispatchEvent","isGesturing","_onGestureStart","touches","_onGestureEnd","onScroll","_onWheel","multiplier","deltaMode","innerHeight","_onMove","_onHover","_onHoverEnd","_onClick","_dc","enable","isEnabled","disable","filter","getAll"],"mappings":"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","ignoreList":[0,1,2,3,4]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_09jzzl8._.js b/.next/server/chunks/ssr/node_modules_next_dist_09jzzl8._.js new file mode 100644 index 0000000..3db34e5 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_09jzzl8._.js @@ -0,0 +1,3 @@ +module.exports=[90256,(a,b,c)=>{"use strict";function d(a){return a.replace(/\\/g,"/")}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"normalizePathSep",{enumerable:!0,get:function(){return d}})},73576,(a,b,c)=>{"use strict";function d(a){return a.startsWith("/")?a:`/${a}`}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"ensureLeadingSlash",{enumerable:!0,get:function(){return d}})},98698,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DEFAULT_SEGMENT_KEY:function(){return l},NOT_FOUND_SEGMENT_KEY:function(){return m},PAGE_SEGMENT_KEY:function(){return k},addSearchParamsIfPageSegment:function(){return i},computeSelectedLayoutSegment:function(){return j},getSegmentValue:function(){return f},getSelectedLayoutSegmentPath:function(){return function a(b,c,d=!0,e=[]){let g;if(d)g=b[1][c];else{let a=b[1];g=a.children??Object.values(a)[0]}if(!g)return e;let h=f(g[0]);return!h||h.startsWith(k)?e:(e.push(h),a(g,c,!1,e))}},isGroupSegment:function(){return g},isParallelRouteSegment:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){return Array.isArray(a)?a[1]:a}function g(a){return"("===a[0]&&a.endsWith(")")}function h(a){return a.startsWith("@")&&"@children"!==a}function i(a,b){if(a.includes(k)){let a=JSON.stringify(b);return"{}"!==a?k+"?"+a:k}return a}function j(a,b){if(!a||0===a.length)return null;let c="children"===b?a[0]:a[a.length-1];return c===l?null:c}let k="__PAGE__",l="__DEFAULT__",m="/_not-found"},5847,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={compareAppPaths:function(){return i},normalizeAppPath:function(){return h},normalizeRscURL:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(73576),g=a.r(98698);function h(a){return(0,f.ensureLeadingSlash)(a.split("/").reduce((a,b,c,d)=>!b||(0,g.isGroupSegment)(b)||"@"===b[0]||("page"===b||"route"===b)&&c===d.length-1?a:`${a}/${b}`,""))}function i(a,b){let c=a.includes("/@"),d=b.includes("/@");return c&&!d?-1:!c&&d?1:a.localeCompare(b)}function j(a){return a.replace(/\.rsc($|\?)/,"$1")}},36665,(a,b,c)=>{"use strict";function d(a){return a.endsWith("/route")}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"isAppRouteRoute",{enumerable:!0,get:function(){return d}})},34738,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DEFAULT_METADATA_ROUTE_EXTENSIONS:function(){return j},STATIC_METADATA_IMAGES:function(){return i},getExtensionRegexString:function(){return k},isMetadataPage:function(){return u},isMetadataRoute:function(){return v},isMetadataRouteFile:function(){return s},isStaticMetadataFile:function(){return l},isStaticMetadataRoute:function(){return t}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(90256),g=a.r(5847),h=a.r(36665),i={icon:{filename:"icon",extensions:["ico","jpg","jpeg","png","svg"]},apple:{filename:"apple-icon",extensions:["jpg","jpeg","png"]},favicon:{filename:"favicon",extensions:["ico"]},openGraph:{filename:"opengraph-image",extensions:["jpg","jpeg","png","gif"]},twitter:{filename:"twitter-image",extensions:["jpg","jpeg","png","gif"]}},j=["js","jsx","ts","tsx"],k=(a,b)=>b&&0!==b.length?`(?:\\.(${a.join("|")})|(\\.(${b.join("|")})))`:`(\\.(?:${a.join("|")}))`;function l(a){return s(a,[],!0)}let m=/^[\\/]favicon\.ico$/,n=/^[\\/]robots\.txt$/,o=/^[\\/]manifest\.json$/,p=/^[\\/]manifest\.webmanifest$/,q=/[\\/]sitemap\.xml$/,r=new Map;function s(a,b,c){if(!a||a.length<2)return!1;let d=(0,f.normalizePathSep)(a),e=!!(m.test(d)||n.test(d)||o.test(d)||p.test(d)||q.test(d))||(!!d.includes("robots")||!!d.includes("manifest")||!!d.includes("sitemap")||!!d.includes("icon")||!!d.includes("apple-icon")||!!d.includes("opengraph-image")||!!d.includes("twitter-image")||!!d.includes("favicon"))&&null;if(null!==e)return e;let g=function(a,b){let c=`${a.join(",")}|${b}`,d=r.get(c);if(d)return d;let e=b?"$":"?$",f="\\d?"+(b?"":"(-\\w{6})?"),g=a.length>0?[...a,"txt"]:["txt"],h=a.length>0?[...a,"webmanifest","json"]:["webmanifest","json"],j=[RegExp(`^[\\\\/]robots${k(g,null)}${e}`),RegExp(`^[\\\\/]manifest${k(h,null)}${e}`),RegExp(`[\\\\/]sitemap${k(["xml"],a)}${e}`),RegExp(`[\\\\/]icon${f}${k(i.icon.extensions,a)}${e}`),RegExp(`[\\\\/]apple-icon${f}${k(i.apple.extensions,a)}${e}`),RegExp(`[\\\\/]opengraph-image${f}${k(i.openGraph.extensions,a)}${e}`),RegExp(`[\\\\/]twitter-image${f}${k(i.twitter.extensions,a)}${e}`)];return r.set(c,j),j}(b,c);for(let a=0;a{"use strict";b.exports=a.r(14747)},3885,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"normalizeLocalePath",{enumerable:!0,get:function(){return e}});let d=new WeakMap;function e(a,b){let c;if(!b)return{pathname:a};let e=d.get(b);e||(e=b.map(a=>a.toLowerCase()),d.set(b,e));let f=a.split("/",2);if(!f[1])return{pathname:a};let g=f[1].toLowerCase(),h=e.indexOf(g);return h<0?{pathname:a}:(c=b[h],{pathname:a=a.slice(c.length+1)||"/",detectedLocale:c})}},43428,(a,b,c)=>{(()=>{"use strict";"u">typeof __nccwpck_require__&&(__nccwpck_require__.ab="/ROOT/node_modules/next/dist/compiled/path-to-regexp/");var a={};(()=>{function b(a,b){void 0===b&&(b={});for(var c=function(a){for(var b=[],c=0;c=48&&g<=57||g>=65&&g<=90||g>=97&&g<=122||95===g){e+=a[f++];continue}break}if(!e)throw TypeError("Missing parameter name at ".concat(c));b.push({type:"NAME",index:c,value:e}),c=f;continue}if("("===d){var h=1,i="",f=c+1;if("?"===a[f])throw TypeError('Pattern cannot start with "?" at '.concat(f));for(;f-1)return!0}return!1},q=function(a){var b=i[i.length-1],c=a||(b&&"string"==typeof b?b:"");if(b&&!c)throw TypeError('Must have text between two parameters, missing text after "'.concat(b.name,'"'));return!c||p(c)?"[^".concat(e(h),"]+?"):"(?:(?!".concat(e(c),")[^").concat(e(h),"])+?")};k-1:void 0===v;g||(p+="(?:".concat(o,"(?=").concat(n,"))?")),w||(p+="(?=".concat(o,"|").concat(n,")"))}return new RegExp(p,f(c))}function h(a,c,d){if(a instanceof RegExp){var e;if(!c)return a;for(var i=/\((?:\?<(.*?)>)?(?!\?)/g,j=0,k=i.exec(a.source);k;)c.push({name:k[1]||j++,prefix:"",suffix:"",modifier:"",pattern:""}),k=i.exec(a.source);return a}return Array.isArray(a)?(e=a.map(function(a){return h(a,c,d).source}),new RegExp("(?:".concat(e.join("|"),")"),f(d))):g(b(a,d),c,d)}Object.defineProperty(a,"__esModule",{value:!0}),a.pathToRegexp=a.tokensToRegexp=a.regexpToFunction=a.match=a.tokensToFunction=a.compile=a.parse=void 0,a.parse=b,a.compile=function(a,d){return c(b(a,d),d)},a.tokensToFunction=c,a.match=function(a,b){var c=[];return d(h(a,c,b),c,b)},a.regexpToFunction=d,a.tokensToRegexp=g,a.pathToRegexp=h})(),b.exports=a})()},15943,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"getPathMatch",{enumerable:!0,get:function(){return e}});let d=a.r(43428);function e(a,b){let c=[],e=(0,d.pathToRegexp)(a,c,{delimiter:"/",sensitive:"boolean"==typeof b?.sensitive&&b.sensitive,strict:b?.strict}),f=(0,d.regexpToFunction)(b?.regexModifier?new RegExp(b.regexModifier(e.source),e.flags):e,c);return(a,d)=>{if("string"!=typeof a)return!1;let e=f(a);if(!e)return!1;if(b?.removeUnnamedParams)for(let a of c)"number"==typeof a.name&&delete e.params[a.name];return{...d,...e.params}}}},99870,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={ACTION_SUFFIX:function(){return q},APP_DIR_ALIAS:function(){return P},CACHE_ONE_YEAR_SECONDS:function(){return F},DOT_NEXT_ALIAS:function(){return N},ESLINT_DEFAULT_DIRS:function(){return ah},GSP_NO_RETURNED_VALUE:function(){return ab},GSSP_COMPONENT_MEMBER_ERROR:function(){return ae},GSSP_NO_RETURNED_VALUE:function(){return ac},HTML_CONTENT_TYPE_HEADER:function(){return g},INFINITE_CACHE:function(){return G},INSTRUMENTATION_HOOK_FILENAME:function(){return L},JSON_CONTENT_TYPE_HEADER:function(){return h},MATCHED_PATH_HEADER:function(){return k},MIDDLEWARE_FILENAME:function(){return H},MIDDLEWARE_LOCATION_REGEXP:function(){return I},NEXT_BODY_SUFFIX:function(){return t},NEXT_CACHE_IMPLICIT_TAG_ID:function(){return D},NEXT_CACHE_REVALIDATED_TAGS_HEADER:function(){return w},NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER:function(){return x},NEXT_CACHE_ROOT_PARAM_TAG_ID:function(){return E},NEXT_CACHE_SOFT_TAG_MAX_LENGTH:function(){return C},NEXT_CACHE_TAGS_HEADER:function(){return v},NEXT_CACHE_TAG_MAX_ITEMS:function(){return A},NEXT_CACHE_TAG_MAX_LENGTH:function(){return B},NEXT_DATA_SUFFIX:function(){return r},NEXT_INTERCEPTION_MARKER_PREFIX:function(){return j},NEXT_META_SUFFIX:function(){return s},NEXT_NAV_DEPLOYMENT_ID_HEADER:function(){return u},NEXT_QUERY_PARAM_PREFIX:function(){return i},NEXT_RESUME_HEADER:function(){return y},NEXT_RESUME_STATE_LENGTH_HEADER:function(){return z},NON_STANDARD_NODE_ENV:function(){return af},PAGES_DIR_ALIAS:function(){return M},PRERENDER_REVALIDATE_HEADER:function(){return l},PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER:function(){return m},PROXY_FILENAME:function(){return J},PROXY_LOCATION_REGEXP:function(){return K},PUBLIC_DIR_MIDDLEWARE_CONFLICT:function(){return X},ROOT_DIR_ALIAS:function(){return O},RSC_ACTION_CLIENT_WRAPPER_ALIAS:function(){return W},RSC_ACTION_ENCRYPTION_ALIAS:function(){return V},RSC_ACTION_PROXY_ALIAS:function(){return S},RSC_ACTION_VALIDATE_ALIAS:function(){return R},RSC_CACHE_WRAPPER_ALIAS:function(){return T},RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS:function(){return U},RSC_MOD_REF_PROXY_ALIAS:function(){return Q},RSC_SEGMENTS_DIR_SUFFIX:function(){return n},RSC_SEGMENT_SUFFIX:function(){return o},RSC_SUFFIX:function(){return p},SERVER_PROPS_EXPORT_ERROR:function(){return aa},SERVER_PROPS_GET_INIT_PROPS_CONFLICT:function(){return Z},SERVER_PROPS_SSG_CONFLICT:function(){return $},SERVER_RUNTIME:function(){return ai},SSG_FALLBACK_EXPORT_ERROR:function(){return ag},SSG_GET_INITIAL_PROPS_CONFLICT:function(){return Y},STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR:function(){return _},TEXT_PLAIN_CONTENT_TYPE_HEADER:function(){return f},UNSTABLE_REVALIDATE_RENAME_ERROR:function(){return ad},WEBPACK_LAYERS:function(){return al},WEBPACK_RESOURCE_QUERIES:function(){return am},WEB_SOCKET_MAX_RECONNECTIONS:function(){return aj}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="text/plain",g="text/html; charset=utf-8",h="application/json; charset=utf-8",i="nxtP",j="nxtI",k="x-matched-path",l="x-prerender-revalidate",m="x-prerender-revalidate-if-generated",n=".segments",o=".segment.rsc",p=".rsc",q=".action",r=".json",s=".meta",t=".body",u="x-nextjs-deployment-id",v="x-next-cache-tags",w="x-next-revalidated-tags",x="x-next-revalidate-tag-token",y="next-resume",z="x-next-resume-state-length",A=128,B=256,C=1024,D="_N_T_",E="_N_RP_",F=31536e3,G=0xfffffffe,H="middleware",I=`(?:src/)?${H}`,J="proxy",K=`(?:src/)?${J}`,L="instrumentation",M="private-next-pages",N="private-dot-next",O="private-next-root-dir",P="private-next-app-dir",Q="private-next-rsc-mod-ref-proxy",R="private-next-rsc-action-validate",S="private-next-rsc-server-reference",T="private-next-rsc-cache-wrapper",U="private-next-rsc-track-dynamic-import",V="private-next-rsc-action-encryption",W="private-next-rsc-action-client-wrapper",X="You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict",Y="You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps",Z="You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.",$="You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps",_="can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props",aa="pages with `getServerSideProps` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export",ab="Your `getStaticProps` function did not return an object. Did you forget to add a `return`?",ac="Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?",ad="The `unstable_revalidate` property is available for general use.\nPlease use `revalidate` instead.",ae="can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member",af='You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env',ag="Pages with `fallback` enabled in `getStaticPaths` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export",ah=["app","pages","components","lib","src"],ai={edge:"edge",experimentalEdge:"experimental-edge",nodejs:"nodejs"},aj=12,ak={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"},al={...ak,GROUP:{builtinReact:[ak.reactServerComponents,ak.actionBrowser],serverOnly:[ak.reactServerComponents,ak.actionBrowser,ak.instrument,ak.middleware],neutralTarget:[ak.apiNode,ak.apiEdge],clientOnly:[ak.serverSideRendering,ak.appPagesBrowser],bundled:[ak.reactServerComponents,ak.actionBrowser,ak.serverSideRendering,ak.appPagesBrowser,ak.shared,ak.instrument,ak.middleware],appPages:[ak.reactServerComponents,ak.serverSideRendering,ak.appPagesBrowser,ak.actionBrowser]}},am={edgeSSREntry:"__next_edge_ssr_entry__",metadata:"__next_metadata__",metadataRoute:"__next_metadata_route__",metadataImageMeta:"__next_metadata_image_meta__"}},97908,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={INTERCEPTION_ROUTE_MARKERS:function(){return g},extractInterceptionRouteInformation:function(){return i},isInterceptionRouteAppPath:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(5847),g=["(..)(..)","(.)","(..)","(...)"];function h(a){return void 0!==a.split("/").find(a=>g.find(b=>a.startsWith(b)))}function i(a){let b,c,d;for(let e of a.split("/"))if(c=g.find(a=>e.startsWith(a))){[b,d]=a.split(c,2);break}if(!b||!c||!d)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Must be in the format //(..|...|..)(..)/`),"__NEXT_ERROR_CODE",{value:"E269",enumerable:!1,configurable:!0});switch(b=(0,f.normalizeAppPath)(b),c){case"(.)":d="/"===b?`/${d}`:b+"/"+d;break;case"(..)":if("/"===b)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Cannot use (..) marker at the root level, use (.) instead.`),"__NEXT_ERROR_CODE",{value:"E207",enumerable:!1,configurable:!0});d=b.split("/").slice(0,-1).concat(d).join("/");break;case"(...)":d="/"+d;break;case"(..)(..)":let e=b.split("/");if(e.length<=2)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Cannot use (..)(..) marker at the root level or one level up.`),"__NEXT_ERROR_CODE",{value:"E486",enumerable:!1,configurable:!0});d=e.slice(0,-2).concat(d).join("/");break;default:throw Object.defineProperty(Error("Invariant: unexpected marker"),"__NEXT_ERROR_CODE",{value:"E112",enumerable:!1,configurable:!0})}return{interceptingRoute:b,interceptedRoute:d}}},53386,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"escapeStringRegexp",{enumerable:!0,get:function(){return f}});let d=/[|\\{}()[\]^$+*?.-]/,e=/[|\\{}()[\]^$+*?.-]/g;function f(a){return d.test(a)?a.replace(e,"\\$&"):a}},74993,(a,b,c)=>{"use strict";function d(a){return a.replace(/\/$/,"")||"/"}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"removeTrailingSlash",{enumerable:!0,get:function(){return d}})},98419,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"parseLoaderTree",{enumerable:!0,get:function(){return e}});let d=a.r(98698);function e(a){let[b,c,e,f]=a,{layout:g,template:h}=e,{page:i}=e;i=b===d.DEFAULT_SEGMENT_KEY?e.defaultPage:i;let j=g?.[1]||h?.[1]||i?.[1];return{page:i,segment:b,modules:e,conventionPath:j,parallelRoutes:c,staticSiblings:f}}},38165,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={getParamProperties:function(){return i},getSegmentParam:function(){return g},isCatchAll:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(97908);function g(a){let b=f.INTERCEPTION_ROUTE_MARKERS.find(b=>a.startsWith(b));return(b&&(a=a.slice(b.length)),a.startsWith("[[...")&&a.endsWith("]]"))?{paramType:"optional-catchall",paramName:a.slice(5,-2)}:a.startsWith("[...")&&a.endsWith("]")?{paramType:b?`catchall-intercepted-${b}`:"catchall",paramName:a.slice(4,-1)}:a.startsWith("[")&&a.endsWith("]")?{paramType:b?`dynamic-intercepted-${b}`:"dynamic",paramName:a.slice(1,-1)}:null}function h(a){return"catchall"===a||"catchall-intercepted-(..)(..)"===a||"catchall-intercepted-(.)"===a||"catchall-intercepted-(..)"===a||"catchall-intercepted-(...)"===a||"optional-catchall"===a}function i(a){let b=!1,c=!1;switch(a){case"catchall":case"catchall-intercepted-(..)(..)":case"catchall-intercepted-(.)":case"catchall-intercepted-(..)":case"catchall-intercepted-(...)":b=!0;break;case"optional-catchall":b=!0,c=!0}return{repeat:b,optional:c}}},21080,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={isInterceptionAppRoute:function(){return k},isNormalizedAppRoute:function(){return j},parseAppRoute:function(){return function a(b,c){let d,e,h,j=b.split("/").filter(Boolean),k=[];for(let l of j){let j=i(function(a){if(!/%5b|%5d/i.test(a))return a;try{let b=decodeURIComponent(a);return(0,g.getSegmentParam)(b)?b:a}catch{return a}}(l));if(j){if(c&&("route-group"===j.type||"parallel-route"===j.type))throw Object.defineProperty(new f.InvariantError(`${b} is being parsed as a normalized route, but it has a route group or parallel route segment.`),"__NEXT_ERROR_CODE",{value:"E923",enumerable:!1,configurable:!0});if(k.push(j),j.interceptionMarker){let f=b.split(j.interceptionMarker);if(2!==f.length)throw Object.defineProperty(Error(`Invalid interception route: ${b}`),"__NEXT_ERROR_CODE",{value:"E924",enumerable:!1,configurable:!0});e=c?a(f[0],!0):a(f[0],!1),h=c?a(f[1],!0):a(f[1],!1),d=j.interceptionMarker}}}let l=k.filter(a=>"dynamic"===a.type);return{normalized:c,pathname:b,segments:k,dynamicSegments:l,interceptionMarker:d,interceptingRoute:e,interceptedRoute:h}}},parseAppRouteSegment:function(){return i}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(50640),g=a.r(38165),h=a.r(97908);function i(a){if(""===a)return null;let b=h.INTERCEPTION_ROUTE_MARKERS.find(b=>a.startsWith(b)),c=(0,g.getSegmentParam)(a);return c?{type:"dynamic",name:a,param:c,interceptionMarker:b}:a.startsWith("(")&&a.endsWith(")")?{type:"route-group",name:a,interceptionMarker:b}:a.startsWith("@")?{type:"parallel-route",name:a,interceptionMarker:b}:{type:"static",name:a,interceptionMarker:b}}function j(a){return a.normalized}function k(a){return void 0!==a.interceptionMarker&&void 0!==a.interceptingRoute&&void 0!==a.interceptedRoute}},55795,(a,b,c)=>{"use strict";function d(a){switch(a){case"catchall-intercepted-(..)(..)":case"dynamic-intercepted-(..)(..)":return"(..)(..)";case"catchall-intercepted-(.)":case"dynamic-intercepted-(.)":return"(.)";case"catchall-intercepted-(..)":case"dynamic-intercepted-(..)":return"(..)";case"catchall-intercepted-(...)":case"dynamic-intercepted-(...)":return"(...)";default:return null}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"interceptionPrefixFromParamType",{enumerable:!0,get:function(){return d}})},56733,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"resolveParamValue",{enumerable:!0,get:function(){return f}});let d=a.r(50640),e=a.r(55795);function f(a,b,c,f,g){switch(b){case"catchall":case"optional-catchall":case"catchall-intercepted-(..)(..)":case"catchall-intercepted-(.)":case"catchall-intercepted-(..)":case"catchall-intercepted-(...)":let h=[];for(let a=c;a0)return h;if("optional-catchall"===b)return;throw Object.defineProperty(new d.InvariantError(`Unexpected empty path segments match for a route "${f.pathname}" with param "${a}" of type "${b}"`),"__NEXT_ERROR_CODE",{value:"E931",enumerable:!1,configurable:!0});case"dynamic":case"dynamic-intercepted-(..)(..)":case"dynamic-intercepted-(.)":case"dynamic-intercepted-(..)":case"dynamic-intercepted-(...)":if(c{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={PARAMETER_PATTERN:function(){return l},getDynamicParam:function(){return k},interpolateParallelRouteParams:function(){return j},parseMatchedParameter:function(){return n},parseParameter:function(){return m}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(50640),g=a.r(98419),h=a.r(21080),i=a.r(56733);function j(a,b,c,d){let e=structuredClone(b),j=[{tree:a,depth:0}],k=(0,h.parseAppRoute)(c,!0);for(;j.length>0;){let{tree:a,depth:b}=j.pop(),{segment:c,parallelRoutes:l}=(0,g.parseLoaderTree)(a),m=(0,h.parseAppRouteSegment)(c);if(m?.type==="dynamic"&&!e.hasOwnProperty(m.param.paramName)&&!d?.has(m.param.paramName)){let{paramName:a,paramType:c}=m.param,d=(0,i.resolveParamValue)(a,c,b,k,e);if(void 0!==d)e[a]=d;else if("optional-catchall"!==c)throw Object.defineProperty(new f.InvariantError(`Could not resolve param value for segment: ${a}`),"__NEXT_ERROR_CODE",{value:"E932",enumerable:!1,configurable:!0})}let n=b;for(let a of(m&&"route-group"!==m.type&&"parallel-route"!==m.type&&n++,Object.values(l)))j.push({tree:a,depth:n})}return e}function k(a,b,c,d,e){let g=function(a,b,c){let d=a[b];if(c?.has(b)){let[a]=c.get(b);d=a}else Array.isArray(d)?d=d.map(a=>encodeURIComponent(a)):"string"==typeof d&&(d=encodeURIComponent(d));return d}(a,b,d);if(!g||0===g.length){if("oc"===c)return{param:b,value:null,type:c,treeSegment:[b,"",c,e]};throw Object.defineProperty(new f.InvariantError(`Missing value for segment key: "${b}" with dynamic param type: ${c}`),"__NEXT_ERROR_CODE",{value:"E864",enumerable:!1,configurable:!0})}let h=Array.isArray(g)?g.join("/"):g;return{param:b,value:g,treeSegment:[b,h,c,e],type:c}}let l=/^([^[]*)\[((?:\[[^\]]*\])|[^\]]+)\](.*)$/;function m(a){let b=a.match(l);return b?n(b[2]):n(a)}function n(a){let b=a.startsWith("[")&&a.endsWith("]");b&&(a=a.slice(1,-1));let c=a.startsWith("...");return c&&(a=a.slice(3)),{key:a,repeat:c,optional:b}}},6998,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={getNamedMiddlewareRegex:function(){return p},getNamedRouteRegex:function(){return o},getRouteRegex:function(){return l}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(99870),g=a.r(97908),h=a.r(53386),i=a.r(74993),j=a.r(23250);function k(a,b,c){let d={},e=1,f=[];for(let k of(0,i.removeTrailingSlash)(a).slice(1).split("/")){let a=g.INTERCEPTION_ROUTE_MARKERS.find(a=>k.startsWith(a)),i=k.match(j.PARAMETER_PATTERN);if(a&&i&&i[2]){let{key:b,optional:c,repeat:g}=(0,j.parseMatchedParameter)(i[2]);d[b]={pos:e++,repeat:g,optional:c},f.push(`/${(0,h.escapeStringRegexp)(a)}([^/]+?)`)}else if(i&&i[2]){let{key:a,repeat:b,optional:g}=(0,j.parseMatchedParameter)(i[2]);d[a]={pos:e++,repeat:b,optional:g},c&&i[1]&&f.push(`/${(0,h.escapeStringRegexp)(i[1])}`);let k=b?g?"(?:/(.+?))?":"/(.+?)":"/([^/]+?)";c&&i[1]&&(k=k.substring(1)),f.push(k)}else f.push(`/${(0,h.escapeStringRegexp)(k)}`);b&&i&&i[3]&&f.push((0,h.escapeStringRegexp)(i[3]))}return{parameterizedRoute:f.join(""),groups:d}}function l(a,{includeSuffix:b=!1,includePrefix:c=!1,excludeOptionalTrailingSlash:d=!1}={}){let{parameterizedRoute:e,groups:f}=k(a,b,c),g=e;return d||(g+="(?:/)?"),{re:RegExp(`^${g}$`),groups:f}}function m({interceptionMarker:a,getSafeRouteKey:b,segment:c,routeKeys:d,keyPrefix:e,backreferenceDuplicateKeys:f}){let g,{key:i,optional:k,repeat:l}=(0,j.parseMatchedParameter)(c),n=i.replace(/\W/g,"");e&&(n=`${e}${n}`);let o=!1;(0===n.length||n.length>30)&&(o=!0),isNaN(parseInt(n.slice(0,1)))||(o=!0),o&&(n=b());let p=n in d;e?d[n]=`${e}${i}`:d[n]=i;let q=a?(0,h.escapeStringRegexp)(a):"";return g=p&&f?`\\k<${n}>`:l?`(?<${n}>.+?)`:`(?<${n}>[^/]+?)`,{key:i,pattern:k?`(?:/${q}${g})?`:`/${q}${g}`,cleanedKey:n,optional:k,repeat:l}}function n(a,b,c,d,e,k={names:{},intercepted:{}}){let l,o=(l=0,()=>{let a="",b=++l;for(;b>0;)a+=String.fromCharCode(97+(b-1)%26),b=Math.floor((b-1)/26);return a}),p={},q=[],r=[];for(let l of(k=structuredClone(k),(0,i.removeTrailingSlash)(a).slice(1).split("/"))){let a,i=g.INTERCEPTION_ROUTE_MARKERS.some(a=>l.startsWith(a)),n=l.match(j.PARAMETER_PATTERN),s=i?n?.[1]:void 0;if(s&&n?.[2]?(a=b?f.NEXT_INTERCEPTION_MARKER_PREFIX:void 0,k.intercepted[n[2]]=s):a=n?.[2]&&k.intercepted[n[2]]?b?f.NEXT_INTERCEPTION_MARKER_PREFIX:void 0:b?f.NEXT_QUERY_PARAM_PREFIX:void 0,s&&n&&n[2]){let{key:b,pattern:c,cleanedKey:d,repeat:f,optional:g}=m({getSafeRouteKey:o,interceptionMarker:s,segment:n[2],routeKeys:p,keyPrefix:a,backreferenceDuplicateKeys:e});q.push(c),r.push(`/${n[1]}:${k.names[b]??d}${f?g?"*":"+":""}`),k.names[b]??=d}else if(n&&n[2]){d&&n[1]&&(q.push(`/${(0,h.escapeStringRegexp)(n[1])}`),r.push(`/${n[1]}`));let{key:b,pattern:c,cleanedKey:f,repeat:g,optional:i}=m({getSafeRouteKey:o,segment:n[2],routeKeys:p,keyPrefix:a,backreferenceDuplicateKeys:e}),j=c;d&&n[1]&&(j=j.substring(1)),q.push(j),r.push(`/:${k.names[b]??f}${g?i?"*":"+":""}`),k.names[b]??=f}else q.push(`/${(0,h.escapeStringRegexp)(l)}`),r.push(`/${l}`);c&&n&&n[3]&&(q.push((0,h.escapeStringRegexp)(n[3])),r.push(n[3]))}return{namedParameterizedRoute:q.join(""),routeKeys:p,pathToRegexpPattern:r.join(""),reference:k}}function o(a,b){let c=n(a,b.prefixRouteKeys,b.includeSuffix??!1,b.includePrefix??!1,b.backreferenceDuplicateKeys??!1,b.reference),d=c.namedParameterizedRoute;return b.excludeOptionalTrailingSlash||(d+="(?:/)?"),{...l(a,b),namedRegex:`^${d}$`,routeKeys:c.routeKeys,pathToRegexpPattern:c.pathToRegexpPattern,reference:c.reference}}function p(a,b){let{parameterizedRoute:c}=k(a,!1,!1),{catchAll:d=!0}=b;if("/"===c)return{namedRegex:`^/${d?".*":""}$`};let{namedParameterizedRoute:e}=n(a,!1,!1,!1,!1,void 0);return{namedRegex:`^${e}${d?"(?:(/.*)?)":""}$`}}},69284,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DecodeError:function(){return r},MiddlewareNotFoundError:function(){return v},MissingStaticPage:function(){return u},NormalizeError:function(){return s},PageNotFoundError:function(){return t},SP:function(){return p},ST:function(){return q},WEB_VITALS:function(){return f},execOnce:function(){return g},getDisplayName:function(){return l},getLocationOrigin:function(){return j},getURL:function(){return k},isAbsoluteUrl:function(){return i},isResSent:function(){return m},loadGetInitialProps:function(){return o},normalizeRepeatedSlashes:function(){return n},stringifyError:function(){return w}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=["CLS","FCP","FID","INP","LCP","TTFB"];function g(a){let b,c=!1;return(...d)=>(c||(c=!0,b=a(...d)),b)}let h=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/,i=a=>h.test(a);function j(){let{protocol:a,hostname:b,port:c}=window.location;return`${a}//${b}${c?":"+c:""}`}function k(){let{href:a}=window.location,b=j();return a.substring(b.length)}function l(a){return"string"==typeof a?a:a.displayName||a.name||"Unknown"}function m(a){return a.finished||a.headersSent}function n(a){let b=a.split("?");return b[0].replace(/\\/g,"/").replace(/\/\/+/g,"/")+(b[1]?`?${b.slice(1).join("?")}`:"")}async function o(a,b){let c=b.res||b.ctx&&b.ctx.res;if(!a.getInitialProps)return b.ctx&&b.Component?{pageProps:await o(b.Component,b.ctx)}:{};let d=await a.getInitialProps(b);if(c&&m(c))return d;if(!d)throw Object.defineProperty(Error(`"${l(a)}.getInitialProps()" should resolve to an object. But found "${d}" instead.`),"__NEXT_ERROR_CODE",{value:"E1025",enumerable:!1,configurable:!0});return d}let p="u">typeof performance,q=p&&["mark","measure","getEntriesByName"].every(a=>"function"==typeof performance[a]);class r extends Error{}class s extends Error{}class t extends Error{constructor(a){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${a}`}}class u extends Error{constructor(a,b){super(),this.message=`Failed to load static file for page: ${a} ${b}`}}class v extends Error{constructor(){super(),this.code="ENOENT",this.message="Cannot find the middleware module"}}function w(a){return JSON.stringify({message:a.message,stack:a.stack})}},68906,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={PARAM_SEPARATOR:function(){return f},hasAdjacentParameterIssues:function(){return g},normalizeAdjacentParameters:function(){return h},normalizeTokensForRegexp:function(){return i},stripNormalizedSeparators:function(){return j},stripParameterSeparators:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="_NEXTSEP_";function g(a){return"string"==typeof a&&!!(/\/\(\.{1,3}\):[^/\s]+/.test(a)||/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(a))}function h(a){let b=a;return(b=b.replace(/(\([^)]*\)):([^/\s]+)/g,`$1${f}:$2`)).replace(/:([^:/\s)]+)(?=:)/g,`:$1${f}`)}function i(a){return a.map(a=>"object"==typeof a&&null!==a&&"modifier"in a&&("*"===a.modifier||"+"===a.modifier)&&"prefix"in a&&"suffix"in a&&""===a.prefix&&""===a.suffix?{...a,prefix:"/"}:a)}function j(a){return a.replace(RegExp(`\\)${f}`,"g"),")")}function k(a){let b={};for(let[c,d]of Object.entries(a))"string"==typeof d?b[c]=d.replace(RegExp(`^${f}`),""):Array.isArray(d)?b[c]=d.map(a=>"string"==typeof a?a.replace(RegExp(`^${f}`),""):a):b[c]=d;return b}},72205,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={safeCompile:function(){return i},safePathToRegexp:function(){return h},safeRegexpToFunction:function(){return j},safeRouteMatcher:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(43428),g=a.r(68906);function h(a,b,c){if("string"!=typeof a)return(0,f.pathToRegexp)(a,b,c);let d=(0,g.hasAdjacentParameterIssues)(a),e=d?(0,g.normalizeAdjacentParameters)(a):a;try{return(0,f.pathToRegexp)(e,b,c)}catch(e){if(!d)try{let d=(0,g.normalizeAdjacentParameters)(a);return(0,f.pathToRegexp)(d,b,c)}catch(a){}throw e}}function i(a,b){let c=(0,g.hasAdjacentParameterIssues)(a),d=c?(0,g.normalizeAdjacentParameters)(a):a;try{let a=(0,f.compile)(d,b);if(c)return b=>(0,g.stripNormalizedSeparators)(a(b));return a}catch(d){if(!c)try{let c=(0,g.normalizeAdjacentParameters)(a),d=(0,f.compile)(c,b);return a=>(0,g.stripNormalizedSeparators)(d(a))}catch(a){}throw d}}function j(a,b){let c=(0,f.regexpToFunction)(a,b||[]);return a=>{let b=c(a);return!!b&&{...b,params:(0,g.stripParameterSeparators)(b.params)}}}function k(a){return b=>{let c=a(b);return!!c&&(0,g.stripParameterSeparators)(c)}}},78623,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"getRouteMatcher",{enumerable:!0,get:function(){return f}});let d=a.r(69284),e=a.r(72205);function f({re:a,groups:b}){return(0,e.safeRouteMatcher)(c=>{let e=a.exec(c);if(!e)return!1;let f=a=>{try{return decodeURIComponent(a)}catch{throw Object.defineProperty(new d.DecodeError("failed to decode param"),"__NEXT_ERROR_CODE",{value:"E528",enumerable:!1,configurable:!0})}},g={};for(let[a,c]of Object.entries(b)){let b=e[c.pos];void 0!==b&&(c.repeat?g[a]=b.split("/").map(a=>f(a)):g[a]=f(b))}return g})}},39754,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={assign:function(){return i},searchParamsToUrlQuery:function(){return f},urlQueryToSearchParams:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){let b={};for(let[c,d]of a.entries()){let a=b[c];void 0===a?b[c]=d:Array.isArray(a)?a.push(d):b[c]=[a,d]}return b}function g(a){return"string"==typeof a?a:("number"!=typeof a||isNaN(a))&&"boolean"!=typeof a?"":String(a)}function h(a){let b=new URLSearchParams;for(let[c,d]of Object.entries(a))if(Array.isArray(d))for(let a of d)b.append(c,g(a));else b.set(c,g(d));return b}function i(a,...b){for(let c of b){for(let b of c.keys())a.delete(b);for(let[b,d]of c.entries())a.append(b,d)}return a}},58973,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"parseRelativeUrl",{enumerable:!0,get:function(){return e}}),a.r(69284);let d=a.r(39754);function e(a,b,c=!0){let f=new URL("http://n"),g=b?new URL(b,f):a.startsWith(".")?new URL("http://n"):f,{pathname:h,searchParams:i,search:j,hash:k,href:l,origin:m}=a.startsWith("/")?new URL(`${g.protocol}//${g.host}${a}`):new URL(a,g);if(m!==f.origin)throw Object.defineProperty(Error(`invariant: invalid relative URL, router received ${a}`),"__NEXT_ERROR_CODE",{value:"E159",enumerable:!1,configurable:!0});return{auth:null,host:null,hostname:null,pathname:h,port:null,protocol:null,query:c?(0,d.searchParamsToUrlQuery)(i):void 0,search:j,hash:k,href:l.slice(m.length),slashes:null}}},70521,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"parseUrl",{enumerable:!0,get:function(){return f}});let d=a.r(39754),e=a.r(58973);function f(a){if(a.startsWith("/"))return(0,e.parseRelativeUrl)(a);let b=new URL(a),c=b.username,f=b.password,g=c?f?`${c}:${f}`:c:null,h=b.pathname,i=b.search;return{auth:g,hash:b.hash,hostname:b.hostname,href:b.href,pathname:h,port:b.port,protocol:b.protocol,query:(0,d.searchParamsToUrlQuery)(b.searchParams),search:i,origin:b.origin,slashes:"//"===b.href.slice(b.protocol.length,b.protocol.length+2)}}},87313,(a,b,c)=>{"use strict";function d(b){return function(){let{cookie:c}=b;if(!c)return{};let{parse:d}=a.r(20460);return d(Array.isArray(c)?c.join("; "):c)}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"getCookieParser",{enumerable:!0,get:function(){return d}})},51888,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={compileNonPath:function(){return m},matchHas:function(){return l},parseDestination:function(){return n},prepareDestination:function(){return o}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(53386),g=a.r(70521),h=a.r(97908),i=a.r(87313),j=a.r(72205);function k(a){return a.replace(/__ESC_COLON_/gi,":")}function l(a,b,c=[],d=[]){let e={},f=c=>{let d,f=c.key;switch(c.type){case"header":f=f.toLowerCase(),d=a.headers[f];break;case"cookie":d="cookies"in a?a.cookies[c.key]:(0,i.getCookieParser)(a.headers)()[c.key];break;case"query":d=b[f];break;case"host":{let{host:b}=a?.headers||{};d=b?.split(":",1)[0].toLowerCase()}}if(!c.value&&d)return e[function(a){let b="";for(let c=0;c64&&d<91||d>96&&d<123)&&(b+=a[c])}return b}(f)]=d,!0;if(d){let a=RegExp(`^${c.value}$`),b=Array.isArray(d)?d.slice(-1)[0].match(a):d.match(a);if(b)return Array.isArray(b)&&(b.groups?Object.keys(b.groups).forEach(a=>{e[a]=b.groups[a]}):"host"===c.type&&b[0]&&(e.host=b[0])),!0}return!1};return!(!c.every(a=>f(a))||d.some(a=>f(a)))&&e}function m(a,b){if(!a.includes(":"))return a;for(let c of Object.keys(b))a.includes(`:${c}`)&&(a=a.replace(RegExp(`:${c}\\*`,"g"),`:${c}--ESCAPED_PARAM_ASTERISKS`).replace(RegExp(`:${c}\\?`,"g"),`:${c}--ESCAPED_PARAM_QUESTION`).replace(RegExp(`:${c}\\+`,"g"),`:${c}--ESCAPED_PARAM_PLUS`).replace(RegExp(`:${c}(?!\\w)`,"g"),`--ESCAPED_PARAM_COLON${c}`));return a=a.replace(/(:|\*|\?|\+|\(|\)|\{|\})/g,"\\$1").replace(/--ESCAPED_PARAM_PLUS/g,"+").replace(/--ESCAPED_PARAM_COLON/g,":").replace(/--ESCAPED_PARAM_QUESTION/g,"?").replace(/--ESCAPED_PARAM_ASTERISKS/g,"*"),(0,j.safeCompile)(`/${a}`,{validate:!1})(b).slice(1)}function n(a){let b=a.destination;for(let c of Object.keys({...a.params,...a.query}))c&&(b=b.replace(RegExp(`:${(0,f.escapeStringRegexp)(c)}`,"g"),`__ESC_COLON_${c}`));let c=(0,g.parseUrl)(b),d=c.pathname;d&&(d=k(d));let e=c.href;e&&(e=k(e));let h=c.hostname;h&&(h=k(h));let i=c.hash;i&&(i=k(i));let j=c.search;j&&(j=k(j));let l=c.origin;return l&&(l=k(l)),{...c,pathname:d,hostname:h,href:e,hash:i,search:j,origin:l}}function o(a){let b,c,d=n(a),{hostname:e,query:f,search:g}=d,i=d.pathname;d.hash&&(i=`${i}${d.hash}`);let l=[],o=[];for(let a of((0,j.safePathToRegexp)(i,o),o))l.push(a.name);if(e){let a=[];for(let b of((0,j.safePathToRegexp)(e,a),a))l.push(b.name)}let p=(0,j.safeCompile)(i,{validate:!1});for(let[c,d]of(e&&(b=(0,j.safeCompile)(e,{validate:!1})),Object.entries(f)))Array.isArray(d)?f[c]=d.map(b=>m(k(b),a.params)):"string"==typeof d&&(f[c]=m(k(d),a.params));let q=Object.keys(a.params).filter(a=>"nextInternalLocale"!==a);if(a.appendParamsToQuery&&!q.some(a=>l.includes(a)))for(let b of q)b in f||(f[b]=a.params[b]);if((0,h.isInterceptionRouteAppPath)(i))for(let b of i.split("/")){let c=h.INTERCEPTION_ROUTE_MARKERS.find(a=>b.startsWith(a));if(c){"(..)(..)"===c?(a.params["0"]="(..)",a.params["1"]="(..)"):a.params["0"]=c;break}}try{let[e,f]=(c=p(a.params)).split("#",2);b&&(d.hostname=b(a.params)),d.pathname=e,d.hash=`${f?"#":""}${f||""}`,d.search=g?m(g,a.params):""}catch(a){if(a.message.match(/Expected .*? to not repeat, but got an array/))throw Object.defineProperty(Error("To use a multi-match in the destination you must add `*` at the end of the param name to signify it should repeat. https://nextjs.org/docs/messages/invalid-multi-match"),"__NEXT_ERROR_CODE",{value:"E329",enumerable:!1,configurable:!0});throw a}return d.query={...a.query,...d.query},{newUrl:c,destQuery:f,parsedDestination:d}}},92273,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={fromNodeOutgoingHttpHeaders:function(){return g},normalizeNextQueryParam:function(){return k},splitCookiesString:function(){return h},toNodeOutgoingHttpHeaders:function(){return i},validateURL:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(99870);function g(a){let b=new Headers;for(let[c,d]of Object.entries(a))for(let a of Array.isArray(d)?d:[d])void 0!==a&&("number"==typeof a&&(a=a.toString()),b.append(c,a));return b}function h(a){var b,c,d,e,f,g=[],h=0;function i(){for(;h=a.length)&&g.push(a.substring(b,a.length))}return g}function i(a){let b={},c=[];if(a)for(let[d,e]of a.entries())"set-cookie"===d.toLowerCase()?(c.push(...h(e)),b[d]=1===c.length?c[0]:c):b[d]=e;return b}function j(a){try{return String(new URL(String(a)))}catch(b){throw Object.defineProperty(Error(`URL is malformed "${String(a)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,{cause:b}),"__NEXT_ERROR_CODE",{value:"E61",enumerable:!1,configurable:!0})}}function k(a){for(let b of[f.NEXT_QUERY_PARAM_PREFIX,f.NEXT_INTERCEPTION_MARKER_PREFIX])if(a!==b&&a.startsWith(b))return a.substring(b.length);return null}},62315,(a,b,c)=>{"use strict";function d(a){try{return decodeURIComponent(a)}catch{return a}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"decodeQueryPathParameter",{enumerable:!0,get:function(){return d}})},24774,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={ACTION_HEADER:function(){return g},FLIGHT_HEADERS:function(){return q},NEXT_ACTION_NOT_FOUND_HEADER:function(){return x},NEXT_ACTION_REVALIDATED_HEADER:function(){return A},NEXT_DID_POSTPONE_HEADER:function(){return t},NEXT_HMR_REFRESH_HASH_COOKIE:function(){return l},NEXT_HMR_REFRESH_HEADER:function(){return k},NEXT_HTML_REQUEST_ID_HEADER:function(){return z},NEXT_INSTANT_PREFETCH_HEADER:function(){return o},NEXT_INSTANT_TEST_COOKIE:function(){return p},NEXT_IS_PRERENDER_HEADER:function(){return w},NEXT_REQUEST_ID_HEADER:function(){return y},NEXT_REWRITTEN_PATH_HEADER:function(){return u},NEXT_REWRITTEN_QUERY_HEADER:function(){return v},NEXT_ROUTER_PREFETCH_HEADER:function(){return i},NEXT_ROUTER_SEGMENT_PREFETCH_HEADER:function(){return j},NEXT_ROUTER_STALE_TIME_HEADER:function(){return s},NEXT_ROUTER_STATE_TREE_HEADER:function(){return h},NEXT_RSC_UNION_QUERY:function(){return r},NEXT_URL:function(){return m},RSC_CONTENT_TYPE_HEADER:function(){return n},RSC_HEADER:function(){return f}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="rsc",g="next-action",h="next-router-state-tree",i="next-router-prefetch",j="next-router-segment-prefetch",k="next-hmr-refresh",l="__next_hmr_refresh_hash__",m="next-url",n="text/x-component",o="next-instant-navigation-testing-prefetch",p="next-instant-navigation-testing",q=[f,h,i,k,j],r="_rsc",s="x-nextjs-stale-time",t="x-nextjs-postponed",u="x-nextjs-rewritten-path",v="x-nextjs-rewritten-query",w="x-nextjs-prerender",x="x-nextjs-action-not-found",y="x-nextjs-request-id",z="x-nextjs-html-request-id",A="x-action-revalidated";("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},76750,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={isFullStringUrl:function(){return h},parseReqUrl:function(){return j},parseUrl:function(){return i},stripNextRscUnionQuery:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(24774),g="http://n";function h(a){return/https?:\/\//.test(a)}function i(a){let b;try{b=new URL(a,g)}catch{}return b}function j(a){let b=i(a);if(!b)return;let c={};for(let a of b.searchParams.keys()){let d=b.searchParams.getAll(a);c[a]=d.length>1?d:d[0]}return{query:c,hash:b.hash,search:b.search,path:b.pathname,pathname:b.pathname,href:`${b.pathname}${b.search}${b.hash}`,host:"",hostname:"",auth:"",protocol:"",slashes:null,port:""}}function k(a){let b=new URL(a,g);return b.searchParams.delete(f.NEXT_RSC_UNION_QUERY),b.pathname+b.search}},32286,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={formatUrl:function(){return h},formatWithValidation:function(){return j},urlObjectKeys:function(){return i}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(64240)._(a.r(39754)),g=/https?|ftp|gopher|file/;function h(a){let{auth:b,hostname:c}=a,d=a.protocol||"",e=a.pathname||"",h=a.hash||"",i=a.query||"",j=!1;b=b?encodeURIComponent(b).replace(/%3A/i,":")+"@":"",a.host?j=b+a.host:c&&(j=b+(~c.indexOf(":")?`[${c}]`:c),a.port&&(j+=":"+a.port)),i&&"object"==typeof i&&(i=String(f.urlQueryToSearchParams(i)));let k=a.search||i&&`?${i}`||"";return d&&!d.endsWith(":")&&(d+=":"),a.slashes||(!d||g.test(d))&&!1!==j?(j="//"+(j||""),e&&"/"!==e[0]&&(e="/"+e)):j||(j=""),h&&"#"!==h[0]&&(h="#"+h),k&&"?"!==k[0]&&(k="?"+k),e=e.replace(/[?#]/g,encodeURIComponent),k=k.replace("#","%23"),`${d}${j}${e}${k}${h}`}let i=["auth","hash","host","hostname","href","path","pathname","port","protocol","query","search","slashes"];function j(a){return h(a)}},66488,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={getPreviouslyRevalidatedTags:function(){return w},getServerUtils:function(){return v},interpolateDynamicPath:function(){return t},normalizeCdnUrl:function(){return s},normalizeDynamicRouteParams:function(){return u}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(3885),g=a.r(15943),h=a.r(6998),i=a.r(78623),j=a.r(51888),k=a.r(74993),l=a.r(5847),m=a.r(99870),n=a.r(92273),o=a.r(62315),p=a.r(76750),q=a.r(32286);function r(a,b){for(let c in delete a.nextInternalLocale,a){let d=c!==m.NEXT_QUERY_PARAM_PREFIX&&c.startsWith(m.NEXT_QUERY_PARAM_PREFIX),e=c!==m.NEXT_INTERCEPTION_MARKER_PREFIX&&c.startsWith(m.NEXT_INTERCEPTION_MARKER_PREFIX);(d||e||b.includes(c))&&delete a[c]}}function s(a,b){let c=(0,p.parseReqUrl)(a.url);if(!c)return a.url;delete c.search,r(c.query,b),a.url=(0,q.formatUrl)(c)}function t(a,b,c){if(!c)return a;for(let d of Object.keys(c.groups)){let e,{optional:f,repeat:g}=c.groups[d],h=`[${g?"...":""}${d}]`;f&&(h=`[${h}]`);let i=b[d];((e=Array.isArray(i)?i.map(a=>a&&encodeURIComponent(a)).join("/"):i?encodeURIComponent(i):"")||f)&&(a=a.replaceAll(h,e))}return a}function u(a,b,c,d){let e=(a,b)=>{if(!a)return!1;let c=(0,l.normalizeRscURL)(a);for(let a=0;a<3;a++){if(c===b)return!0;let a=(0,o.decodeQueryPathParameter)(c);if(a===c)break;c=a}return!1},f={};for(let g of Object.keys(b.groups)){let h=a[g];"string"==typeof h?h=(0,l.normalizeRscURL)(h):Array.isArray(h)&&(h=h.map(l.normalizeRscURL));let i=c[g],j=b.groups[g].optional;if((Array.isArray(i)?i.some(a=>Array.isArray(h)?h.some(b=>e(b,a)):e(h,a)):Array.isArray(h)?h.some(a=>e(a,i)):e(h,i))||void 0===h&&!(j&&d))return{params:{},hasValidParams:!1};j&&(!h||Array.isArray(h)&&1===h.length&&("index"===h[0]||h[0]===`[[...${g}]]`)||"index"===h||h===`[[...${g}]]`)&&(h=void 0,delete a[g]),h&&"string"==typeof h&&b.groups[g].repeat&&(h=h.split("/")),h&&(f[g]=h)}return{params:f,hasValidParams:!0}}function v({page:a,i18n:b,basePath:c,rewrites:d,pageIsDynamic:e,trailingSlash:l,caseSensitive:m}){let p,q,w;return e&&(p=(0,h.getNamedRouteRegex)(a,{prefixRouteKeys:!1}),w=(q=(0,i.getRouteMatcher)(p))(a)),{handleRewrites:function(h,i){let n=structuredClone(i),o={},p=n.pathname,r=d=>{let i=(0,g.getPathMatch)(d.source+(l?"(/)?":""),{removeUnnamedParams:!0,strict:!0,sensitive:!!m});if(!n.pathname)return!1;let k=i(n.pathname);if((d.has||d.missing)&&k){let a=(0,j.matchHas)(h,n.query,d.has,d.missing);a?Object.assign(k,a):k=!1}if(k){let{parsedDestination:g,destQuery:h}=(0,j.prepareDestination)({appendParamsToQuery:!0,destination:d.destination,params:k,query:n.query});if(g.protocol)return!0;if(Object.assign(o,h,k),Object.assign(n.query,g.query),delete g.query,Object.assign(n,g),!(p=n.pathname))return!1;if(c&&(p=p.replace(RegExp(`^${c}`),"")||"/"),b){let a=(0,f.normalizeLocalePath)(p,b.locales);p=a.pathname,n.query.nextInternalLocale=a.detectedLocale||k.nextInternalLocale}if(p===a)return!0;if(e&&q){let a=q(p);if(a)return n.query={...n.query,...a},!0}}return!1};for(let a of d.beforeFiles||[])r(a);if(p!==a){let b,c=!1;for(let a of d.afterFiles||[])if(c=r(a))break;if(!c&&!((b=(0,k.removeTrailingSlash)(p||""))===(0,k.removeTrailingSlash)(a)||(null==q?void 0:q(b)))){for(let a of d.fallback||[])if(c=r(a))break}}return{rewriteParams:o,rewrittenParsedUrl:n}},defaultRouteRegex:p,dynamicRouteMatcher:q,defaultRouteMatches:w,normalizeQueryParams:function(a,b){for(let[c,d]of(delete a.nextInternalLocale,Object.entries(a))){let e=(0,n.normalizeNextQueryParam)(c);e&&(delete a[c],b.add(e),void 0!==d&&(a[e]=Array.isArray(d)?d.map(a=>(0,o.decodeQueryPathParameter)(a)):(0,o.decodeQueryPathParameter)(d)))}},getParamsFromRouteMatches:function(a){if(!p)return null;let{groups:b,routeKeys:c}=p,d=(0,i.getRouteMatcher)({re:{exec:a=>{let d=Object.fromEntries(new URLSearchParams(a));for(let[a,b]of Object.entries(d)){let c=(0,n.normalizeNextQueryParam)(a);c&&(d[c]=b,delete d[a])}let e={};for(let a of Object.keys(c)){let f=c[a];if(!f)continue;let g=b[f],h=d[a];if(!g.optional&&!h)return null;e[g.pos]=h}return e}},groups:b})(a);return d||null},normalizeDynamicRouteParams:(a,b)=>p&&w?u(a,p,w,b):{params:{},hasValidParams:!1},normalizeCdnUrl:(a,b)=>s(a,b),interpolateDynamicPath:(a,b)=>t(a,b,p),filterInternalQuery:(a,b)=>r(a,b)}}function w(a,b){return"string"==typeof a[m.NEXT_CACHE_REVALIDATED_TAGS_HEADER]&&a[m.NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER]===b?a[m.NEXT_CACHE_REVALIDATED_TAGS_HEADER].split(","):[]}},37211,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={djb2Hash:function(){return f},hexHash:function(){return g}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});function f(a){let b=5381;for(let c=0;c>>0}function g(a){return f(a).toString(36).slice(0,5)}},52425,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d,e={fillMetadataSegment:function(){return p},normalizeMetadataPageToRoute:function(){return r},normalizeMetadataRoute:function(){return q}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});let g=a.r(34738),h=(d=a.r(23574))&&d.__esModule?d:{default:d},i=a.r(66488),j=a.r(6998),k=a.r(37211),l=a.r(5847),m=a.r(90256),n=a.r(98698);function o(a){let b=h.default.dirname(a);if(a.endsWith("/sitemap")||a.endsWith("/sitemap.xml"))return"";let c="";return b.split("/").some(a=>(0,n.isGroupSegment)(a)||(0,n.isParallelRouteSegment)(a))&&(c=(0,k.djb2Hash)(b).toString(36).slice(0,6)),c}function p(a,b,c,d){let e=(0,l.normalizeAppPath)(a),f=(0,j.getNamedRouteRegex)(e,{prefixRouteKeys:!1}),g=d?Object.keys(f.groups).reduce((a,b)=>{let{repeat:c}=f.groups[b];return a[b]=c?["-"]:"-",a},{}):b,k=(0,i.interpolateDynamicPath)(e,g,f),{name:n,ext:p}=h.default.parse(c),q=o(h.default.posix.join(a,n)),r=q?`-${q}`:"";return(0,m.normalizePathSep)(h.default.join(k,`${n}${r}${p}`))}function q(a){if(!(0,g.isMetadataPage)(a))return a;let b=a,c="";if("/robots"===a?b+=".txt":"/manifest"===a?b+=".webmanifest":c=o(a),!b.endsWith("/route")){let{dir:a,name:d,ext:e}=h.default.parse(b);b=h.default.posix.join(a,`${d}${c?`-${c}`:""}${e}`,"route")}return b}function r(a,b){let c=a.endsWith("/route"),d=c?a.slice(0,-6):a,e=d.endsWith("/sitemap")?".xml":"";return(b?`${d}/[__metadata_id__]`:`${d}${e}`)+(c?"/route":"")}},71306,(a,b,c)=>{b.exports=a.r(18622)},79847,a=>{a.n(a.i(3343))},9185,a=>{a.n(a.i(29432))},72842,a=>{a.n(a.i(75164))},54897,a=>{a.n(a.i(30106))},56157,a=>{a.n(a.i(18970))},94331,a=>{a.n(a.i(60644))},15988,a=>{a.n(a.i(56952))},25766,a=>{a.n(a.i(77341))},29725,a=>{a.n(a.i(94290))},90833,a=>{a.n(a.i(46994))},5785,a=>{a.n(a.i(90588))},74793,a=>{a.n(a.i(33169))},85826,a=>{a.n(a.i(37111))},21565,a=>{a.n(a.i(41763))},65911,a=>{a.n(a.i(8950))},25128,a=>{a.n(a.i(91562))},40781,a=>{a.n(a.i(49670))},69411,a=>{a.n(a.i(75700))},63081,a=>{a.n(a.i(276))},62837,a=>{a.n(a.i(40795))},34607,a=>{a.n(a.i(11614))},96338,a=>{a.n(a.i(21751))},50642,a=>{a.n(a.i(12213))},32242,a=>{a.n(a.i(22693))},88530,a=>{a.n(a.i(10531))},8583,a=>{a.n(a.i(1082))},38534,a=>{a.n(a.i(98175))},70408,a=>{a.n(a.i(9095))},22922,a=>{a.n(a.i(96772))},78294,a=>{a.n(a.i(71717))},16625,a=>{a.n(a.i(85034))},88648,a=>{a.n(a.i(68113))},51914,a=>{a.n(a.i(66482))},25466,a=>{a.n(a.i(91505))}]; + +//# sourceMappingURL=node_modules_next_dist_09jzzl8._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_09jzzl8._.js.map b/.next/server/chunks/ssr/node_modules_next_dist_09jzzl8._.js.map new file mode 100644 index 0000000..fba06db --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_09jzzl8._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/shared/lib/page-path/normalize-path-sep.ts","../../../../node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts","../../../../node_modules/next/src/shared/lib/segment.ts","../../../../node_modules/next/src/shared/lib/router/utils/app-paths.ts","../../../../node_modules/next/src/lib/is-app-route-route.ts","../../../../node_modules/next/src/lib/metadata/is-metadata-route.ts","../../../../node_modules/next/src/shared/lib/isomorphic/path.js","../../../../node_modules/next/src/shared/lib/i18n/normalize-locale-path.ts","../../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../../node_modules/next/src/shared/lib/router/utils/path-match.ts","../../../../node_modules/next/src/lib/constants.ts","../../../../node_modules/next/src/shared/lib/router/utils/interception-routes.ts","../../../../node_modules/next/src/shared/lib/escape-regexp.ts","../../../../node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts","../../../../node_modules/next/src/shared/lib/router/utils/parse-loader-tree.ts","../../../../node_modules/next/src/shared/lib/router/utils/get-segment-param.tsx","../../../../node_modules/next/src/shared/lib/router/routes/app.ts","../../../../node_modules/next/src/shared/lib/router/utils/interception-prefix-from-param-type.ts","../../../../node_modules/next/src/shared/lib/router/utils/resolve-param-value.ts","../../../../node_modules/next/src/shared/lib/router/utils/get-dynamic-param.ts","../../../../node_modules/next/src/shared/lib/router/utils/route-regex.ts","../../../../node_modules/next/src/shared/lib/utils.ts","../../../../node_modules/next/src/lib/route-pattern-normalizer.ts","../../../../node_modules/next/src/shared/lib/router/utils/route-match-utils.ts","../../../../node_modules/next/src/shared/lib/router/utils/route-matcher.ts","../../../../node_modules/next/src/shared/lib/router/utils/querystring.ts","../../../../node_modules/next/src/shared/lib/router/utils/parse-relative-url.ts","../../../../node_modules/next/src/shared/lib/router/utils/parse-url.ts","../../../../node_modules/next/src/server/api-utils/get-cookie-parser.ts","../../../../node_modules/next/src/shared/lib/router/utils/prepare-destination.ts","../../../../node_modules/next/src/server/web/utils.ts","../../../../node_modules/next/src/server/lib/decode-query-path-parameter.ts","../../../../node_modules/next/src/client/components/app-router-headers.ts","../../../../node_modules/next/src/lib/url.ts","../../../../node_modules/next/src/shared/lib/router/utils/format-url.ts","../../../../node_modules/next/src/server/server-utils.ts","../../../../node_modules/next/src/shared/lib/hash.ts","../../../../node_modules/next/src/lib/metadata/get-metadata-route.ts","../../../../node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is no backslash\n * escaping slashes in the path. Example:\n * - `foo\\/bar\\/baz` -> `foo/bar/baz`\n */\nexport function normalizePathSep(path: string): string {\n return path.replace(/\\\\/g, '/')\n}\n","/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n","import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n","import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Comparator for sorting app paths so that parallel slot paths (containing\n * `/@`) come before the children/root page path. This ensures the last item\n * is always the children page, which is what `renderPageComponent` reads via\n * `appPaths[appPaths.length - 1]`.\n *\n * Without this, route group prefixes like `(group)` (char code 0x28) sort\n * before `@` (0x40), causing the children page to sort first instead of last\n * and leading to a manifest mismatch / 404 in webpack dev mode.\n */\nexport function compareAppPaths(a: string, b: string): number {\n const aHasSlot = a.includes('/@')\n const bHasSlot = b.includes('/@')\n if (aHasSlot && !bHasSlot) return -1\n if (!aHasSlot && bHasSlot) return 1\n return a.localeCompare(b)\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n","export function isAppRouteRoute(route: string): boolean {\n return route.endsWith('/route')\n}\n","import type { PageExtensions } from '../../build/page-extensions-type'\nimport { normalizePathSep } from '../../shared/lib/page-path/normalize-path-sep'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { isAppRouteRoute } from '../is-app-route-route'\n\nexport const STATIC_METADATA_IMAGES = {\n icon: {\n filename: 'icon',\n extensions: ['ico', 'jpg', 'jpeg', 'png', 'svg'],\n },\n apple: {\n filename: 'apple-icon',\n extensions: ['jpg', 'jpeg', 'png'],\n },\n favicon: {\n filename: 'favicon',\n extensions: ['ico'],\n },\n openGraph: {\n filename: 'opengraph-image',\n extensions: ['jpg', 'jpeg', 'png', 'gif'],\n },\n twitter: {\n filename: 'twitter-image',\n extensions: ['jpg', 'jpeg', 'png', 'gif'],\n },\n} as const\n\n// Match routes that are metadata routes, e.g. /sitemap.xml, /favicon., /., etc.\n// TODO-METADATA: support more metadata routes with more extensions\nexport const DEFAULT_METADATA_ROUTE_EXTENSIONS = ['js', 'jsx', 'ts', 'tsx']\n\n// Match the file extension with the dynamic multi-routes extensions\n// e.g. ([xml, js], null) -> can match `/sitemap.xml/route`, `sitemap.js/route`\n// e.g. ([png], [ts]) -> can match `/opengraph-image.png`, `/opengraph-image.ts`\nexport const getExtensionRegexString = (\n staticExtensions: readonly string[],\n dynamicExtensions: readonly string[] | null\n) => {\n let result: string\n // If there's no possible multi dynamic routes, will not match any []. files\n if (!dynamicExtensions || dynamicExtensions.length === 0) {\n result = `(\\\\.(?:${staticExtensions.join('|')}))`\n } else {\n result = `(?:\\\\.(${staticExtensions.join('|')})|(\\\\.(${dynamicExtensions.join('|')})))`\n }\n return result\n}\n\n/**\n * Matches the static metadata files, e.g. /robots.txt, /sitemap.xml, /favicon.ico, etc.\n * @param appDirRelativePath the relative file path to app/\n * @returns if the path is a static metadata file route\n */\nexport function isStaticMetadataFile(appDirRelativePath: string) {\n return isMetadataRouteFile(appDirRelativePath, [], true)\n}\n\n// Pre-compiled static regexes for common cases\nconst FAVICON_REGEX = /^[\\\\/]favicon\\.ico$/\nconst ROBOTS_TXT_REGEX = /^[\\\\/]robots\\.txt$/\nconst MANIFEST_JSON_REGEX = /^[\\\\/]manifest\\.json$/\nconst MANIFEST_WEBMANIFEST_REGEX = /^[\\\\/]manifest\\.webmanifest$/\nconst SITEMAP_XML_REGEX = /[\\\\/]sitemap\\.xml$/\n\n// Cache for compiled regex patterns based on parameters\nconst compiledRegexCache = new Map()\n\n// Fast path checks for common metadata files\nfunction fastPathCheck(normalizedPath: string): boolean | null {\n // Check favicon.ico first (most common)\n if (FAVICON_REGEX.test(normalizedPath)) return true\n\n // Check other common static files\n if (ROBOTS_TXT_REGEX.test(normalizedPath)) return true\n if (MANIFEST_JSON_REGEX.test(normalizedPath)) return true\n if (MANIFEST_WEBMANIFEST_REGEX.test(normalizedPath)) return true\n if (SITEMAP_XML_REGEX.test(normalizedPath)) return true\n\n // Quick negative check - if it doesn't contain any metadata keywords, skip\n if (\n !normalizedPath.includes('robots') &&\n !normalizedPath.includes('manifest') &&\n !normalizedPath.includes('sitemap') &&\n !normalizedPath.includes('icon') &&\n !normalizedPath.includes('apple-icon') &&\n !normalizedPath.includes('opengraph-image') &&\n !normalizedPath.includes('twitter-image') &&\n !normalizedPath.includes('favicon')\n ) {\n return false\n }\n\n return null // Continue with full regex matching\n}\n\nfunction getCompiledRegexes(\n pageExtensions: PageExtensions,\n strictlyMatchExtensions: boolean\n): RegExp[] {\n // Create cache key\n const cacheKey = `${pageExtensions.join(',')}|${strictlyMatchExtensions}`\n\n const cached = compiledRegexCache.get(cacheKey)\n if (cached) {\n return cached\n }\n\n // Pre-compute common strings\n const trailingMatcher = strictlyMatchExtensions ? '$' : '?$'\n const variantsMatcher = '\\\\d?'\n const groupSuffix = strictlyMatchExtensions ? '' : '(-\\\\w{6})?'\n const suffixMatcher = variantsMatcher + groupSuffix\n\n // Pre-compute extension arrays to avoid repeated concatenation\n const robotsExts =\n pageExtensions.length > 0 ? [...pageExtensions, 'txt'] : ['txt']\n const manifestExts =\n pageExtensions.length > 0\n ? [...pageExtensions, 'webmanifest', 'json']\n : ['webmanifest', 'json']\n\n const regexes = [\n new RegExp(\n `^[\\\\\\\\/]robots${getExtensionRegexString(robotsExts, null)}${trailingMatcher}`\n ),\n new RegExp(\n `^[\\\\\\\\/]manifest${getExtensionRegexString(manifestExts, null)}${trailingMatcher}`\n ),\n // FAVICON_REGEX removed - already handled in fastPathCheck\n new RegExp(\n `[\\\\\\\\/]sitemap${getExtensionRegexString(['xml'], pageExtensions)}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]icon${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.icon.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]apple-icon${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.apple.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]opengraph-image${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.openGraph.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]twitter-image${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.twitter.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n ]\n\n compiledRegexCache.set(cacheKey, regexes)\n return regexes\n}\n\n/**\n * Determine if the file is a metadata route file entry\n * @param appDirRelativePath the relative file path to app/\n * @param pageExtensions the js extensions, such as ['js', 'jsx', 'ts', 'tsx']\n * @param strictlyMatchExtensions if it's true, match the file with page extension, otherwise match the file with default corresponding extension\n * @returns if the file is a metadata route file\n */\nexport function isMetadataRouteFile(\n appDirRelativePath: string,\n pageExtensions: PageExtensions,\n strictlyMatchExtensions: boolean\n): boolean {\n // Early exit for empty or obviously non-metadata paths\n if (!appDirRelativePath || appDirRelativePath.length < 2) {\n return false\n }\n\n const normalizedPath = normalizePathSep(appDirRelativePath)\n\n // Fast path check for common cases\n const fastResult = fastPathCheck(normalizedPath)\n if (fastResult !== null) {\n return fastResult\n }\n\n // Get compiled regexes from cache\n const regexes = getCompiledRegexes(pageExtensions, strictlyMatchExtensions)\n\n // Use for loop instead of .some() for better performance\n for (let i = 0; i < regexes.length; i++) {\n if (regexes[i].test(normalizedPath)) {\n return true\n }\n }\n\n return false\n}\n\n// Check if the route is a static metadata route, with /route suffix\n// e.g. /favicon.ico/route, /icon.png/route, etc.\n// But skip the text routes like robots.txt since they might also be dynamic.\n// Checking route path is not enough to determine if text routes is dynamic.\nexport function isStaticMetadataRoute(route: string) {\n // extract ext with regex\n const pathname = route.replace(/\\/route$/, '')\n\n const matched =\n isAppRouteRoute(route) &&\n isMetadataRouteFile(pathname, [], true) &&\n // These routes can either be built by static or dynamic entrypoints,\n // so we assume they're dynamic\n pathname !== '/robots.txt' &&\n pathname !== '/manifest.webmanifest' &&\n !pathname.endsWith('/sitemap.xml')\n\n return matched\n}\n\n/**\n * Determine if a page or pathname is a metadata page.\n *\n * The input is a page or pathname, which can be with or without page suffix /foo/page or /foo.\n * But it will not contain the /route suffix.\n *\n * .e.g\n * /robots -> true\n * /sitemap -> true\n * /foo -> false\n */\nexport function isMetadataPage(page: string) {\n const matched = !isAppRouteRoute(page) && isMetadataRouteFile(page, [], false)\n\n return matched\n}\n\n/*\n * Determine if a Next.js route is a metadata route.\n * `route` will has a route suffix.\n *\n * e.g.\n * /app/robots/route -> true\n * /robots/route -> true\n * /sitemap/[__metadata_id__]/route -> true\n * /app/sitemap/page -> false\n * /icon-a102f4/route -> true\n */\nexport function isMetadataRoute(route: string): boolean {\n let page = normalizeAppPath(route)\n .replace(/^\\/?app\\//, '')\n // Remove the dynamic route id\n .replace('/[__metadata_id__]', '')\n // Remove the /route suffix\n .replace(/\\/route$/, '')\n\n if (page[0] !== '/') page = '/' + page\n\n const matched = isAppRouteRoute(route) && isMetadataRouteFile(page, [], false)\n\n return matched\n}\n","/**\n * This module is for next.js server internal usage of path module.\n * It will use native path module for nodejs runtime.\n * It will use path-browserify polyfill for edge runtime.\n */\nlet path\n\nif (process.env.NEXT_RUNTIME === 'edge') {\n path = require('next/dist/compiled/path-browserify')\n} else {\n path = require('path')\n}\n\nmodule.exports = path\n","export interface PathLocale {\n detectedLocale?: string\n pathname: string\n}\n\n/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */\nconst cache = new WeakMap()\n\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */\nexport function normalizeLocalePath(\n pathname: string,\n locales?: readonly string[]\n): PathLocale {\n // If locales is undefined, return the pathname as is.\n if (!locales) return { pathname }\n\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales)\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale) => locale.toLowerCase())\n cache.set(locales, lowercasedLocales)\n }\n\n let detectedLocale: string | undefined\n\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2)\n\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return { pathname }\n\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase()\n\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment)\n if (index < 0) return { pathname }\n\n // Return the case-sensitive locale.\n detectedLocale = locales[index]\n\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/'\n\n return { pathname, detectedLocale }\n}\n","(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var n=e;Object.defineProperty(n,\"__esModule\",{value:true});n.pathToRegexp=n.tokensToRegexp=n.regexpToFunction=n.match=n.tokensToFunction=n.compile=n.parse=void 0;function lexer(e){var n=[];var r=0;while(r=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122||o===95){a+=e[i++];continue}break}if(!a)throw new TypeError(\"Missing parameter name at \".concat(r));n.push({type:\"NAME\",index:r,value:a});r=i;continue}if(t===\"(\"){var c=1;var f=\"\";var i=r+1;if(e[i]===\"?\"){throw new TypeError('Pattern cannot start with \"?\" at '.concat(i))}while(i-1)return true}return false};var safePattern=function(e){var n=c[c.length-1];var r=e||(n&&typeof n===\"string\"?n:\"\");if(n&&!r){throw new TypeError('Must have text between two parameters, missing text after \"'.concat(n.name,'\"'))}if(!r||isSafe(r))return\"[^\".concat(escapeString(o),\"]+?\");return\"(?:(?!\".concat(escapeString(r),\")[^\").concat(escapeString(o),\"])+?\")};while(u)?(?!\\?)/g;var t=0;var a=r.exec(e.source);while(a){n.push({name:a[1]||t++,prefix:\"\",suffix:\"\",modifier:\"\",pattern:\"\"});a=r.exec(e.source)}return e}function arrayToRegexp(e,n,r){var t=e.map((function(e){return pathToRegexp(e,n,r).source}));return new RegExp(\"(?:\".concat(t.join(\"|\"),\")\"),flags(r))}function stringToRegexp(e,n,r){return tokensToRegexp(parse(e,r),n,r)}function tokensToRegexp(e,n,r){if(r===void 0){r={}}var t=r.strict,a=t===void 0?false:t,i=r.start,o=i===void 0?true:i,c=r.end,f=c===void 0?true:c,u=r.encode,p=u===void 0?function(e){return e}:u,v=r.delimiter,s=v===void 0?\"/#?\":v,d=r.endsWith,g=d===void 0?\"\":d;var x=\"[\".concat(escapeString(g),\"]|$\");var h=\"[\".concat(escapeString(s),\"]\");var l=o?\"^\":\"\";for(var m=0,T=e;m-1:A===undefined;if(!a){l+=\"(?:\".concat(h,\"(?=\").concat(x,\"))?\")}if(!_){l+=\"(?=\".concat(h,\"|\").concat(x,\")\")}}return new RegExp(l,flags(r))}n.tokensToRegexp=tokensToRegexp;function pathToRegexp(e,n,r){if(e instanceof RegExp)return regexpToRegexp(e,n);if(Array.isArray(e))return arrayToRegexp(e,n,r);return stringToRegexp(e,n,r)}n.pathToRegexp=pathToRegexp})();module.exports=e})();","import type { Key } from 'next/dist/compiled/path-to-regexp'\nimport { regexpToFunction } from 'next/dist/compiled/path-to-regexp'\nimport { pathToRegexp } from 'next/dist/compiled/path-to-regexp'\n\ninterface Options {\n /**\n * A transformer function that will be applied to the regexp generated\n * from the provided path and path-to-regexp.\n */\n regexModifier?: (regex: string) => string\n /**\n * When true the function will remove all unnamed parameters\n * from the matched parameters.\n */\n removeUnnamedParams?: boolean\n /**\n * When true the regexp won't allow an optional trailing delimiter\n * to match.\n */\n strict?: boolean\n\n /**\n * When true the matcher will be case-sensitive, defaults to false\n */\n sensitive?: boolean\n}\n\nexport type PatchMatcher = (\n pathname: string,\n params?: Record\n) => Record | false\n\n/**\n * Generates a path matcher function for a given path and options based on\n * path-to-regexp. By default the match will be case insensitive, non strict\n * and delimited by `/`.\n */\nexport function getPathMatch(path: string, options?: Options): PatchMatcher {\n const keys: Key[] = []\n const regexp = pathToRegexp(path, keys, {\n delimiter: '/',\n sensitive:\n typeof options?.sensitive === 'boolean' ? options.sensitive : false,\n strict: options?.strict,\n })\n\n const matcher = regexpToFunction>(\n options?.regexModifier\n ? new RegExp(options.regexModifier(regexp.source), regexp.flags)\n : regexp,\n keys\n )\n\n /**\n * A matcher function that will check if a given pathname matches the path\n * given in the builder function. When the path does not match it will return\n * `false` but if it does it will return an object with the matched params\n * merged with the params provided in the second argument.\n */\n return (pathname, params) => {\n // If no pathname is provided it's not a match.\n if (typeof pathname !== 'string') return false\n\n const match = matcher(pathname)\n\n // If the path did not match `false` will be returned.\n if (!match) return false\n\n /**\n * If unnamed params are not allowed they must be removed from\n * the matched parameters. path-to-regexp uses \"string\" for named and\n * \"number\" for unnamed parameters.\n */\n if (options?.removeUnnamedParams) {\n for (const key of keys) {\n if (typeof key.name === 'number') {\n delete match.params[key.name]\n }\n }\n }\n\n return { ...params, ...match.params }\n }\n}\n","import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_NAV_DEPLOYMENT_ID_HEADER = 'x-nextjs-deployment-id'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\nexport const NEXT_RESUME_STATE_LENGTH_HEADER = 'x-next-resume-state-length'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\nexport const NEXT_CACHE_ROOT_PARAM_TAG_ID = '_N_RP_'\n\n// in seconds\nexport const CACHE_ONE_YEAR_SECONDS = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n","import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n","// regexp is based on https://github.com/sindresorhus/escape-string-regexp\nconst reHasRegExp = /[|\\\\{}()[\\]^$+*?.-]/\nconst reReplaceRegExp = /[|\\\\{}()[\\]^$+*?.-]/g\n\nexport function escapeStringRegexp(str: string) {\n // see also: https://github.com/lodash/lodash/blob/2da024c3b4f9947a48517639de7560457cd4ec6c/escapeRegExp.js#L23\n if (reHasRegExp.test(str)) {\n return str.replace(reReplaceRegExp, '\\\\$&')\n }\n return str\n}\n","/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n","import { DEFAULT_SEGMENT_KEY } from '../../segment'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\n\nexport function parseLoaderTree(tree: LoaderTree) {\n const [segment, parallelRoutes, modules, staticSiblings] = tree\n const { layout, template } = modules\n let { page } = modules\n // a __DEFAULT__ segment means that this route didn't match any of the\n // segments in the route, so we should use the default page\n page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page\n\n const conventionPath = layout?.[1] || template?.[1] || page?.[1]\n\n return {\n page,\n segment,\n modules,\n /* it can be either layout / template / page */\n conventionPath,\n parallelRoutes,\n staticSiblings,\n }\n}\n","import { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport type { DynamicParamTypes } from '../../app-router-types'\n\nexport type SegmentParam = {\n paramName: string\n paramType: DynamicParamTypes\n}\n\n/**\n * Parse dynamic route segment to type of parameter\n */\nexport function getSegmentParam(segment: string): SegmentParam | null {\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker) =>\n segment.startsWith(marker)\n )\n\n // if an interception marker is part of the path segment, we need to jump ahead\n // to the relevant portion for param parsing\n if (interceptionMarker) {\n segment = segment.slice(interceptionMarker.length)\n }\n\n if (segment.startsWith('[[...') && segment.endsWith(']]')) {\n return {\n // TODO-APP: Optional catchall does not currently work with parallel routes,\n // so for now aren't handling a potential interception marker.\n paramType: 'optional-catchall',\n paramName: segment.slice(5, -2),\n }\n }\n\n if (segment.startsWith('[...') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `catchall-intercepted-${interceptionMarker}`\n : 'catchall',\n paramName: segment.slice(4, -1),\n }\n }\n\n if (segment.startsWith('[') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `dynamic-intercepted-${interceptionMarker}`\n : 'dynamic',\n paramName: segment.slice(1, -1),\n }\n }\n\n return null\n}\n\nexport function isCatchAll(\n type: DynamicParamTypes\n): type is\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall' {\n return (\n type === 'catchall' ||\n type === 'catchall-intercepted-(..)(..)' ||\n type === 'catchall-intercepted-(.)' ||\n type === 'catchall-intercepted-(..)' ||\n type === 'catchall-intercepted-(...)' ||\n type === 'optional-catchall'\n )\n}\n\nexport function getParamProperties(paramType: DynamicParamTypes): {\n repeat: boolean\n optional: boolean\n} {\n let repeat = false\n let optional = false\n\n switch (paramType) {\n case 'catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n repeat = true\n break\n case 'optional-catchall':\n repeat = true\n optional = true\n break\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n break\n default:\n paramType satisfies never\n }\n\n return { repeat, optional }\n}\n","import { InvariantError } from '../../invariant-error'\nimport { getSegmentParam, type SegmentParam } from '../utils/get-segment-param'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n type InterceptionMarker,\n} from '../utils/interception-routes'\n\nexport type RouteGroupAppRouteSegment = {\n type: 'route-group'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type ParallelRouteAppRouteSegment = {\n type: 'parallel-route'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type StaticAppRouteSegment = {\n type: 'static'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type DynamicAppRouteSegment = {\n type: 'dynamic'\n name: string\n param: SegmentParam\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\n/**\n * Represents a single segment in a route path.\n * Can be either static (e.g., \"blog\") or dynamic (e.g., \"[slug]\").\n */\nexport type AppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n | RouteGroupAppRouteSegment\n | ParallelRouteAppRouteSegment\n\nexport type NormalizedAppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n\nfunction normalizeEncodedDynamicPlaceholder(segment: string): string {\n if (!/%5b|%5d/i.test(segment)) {\n return segment\n }\n\n try {\n const decodedSegment = decodeURIComponent(segment)\n return getSegmentParam(decodedSegment) ? decodedSegment : segment\n } catch {\n return segment\n }\n}\n\nexport function parseAppRouteSegment(segment: string): AppRouteSegment | null {\n if (segment === '') {\n return null\n }\n\n // Check if the segment starts with an interception marker\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n\n const param = getSegmentParam(segment)\n if (param) {\n return {\n type: 'dynamic',\n name: segment,\n param,\n interceptionMarker,\n }\n } else if (segment.startsWith('(') && segment.endsWith(')')) {\n return {\n type: 'route-group',\n name: segment,\n interceptionMarker,\n }\n } else if (segment.startsWith('@')) {\n return {\n type: 'parallel-route',\n name: segment,\n interceptionMarker,\n }\n } else {\n return {\n type: 'static',\n name: segment,\n interceptionMarker,\n }\n }\n}\n\nexport type AppRoute = {\n normalized: boolean\n pathname: string\n segments: AppRouteSegment[]\n dynamicSegments: DynamicAppRouteSegment[]\n interceptionMarker: InterceptionMarker | undefined\n interceptingRoute: AppRoute | undefined\n interceptedRoute: AppRoute | undefined\n}\n\nexport type NormalizedAppRoute = Omit & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n}\n\nexport function isNormalizedAppRoute(\n route: InterceptionAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isNormalizedAppRoute(\n route: AppRoute | InterceptionAppRoute\n): route is NormalizedAppRoute {\n return route.normalized\n}\n\nexport type InterceptionAppRoute = Omit<\n AppRoute,\n 'interceptionMarker' | 'interceptingRoute' | 'interceptedRoute'\n> & {\n interceptionMarker: InterceptionMarker\n interceptingRoute: AppRoute\n interceptedRoute: AppRoute\n}\n\nexport type NormalizedInterceptionAppRoute = Omit<\n InterceptionAppRoute,\n | 'normalized'\n | 'segments'\n | 'interceptionMarker'\n | 'interceptingRoute'\n | 'interceptedRoute'\n> & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n interceptionMarker: InterceptionMarker\n interceptingRoute: NormalizedAppRoute\n interceptedRoute: NormalizedAppRoute\n}\n\nexport function isInterceptionAppRoute(\n route: NormalizedAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isInterceptionAppRoute(\n route: AppRoute\n): route is InterceptionAppRoute {\n return (\n route.interceptionMarker !== undefined &&\n route.interceptingRoute !== undefined &&\n route.interceptedRoute !== undefined\n )\n}\n\nexport function parseAppRoute(\n pathname: string,\n normalized: true\n): NormalizedAppRoute\nexport function parseAppRoute(pathname: string, normalized: false): AppRoute\nexport function parseAppRoute(\n pathname: string,\n normalized: boolean\n): AppRoute | NormalizedAppRoute {\n const pathnameSegments = pathname.split('/').filter(Boolean)\n\n // Build segments array with static and dynamic segments\n const segments: AppRouteSegment[] = []\n\n // Parse if this is an interception route.\n let interceptionMarker: InterceptionMarker | undefined\n let interceptingRoute: AppRoute | NormalizedAppRoute | undefined\n let interceptedRoute: AppRoute | NormalizedAppRoute | undefined\n\n for (const segment of pathnameSegments) {\n const normalizedSegment = normalizeEncodedDynamicPlaceholder(segment)\n\n // Parse the segment into an AppSegment.\n const appSegment = parseAppRouteSegment(normalizedSegment)\n if (!appSegment) {\n continue\n }\n\n if (\n normalized &&\n (appSegment.type === 'route-group' ||\n appSegment.type === 'parallel-route')\n ) {\n throw new InvariantError(\n `${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`\n )\n }\n\n segments.push(appSegment)\n\n if (appSegment.interceptionMarker) {\n const parts = pathname.split(appSegment.interceptionMarker)\n if (parts.length !== 2) {\n throw new Error(`Invalid interception route: ${pathname}`)\n }\n\n interceptingRoute = normalized\n ? parseAppRoute(parts[0], true)\n : parseAppRoute(parts[0], false)\n interceptedRoute = normalized\n ? parseAppRoute(parts[1], true)\n : parseAppRoute(parts[1], false)\n interceptionMarker = appSegment.interceptionMarker\n }\n }\n\n const dynamicSegments = segments.filter(\n (segment) => segment.type === 'dynamic'\n )\n\n return {\n normalized,\n pathname,\n segments,\n dynamicSegments,\n interceptionMarker,\n interceptingRoute,\n interceptedRoute,\n }\n}\n","import type { DynamicParamTypes } from '../../app-router-types'\n\nexport function interceptionPrefixFromParamType(\n paramType: DynamicParamTypes\n): string | null {\n switch (paramType) {\n case 'catchall-intercepted-(..)(..)':\n case 'dynamic-intercepted-(..)(..)':\n return '(..)(..)'\n case 'catchall-intercepted-(.)':\n case 'dynamic-intercepted-(.)':\n return '(.)'\n case 'catchall-intercepted-(..)':\n case 'dynamic-intercepted-(..)':\n return '(..)'\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(...)':\n return '(...)'\n case 'catchall':\n case 'dynamic':\n case 'optional-catchall':\n default:\n return null\n }\n}\n","import type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypes } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport type {\n NormalizedAppRoute,\n NormalizedAppRouteSegment,\n} from '../routes/app'\nimport { interceptionPrefixFromParamType } from './interception-prefix-from-param-type'\n\n/**\n * Extracts the param value from a path segment, handling interception markers\n * based on the expected param type.\n *\n * @param pathSegment - The path segment to extract the value from\n * @param params - The current params object for resolving dynamic param references\n * @param paramType - The expected param type which may include interception marker info\n * @returns The extracted param value\n */\nfunction getParamValueFromSegment(\n pathSegment: NormalizedAppRouteSegment,\n params: Params,\n paramType: DynamicParamTypes\n): string {\n // If the segment is dynamic, resolve it from the params object\n if (pathSegment.type === 'dynamic') {\n return params[pathSegment.param.paramName] as string\n }\n\n // If the paramType indicates this is an intercepted param, strip the marker\n // that matches the interception marker in the param type\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (interceptionPrefix === pathSegment.interceptionMarker) {\n return pathSegment.name.replace(pathSegment.interceptionMarker, '')\n }\n\n // For static segments, use the name\n return pathSegment.name\n}\n\n/**\n * Resolves a route parameter value from the route segments at the given depth.\n * This shared logic is used by both extractPathnameRouteParamSegmentsFromLoaderTree\n * and resolveRouteParamsFromTree.\n *\n * @param paramName - The parameter name to resolve\n * @param paramType - The parameter type (dynamic, catchall, etc.)\n * @param depth - The current depth in the route tree\n * @param route - The normalized route containing segments\n * @param params - The current params object (used to resolve embedded param references)\n * @param options - Configuration options\n * @returns The resolved parameter value, or undefined if it cannot be resolved\n */\nexport function resolveParamValue(\n paramName: string,\n paramType: DynamicParamTypes,\n depth: number,\n route: NormalizedAppRoute,\n params: Params\n): string | string[] | undefined {\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n // For catchall routes, derive from pathname using depth to determine\n // which segments to use\n const processedSegments: string[] = []\n\n // Process segments to handle any embedded dynamic params\n for (let index = depth; index < route.segments.length; index++) {\n const pathSegment = route.segments[index]\n\n if (pathSegment.type === 'static') {\n let value = pathSegment.name\n\n // For intercepted catch-all params, strip the marker from the first segment\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (\n interceptionPrefix &&\n index === depth &&\n interceptionPrefix === pathSegment.interceptionMarker\n ) {\n // Strip the interception marker from the value\n value = value.replace(pathSegment.interceptionMarker, '')\n }\n\n processedSegments.push(value)\n } else {\n // If the segment is a param placeholder, check if we have its value\n if (!params.hasOwnProperty(pathSegment.param.paramName)) {\n // If the segment is an optional catchall, we can break out of the\n // loop because it's optional!\n if (pathSegment.param.paramType === 'optional-catchall') {\n break\n }\n\n // Unknown param placeholder in pathname - can't derive full value\n return undefined\n }\n\n // If the segment matches a param, use the param value\n // We don't encode values here as that's handled during retrieval.\n const paramValue = params[pathSegment.param.paramName]\n if (Array.isArray(paramValue)) {\n processedSegments.push(...paramValue)\n } else {\n processedSegments.push(paramValue as string)\n }\n }\n }\n\n if (processedSegments.length > 0) {\n return processedSegments\n } else if (paramType === 'optional-catchall') {\n return undefined\n } else {\n // We shouldn't be able to match a catchall segment without any path\n // segments if it's not an optional catchall\n throw new InvariantError(\n `Unexpected empty path segments match for a route \"${route.pathname}\" with param \"${paramName}\" of type \"${paramType}\"`\n )\n }\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n // For regular dynamic parameters, take the segment at this depth\n if (depth < route.segments.length) {\n const pathSegment = route.segments[depth]\n\n // Check if the segment at this depth is a placeholder for an unknown param\n if (\n pathSegment.type === 'dynamic' &&\n !params.hasOwnProperty(pathSegment.param.paramName)\n ) {\n // The segment is a placeholder like [category] and we don't have the value\n return undefined\n }\n\n // If the segment matches a param, use the param value from params object\n // Otherwise it's a static segment, just use it directly\n // We don't encode values here as that's handled during retrieval\n return getParamValueFromSegment(pathSegment, params, paramType)\n }\n\n return undefined\n\n default:\n paramType satisfies never\n }\n}\n","import type { DynamicParam } from '../../../../server/app-render/app-render'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\nimport type { OpaqueFallbackRouteParams } from '../../../../server/request/fallback-params'\nimport type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypesShort } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport { parseLoaderTree } from './parse-loader-tree'\nimport { parseAppRoute, parseAppRouteSegment } from '../routes/app'\nimport { resolveParamValue } from './resolve-param-value'\n\n/**\n * Gets the value of a param from the params object. This correctly handles the\n * case where the param is a fallback route param and encodes the resulting\n * value.\n *\n * @param interpolatedParams - The params object.\n * @param segmentKey - The key of the segment.\n * @param fallbackRouteParams - The fallback route params.\n * @returns The value of the param.\n */\nfunction getParamValue(\n interpolatedParams: Params,\n segmentKey: string,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n) {\n let value = interpolatedParams[segmentKey]\n\n if (fallbackRouteParams?.has(segmentKey)) {\n // We know that the fallback route params has the segment key because we\n // checked that above.\n const [searchValue] = fallbackRouteParams.get(segmentKey)!\n value = searchValue\n } else if (Array.isArray(value)) {\n value = value.map((i) => encodeURIComponent(i))\n } else if (typeof value === 'string') {\n value = encodeURIComponent(value)\n }\n\n return value\n}\n\nexport function interpolateParallelRouteParams(\n loaderTree: LoaderTree,\n params: Params,\n pagePath: string,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n): Params {\n const interpolated = structuredClone(params)\n\n // Stack-based traversal with depth tracking\n const stack: Array<{ tree: LoaderTree; depth: number }> = [\n { tree: loaderTree, depth: 0 },\n ]\n\n // Parse the route from the provided page path.\n const route = parseAppRoute(pagePath, true)\n\n while (stack.length > 0) {\n const { tree, depth } = stack.pop()!\n const { segment, parallelRoutes } = parseLoaderTree(tree)\n\n const appSegment = parseAppRouteSegment(segment)\n\n if (\n appSegment?.type === 'dynamic' &&\n !interpolated.hasOwnProperty(appSegment.param.paramName) &&\n // If the param is in the fallback route params, we don't need to\n // interpolate it because it's already marked as being unknown.\n !fallbackRouteParams?.has(appSegment.param.paramName)\n ) {\n const { paramName, paramType } = appSegment.param\n\n const paramValue = resolveParamValue(\n paramName,\n paramType,\n depth,\n route,\n interpolated\n )\n\n if (paramValue !== undefined) {\n interpolated[paramName] = paramValue\n } else if (paramType !== 'optional-catchall') {\n throw new InvariantError(\n `Could not resolve param value for segment: ${paramName}`\n )\n }\n }\n\n // Calculate next depth - increment if this is not a route group and not empty\n let nextDepth = depth\n if (\n appSegment &&\n appSegment.type !== 'route-group' &&\n appSegment.type !== 'parallel-route'\n ) {\n nextDepth++\n }\n\n // Add all parallel routes to the stack for processing\n for (const parallelRoute of Object.values(parallelRoutes)) {\n stack.push({ tree: parallelRoute, depth: nextDepth })\n }\n }\n\n return interpolated\n}\n\n/**\n *\n * Shared logic on client and server for creating a dynamic param value.\n *\n * This code needs to be shared with the client so it can extract dynamic route\n * params from the URL without a server request.\n *\n * Because everything in this module is sent to the client, we should aim to\n * keep this code as simple as possible. The special case handling for catchall\n * and optional is, alas, unfortunate.\n */\nexport function getDynamicParam(\n interpolatedParams: Params,\n segmentKey: string,\n dynamicParamType: DynamicParamTypesShort,\n fallbackRouteParams: OpaqueFallbackRouteParams | null,\n staticSiblings: readonly string[] | null\n): DynamicParam {\n let value: string | string[] | undefined = getParamValue(\n interpolatedParams,\n segmentKey,\n fallbackRouteParams\n )\n\n // handle the case where an optional catchall does not have a value,\n // e.g. `/dashboard/[[...slug]]` when requesting `/dashboard`\n if (!value || value.length === 0) {\n if (dynamicParamType === 'oc') {\n return {\n param: segmentKey,\n value: null,\n type: dynamicParamType,\n treeSegment: [segmentKey, '', dynamicParamType, staticSiblings],\n }\n }\n\n throw new InvariantError(\n `Missing value for segment key: \"${segmentKey}\" with dynamic param type: ${dynamicParamType}`\n )\n }\n\n const paramCacheKey = Array.isArray(value) ? value.join('/') : value\n\n return {\n param: segmentKey,\n // The value that is passed to user code.\n value,\n // The value that is rendered in the router tree.\n // TODO: If the number of static siblings exceeds some threshold (e.g.,\n // dozens or hundreds), consider sending a Bloom filter instead of the full\n // array to reduce payload size. The client would then use the Bloom filter\n // to check membership with a small false positive rate.\n treeSegment: [segmentKey, paramCacheKey, dynamicParamType, staticSiblings],\n type: dynamicParamType,\n }\n}\n\n/**\n * Regular expression pattern used to match route parameters.\n * Matches both single parameters and parameter groups.\n * Examples:\n * - `[[...slug]]` matches parameter group with key 'slug', repeat: true, optional: true\n * - `[...slug]` matches parameter group with key 'slug', repeat: true, optional: false\n * - `[[foo]]` matches parameter with key 'foo', repeat: false, optional: true\n * - `[bar]` matches parameter with key 'bar', repeat: false, optional: false\n */\nexport const PARAMETER_PATTERN = /^([^[]*)\\[((?:\\[[^\\]]*\\])|[^\\]]+)\\](.*)$/\n\n/**\n * Parses a given parameter from a route to a data structure that can be used\n * to generate the parametrized route.\n * Examples:\n * - `[[...slug]]` -> `{ key: 'slug', repeat: true, optional: true }`\n * - `[...slug]` -> `{ key: 'slug', repeat: true, optional: false }`\n * - `[[foo]]` -> `{ key: 'foo', repeat: false, optional: true }`\n * - `[bar]` -> `{ key: 'bar', repeat: false, optional: false }`\n * - `fizz` -> `{ key: 'fizz', repeat: false, optional: false }`\n * @param param - The parameter to parse.\n * @returns The parsed parameter as a data structure.\n */\nexport function parseParameter(param: string) {\n const match = param.match(PARAMETER_PATTERN)\n\n if (!match) {\n return parseMatchedParameter(param)\n }\n\n return parseMatchedParameter(match[2])\n}\n\n/**\n * Parses a matched parameter from the PARAMETER_PATTERN regex to a data structure that can be used\n * to generate the parametrized route.\n * Examples:\n * - `[...slug]` -> `{ key: 'slug', repeat: true, optional: true }`\n * - `...slug` -> `{ key: 'slug', repeat: true, optional: false }`\n * - `[foo]` -> `{ key: 'foo', repeat: false, optional: true }`\n * - `bar` -> `{ key: 'bar', repeat: false, optional: false }`\n * @param param - The matched parameter to parse.\n * @returns The parsed parameter as a data structure.\n */\nexport function parseMatchedParameter(param: string) {\n const optional = param.startsWith('[') && param.endsWith(']')\n if (optional) {\n param = param.slice(1, -1)\n }\n const repeat = param.startsWith('...')\n if (repeat) {\n param = param.slice(3)\n }\n return { key: param, repeat, optional }\n}\n","import {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../../../lib/constants'\nimport { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport { escapeStringRegexp } from '../../escape-regexp'\nimport { removeTrailingSlash } from './remove-trailing-slash'\nimport { PARAMETER_PATTERN, parseMatchedParameter } from './get-dynamic-param'\n\nexport interface Group {\n pos: number\n repeat: boolean\n optional: boolean\n}\n\nexport interface RouteRegex {\n groups: { [groupName: string]: Group }\n re: RegExp\n}\n\nexport type RegexReference = {\n names: Record\n intercepted: Record\n}\n\ntype GetNamedRouteRegexOptions = {\n /**\n * Whether to prefix the route keys with the NEXT_INTERCEPTION_MARKER_PREFIX\n * or NEXT_QUERY_PARAM_PREFIX. This is only relevant when creating the\n * routes-manifest during the build.\n */\n prefixRouteKeys: boolean\n\n /**\n * Whether to include the suffix in the route regex. This means that when you\n * have something like `/[...slug].json` the `.json` part will be included\n * in the regex, yielding `/(.*).json` as the regex.\n */\n includeSuffix?: boolean\n\n /**\n * Whether to include the prefix in the route regex. This means that when you\n * have something like `/[...slug].json` the `/` part will be included\n * in the regex, yielding `^/(.*).json$` as the regex.\n *\n * Note that interception markers will already be included without the need\n */\n includePrefix?: boolean\n\n /**\n * Whether to exclude the optional trailing slash from the route regex.\n */\n excludeOptionalTrailingSlash?: boolean\n\n /**\n * Whether to backtrack duplicate keys. This is only relevant when creating\n * the routes-manifest during the build.\n */\n backreferenceDuplicateKeys?: boolean\n\n /**\n * If provided, this will be used as the reference for the dynamic parameter\n * keys instead of generating them in context. This is currently only used for\n * interception routes.\n */\n reference?: RegexReference\n}\n\ntype GetRouteRegexOptions = {\n /**\n * Whether to include extra parts in the route regex. This means that when you\n * have something like `/[...slug].json` the `.json` part will be included\n * in the regex, yielding `/(.*).json` as the regex.\n */\n includeSuffix?: boolean\n\n /**\n * Whether to include the prefix in the route regex. This means that when you\n * have something like `/[...slug].json` the `/` part will be included\n * in the regex, yielding `^/(.*).json$` as the regex.\n *\n * Note that interception markers will already be included without the need\n * of adding this option.\n */\n includePrefix?: boolean\n\n /**\n * Whether to exclude the optional trailing slash from the route regex.\n */\n excludeOptionalTrailingSlash?: boolean\n}\n\nfunction getParametrizedRoute(\n route: string,\n includeSuffix: boolean,\n includePrefix: boolean\n) {\n const groups: { [groupName: string]: Group } = {}\n let groupIndex = 1\n\n const segments: string[] = []\n for (const segment of removeTrailingSlash(route).slice(1).split('/')) {\n const markerMatch = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n const paramMatches = segment.match(PARAMETER_PATTERN) // Check for parameters\n\n if (markerMatch && paramMatches && paramMatches[2]) {\n const { key, optional, repeat } = parseMatchedParameter(paramMatches[2])\n groups[key] = { pos: groupIndex++, repeat, optional }\n segments.push(`/${escapeStringRegexp(markerMatch)}([^/]+?)`)\n } else if (paramMatches && paramMatches[2]) {\n const { key, repeat, optional } = parseMatchedParameter(paramMatches[2])\n groups[key] = { pos: groupIndex++, repeat, optional }\n\n if (includePrefix && paramMatches[1]) {\n segments.push(`/${escapeStringRegexp(paramMatches[1])}`)\n }\n\n let s = repeat ? (optional ? '(?:/(.+?))?' : '/(.+?)') : '/([^/]+?)'\n\n // Remove the leading slash if includePrefix already added it.\n if (includePrefix && paramMatches[1]) {\n s = s.substring(1)\n }\n\n segments.push(s)\n } else {\n segments.push(`/${escapeStringRegexp(segment)}`)\n }\n\n // If there's a suffix, add it to the segments if it's enabled.\n if (includeSuffix && paramMatches && paramMatches[3]) {\n segments.push(escapeStringRegexp(paramMatches[3]))\n }\n }\n\n return {\n parameterizedRoute: segments.join(''),\n groups,\n }\n}\n\n/**\n * From a normalized route this function generates a regular expression and\n * a corresponding groups object intended to be used to store matching groups\n * from the regular expression.\n */\nexport function getRouteRegex(\n normalizedRoute: string,\n {\n includeSuffix = false,\n includePrefix = false,\n excludeOptionalTrailingSlash = false,\n }: GetRouteRegexOptions = {}\n): RouteRegex {\n const { parameterizedRoute, groups } = getParametrizedRoute(\n normalizedRoute,\n includeSuffix,\n includePrefix\n )\n\n let re = parameterizedRoute\n if (!excludeOptionalTrailingSlash) {\n re += '(?:/)?'\n }\n\n return {\n re: new RegExp(`^${re}$`),\n groups: groups,\n }\n}\n\n/**\n * Builds a function to generate a minimal routeKey using only a-z and minimal\n * number of characters.\n */\nfunction buildGetSafeRouteKey() {\n let i = 0\n\n return () => {\n let routeKey = ''\n let j = ++i\n while (j > 0) {\n routeKey += String.fromCharCode(97 + ((j - 1) % 26))\n j = Math.floor((j - 1) / 26)\n }\n return routeKey\n }\n}\n\nfunction getSafeKeyFromSegment({\n interceptionMarker,\n getSafeRouteKey,\n segment,\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n}: {\n interceptionMarker?: string\n getSafeRouteKey: () => string\n segment: string\n routeKeys: Record\n keyPrefix?: string\n backreferenceDuplicateKeys: boolean\n}) {\n const { key, optional, repeat } = parseMatchedParameter(segment)\n\n // replace any non-word characters since they can break\n // the named regex\n let cleanedKey = key.replace(/\\W/g, '')\n\n if (keyPrefix) {\n cleanedKey = `${keyPrefix}${cleanedKey}`\n }\n let invalidKey = false\n\n // check if the key is still invalid and fallback to using a known\n // safe key\n if (cleanedKey.length === 0 || cleanedKey.length > 30) {\n invalidKey = true\n }\n if (!isNaN(parseInt(cleanedKey.slice(0, 1)))) {\n invalidKey = true\n }\n\n if (invalidKey) {\n cleanedKey = getSafeRouteKey()\n }\n\n const duplicateKey = cleanedKey in routeKeys\n\n if (keyPrefix) {\n routeKeys[cleanedKey] = `${keyPrefix}${key}`\n } else {\n routeKeys[cleanedKey] = key\n }\n\n // if the segment has an interception marker, make sure that's part of the regex pattern\n // this is to ensure that the route with the interception marker doesn't incorrectly match\n // the non-intercepted route (ie /app/(.)[username] should not match /app/[username])\n const interceptionPrefix = interceptionMarker\n ? escapeStringRegexp(interceptionMarker)\n : ''\n\n let pattern: string\n if (duplicateKey && backreferenceDuplicateKeys) {\n // Use a backreference to the key to ensure that the key is the same value\n // in each of the placeholders.\n pattern = `\\\\k<${cleanedKey}>`\n } else if (repeat) {\n pattern = `(?<${cleanedKey}>.+?)`\n } else {\n pattern = `(?<${cleanedKey}>[^/]+?)`\n }\n\n return {\n key,\n pattern: optional\n ? `(?:/${interceptionPrefix}${pattern})?`\n : `/${interceptionPrefix}${pattern}`,\n cleanedKey: cleanedKey,\n optional,\n repeat,\n }\n}\n\nfunction getNamedParametrizedRoute(\n route: string,\n prefixRouteKeys: boolean,\n includeSuffix: boolean,\n includePrefix: boolean,\n backreferenceDuplicateKeys: boolean,\n reference: RegexReference = { names: {}, intercepted: {} }\n) {\n const getSafeRouteKey = buildGetSafeRouteKey()\n const routeKeys: { [named: string]: string } = {}\n\n const segments: string[] = []\n const inverseParts: string[] = []\n\n // Ensure we don't mutate the original reference object.\n reference = structuredClone(reference)\n\n for (const segment of removeTrailingSlash(route).slice(1).split('/')) {\n const hasInterceptionMarker = INTERCEPTION_ROUTE_MARKERS.some((m) =>\n segment.startsWith(m)\n )\n\n const paramMatches = segment.match(PARAMETER_PATTERN) // Check for parameters\n\n const interceptionMarker = hasInterceptionMarker\n ? paramMatches?.[1]\n : undefined\n\n let keyPrefix: string | undefined\n if (interceptionMarker && paramMatches?.[2]) {\n keyPrefix = prefixRouteKeys ? NEXT_INTERCEPTION_MARKER_PREFIX : undefined\n reference.intercepted[paramMatches[2]] = interceptionMarker\n } else if (paramMatches?.[2] && reference.intercepted[paramMatches[2]]) {\n keyPrefix = prefixRouteKeys ? NEXT_INTERCEPTION_MARKER_PREFIX : undefined\n } else {\n keyPrefix = prefixRouteKeys ? NEXT_QUERY_PARAM_PREFIX : undefined\n }\n\n if (interceptionMarker && paramMatches && paramMatches[2]) {\n // If there's an interception marker, add it to the segments.\n const { key, pattern, cleanedKey, repeat, optional } =\n getSafeKeyFromSegment({\n getSafeRouteKey,\n interceptionMarker,\n segment: paramMatches[2],\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n })\n\n segments.push(pattern)\n inverseParts.push(\n `/${paramMatches[1]}:${reference.names[key] ?? cleanedKey}${repeat ? (optional ? '*' : '+') : ''}`\n )\n reference.names[key] ??= cleanedKey\n } else if (paramMatches && paramMatches[2]) {\n // If there's a prefix, add it to the segments if it's enabled.\n if (includePrefix && paramMatches[1]) {\n segments.push(`/${escapeStringRegexp(paramMatches[1])}`)\n inverseParts.push(`/${paramMatches[1]}`)\n }\n\n const { key, pattern, cleanedKey, repeat, optional } =\n getSafeKeyFromSegment({\n getSafeRouteKey,\n segment: paramMatches[2],\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n })\n\n // Remove the leading slash if includePrefix already added it.\n let s = pattern\n if (includePrefix && paramMatches[1]) {\n s = s.substring(1)\n }\n\n segments.push(s)\n inverseParts.push(\n `/:${reference.names[key] ?? cleanedKey}${repeat ? (optional ? '*' : '+') : ''}`\n )\n reference.names[key] ??= cleanedKey\n } else {\n segments.push(`/${escapeStringRegexp(segment)}`)\n inverseParts.push(`/${segment}`)\n }\n\n // If there's a suffix, add it to the segments if it's enabled.\n if (includeSuffix && paramMatches && paramMatches[3]) {\n segments.push(escapeStringRegexp(paramMatches[3]))\n inverseParts.push(paramMatches[3])\n }\n }\n\n return {\n namedParameterizedRoute: segments.join(''),\n routeKeys,\n pathToRegexpPattern: inverseParts.join(''),\n reference,\n }\n}\n\n/**\n * This function extends `getRouteRegex` generating also a named regexp where\n * each group is named along with a routeKeys object that indexes the assigned\n * named group with its corresponding key. When the routeKeys need to be\n * prefixed to uniquely identify internally the \"prefixRouteKey\" arg should\n * be \"true\" currently this is only the case when creating the routes-manifest\n * during the build\n */\nexport function getNamedRouteRegex(\n normalizedRoute: string,\n options: GetNamedRouteRegexOptions\n) {\n const result = getNamedParametrizedRoute(\n normalizedRoute,\n options.prefixRouteKeys,\n options.includeSuffix ?? false,\n options.includePrefix ?? false,\n options.backreferenceDuplicateKeys ?? false,\n options.reference\n )\n\n let namedRegex = result.namedParameterizedRoute\n if (!options.excludeOptionalTrailingSlash) {\n namedRegex += '(?:/)?'\n }\n\n return {\n ...getRouteRegex(normalizedRoute, options),\n namedRegex: `^${namedRegex}$`,\n routeKeys: result.routeKeys,\n pathToRegexpPattern: result.pathToRegexpPattern,\n reference: result.reference,\n }\n}\n\n/**\n * Generates a named regexp.\n * This is intended to be using for build time only.\n */\nexport function getNamedMiddlewareRegex(\n normalizedRoute: string,\n options: {\n catchAll?: boolean\n }\n) {\n const { parameterizedRoute } = getParametrizedRoute(\n normalizedRoute,\n false,\n false\n )\n const { catchAll = true } = options\n if (parameterizedRoute === '/') {\n let catchAllRegex = catchAll ? '.*' : ''\n return {\n namedRegex: `^/${catchAllRegex}$`,\n }\n }\n\n const { namedParameterizedRoute } = getNamedParametrizedRoute(\n normalizedRoute,\n false,\n false,\n false,\n false,\n undefined\n )\n let catchAllGroupedRegex = catchAll ? '(?:(/.*)?)' : ''\n return {\n namedRegex: `^${namedParameterizedRoute}${catchAllGroupedRegex}$`,\n }\n}\n","import type { HtmlProps } from './html-context.shared-runtime'\nimport type { ComponentType, JSX } from 'react'\nimport type { DomainLocale } from '../../server/config'\nimport type { Env } from '@next/env'\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type { NextRouter } from './router/router'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { PreviewData } from '../../types'\nimport type { COMPILER_NAMES } from './constants'\nimport type fs from 'fs'\n\nexport type NextComponentType<\n Context extends BaseContext = NextPageContext,\n InitialProps = {},\n Props = {},\n> = ComponentType & {\n /**\n * Used for initial page load data population. Data returned from `getInitialProps` is serialized when server rendered.\n * Make sure to return plain `Object` without using `Date`, `Map`, `Set`.\n * @param context Context of `page`\n */\n getInitialProps?(context: Context): InitialProps | Promise\n}\n\nexport type DocumentType = NextComponentType<\n DocumentContext,\n DocumentInitialProps,\n DocumentProps\n>\n\nexport type AppType

= NextComponentType<\n AppContextType,\n P,\n AppPropsType\n>\n\nexport type AppTreeType = ComponentType<\n AppInitialProps & { [name: string]: any }\n>\n\n/**\n * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team.\n * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting\n */\nexport const WEB_VITALS = ['CLS', 'FCP', 'FID', 'INP', 'LCP', 'TTFB'] as const\nexport type NextWebVitalsMetric = {\n id: string\n startTime: number\n value: number\n attribution?: { [key: string]: unknown }\n} & (\n | {\n label: 'web-vital'\n name: (typeof WEB_VITALS)[number]\n }\n | {\n label: 'custom'\n name:\n | 'Next.js-hydration'\n | 'Next.js-route-change-to-render'\n | 'Next.js-render'\n }\n)\n\nexport type Enhancer = (Component: C) => C\n\nexport type ComponentsEnhancer =\n | {\n enhanceApp?: Enhancer\n enhanceComponent?: Enhancer\n }\n | Enhancer\n\nexport type RenderPageResult = {\n html: string\n head?: Array\n}\n\nexport type RenderPage = (\n options?: ComponentsEnhancer\n) => DocumentInitialProps | Promise\n\nexport type BaseContext = {\n res?: ServerResponse\n [k: string]: any\n}\n\nexport type NEXT_DATA = {\n props: Record\n page: string\n query: ParsedUrlQuery\n buildId: string\n assetPrefix?: string\n nextExport?: boolean\n autoExport?: boolean\n isFallback?: boolean\n isExperimentalCompile?: boolean\n dynamicIds?: (string | number)[]\n err?: Error & {\n statusCode?: number\n source?: typeof COMPILER_NAMES.server | typeof COMPILER_NAMES.edgeServer\n }\n gsp?: boolean\n gssp?: boolean\n customServer?: boolean\n gip?: boolean\n appGip?: boolean\n locale?: string\n locales?: readonly string[]\n defaultLocale?: string\n domainLocales?: readonly DomainLocale[]\n scriptLoader?: any[]\n isPreview?: boolean\n notFoundSrcPage?: string\n}\n\n/**\n * `Next` context\n */\nexport interface NextPageContext {\n /**\n * Error object if encountered during rendering\n */\n err?: (Error & { statusCode?: number }) | null\n /**\n * `HTTP` request object.\n */\n req?: IncomingMessage\n /**\n * `HTTP` response object.\n */\n res?: ServerResponse\n /**\n * Path section of `URL`.\n */\n pathname: string\n /**\n * Query string section of `URL` parsed as an object.\n */\n query: ParsedUrlQuery\n /**\n * `String` of the actual path including query.\n */\n asPath?: string\n /**\n * The currently active locale\n */\n locale?: string\n /**\n * All configured locales\n */\n locales?: readonly string[]\n /**\n * The configured default locale\n */\n defaultLocale?: string\n /**\n * `Component` the tree of the App to use if needing to render separately\n */\n AppTree: AppTreeType\n}\n\nexport type AppContextType = {\n Component: NextComponentType\n AppTree: AppTreeType\n ctx: NextPageContext\n router: Router\n}\n\nexport type AppInitialProps = {\n pageProps: PageProps\n}\n\nexport type AppPropsType<\n Router extends NextRouter = NextRouter,\n PageProps = {},\n> = AppInitialProps & {\n Component: NextComponentType\n router: Router\n __N_SSG?: boolean\n __N_SSP?: boolean\n}\n\nexport type DocumentContext = NextPageContext & {\n renderPage: RenderPage\n defaultGetInitialProps(\n ctx: DocumentContext,\n options?: { nonce?: string }\n ): Promise\n}\n\nexport type DocumentInitialProps = RenderPageResult & {\n styles?: React.ReactElement[] | Iterable | JSX.Element\n}\n\nexport type DocumentProps = DocumentInitialProps & HtmlProps\n\n/**\n * Next `API` route request\n */\nexport interface NextApiRequest extends IncomingMessage {\n /**\n * Object of `query` values from url\n */\n query: Partial<{\n [key: string]: string | string[]\n }>\n /**\n * Object of `cookies` from header\n */\n cookies: Partial<{\n [key: string]: string\n }>\n\n body: any\n\n env: Env\n\n draftMode?: boolean\n\n preview?: boolean\n /**\n * Preview data set on the request, if any\n * */\n previewData?: PreviewData\n}\n\n/**\n * Send body of response\n */\ntype Send = (body: T) => void\n\n/**\n * Next `API` route response\n */\nexport type NextApiResponse = ServerResponse & {\n /**\n * Send data `any` data in response\n */\n send: Send\n /**\n * Send data `json` data in response\n */\n json: Send\n status: (statusCode: number) => NextApiResponse\n redirect(url: string): NextApiResponse\n redirect(status: number, url: string): NextApiResponse\n\n /**\n * Set draft mode\n */\n setDraftMode: (options: { enable: boolean }) => NextApiResponse\n\n /**\n * Set preview data for Next.js' prerender mode\n */\n setPreviewData: (\n data: object | string,\n options?: {\n /**\n * Specifies the number (in seconds) for the preview session to last for.\n * The given number will be converted to an integer by rounding down.\n * By default, no maximum age is set and the preview session finishes\n * when the client shuts down (browser is closed).\n */\n maxAge?: number\n /**\n * Specifies the path for the preview session to work under. By default,\n * the path is considered the \"default path\", i.e., any pages under \"/\".\n */\n path?: string\n }\n ) => NextApiResponse\n\n /**\n * Clear preview data for Next.js' prerender mode\n */\n clearPreviewData: (options?: { path?: string }) => NextApiResponse\n\n /**\n * Revalidate a specific page and regenerate it using On-Demand Incremental\n * Static Regeneration.\n * The path should be an actual path, not a rewritten path. E.g. for\n * \"/blog/[slug]\" this should be \"/blog/post-1\".\n * @link https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration#on-demand-revalidation-with-revalidatepath\n */\n revalidate: (\n urlPath: string,\n opts?: {\n unstable_onlyGenerated?: boolean\n }\n ) => Promise\n}\n\n/**\n * Next `API` route handler\n */\nexport type NextApiHandler = (\n req: NextApiRequest,\n res: NextApiResponse\n) => unknown | Promise\n\n/**\n * Utils\n */\nexport function execOnce ReturnType>(\n fn: T\n): T {\n let used = false\n let result: ReturnType\n\n return ((...args: any[]) => {\n if (!used) {\n used = true\n result = fn(...args)\n }\n return result\n }) as T\n}\n\n// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1\n// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\nconst ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\\d+\\-.]*?:/\nexport const isAbsoluteUrl = (url: string) => ABSOLUTE_URL_REGEX.test(url)\n\nexport function getLocationOrigin() {\n const { protocol, hostname, port } = window.location\n return `${protocol}//${hostname}${port ? ':' + port : ''}`\n}\n\nexport function getURL() {\n const { href } = window.location\n const origin = getLocationOrigin()\n return href.substring(origin.length)\n}\n\nexport function getDisplayName

(Component: ComponentType

) {\n return typeof Component === 'string'\n ? Component\n : Component.displayName || Component.name || 'Unknown'\n}\n\nexport function isResSent(res: ServerResponse) {\n return res.finished || res.headersSent\n}\n\nexport function normalizeRepeatedSlashes(url: string) {\n const urlParts = url.split('?')\n const urlNoQuery = urlParts[0]\n\n return (\n urlNoQuery\n // first we replace any non-encoded backslashes with forward\n // then normalize repeated forward slashes\n .replace(/\\\\/g, '/')\n .replace(/\\/\\/+/g, '/') +\n (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : '')\n )\n}\n\nexport async function loadGetInitialProps<\n C extends BaseContext,\n IP = {},\n P = {},\n>(App: NextComponentType, ctx: C): Promise {\n if (process.env.NODE_ENV !== 'production') {\n if (App.prototype?.getInitialProps) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`\n throw new Error(message)\n }\n }\n // when called from _app `ctx` is nested in `ctx`\n const res = ctx.res || (ctx.ctx && ctx.ctx.res)\n\n if (!App.getInitialProps) {\n if (ctx.ctx && ctx.Component) {\n // @ts-ignore pageProps default\n return {\n pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx),\n }\n }\n return {} as IP\n }\n\n const props = await App.getInitialProps(ctx)\n\n if (res && isResSent(res)) {\n return props\n }\n\n if (!props) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" should resolve to an object. But found \"${props}\" instead.`\n throw new Error(message)\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (Object.keys(props).length === 0 && !ctx.ctx) {\n console.warn(\n `${getDisplayName(\n App\n )} returned an empty object from \\`getInitialProps\\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`\n )\n }\n }\n\n return props\n}\n\nexport const SP = typeof performance !== 'undefined'\nexport const ST =\n SP &&\n (['mark', 'measure', 'getEntriesByName'] as const).every(\n (method) => typeof performance[method] === 'function'\n )\n\nexport class DecodeError extends Error {}\nexport class NormalizeError extends Error {}\nexport class PageNotFoundError extends Error {\n code: string\n\n constructor(page: string) {\n super()\n this.code = 'ENOENT'\n this.name = 'PageNotFoundError'\n this.message = `Cannot find module for page: ${page}`\n }\n}\n\nexport class MissingStaticPage extends Error {\n constructor(page: string, message: string) {\n super()\n this.message = `Failed to load static file for page: ${page} ${message}`\n }\n}\n\nexport class MiddlewareNotFoundError extends Error {\n code: string\n constructor() {\n super()\n this.code = 'ENOENT'\n this.message = `Cannot find the middleware module`\n }\n}\n\nexport interface CacheFs {\n existsSync: typeof fs.existsSync\n readFile: typeof fs.promises.readFile\n readFileSync: typeof fs.readFileSync\n writeFile(f: string, d: any): Promise\n mkdir(dir: string): Promise\n stat(f: string): Promise<{ mtime: Date }>\n}\n\nexport function stringifyError(error: Error) {\n return JSON.stringify({ message: error.message, stack: error.stack })\n}\n","import type { Token } from 'next/dist/compiled/path-to-regexp'\n\n/**\n * Route pattern normalization utilities for path-to-regexp compatibility.\n *\n * path-to-regexp 6.3.0+ introduced stricter validation that rejects certain\n * patterns commonly used in Next.js interception routes. This module provides\n * normalization functions to make Next.js route patterns compatible with the\n * updated library while preserving all functionality.\n */\n\n/**\n * Internal separator used to normalize adjacent parameter patterns.\n * This unique marker is inserted between adjacent parameters and stripped out\n * during parameter extraction to avoid conflicts with real URL content.\n */\nexport const PARAM_SEPARATOR = '_NEXTSEP_'\n\n/**\n * Detects if a route pattern needs normalization for path-to-regexp compatibility.\n */\nexport function hasAdjacentParameterIssues(route: string): boolean {\n if (typeof route !== 'string') return false\n\n // Check for interception route markers followed immediately by parameters\n // Pattern: /(.):param, /(..):param, /(...):param, /(.)(.):param etc.\n // These patterns cause \"Must have text between two parameters\" errors\n if (/\\/\\(\\.{1,3}\\):[^/\\s]+/.test(route)) {\n return true\n }\n\n // Check for basic adjacent parameters without separators\n // Pattern: :param1:param2 (but not :param* or other URL patterns)\n if (/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(route)) {\n return true\n }\n\n return false\n}\n\n/**\n * Normalizes route patterns that have adjacent parameters without text between them.\n * Inserts a unique separator that can be safely stripped out later.\n */\nexport function normalizeAdjacentParameters(route: string): string {\n let normalized = route\n\n // Handle interception route patterns: (.):param -> (.)_NEXTSEP_:param\n normalized = normalized.replace(\n /(\\([^)]*\\)):([^/\\s]+)/g,\n `$1${PARAM_SEPARATOR}:$2`\n )\n\n // Handle other adjacent parameter patterns: :param1:param2 -> :param1_NEXTSEP_:param2\n normalized = normalized.replace(/:([^:/\\s)]+)(?=:)/g, `:$1${PARAM_SEPARATOR}`)\n\n return normalized\n}\n\n/**\n * Normalizes tokens that have repeating modifiers (* or +) but empty prefix and suffix.\n *\n * path-to-regexp 6.3.0+ introduced validation that throws:\n * \"Can not repeat without prefix/suffix\"\n *\n * This occurs when a token has modifier: '*' or '+' with both prefix: '' and suffix: ''\n */\nexport function normalizeTokensForRegexp(tokens: Token[]): Token[] {\n return tokens.map((token) => {\n // Token union type: Token = string | TokenObject\n // Literal path segments are strings, parameters/wildcards are objects\n if (\n typeof token === 'object' &&\n token !== null &&\n // Not all token objects have 'modifier' property (e.g., simple text tokens)\n 'modifier' in token &&\n // Only repeating modifiers (* or +) cause the validation error\n // Other modifiers like '?' (optional) are fine\n (token.modifier === '*' || token.modifier === '+') &&\n // Token objects can have different shapes depending on route pattern\n 'prefix' in token &&\n 'suffix' in token &&\n // Both prefix and suffix must be empty strings\n // This is what causes the validation error in path-to-regexp\n token.prefix === '' &&\n token.suffix === ''\n ) {\n // Add minimal prefix to satisfy path-to-regexp validation\n // We use '/' as it's the most common path delimiter and won't break route matching\n // The prefix gets used in regex generation but doesn't affect parameter extraction\n return {\n ...token,\n prefix: '/',\n }\n }\n return token\n })\n}\n\n/**\n * Strips normalization separators from compiled pathname.\n * This removes separators that were inserted by normalizeAdjacentParameters\n * to satisfy path-to-regexp validation.\n *\n * Only removes separators in the specific contexts where they were inserted:\n * - After interception route markers: (.)_NEXTSEP_ -> (.)\n *\n * This targeted approach ensures we don't accidentally remove the separator\n * from legitimate user content.\n */\nexport function stripNormalizedSeparators(pathname: string): string {\n // Remove separator after interception route markers\n // Pattern: (.)_NEXTSEP_ -> (.), (..)_NEXTSEP_ -> (..), etc.\n // The separator appears after the closing paren of interception markers\n return pathname.replace(new RegExp(`\\\\)${PARAM_SEPARATOR}`, 'g'), ')')\n}\n\n/**\n * Strips normalization separators from extracted route parameters.\n * Used by both server and client code to clean up parameters after route matching.\n */\nexport function stripParameterSeparators(\n params: Record\n): Record {\n const cleaned: Record = {}\n\n for (const [key, value] of Object.entries(params)) {\n if (typeof value === 'string') {\n // Remove the separator if it appears at the start of parameter values\n cleaned[key] = value.replace(new RegExp(`^${PARAM_SEPARATOR}`), '')\n } else if (Array.isArray(value)) {\n // Handle array parameters (from repeated route segments)\n cleaned[key] = value.map((item) =>\n typeof item === 'string'\n ? item.replace(new RegExp(`^${PARAM_SEPARATOR}`), '')\n : item\n )\n } else {\n cleaned[key] = value\n }\n }\n\n return cleaned\n}\n","/**\n * Client-safe utilities for route matching that don't import server-side\n * utilities to avoid bundling issues with Turbopack\n */\n\nimport type {\n Key,\n TokensToRegexpOptions,\n ParseOptions,\n TokensToFunctionOptions,\n} from 'next/dist/compiled/path-to-regexp'\nimport {\n pathToRegexp,\n compile,\n regexpToFunction,\n} from 'next/dist/compiled/path-to-regexp'\nimport {\n hasAdjacentParameterIssues,\n normalizeAdjacentParameters,\n stripParameterSeparators,\n stripNormalizedSeparators,\n} from '../../../../lib/route-pattern-normalizer'\n\n/**\n * Client-safe wrapper around pathToRegexp that handles path-to-regexp 6.3.0+ validation errors.\n * This includes both \"Can not repeat without prefix/suffix\" and \"Must have text between parameters\" errors.\n */\nexport function safePathToRegexp(\n route: string | RegExp | Array,\n keys?: Key[],\n options?: TokensToRegexpOptions & ParseOptions\n): RegExp {\n if (typeof route !== 'string') {\n return pathToRegexp(route, keys, options)\n }\n\n // Check if normalization is needed and cache the result\n const needsNormalization = hasAdjacentParameterIssues(route)\n const routeToUse = needsNormalization\n ? normalizeAdjacentParameters(route)\n : route\n\n try {\n return pathToRegexp(routeToUse, keys, options)\n } catch (error) {\n // Only try normalization if we haven't already normalized\n if (!needsNormalization) {\n try {\n const normalizedRoute = normalizeAdjacentParameters(route)\n return pathToRegexp(normalizedRoute, keys, options)\n } catch (retryError) {\n // If that doesn't work, fall back to original error\n throw error\n }\n }\n throw error\n }\n}\n\n/**\n * Client-safe wrapper around compile that handles path-to-regexp 6.3.0+ validation errors.\n * No server-side error reporting to avoid bundling issues.\n * When normalization is applied, the returned compiler function automatically strips\n * the internal separator from the output URL.\n */\nexport function safeCompile(\n route: string,\n options?: TokensToFunctionOptions & ParseOptions\n) {\n // Check if normalization is needed and cache the result\n const needsNormalization = hasAdjacentParameterIssues(route)\n const routeToUse = needsNormalization\n ? normalizeAdjacentParameters(route)\n : route\n\n try {\n const compiler = compile(routeToUse, options)\n\n // If we normalized the route, wrap the compiler to strip separators from output\n // The normalization inserts _NEXTSEP_ as a literal string in the pattern to satisfy\n // path-to-regexp validation, but we don't want it in the final compiled URL\n if (needsNormalization) {\n return (params: any) => {\n return stripNormalizedSeparators(compiler(params))\n }\n }\n\n return compiler\n } catch (error) {\n // Only try normalization if we haven't already normalized\n if (!needsNormalization) {\n try {\n const normalizedRoute = normalizeAdjacentParameters(route)\n const compiler = compile(normalizedRoute, options)\n\n // Wrap the compiler to strip separators from output\n return (params: any) => {\n return stripNormalizedSeparators(compiler(params))\n }\n } catch (retryError) {\n // If that doesn't work, fall back to original error\n throw error\n }\n }\n throw error\n }\n}\n\n/**\n * Client-safe wrapper around regexpToFunction that automatically cleans parameters.\n */\nexport function safeRegexpToFunction<\n T extends Record = Record,\n>(regexp: RegExp, keys?: Key[]): (pathname: string) => { params: T } | false {\n const originalMatcher = regexpToFunction(regexp, keys || [])\n\n return (pathname: string) => {\n const result = originalMatcher(pathname)\n if (!result) return false\n\n // Clean parameters before returning\n return {\n ...result,\n params: stripParameterSeparators(result.params as any) as T,\n }\n }\n}\n\n/**\n * Safe wrapper for route matcher functions that automatically cleans parameters.\n * This is client-safe and doesn't import path-to-regexp.\n */\nexport function safeRouteMatcher>(\n matcherFn: (pathname: string) => false | T\n): (pathname: string) => false | T {\n return (pathname: string) => {\n const result = matcherFn(pathname)\n if (!result) return false\n\n // Clean parameters before returning\n return stripParameterSeparators(result) as T\n }\n}\n","import type { Group } from './route-regex'\nimport { DecodeError } from '../../utils'\nimport type { Params } from '../../../../server/request/params'\nimport { safeRouteMatcher } from './route-match-utils'\n\nexport interface RouteMatchFn {\n (pathname: string): false | Params\n}\n\ntype RouteMatcherOptions = {\n // We only use the exec method of the RegExp object. This helps us avoid using\n // type assertions that the passed in properties are of the correct type.\n re: Pick\n groups: Record\n}\n\nexport function getRouteMatcher({\n re,\n groups,\n}: RouteMatcherOptions): RouteMatchFn {\n const rawMatcher = (pathname: string) => {\n const routeMatch = re.exec(pathname)\n if (!routeMatch) return false\n\n const decode = (param: string) => {\n try {\n return decodeURIComponent(param)\n } catch {\n throw new DecodeError('failed to decode param')\n }\n }\n\n const params: Params = {}\n for (const [key, group] of Object.entries(groups)) {\n const match = routeMatch[group.pos]\n if (match !== undefined) {\n if (group.repeat) {\n params[key] = match.split('/').map((entry) => decode(entry))\n } else {\n params[key] = decode(match)\n }\n }\n }\n\n return params\n }\n\n // Wrap with safe matcher to handle parameter cleaning\n return safeRouteMatcher(rawMatcher)\n}\n","import type { ParsedUrlQuery } from 'querystring'\n\nexport function searchParamsToUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n const query: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n const existing = query[key]\n if (typeof existing === 'undefined') {\n query[key] = value\n } else if (Array.isArray(existing)) {\n existing.push(value)\n } else {\n query[key] = [existing, value]\n }\n }\n return query\n}\n\nfunction stringifyUrlQueryParam(param: unknown): string {\n if (typeof param === 'string') {\n return param\n }\n\n if (\n (typeof param === 'number' && !isNaN(param)) ||\n typeof param === 'boolean'\n ) {\n return String(param)\n } else {\n return ''\n }\n}\n\nexport function urlQueryToSearchParams(query: ParsedUrlQuery): URLSearchParams {\n const searchParams = new URLSearchParams()\n for (const [key, value] of Object.entries(query)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n searchParams.append(key, stringifyUrlQueryParam(item))\n }\n } else {\n searchParams.set(key, stringifyUrlQueryParam(value))\n }\n }\n return searchParams\n}\n\nexport function assign(\n target: URLSearchParams,\n ...searchParamsList: URLSearchParams[]\n): URLSearchParams {\n for (const searchParams of searchParamsList) {\n for (const key of searchParams.keys()) {\n target.delete(key)\n }\n\n for (const [key, value] of searchParams.entries()) {\n target.append(key, value)\n }\n }\n\n return target\n}\n","import type { ParsedUrlQuery } from 'querystring'\nimport { getLocationOrigin } from '../../utils'\nimport { searchParamsToUrlQuery } from './querystring'\n\nexport interface ParsedRelativeUrl {\n auth: string | null\n hash: string\n host: string | null\n hostname: string | null\n href: string\n pathname: string\n port: string | null\n protocol: string | null\n query: ParsedUrlQuery\n search: string\n slashes: null\n}\n\n/**\n * Parses path-relative urls (e.g. `/hello/world?foo=bar`). If url isn't path-relative\n * (e.g. `./hello`) then at least base must be.\n * Absolute urls are rejected with one exception, in the browser, absolute urls that are on\n * the current origin will be parsed as relative\n */\nexport function parseRelativeUrl(\n url: string,\n base?: string,\n parseQuery?: true\n): ParsedRelativeUrl\nexport function parseRelativeUrl(\n url: string,\n base: string | undefined,\n parseQuery: false\n): Omit\nexport function parseRelativeUrl(\n url: string,\n base?: string,\n parseQuery = true\n): ParsedRelativeUrl | Omit {\n const globalBase = new URL(\n typeof window === 'undefined' ? 'http://n' : getLocationOrigin()\n )\n\n const resolvedBase = base\n ? new URL(base, globalBase)\n : url.startsWith('.')\n ? new URL(\n typeof window === 'undefined' ? 'http://n' : window.location.href\n )\n : globalBase\n\n const { pathname, searchParams, search, hash, href, origin } = url.startsWith(\n '/'\n )\n ? // 'http://localhost:3000///' would be received as '///' in Node.js' IncomingMessage\n // See https://nodejs.org/api/http.html#messageurl\n // Not using `origin` to support other protocols\n new URL(`${resolvedBase.protocol}//${resolvedBase.host}${url}`)\n : new URL(url, resolvedBase)\n\n if (origin !== globalBase.origin) {\n throw new Error(`invariant: invalid relative URL, router received ${url}`)\n }\n\n return {\n auth: null,\n host: null,\n hostname: null,\n pathname,\n port: null,\n protocol: null,\n query: parseQuery ? searchParamsToUrlQuery(searchParams) : undefined,\n search,\n hash,\n href: href.slice(origin.length),\n // We don't know for relative URLs at this point since we set a custom, internal\n // base that isn't surfaced to users.\n slashes: null,\n }\n}\n","import type { ParsedUrlQuery } from 'querystring'\n\nimport { searchParamsToUrlQuery } from './querystring'\nimport { parseRelativeUrl } from './parse-relative-url'\n\nexport interface ParsedUrl {\n auth: string | null\n hash: string\n hostname: string | null\n href: string\n origin?: string | null\n pathname: string\n port: string | null\n protocol: string | null\n query: ParsedUrlQuery\n search: string\n slashes: boolean | null\n}\n\nexport function parseUrl(url: string): ParsedUrl {\n if (url.startsWith('/')) {\n return parseRelativeUrl(url)\n }\n\n const parsedURL = new URL(url)\n const username = parsedURL.username\n const password = parsedURL.password\n const auth = username\n ? password\n ? `${username}:${password}`\n : username\n : null\n const pathname = parsedURL.pathname\n const search = parsedURL.search\n return {\n auth,\n hash: parsedURL.hash,\n hostname: parsedURL.hostname,\n href: parsedURL.href,\n pathname,\n port: parsedURL.port,\n protocol: parsedURL.protocol,\n query: searchParamsToUrlQuery(parsedURL.searchParams),\n search,\n origin: parsedURL.origin,\n slashes:\n parsedURL.href.slice(\n parsedURL.protocol.length,\n parsedURL.protocol.length + 2\n ) === '//',\n }\n}\n","import type { NextApiRequestCookies } from '.'\n\n/**\n * Parse cookies from the `headers` of request\n * @param req request object\n */\n\nexport function getCookieParser(headers: {\n [key: string]: string | string[] | null | undefined\n}): () => NextApiRequestCookies {\n return function parseCookie(): NextApiRequestCookies {\n const { cookie } = headers\n\n if (!cookie) {\n return {}\n }\n\n const { parse: parseCookieFn } =\n require('next/dist/compiled/cookie') as typeof import('next/dist/compiled/cookie')\n return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie)\n }\n}\n","import type { IncomingMessage } from 'http'\nimport type { Key } from 'next/dist/compiled/path-to-regexp'\nimport type { NextParsedUrlQuery } from '../../../../server/request-meta'\nimport type { RouteHas } from '../../../../lib/load-custom-routes'\nimport type { BaseNextRequest } from '../../../../server/base-http'\n\nimport { escapeStringRegexp } from '../../escape-regexp'\nimport { parseUrl, type ParsedUrl } from './parse-url'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n isInterceptionRouteAppPath,\n} from './interception-routes'\nimport { getCookieParser } from '../../../../server/api-utils/get-cookie-parser'\nimport type { Params } from '../../../../server/request/params'\nimport { safePathToRegexp, safeCompile } from './route-match-utils'\n\n/**\n * Ensure only a-zA-Z are used for param names for proper interpolating\n * with path-to-regexp\n */\nfunction getSafeParamName(paramName: string) {\n let newParamName = ''\n\n for (let i = 0; i < paramName.length; i++) {\n const charCode = paramName.charCodeAt(i)\n\n if (\n (charCode > 64 && charCode < 91) || // A-Z\n (charCode > 96 && charCode < 123) // a-z\n ) {\n newParamName += paramName[i]\n }\n }\n return newParamName\n}\n\nfunction escapeSegment(str: string, segmentName: string) {\n return str.replace(\n new RegExp(`:${escapeStringRegexp(segmentName)}`, 'g'),\n `__ESC_COLON_${segmentName}`\n )\n}\n\nfunction unescapeSegments(str: string) {\n return str.replace(/__ESC_COLON_/gi, ':')\n}\n\nexport function matchHas(\n req: BaseNextRequest | IncomingMessage,\n query: Params,\n has: RouteHas[] = [],\n missing: RouteHas[] = []\n): false | Params {\n const params: Params = {}\n\n const hasMatch = (hasItem: RouteHas) => {\n let value\n let key = hasItem.key\n\n switch (hasItem.type) {\n case 'header': {\n key = key!.toLowerCase()\n value = req.headers[key] as string\n break\n }\n case 'cookie': {\n if ('cookies' in req) {\n value = req.cookies[hasItem.key]\n } else {\n const cookies = getCookieParser(req.headers)()\n value = cookies[hasItem.key]\n }\n\n break\n }\n case 'query': {\n value = query[key!]\n break\n }\n case 'host': {\n const { host } = req?.headers || {}\n // remove port from host if present\n const hostname = host?.split(':', 1)[0].toLowerCase()\n value = hostname\n break\n }\n default: {\n break\n }\n }\n\n if (!hasItem.value && value) {\n params[getSafeParamName(key!)] = value\n return true\n } else if (value) {\n const matcher = new RegExp(`^${hasItem.value}$`)\n const matches = Array.isArray(value)\n ? value.slice(-1)[0].match(matcher)\n : value.match(matcher)\n\n if (matches) {\n if (Array.isArray(matches)) {\n if (matches.groups) {\n Object.keys(matches.groups).forEach((groupKey) => {\n params[groupKey] = matches.groups![groupKey]\n })\n } else if (hasItem.type === 'host' && matches[0]) {\n params.host = matches[0]\n }\n }\n return true\n }\n }\n return false\n }\n\n const allMatch =\n has.every((item) => hasMatch(item)) &&\n !missing.some((item) => hasMatch(item))\n\n if (allMatch) {\n return params\n }\n return false\n}\n\nexport function compileNonPath(value: string, params: Params): string {\n if (!value.includes(':')) {\n return value\n }\n\n for (const key of Object.keys(params)) {\n if (value.includes(`:${key}`)) {\n value = value\n .replace(\n new RegExp(`:${key}\\\\*`, 'g'),\n `:${key}--ESCAPED_PARAM_ASTERISKS`\n )\n .replace(\n new RegExp(`:${key}\\\\?`, 'g'),\n `:${key}--ESCAPED_PARAM_QUESTION`\n )\n .replace(new RegExp(`:${key}\\\\+`, 'g'), `:${key}--ESCAPED_PARAM_PLUS`)\n .replace(\n new RegExp(`:${key}(?!\\\\w)`, 'g'),\n `--ESCAPED_PARAM_COLON${key}`\n )\n }\n }\n value = value\n .replace(/(:|\\*|\\?|\\+|\\(|\\)|\\{|\\})/g, '\\\\$1')\n .replace(/--ESCAPED_PARAM_PLUS/g, '+')\n .replace(/--ESCAPED_PARAM_COLON/g, ':')\n .replace(/--ESCAPED_PARAM_QUESTION/g, '?')\n .replace(/--ESCAPED_PARAM_ASTERISKS/g, '*')\n\n // the value needs to start with a forward-slash to be compiled\n // correctly\n return safeCompile(`/${value}`, { validate: false })(params).slice(1)\n}\n\nexport function parseDestination(args: {\n destination: string\n params: Readonly\n query: Readonly\n}): ParsedUrl {\n let escaped = args.destination\n for (const param of Object.keys({ ...args.params, ...args.query })) {\n if (!param) continue\n\n escaped = escapeSegment(escaped, param)\n }\n\n const parsed = parseUrl(escaped)\n\n let pathname = parsed.pathname\n if (pathname) {\n pathname = unescapeSegments(pathname)\n }\n\n let href = parsed.href\n if (href) {\n href = unescapeSegments(href)\n }\n\n let hostname = parsed.hostname\n if (hostname) {\n hostname = unescapeSegments(hostname)\n }\n\n let hash = parsed.hash\n if (hash) {\n hash = unescapeSegments(hash)\n }\n\n let search = parsed.search\n if (search) {\n search = unescapeSegments(search)\n }\n\n let origin = parsed.origin\n if (origin) {\n origin = unescapeSegments(origin)\n }\n\n return {\n ...parsed,\n pathname,\n hostname,\n href,\n hash,\n search,\n origin,\n }\n}\n\nexport function prepareDestination(args: {\n appendParamsToQuery: boolean\n destination: string\n params: Params\n query: NextParsedUrlQuery\n}) {\n const parsedDestination = parseDestination(args)\n\n const {\n hostname: destHostname,\n query: destQuery,\n search: destSearch,\n } = parsedDestination\n\n // The following code assumes that the pathname here includes the hash if it's\n // present.\n let destPath = parsedDestination.pathname\n if (parsedDestination.hash) {\n destPath = `${destPath}${parsedDestination.hash}`\n }\n\n const destParams: (string | number)[] = []\n\n const destPathParamKeys: Key[] = []\n safePathToRegexp(destPath, destPathParamKeys)\n for (const key of destPathParamKeys) {\n destParams.push(key.name)\n }\n\n if (destHostname) {\n const destHostnameParamKeys: Key[] = []\n safePathToRegexp(destHostname, destHostnameParamKeys)\n for (const key of destHostnameParamKeys) {\n destParams.push(key.name)\n }\n }\n\n const destPathCompiler = safeCompile(\n destPath,\n // we don't validate while compiling the destination since we should\n // have already validated before we got to this point and validating\n // breaks compiling destinations with named pattern params from the source\n // e.g. /something:hello(.*) -> /another/:hello is broken with validation\n // since compile validation is meant for reversing and not for inserting\n // params from a separate path-regex into another\n { validate: false }\n )\n\n let destHostnameCompiler\n if (destHostname) {\n destHostnameCompiler = safeCompile(destHostname, { validate: false })\n }\n\n // update any params in query values\n for (const [key, strOrArray] of Object.entries(destQuery)) {\n // the value needs to start with a forward-slash to be compiled\n // correctly\n if (Array.isArray(strOrArray)) {\n destQuery[key] = strOrArray.map((value) =>\n compileNonPath(unescapeSegments(value), args.params)\n )\n } else if (typeof strOrArray === 'string') {\n destQuery[key] = compileNonPath(unescapeSegments(strOrArray), args.params)\n }\n }\n\n // add path params to query if it's not a redirect and not\n // already defined in destination query or path\n let paramKeys = Object.keys(args.params).filter(\n (name) => name !== 'nextInternalLocale'\n )\n\n if (\n args.appendParamsToQuery &&\n !paramKeys.some((key) => destParams.includes(key))\n ) {\n for (const key of paramKeys) {\n if (!(key in destQuery)) {\n destQuery[key] = args.params[key]\n }\n }\n }\n\n let newUrl\n\n // The compiler also that the interception route marker is an unnamed param, hence '0',\n // so we need to add it to the params object.\n if (isInterceptionRouteAppPath(destPath)) {\n for (const segment of destPath.split('/')) {\n const marker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n if (marker) {\n if (marker === '(..)(..)') {\n args.params['0'] = '(..)'\n args.params['1'] = '(..)'\n } else {\n args.params['0'] = marker\n }\n break\n }\n }\n }\n\n try {\n newUrl = destPathCompiler(args.params)\n\n const [pathname, hash] = newUrl.split('#', 2)\n if (destHostnameCompiler) {\n parsedDestination.hostname = destHostnameCompiler(args.params)\n }\n parsedDestination.pathname = pathname\n parsedDestination.hash = `${hash ? '#' : ''}${hash || ''}`\n parsedDestination.search = destSearch\n ? compileNonPath(destSearch, args.params)\n : ''\n } catch (err: any) {\n if (err.message.match(/Expected .*? to not repeat, but got an array/)) {\n throw new Error(\n `To use a multi-match in the destination you must add \\`*\\` at the end of the param name to signify it should repeat. https://nextjs.org/docs/messages/invalid-multi-match`\n )\n }\n throw err\n }\n\n // Query merge order lowest priority to highest\n // 1. initial URL query values\n // 2. path segment values\n // 3. destination specified query values\n parsedDestination.query = {\n ...args.query,\n ...parsedDestination.query,\n }\n\n return {\n newUrl,\n destQuery,\n parsedDestination,\n }\n}\n","import type { OutgoingHttpHeaders } from 'http'\nimport {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../lib/constants'\n\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */\nexport function fromNodeOutgoingHttpHeaders(\n nodeHeaders: OutgoingHttpHeaders\n): Headers {\n const headers = new Headers()\n for (let [key, value] of Object.entries(nodeHeaders)) {\n const values = Array.isArray(value) ? value : [value]\n for (let v of values) {\n if (typeof v === 'undefined') continue\n if (typeof v === 'number') {\n v = v.toString()\n }\n\n headers.append(key, v)\n }\n }\n return headers\n}\n\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/\nexport function splitCookiesString(cookiesString: string) {\n var cookiesStrings = []\n var pos = 0\n var start\n var ch\n var lastComma\n var nextStart\n var cookiesSeparatorFound\n\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1\n }\n return pos < cookiesString.length\n }\n\n function notSpecialChar() {\n ch = cookiesString.charAt(pos)\n\n return ch !== '=' && ch !== ';' && ch !== ','\n }\n\n while (pos < cookiesString.length) {\n start = pos\n cookiesSeparatorFound = false\n\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos)\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos\n pos += 1\n\n skipWhitespace()\n nextStart = pos\n\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1\n }\n\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart\n cookiesStrings.push(cookiesString.substring(start, lastComma))\n start = pos\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1\n }\n } else {\n pos += 1\n }\n }\n\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length))\n }\n }\n\n return cookiesStrings\n}\n\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */\nexport function toNodeOutgoingHttpHeaders(\n headers: Headers\n): OutgoingHttpHeaders {\n const nodeHeaders: OutgoingHttpHeaders = {}\n const cookies: string[] = []\n if (headers) {\n for (const [key, value] of headers.entries()) {\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value))\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies\n } else {\n nodeHeaders[key] = value\n }\n }\n }\n return nodeHeaders\n}\n\n/**\n * Validate the correctness of a user-provided URL.\n */\nexport function validateURL(url: string | URL): string {\n try {\n return String(new URL(String(url)))\n } catch (error: any) {\n throw new Error(\n `URL is malformed \"${String(\n url\n )}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,\n { cause: error }\n )\n }\n}\n\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */\nexport function normalizeNextQueryParam(key: string): null | string {\n const prefixes = [NEXT_QUERY_PARAM_PREFIX, NEXT_INTERCEPTION_MARKER_PREFIX]\n for (const prefix of prefixes) {\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length)\n }\n }\n return null\n}\n","/**\n * Decodes a query path parameter.\n *\n * @param value - The value to decode.\n * @returns The decoded value.\n */\nexport function decodeQueryPathParameter(value: string) {\n // When deployed to Vercel, the value may be encoded, so this attempts to\n // decode it and returns the original value if it fails.\n try {\n return decodeURIComponent(value)\n } catch {\n return value\n }\n}\n","export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\n// Header for the Instant Navigation Testing API. In development and testing\n// builds, static pre-renders normally don't happen. This header tells the\n// server to perform a static pre-render anyway, allowing tests to assert on\n// the prefetched UI. Not exposed in production builds by default.\nexport const NEXT_INSTANT_PREFETCH_HEADER =\n 'next-instant-navigation-testing-prefetch' as const\n\n// Cookie for the Instant Navigation Testing API. Used for MPA navigations\n// (page reload, full page load) where we can't set request headers. When set,\n// the server renders only the static shell. Not exposed in production builds\n// by default.\nexport const NEXT_INSTANT_TEST_COOKIE =\n 'next-instant-navigation-testing' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n","import type { UrlWithParsedQuery } from 'url'\nimport { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\n\nconst DUMMY_ORIGIN = 'http://n'\n\nexport function isFullStringUrl(url: string) {\n return /https?:\\/\\//.test(url)\n}\n\nexport function parseUrl(url: string): URL | undefined {\n let parsed: URL | undefined = undefined\n try {\n parsed = new URL(url, DUMMY_ORIGIN)\n } catch {}\n return parsed\n}\n\nexport function parseReqUrl(url: string): UrlWithParsedQuery | undefined {\n const parsedUrl: URL | undefined = parseUrl(url)\n\n if (!parsedUrl) {\n return\n }\n\n const query: Record = {}\n\n for (const key of parsedUrl.searchParams.keys()) {\n const values = parsedUrl.searchParams.getAll(key)\n query[key] = values.length > 1 ? values : values[0]\n }\n\n const legacyUrl: UrlWithParsedQuery = {\n query,\n hash: parsedUrl.hash,\n search: parsedUrl.search,\n path: parsedUrl.pathname,\n pathname: parsedUrl.pathname,\n href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`,\n host: '',\n hostname: '',\n auth: '',\n protocol: '',\n slashes: null,\n port: '',\n }\n return legacyUrl\n}\n\nexport function stripNextRscUnionQuery(relativeUrl: string): string {\n const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN)\n urlInstance.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n return urlInstance.pathname + urlInstance.search\n}\n","// Format function modified from nodejs\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nimport type { UrlObject } from 'url'\nimport type { ParsedUrlQuery } from 'querystring'\nimport * as querystring from './querystring'\n\nconst slashedProtocols = /https?|ftp|gopher|file/\n\nexport function formatUrl(urlObj: UrlObject) {\n let { auth, hostname } = urlObj\n let protocol = urlObj.protocol || ''\n let pathname = urlObj.pathname || ''\n let hash = urlObj.hash || ''\n let query = urlObj.query || ''\n let host: string | false = false\n\n auth = auth ? encodeURIComponent(auth).replace(/%3A/i, ':') + '@' : ''\n\n if (urlObj.host) {\n host = auth + urlObj.host\n } else if (hostname) {\n host = auth + (~hostname.indexOf(':') ? `[${hostname}]` : hostname)\n if (urlObj.port) {\n host += ':' + urlObj.port\n }\n }\n\n if (query && typeof query === 'object') {\n query = String(querystring.urlQueryToSearchParams(query as ParsedUrlQuery))\n }\n\n let search = urlObj.search || (query && `?${query}`) || ''\n\n if (protocol && !protocol.endsWith(':')) protocol += ':'\n\n if (\n urlObj.slashes ||\n ((!protocol || slashedProtocols.test(protocol)) && host !== false)\n ) {\n host = '//' + (host || '')\n if (pathname && pathname[0] !== '/') pathname = '/' + pathname\n } else if (!host) {\n host = ''\n }\n\n if (hash && hash[0] !== '#') hash = '#' + hash\n if (search && search[0] !== '?') search = '?' + search\n\n pathname = pathname.replace(/[?#]/g, encodeURIComponent)\n search = search.replace('#', '%23')\n\n return `${protocol}${host}${pathname}${search}${hash}`\n}\n\nexport const urlObjectKeys = [\n 'auth',\n 'hash',\n 'host',\n 'hostname',\n 'href',\n 'path',\n 'pathname',\n 'port',\n 'protocol',\n 'query',\n 'search',\n 'slashes',\n]\n\nexport function formatWithValidation(url: UrlObject): string {\n if (process.env.NODE_ENV === 'development') {\n if (url !== null && typeof url === 'object') {\n Object.keys(url).forEach((key) => {\n if (!urlObjectKeys.includes(key)) {\n console.warn(\n `Unknown key passed via urlObject into url.format: ${key}`\n )\n }\n })\n }\n }\n\n return formatUrl(url)\n}\n","import type { Rewrite } from '../lib/load-custom-routes'\nimport type { RouteMatchFn } from '../shared/lib/router/utils/route-matcher'\nimport type { NextConfig } from './config'\nimport type { BaseNextRequest } from './base-http'\nimport type { NextUrlWithParsedQuery } from './request-meta'\nimport type { ParsedUrlQuery } from 'querystring'\n\nimport { normalizeLocalePath } from '../shared/lib/i18n/normalize-locale-path'\nimport { getPathMatch } from '../shared/lib/router/utils/path-match'\nimport { getNamedRouteRegex } from '../shared/lib/router/utils/route-regex'\nimport { getRouteMatcher } from '../shared/lib/router/utils/route-matcher'\nimport {\n matchHas,\n prepareDestination,\n} from '../shared/lib/router/utils/prepare-destination'\nimport { removeTrailingSlash } from '../shared/lib/router/utils/remove-trailing-slash'\nimport { normalizeRscURL } from '../shared/lib/router/utils/app-paths'\nimport {\n NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER,\n NEXT_CACHE_REVALIDATED_TAGS_HEADER,\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../lib/constants'\nimport { normalizeNextQueryParam } from './web/utils'\nimport type { IncomingHttpHeaders, IncomingMessage } from 'http'\nimport { decodeQueryPathParameter } from './lib/decode-query-path-parameter'\nimport type { DeepReadonly } from '../shared/lib/deep-readonly'\nimport { parseReqUrl } from '../lib/url'\nimport { formatUrl } from '../shared/lib/router/utils/format-url'\n\nfunction filterInternalQuery(\n query: Record,\n paramKeys: string[]\n) {\n // this is used to pass query information in rewrites\n // but should not be exposed in final query\n delete query['nextInternalLocale']\n\n for (const key in query) {\n const isNextQueryPrefix =\n key !== NEXT_QUERY_PARAM_PREFIX && key.startsWith(NEXT_QUERY_PARAM_PREFIX)\n\n const isNextInterceptionMarkerPrefix =\n key !== NEXT_INTERCEPTION_MARKER_PREFIX &&\n key.startsWith(NEXT_INTERCEPTION_MARKER_PREFIX)\n\n if (\n isNextQueryPrefix ||\n isNextInterceptionMarkerPrefix ||\n paramKeys.includes(key)\n ) {\n delete query[key]\n }\n }\n}\n\nexport function normalizeCdnUrl(\n req: BaseNextRequest | IncomingMessage,\n paramKeys: string[]\n) {\n // make sure to normalize req.url from CDNs to strip dynamic and rewrite\n // params from the query which are added during routing\n const _parsedUrl = parseReqUrl(req.url!)\n\n // we can't normalize if we can't parse\n if (!_parsedUrl) {\n return req.url\n }\n delete (_parsedUrl as any).search\n filterInternalQuery(_parsedUrl.query, paramKeys)\n\n req.url = formatUrl(_parsedUrl)\n}\n\nexport function interpolateDynamicPath(\n pathname: string,\n params: ParsedUrlQuery,\n defaultRouteRegex?: ReturnType | undefined\n) {\n if (!defaultRouteRegex) return pathname\n\n for (const param of Object.keys(defaultRouteRegex.groups)) {\n const { optional, repeat } = defaultRouteRegex.groups[param]\n let builtParam = `[${repeat ? '...' : ''}${param}]`\n\n if (optional) {\n builtParam = `[${builtParam}]`\n }\n\n let paramValue: string\n const value = params[param]\n\n if (Array.isArray(value)) {\n paramValue = value.map((v) => v && encodeURIComponent(v)).join('/')\n } else if (value) {\n paramValue = encodeURIComponent(value)\n } else {\n paramValue = ''\n }\n\n if (paramValue || optional) {\n pathname = pathname.replaceAll(builtParam, paramValue)\n }\n }\n\n return pathname\n}\n\nexport function normalizeDynamicRouteParams(\n query: ParsedUrlQuery,\n defaultRouteRegex: ReturnType,\n defaultRouteMatches: ParsedUrlQuery,\n ignoreMissingOptional: boolean\n) {\n const isDefaultValueMatch = (\n candidateValue: string | undefined,\n defaultValue: string\n ) => {\n if (!candidateValue) {\n return false\n }\n\n let normalizedCandidateValue = normalizeRscURL(candidateValue)\n for (let i = 0; i < 3; i++) {\n if (normalizedCandidateValue === defaultValue) {\n return true\n }\n\n const decodedCandidateValue = decodeQueryPathParameter(\n normalizedCandidateValue\n )\n\n if (decodedCandidateValue === normalizedCandidateValue) {\n break\n }\n\n normalizedCandidateValue = decodedCandidateValue\n }\n\n return false\n }\n\n let hasValidParams = true\n let params: ParsedUrlQuery = {}\n\n for (const key of Object.keys(defaultRouteRegex.groups)) {\n let value: string | string[] | undefined = query[key]\n\n if (typeof value === 'string') {\n value = normalizeRscURL(value)\n } else if (Array.isArray(value)) {\n value = value.map(normalizeRscURL)\n }\n\n // if the value matches the default value we can't rely\n // on the parsed params, this is used to signal if we need\n // to parse x-now-route-matches or not\n const defaultValue = defaultRouteMatches![key]\n const isOptional = defaultRouteRegex!.groups[key].optional\n\n const isDefaultValue = Array.isArray(defaultValue)\n ? defaultValue.some((defaultVal) => {\n return Array.isArray(value)\n ? value.some((val) => isDefaultValueMatch(val, defaultVal))\n : isDefaultValueMatch(value, defaultVal)\n })\n : Array.isArray(value)\n ? value.some((val) => isDefaultValueMatch(val, defaultValue as string))\n : isDefaultValueMatch(value, defaultValue as string)\n\n if (\n isDefaultValue ||\n (typeof value === 'undefined' && !(isOptional && ignoreMissingOptional))\n ) {\n return { params: {}, hasValidParams: false }\n }\n\n // non-provided optional values should be undefined so normalize\n // them to undefined\n if (\n isOptional &&\n (!value ||\n (Array.isArray(value) &&\n value.length === 1 &&\n // fallback optional catch-all SSG pages have\n // [[...paramName]] for the root path on Vercel\n (value[0] === 'index' || value[0] === `[[...${key}]]`)) ||\n value === 'index' ||\n value === `[[...${key}]]`)\n ) {\n value = undefined\n delete query[key]\n }\n\n // query values from the proxy aren't already split into arrays\n // so make sure to normalize catch-all values\n if (\n value &&\n typeof value === 'string' &&\n defaultRouteRegex!.groups[key].repeat\n ) {\n value = value.split('/')\n }\n\n if (value) {\n params[key] = value\n }\n }\n\n return {\n params,\n hasValidParams,\n }\n}\n\nexport function getServerUtils({\n page,\n i18n,\n basePath,\n rewrites,\n pageIsDynamic,\n trailingSlash,\n caseSensitive,\n}: {\n page: string\n i18n?: NextConfig['i18n']\n basePath: string\n rewrites: DeepReadonly<{\n fallback?: ReadonlyArray\n afterFiles?: ReadonlyArray\n beforeFiles?: ReadonlyArray\n }>\n pageIsDynamic: boolean\n trailingSlash?: boolean\n caseSensitive: boolean\n}) {\n let defaultRouteRegex: ReturnType | undefined\n let dynamicRouteMatcher: RouteMatchFn | undefined\n let defaultRouteMatches: ParsedUrlQuery | undefined\n\n if (pageIsDynamic) {\n defaultRouteRegex = getNamedRouteRegex(page, {\n prefixRouteKeys: false,\n })\n dynamicRouteMatcher = getRouteMatcher(defaultRouteRegex)\n defaultRouteMatches = dynamicRouteMatcher(page) as ParsedUrlQuery\n }\n\n function handleRewrites(\n req: BaseNextRequest | IncomingMessage,\n parsedUrl: DeepReadonly\n ) {\n // Here we deep clone the parsedUrl to avoid mutating the original. We also\n // cast this to a mutable type so we can mutate it within this scope.\n const rewrittenParsedUrl = structuredClone(\n parsedUrl\n ) as NextUrlWithParsedQuery\n const rewriteParams: Record = {}\n let fsPathname = rewrittenParsedUrl.pathname\n\n const matchesPage = () => {\n const fsPathnameNoSlash = removeTrailingSlash(fsPathname || '')\n return (\n fsPathnameNoSlash === removeTrailingSlash(page) ||\n dynamicRouteMatcher?.(fsPathnameNoSlash)\n )\n }\n\n const checkRewrite = (rewrite: DeepReadonly): boolean => {\n const matcher = getPathMatch(\n rewrite.source + (trailingSlash ? '(/)?' : ''),\n {\n removeUnnamedParams: true,\n strict: true,\n sensitive: !!caseSensitive,\n }\n )\n\n if (!rewrittenParsedUrl.pathname) return false\n\n let params = matcher(rewrittenParsedUrl.pathname)\n\n if ((rewrite.has || rewrite.missing) && params) {\n const hasParams = matchHas(\n req,\n rewrittenParsedUrl.query,\n rewrite.has as Rewrite['has'],\n rewrite.missing as Rewrite['missing']\n )\n\n if (hasParams) {\n Object.assign(params, hasParams)\n } else {\n params = false\n }\n }\n\n if (params) {\n const { parsedDestination, destQuery } = prepareDestination({\n appendParamsToQuery: true,\n destination: rewrite.destination,\n params: params,\n query: rewrittenParsedUrl.query,\n })\n\n // if the rewrite destination is external break rewrite chain\n if (parsedDestination.protocol) {\n return true\n }\n\n Object.assign(rewriteParams, destQuery, params)\n Object.assign(rewrittenParsedUrl.query, parsedDestination.query)\n delete (parsedDestination as any).query\n\n Object.assign(rewrittenParsedUrl, parsedDestination)\n\n fsPathname = rewrittenParsedUrl.pathname\n if (!fsPathname) return false\n\n if (basePath) {\n fsPathname = fsPathname.replace(new RegExp(`^${basePath}`), '') || '/'\n }\n\n if (i18n) {\n const result = normalizeLocalePath(fsPathname, i18n.locales)\n fsPathname = result.pathname\n rewrittenParsedUrl.query.nextInternalLocale =\n result.detectedLocale || params.nextInternalLocale\n }\n\n if (fsPathname === page) {\n return true\n }\n\n if (pageIsDynamic && dynamicRouteMatcher) {\n const dynamicParams = dynamicRouteMatcher(fsPathname)\n if (dynamicParams) {\n rewrittenParsedUrl.query = {\n ...rewrittenParsedUrl.query,\n ...dynamicParams,\n }\n return true\n }\n }\n }\n\n return false\n }\n\n for (const rewrite of rewrites.beforeFiles || []) {\n checkRewrite(rewrite)\n }\n\n if (fsPathname !== page) {\n let finished = false\n\n for (const rewrite of rewrites.afterFiles || []) {\n finished = checkRewrite(rewrite)\n if (finished) break\n }\n\n if (!finished && !matchesPage()) {\n for (const rewrite of rewrites.fallback || []) {\n finished = checkRewrite(rewrite)\n if (finished) break\n }\n }\n }\n\n return { rewriteParams, rewrittenParsedUrl }\n }\n\n function getParamsFromRouteMatches(routeMatchesHeader: string) {\n // If we don't have a default route regex, we can't get params from route\n // matches\n if (!defaultRouteRegex) return null\n\n const { groups, routeKeys } = defaultRouteRegex\n\n const matcher = getRouteMatcher({\n re: {\n // Simulate a RegExp match from the \\`req.url\\` input\n exec: (str: string) => {\n // Normalize all the prefixed query params.\n const obj: Record = Object.fromEntries(\n new URLSearchParams(str)\n )\n for (const [key, value] of Object.entries(obj)) {\n const normalizedKey = normalizeNextQueryParam(key)\n if (!normalizedKey) continue\n\n obj[normalizedKey] = value\n delete obj[key]\n }\n\n // Use all the named route keys.\n const result = {} as RegExpExecArray\n for (const keyName of Object.keys(routeKeys)) {\n const paramName = routeKeys[keyName]\n\n // If this param name is not a valid parameter name, then skip it.\n if (!paramName) continue\n\n const group = groups[paramName]\n const value = obj[keyName]\n\n // When we're missing a required param, we can't match the route.\n if (!group.optional && !value) return null\n\n result[group.pos] = value\n }\n\n return result\n },\n },\n groups,\n })\n\n const routeMatches = matcher(routeMatchesHeader)\n if (!routeMatches) return null\n\n return routeMatches\n }\n\n function normalizeQueryParams(\n query: Record,\n routeParamKeys: Set\n ) {\n // this is used to pass query information in rewrites\n // but should not be exposed in final query\n delete query['nextInternalLocale']\n\n for (const [key, value] of Object.entries(query)) {\n const normalizedKey = normalizeNextQueryParam(key)\n if (!normalizedKey) continue\n\n // Remove the prefixed key from the query params because we want\n // to consume it for the dynamic route matcher.\n delete query[key]\n routeParamKeys.add(normalizedKey)\n\n if (typeof value === 'undefined') continue\n\n query[normalizedKey] = Array.isArray(value)\n ? value.map((v) => decodeQueryPathParameter(v))\n : decodeQueryPathParameter(value)\n }\n }\n\n return {\n handleRewrites,\n defaultRouteRegex,\n dynamicRouteMatcher,\n defaultRouteMatches,\n normalizeQueryParams,\n getParamsFromRouteMatches,\n /**\n * Normalize dynamic route params.\n *\n * @param query - The query params to normalize.\n * @param ignoreMissingOptional - Whether to ignore missing optional params.\n * @returns The normalized params and whether they are valid.\n */\n normalizeDynamicRouteParams: (\n query: ParsedUrlQuery,\n ignoreMissingOptional: boolean\n ) => {\n if (!defaultRouteRegex || !defaultRouteMatches) {\n return { params: {}, hasValidParams: false }\n }\n\n return normalizeDynamicRouteParams(\n query,\n defaultRouteRegex,\n defaultRouteMatches,\n ignoreMissingOptional\n )\n },\n\n normalizeCdnUrl: (\n req: BaseNextRequest | IncomingMessage,\n paramKeys: string[]\n ) => normalizeCdnUrl(req, paramKeys),\n\n interpolateDynamicPath: (\n pathname: string,\n params: Record\n ) => interpolateDynamicPath(pathname, params, defaultRouteRegex),\n\n filterInternalQuery: (query: ParsedUrlQuery, paramKeys: string[]) =>\n filterInternalQuery(query, paramKeys),\n }\n}\n\nexport function getPreviouslyRevalidatedTags(\n headers: IncomingHttpHeaders,\n previewModeId: string | undefined\n): string[] {\n return typeof headers[NEXT_CACHE_REVALIDATED_TAGS_HEADER] === 'string' &&\n headers[NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER] === previewModeId\n ? headers[NEXT_CACHE_REVALIDATED_TAGS_HEADER].split(',')\n : []\n}\n","// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n","import { isMetadataPage } from './is-metadata-route'\nimport path from '../../shared/lib/isomorphic/path'\nimport { interpolateDynamicPath } from '../../server/server-utils'\nimport { getNamedRouteRegex } from '../../shared/lib/router/utils/route-regex'\nimport { djb2Hash } from '../../shared/lib/hash'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { normalizePathSep } from '../../shared/lib/page-path/normalize-path-sep'\nimport {\n isGroupSegment,\n isParallelRouteSegment,\n} from '../../shared/lib/segment'\n\n/*\n * If there's special convention like (...) or @ in the page path,\n * Give it a unique hash suffix to avoid conflicts\n *\n * e.g.\n * /opengraph-image -> /opengraph-image\n * /(post)/opengraph-image.tsx -> /opengraph-image-[0-9a-z]{6}\n *\n * Sitemap is an exception, it should not have a suffix.\n * Each sitemap contains all the urls of sub routes, we don't have the case of duplicates `/(group)/sitemap.[ext]` and `/sitemap.[ext]` since they should be the same.\n * Hence we always normalize the urls for sitemap and do not append hash suffix, and ensure user-land only contains one sitemap per pathname.\n *\n * /sitemap -> /sitemap\n * /(post)/sitemap -> /sitemap\n */\nfunction getMetadataRouteSuffix(page: string) {\n // Remove the last segment and get the parent pathname\n // e.g. /parent/a/b/c -> /parent/a/b\n // e.g. /parent/opengraph-image -> /parent\n const parentPathname = path.dirname(page)\n // Only apply suffix to metadata routes except for sitemaps\n if (page.endsWith('/sitemap') || page.endsWith('/sitemap.xml')) {\n return ''\n }\n\n // Calculate the hash suffix based on the parent path\n let suffix = ''\n // Check if there's any special characters in the parent pathname.\n const segments = parentPathname.split('/')\n if (\n segments.some((seg) => isGroupSegment(seg) || isParallelRouteSegment(seg))\n ) {\n // Hash the parent path to get a unique suffix\n suffix = djb2Hash(parentPathname).toString(36).slice(0, 6)\n }\n return suffix\n}\n\n/**\n * Fill the dynamic segment in the metadata route\n *\n * Example:\n * fillMetadataSegment('/a/[slug]', { params: { slug: 'b' } }, 'open-graph', false) -> '/a/b/open-graph'\n *\n * When isStatic is true, all dynamic segments are filled with \"-\" placeholder\n * since static metadata files have consistent responses regardless of params.\n * Example:\n * fillMetadataSegment('/a/[slug]', {}, 'icon.png', true) -> '/a/-/icon.png'\n *\n */\nexport function fillMetadataSegment(\n segment: string,\n params: any,\n lastSegment: string,\n isStatic: boolean\n) {\n const pathname = normalizeAppPath(segment)\n const routeRegex = getNamedRouteRegex(pathname, {\n prefixRouteKeys: false,\n })\n\n // For static metadata files, fill all dynamic segments with \"-\" placeholder\n const routeParams = isStatic\n ? Object.keys(routeRegex.groups).reduce(\n (acc, key) => {\n const { repeat } = routeRegex.groups[key]\n // Use array for catch-all segments, string for regular segments\n acc[key] = repeat ? ['-'] : '-'\n return acc\n },\n {} as Record\n )\n : params\n\n const route = interpolateDynamicPath(pathname, routeParams, routeRegex)\n const { name, ext } = path.parse(lastSegment)\n const pagePath = path.posix.join(segment, name)\n const suffix = getMetadataRouteSuffix(pagePath)\n const routeSuffix = suffix ? `-${suffix}` : ''\n\n return normalizePathSep(path.join(route, `${name}${routeSuffix}${ext}`))\n}\n\n/**\n * Map metadata page key to the corresponding route\n *\n * static file page key: /app/robots.txt -> /robots.xml -> /robots.txt/route\n * dynamic route page key: /app/robots.tsx -> /robots -> /robots.txt/route\n *\n * @param page\n * @returns\n */\nexport function normalizeMetadataRoute(page: string) {\n if (!isMetadataPage(page)) {\n return page\n }\n let route = page\n let suffix = ''\n if (page === '/robots') {\n route += '.txt'\n } else if (page === '/manifest') {\n route += '.webmanifest'\n } else {\n suffix = getMetadataRouteSuffix(page)\n }\n // Support both / and custom routes //route.ts.\n // If it's a metadata file route, we need to append /[id]/route to the page.\n if (!route.endsWith('/route')) {\n const { dir, name: baseName, ext } = path.parse(route)\n route = path.posix.join(\n dir,\n `${baseName}${suffix ? `-${suffix}` : ''}${ext}`,\n 'route'\n )\n }\n\n return route\n}\n\n// Normalize metadata route page to either a single route or a dynamic route.\n// e.g. Input: /sitemap/route\n// when isDynamic is false, single route -> /sitemap.xml/route\n// when isDynamic is false, dynamic route -> /sitemap/[__metadata_id__]/route\n// also works for pathname such as /sitemap -> /sitemap.xml, but will not append /route suffix\nexport function normalizeMetadataPageToRoute(page: string, isDynamic: boolean) {\n const isRoute = page.endsWith('/route')\n const routePagePath = isRoute ? page.slice(0, -'/route'.length) : page\n const metadataRouteExtension = routePagePath.endsWith('/sitemap')\n ? '.xml'\n : ''\n const mapped = isDynamic\n ? `${routePagePath}/[__metadata_id__]`\n : `${routePagePath}${metadataRouteExtension}`\n\n return mapped + (isRoute ? '/route' : '')\n}\n","if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["normalizePathSep","path","replace","ensureLeadingSlash","startsWith","DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","segment","Array","isArray","endsWith","searchParams","isPageSegment","includes","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push","compareAppPaths","normalizeAppPath","normalizeRscURL","route","split","reduce","pathname","index","a","b","aHasSlot","bHasSlot","localeCompare","url","isAppRouteRoute","DEFAULT_METADATA_ROUTE_EXTENSIONS","STATIC_METADATA_IMAGES","getExtensionRegexString","isMetadataPage","isMetadataRoute","isMetadataRouteFile","isStaticMetadataFile","isStaticMetadataRoute","icon","filename","extensions","apple","favicon","openGraph","twitter","staticExtensions","dynamicExtensions","result","join","appDirRelativePath","FAVICON_REGEX","ROBOTS_TXT_REGEX","MANIFEST_JSON_REGEX","MANIFEST_WEBMANIFEST_REGEX","SITEMAP_XML_REGEX","compiledRegexCache","Map","fastPathCheck","normalizedPath","test","getCompiledRegexes","pageExtensions","strictlyMatchExtensions","cacheKey","cached","get","trailingMatcher","variantsMatcher","groupSuffix","suffixMatcher","robotsExts","manifestExts","regexes","RegExp","set","fastResult","i","matched","page","process","env","NEXT_RUNTIME","require","module","exports","normalizeLocalePath","cache","WeakMap","locales","lowercasedLocales","map","locale","toLowerCase","detectedLocale","indexOf","slice","__nccwpck_require__","ab","e","n","defineProperty","value","pathToRegexp","tokensToRegexp","regexpToFunction","match","tokensToFunction","compile","parse","lexer","r","t","type","o","charCodeAt","TypeError","concat","c","f","prefixes","delimiter","u","p","tryConsume","mustConsume","undefined","consumeText","isSafe","safePattern","name","escapeString","v","s","d","g","prefix","suffix","pattern","modifier","x","h","l","m","T","flags","encode","validate","String","decode","exec","create","_loop_1","params","sensitive","regexpToRegexp","source","arrayToRegexp","stringToRegexp","strict","start","end","E","w","y","R","A","_","getPathMatch","options","keys","regexp","matcher","regexModifier","removeUnnamedParams","key","ACTION_SUFFIX","APP_DIR_ALIAS","CACHE_ONE_YEAR_SECONDS","DOT_NEXT_ALIAS","ESLINT_DEFAULT_DIRS","GSP_NO_RETURNED_VALUE","GSSP_COMPONENT_MEMBER_ERROR","GSSP_NO_RETURNED_VALUE","HTML_CONTENT_TYPE_HEADER","INFINITE_CACHE","INSTRUMENTATION_HOOK_FILENAME","JSON_CONTENT_TYPE_HEADER","MATCHED_PATH_HEADER","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","NEXT_BODY_SUFFIX","NEXT_CACHE_IMPLICIT_TAG_ID","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_CACHE_ROOT_PARAM_TAG_ID","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_DATA_SUFFIX","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_META_SUFFIX","NEXT_NAV_DEPLOYMENT_ID_HEADER","NEXT_QUERY_PARAM_PREFIX","NEXT_RESUME_HEADER","NEXT_RESUME_STATE_LENGTH_HEADER","NON_STANDARD_NODE_ENV","PAGES_DIR_ALIAS","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","PROXY_FILENAME","PROXY_LOCATION_REGEXP","PUBLIC_DIR_MIDDLEWARE_CONFLICT","ROOT_DIR_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","SERVER_PROPS_EXPORT_ERROR","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","SERVER_RUNTIME","SSG_FALLBACK_EXPORT_ERROR","SSG_GET_INITIAL_PROPS_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","TEXT_PLAIN_CONTENT_TYPE_HEADER","UNSTABLE_REVALIDATE_RENAME_ERROR","WEBPACK_LAYERS","WEBPACK_RESOURCE_QUERIES","WEB_SOCKET_MAX_RECONNECTIONS","edge","experimentalEdge","nodejs","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","edgeSSREntry","metadata","metadataRoute","metadataImageMeta","INTERCEPTION_ROUTE_MARKERS","extractInterceptionRouteInformation","isInterceptionRouteAppPath","find","interceptingRoute","marker","interceptedRoute","Error","splitInterceptingRoute","escapeStringRegexp","reHasRegExp","reReplaceRegExp","str","removeTrailingSlash","parseLoaderTree","modules","staticSiblings","layout","template","defaultPage","conventionPath","getParamProperties","getSegmentParam","isCatchAll","interceptionMarker","paramType","paramName","repeat","optional","isInterceptionAppRoute","isNormalizedAppRoute","parseAppRoute","parseAppRouteSegment","normalizeEncodedDynamicPlaceholder","decodedSegment","decodeURIComponent","param","normalized","pathnameSegments","filter","Boolean","normalizedSegment","appSegment","InvariantError","parts","dynamicSegments","interceptionPrefixFromParamType","resolveParamValue","getParamValueFromSegment","pathSegment","interceptionPrefix","depth","processedSegments","hasOwnProperty","paramValue","PARAMETER_PATTERN","getDynamicParam","interpolateParallelRouteParams","parseMatchedParameter","parseParameter","getParamValue","interpolatedParams","segmentKey","fallbackRouteParams","has","searchValue","encodeURIComponent","loaderTree","pagePath","interpolated","structuredClone","stack","pop","nextDepth","parallelRoute","dynamicParamType","treeSegment","paramCacheKey","getNamedMiddlewareRegex","getNamedRouteRegex","getRouteRegex","getParametrizedRoute","includeSuffix","includePrefix","groups","groupIndex","markerMatch","paramMatches","pos","substring","parameterizedRoute","normalizedRoute","excludeOptionalTrailingSlash","re","buildGetSafeRouteKey","routeKey","j","fromCharCode","Math","floor","getSafeKeyFromSegment","getSafeRouteKey","routeKeys","keyPrefix","backreferenceDuplicateKeys","cleanedKey","invalidKey","isNaN","parseInt","duplicateKey","getNamedParametrizedRoute","prefixRouteKeys","reference","names","intercepted","inverseParts","hasInterceptionMarker","some","namedParameterizedRoute","pathToRegexpPattern","namedRegex","catchAll","catchAllRegex","catchAllGroupedRegex","DecodeError","MiddlewareNotFoundError","MissingStaticPage","NormalizeError","PageNotFoundError","SP","ST","WEB_VITALS","execOnce","getDisplayName","getLocationOrigin","getURL","isAbsoluteUrl","isResSent","loadGetInitialProps","normalizeRepeatedSlashes","stringifyError","fn","used","args","ABSOLUTE_URL_REGEX","protocol","hostname","port","window","location","href","origin","Component","displayName","res","finished","headersSent","urlParts","urlNoQuery","App","ctx","NODE_ENV","prototype","getInitialProps","message","pageProps","props","console","warn","performance","every","method","constructor","code","error","PARAM_SEPARATOR","hasAdjacentParameterIssues","normalizeAdjacentParameters","normalizeTokensForRegexp","stripNormalizedSeparators","stripParameterSeparators","tokens","token","cleaned","entries","item","safeCompile","safePathToRegexp","safeRegexpToFunction","safeRouteMatcher","needsNormalization","routeToUse","retryError","compiler","originalMatcher","matcherFn","getRouteMatcher","rawMatcher","routeMatch","group","entry","assign","searchParamsToUrlQuery","urlQueryToSearchParams","query","existing","stringifyUrlQueryParam","URLSearchParams","append","target","searchParamsList","delete","parseRelativeUrl","base","parseQuery","globalBase","URL","resolvedBase","search","hash","host","auth","slashes","parseUrl","parsedURL","username","password","getCookieParser","headers","parseCookie","cookie","parseCookieFn","compileNonPath","matchHas","parseDestination","prepareDestination","getSafeParamName","newParamName","charCode","escapeSegment","segmentName","unescapeSegments","req","missing","hasMatch","hasItem","cookies","matches","forEach","groupKey","allMatch","escaped","destination","parsed","parsedDestination","destHostname","destQuery","destSearch","destPath","destParams","destPathParamKeys","destHostnameParamKeys","destPathCompiler","destHostnameCompiler","strOrArray","paramKeys","appendParamsToQuery","newUrl","err","fromNodeOutgoingHttpHeaders","normalizeNextQueryParam","splitCookiesString","toNodeOutgoingHttpHeaders","validateURL","nodeHeaders","Headers","toString","cookiesString","cookiesStrings","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","charAt","notSpecialChar","cause","decodeQueryPathParameter","ACTION_HEADER","FLIGHT_HEADERS","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_ACTION_REVALIDATED_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_HMR_REFRESH_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_INSTANT_PREFETCH_HEADER","NEXT_INSTANT_TEST_COOKIE","NEXT_IS_PRERENDER_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_RSC_UNION_QUERY","NEXT_URL","RSC_CONTENT_TYPE_HEADER","RSC_HEADER","isFullStringUrl","parseReqUrl","stripNextRscUnionQuery","DUMMY_ORIGIN","parsedUrl","getAll","legacyUrl","relativeUrl","urlInstance","formatUrl","formatWithValidation","urlObjectKeys","slashedProtocols","urlObj","querystring","getPreviouslyRevalidatedTags","getServerUtils","interpolateDynamicPath","normalizeCdnUrl","normalizeDynamicRouteParams","filterInternalQuery","isNextQueryPrefix","isNextInterceptionMarkerPrefix","_parsedUrl","defaultRouteRegex","builtParam","replaceAll","defaultRouteMatches","ignoreMissingOptional","isDefaultValueMatch","candidateValue","defaultValue","normalizedCandidateValue","decodedCandidateValue","hasValidParams","isOptional","isDefaultValue","defaultVal","val","i18n","basePath","rewrites","pageIsDynamic","trailingSlash","caseSensitive","dynamicRouteMatcher","handleRewrites","rewrittenParsedUrl","rewriteParams","fsPathname","matchesPage","fsPathnameNoSlash","checkRewrite","rewrite","hasParams","nextInternalLocale","dynamicParams","beforeFiles","afterFiles","fallback","getParamsFromRouteMatches","routeMatchesHeader","obj","fromEntries","normalizedKey","keyName","routeMatches","normalizeQueryParams","routeParamKeys","add","previewModeId","djb2Hash","hexHash","char","fillMetadataSegment","normalizeMetadataPageToRoute","normalizeMetadataRoute","getMetadataRouteSuffix","parentPathname","dirname","seg","lastSegment","isStatic","routeRegex","routeParams","acc","ext","posix","routeSuffix","dir","baseName","isDynamic","isRoute","routePagePath","metadataRouteExtension","mapped","__NEXT_EXPERIMENTAL_REACT","TURBOPACK"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js b/.next/server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js new file mode 100644 index 0000000..82df5ed --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js @@ -0,0 +1,19 @@ +module.exports=[3343,a=>{"use strict";var b,c=((b={}).PAGES="PAGES",b.PAGES_API="PAGES_API",b.APP_PAGE="APP_PAGE",b.APP_ROUTE="APP_ROUTE",b.IMAGE="IMAGE",b);a.s(["RouteKind",0,c])},29432,a=>{"use strict";a.s(["getRevalidateReason",0,function(a){return a.isOnDemandRevalidate?"on-demand":a.isStaticGeneration?"stale":void 0}])},18970,a=>{"use strict";var b,c,d,e,f,g,h,i,j,k,l,m,n=((b=n||{}).handleRequest="BaseServer.handleRequest",b.run="BaseServer.run",b.pipe="BaseServer.pipe",b.getStaticHTML="BaseServer.getStaticHTML",b.render="BaseServer.render",b.renderToResponseWithComponents="BaseServer.renderToResponseWithComponents",b.renderToResponse="BaseServer.renderToResponse",b.renderToHTML="BaseServer.renderToHTML",b.renderError="BaseServer.renderError",b.renderErrorToResponse="BaseServer.renderErrorToResponse",b.renderErrorToHTML="BaseServer.renderErrorToHTML",b.render404="BaseServer.render404",b),o=((c=o||{}).loadDefaultErrorComponents="LoadComponents.loadDefaultErrorComponents",c.loadComponents="LoadComponents.loadComponents",c),p=((d=p||{}).getRequestHandler="NextServer.getRequestHandler",d.getRequestHandlerWithMetadata="NextServer.getRequestHandlerWithMetadata",d.getServer="NextServer.getServer",d.getServerRequestHandler="NextServer.getServerRequestHandler",d.createServer="createServer.createServer",d),q=((e=q||{}).compression="NextNodeServer.compression",e.getBuildId="NextNodeServer.getBuildId",e.createComponentTree="NextNodeServer.createComponentTree",e.clientComponentLoading="NextNodeServer.clientComponentLoading",e.getLayoutOrPageModule="NextNodeServer.getLayoutOrPageModule",e.generateStaticRoutes="NextNodeServer.generateStaticRoutes",e.generateFsStaticRoutes="NextNodeServer.generateFsStaticRoutes",e.generatePublicRoutes="NextNodeServer.generatePublicRoutes",e.generateImageRoutes="NextNodeServer.generateImageRoutes.route",e.sendRenderResult="NextNodeServer.sendRenderResult",e.proxyRequest="NextNodeServer.proxyRequest",e.runApi="NextNodeServer.runApi",e.render="NextNodeServer.render",e.renderHTML="NextNodeServer.renderHTML",e.imageOptimizer="NextNodeServer.imageOptimizer",e.getPagePath="NextNodeServer.getPagePath",e.getRoutesManifest="NextNodeServer.getRoutesManifest",e.findPageComponents="NextNodeServer.findPageComponents",e.getFontManifest="NextNodeServer.getFontManifest",e.getServerComponentManifest="NextNodeServer.getServerComponentManifest",e.getRequestHandler="NextNodeServer.getRequestHandler",e.renderToHTML="NextNodeServer.renderToHTML",e.renderError="NextNodeServer.renderError",e.renderErrorToHTML="NextNodeServer.renderErrorToHTML",e.render404="NextNodeServer.render404",e.startResponse="NextNodeServer.startResponse",e.route="route",e.onProxyReq="onProxyReq",e.apiResolver="apiResolver",e.internalFetch="internalFetch",e),r=((f=r||{}).startServer="startServer.startServer",f),s=((g=s||{}).getServerSideProps="Render.getServerSideProps",g.getStaticProps="Render.getStaticProps",g.renderToString="Render.renderToString",g.renderDocument="Render.renderDocument",g.createBodyResult="Render.createBodyResult",g),t=((h=t||{}).renderToString="AppRender.renderToString",h.renderToReadableStream="AppRender.renderToReadableStream",h.getBodyResult="AppRender.getBodyResult",h.fetch="AppRender.fetch",h),u=((i=u||{}).executeRoute="Router.executeRoute",i),v=((j=v||{}).runHandler="Node.runHandler",j),w=((k=w||{}).runHandler="AppRouteRouteHandlers.runHandler",k),x=((l=x||{}).generateMetadata="ResolveMetadata.generateMetadata",l.generateViewport="ResolveMetadata.generateViewport",l),y=((m=y||{}).execute="Middleware.execute",m);let z=new Set(["Middleware.execute","BaseServer.handleRequest","Render.getServerSideProps","Render.getStaticProps","AppRender.fetch","AppRender.getBodyResult","Render.renderDocument","Node.runHandler","AppRouteRouteHandlers.runHandler","ResolveMetadata.generateMetadata","ResolveMetadata.generateViewport","NextNodeServer.createComponentTree","NextNodeServer.findPageComponents","NextNodeServer.getLayoutOrPageModule","NextNodeServer.startResponse","NextNodeServer.clientComponentLoading"]),A=new Set(["NextNodeServer.findPageComponents","NextNodeServer.createComponentTree","NextNodeServer.clientComponentLoading"]);a.s(["AppRenderSpan",0,t,"AppRouteRouteHandlersSpan",0,w,"BaseServerSpan",0,n,"LoadComponentsSpan",0,o,"LogSpanAllowList",0,A,"MiddlewareSpan",0,y,"NextNodeServerSpan",0,q,"NextServerSpan",0,p,"NextVanillaSpanAllowlist",0,z,"NodeSpan",0,v,"RenderSpan",0,s,"ResolveMetadataSpan",0,x,"RouterSpan",0,u,"StartServerSpan",0,r])},62562,(a,b,c)=>{(()=>{"use strict";let c,d,e,f,g;var h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x={491:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.ContextAPI=void 0;let d=c(223),e=c(172),f=c(930),g="context",h=new d.NoopContextManager;class i{static getInstance(){return this._instance||(this._instance=new i),this._instance}setGlobalContextManager(a){return(0,e.registerGlobal)(g,a,f.DiagAPI.instance())}active(){return this._getContextManager().active()}with(a,b,c,...d){return this._getContextManager().with(a,b,c,...d)}bind(a,b){return this._getContextManager().bind(a,b)}_getContextManager(){return(0,e.getGlobal)(g)||h}disable(){this._getContextManager().disable(),(0,e.unregisterGlobal)(g,f.DiagAPI.instance())}}b.ContextAPI=i},930:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.DiagAPI=void 0;let d=c(56),e=c(912),f=c(957),g=c(172);class h{constructor(){function a(a){return function(...b){let c=(0,g.getGlobal)("diag");if(c)return c[a](...b)}}const b=this;b.setLogger=(a,c={logLevel:f.DiagLogLevel.INFO})=>{var d,h,i;if(a===b){let a=Error("Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation");return b.error(null!=(d=a.stack)?d:a.message),!1}"number"==typeof c&&(c={logLevel:c});let j=(0,g.getGlobal)("diag"),k=(0,e.createLogLevelDiagLogger)(null!=(h=c.logLevel)?h:f.DiagLogLevel.INFO,a);if(j&&!c.suppressOverrideMessage){let a=null!=(i=Error().stack)?i:"";j.warn(`Current logger will be overwritten from ${a}`),k.warn(`Current logger will overwrite one already registered from ${a}`)}return(0,g.registerGlobal)("diag",k,b,!0)},b.disable=()=>{(0,g.unregisterGlobal)("diag",b)},b.createComponentLogger=a=>new d.DiagComponentLogger(a),b.verbose=a("verbose"),b.debug=a("debug"),b.info=a("info"),b.warn=a("warn"),b.error=a("error")}static instance(){return this._instance||(this._instance=new h),this._instance}}b.DiagAPI=h},653:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.MetricsAPI=void 0;let d=c(660),e=c(172),f=c(930),g="metrics";class h{static getInstance(){return this._instance||(this._instance=new h),this._instance}setGlobalMeterProvider(a){return(0,e.registerGlobal)(g,a,f.DiagAPI.instance())}getMeterProvider(){return(0,e.getGlobal)(g)||d.NOOP_METER_PROVIDER}getMeter(a,b,c){return this.getMeterProvider().getMeter(a,b,c)}disable(){(0,e.unregisterGlobal)(g,f.DiagAPI.instance())}}b.MetricsAPI=h},181:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.PropagationAPI=void 0;let d=c(172),e=c(874),f=c(194),g=c(277),h=c(369),i=c(930),j="propagation",k=new e.NoopTextMapPropagator;class l{constructor(){this.createBaggage=h.createBaggage,this.getBaggage=g.getBaggage,this.getActiveBaggage=g.getActiveBaggage,this.setBaggage=g.setBaggage,this.deleteBaggage=g.deleteBaggage}static getInstance(){return this._instance||(this._instance=new l),this._instance}setGlobalPropagator(a){return(0,d.registerGlobal)(j,a,i.DiagAPI.instance())}inject(a,b,c=f.defaultTextMapSetter){return this._getGlobalPropagator().inject(a,b,c)}extract(a,b,c=f.defaultTextMapGetter){return this._getGlobalPropagator().extract(a,b,c)}fields(){return this._getGlobalPropagator().fields()}disable(){(0,d.unregisterGlobal)(j,i.DiagAPI.instance())}_getGlobalPropagator(){return(0,d.getGlobal)(j)||k}}b.PropagationAPI=l},997:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.TraceAPI=void 0;let d=c(172),e=c(846),f=c(139),g=c(607),h=c(930),i="trace";class j{constructor(){this._proxyTracerProvider=new e.ProxyTracerProvider,this.wrapSpanContext=f.wrapSpanContext,this.isSpanContextValid=f.isSpanContextValid,this.deleteSpan=g.deleteSpan,this.getSpan=g.getSpan,this.getActiveSpan=g.getActiveSpan,this.getSpanContext=g.getSpanContext,this.setSpan=g.setSpan,this.setSpanContext=g.setSpanContext}static getInstance(){return this._instance||(this._instance=new j),this._instance}setGlobalTracerProvider(a){let b=(0,d.registerGlobal)(i,this._proxyTracerProvider,h.DiagAPI.instance());return b&&this._proxyTracerProvider.setDelegate(a),b}getTracerProvider(){return(0,d.getGlobal)(i)||this._proxyTracerProvider}getTracer(a,b){return this.getTracerProvider().getTracer(a,b)}disable(){(0,d.unregisterGlobal)(i,h.DiagAPI.instance()),this._proxyTracerProvider=new e.ProxyTracerProvider}}b.TraceAPI=j},277:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.deleteBaggage=b.setBaggage=b.getActiveBaggage=b.getBaggage=void 0;let d=c(491),e=(0,c(780).createContextKey)("OpenTelemetry Baggage Key");function f(a){return a.getValue(e)||void 0}b.getBaggage=f,b.getActiveBaggage=function(){return f(d.ContextAPI.getInstance().active())},b.setBaggage=function(a,b){return a.setValue(e,b)},b.deleteBaggage=function(a){return a.deleteValue(e)}},993:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.BaggageImpl=void 0;class c{constructor(a){this._entries=a?new Map(a):new Map}getEntry(a){let b=this._entries.get(a);if(b)return Object.assign({},b)}getAllEntries(){return Array.from(this._entries.entries()).map(([a,b])=>[a,b])}setEntry(a,b){let d=new c(this._entries);return d._entries.set(a,b),d}removeEntry(a){let b=new c(this._entries);return b._entries.delete(a),b}removeEntries(...a){let b=new c(this._entries);for(let c of a)b._entries.delete(c);return b}clear(){return new c}}b.BaggageImpl=c},830:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.baggageEntryMetadataSymbol=void 0,b.baggageEntryMetadataSymbol=Symbol("BaggageEntryMetadata")},369:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.baggageEntryMetadataFromString=b.createBaggage=void 0;let d=c(930),e=c(993),f=c(830),g=d.DiagAPI.instance();b.createBaggage=function(a={}){return new e.BaggageImpl(new Map(Object.entries(a)))},b.baggageEntryMetadataFromString=function(a){return"string"!=typeof a&&(g.error(`Cannot create baggage metadata from unknown type: ${typeof a}`),a=""),{__TYPE__:f.baggageEntryMetadataSymbol,toString:()=>a}}},67:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.context=void 0,b.context=c(491).ContextAPI.getInstance()},223:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.NoopContextManager=void 0;let d=c(780);b.NoopContextManager=class{active(){return d.ROOT_CONTEXT}with(a,b,c,...d){return b.call(c,...d)}bind(a,b){return b}enable(){return this}disable(){return this}}},780:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.ROOT_CONTEXT=b.createContextKey=void 0,b.createContextKey=function(a){return Symbol.for(a)};class c{constructor(a){const b=this;b._currentContext=a?new Map(a):new Map,b.getValue=a=>b._currentContext.get(a),b.setValue=(a,d)=>{let e=new c(b._currentContext);return e._currentContext.set(a,d),e},b.deleteValue=a=>{let d=new c(b._currentContext);return d._currentContext.delete(a),d}}}b.ROOT_CONTEXT=new c},506:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.diag=void 0,b.diag=c(930).DiagAPI.instance()},56:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.DiagComponentLogger=void 0;let d=c(172);function e(a,b,c){let e=(0,d.getGlobal)("diag");if(e)return c.unshift(b),e[a](...c)}b.DiagComponentLogger=class{constructor(a){this._namespace=a.namespace||"DiagComponentLogger"}debug(...a){return e("debug",this._namespace,a)}error(...a){return e("error",this._namespace,a)}info(...a){return e("info",this._namespace,a)}warn(...a){return e("warn",this._namespace,a)}verbose(...a){return e("verbose",this._namespace,a)}}},972:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.DiagConsoleLogger=void 0;let c=[{n:"error",c:"error"},{n:"warn",c:"warn"},{n:"info",c:"info"},{n:"debug",c:"debug"},{n:"verbose",c:"trace"}];b.DiagConsoleLogger=class{constructor(){for(let a=0;a{Object.defineProperty(b,"__esModule",{value:!0}),b.createLogLevelDiagLogger=void 0;let d=c(957);b.createLogLevelDiagLogger=function(a,b){function c(c,d){let e=b[c];return"function"==typeof e&&a>=d?e.bind(b):function(){}}return ad.DiagLogLevel.ALL&&(a=d.DiagLogLevel.ALL),b=b||{},{error:c("error",d.DiagLogLevel.ERROR),warn:c("warn",d.DiagLogLevel.WARN),info:c("info",d.DiagLogLevel.INFO),debug:c("debug",d.DiagLogLevel.DEBUG),verbose:c("verbose",d.DiagLogLevel.VERBOSE)}}},957:(a,b)=>{var c;Object.defineProperty(b,"__esModule",{value:!0}),b.DiagLogLevel=void 0,(c=b.DiagLogLevel||(b.DiagLogLevel={}))[c.NONE=0]="NONE",c[c.ERROR=30]="ERROR",c[c.WARN=50]="WARN",c[c.INFO=60]="INFO",c[c.DEBUG=70]="DEBUG",c[c.VERBOSE=80]="VERBOSE",c[c.ALL=9999]="ALL"},172:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.unregisterGlobal=b.getGlobal=b.registerGlobal=void 0;let d=c(200),e=c(521),f=c(130),g=e.VERSION.split(".")[0],h=Symbol.for(`opentelemetry.js.api.${g}`),i=d._globalThis;b.registerGlobal=function(a,b,c,d=!1){var f;let g=i[h]=null!=(f=i[h])?f:{version:e.VERSION};if(!d&&g[a]){let b=Error(`@opentelemetry/api: Attempted duplicate registration of API: ${a}`);return c.error(b.stack||b.message),!1}if(g.version!==e.VERSION){let b=Error(`@opentelemetry/api: Registration of version v${g.version} for ${a} does not match previously registered API v${e.VERSION}`);return c.error(b.stack||b.message),!1}return g[a]=b,c.debug(`@opentelemetry/api: Registered a global for ${a} v${e.VERSION}.`),!0},b.getGlobal=function(a){var b,c;let d=null==(b=i[h])?void 0:b.version;if(d&&(0,f.isCompatible)(d))return null==(c=i[h])?void 0:c[a]},b.unregisterGlobal=function(a,b){b.debug(`@opentelemetry/api: Unregistering a global for ${a} v${e.VERSION}.`);let c=i[h];c&&delete c[a]}},130:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.isCompatible=b._makeCompatibilityCheck=void 0;let d=c(521),e=/^(\d+)\.(\d+)\.(\d+)(-(.+))?$/;function f(a){let b=new Set([a]),c=new Set,d=a.match(e);if(!d)return()=>!1;let f={major:+d[1],minor:+d[2],patch:+d[3],prerelease:d[4]};if(null!=f.prerelease)return function(b){return b===a};function g(a){return c.add(a),!1}return function(a){if(b.has(a))return!0;if(c.has(a))return!1;let d=a.match(e);if(!d)return g(a);let h={major:+d[1],minor:+d[2],patch:+d[3],prerelease:d[4]};if(null!=h.prerelease||f.major!==h.major)return g(a);if(0===f.major)return f.minor===h.minor&&f.patch<=h.patch?(b.add(a),!0):g(a);return f.minor<=h.minor?(b.add(a),!0):g(a)}}b._makeCompatibilityCheck=f,b.isCompatible=f(d.VERSION)},886:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.metrics=void 0,b.metrics=c(653).MetricsAPI.getInstance()},901:(a,b)=>{var c;Object.defineProperty(b,"__esModule",{value:!0}),b.ValueType=void 0,(c=b.ValueType||(b.ValueType={}))[c.INT=0]="INT",c[c.DOUBLE=1]="DOUBLE"},102:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.createNoopMeter=b.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=b.NOOP_OBSERVABLE_GAUGE_METRIC=b.NOOP_OBSERVABLE_COUNTER_METRIC=b.NOOP_UP_DOWN_COUNTER_METRIC=b.NOOP_HISTOGRAM_METRIC=b.NOOP_COUNTER_METRIC=b.NOOP_METER=b.NoopObservableUpDownCounterMetric=b.NoopObservableGaugeMetric=b.NoopObservableCounterMetric=b.NoopObservableMetric=b.NoopHistogramMetric=b.NoopUpDownCounterMetric=b.NoopCounterMetric=b.NoopMetric=b.NoopMeter=void 0;class c{createHistogram(a,c){return b.NOOP_HISTOGRAM_METRIC}createCounter(a,c){return b.NOOP_COUNTER_METRIC}createUpDownCounter(a,c){return b.NOOP_UP_DOWN_COUNTER_METRIC}createObservableGauge(a,c){return b.NOOP_OBSERVABLE_GAUGE_METRIC}createObservableCounter(a,c){return b.NOOP_OBSERVABLE_COUNTER_METRIC}createObservableUpDownCounter(a,c){return b.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC}addBatchObservableCallback(a,b){}removeBatchObservableCallback(a){}}b.NoopMeter=c;class d{}b.NoopMetric=d;class e extends d{add(a,b){}}b.NoopCounterMetric=e;class f extends d{add(a,b){}}b.NoopUpDownCounterMetric=f;class g extends d{record(a,b){}}b.NoopHistogramMetric=g;class h{addCallback(a){}removeCallback(a){}}b.NoopObservableMetric=h;class i extends h{}b.NoopObservableCounterMetric=i;class j extends h{}b.NoopObservableGaugeMetric=j;class k extends h{}b.NoopObservableUpDownCounterMetric=k,b.NOOP_METER=new c,b.NOOP_COUNTER_METRIC=new e,b.NOOP_HISTOGRAM_METRIC=new g,b.NOOP_UP_DOWN_COUNTER_METRIC=new f,b.NOOP_OBSERVABLE_COUNTER_METRIC=new i,b.NOOP_OBSERVABLE_GAUGE_METRIC=new j,b.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=new k,b.createNoopMeter=function(){return b.NOOP_METER}},660:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.NOOP_METER_PROVIDER=b.NoopMeterProvider=void 0;let d=c(102);class e{getMeter(a,b,c){return d.NOOP_METER}}b.NoopMeterProvider=e,b.NOOP_METER_PROVIDER=new e},200:function(a,b,c){var d=this&&this.__createBinding||(Object.create?function(a,b,c,d){void 0===d&&(d=c),Object.defineProperty(a,d,{enumerable:!0,get:function(){return b[c]}})}:function(a,b,c,d){void 0===d&&(d=c),a[d]=b[c]}),e=this&&this.__exportStar||function(a,b){for(var c in a)"default"===c||Object.prototype.hasOwnProperty.call(b,c)||d(b,a,c)};Object.defineProperty(b,"__esModule",{value:!0}),e(c(46),b)},651:(b,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c._globalThis=void 0,c._globalThis="object"==typeof globalThis?globalThis:a.g},46:function(a,b,c){var d=this&&this.__createBinding||(Object.create?function(a,b,c,d){void 0===d&&(d=c),Object.defineProperty(a,d,{enumerable:!0,get:function(){return b[c]}})}:function(a,b,c,d){void 0===d&&(d=c),a[d]=b[c]}),e=this&&this.__exportStar||function(a,b){for(var c in a)"default"===c||Object.prototype.hasOwnProperty.call(b,c)||d(b,a,c)};Object.defineProperty(b,"__esModule",{value:!0}),e(c(651),b)},939:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.propagation=void 0,b.propagation=c(181).PropagationAPI.getInstance()},874:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.NoopTextMapPropagator=void 0,b.NoopTextMapPropagator=class{inject(a,b){}extract(a,b){return a}fields(){return[]}}},194:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.defaultTextMapSetter=b.defaultTextMapGetter=void 0,b.defaultTextMapGetter={get(a,b){if(null!=a)return a[b]},keys:a=>null==a?[]:Object.keys(a)},b.defaultTextMapSetter={set(a,b,c){null!=a&&(a[b]=c)}}},845:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.trace=void 0,b.trace=c(997).TraceAPI.getInstance()},403:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.NonRecordingSpan=void 0;let d=c(476);b.NonRecordingSpan=class{constructor(a=d.INVALID_SPAN_CONTEXT){this._spanContext=a}spanContext(){return this._spanContext}setAttribute(a,b){return this}setAttributes(a){return this}addEvent(a,b){return this}setStatus(a){return this}updateName(a){return this}end(a){}isRecording(){return!1}recordException(a,b){}}},614:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.NoopTracer=void 0;let d=c(491),e=c(607),f=c(403),g=c(139),h=d.ContextAPI.getInstance();b.NoopTracer=class{startSpan(a,b,c=h.active()){var d;if(null==b?void 0:b.root)return new f.NonRecordingSpan;let i=c&&(0,e.getSpanContext)(c);return"object"==typeof(d=i)&&"string"==typeof d.spanId&&"string"==typeof d.traceId&&"number"==typeof d.traceFlags&&(0,g.isSpanContextValid)(i)?new f.NonRecordingSpan(i):new f.NonRecordingSpan}startActiveSpan(a,b,c,d){let f,g,i;if(arguments.length<2)return;2==arguments.length?i=b:3==arguments.length?(f=b,i=c):(f=b,g=c,i=d);let j=null!=g?g:h.active(),k=this.startSpan(a,f,j),l=(0,e.setSpan)(j,k);return h.with(l,i,void 0,k)}}},124:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.NoopTracerProvider=void 0;let d=c(614);b.NoopTracerProvider=class{getTracer(a,b,c){return new d.NoopTracer}}},125:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.ProxyTracer=void 0;let d=new(c(614)).NoopTracer;b.ProxyTracer=class{constructor(a,b,c,d){this._provider=a,this.name=b,this.version=c,this.options=d}startSpan(a,b,c){return this._getTracer().startSpan(a,b,c)}startActiveSpan(a,b,c,d){let e=this._getTracer();return Reflect.apply(e.startActiveSpan,e,arguments)}_getTracer(){if(this._delegate)return this._delegate;let a=this._provider.getDelegateTracer(this.name,this.version,this.options);return a?(this._delegate=a,this._delegate):d}}},846:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.ProxyTracerProvider=void 0;let d=c(125),e=new(c(124)).NoopTracerProvider;b.ProxyTracerProvider=class{getTracer(a,b,c){var e;return null!=(e=this.getDelegateTracer(a,b,c))?e:new d.ProxyTracer(this,a,b,c)}getDelegate(){var a;return null!=(a=this._delegate)?a:e}setDelegate(a){this._delegate=a}getDelegateTracer(a,b,c){var d;return null==(d=this._delegate)?void 0:d.getTracer(a,b,c)}}},996:(a,b)=>{var c;Object.defineProperty(b,"__esModule",{value:!0}),b.SamplingDecision=void 0,(c=b.SamplingDecision||(b.SamplingDecision={}))[c.NOT_RECORD=0]="NOT_RECORD",c[c.RECORD=1]="RECORD",c[c.RECORD_AND_SAMPLED=2]="RECORD_AND_SAMPLED"},607:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.getSpanContext=b.setSpanContext=b.deleteSpan=b.setSpan=b.getActiveSpan=b.getSpan=void 0;let d=c(780),e=c(403),f=c(491),g=(0,d.createContextKey)("OpenTelemetry Context Key SPAN");function h(a){return a.getValue(g)||void 0}function i(a,b){return a.setValue(g,b)}b.getSpan=h,b.getActiveSpan=function(){return h(f.ContextAPI.getInstance().active())},b.setSpan=i,b.deleteSpan=function(a){return a.deleteValue(g)},b.setSpanContext=function(a,b){return i(a,new e.NonRecordingSpan(b))},b.getSpanContext=function(a){var b;return null==(b=h(a))?void 0:b.spanContext()}},325:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.TraceStateImpl=void 0;let d=c(564);class e{constructor(a){this._internalState=new Map,a&&this._parse(a)}set(a,b){let c=this._clone();return c._internalState.has(a)&&c._internalState.delete(a),c._internalState.set(a,b),c}unset(a){let b=this._clone();return b._internalState.delete(a),b}get(a){return this._internalState.get(a)}serialize(){return this._keys().reduce((a,b)=>(a.push(b+"="+this.get(b)),a),[]).join(",")}_parse(a){!(a.length>512)&&(this._internalState=a.split(",").reverse().reduce((a,b)=>{let c=b.trim(),e=c.indexOf("=");if(-1!==e){let f=c.slice(0,e),g=c.slice(e+1,b.length);(0,d.validateKey)(f)&&(0,d.validateValue)(g)&&a.set(f,g)}return a},new Map),this._internalState.size>32&&(this._internalState=new Map(Array.from(this._internalState.entries()).reverse().slice(0,32))))}_keys(){return Array.from(this._internalState.keys()).reverse()}_clone(){let a=new e;return a._internalState=new Map(this._internalState),a}}b.TraceStateImpl=e},564:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.validateValue=b.validateKey=void 0;let c="[_0-9a-z-*/]",d=`[a-z]${c}{0,255}`,e=`[a-z0-9]${c}{0,240}@[a-z]${c}{0,13}`,f=RegExp(`^(?:${d}|${e})$`),g=/^[ -~]{0,255}[!-~]$/,h=/,|=/;b.validateKey=function(a){return f.test(a)},b.validateValue=function(a){return g.test(a)&&!h.test(a)}},98:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.createTraceState=void 0;let d=c(325);b.createTraceState=function(a){return new d.TraceStateImpl(a)}},476:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.INVALID_SPAN_CONTEXT=b.INVALID_TRACEID=b.INVALID_SPANID=void 0;let d=c(475);b.INVALID_SPANID="0000000000000000",b.INVALID_TRACEID="00000000000000000000000000000000",b.INVALID_SPAN_CONTEXT={traceId:b.INVALID_TRACEID,spanId:b.INVALID_SPANID,traceFlags:d.TraceFlags.NONE}},357:(a,b)=>{var c;Object.defineProperty(b,"__esModule",{value:!0}),b.SpanKind=void 0,(c=b.SpanKind||(b.SpanKind={}))[c.INTERNAL=0]="INTERNAL",c[c.SERVER=1]="SERVER",c[c.CLIENT=2]="CLIENT",c[c.PRODUCER=3]="PRODUCER",c[c.CONSUMER=4]="CONSUMER"},139:(a,b,c)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.wrapSpanContext=b.isSpanContextValid=b.isValidSpanId=b.isValidTraceId=void 0;let d=c(476),e=c(403),f=/^([0-9a-f]{32})$/i,g=/^[0-9a-f]{16}$/i;function h(a){return f.test(a)&&a!==d.INVALID_TRACEID}function i(a){return g.test(a)&&a!==d.INVALID_SPANID}b.isValidTraceId=h,b.isValidSpanId=i,b.isSpanContextValid=function(a){return h(a.traceId)&&i(a.spanId)},b.wrapSpanContext=function(a){return new e.NonRecordingSpan(a)}},847:(a,b)=>{var c;Object.defineProperty(b,"__esModule",{value:!0}),b.SpanStatusCode=void 0,(c=b.SpanStatusCode||(b.SpanStatusCode={}))[c.UNSET=0]="UNSET",c[c.OK=1]="OK",c[c.ERROR=2]="ERROR"},475:(a,b)=>{var c;Object.defineProperty(b,"__esModule",{value:!0}),b.TraceFlags=void 0,(c=b.TraceFlags||(b.TraceFlags={}))[c.NONE=0]="NONE",c[c.SAMPLED=1]="SAMPLED"},521:(a,b)=>{Object.defineProperty(b,"__esModule",{value:!0}),b.VERSION=void 0,b.VERSION="1.6.0"}},y={};function z(a){var b=y[a];if(void 0!==b)return b.exports;var c=y[a]={exports:{}},d=!0;try{x[a].call(c.exports,c,c.exports,z),d=!1}finally{d&&delete y[a]}return c.exports}z.ab="/ROOT/node_modules/next/dist/compiled/@opentelemetry/api/";var A={};Object.defineProperty(A,"__esModule",{value:!0}),A.trace=A.propagation=A.metrics=A.diag=A.context=A.INVALID_SPAN_CONTEXT=A.INVALID_TRACEID=A.INVALID_SPANID=A.isValidSpanId=A.isValidTraceId=A.isSpanContextValid=A.createTraceState=A.TraceFlags=A.SpanStatusCode=A.SpanKind=A.SamplingDecision=A.ProxyTracerProvider=A.ProxyTracer=A.defaultTextMapSetter=A.defaultTextMapGetter=A.ValueType=A.createNoopMeter=A.DiagLogLevel=A.DiagConsoleLogger=A.ROOT_CONTEXT=A.createContextKey=A.baggageEntryMetadataFromString=void 0,h=z(369),Object.defineProperty(A,"baggageEntryMetadataFromString",{enumerable:!0,get:function(){return h.baggageEntryMetadataFromString}}),i=z(780),Object.defineProperty(A,"createContextKey",{enumerable:!0,get:function(){return i.createContextKey}}),Object.defineProperty(A,"ROOT_CONTEXT",{enumerable:!0,get:function(){return i.ROOT_CONTEXT}}),j=z(972),Object.defineProperty(A,"DiagConsoleLogger",{enumerable:!0,get:function(){return j.DiagConsoleLogger}}),k=z(957),Object.defineProperty(A,"DiagLogLevel",{enumerable:!0,get:function(){return k.DiagLogLevel}}),l=z(102),Object.defineProperty(A,"createNoopMeter",{enumerable:!0,get:function(){return l.createNoopMeter}}),m=z(901),Object.defineProperty(A,"ValueType",{enumerable:!0,get:function(){return m.ValueType}}),n=z(194),Object.defineProperty(A,"defaultTextMapGetter",{enumerable:!0,get:function(){return n.defaultTextMapGetter}}),Object.defineProperty(A,"defaultTextMapSetter",{enumerable:!0,get:function(){return n.defaultTextMapSetter}}),o=z(125),Object.defineProperty(A,"ProxyTracer",{enumerable:!0,get:function(){return o.ProxyTracer}}),p=z(846),Object.defineProperty(A,"ProxyTracerProvider",{enumerable:!0,get:function(){return p.ProxyTracerProvider}}),q=z(996),Object.defineProperty(A,"SamplingDecision",{enumerable:!0,get:function(){return q.SamplingDecision}}),r=z(357),Object.defineProperty(A,"SpanKind",{enumerable:!0,get:function(){return r.SpanKind}}),s=z(847),Object.defineProperty(A,"SpanStatusCode",{enumerable:!0,get:function(){return s.SpanStatusCode}}),t=z(475),Object.defineProperty(A,"TraceFlags",{enumerable:!0,get:function(){return t.TraceFlags}}),u=z(98),Object.defineProperty(A,"createTraceState",{enumerable:!0,get:function(){return u.createTraceState}}),v=z(139),Object.defineProperty(A,"isSpanContextValid",{enumerable:!0,get:function(){return v.isSpanContextValid}}),Object.defineProperty(A,"isValidTraceId",{enumerable:!0,get:function(){return v.isValidTraceId}}),Object.defineProperty(A,"isValidSpanId",{enumerable:!0,get:function(){return v.isValidSpanId}}),w=z(476),Object.defineProperty(A,"INVALID_SPANID",{enumerable:!0,get:function(){return w.INVALID_SPANID}}),Object.defineProperty(A,"INVALID_TRACEID",{enumerable:!0,get:function(){return w.INVALID_TRACEID}}),Object.defineProperty(A,"INVALID_SPAN_CONTEXT",{enumerable:!0,get:function(){return w.INVALID_SPAN_CONTEXT}}),c=z(67),Object.defineProperty(A,"context",{enumerable:!0,get:function(){return c.context}}),d=z(506),Object.defineProperty(A,"diag",{enumerable:!0,get:function(){return d.diag}}),e=z(886),Object.defineProperty(A,"metrics",{enumerable:!0,get:function(){return e.metrics}}),f=z(939),Object.defineProperty(A,"propagation",{enumerable:!0,get:function(){return f.propagation}}),g=z(845),Object.defineProperty(A,"trace",{enumerable:!0,get:function(){return g.trace}}),A.default={context:c.context,diag:d.diag,metrics:e.metrics,propagation:f.propagation,trace:g.trace},b.exports=A})()},75164,a=>{"use strict";let b,c;var d=a.i(18970);let e=process.env.NEXT_OTEL_PERFORMANCE_PREFIX;try{b=a.r(70406)}catch(c){b=a.r(62562)}let{context:f,propagation:g,trace:h,SpanStatusCode:i,SpanKind:j,ROOT_CONTEXT:k}=b;class l extends Error{constructor(a,b){super(),this.bubble=a,this.result=b}}function m(a){return"object"==typeof a&&null!==a&&a instanceof l}let n=(a,b)=>{m(b)&&b.bubble?a.setAttribute("next.bubble",!0):(b&&(a.recordException(b),a.setAttribute("error.type",b.name)),a.setStatus({code:i.ERROR,message:null==b?void 0:b.message})),a.end()},o=new Map,p=b.createContextKey("next.rootSpanId"),q=0,r={set(a,b,c){a.push({key:b,value:c})}},s=(c=new class a{getTracerInstance(){return h.getTracer("next.js","0.0.1")}getContext(){return f}getTracePropagationData(){let a=f.active(),b=[];return g.inject(a,b,r),b}getActiveScopeSpan(){return h.getSpan(null==f?void 0:f.active())}withPropagatedContext(a,b,c,d=!1){let e=f.active();if(d){let d=g.extract(k,a,c);if(h.getSpanContext(d))return f.with(d,b);let i=g.extract(e,a,c);return f.with(i,b)}if(h.getSpanContext(e))return b();let i=g.extract(e,a,c);return f.with(i,b)}trace(...a){let[b,c,g]=a,{fn:h,options:i}="function"==typeof c?{fn:c,options:{}}:{fn:g,options:{...c}},j=i.spanName??b;if(!d.NextVanillaSpanAllowlist.has(b)&&"1"!==process.env.NEXT_OTEL_VERBOSE||i.hideSpan)return h();let l=this.getSpanContext((null==i?void 0:i.parentSpan)??this.getActiveScopeSpan());l||(l=(null==f?void 0:f.active())??k);let m=l.getValue(p),r="number"!=typeof m||!o.has(m),s=q++;return i.attributes={"next.span_name":j,"next.span_type":b,...i.attributes},f.with(l.setValue(p,s),()=>this.getTracerInstance().startActiveSpan(j,i,a=>{let c;e&&b&&d.LogSpanAllowList.has(b)&&(c="performance"in globalThis&&"measure"in performance?globalThis.performance.now():void 0);let f=!1,g=()=>{!f&&(f=!0,o.delete(s),c&&performance.measure(`${e}:next-${(b.split(".").pop()||"").replace(/[A-Z]/g,a=>"-"+a.toLowerCase())}`,{start:c,end:performance.now()}))};if(r&&o.set(s,new Map(Object.entries(i.attributes??{}))),h.length>1)try{return h(a,b=>n(a,b))}catch(b){throw n(a,b),b}finally{g()}try{let b=h(a);if(null!==b&&"object"==typeof b&&"then"in b&&"function"==typeof b.then)return b.then(b=>(a.end(),b)).catch(b=>{throw n(a,b),b}).finally(g);return a.end(),g(),b}catch(b){throw n(a,b),g(),b}}))}wrap(...a){let b=this,[c,e,g]=3===a.length?a:[a[0],{},a[1]];return d.NextVanillaSpanAllowlist.has(c)||"1"===process.env.NEXT_OTEL_VERBOSE?function(){let a=e;"function"==typeof a&&"function"==typeof g&&(a=a.apply(this,arguments));let d=arguments.length-1,h=arguments[d];if("function"!=typeof h)return b.trace(c,a,()=>g.apply(this,arguments));{let e=b.getContext().bind(f.active(),h);return b.trace(c,a,(a,b)=>(arguments[d]=function(a){return null==b||b(a),e.apply(this,arguments)},g.apply(this,arguments)))}}:g}startSpan(...a){let[b,c]=a,d=this.getSpanContext((null==c?void 0:c.parentSpan)??this.getActiveScopeSpan());return this.getTracerInstance().startSpan(b,c,d)}getSpanContext(a){return a?h.setSpan(f.active(),a):void 0}getRootSpanAttributes(){let a=f.active().getValue(p);return o.get(a)}setRootSpanAttribute(a,b){let c=f.active().getValue(p),d=o.get(c);d&&!d.has(a)&&d.set(a,b)}withSpan(a,b){let c=h.setSpan(f.active(),a);return f.with(c,b)}},()=>c);a.s(["BubbledError",0,l,"SpanKind",0,j,"SpanStatusCode",0,i,"getTracer",0,s,"isBubbledError",0,m],75164)},30106,a=>{"use strict";let b=Symbol.for("NextInternalRequestMeta");function c(a,c){let d=a[b]||{};return"string"==typeof c?d[c]:d}function d(a,c){return a[b]=c,c}a.s(["NEXT_REQUEST_META",0,b,"addRequestMeta",0,function(a,b,e){let f=c(a);return f[b]=e,d(a,f)},"getRequestMeta",0,c,"removeRequestMeta",0,function(a,b){let e=c(a);return delete e[b],d(a,e)},"setRequestMeta",0,d])},60644,a=>{"use strict";a.s(["interopDefault",0,function(a){return a.default||a}])},91562,a=>{"use strict";let b="next-router-state-tree",c="next-router-prefetch",d="next-router-segment-prefetch",e="next-hmr-refresh",f=["rsc",b,c,e,d];a.s(["ACTION_HEADER",0,"next-action","FLIGHT_HEADERS",0,f,"NEXT_ACTION_NOT_FOUND_HEADER",0,"x-nextjs-action-not-found","NEXT_ACTION_REVALIDATED_HEADER",0,"x-action-revalidated","NEXT_DID_POSTPONE_HEADER",0,"x-nextjs-postponed","NEXT_HMR_REFRESH_HASH_COOKIE",0,"__next_hmr_refresh_hash__","NEXT_HMR_REFRESH_HEADER",0,e,"NEXT_HTML_REQUEST_ID_HEADER",0,"x-nextjs-html-request-id","NEXT_INSTANT_PREFETCH_HEADER",0,"next-instant-navigation-testing-prefetch","NEXT_INSTANT_TEST_COOKIE",0,"next-instant-navigation-testing","NEXT_IS_PRERENDER_HEADER",0,"x-nextjs-prerender","NEXT_REQUEST_ID_HEADER",0,"x-nextjs-request-id","NEXT_REWRITTEN_PATH_HEADER",0,"x-nextjs-rewritten-path","NEXT_REWRITTEN_QUERY_HEADER",0,"x-nextjs-rewritten-query","NEXT_ROUTER_PREFETCH_HEADER",0,c,"NEXT_ROUTER_SEGMENT_PREFETCH_HEADER",0,d,"NEXT_ROUTER_STALE_TIME_HEADER",0,"x-nextjs-stale-time","NEXT_ROUTER_STATE_TREE_HEADER",0,b,"NEXT_RSC_UNION_QUERY",0,"_rsc","NEXT_URL",0,"next-url","RSC_CONTENT_TYPE_HEADER",0,"text/x-component","RSC_HEADER",0,"rsc"])},56952,a=>{"use strict";var b=a.i(91562);a.s(["stripFlightHeaders",0,function(a){for(let c of b.FLIGHT_HEADERS)delete a[c]}])},71717,a=>{"use strict";var b,c=((b={})[b.SeeOther=303]="SeeOther",b[b.TemporaryRedirect=307]="TemporaryRedirect",b[b.PermanentRedirect=308]="PermanentRedirect",b);a.s(["RedirectStatusCode",0,c])},77341,a=>{"use strict";a.i(75164),Symbol("__next_preview_data");let b=Symbol("__prerender_bypass");var c,d=a.i(30106),e=a.i(71717);class f{constructor(a,b,c){this.method=a,this.url=b,this.body=c}get cookies(){var b;return this._cookies?this._cookies:this._cookies=(b=this.headers,function(){let{cookie:c}=b;if(!c)return{};let{parse:d}=a.r(20460);return d(Array.isArray(c)?c.join("; "):c)})()}}class g{constructor(a){this.destination=a}redirect(a,b){return this.setHeader("Location",a),this.statusCode=b,b===e.RedirectStatusCode.PermanentRedirect&&this.setHeader("Refresh",`0;url=${a}`),this}}class h extends f{static #a=c=d.NEXT_REQUEST_META;constructor(a){var b;super(a.method.toUpperCase(),a.url,a),this._req=a,this.headers=this._req.headers,this.fetchMetrics=null==(b=this._req)?void 0:b.fetchMetrics,this[c]=this._req[d.NEXT_REQUEST_META]||{},this.streaming=!1}get originalRequest(){return this._req[d.NEXT_REQUEST_META]=this[d.NEXT_REQUEST_META],this._req.url=this.url,this._req.cookies=this.cookies,this._req}set originalRequest(a){this._req=a}stream(){if(this.streaming)throw Object.defineProperty(Error("Invariant: NodeNextRequest.stream() can only be called once"),"__NEXT_ERROR_CODE",{value:"E467",enumerable:!1,configurable:!0});return this.streaming=!0,new ReadableStream({start:a=>{this._req.on("data",b=>{a.enqueue(new Uint8Array(b))}),this._req.on("end",()=>{a.close()}),this._req.on("error",b=>{a.error(b)})}})}}a.s(["NodeNextRequest",0,h,"NodeNextResponse",0,class extends g{get originalResponse(){return b in this&&(this._res[b]=this[b]),this._res}constructor(a){super(a),this._res=a,this.textBody=void 0}get sent(){return this._res.finished||this._res.headersSent}get statusCode(){return this._res.statusCode}set statusCode(a){this._res.statusCode=a}get statusMessage(){return this._res.statusMessage}set statusMessage(a){this._res.statusMessage=a}setHeader(a,b){return this._res.setHeader(a,b),this}removeHeader(a){return this._res.removeHeader(a),this}getHeaderValues(a){let b=this._res.getHeader(a);if(void 0!==b)return(Array.isArray(b)?b:[b]).map(a=>a.toString())}hasHeader(a){return this._res.hasHeader(a)}getHeader(a){let b=this.getHeaderValues(a);return Array.isArray(b)?b.join(","):void 0}getHeaders(){return this._res.getHeaders()}appendHeader(a,b){let c=this.getHeaderValues(a)??[];return c.includes(b)||this._res.setHeader(a,[...c,b]),this}body(a){return this.textBody=a,this}send(){this._res.end(this.textBody)}onClose(a){this.originalResponse.on("close",a)}}],77341)},94290,a=>{"use strict";a.s(["checkIsAppPPREnabled",0,function(a){return void 0!==a&&("boolean"==typeof a?a:"incremental"===a)},"checkIsRoutePPREnabled",0,function(a){return void 0!==a&&"boolean"==typeof a&&a}])},46994,a=>{"use strict";a.s(["isRSCRequestHeader",0,function(a){return"1"===a}])},85034,a=>{"use strict";a.s(["InvariantError",0,class extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}])},41763,32885,a=>{"use strict";function b(a){return"("===a[0]&&a.endsWith(")")}a.s(["DEFAULT_SEGMENT_KEY",0,"__DEFAULT__","PAGE_SEGMENT_KEY",0,"__PAGE__","isGroupSegment",0,b],32885),a.s(["compareAppPaths",0,function(a,b){let c=a.includes("/@"),d=b.includes("/@");return c&&!d?-1:!c&&d?1:a.localeCompare(b)},"normalizeAppPath",0,function(a){var c;return(c=a.split("/").reduce((a,c,d,e)=>!c||b(c)||"@"===c[0]||("page"===c||"route"===c)&&d===e.length-1?a:`${a}/${c}`,"")).startsWith("/")?c:`/${c}`},"normalizeRscURL",0,function(a){return a.replace(/\.rsc($|\?)/,"$1")}],41763)},66482,a=>{"use strict";var b=a.i(41763);let c=["(..)(..)","(.)","(..)","(...)"];a.s(["INTERCEPTION_ROUTE_MARKERS",0,c,"extractInterceptionRouteInformation",0,function(a){let d,e,f;for(let b of a.split("/"))if(e=c.find(a=>b.startsWith(a))){[d,f]=a.split(e,2);break}if(!d||!e||!f)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Must be in the format //(..|...|..)(..)/`),"__NEXT_ERROR_CODE",{value:"E269",enumerable:!1,configurable:!0});switch(d=(0,b.normalizeAppPath)(d),e){case"(.)":f="/"===d?`/${f}`:d+"/"+f;break;case"(..)":if("/"===d)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Cannot use (..) marker at the root level, use (.) instead.`),"__NEXT_ERROR_CODE",{value:"E207",enumerable:!1,configurable:!0});f=d.split("/").slice(0,-1).concat(f).join("/");break;case"(...)":f="/"+f;break;case"(..)(..)":let g=d.split("/");if(g.length<=2)throw Object.defineProperty(Error(`Invalid interception route: ${a}. Cannot use (..)(..) marker at the root level or one level up.`),"__NEXT_ERROR_CODE",{value:"E486",enumerable:!1,configurable:!0});f=g.slice(0,-2).concat(f).join("/");break;default:throw Object.defineProperty(Error("Invariant: unexpected marker"),"__NEXT_ERROR_CODE",{value:"E112",enumerable:!1,configurable:!0})}return{interceptingRoute:d,interceptedRoute:f}},"isInterceptionRouteAppPath",0,function(a){return void 0!==a.split("/").find(a=>c.find(b=>a.startsWith(b)))}])},91505,a=>{"use strict";var b=a.i(66482);a.s(["getParamProperties",0,function(a){let b=!1,c=!1;switch(a){case"catchall":case"catchall-intercepted-(..)(..)":case"catchall-intercepted-(.)":case"catchall-intercepted-(..)":case"catchall-intercepted-(...)":b=!0;break;case"optional-catchall":b=!0,c=!0}return{repeat:b,optional:c}},"getSegmentParam",0,function(a){let c=b.INTERCEPTION_ROUTE_MARKERS.find(b=>a.startsWith(b));return(c&&(a=a.slice(c.length)),a.startsWith("[[...")&&a.endsWith("]]"))?{paramType:"optional-catchall",paramName:a.slice(5,-2)}:a.startsWith("[...")&&a.endsWith("]")?{paramType:c?`catchall-intercepted-${c}`:"catchall",paramName:a.slice(4,-1)}:a.startsWith("[")&&a.endsWith("]")?{paramType:c?`dynamic-intercepted-${c}`:"dynamic",paramName:a.slice(1,-1)}:null},"isCatchAll",0,function(a){return"catchall"===a||"catchall-intercepted-(..)(..)"===a||"catchall-intercepted-(.)"===a||"catchall-intercepted-(..)"===a||"catchall-intercepted-(...)"===a||"optional-catchall"===a}])},90588,a=>{"use strict";var b=a.i(85034),c=a.i(91505),d=a.i(66482);function e(a){if(""===a)return null;let b=d.INTERCEPTION_ROUTE_MARKERS.find(b=>a.startsWith(b)),e=(0,c.getSegmentParam)(a);return e?{type:"dynamic",name:a,param:e,interceptionMarker:b}:a.startsWith("(")&&a.endsWith(")")?{type:"route-group",name:a,interceptionMarker:b}:a.startsWith("@")?{type:"parallel-route",name:a,interceptionMarker:b}:{type:"static",name:a,interceptionMarker:b}}var f=a.i(32885);function g(a){let[b,c,d,e]=a,{layout:g,template:h}=d,{page:i}=d;i=b===f.DEFAULT_SEGMENT_KEY?d.defaultPage:i;let j=g?.[1]||h?.[1]||i?.[1];return{page:i,segment:b,modules:d,conventionPath:j,parallelRoutes:c,staticSiblings:e}}function h(a){switch(a){case"catchall-intercepted-(..)(..)":case"dynamic-intercepted-(..)(..)":return"(..)(..)";case"catchall-intercepted-(.)":case"dynamic-intercepted-(.)":return"(.)";case"catchall-intercepted-(..)":case"dynamic-intercepted-(..)":return"(..)";case"catchall-intercepted-(...)":case"dynamic-intercepted-(...)":return"(...)";default:return null}}function i(a,c,d,e,f){switch(c){case"catchall":case"optional-catchall":case"catchall-intercepted-(..)(..)":case"catchall-intercepted-(.)":case"catchall-intercepted-(..)":case"catchall-intercepted-(...)":let g=[];for(let a=d;a0)return g;if("optional-catchall"===c)return;throw Object.defineProperty(new b.InvariantError(`Unexpected empty path segments match for a route "${e.pathname}" with param "${a}" of type "${c}"`),"__NEXT_ERROR_CODE",{value:"E931",enumerable:!1,configurable:!0});case"dynamic":case"dynamic-intercepted-(..)(..)":case"dynamic-intercepted-(.)":case"dynamic-intercepted-(..)":case"dynamic-intercepted-(...)":if(d"dynamic"===a.type);return{normalized:f,pathname:d,segments:k,dynamicSegments:l,interceptionMarker:g,interceptingRoute:h,interceptedRoute:i}}(a,!0),{pathnameRouteParamSegments:h,params:j}=function(a,b){let c=[],d={},f=[{tree:a,depth:0,currentPath:[]}];for(;f.length>0;){let{tree:a,depth:h,currentPath:j}=f.shift(),{segment:k,parallelRoutes:l}=g(a),m=j,n=h,o=e(k);if(o&&"route-group"!==o.type&&"parallel-route"!==o.type&&(m=[...j,o],n=h+1),(null==o?void 0:o.type)==="dynamic"){let{paramName:a,paramType:e}=o.param;if(h({paramName:a,paramType:b}));return!function(a,b,c,d){let f=[{tree:a,depth:0}];for(;f.length>0;){let{tree:a,depth:h}=f.pop(),{segment:j,parallelRoutes:k}=g(a),l=e(j);if((null==l?void 0:l.type)==="dynamic"&&!b.hasOwnProperty(l.param.paramName)&&!d.some(a=>a.paramName===l.param.paramName)){let{paramName:a,paramType:e}=l.param,f=i(a,e,h,c,b);void 0!==f?b[a]=f:"optional-catchall"!==e&&d.push({paramName:a,paramType:e})}let m=h;for(let a of(l&&"route-group"!==l.type&&"parallel-route"!==l.type&&m++,Object.values(k)))f.push({tree:a,depth:m})}}(d.userland.loaderTree,j,f,l),k(l)},"getPlaceholderFallbackRouteParams",0,function(a,b){return b.filter(b=>{let c=l(b),d=null==a?void 0:a[b.paramName];return d===c||Array.isArray(d)&&1===d.length&&d[0]===c})}],90588)},38549,83838,7696,a=>{"use strict";function b(a){let b=a.indexOf("#"),c=a.indexOf("?"),d=c>-1&&(b<0||c-1?{pathname:a.substring(0,d?c:b),query:d?a.substring(c,b>-1?b:void 0):"",hash:b>-1?a.slice(b):""}:{pathname:a,query:"",hash:""}}function c(a,c){if("string"!=typeof a)return!1;let{pathname:d}=b(a);return d===c||d.startsWith(c+"/")}a.s(["parsePath",0,b],38549),a.s(["pathHasPrefix",0,c],83838),a.s(["removePathPrefix",0,function(a,b){if(!c(a,b))return a;let d=a.slice(b.length);return d.startsWith("/")?d:`/${d}`}],7696)},33169,a=>{"use strict";var b=a.i(85034),c=a.i(41763),d=a.i(83838),e=a.i(7696),f=a.i(56704);let g=Symbol.for("next.server.manifests"),h=globalThis;function i(a){return(0,d.pathHasPrefix)(a,"app")?a:"app"+a}function j(){let a=h[g];if(!a)throw Object.defineProperty(new b.InvariantError("The manifests singleton was not initialized."),"__NEXT_ERROR_CODE",{value:"E950",enumerable:!1,configurable:!0});return a}function k(){return j().serverActionsManifest}a.s(["getClientReferenceManifest",0,function(){return j().proxiedClientReferenceManifest},"getServerActionsManifest",0,k,"getServerModuleMap",0,function(){return j().serverModuleMap},"selectWorkerForForwarding",0,function(a,b){var d,f;let g=null==(d=k().node[a])?void 0:d.workers;if(g&&!g[i(b)])return f=Object.keys(g)[0],(0,c.normalizeAppPath)((0,e.removePathPrefix)(f,"app"))},"setManifestsSingleton",0,function({page:a,clientReferenceManifest:d,serverActionsManifest:e}){let j=h[g],l={encryptionKey:e.encryptionKey,node:Object.assign(Object.create(null),e.node),edge:Object.assign(Object.create(null),e.edge)};if(j)j.clientReferenceManifestsPerRoute.set((0,c.normalizeAppPath)(a),d),j.serverActionsManifest=l;else{let e,j=new Map([[(0,c.normalizeAppPath)(a),d]]),m=(e=new Map,new Proxy({},{get(a,c){let d=f.workAsyncStorage.getStore();switch(c){case"moduleLoading":case"entryCSSFiles":case"entryJSFiles":{if(!d)throw Object.defineProperty(new b.InvariantError(`Cannot access "${c}" without a work store.`),"__NEXT_ERROR_CODE",{value:"E952",enumerable:!1,configurable:!0});let a=j.get(d.route);if(!a)throw Object.defineProperty(new b.InvariantError(`The client reference manifest for route "${d.route}" does not exist.`),"__NEXT_ERROR_CODE",{value:"E951",enumerable:!1,configurable:!0});return a[c]}case"clientModules":case"rscModuleMapping":case"edgeRscModuleMapping":case"ssrModuleMapping":case"edgeSSRModuleMapping":{let a=e.get(c);!a&&(a=new Proxy({},{get(a,b){let d=f.workAsyncStorage.getStore();if(d){let a=j.get(d.route);if(null==a?void 0:a[c][b])return a[c][b]}else for(let a of j.values()){let d=a[c][b];if(void 0!==d)return d}}}),e.set(c,a));return a}default:throw Object.defineProperty(new b.InvariantError(`This is a proxied client reference manifest. The property "${String(c)}" is not handled.`),"__NEXT_ERROR_CODE",{value:"E953",enumerable:!1,configurable:!0})}}}));h[g]={clientReferenceManifestsPerRoute:j,proxiedClientReferenceManifest:m,serverActionsManifest:l,serverModuleMap:new Proxy({},{get:(a,b)=>{var c,d;let e,g=null==(d=k().node)||null==(c=d[b])?void 0:c.workers;if(!g)return;let h=f.workAsyncStorage.getStore();if(!(e=h?g[i(h.page)]:Object.values(g).at(0)))return;let{moduleId:j,async:l}=e;return{id:j,name:b,chunks:[],async:l}}})}}}])},49670,a=>{"use strict";let b=/[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i,c=/Googlebot(?!-)|Googlebot$/i,d=b.source;a.s(["HTML_LIMITED_BOT_UA_RE_STRING",0,d,"getBotType",0,function(a){return c.test(a)?"dom":b.test(a)?"html":void 0},"isBot",0,function(a){return c.test(a)||b.test(a)}],49670)},37111,a=>{"use strict";var b=a.i(49670);a.s(["isHtmlBotRequest",0,function(a){let c=a.headers["user-agent"]||"";return"html"===(0,b.getBotType)(c)},"shouldServeStreamingMetadata",0,function(a,c){let d=RegExp(c||b.HTML_LIMITED_BOT_UA_RE_STRING,"i");return!(a&&d.test(a))}])},8950,a=>{"use strict";var b=a.i(91562);function c(a){let c,d;a.headers instanceof Headers?(c=a.headers.get(b.ACTION_HEADER)??null,d=a.headers.get("content-type")):(c=a.headers[b.ACTION_HEADER]??null,d=a.headers["content-type"]??null);let e="POST"===a.method&&"application/x-www-form-urlencoded"===d,f=!!("POST"===a.method&&(null==d?void 0:d.startsWith("multipart/form-data"))),g=void 0!==c&&"string"==typeof c&&"POST"===a.method;return{actionId:c,isURLEncodedAction:e,isMultipartAction:f,isFetchAction:g,isPossibleServerAction:!!(g||e||f)}}a.s(["getIsPossibleServerAction",0,function(a){return c(a).isPossibleServerAction},"getServerActionRequestMetadata",0,c])},68113,a=>{"use strict";let b=a=>{setImmediate(a)};a.s(["atLeastOneTask",0,function(){return new Promise(a=>b(a))},"scheduleImmediate",0,b,"scheduleOnNextTick",0,a=>{Promise.resolve().then(()=>{process.nextTick(a)})},"waitAtLeastOneReactRenderTask",0,function(){return new Promise(a=>setImmediate(a))}])},276,a=>{"use strict";var b,c,d=((b={}).APP_PAGE="APP_PAGE",b.APP_ROUTE="APP_ROUTE",b.PAGES="PAGES",b.FETCH="FETCH",b.REDIRECT="REDIRECT",b.IMAGE="IMAGE",b),e=((c={}).APP_PAGE="APP_PAGE",c.APP_ROUTE="APP_ROUTE",c.PAGES="PAGES",c.FETCH="FETCH",c.IMAGE="IMAGE",c);a.s(["CachedRouteKind",0,d,"IncrementalCacheKind",0,e])},12213,a=>{"use strict";let b={OPENING:{HTML:new Uint8Array([60,104,116,109,108]),HEAD:new Uint8Array([60,104,101,97,100]),BODY:new Uint8Array([60,98,111,100,121])},CLOSED:{HEAD:new Uint8Array([60,47,104,101,97,100,62]),BODY:new Uint8Array([60,47,98,111,100,121,62]),HTML:new Uint8Array([60,47,104,116,109,108,62]),BODY_AND_HTML:new Uint8Array([60,47,98,111,100,121,62,60,47,104,116,109,108,62])},META:{ICON_MARK:new Uint8Array([60,109,101,116,97,32,110,97,109,101,61,34,194,171,110,120,116,45,105,99,111,110,194,187,34])}};a.s(["ENCODED_TAGS",0,b])},22693,26026,a=>{"use strict";var b=a.i(75164),c=a.i(18970);class d{constructor(){let a,b;this.promise=new Promise((c,d)=>{a=c,b=d}),this.resolve=a,this.reject=b}}a.s(["DetachedPromise",0,d],26026);var e=a.i(68113),f=a.i(12213);function g(a,b){if(0===b.length)return 0;if(0===a.length||b.length>a.length)return -1;if("u">typeof Buffer)return(Buffer.isBuffer(a)?a:Buffer.from(a.buffer,a.byteOffset,a.byteLength)).indexOf(b);for(let c=0;c<=a.length-b.length;c++){let d=!0;for(let e=0;e-1))return a;{let d=new Uint8Array(a.length-b.length);return d.set(a.subarray(0,c)),d.set(a.subarray(c+b.length),c),d}}var j=a.i(91562);let k=new TextEncoder;function l(a){return void 0===a?"0":Array.isArray(a)?a.join(","):a}async function m(a){var b=new Uint8Array(await globalThis.crypto.subtle.digest("SHA-256",k.encode(a))).subarray(0,12);let c="";for(let a=0;aa+b.length,0)),d=0;for(let a of b)c.set(a,d),d+=a.length;return c}async function t(a){return Buffer.concat(await r(a))}async function u(a,b){let c=new TextDecoder("utf-8",{fatal:!0}),d="";for await(let e of a){if(null==b?void 0:b.aborted)return d;d+=c.decode(e,{stream:!0})}return d+c.decode()}function v(a={}){let b,{maxBufferByteLength:c=1/0}=a,f=[],g=0,h=a=>{try{if(0===f.length)return;let b=new Uint8Array(g),c=0;for(let a=0;a=c?h(i):(a=>{if(b)return;let c=new d;b=c,(0,e.scheduleImmediate)(()=>{try{h(a)}finally{b=void 0,c.resolve()}})})(i)},flush:()=>null==b?void 0:b.promise})}function w(a){let b=-1,c=!1;return new TransformStream({async transform(d,e){let h=-1,i=-1;if(b++,c)return void e.enqueue(d);let j=0;if(-1===h){if(-1===(h=g(d,f.ENCODED_TAGS.META.ICON_MARK)))return void e.enqueue(d);47===d[h+(j=f.ENCODED_TAGS.META.ICON_MARK.length)]?j+=2:j++}if(0===b){if(i=g(d,f.ENCODED_TAGS.CLOSED.HEAD),-1!==h){if(h__NEXT_CLIENT_RESUME=fetch(location.pathname+'?${b}',{credentials:'same-origin',headers:{'${j.RSC_HEADER}': '1','${j.NEXT_ROUTER_PREFETCH_HEADER}': '1','${j.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER}': '/_full'}})`,d=!1;return new TransformStream({transform(a,b){if(d)return void b.enqueue(a);let e=g(a,f.ENCODED_TAGS.CLOSED.HEAD);if(-1===e)return void b.enqueue(a);let h=p.encode(c),i=new Uint8Array(a.length+h.length);i.set(a.slice(0,e)),i.set(h,e),i.set(a.slice(e),e+h.length),b.enqueue(i),d=!0}})}async function z(a){let b="/_full",c=await n("1",b,void 0,void 0),d=`${j.NEXT_RSC_UNION_QUERY}=${c}`,e=null!==a?`self.__next_r=${JSON.stringify(a)};`:"",h=``,i=!1;return new TransformStream({transform(a,b){if(i)return void b.enqueue(a);let c=g(a,f.ENCODED_TAGS.OPENING.HEAD);if(-1===c)return void b.enqueue(a);let d=a.indexOf(62,c+f.ENCODED_TAGS.OPENING.HEAD.length);if(-1===d)return void b.enqueue(a);let e=p.encode(h),j=d+1,k=new Uint8Array(a.length+e.length);k.set(a.slice(0,j)),k.set(e,j),k.set(a.slice(j),j+e.length),b.enqueue(k),i=!0},flush(a){a.enqueue(f.ENCODED_TAGS.CLOSED.BODY_AND_HTML)}})}function A(a,b){let c=!1,d=null,f=!1;function g(a){return d||(d=h(a)),d}async function h(d){let g=a.getReader();b&&await (0,e.atLeastOneTask)();try{for(;;){let{done:a,value:h}=await g.read();if(a){f=!0;return}b||c||await (0,e.atLeastOneTask)(),d.enqueue(h)}}catch(a){d.error(a)}}return new TransformStream({start(a){b||g(a)},transform(a,c){c.enqueue(a),b&&g(c)},flush(a){if(c=!0,!f)return g(a)}})}let B="";function C(){let a=!1;return new TransformStream({transform(b,c){if(a)return c.enqueue(b);let d=g(b,f.ENCODED_TAGS.CLOSED.BODY_AND_HTML);if(d>-1){if(a=!0,b.length===f.ENCODED_TAGS.CLOSED.BODY_AND_HTML.length)return;let e=b.slice(0,d);if(c.enqueue(e),b.length>f.ENCODED_TAGS.CLOSED.BODY_AND_HTML.length+d){let a=b.slice(d+f.ENCODED_TAGS.CLOSED.BODY_AND_HTML.length);c.enqueue(a)}}else c.enqueue(b)},flush(a){a.enqueue(f.ENCODED_TAGS.CLOSED.BODY_AND_HTML)}})}function D(a){let b=!1;return new TransformStream({transform(c,d){if(b)return void d.enqueue(c);let e=g(c,f.ENCODED_TAGS.OPENING.HTML);if(-1===e)return void d.enqueue(c);let h=e+f.ENCODED_TAGS.OPENING.HTML.length,i=` data-dpl-id="${a}"`,j=p.encode(i),k=new Uint8Array(c.length+j.length);k.set(c.subarray(0,h)),k.set(j,h),k.set(c.subarray(h),h+j.length),d.enqueue(k),b=!0}})}function E(){let a=!1,b=!1;return new TransformStream({async transform(c,d){!a&&g(c,f.ENCODED_TAGS.OPENING.HTML)>-1&&(a=!0),!b&&g(c,f.ENCODED_TAGS.OPENING.BODY)>-1&&(b=!0),d.enqueue(c)},flush(c){let d=[];a||d.push("html"),b||d.push("body"),d.length&&c.enqueue(p.encode(` + + `))}})}function F(a,b){let c=a;for(let a of b)a&&(c=c.pipeThrough(a));return c}async function G(a,{suffix:b,inlinedDataStream:c,isStaticGeneration:f,deploymentId:g,getServerInsertedHTML:h,getServerInsertedMetadata:i,validateRootLayout:j}){let k,l,m=b?b.split(B,1)[0]:null;return f?await a.allReady:await (0,e.waitAtLeastOneReactRenderTask)(),F(a,[v(),g?D(g):null,w(i),null!=m&&m.length>0?(l=!1,new TransformStream({transform(a,b){if(b.enqueue(a),!l){let a;l=!0,k=a=new d,(0,e.scheduleImmediate)(()=>{try{b.enqueue(p.encode(m))}catch{}finally{k=void 0,a.resolve()}})}},flush(a){if(k)return k.promise;l||a.enqueue(p.encode(m))}})):null,c?A(c,!0):null,j?E():null,C(),x(h)])}async function H(a,{getServerInsertedHTML:b,getServerInsertedMetadata:c,deploymentId:d}){return F(a,[v(),new TransformStream({transform(a,b){h(a,f.ENCODED_TAGS.CLOSED.BODY_AND_HTML)||h(a,f.ENCODED_TAGS.CLOSED.BODY)||h(a,f.ENCODED_TAGS.CLOSED.HTML)||(a=i(a,f.ENCODED_TAGS.CLOSED.BODY),a=i(a,f.ENCODED_TAGS.CLOSED.HTML),b.enqueue(a))}}),d?D(d):null,x(b),w(c)])}async function I(a,{inlinedDataStream:b,getServerInsertedHTML:c,getServerInsertedMetadata:d,deploymentId:e}){return F(a,[v(),e?D(e):null,x(c),w(d),A(b,!0),C()])}async function J(a,{inlinedDataStream:b,getServerInsertedHTML:c,getServerInsertedMetadata:d,deploymentId:e}){return F(a,[v(),e?D(e):null,x(c),await y(),w(d),A(b,!0),C()])}async function K(a,{delayDataUntilFirstHtmlChunk:b,inlinedDataStream:c,getServerInsertedHTML:d,getServerInsertedMetadata:e,deploymentId:f}){return F(a,[v(),f?D(f):null,x(d),w(e),A(c,b),C()])}a.s(["chainStreams",0,function(...a){if(0===a.length)return new ReadableStream({start(a){a.close()}});if(1===a.length)return a[0];let{readable:b,writable:c}=new TransformStream,d=a[0].pipeTo(c,{preventClose:!0}),e=1;for(;eb.pipeTo(c,{preventClose:!0}))}let f=a[e];return(d=d.then(()=>f.pipeTo(c))).catch(o),b},"continueDynamicHTMLResume",0,K,"continueDynamicPrerender",0,H,"continueFizzStream",0,G,"continueStaticFallbackPrerender",0,J,"continueStaticPrerender",0,I,"createBufferedTransformStream",0,v,"createDocumentClosingStream",0,function(){return q(B)},"createInstantTestScriptInsertionTransformStream",0,z,"createRootLayoutValidatorStream",0,E,"createRuntimePrefetchTransformStream",0,function(a,b,c){let d=new TextEncoder,e=d.encode(`[${a}]`),f=e[0],g=d.encode(`[${b},${c}]`),h=e.length,i=null,j=!1;function k(a,b){if(j){b&&a.enqueue(b);return}if(i){let c=i.length-(h-1);if(b&&(c+=Math.min(b.length,h-1)),c<1){a.enqueue(i),i=b;return}let d=i.indexOf(f);a:for(;-10?b.subarray(c):b;a.enqueue(e)}i=null;return}a.enqueue(i)}i=b}return new TransformStream({transform(a,b){k(b,a)},flush(a){k(a,null)}})},"renderToInitialFizzStream",0,function({ReactDOMServer:a,element:d,streamOptions:e}){return(0,b.getTracer)().trace(c.AppRenderSpan.renderToReadableStream,async()=>a.renderToReadableStream(d,e))},"streamFromBuffer",0,function(a){return new ReadableStream({start(b){b.enqueue(a),b.close()}})},"streamFromString",0,q,"streamToBuffer",0,t,"streamToString",0,u,"streamToUint8Array",0,s],22693)},36226,(a,b,c)=>{"use strict";var d=Object.defineProperty,e=Object.getOwnPropertyDescriptor,f=Object.getOwnPropertyNames,g=Object.prototype.hasOwnProperty,h={},i={RequestCookies:()=>p,ResponseCookies:()=>q,parseCookie:()=>l,parseSetCookie:()=>m,stringifyCookie:()=>k};for(var j in i)d(h,j,{get:i[j],enumerable:!0});function k(a){var b;let c=["path"in a&&a.path&&`Path=${a.path}`,"expires"in a&&(a.expires||0===a.expires)&&`Expires=${("number"==typeof a.expires?new Date(a.expires):a.expires).toUTCString()}`,"maxAge"in a&&"number"==typeof a.maxAge&&`Max-Age=${a.maxAge}`,"domain"in a&&a.domain&&`Domain=${a.domain}`,"secure"in a&&a.secure&&"Secure","httpOnly"in a&&a.httpOnly&&"HttpOnly","sameSite"in a&&a.sameSite&&`SameSite=${a.sameSite}`,"partitioned"in a&&a.partitioned&&"Partitioned","priority"in a&&a.priority&&`Priority=${a.priority}`].filter(Boolean),d=`${a.name}=${encodeURIComponent(null!=(b=a.value)?b:"")}`;return 0===c.length?d:`${d}; ${c.join("; ")}`}function l(a){let b=new Map;for(let c of a.split(/; */)){if(!c)continue;let a=c.indexOf("=");if(-1===a){b.set(c,"true");continue}let[d,e]=[c.slice(0,a),c.slice(a+1)];try{b.set(d,decodeURIComponent(null!=e?e:"true"))}catch{}}return b}function m(a){if(!a)return;let[[b,c],...d]=l(a),{domain:e,expires:f,httponly:g,maxage:h,path:i,samesite:j,secure:k,partitioned:m,priority:p}=Object.fromEntries(d.map(([a,b])=>[a.toLowerCase().replace(/-/g,""),b]));{var q,r,s={name:b,value:decodeURIComponent(c),domain:e,...f&&{expires:new Date(f)},...g&&{httpOnly:!0},..."string"==typeof h&&{maxAge:Number(h)},path:i,...j&&{sameSite:n.includes(q=(q=j).toLowerCase())?q:void 0},...k&&{secure:!0},...p&&{priority:o.includes(r=(r=p).toLowerCase())?r:void 0},...m&&{partitioned:!0}};let a={};for(let b in s)s[b]&&(a[b]=s[b]);return a}}b.exports=((a,b,c,h)=>{if(b&&"object"==typeof b||"function"==typeof b)for(let i of f(b))g.call(a,i)||i===c||d(a,i,{get:()=>b[i],enumerable:!(h=e(b,i))||h.enumerable});return a})(d({},"__esModule",{value:!0}),h);var n=["strict","lax","none"],o=["low","medium","high"],p=class{constructor(a){this._parsed=new Map,this._headers=a;const b=a.get("cookie");if(b)for(const[a,c]of l(b))this._parsed.set(a,{name:a,value:c})}[Symbol.iterator](){return this._parsed[Symbol.iterator]()}get size(){return this._parsed.size}get(...a){let b="string"==typeof a[0]?a[0]:a[0].name;return this._parsed.get(b)}getAll(...a){var b;let c=Array.from(this._parsed);if(!a.length)return c.map(([a,b])=>b);let d="string"==typeof a[0]?a[0]:null==(b=a[0])?void 0:b.name;return c.filter(([a])=>a===d).map(([a,b])=>b)}has(a){return this._parsed.has(a)}set(...a){let[b,c]=1===a.length?[a[0].name,a[0].value]:a,d=this._parsed;return d.set(b,{name:b,value:c}),this._headers.set("cookie",Array.from(d).map(([a,b])=>k(b)).join("; ")),this}delete(a){let b=this._parsed,c=Array.isArray(a)?a.map(a=>b.delete(a)):b.delete(a);return this._headers.set("cookie",Array.from(b).map(([a,b])=>k(b)).join("; ")),c}clear(){return this.delete(Array.from(this._parsed.keys())),this}[Symbol.for("edge-runtime.inspect.custom")](){return`RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`}toString(){return[...this._parsed.values()].map(a=>`${a.name}=${encodeURIComponent(a.value)}`).join("; ")}},q=class{constructor(a){var b,c,d;this._parsed=new Map,this._headers=a;const e=null!=(d=null!=(c=null==(b=a.getSetCookie)?void 0:b.call(a))?c:a.get("set-cookie"))?d:[];for(const a of Array.isArray(e)?e:function(a){if(!a)return[];var b,c,d,e,f,g=[],h=0;function i(){for(;h=a.length)&&g.push(a.substring(b,a.length))}return g}(e)){const b=m(a);b&&this._parsed.set(b.name,b)}}get(...a){let b="string"==typeof a[0]?a[0]:a[0].name;return this._parsed.get(b)}getAll(...a){var b;let c=Array.from(this._parsed.values());if(!a.length)return c;let d="string"==typeof a[0]?a[0]:null==(b=a[0])?void 0:b.name;return c.filter(a=>a.name===d)}has(a){return this._parsed.has(a)}set(...a){let[b,c,d]=1===a.length?[a[0].name,a[0].value,a[0]]:a,e=this._parsed;return e.set(b,function(a={name:"",value:""}){return"number"==typeof a.expires&&(a.expires=new Date(a.expires)),a.maxAge&&(a.expires=new Date(Date.now()+1e3*a.maxAge)),(null===a.path||void 0===a.path)&&(a.path="/"),a}({name:b,value:c,...d})),function(a,b){for(let[,c]of(b.delete("set-cookie"),a)){let a=k(c);b.append("set-cookie",a)}}(e,this._headers),this}delete(...a){let[b,c]="string"==typeof a[0]?[a[0]]:[a[0].name,a[0]];return this.set({...c,name:b,value:"",expires:new Date(0)})}[Symbol.for("edge-runtime.inspect.custom")](){return`ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`}toString(){return[...this._parsed.values()].map(k).join("; ")}}},72051,a=>{"use strict";a.i(36226),a.s([])},14976,11614,a=>{"use strict";function b(a){return a.replace(/\/$/,"")||"/"}a.i(30106);var c=a.i(38549);function d(a,b){if(!a.startsWith("/")||!b)return a;let{pathname:d,query:e,hash:f}=(0,c.parsePath)(a);return`${b}${d}${e}${f}`}function e(a,b){if(!a.startsWith("/")||!b)return a;let{pathname:d,query:e,hash:f}=(0,c.parsePath)(a);return`${d}${b}${e}${f}`}var f=a.i(83838);let g=new WeakMap;function h(a,b){let c;if(!b)return{pathname:a};let d=g.get(b);d||(d=b.map(a=>a.toLowerCase()),g.set(b,d));let e=a.split("/",2);if(!e[1])return{pathname:a};let f=e[1].toLowerCase(),h=d.indexOf(f);return h<0?{pathname:a}:(c=b[h],{pathname:a=a.slice(c.length+1)||"/",detectedLocale:c})}var i=a.i(7696);let j=/^(?:127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)$/;function k(a,b){let c=new URL(String(a),b&&String(b));return j.test(c.hostname)&&(c.hostname="localhost"),c}let l=Symbol("NextURLInternal");class m{constructor(a,b,c){let d,e;"object"==typeof b&&"pathname"in b||"string"==typeof b?(d=b,e=c||{}):e=c||b||{},this[l]={url:k(a,d??e.base),options:e,basePath:""},this.analyze()}analyze(){var a,b,c,d,e;let g=function(a,b){let{basePath:c,i18n:d,trailingSlash:e}=b.nextConfig??{},g={pathname:a,trailingSlash:"/"!==a?a.endsWith("/"):e};c&&(0,f.pathHasPrefix)(g.pathname,c)&&(g.pathname=(0,i.removePathPrefix)(g.pathname,c),g.basePath=c);let j=g.pathname;if(g.pathname.startsWith("/_next/data/")&&g.pathname.endsWith(".json")){let a=g.pathname.replace(/^\/_next\/data\//,"").replace(/\.json$/,"").split("/");g.buildId=a[0],j="index"!==a[1]?`/${a.slice(1).join("/")}`:"/",!0===b.parseData&&(g.pathname=j)}if(d){let a=b.i18nProvider?b.i18nProvider.analyze(g.pathname):h(g.pathname,d.locales);g.locale=a.detectedLocale,g.pathname=a.pathname??g.pathname,!a.detectedLocale&&g.buildId&&(a=b.i18nProvider?b.i18nProvider.analyze(j):h(j,d.locales)).detectedLocale&&(g.locale=a.detectedLocale)}return g}(this[l].url.pathname,{nextConfig:this[l].options.nextConfig,parseData:!0,i18nProvider:this[l].options.i18nProvider}),j=function(a,b){let c;if(b?.host&&!Array.isArray(b.host))c=b.host.toString().split(":",1)[0];else{if(!a.hostname)return;c=a.hostname}return c.toLowerCase()}(this[l].url,this[l].options.headers);this[l].domainLocale=this[l].options.i18nProvider?this[l].options.i18nProvider.detectDomainLocale(j):function(a,b,c){if(a){for(let d of(c&&(c=c.toLowerCase()),a))if(b===d.domain?.split(":",1)[0].toLowerCase()||c===d.defaultLocale.toLowerCase()||d.locales?.some(a=>a.toLowerCase()===c))return d}}(null==(b=this[l].options.nextConfig)||null==(a=b.i18n)?void 0:a.domains,j);let k=(null==(c=this[l].domainLocale)?void 0:c.defaultLocale)||(null==(e=this[l].options.nextConfig)||null==(d=e.i18n)?void 0:d.defaultLocale);this[l].url.pathname=g.pathname,this[l].defaultLocale=k,this[l].basePath=g.basePath??"",this[l].buildId=g.buildId,this[l].locale=g.locale??k,this[l].trailingSlash=g.trailingSlash}formatPathname(){var a;let c;return c=function(a,b,c,e){if(!b||b===c)return a;let g=a.toLowerCase();return!e&&((0,f.pathHasPrefix)(g,"/api")||(0,f.pathHasPrefix)(g,`/${b.toLowerCase()}`))?a:d(a,`/${b}`)}((a={basePath:this[l].basePath,buildId:this[l].buildId,defaultLocale:this[l].options.forceLocale?void 0:this[l].defaultLocale,locale:this[l].locale,pathname:this[l].url.pathname,trailingSlash:this[l].trailingSlash}).pathname,a.locale,a.buildId?void 0:a.defaultLocale,a.ignorePrefix),(a.buildId||!a.trailingSlash)&&(c=b(c)),a.buildId&&(c=e(d(c,`/_next/data/${a.buildId}`),"/"===a.pathname?"index.json":".json")),c=d(c,a.basePath),!a.buildId&&a.trailingSlash?c.endsWith("/")?c:e(c,"/"):b(c)}formatSearch(){return this[l].url.search}get buildId(){return this[l].buildId}set buildId(a){this[l].buildId=a}get locale(){return this[l].locale??""}set locale(a){var b,c;if(!this[l].locale||!(null==(c=this[l].options.nextConfig)||null==(b=c.i18n)?void 0:b.locales.includes(a)))throw Object.defineProperty(TypeError(`The NextURL configuration includes no locale "${a}"`),"__NEXT_ERROR_CODE",{value:"E597",enumerable:!1,configurable:!0});this[l].locale=a}get defaultLocale(){return this[l].defaultLocale}get domainLocale(){return this[l].domainLocale}get searchParams(){return this[l].url.searchParams}get host(){return this[l].url.host}set host(a){this[l].url.host=a}get hostname(){return this[l].url.hostname}set hostname(a){this[l].url.hostname=a}get port(){return this[l].url.port}set port(a){this[l].url.port=a}get protocol(){return this[l].url.protocol}set protocol(a){this[l].url.protocol=a}get href(){let a=this.formatPathname(),b=this.formatSearch();return`${this.protocol}//${this.host}${a}${b}${this.hash}`}set href(a){this[l].url=k(a),this.analyze()}get origin(){return this[l].url.origin}get pathname(){return this[l].url.pathname}set pathname(a){this[l].url.pathname=a}get hash(){return this[l].url.hash}set hash(a){this[l].url.hash=a}get search(){return this[l].url.search}set search(a){this[l].url.search=a}get password(){return this[l].url.password}set password(a){this[l].url.password=a}get username(){return this[l].url.username}set username(a){this[l].url.username=a}get basePath(){return this[l].basePath}set basePath(a){this[l].basePath=a.startsWith("/")?a:`/${a}`}toString(){return this.href}toJSON(){return this.href}[Symbol.for("edge-runtime.inspect.custom")](){return{href:this.href,origin:this.origin,protocol:this.protocol,username:this.username,password:this.password,host:this.host,hostname:this.hostname,port:this.port,pathname:this.pathname,search:this.search,searchParams:this.searchParams,hash:this.hash}}clone(){return new m(String(this),this[l].options)}}a.i(72051),a.i(36226),Symbol("internal request"),Request,Symbol.for("edge-runtime.inspect.custom");let n="ResponseAborted";class o extends Error{constructor(...a){super(...a),this.name=n}}var p=a.i(26026),q=a.i(75164),r=a.i(18970);let s=0,t=0,u=0;function v(a){return(null==a?void 0:a.name)==="AbortError"||(null==a?void 0:a.name)===n}async function w(a,b,c){try{let d,{errored:e,destroyed:f}=b;if(e||f)return;let g=(d=new AbortController,b.once("close",()=>{b.writableFinished||d.abort(new o)}),d),h=function(a,b){let c=!1,d=new p.DetachedPromise;function e(){d.resolve()}a.on("drain",e),a.once("close",()=>{a.off("drain",e),d.resolve()});let f=new p.DetachedPromise;return a.once("finish",()=>{f.resolve()}),new WritableStream({write:async b=>{if(!c){if(c=!0,"performance"in globalThis&&process.env.NEXT_OTEL_PERFORMANCE_PREFIX){let a=function(a={}){let b=0===s?void 0:{clientComponentLoadStart:s,clientComponentLoadTimes:t,clientComponentLoadCount:u};return a.reset&&(s=0,t=0,u=0),b}();a&&performance.measure(`${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`,{start:a.clientComponentLoadStart,end:a.clientComponentLoadStart+a.clientComponentLoadTimes})}a.flushHeaders(),(0,q.getTracer)().trace(r.NextNodeServerSpan.startResponse,{spanName:"start response"},()=>void 0)}try{let c=a.write(b);"flush"in a&&"function"==typeof a.flush&&a.flush(),c||(await d.promise,d=new p.DetachedPromise)}catch(b){throw a.end(),Object.defineProperty(Error("failed to write chunk to response",{cause:b}),"__NEXT_ERROR_CODE",{value:"E321",enumerable:!1,configurable:!0})}},abort:b=>{a.writableFinished||a.destroy(b)},close:async()=>{if(b&&await b,!a.writableFinished)return a.end(),f.promise}})}(b,c);await a.pipeTo(h,{signal:g.signal})}catch(a){if(v(a))return;throw Object.defineProperty(Error("failed to pipe response",{cause:a}),"__NEXT_ERROR_CODE",{value:"E180",enumerable:!1,configurable:!0})}}a.s(["isAbortError",0,v,"pipeToNodeResponse",0,w],14976);var x=a.i(22693),y=a.i(85034);class z{static #a=this.EMPTY=new z(null,{metadata:{},contentType:null});static fromStatic(a,b){return new z(a,{metadata:{},contentType:b})}constructor(a,{contentType:b,waitUntil:c,metadata:d}){this.response=a,this.contentType=b,this.metadata=d,this.waitUntil=c}assignMetadata(a){Object.assign(this.metadata,a)}get isNull(){return null===this.response}get isDynamic(){return"string"!=typeof this.response}toUnchunkedString(a=!1){if(null===this.response)return"";if("string"!=typeof this.response){if(!a)throw Object.defineProperty(new y.InvariantError("dynamic responses cannot be unchunked. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E732",enumerable:!1,configurable:!0});return(0,x.streamToString)(this.readable)}return this.response}get readable(){return null===this.response?new ReadableStream({start(a){a.close()}}):"string"==typeof this.response?(0,x.streamFromString)(this.response):Buffer.isBuffer(this.response)?(0,x.streamFromBuffer)(this.response):Array.isArray(this.response)?(0,x.chainStreams)(...this.response):this.response}coerce(){return null===this.response?[]:"string"==typeof this.response?[(0,x.streamFromString)(this.response)]:Array.isArray(this.response)?this.response:Buffer.isBuffer(this.response)?[(0,x.streamFromBuffer)(this.response)]:[this.response]}pipeThrough(a){this.response=this.readable.pipeThrough(a)}unshift(a){this.response=this.coerce(),this.response.unshift(a)}push(a){this.response=this.coerce(),this.response.push(a)}async pipeTo(a){try{await this.readable.pipeTo(a,{preventClose:!0}),this.waitUntil&&await this.waitUntil,await a.close()}catch(b){if(v(b))return void await a.abort(b);throw b}}async pipeToNodeResponse(a){await w(this.readable,a,this.waitUntil)}}a.s(["default",()=>z],11614)},21751,a=>{"use strict";let b="middleware",c=`(?:src/)?${b}`,d="proxy",e=`(?:src/)?${d}`,f={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"},g={...f,GROUP:{builtinReact:[f.reactServerComponents,f.actionBrowser],serverOnly:[f.reactServerComponents,f.actionBrowser,f.instrument,f.middleware],neutralTarget:[f.apiNode,f.apiEdge],clientOnly:[f.serverSideRendering,f.appPagesBrowser],bundled:[f.reactServerComponents,f.actionBrowser,f.serverSideRendering,f.appPagesBrowser,f.shared,f.instrument,f.middleware],appPages:[f.reactServerComponents,f.serverSideRendering,f.appPagesBrowser,f.actionBrowser]}};a.s(["ACTION_SUFFIX",0,".action","APP_DIR_ALIAS",0,"private-next-app-dir","CACHE_ONE_YEAR_SECONDS",0,31536e3,"DOT_NEXT_ALIAS",0,"private-dot-next","ESLINT_DEFAULT_DIRS",0,["app","pages","components","lib","src"],"GSP_NO_RETURNED_VALUE",0,"Your `getStaticProps` function did not return an object. Did you forget to add a `return`?","GSSP_COMPONENT_MEMBER_ERROR",0,"can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member","GSSP_NO_RETURNED_VALUE",0,"Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?","HTML_CONTENT_TYPE_HEADER",0,"text/html; charset=utf-8","INFINITE_CACHE",0,0xfffffffe,"INSTRUMENTATION_HOOK_FILENAME",0,"instrumentation","JSON_CONTENT_TYPE_HEADER",0,"application/json; charset=utf-8","MATCHED_PATH_HEADER",0,"x-matched-path","MIDDLEWARE_FILENAME",0,b,"MIDDLEWARE_LOCATION_REGEXP",0,c,"NEXT_BODY_SUFFIX",0,".body","NEXT_CACHE_IMPLICIT_TAG_ID",0,"_N_T_","NEXT_CACHE_REVALIDATED_TAGS_HEADER",0,"x-next-revalidated-tags","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER",0,"x-next-revalidate-tag-token","NEXT_CACHE_ROOT_PARAM_TAG_ID",0,"_N_RP_","NEXT_CACHE_SOFT_TAG_MAX_LENGTH",0,1024,"NEXT_CACHE_TAGS_HEADER",0,"x-next-cache-tags","NEXT_CACHE_TAG_MAX_ITEMS",0,128,"NEXT_CACHE_TAG_MAX_LENGTH",0,256,"NEXT_DATA_SUFFIX",0,".json","NEXT_INTERCEPTION_MARKER_PREFIX",0,"nxtI","NEXT_META_SUFFIX",0,".meta","NEXT_NAV_DEPLOYMENT_ID_HEADER",0,"x-nextjs-deployment-id","NEXT_QUERY_PARAM_PREFIX",0,"nxtP","NEXT_RESUME_HEADER",0,"next-resume","NEXT_RESUME_STATE_LENGTH_HEADER",0,"x-next-resume-state-length","NON_STANDARD_NODE_ENV",0,'You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env',"PAGES_DIR_ALIAS",0,"private-next-pages","PRERENDER_REVALIDATE_HEADER",0,"x-prerender-revalidate","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER",0,"x-prerender-revalidate-if-generated","PROXY_FILENAME",0,d,"PROXY_LOCATION_REGEXP",0,e,"PUBLIC_DIR_MIDDLEWARE_CONFLICT",0,"You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict","ROOT_DIR_ALIAS",0,"private-next-root-dir","RSC_ACTION_CLIENT_WRAPPER_ALIAS",0,"private-next-rsc-action-client-wrapper","RSC_ACTION_ENCRYPTION_ALIAS",0,"private-next-rsc-action-encryption","RSC_ACTION_PROXY_ALIAS",0,"private-next-rsc-server-reference","RSC_ACTION_VALIDATE_ALIAS",0,"private-next-rsc-action-validate","RSC_CACHE_WRAPPER_ALIAS",0,"private-next-rsc-cache-wrapper","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS",0,"private-next-rsc-track-dynamic-import","RSC_MOD_REF_PROXY_ALIAS",0,"private-next-rsc-mod-ref-proxy","RSC_SEGMENTS_DIR_SUFFIX",0,".segments","RSC_SEGMENT_SUFFIX",0,".segment.rsc","RSC_SUFFIX",0,".rsc","SERVER_PROPS_EXPORT_ERROR",0,"pages with `getServerSideProps` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export","SERVER_PROPS_GET_INIT_PROPS_CONFLICT",0,"You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.","SERVER_PROPS_SSG_CONFLICT",0,"You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps","SERVER_RUNTIME",0,{edge:"edge",experimentalEdge:"experimental-edge",nodejs:"nodejs"},"SSG_FALLBACK_EXPORT_ERROR",0,"Pages with `fallback` enabled in `getStaticPaths` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export","SSG_GET_INITIAL_PROPS_CONFLICT",0,"You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR",0,"can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props","TEXT_PLAIN_CONTENT_TYPE_HEADER",0,"text/plain","UNSTABLE_REVALIDATE_RENAME_ERROR",0,"The `unstable_revalidate` property is available for general use.\nPlease use `revalidate` instead.","WEBPACK_LAYERS",0,g,"WEBPACK_RESOURCE_QUERIES",0,{edgeSSREntry:"__next_edge_ssr_entry__",metadata:"__next_metadata__",metadataRoute:"__next_metadata_route__",metadataImageMeta:"__next_metadata_image_meta__"},"WEB_SOCKET_MAX_RECONNECTIONS",0,12])},43070,75700,a=>{"use strict";let{env:b,stdout:c}=(null==(u=globalThis)?void 0:u.process)??{},d=b&&!b.NO_COLOR&&(b.FORCE_COLOR||(null==c?void 0:c.isTTY)&&!b.CI&&"dumb"!==b.TERM),e=(a,b,c,d)=>{let f=a.substring(0,d)+c,g=a.substring(d+b.length),h=g.indexOf(b);return~h?f+e(g,b,c,h):f+g},f=(a,b,c=a)=>d?d=>{let f=""+d,g=f.indexOf(b,a.length);return~g?a+e(f,b,c,g)+b:a+f+b}:String,g=f("\x1b[1m","\x1b[22m","\x1b[22m\x1b[1m");f("\x1b[2m","\x1b[22m","\x1b[22m\x1b[2m"),f("\x1b[3m","\x1b[23m"),f("\x1b[4m","\x1b[24m"),f("\x1b[7m","\x1b[27m"),f("\x1b[8m","\x1b[28m"),f("\x1b[9m","\x1b[29m"),f("\x1b[30m","\x1b[39m");let h=f("\x1b[31m","\x1b[39m"),i=f("\x1b[32m","\x1b[39m"),j=f("\x1b[33m","\x1b[39m");f("\x1b[34m","\x1b[39m");let k=f("\x1b[35m","\x1b[39m");f("\x1b[38;2;173;127;168m","\x1b[39m"),f("\x1b[36m","\x1b[39m");let l=f("\x1b[37m","\x1b[39m");f("\x1b[90m","\x1b[39m"),f("\x1b[40m","\x1b[49m"),f("\x1b[41m","\x1b[49m"),f("\x1b[42m","\x1b[49m"),f("\x1b[43m","\x1b[49m"),f("\x1b[44m","\x1b[49m"),f("\x1b[45m","\x1b[49m"),f("\x1b[46m","\x1b[49m"),f("\x1b[47m","\x1b[49m");class m{constructor(a,b,c){this.prev=null,this.next=null,this.key=a,this.data=b,this.size=c}}class n{constructor(){this.prev=null,this.next=null}}class o{constructor(a,b,c){this.cache=new Map,this.totalSize=0,this.maxSize=a,this.calculateSize=b,this.onEvict=c,this.head=new n,this.tail=new n,this.head.next=this.tail,this.tail.prev=this.head}addToHead(a){a.prev=this.head,a.next=this.head.next,this.head.next.prev=a,this.head.next=a}removeNode(a){a.prev.next=a.next,a.next.prev=a.prev}moveToHead(a){this.removeNode(a),this.addToHead(a)}removeTail(){let a=this.tail.prev;return this.removeNode(a),a}set(a,b){let c=(null==this.calculateSize?void 0:this.calculateSize.call(this,b))??1;if(c<=0)throw Object.defineProperty(Error(`LRUCache: calculateSize returned ${c}, but size must be > 0. Items with size 0 would never be evicted, causing unbounded cache growth.`),"__NEXT_ERROR_CODE",{value:"E1045",enumerable:!1,configurable:!0});if(c>this.maxSize)return console.warn("Single item size exceeds maxSize"),!1;let d=this.cache.get(a);if(d)d.data=b,this.totalSize=this.totalSize-d.size+c,d.size=c,this.moveToHead(d);else{let d=new m(a,b,c);this.cache.set(a,d),this.addToHead(d),this.totalSize+=c}for(;this.totalSize>this.maxSize&&this.cache.size>0;){let a=this.removeTail();this.cache.delete(a.key),this.totalSize-=a.size,null==this.onEvict||this.onEvict.call(this,a.key,a.data)}return!0}has(a){return this.cache.has(a)}get(a){let b=this.cache.get(a);if(b)return this.moveToHead(b),b.data}*[Symbol.iterator](){let a=this.head.next;for(;a&&a!==this.tail;){let b=a;yield[b.key,b.data],a=a.next}}remove(a){let b=this.cache.get(a);b&&(this.removeNode(b),this.cache.delete(a),this.totalSize-=b.size)}get size(){return this.cache.size}get currentSize(){return this.totalSize}}let p={wait:l(g("○")),error:h(g("⨯")),warn:j(g("⚠")),ready:"▲",info:l(g(" ")),event:i(g("✓")),trace:k(g("»"))},q={log:"log",warn:"warn",error:"error"};function r(...a){!function(a,...b){(""===b[0]||void 0===b[0])&&1===b.length&&b.shift();let c=a in q?q[a]:"log",d=p[a];0===b.length?console[c](""):1===b.length&&"string"==typeof b[0]?console[c](d+" "+b[0]):console[c](d,...b)}("warn",...a)}let s=new o(1e4,a=>a.length);function t(...a){let b=a.join(" ");s.has(b)||(s.set(b,b),r(...a))}new o(1e4,a=>a.length),a.s(["warn",0,r,"warnOnce",0,t],43070);var u,v=a.i(26026);class w{constructor(a,b=a=>a()){this.cacheKeyFn=a,this.schedulerFn=b,this.pending=new Map}static create(a){return new w(null==a?void 0:a.cacheKeyFn,null==a?void 0:a.schedulerFn)}async batch(a,b){let c=this.cacheKeyFn?await this.cacheKeyFn(a):a;if(null===c)return b({resolve:a=>Promise.resolve(a),key:a});let d=this.pending.get(c);if(d)return d;let{promise:e,resolve:f,reject:g}=new v.DetachedPromise;return this.pending.set(c,e),this.schedulerFn(async()=>{try{let c=await b({resolve:f,key:a});f(c)}catch(a){g(a)}finally{this.pending.delete(c)}}),e}}var x=a.i(68113),y=a.i(276),z=a.i(11614),A=a.i(3343),B=a.i(21751);async function C(a){var b,c;return{...a,value:(null==(b=a.value)?void 0:b.kind)===y.CachedRouteKind.PAGES?{kind:y.CachedRouteKind.PAGES,html:await a.value.html.toUnchunkedString(!0),pageData:a.value.pageData,headers:a.value.headers,status:a.value.status}:(null==(c=a.value)?void 0:c.kind)===y.CachedRouteKind.APP_PAGE?{kind:y.CachedRouteKind.APP_PAGE,html:await a.value.html.toUnchunkedString(!0),postponed:a.value.postponed,rscData:a.value.rscData,headers:a.value.headers,status:a.value.status,segmentData:a.value.segmentData}:a.value}}async function D(a){var b,c;return a?{isMiss:a.isMiss,isStale:a.isStale,cacheControl:a.cacheControl,isFallback:a.isFallback,value:(null==(b=a.value)?void 0:b.kind)===y.CachedRouteKind.PAGES?{kind:y.CachedRouteKind.PAGES,html:z.default.fromStatic(a.value.html,B.HTML_CONTENT_TYPE_HEADER),pageData:a.value.pageData,headers:a.value.headers,status:a.value.status}:(null==(c=a.value)?void 0:c.kind)===y.CachedRouteKind.APP_PAGE?{kind:y.CachedRouteKind.APP_PAGE,html:z.default.fromStatic(a.value.html,B.HTML_CONTENT_TYPE_HEADER),rscData:a.value.rscData,headers:a.value.headers,status:a.value.status,postponed:a.value.postponed,segmentData:a.value.segmentData}:a.value}:null}function E(a,b){if(!a)return b;let c=parseInt(a,10);return Number.isFinite(c)&&c>0?c:b}let F=E(process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL,1e4),G=E(process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE,150),H="__ttl_sentinel__";function I(a,b){return`${a}\0${b??H}`}class J{constructor(a,b=G,c=F){this.getBatcher=w.create({cacheKeyFn:({key:a,isOnDemandRevalidate:b})=>`${a}-${b?"1":"0"}`,schedulerFn:x.scheduleOnNextTick}),this.revalidateBatcher=w.create({schedulerFn:x.scheduleOnNextTick}),this.evictedInvocationIDs=new Set,this.minimal_mode=a,this.maxSize=b,this.ttl=c,this.cache=new o(b,void 0,a=>{let b=function(a){let b=a.lastIndexOf("\0");if(-1===b)return;let c=a.slice(b+1);return c===H?void 0:c}(a);if(b){if(this.evictedInvocationIDs.size>=100){let a=this.evictedInvocationIDs.values().next().value;a&&this.evictedInvocationIDs.delete(a)}this.evictedInvocationIDs.add(b)}})}async get(a,b,c){if(!a)return b({hasResolved:!1,previousCacheEntry:null});if(this.minimal_mode){let b=I(a,c.invocationID),d=this.cache.get(b);if(d){if(void 0!==c.invocationID)return D(d.entry);let a=Date.now();if(d.expiresAt>a)return D(d.entry);this.cache.remove(b)}c.invocationID&&this.evictedInvocationIDs.has(c.invocationID)&&t(`Response cache entry was evicted for invocation ${c.invocationID}. Consider increasing NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE (current: ${this.maxSize}).`)}let{incrementalCache:d,isOnDemandRevalidate:e=!1,isFallback:f=!1,isRoutePPREnabled:g=!1,isPrefetch:h=!1,waitUntil:i,routeKind:j,invocationID:k}=c,l=await this.getBatcher.batch({key:a,isOnDemandRevalidate:e},({resolve:c})=>{let l=this.handleGet(a,b,{incrementalCache:d,isOnDemandRevalidate:e,isFallback:f,isRoutePPREnabled:g,isPrefetch:h,routeKind:j,invocationID:k},c);return i&&i(l),l});return D(l)}async handleGet(a,b,c,d){let e=null,f=!1;try{if((e=this.minimal_mode?null:await c.incrementalCache.get(a,{kind:function(a){switch(a){case A.RouteKind.PAGES:return y.IncrementalCacheKind.PAGES;case A.RouteKind.APP_PAGE:return y.IncrementalCacheKind.APP_PAGE;case A.RouteKind.IMAGE:return y.IncrementalCacheKind.IMAGE;case A.RouteKind.APP_ROUTE:return y.IncrementalCacheKind.APP_ROUTE;case A.RouteKind.PAGES_API:throw Object.defineProperty(Error(`Unexpected route kind ${a}`),"__NEXT_ERROR_CODE",{value:"E64",enumerable:!1,configurable:!0});default:return a}}(c.routeKind),isRoutePPREnabled:c.isRoutePPREnabled,isFallback:c.isFallback}))&&!c.isOnDemandRevalidate&&(d(e),f=!0,!e.isStale||c.isPrefetch))return e;let g=await this.revalidate(a,c.incrementalCache,c.isRoutePPREnabled,c.isFallback,b,e,null!==e&&!c.isOnDemandRevalidate,void 0,c.invocationID);if(!g){if(this.minimal_mode){let b=I(a,c.invocationID);this.cache.remove(b)}return null}return c.isOnDemandRevalidate,g}catch(a){if(f)return console.error(a),null;throw a}}async revalidate(a,b,c,d,e,f,g,h,i){return this.revalidateBatcher.batch(a,()=>{let j=this.handleRevalidate(a,b,c,d,e,f,g,i);return h&&h(j),j})}async handleRevalidate(a,b,c,d,e,f,g,h){try{let i=await e({hasResolved:g,previousCacheEntry:f,isRevalidating:!0});if(!i)return null;let j=await C({...i,isMiss:!f});if(j.cacheControl)if(this.minimal_mode){let b=I(a,h);this.cache.set(b,{entry:j,expiresAt:Date.now()+this.ttl})}else await b.set(a,j.value,{cacheControl:j.cacheControl,isRoutePPREnabled:c,isFallback:d});return j}catch(e){if(null==f?void 0:f.cacheControl){let e=Math.min(Math.max(f.cacheControl.revalidate||3,3),30),g=void 0===f.cacheControl.expire?void 0:Math.max(e+3,f.cacheControl.expire);await b.set(a,f.value,{cacheControl:{revalidate:e,expire:g},isRoutePPREnabled:c,isFallback:d})}throw e}}}a.s(["default",()=>J],75700)},40795,a=>{"use strict";var b,c=((b={}).BLOCKING_STATIC_RENDER="BLOCKING_STATIC_RENDER",b.PRERENDER="PRERENDER",b.NOT_FOUND="NOT_FOUND",b);a.s(["FallbackMode",0,c,"fallbackModeToFallbackField",0,function(a,b){switch(a){case"BLOCKING_STATIC_RENDER":return null;case"NOT_FOUND":return!1;case"PRERENDER":if(!b)throw Object.defineProperty(Error(`Invariant: expected a page to be provided when fallback mode is "${a}"`),"__NEXT_ERROR_CODE",{value:"E422",enumerable:!1,configurable:!0});return b;default:throw Object.defineProperty(Error(`Invalid fallback mode: ${a}`),"__NEXT_ERROR_CODE",{value:"E254",enumerable:!1,configurable:!0})}},"parseFallbackField",0,function(a){if("string"==typeof a)return"PRERENDER";if(null===a)return"BLOCKING_STATIC_RENDER";if(!1===a)return"NOT_FOUND";if(void 0!==a)throw Object.defineProperty(Error(`Invalid fallback option: ${a}. Fallback option must be a string, null, undefined, or false.`),"__NEXT_ERROR_CODE",{value:"E285",enumerable:!1,configurable:!0})},"parseStaticPathsResult",0,function(a){return!0===a?"PRERENDER":"blocking"===a?"BLOCKING_STATIC_RENDER":"NOT_FOUND"}])},19026,(a,b,c)=>{(()=>{"use strict";var a={695:a=>{var b=/(?:^|,)\s*?no-cache\s*?(?:,|$)/;function c(a){var b=a&&Date.parse(a);return"number"==typeof b?b:NaN}a.exports=function(a,d){var e=a["if-modified-since"],f=a["if-none-match"];if(!e&&!f)return!1;var g=a["cache-control"];if(g&&b.test(g))return!1;if(f&&"*"!==f){var h=d.etag;if(!h)return!1;for(var i=!0,j=function(a){for(var b=0,c=[],d=0,e=0,f=a.length;e{"use strict";"u">typeof performance&&["mark","measure","getEntriesByName"].every(a=>"function"==typeof performance[a]);var b=a.i(19026),c=a.i(21751);function d(a,c,d){return d&&c.setHeader("ETag",d),!!(0,b.default)(a.headers,{etag:d})&&(c.statusCode=304,c.end(),!0)}async function e({req:a,res:b,result:f,generateEtags:g,poweredByHeader:h,cacheControl:i}){if(b.finished||b.headersSent)return;h&&f.contentType===c.HTML_CONTENT_TYPE_HEADER&&b.setHeader("X-Powered-By","Next.js"),i&&!b.getHeader("Cache-Control")&&b.setHeader("Cache-Control",function({revalidate:a,expire:b}){let d="number"==typeof a&&void 0!==b&&a(b?'W/"':'"')+(a=>{let b=a.length,c=0,d=0,e=8997,f=0,g=33826,h=0,i=40164,j=0,k=52210;for(;c>>16,e=65535&d,h+=f>>>16,g=65535&f,k=j+(h>>>16)&65535,i=65535&h;return(15&k)*0x1000000000000+0x100000000*i+65536*g+(e^k>>4)})(a).toString(36)+a.length.toString(36)+'"')(j))||((!b.getHeader("Content-Type")&&f.contentType&&b.setHeader("Content-Type",f.contentType),j&&b.setHeader("Content-Length",Buffer.byteLength(j)),"HEAD"===a.method)?b.end(null):null!==j?b.end(j):await f.pipeToNodeResponse(b))}a.s(["sendEtagResponse",0,d,"sendRenderResult",0,e],10531)},1082,a=>{"use strict";a.s(["DEFAULT_MAX_POSTPONED_STATE_SIZE",0,"100 MB","parseMaxPostponedStateSize",0,function(b){if(!b)return 0x6400000;let c=a.r(14465).parse(b);return null===c||isNaN(c)||c<1?void 0:c}])},98175,a=>{"use strict";var b=a.i(1082);async function c(a,b){let c=[],d=0;for await(let e of a){let a=Buffer.isBuffer(e)?e:Buffer.from(e);if((d+=a.byteLength)>b)return null;c.push(a)}return Buffer.concat(c)}a.s(["getMaxPostponedStateSize",0,function(a){let c=a??b.DEFAULT_MAX_POSTPONED_STATE_SIZE,d=(0,b.parseMaxPostponedStateSize)(a);if(void 0===d)throw Object.defineProperty(Error('maxPostponedStateSize must be a valid number (bytes) or filesize format string (e.g., "5mb")'),"__NEXT_ERROR_CODE",{value:"E977",enumerable:!1,configurable:!0});return{maxPostponedStateSize:c,maxPostponedStateSizeBytes:d}},"getPostponedStateExceededErrorMessage",0,function(a){return`Postponed state exceeded ${a} limit. To configure the limit, see: https://nextjs.org/docs/app/api-reference/config/next-config-js/max-postponed-state-size`},"readBodyWithSizeLimit",0,c])},10990,(a,b,c)=>{"use strict";b.exports=a.r(24951).vendored["react-rsc"].ReactServerDOMTurbopackStatic},25476,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/layout-router.js "))},26768,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/layout-router.js"))},28212,a=>{"use strict";a.i(25476);var b=a.i(26768);a.n(b)},65714,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js "))},17910,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js"))},54691,a=>{"use strict";a.i(65714);var b=a.i(17910);a.n(b)},38023,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/client-page.js "))},92977,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/client-page.js"))},20575,a=>{"use strict";a.i(38023);var b=a.i(92977);a.n(b)},79286,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/client-segment.js "))},48552,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/client-segment.js"))},5476,a=>{"use strict";a.i(79286);var b=a.i(48552);a.n(b)},84513,88652,91191,a=>{"use strict";a.s(["ReflectAdapter",0,class{static get(a,b,c){let d=Reflect.get(a,b,c);return"function"==typeof d?d.bind(a):d}static set(a,b,c,d){return Reflect.set(a,b,c,d)}static has(a,b){return Reflect.has(a,b)}static deleteProperty(a,b){return Reflect.deleteProperty(a,b)}}],84513);let b=/^[A-Za-z_$][A-Za-z0-9_$]*$/,c=new Set(["hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toString","valueOf","toLocaleString","then","catch","finally","status","displayName","_debugInfo","toJSON","$$typeof","__esModule","@@iterator"]);a.s(["describeHasCheckingStringProperty",0,function(a,b){let c=JSON.stringify(b);return`\`Reflect.has(${a}, ${c})\`, \`${c} in ${a}\`, or similar`},"describeStringPropertyAccess",0,function(a,c){return b.test(c)?`\`${a}.${c}\``:`\`${a}[${JSON.stringify(c)}]\``},"wellKnownProperties",0,c],88652);let d="INSTANT_VALIDATION_ERROR";a.s(["InstantValidationError",0,class extends Error{constructor(...a){super(...a),this.digest=d}},"isInstantValidationError",0,function(a){return!!(a&&"object"==typeof a&&a instanceof Error&&a.digest===d)}],91191)},39783,a=>{"use strict";a.i(72051);var b=a.i(36226),c=a.i(84513);a.i(56704);class d extends Error{constructor(){super("Cookies can only be modified in a Server Action or Route Handler. Read more: https://nextjs.org/docs/app/api-reference/functions/cookies#options")}static callable(){throw new d}}class e{static seal(a){return new Proxy(a,{get(a,b,e){switch(b){case"clear":case"delete":case"set":return d.callable;default:return c.ReflectAdapter.get(a,b,e)}}})}}Symbol.for("next.mutated.cookies");class f extends Error{constructor(){super("Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers")}static callable(){throw new f}}class g extends Headers{constructor(a){super(),this.headers=new Proxy(a,{get(b,d,e){if("symbol"==typeof d)return c.ReflectAdapter.get(b,d,e);let f=d.toLowerCase(),g=Object.keys(a).find(a=>a.toLowerCase()===f);if(void 0!==g)return c.ReflectAdapter.get(b,g,e)},set(b,d,e,f){if("symbol"==typeof d)return c.ReflectAdapter.set(b,d,e,f);let g=d.toLowerCase(),h=Object.keys(a).find(a=>a.toLowerCase()===g);return c.ReflectAdapter.set(b,h??d,e,f)},has(b,d){if("symbol"==typeof d)return c.ReflectAdapter.has(b,d);let e=d.toLowerCase(),f=Object.keys(a).find(a=>a.toLowerCase()===e);return void 0!==f&&c.ReflectAdapter.has(b,f)},deleteProperty(b,d){if("symbol"==typeof d)return c.ReflectAdapter.deleteProperty(b,d);let e=d.toLowerCase(),f=Object.keys(a).find(a=>a.toLowerCase()===e);return void 0===f||c.ReflectAdapter.deleteProperty(b,f)}})}static seal(a){return new Proxy(a,{get(a,b,d){switch(b){case"append":case"delete":case"set":return f.callable;default:return c.ReflectAdapter.get(a,b,d)}}})}merge(a){return Array.isArray(a)?a.join(", "):a}static from(a){return a instanceof Headers?a:new g(a)}append(a,b){let c=this.headers[a];"string"==typeof c?this.headers[a]=[c,b]:Array.isArray(c)?c.push(b):this.headers[a]=b}delete(a){delete this.headers[a]}get(a){let b=this.headers[a];return void 0!==b?this.merge(b):null}has(a){return void 0!==this.headers[a]}set(a,b){this.headers[a]=b}forEach(a,b){for(let[c,d]of this.entries())a.call(b,d,c,this)}*entries(){for(let a of Object.keys(this.headers)){let b=a.toLowerCase(),c=this.get(b);yield[b,c]}}*keys(){for(let a of Object.keys(this.headers)){let b=a.toLowerCase();yield b}}*values(){for(let a of Object.keys(this.headers)){let b=this.get(a);yield b}}[Symbol.iterator](){return this.entries()}}var h=a.i(91505),i=a.i(85034),j=a.i(91191),k=a.i(32319),l=a.i(88652);function m(a){(function(){let a=null,b=k.workUnitAsyncStorage.getStore();if(b)switch(b.type){case"request":case"validation-client":a=b.validationSampleTracking??null}if(!a)throw Object.defineProperty(new i.InvariantError("Expected to have a workUnitStore that provides validationSampleTracking"),"__NEXT_ERROR_CODE",{value:"E1110",enumerable:!1,configurable:!0});return a})().missingSampleErrors.push(a)}function n(a){throw m(a),a}function o(a,b){return Object.defineProperty(new j.InstantValidationError(`Route "${a}" accessed cookie "${b}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`cookies\` array, or \`{ name: "${b}", value: null }\` if it should be absent.`),"__NEXT_ERROR_CODE",{value:"E1115",enumerable:!1,configurable:!0})}function p(a,b){return Object.defineProperty(new j.InstantValidationError(`Route "${a}" accessed searchParam "${b}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`searchParams\` object, or \`{ "${b}": null }\` if it should be absent.`),"__NEXT_ERROR_CODE",{value:"E1098",enumerable:!1,configurable:!0})}a.s(["assertRootParamInSamples",0,function(a,b,c){if(b&&c in b);else{let b=a.route;n(Object.defineProperty(new j.InstantValidationError(`Route "${b}" accessed root param "${c}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`params\` object.`),"__NEXT_ERROR_CODE",{value:"E1114",enumerable:!1,configurable:!0}))}},"createCookiesFromSample",0,function(a,c){let d=new Set,f=new b.RequestCookies(new Headers);if(a)for(let b of a)d.add(b.name),null!==b.value&&f.set(b.name,b.value);return new Proxy(e.seal(f),{get(a,b,e){if("has"===b){let f=Reflect.get(a,b,e);return function(b){return d.has(b)||n(o(c,b)),f.call(a,b)}}if("get"===b){let f=Reflect.get(a,b,e);return function(b){let e;if("string"==typeof b)e=b;else{if(!b||"object"!=typeof b||"string"!=typeof b.name)return f.call(a,b);e=b.name}return d.has(e)||n(o(c,e)),f.call(a,e)}}return Reflect.get(a,b,e)}})},"createDraftModeForValidation",0,function(){return{get isEnabled(){return!1},enable(){throw Object.defineProperty(Error("Draft mode cannot be enabled during build-time instant validation."),"__NEXT_ERROR_CODE",{value:"E1092",enumerable:!1,configurable:!0})},disable(){throw Object.defineProperty(Error("Draft mode cannot be disabled during build-time instant validation."),"__NEXT_ERROR_CODE",{value:"E1094",enumerable:!1,configurable:!0})}}},"createExhaustiveParamsProxy",0,function(a,b,c){return new Proxy(a,{get:(d,e,f)=>("string"==typeof e&&!l.wellKnownProperties.has(e)&&e in a&&!b.has(e)&&n(Object.defineProperty(new j.InstantValidationError(`Route "${c}" accessed param "${e}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`params\` object.`),"__NEXT_ERROR_CODE",{value:"E1095",enumerable:!1,configurable:!0})),Reflect.get(d,e,f))})},"createExhaustiveSearchParamsProxy",0,function(a,b,c){return new Proxy(a,{get:(a,d,e)=>("string"!=typeof d||l.wellKnownProperties.has(d)||b.has(d)||n(p(c,d)),Reflect.get(a,d,e)),has:(a,d)=>("string"!=typeof d||l.wellKnownProperties.has(d)||b.has(d)||n(p(c,d)),Reflect.has(a,d))})},"createExhaustiveURLSearchParamsProxy",0,function(a,b,c){return new Proxy(a,{get(a,d,e){if("get"===d||"getAll"===d||"has"===d){let f=Reflect.get(a,d,e);return d=>("string"!=typeof d||b.has(d)||n(p(c,d)),f.call(a,d))}let f=Reflect.get(a,d,e);return"function"!=typeof f||Object.hasOwn(a,d)?f:f.bind(a)}})},"createHeadersFromSample",0,function(a,b,c){let d=a?[...a]:[];if(d.find(([a])=>"cookie"===a.toLowerCase()))throw Object.defineProperty(new j.InstantValidationError('Invalid sample: Defining cookies via a "cookie" header is not supported. Use `cookies: [{ name: ..., value: ... }]` instead.'),"__NEXT_ERROR_CODE",{value:"E1111",enumerable:!1,configurable:!0});if(b){let a=b.toString();d.push(["cookie",""!==a?a:null])}let e=new Set,f={};for(let[a,b]of d)e.add(a.toLowerCase()),null!==b&&(f[a.toLowerCase()]=b);return new Proxy(g.seal(g.from(f)),{get(a,b,d){if("get"===b||"has"===b){let f=Reflect.get(a,b,d);return function(b){let d=b.toLowerCase();return e.has(d)||n(Object.defineProperty(new j.InstantValidationError(`Route "${c}" accessed header "${d}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`headers\` array, or \`["${d}", null]\` if it should be absent.`),"__NEXT_ERROR_CODE",{value:"E1116",enumerable:!1,configurable:!0})),f.call(a,d)}}return Reflect.get(a,b,d)}})},"createRelativeURLFromSamples",0,function(a,b,c){let d=function(a,b){let c=[];for(let d of a.split("/")){let a=(0,h.getSegmentParam)(d);if(a)switch(a.paramType){case"catchall":case"optional-catchall":{let e=b[a.paramName];if(void 0===e)e=[d];else if(!Array.isArray(e))throw Object.defineProperty(new j.InstantValidationError(`Expected sample param value for segment '${d}' to be an array of strings, got ${typeof e}`),"__NEXT_ERROR_CODE",{value:"E1104",enumerable:!1,configurable:!0});c.push(...e.map(a=>encodeURIComponent(a)));break}case"dynamic":{let e=b[a.paramName];if(void 0===e)e=d;else if("string"!=typeof e)throw Object.defineProperty(new j.InstantValidationError(`Expected sample param value for segment '${d}' to be a string, got ${typeof e}`),"__NEXT_ERROR_CODE",{value:"E1108",enumerable:!1,configurable:!0});c.push(encodeURIComponent(e));break}case"catchall-intercepted-(..)(..)":case"catchall-intercepted-(.)":case"catchall-intercepted-(..)":case"catchall-intercepted-(...)":case"dynamic-intercepted-(..)(..)":case"dynamic-intercepted-(.)":case"dynamic-intercepted-(..)":case"dynamic-intercepted-(...)":throw Object.defineProperty(new i.InvariantError("Not implemented: Validation of interception routes"),"__NEXT_ERROR_CODE",{value:"E1106",enumerable:!1,configurable:!0});default:a.paramType}else c.push(d)}return c.join("/")}(a,b??{}),e="";if(c){let a=(function(a){let b=new URLSearchParams;if(a){for(let[c,d]of Object.entries(a))if(null!=d)if(Array.isArray(d))for(let a of d)b.append(c,a);else b.set(c,d)}return b})(c).toString();a&&(e="?"+a)}return function(a,b,c=!0){let d=new URL("http://n"),e=b?new URL(b,d):a.startsWith(".")?new URL("http://n"):d,{pathname:f,searchParams:g,search:h,hash:i,href:j,origin:k}=a.startsWith("/")?new URL(`${e.protocol}//${e.host}${a}`):new URL(a,e);if(k!==d.origin)throw Object.defineProperty(Error(`invariant: invalid relative URL, router received ${a}`),"__NEXT_ERROR_CODE",{value:"E159",enumerable:!1,configurable:!0});return{auth:null,host:null,hostname:null,pathname:f,port:null,protocol:null,query:c?function(a){let b={};for(let[c,d]of a.entries()){let a=b[c];void 0===a?b[c]=d:Array.isArray(a)?a.push(d):b[c]=[a,d]}return b}(g):void 0,search:h,hash:i,href:j.slice(k.length),slashes:null}}(d+e,void 0,!0)},"createValidationSampleTracking",0,function(){return{missingSampleErrors:[]}},"trackMissingSampleError",0,m,"trackMissingSampleErrorAndThrow",0,n],39783)},83063,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js "))},83919,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js"))},88471,a=>{"use strict";a.i(83063);var b=a.i(83919);a.n(b)},24373,(a,b,c)=>{b.exports=a.r(14747)},8755,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js "))},24150,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js"))},82622,a=>{"use strict";a.i(8755);var b=a.i(24150);a.n(b)},82809,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js "))},40771,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js"))},6983,a=>{"use strict";a.i(82809);var b=a.i(40771);a.n(b)},4054,(a,b,c)=>{"use strict";var d=a.r(24361),e=a.r(75465),f={stream:!0},g=Object.prototype.hasOwnProperty;function h(a){var b=globalThis.__next_require__(a);return"function"!=typeof b.then||"fulfilled"===b.status?null:(b.then(function(a){b.status="fulfilled",b.value=a},function(a){b.status="rejected",b.reason=a}),b)}var i=new WeakSet,j=new WeakSet;function k(){}function l(a){for(var b=a[1],c=[],d=0;de||35===e||114===e||120===e?(h=e,e=3,d++):(h=0,e=3);continue;case 2:44===(l=c[d++])?e=4:i=i<<4|(96c.length&&(l=-1)}var m=c.byteOffset+d;if(-1c||114===c||120===c?(g=c,c=3,b++):(g=0,c=3);continue;case 2:44===(k=a.charCodeAt(b++))?c=4:h=h<<4|(963*h)throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.");k=a.length}if(-1{"use strict";b.exports=a.r(4054)},23932,(a,b,c)=>{(()=>{"use strict";var a={328:a=>{a.exports=function(a){for(var b=5381,c=a.length;c;)b=33*b^a.charCodeAt(--c);return b>>>0}}},c={};function d(b){var e=c[b];if(void 0!==e)return e.exports;var f=c[b]={exports:{}},g=!0;try{a[b](f,f.exports,d),g=!1}finally{g&&delete c[b]}return f.exports}d.ab="/ROOT/node_modules/next/dist/compiled/string-hash/",b.exports=d(328)})()},9095,81793,7891,98499,52589,2754,641,75385,34373,a=>{"use strict";let b,c,d;a.i(11857);var e,f,g,h,i=a.i(10990),j=a.i(717);a.i(28212),a.i(54691);var k=a.i(56704),l=a.i(32319);function m(){let a=l.workUnitAsyncStorage.getStore();if(a)switch(a.type){case"prerender":case"prerender-runtime":{let b=a.varyParamsAccumulator;if(null!==b)return b.head}}return null}function n(a,b){a.varyParams.add(b)}function o(a,b,c){if(null!==c)return new Proxy(b,{get:(b,d,e)=>("string"==typeof d&&(d===c||Object.prototype.hasOwnProperty.call(b,d))&&n(a,d),Reflect.get(b,d,e)),has:(b,d)=>(d===c&&n(a,c),Reflect.has(b,d)),ownKeys:b=>(n(a,c),Reflect.ownKeys(b))});let d={};for(let c in b)Object.defineProperty(d,c,{get:()=>(n(a,c),b[c]),enumerable:!0});return d}a.i(20635),a.i(20575),a.i(5476);var p=a.i(84513);let q="DYNAMIC_SERVER_USAGE";class r extends Error{constructor(a){super(`Dynamic server usage: ${a}`),this.description=a,this.digest=q}}function s(a){return"object"==typeof a&&null!==a&&"digest"in a&&"string"==typeof a.digest&&a.digest===q}a.s(["DynamicServerError",0,r,"isDynamicServerError",0,s],81793);class t extends Error{constructor(...a){super(...a),this.code="NEXT_STATIC_GEN_BAILOUT"}}let u="function"==typeof j.default.unstable_postpone;function v(a,b,c){if(b)switch(b.type){case"cache":case"unstable-cache":case"private-cache":return}if(!a.forceDynamic&&!a.forceStatic){if(a.dynamicShouldError)throw Object.defineProperty(new t(`Route ${a.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${c}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E553",enumerable:!1,configurable:!0});if(b)switch(b.type){case"prerender-ppr":return x(a.route,c,b.dynamicTracking);case"prerender-legacy":b.revalidate=0;let d=Object.defineProperty(new r(`Route ${a.route} couldn't be rendered statically because it used ${c}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E550",enumerable:!1,configurable:!0});throw a.dynamicUsageDescription=c,a.dynamicUsageStack=d.stack,d}}}function w(a,b,c){let d=Object.defineProperty(new r(`Route ${b.route} couldn't be rendered statically because it used \`${a}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E558",enumerable:!1,configurable:!0});throw c.revalidate=0,b.dynamicUsageDescription=a,b.dynamicUsageStack=d.stack,d}function x(a,b,c){(function(){if(!u)throw Object.defineProperty(Error("Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E224",enumerable:!1,configurable:!0})})(),c&&c.dynamicAccesses.push({stack:c.isDebugDynamicAccesses?Error().stack:void 0,expression:b}),j.default.unstable_postpone(y(a,b))}function y(a,b){return`Route ${a} needs to bail out of prerendering at this point because it used ${b}. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`}if(!1===((e=y("%%%","^^^")).includes("needs to bail out of prerendering at this point because it used")&&e.includes("Learn more: https://nextjs.org/docs/messages/ppr-caught-error")))throw Object.defineProperty(Error("Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E296",enumerable:!1,configurable:!0});function z(a){return"object"==typeof a&&null!==a&&"NEXT_PRERENDER_INTERRUPTED"===a.digest&&"name"in a&&"message"in a&&a instanceof Error}function A(a,b){let c=b.dynamicTracking;c&&c.dynamicAccesses.push({stack:c.isDebugDynamicAccesses?Error().stack:void 0,expression:a})}RegExp("\\n\\s+at Suspense \\(\\)(?:(?!\\n\\s+at (?:body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6) \\(\\))[\\s\\S])*?\\n\\s+at __next_root_layout_boundary__ \\([^\\n]*\\)"),RegExp("\\n\\s+at __next_metadata_boundary__[\\n\\s]"),RegExp("\\n\\s+at __next_viewport_boundary__[\\n\\s]"),RegExp("\\n\\s+at __next_outlet_boundary__[\\n\\s]"),RegExp("\\n\\s+at __next_instant_validation_boundary__[\\n\\s]"),a.s(["Postpone",0,function({reason:a,route:b}){let c=l.workUnitAsyncStorage.getStore();x(b,a,c&&"prerender-ppr"===c.type?c.dynamicTracking:null)},"annotateDynamicAccess",0,A,"isPrerenderInterruptedError",0,z,"markCurrentScopeAsDynamic",0,v,"postponeWithTracking",0,x,"throwToInterruptStaticGeneration",0,w],7891);var B=a.i(85034),C=((f={})[f.Before=1]="Before",f[f.EarlyStatic=2]="EarlyStatic",f[f.Static=3]="Static",f[f.EarlyRuntime=4]="EarlyRuntime",f[f.Runtime=5]="Runtime",f[f.Dynamic=6]="Dynamic",f[f.Abandoned=7]="Abandoned",f);class D extends Error{constructor(a,b){super(`During prerendering, ${b} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${b} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${a}".`),this.route=a,this.expression=b,this.digest="HANGING_PROMISE_REJECTION"}}let E=new WeakMap;function F(a,b,c){if(a.aborted)return Promise.reject(new D(b,c));{let d=new Promise((d,e)=>{let f=e.bind(null,new D(b,c)),g=E.get(a);if(g)g.push(f);else{let b=[f];E.set(a,b),a.addEventListener("abort",()=>{for(let a=0;aa,J=console.warn;function K(a){return function(...b){J(a(...b))}}I(a=>{try{J(H.current)}finally{H.current=null}});var L=a.i(88652);function M(a,b){return N(a,m(),b)}function N(b,c,d){let e=k.workAsyncStorage.getStore();if(!e)throw Object.defineProperty(new B.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let f=l.workUnitAsyncStorage.getStore();if(f)switch(f.type){case"prerender":case"prerender-client":case"prerender-ppr":case"prerender-legacy":return function(a,b){if(a.forceStatic)return Promise.resolve({});switch(b.type){case"prerender":case"prerender-client":var c=a,d=b;let e=O.get(d);if(e)return e;let f=F(d.renderSignal,c.route,"`searchParams`"),g=new Proxy(f,{get(a,b,c){if(Object.hasOwn(f,b))return p.ReflectAdapter.get(a,b,c);switch(b){case"then":return A("`await searchParams`, `searchParams.then`, or similar",d),p.ReflectAdapter.get(a,b,c);case"status":return A("`use(searchParams)`, `searchParams.status`, or similar",d),p.ReflectAdapter.get(a,b,c);default:return p.ReflectAdapter.get(a,b,c)}}});return O.set(d,g),g;case"prerender-ppr":case"prerender-legacy":var h=a,i=b;let j=O.get(h);if(j)return j;let k=Promise.resolve({}),l=new Proxy(k,{get(a,b,c){if(Object.hasOwn(k,b))return p.ReflectAdapter.get(a,b,c);if("string"==typeof b&&"then"===b){let a="`await searchParams`, `searchParams.then`, or similar";if(h.dynamicShouldError){var d=h.route;throw Object.defineProperty(new t(`Route ${d} with \`dynamic = "error"\` couldn't be rendered statically because it used ${a}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E543",enumerable:!1,configurable:!0})}"prerender-ppr"===i.type?x(h.route,a,i.dynamicTracking):w(a,h,i)}return p.ReflectAdapter.get(a,b,c)}});return O.set(h,l),l;default:return b}}(e,f);case"validation-client":throw Object.defineProperty(new B.InvariantError("createServerSearchParamsForServerPage should not be called in a client validation."),"__NEXT_ERROR_CODE",{value:"E1066",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new B.InvariantError("createServerSearchParamsForServerPage should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E747",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new B.InvariantError("createServerSearchParamsForServerPage should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1128",enumerable:!1,configurable:!0});case"prerender-runtime":return function(a,b,c,d){let e=P(null!==c?function(a,b){let c={};for(let d in b)Object.defineProperty(c,d,{get:()=>(n(a,"?"),b[d]),enumerable:!0});return c}(c,a):a),{stagedRendering:f}=b;if(!f)return e;let g=d?C.EarlyRuntime:C.Runtime;return f.waitForStage(g).then(()=>e)}(b,f,c,d);case"request":return function(b,c,d,e){if(c.forceStatic)return Promise.resolve({});if(!d.asyncApiPromises)return P(b);if(d.validationSamples){let{createExhaustiveSearchParamsProxy:e}=a.r(39783),f=new Set(Object.keys(d.validationSamples.searchParams??{}));b=e(b,f,c.route)}return(e?d.asyncApiPromises.earlySharedSearchParamsParent:d.asyncApiPromises.sharedSearchParamsParent).then(()=>b)}(b,e,f,d)}(0,l.throwInvariantForMissingStore)()}a.i(24725);let O=new WeakMap;function P(a){let b=O.get(a);if(b)return b;let c=Promise.resolve(a);return O.set(a,c),c}new WeakMap,K(function(a,b){let c=a?`Route "${a}" `:"This route ";return Object.defineProperty(Error(`${c}used ${b}. \`searchParams\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`),"__NEXT_ERROR_CODE",{value:"E848",enumerable:!1,configurable:!0})}),a.s(["createPrerenderSearchParamsForClientPage",0,function(){let a=k.workAsyncStorage.getStore();if(!a)throw Object.defineProperty(new B.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});if(a.forceStatic)return Promise.resolve({});let b=l.workUnitAsyncStorage.getStore();if(b)switch(b.type){case"prerender":case"prerender-client":return F(b.renderSignal,a.route,"`searchParams`");case"validation-client":throw Object.defineProperty(new B.InvariantError("createPrerenderSearchParamsForClientPage should not be called in a client validation."),"__NEXT_ERROR_CODE",{value:"E1061",enumerable:!1,configurable:!0});case"prerender-runtime":throw Object.defineProperty(new B.InvariantError("createPrerenderSearchParamsForClientPage should not be called in a runtime prerender."),"__NEXT_ERROR_CODE",{value:"E768",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new B.InvariantError("createPrerenderSearchParamsForClientPage should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E746",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new B.InvariantError("createPrerenderSearchParamsForClientPage should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1124",enumerable:!1,configurable:!0});case"prerender-ppr":case"prerender-legacy":case"request":return Promise.resolve({})}(0,l.throwInvariantForMissingStore)()},"createServerSearchParamsForMetadata",0,M,"createServerSearchParamsForServerPage",0,N],98499);var Q=a.i(43285);function R(a,b,c){return S(a,b,m(),c)}function S(b,c,d,e){let f=k.workAsyncStorage.getStore();if(!f)throw Object.defineProperty(new B.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let g=l.workUnitAsyncStorage.getStore();if(g)switch(g.type){case"prerender":case"prerender-client":case"prerender-ppr":case"prerender-legacy":var h=b,i=c,j=f,m=g,n=d;let p=null!==n?o(n,h,i):h;switch(m.type){case"prerender":case"prerender-client":{let a=m.fallbackRouteParams;if(a){for(let b in h)if(a.has(b))return function(a,b,c){let d=T.get(a);if(d)return d;let e=new Proxy(F(c.renderSignal,b.route,"`params`"),U);return T.set(a,e),e}(p,j,m)}break}case"prerender-ppr":{let a=m.fallbackRouteParams;if(a){for(let b in h)if(a.has(b))return function(a,b,c,d){let e=T.get(a);if(e)return e;let f={...a},g=Promise.resolve(f);return T.set(a,g),Object.keys(a).forEach(a=>{L.wellKnownProperties.has(a)||b.has(a)&&Object.defineProperty(f,a,{get(){let b=(0,L.describeStringPropertyAccess)("params",a);"prerender-ppr"===d.type?x(c.route,b,d.dynamicTracking):w(b,c,d)},enumerable:!0})}),g}(p,a,j,m)}}}return V(p);case"validation-client":throw Object.defineProperty(new B.InvariantError("createServerParamsForServerSegment should not be called in client contexts."),"__NEXT_ERROR_CODE",{value:"E1101",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new B.InvariantError("createServerParamsForServerSegment should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E743",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new B.InvariantError("createServerParamsForServerSegment should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1120",enumerable:!1,configurable:!0});case"prerender-runtime":return function(a,b,c,d,e){let f=V(null!==d?o(d,a,b):a),{stagedRendering:g}=c;if(!g)return f;let h=e?C.EarlyRuntime:C.Runtime;return g.waitForStage(h).then(()=>f)}(b,c,g,d,e);case"request":if(g.asyncApiPromises&&g.validationSamples)return function(b,c,d,e,f){let{createExhaustiveParamsProxy:g}=a.r(39783),h=g(b,new Set(Object.keys(d.params??{})),c.route);return(f?e.earlySharedParamsParent:e.sharedParamsParent).then(()=>h)}(b,f,g.validationSamples,g.asyncApiPromises,e);if(g.asyncApiPromises&&function(a,b){if(b){for(let c in a)if(b.has(c))return!0}return!1}(b,g.fallbackParams))return(e?g.asyncApiPromises.earlySharedParamsParent:g.asyncApiPromises.sharedParamsParent).then(()=>b);return V(b)}(0,l.throwInvariantForMissingStore)()}let T=new WeakMap,U={get:function(a,b,c){if("then"===b||"catch"===b||"finally"===b){let d=p.ReflectAdapter.get(a,b,c);return({[b]:(...b)=>{let c=Q.dynamicAccessAsyncStorage.getStore();return c&&c.abortController.abort(Object.defineProperty(Error("Accessed fallback `params` during prerendering."),"__NEXT_ERROR_CODE",{value:"E691",enumerable:!1,configurable:!0})),new Proxy(d.apply(a,b),U)}})[b]}return p.ReflectAdapter.get(a,b,c)}};function V(a){let b=T.get(a);if(b)return b;let c=Promise.resolve(a);return T.set(a,c),c}K(function(a,b){let c=a?`Route "${a}" `:"This route ";return Object.defineProperty(Error(`${c}used ${b}. \`params\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`),"__NEXT_ERROR_CODE",{value:"E834",enumerable:!1,configurable:!0})}),a.s(["createPrerenderParamsForClientSegment",0,function(a){let b=k.workAsyncStorage.getStore();if(!b)throw Object.defineProperty(new B.InvariantError("Missing workStore in createPrerenderParamsForClientSegment"),"__NEXT_ERROR_CODE",{value:"E773",enumerable:!1,configurable:!0});let c=l.workUnitAsyncStorage.getStore();if(c)switch(c.type){case"prerender":case"prerender-client":let d=c.fallbackRouteParams;if(d){for(let e in a)if(d.has(e))return F(c.renderSignal,b.route,"`params`")}break;case"validation-client":throw Object.defineProperty(new B.InvariantError("createPrerenderParamsForClientSegment should not be called in validation contexts."),"__NEXT_ERROR_CODE",{value:"E1099",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new B.InvariantError("createPrerenderParamsForClientSegment should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E734",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new B.InvariantError("createPrerenderParamsForClientSegment should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1126",enumerable:!1,configurable:!0})}return Promise.resolve(a)},"createServerParamsForMetadata",0,R,"createServerParamsForServerSegment",0,S],52589),a.i(88471);var W=a.i(7997),X=a.i(91505);function Y(a){return Array.isArray(a)?a:[a]}function Z(a){if(null!=a)return Y(a)}var $=a.i(24373);function _(a){return"string"==typeof a||a instanceof URL}function aa(){let a=!!process.env.__NEXT_EXPERIMENTAL_HTTPS;return new URL(`${a?"https":"http"}://localhost:${process.env.PORT||3e3}`)}function ab(a,b){if(a instanceof URL)return a;if(!a)return null;try{return new URL(a)}catch{}b||(b=aa());let c=b.pathname||"";return new URL($.default.posix.join(c,a),b)}let ac=/^(?:\/((?!\.well-known(?:\/.*)?)(?:[^/]+\/)*[^/]+\.\w+))(\/?|$)/i;function ad(a,b,c,{trailingSlash:d}){var e,f;a="string"==typeof(e=a)&&e.startsWith("./")?$.default.posix.resolve(c,e):e;let g="",h=b?ab(a,b):a;if(g="string"==typeof h?h:"/"===h.pathname&&0===h.searchParams.size?h.origin:h.href,d&&!g.endsWith("/")){let a=g.startsWith("/"),c=g.includes("?"),d=!1,e=!1;if(!a){try{let a=new URL(g);d=null!=b&&a.origin!==b.origin,f=a.pathname,e=ac.test(f)}catch{d=!0}if(!e&&!d&&!c)return`${g}/`}}return g}function ae(a,b){return a?a.replace(/%s/g,b):b}function af(a,b){let c,d="string"!=typeof a&&a&&"template"in a?a.template:null;return("string"==typeof a?c=ae(b,a):a&&("default"in a&&(c=ae(b,a.default)),"absolute"in a&&a.absolute&&(c=a.absolute)),a&&"string"!=typeof a)?{template:d,absolute:c||""}:{absolute:c||a||"",template:d}}var ag=a.i(42440),ah=a.i(43070);let ai=["authors","tags"],aj=["albums","musicians"],ak=["actors","directors","writers","tags"],al=["emails","phoneNumbers","faxNumbers","alternateLocale","audio","videos"];function am(a,b,c){let d=Z(a);if(!d)return d;let e=[];for(let a of d){let d=function(a,b,c){if(!a)return;let d=_(a),e=d?a:a.url;if(!e)return;let f=!!process.env.VERCEL;if("string"==typeof e&&!(0,ag.isFullStringUrl)(e)&&(!b||c)){let a=function(a){let b,c,d=aa(),e=(b=process.env.VERCEL_BRANCH_URL||process.env.VERCEL_URL)?new URL(`https://${b}`):void 0,f=(c=process.env.VERCEL_PROJECT_PRODUCTION_URL)?new URL(`https://${c}`):void 0;return e&&"preview"===process.env.VERCEL_ENV?e:a||f||d}(b);f||b||(0,ah.warnOnce)(`metadataBase property in metadata export is not set for resolving social open graph or twitter images, using "${a.origin}". See https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase`),b=a}return d?{url:ab(e,b)}:{...a,url:ab(e,b)}}(a,b,c);d&&e.push(d)}return e}let an={article:ai,book:ai,"music.song":aj,"music.album":aj,"music.playlist":["albums","musicians"],"music.radio_station":["creators"],"video.movie":ak,"video.episode":ak},ao=async(a,b,c,d,e)=>{var f;if(!a)return null;let g={...a,title:af(a.title,e)};for(let b of(f=a&&"type"in a?a.type:void 0)&&f in an?an[f].concat(al):al)if(b in a&&"url"!==b){let c=a[b];g[b]=c?Y(c):null}return g.images=am(a.images,b,d.isStaticMetadataRouteFile),g.url=a.url?ad(a.url,b,await c,d):null,g},ap=["site","siteId","creator","creatorId","description"],aq=(a,b,c,d)=>{var e;if(!a)return null;let f="card"in a?a.card:void 0,g={...a,title:af(a.title,d)};for(let b of ap)g[b]=a[b]||null;if(g.images=am(a.images,b,c.isStaticMetadataRouteFile),f=f||((null==(e=g.images)?void 0:e.length)?"summary_large_image":"summary"),g.card=f,"card"in g)switch(g.card){case"player":g.players=Z(g.players)||[];break;case"app":g.app=g.app||{}}return g};var ar=a.i(32885);async function as(a){let b,c,d,{layout:e,page:f,defaultPage:g}=a[2],h=void 0!==e,i=void 0!==f,j=void 0!==g&&a[0]===ar.DEFAULT_SEGMENT_KEY;return h?(b=await e[0](),c="layout",d=e[1]):i?(b=await f[0](),c="page",d=f[1]):j&&(b=await g[0](),c="page",d=g[1]),{mod:b,modType:c,filePath:d}}async function at(a,b){let{[b]:c}=a[2];if(void 0!==c)return await c[0]()}function au(a,b,c,d){if(a instanceof URL){let b=new URL(c,a);a.searchParams.forEach((a,c)=>b.searchParams.set(c,a)),a=b}return ad(a,b,c,d)}let av=a=>{var b;if(!a)return null;let c=[];return null==(b=Z(a))||b.forEach(a=>{"string"==typeof a?c.push({color:a}):"object"==typeof a&&c.push({color:a.color,media:a.media})}),c};async function aw(a,b,c,d){if(!a)return null;let e={};for(let[f,g]of Object.entries(a))if("string"==typeof g||g instanceof URL){let a=await c;e[f]=[{url:au(g,b,a,d)}]}else if(g&&g.length){e[f]=[];let a=await c;g.forEach((c,g)=>{let h=au(c.url,b,a,d);e[f][g]={url:h,title:c.title}})}return e}async function ax(a,b,c,d){return a?{url:au("string"==typeof a||a instanceof URL?a:a.url,b,await c,d)}:null}let ay=async(a,b,c,d)=>{if(!a)return null;let e=await ax(a.canonical,b,c,d),f=await aw(a.languages,b,c,d);return{canonical:e,languages:f,media:await aw(a.media,b,c,d),types:await aw(a.types,b,c,d)}},az=["noarchive","nosnippet","noimageindex","nocache","notranslate","indexifembedded","nositelinkssearchbox","unavailable_after","max-video-preview","max-image-preview","max-snippet"],aA=a=>{if(!a)return null;if("string"==typeof a)return a;let b=[];for(let c of(a.index?b.push("index"):"boolean"==typeof a.index&&b.push("noindex"),a.follow?b.push("follow"):"boolean"==typeof a.follow&&b.push("nofollow"),az)){let d=a[c];void 0!==d&&!1!==d&&b.push("boolean"==typeof d?c:`${c}:${d}`)}return b.join(", ")},aB=a=>a?{basic:aA(a),googleBot:"string"!=typeof a?aA(a.googleBot):null}:null,aC=["google","yahoo","yandex","me","other"],aD=a=>{if(!a)return null;let b={};for(let c of aC){let d=a[c];if(d)if("other"===c)for(let c in b.other={},a.other){let d=Z(a.other[c]);d&&(b.other[c]=d)}else b[c]=Z(d)}return b},aE=a=>{var b;if(!a)return null;if(!0===a)return{capable:!0};let c=a.startupImage?null==(b=Z(a.startupImage))?void 0:b.map(a=>"string"==typeof a?{url:a}:a):null;return{capable:!("capable"in a)||!!a.capable,title:a.title||null,startupImage:c,statusBarStyle:a.statusBarStyle||"default"}},aF=a=>{if(!a)return null;for(let b in a)a[b]=Z(a[b]);return a},aG=async(a,b,c,d)=>a?{appId:a.appId,appArgument:a.appArgument?au(a.appArgument,b,await c,d):void 0}:null,aH=a=>a?{appId:a.appId,admins:Z(a.admins)}:null,aI=async(a,b,c,d)=>({previous:(null==a?void 0:a.previous)?au(a.previous,b,await c,d):null,next:(null==a?void 0:a.next)?au(a.next,b,await c,d):null}),aJ=["icon","shortcut","apple","other"];function aK(a){return _(a)?{url:a}:(Array.isArray(a),a)}let aL=a=>{if(!a)return null;let b={icon:[],apple:[]};if(Array.isArray(a))b.icon=a.map(aK).filter(Boolean);else if(_(a))b.icon=[aK(a)];else for(let c of aJ){let d=Z(a[c]);d&&(b[c]=d.map(aK))}return b};var aM=a.i(75164),aN=a.i(18970);function aO(a){let b=parseInt(a.slice(0,2),16),c=b>>1&63,d=Array(6);for(let a=0;a<6;a++){let b=c>>5-a&1;d[a]=1===b}return{type:1==(b>>7&1)?"use-cache":"server-action",usedArgs:d,hasRestArgs:1==(1&b)}}function aP(a){return a.$$typeof===Symbol.for("react.server.reference")}function aQ(a){if(a instanceof URL)return a.toString();if(Array.isArray(a))return a.map(a=>aQ(a));if(a&&"object"==typeof a){let b={};for(let[c,d]of Object.entries(a))b[c]=aQ(d);return b}return a}function aR(a){if("string"==typeof a)try{a=new URL(a)}catch{throw Object.defineProperty(Error(`metadataBase is not a valid URL: ${a}`),"__NEXT_ERROR_CODE",{value:"E850",enumerable:!1,configurable:!0})}return a}async function aS(a,b,c,d,e,f,g,h){var i,j;if(!d)return c;let{icon:k,apple:l,openGraph:m,twitter:n,manifest:o}=d;if(k&&(g.icon=k),l&&(g.apple=l),n&&!(null==b||null==(i=b.twitter)?void 0:i.hasOwnProperty("images"))){let b=aq({...c.twitter,images:n},a,{...e,isStaticMetadataRouteFile:!0},f.twitter);c.twitter=aQ(b)}if(m&&!(null==b||null==(j=b.openGraph)?void 0:j.hasOwnProperty("images"))){let b=await ao({...c.openGraph,images:m},a,h,{...e,isStaticMetadataRouteFile:!0},f.openGraph);c.openGraph=aQ(b)}return o&&(c.manifest=o),c}async function aT(a,b,{metadata:c,resolvedMetadata:d,staticFilesMetadata:e,titleTemplates:f,metadataContext:g,buildState:h,leafSegmentStaticIcons:i}){let j=structuredClone(d),k=aR((null==c?void 0:c.metadataBase)!==void 0?c.metadataBase:d.metadataBase);for(let d in c)switch(d){case"title":j.title=af(c.title,f.title);break;case"alternates":j.alternates=aQ(await ay(c.alternates,k,b,g));break;case"openGraph":j.openGraph=aQ(await ao(c.openGraph,k,b,g,f.openGraph));break;case"twitter":j.twitter=aQ(aq(c.twitter,k,g,f.twitter));break;case"facebook":j.facebook=aH(c.facebook);break;case"verification":j.verification=aD(c.verification);break;case"icons":j.icons=aQ(aL(c.icons));break;case"appleWebApp":j.appleWebApp=aE(c.appleWebApp);break;case"appLinks":j.appLinks=aQ(aF(c.appLinks));break;case"robots":j.robots=aB(c.robots);break;case"archives":case"assets":case"bookmarks":case"keywords":j[d]=Z(c[d]);break;case"authors":j[d]=aQ(Z(c.authors));break;case"itunes":j[d]=await aG(c.itunes,k,b,g);break;case"pagination":j.pagination=await aI(c.pagination,k,b,g);break;case"abstract":case"applicationName":case"description":case"generator":case"creator":case"publisher":case"category":case"classification":case"referrer":case"formatDetection":j[d]=c[d]??null;break;case"manifest":case"pinterest":j[d]=aQ(c[d])??null;break;case"other":j.other=Object.assign({},j.other,c.other),c.other&&("apple-touch-fullscreen"in c.other&&h.warnings.add(`Use appleWebApp instead +Read more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`),"apple-touch-icon-precomposed"in c.other&&h.warnings.add(`Use icons.apple instead +Read more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`));break;case"metadataBase":j.metadataBase=k?k.toString():null;break;case"apple-touch-fullscreen":h.warnings.add(`Use appleWebApp instead +Read more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`);break;case"apple-touch-icon-precomposed":h.warnings.add(`Use icons.apple instead +Read more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`);break;case"themeColor":case"colorScheme":case"viewport":null!=c[d]&&h.warnings.add(`Unsupported metadata ${d} is configured in metadata export in ${a}. Please move it to viewport export instead. +Read more: https://nextjs.org/docs/app/api-reference/functions/generate-viewport`)}return aS(k,c,j,e,g,f,i,b)}function aU(a,b,c){if("function"==typeof a.generateViewport){let{route:d}=c,e=aW(a.generateViewport,b);return Object.assign(b=>(0,aM.getTracer)().trace(aN.ResolveMetadataSpan.generateViewport,{spanName:`generateViewport ${d}`,attributes:{"next.page":d}},()=>a.generateViewport(e,b)),{$$original:a.generateViewport})}return a.viewport||null}function aV(a,b,c){if("function"==typeof a.generateMetadata){let{route:d}=c,e=aW(a.generateMetadata,b);return Object.assign(b=>(0,aM.getTracer)().trace(aN.ResolveMetadataSpan.generateMetadata,{spanName:`generateMetadata ${d}`,attributes:{"next.page":d}},()=>a.generateMetadata(e,b)),{$$original:a.generateMetadata})}return a.metadata||null}function aW(a,b){return!function(a){if(!aP(a))return!1;let{type:b}=aO(a.$$id);return"use-cache"===b}(a)?b:"searchParams"in b?{...b,$$isPage:!0}:{...b,$$isLayout:!0}}async function aX(a,b,c){if(!(null==a?void 0:a[c]))return;let d=a[c].map(async a=>await a(b));return(null==d?void 0:d.length)>0?(await Promise.all(d)).flat():void 0}async function aY(a,b){let{metadata:c}=a;if(!c)return null;let[d,e,f,g]=await Promise.all([aX(c,b,"icon"),aX(c,b,"apple"),aX(c,b,"openGraph"),aX(c,b,"twitter")]);return{icon:d,apple:e,openGraph:f,twitter:g,manifest:c.manifest}}async function aZ({tree:a,metadataItems:b,errorMetadataItem:c,props:d,route:e,errorConvention:f}){let g,h,i=!!(f&&a[2][f]);if(f)g=await at(a,"layout"),h=f;else{let{mod:b,modType:c}=await as(a);g=b,h=c}h&&(e+=`/${h}`);let j=await aY(a[2],d),k=g?aV(g,d,{route:e}):null;if(b.push([k,j]),i&&f){let b=await at(a,f),g=b?aV(b,d,{route:e}):null;c[0]=g,c[1]=j}}async function a$({tree:a,viewportItems:b,errorViewportItemRef:c,props:d,route:e,errorConvention:f}){let g,h,i=!!(f&&a[2][f]);if(f)g=await at(a,"layout"),h=f;else{let{mod:b,modType:c}=await as(a);g=b,h=c}h&&(e+=`/${h}`);let j=g?aU(g,d,{route:e}):null;if(b.push(j),i&&f){let b=await at(a,f);c.current=b?aU(b,d,{route:e}):null}}let a_=(0,j.cache)(async function(a,b,c,d,e){return a0([],a,void 0,{},null,b,c,[null,null],d,e)});async function a0(a,b,c,d,e,f,g,h,i,j){let[k,l,{page:m}]=b,n=c&&c.length?[...c,k]:[k],o=d,p=(0,X.getSegmentParam)(k);if(p){let a=i[p.paramName];null!=a&&(o={...d,[p.paramName]:a})}let q=(null==p?void 0:p.paramType)==="optional-catchall"&&(null===i[p.paramName]||void 0===i[p.paramName])?p.paramName:e,r=R(o,q,j);for(let c in await aZ({tree:b,metadataItems:a,errorMetadataItem:h,errorConvention:g,props:void 0!==m?{params:r,searchParams:f}:{params:r},route:n.filter(a=>a!==ar.PAGE_SEGMENT_KEY).join("/")}),l){let b=l[c];await a0(a,b,n,o,q,f,g,h,i,j)}return 0===Object.keys(l).length&&g&&a.push(h),a}let a1=(0,j.cache)(async function(a,b,c,d,e){return a2([],a,void 0,{},null,b,c,{current:null},d,e)});async function a2(a,b,c,d,e,f,g,h,i,j){let k,[l,m,{page:n}]=b,o=c&&c.length?[...c,l]:[l],p=d,q=(0,X.getSegmentParam)(l);if(q){let a=i[q.paramName];null!=a&&(p={...d,[q.paramName]:a})}let r=(null==q?void 0:q.paramType)==="optional-catchall"&&(null===i[q.paramName]||void 0===i[q.paramName])?q.paramName:e,s=R(p,r,j);for(let c in k=void 0!==n?{params:s,searchParams:f}:{params:s},await a$({tree:b,viewportItems:a,errorViewportItemRef:h,errorConvention:g,props:k,route:o.filter(a=>a!==ar.PAGE_SEGMENT_KEY).join("/")}),m){let b=m[c];await a2(a,b,o,p,r,f,g,h,i,j)}return 0===Object.keys(m).length&&g&&a.push(h.current),a}let a3=a=>!!(null==a?void 0:a.absolute),a4=a=>a3(null==a?void 0:a.title);function a5(a,b){a&&(!a4(a)&&a4(b)&&(a.title=b.title),!a.description&&b.description&&(a.description=b.description))}let a6=()=>{};function a7(a,b){if("function"==typeof b){let d=function(a){if(!aP(a))return null;let b=aO(a.$$id);return"use-cache"===b.type?b:null}(b.$$original);if(d&&d.usedArgs[1]){var c;let d,e,f=new Promise(b=>a.push(b));a.push((c=async()=>b(f),e={then:(a,b)=>(d||(d=Promise.resolve(c())),d.then(a=>{e.value=a}).catch(()=>{}),d.then(a,b))}))}else{let c;d?(a.push(a6),c=b()):c=b(new Promise(b=>a.push(b))),a.push(c),c instanceof Promise&&c.catch(a=>({__nextError:a}))}}else"object"==typeof b?a.push(b):a.push(null)}async function a8(a,b,c,d){let e,f={viewport:null,themeColor:null,colorScheme:null,metadataBase:null,title:null,description:null,applicationName:null,authors:null,generator:null,keywords:null,referrer:null,creator:null,publisher:null,robots:null,manifest:null,alternates:{canonical:null,languages:null,media:null,types:null},icons:null,openGraph:null,twitter:null,verification:{},appleWebApp:null,formatDetection:null,itunes:null,facebook:null,pinterest:null,abstract:null,appLinks:null,archives:null,assets:null,bookmarks:null,category:null,classification:null,pagination:{previous:null,next:null},other:{}},g={title:null,twitter:null,openGraph:null},h={warnings:new Set},i={icon:[],apple:[]},j=function(a){let b=[];for(let c=0;c0||i.apple.length>0)&&!f.icons&&(f.icons={icon:[],apple:[]},i.icon.length>0&&f.icons.icon.unshift(...i.icon),i.apple.length>0&&f.icons.apple.unshift(...i.apple)),h.warnings.size>0)for(let a of h.warnings)ah.warn(a);return function(a,b,c,d){let{openGraph:e,twitter:f}=a;if(e){let b={},g=a4(f),h=null==f?void 0:f.description,i=!!((null==f?void 0:f.hasOwnProperty("images"))&&f.images);if(!g&&(a3(e.title)?b.title=e.title:a.title&&a3(a.title)&&(b.title=a.title)),h||(b.description=e.description||a.description||void 0),i||(b.images=e.images),Object.keys(b).length>0){let e=aq(b,aR(a.metadataBase),d,c.twitter);a.twitter?a.twitter=Object.assign({},a.twitter,{...!g&&{title:null==e?void 0:e.title},...!h&&{description:null==e?void 0:e.description},...!i&&{images:null==e?void 0:e.images}}):a.twitter=aQ(e)}}return a5(e,a),a5(f,a),b&&(a.icons||(a.icons={icon:[],apple:[]}),a.icons.icon.unshift(b)),a}(f,e,g,d)}async function a9(a){let b={width:"device-width",initialScale:1,themeColor:null,colorScheme:null},c=function(a){let b=[];for(let c=0;c0)return F(c.renderSignal,b.route,"`pathname`");break}case"prerender-ppr":{let a=c.fallbackRouteParams;if(a&&a.size>0){var d,e;let a,f,g;return d=b,e=c.dynamicTracking,a=null,g=(f=new Promise((b,c)=>{a=c})).then.bind(f),f.then=(b,c)=>{if(a)try{x(d.route,"metadata relative url resolving",e)}catch(b){a(b),a=null}return g(b,c)},new Proxy(f,{})}}}return Promise.resolve(a)}(a,b,c);case"prerender-client":case"validation-client":throw Object.defineProperty(new B.InvariantError("createServerPathnameForMetadata should not be called in client contexts."),"__NEXT_ERROR_CODE",{value:"E1065",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new B.InvariantError("createServerPathnameForMetadata should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E740",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new B.InvariantError("createServerPathnameForMetadata should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1129",enumerable:!1,configurable:!0});case"prerender-runtime":return function(a,b){let{stagedRendering:c}=a;return c?c.waitForStage(c.currentStage===C.EarlyStatic||c.currentStage===C.EarlyRuntime?C.EarlyRuntime:C.Runtime).then(()=>b):b}(c,bf(a));case"request":return bf(a)}(0,l.throwInvariantForMissingStore)()}(b);async function n(){if(!h){let a=l.workUnitAsyncStorage.getStore();if(a){let b=(0,l.getStagedRenderingController)(a);b&&await b.waitForStage(C.Static)}}return await bo(a,i,e,h,f).catch(b=>{if(bh(b))throw b;return!f&&be(b)?bq(a,i,e,h).catch(()=>null):null})}async function o(){if(!h){let a=l.workUnitAsyncStorage.getStore();if(a){let b=(0,l.getStagedRenderingController)(a);b&&await b.waitForStage(C.Static)}}return await bk(a,m,i,e,d,h,f).catch(b=>{if(bh(b))throw b;return!f&&be(b)?bm(a,m,i,e,d,h).catch(()=>null):null})}function p(){let b=Promise.all([bk(a,m,i,e,d,h,f),bo(a,i,e,h,f)]).then(()=>null);return g?(0,W.jsx)(bi.OutletBoundary,{children:(0,W.jsx)(j.Suspense,{name:"Next.MetadataOutlet",children:b})}):(0,W.jsx)(bi.OutletBoundary,{children:b})}return n.displayName="Next.Viewport",o.displayName="Next.Metadata",p.displayName="Next.MetadataOutlet",{Viewport:function(){return(0,W.jsx)(bi.ViewportBoundary,{children:(0,W.jsx)(n,{})})},Metadata:function(){return g?(0,W.jsx)("div",{hidden:!0,children:(0,W.jsx)(bi.MetadataBoundary,{children:(0,W.jsx)(j.Suspense,{name:"Next.Metadata",children:(0,W.jsx)(o,{})})})}):(0,W.jsx)(bi.MetadataBoundary,{children:(0,W.jsx)(o,{})})},MetadataOutlet:p}}],2754);var bu=a.i(75465);a.s(["preconnect",0,function(a,b,c){let d={};"string"==typeof b&&(d.crossOrigin=b),"string"==typeof c&&(d.nonce=c),bu.default.preconnect(a,d)},"preloadFont",0,function(a,b,c,d){let e={as:"font",type:b};"string"==typeof c&&(e.crossOrigin=c),"string"==typeof d&&(e.nonce=d),bu.default.preload(a,e)},"preloadStyle",0,function(a,b,c){let d={as:"style"};"string"==typeof b&&(d.crossOrigin=b),"string"==typeof c&&(d.nonce=c),bu.default.preload(a,d)}],641),a.s(["taintObjectReference",0,function(){throw Object.defineProperty(Error("Taint can only be used with the taint flag."),"__NEXT_ERROR_CODE",{value:"E354",enumerable:!1,configurable:!0})}],75385);var bv=((g={})[g.HasRuntimePrefetch=1]="HasRuntimePrefetch",g[g.SubtreeHasInstant=2]="SubtreeHasInstant",g[g.SegmentHasLoadingBoundary=4]="SegmentHasLoadingBoundary",g[g.SubtreeHasLoadingBoundary=8]="SubtreeHasLoadingBoundary",g[g.IsRootLayout=16]="IsRootLayout",g[g.ParentInlinedIntoSelf=32]="ParentInlinedIntoSelf",g[g.InlinedIntoChild=64]="InlinedIntoChild",g[g.HeadInlinedIntoSelf=128]="HeadInlinedIntoSelf",g[g.HeadOutlined=256]="HeadOutlined",g);function bw(a){return(a.then(bx),"fulfilled"!==a.status)?null:a.value}let bx=()=>{};var by=a.i(35427),bz=a.i(22693),bA=a.i(68113);let bB="/_head";function bC(a){if("string"==typeof a)return a.startsWith(ar.PAGE_SEGMENT_KEY)?ar.PAGE_SEGMENT_KEY:"/_not-found"===a?"_not-found":bF(a);let b=a[0];return"$"+a[2]+"$"+bF(b)}function bD(a,b,c){return a+"/"+("children"===b?c:`@${bF(b)}/${c}`)}let bE=/^[a-zA-Z0-9\-_@]+$/;function bF(a){return bE.test(a)?a:"!"+btoa(a).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")}a.i(23932),a.i(14976);var bG=a.i(71717),bH=a.i(91191);function bI(a){if("object"==typeof a&&null!==a&&"digest"in a&&"BAILOUT_TO_CLIENT_SIDE_RENDERING"===a.digest||function(a){if("object"!=typeof a||null===a||!("digest"in a)||"string"!=typeof a.digest)return!1;let b=a.digest.split(";"),[c,d]=b,e=b.slice(2,-2).join(";"),f=Number(b.at(-2));return"NEXT_REDIRECT"===c&&("replace"===d||"push"===d)&&"string"==typeof e&&!isNaN(f)&&f in bG.RedirectStatusCode}(a)||be(a)||s(a)||z(a)||(0,bH.isInstantValidationError)(a))return a.digest}var bJ=((h={}).ProspectiveRender="the prospective render",h.SegmentCollection="segment collection",h.InstantValidation="instant validation",h);function bK(a){let b=bI(a);if(b)return b;if(process.env.NEXT_DEBUG_BUILD||process.env.__NEXT_VERBOSE_LOGGING){let b=k.workAsyncStorage.getStore();!function(a,b,c){let d;if(!bI(a)){if("object"==typeof a&&null!==a&&"message"in a&&"string"==typeof a.message&&a.message.startsWith("This rendered a large document (>"))return console.error(a);if("object"==typeof a&&null!==a&&"string"==typeof a.message){if(d=a.message,"string"==typeof a.stack){let e=a.stack,f=e.indexOf("\n");if(f>-1){let a=Object.defineProperty(Error(`Route ${b} errored during ${c}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. + +Original Error: ${d}`),"__NEXT_ERROR_CODE",{value:"E949",enumerable:!1,configurable:!0});a.stack="Error: "+a.message+e.slice(f),console.error(a);return}}}else"string"==typeof a&&(d=a);if(d)return console.error(`Route ${b} errored during ${c}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. No stack was provided. + +Original Message: ${d}`);console.error(`Route ${b} errored during ${c}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. The thrown value is logged just following this message`),console.error(a)}}(a,(null==b?void 0:b.route)??"unknown route",bJ.SegmentCollection)}}function bL(a){let b=a.f;return 1!==b.length&&3!==b[0].length?(console.error("Internal Next.js error: InitialRSCPayload does not match the expected shape for a prerendered page during segment prefetch generation."),null):{buildId:a.b,flightRouterState:b[0][0],seedData:b[0][1],head:b[0][2]}}async function bM(a,b,e,f,g,h,j){let k=new Map;try{await (0,by.createFromReadableStream)((0,bz.streamFromBuffer)(b),{findSourceMapURL:d,serverConsumerManifest:g}),await (0,bA.waitAtLeastOneReactRenderTask)()}catch{}let l=new AbortController,m=async()=>{await (0,bA.waitAtLeastOneReactRenderTask)(),l.abort()},n=[],{prelude:o}=await (0,i.prerender)((0,W.jsx)(bQ,{isClientParamParsingEnabled:a,fullPageDataBuffer:b,serverConsumerManifest:g,clientModules:f,staleTime:e,segmentTasks:n,onCompletedProcessingRouteTree:m,prefetchInlining:h,hints:j}),f,{filterStackFrame:c,signal:l.signal,onError:bK}),p=await (0,bz.streamToBuffer)(o);k.set("/_tree",p),k.set("/_full",b);let q=!1;for(let[a,b]of(await Promise.all(n)))k.set(a,b),a.endsWith("__PAGE__")&&(q=!0);return q||k.set("/todo-remove-fake-segment/__PAGE__",Buffer.alloc(0)),k}async function bN(a,b,c,e,f,g){try{await (0,by.createFromReadableStream)((0,bz.streamFromBuffer)(a),{findSourceMapURL:d,serverConsumerManifest:e}),await (0,bA.waitAtLeastOneReactRenderTask)()}catch{}let h=await (0,by.createFromReadableStream)(bV((0,bz.streamFromBuffer)(a)),{findSourceMapURL:d,serverConsumerManifest:e}),i=bL(h);if(null===i)return{hints:0,slots:null};let{buildId:j,flightRouterState:k,seedData:l,head:m}=i,n=h.h,o=null!==n?bw(n):null,[,p]=await bR(j,b,m,bB,o,c),q=await bP(p),r={inlined:!1},{node:s}=await bO(k,j,b,l,c,"",null,f,g,q,r);return r.inlined||(s.hints|=bv.HeadOutlined),s}async function bO(a,b,c,d,e,f,g,h,i,j,k){let l=null;if(null!==d){let a=d[4],g=null!==a?bw(a):null,[,h]=await bR(b,c,d[0],f,g,e);l=await bP(h)}let m=null!==l&&lbR(d,e,f[0],h,s,g)));let t=c[0];return"string"==typeof t?(l=t,m=null):(l=t[0],m={type:t[2],key:b?null:t[1],siblings:t[3]}),{name:l,param:m,prefetchHints:q,slots:n}}(a,n,m,f,o,e,"",g,i,j);i?g.push((0,bA.waitAtLeastOneReactRenderTask)().then(()=>bS(n,m,f,o,p,r,e))):g.push((0,bA.waitAtLeastOneReactRenderTask)().then(()=>bR(m,f,p,bB,r,e))),h();let t={tree:s,staleTime:f};return m&&(t.buildId=m),t}async function bR(a,b,d,e,f,g){let h={rsc:d,isPartial:await bU(d,g),staleTime:b,varyParams:f};a&&(h.buildId=a);let j=new AbortController;(0,bA.waitAtLeastOneReactRenderTask)().then(()=>j.abort());let{prelude:k}=await (0,i.prerender)(h,g,{filterStackFrame:c,signal:j.signal,onError:bK}),l=await (0,bz.streamToBuffer)(k);return""===e?["/_index",l]:[e,l]}async function bS(a,b,d,e,f,g,h){let j=await bT(a,b,d,e,h),k={rsc:f,isPartial:await bU(f,h),staleTime:d,varyParams:g};b&&(k.buildId=b);let l=new AbortController;(0,bA.waitAtLeastOneReactRenderTask)().then(()=>l.abort());let{prelude:m}=await (0,i.prerender)({tree:j,head:k},h,{filterStackFrame:c,signal:l.signal,onError:bK}),n=await (0,bz.streamToBuffer)(m);return["/"+ar.PAGE_SEGMENT_KEY,n]}async function bT(a,b,c,d,e){let f=null,g=a[1],h=null!==d?d[1]:null;for(let a in g){let d=g[a],i=null!==h?h[a]:null,j=await bT(d,b,c,i,e);null===f&&(f={}),f[a]=j}let i=null!==d?d[0]:null,j=null!==d?d[4]:null,k=null!==j?bw(j):null,l={rsc:i,isPartial:null===i||await bU(i,e),staleTime:c,varyParams:k};return b&&(l.buildId=b),{segment:l,slots:f}}async function bU(a,b){let d=!1,e=new AbortController;return(0,bA.waitAtLeastOneReactRenderTask)().then(()=>{d=!0,e.abort()}),await (0,i.prerender)(a,b,{filterStackFrame:c,signal:e.signal,onError(){}}),d}function bV(a){let b=a.getReader();return new ReadableStream({async pull(a){for(;;){let{done:c,value:d}=await b.read();if(!c){a.enqueue(d);continue}return}}})}a.s(["collectPrefetchHints",0,bN,"collectSegmentData",0,bM],34373);var bW=a.i(21751);let bX=()=>{};function bY(a){if(!a.body)return[a,a];let[c,d]=a.body.tee(),e=new Response(c,{status:a.status,statusText:a.statusText,headers:a.headers});Object.defineProperty(e,"url",{value:a.url,configurable:!0,enumerable:!0,writable:!1});let f=new Response(d,{status:a.status,statusText:a.statusText,headers:a.headers});return Object.defineProperty(f,"url",{value:a.url,configurable:!0,enumerable:!0,writable:!1}),b&&(e.body&&b.register(e,new WeakRef(e.body)),f.body&&b.register(f,new WeakRef(f.body))),[e,f]}globalThis.FinalizationRegistry&&(b=new FinalizationRegistry(a=>{let b=a.deref();b&&!b.locked&&b.cancel("Response object has been garbage collected").then(bX)}));let bZ=new Set(["traceparent","tracestate"]);a.i(75700);var b$=a.i(276);let b_=Symbol.for("next-patch");function b0(a,b){a.shouldTrackFetchMetrics&&(a.fetchMetrics??=[],a.fetchMetrics.push({...b,end:performance.timeOrigin+performance.now(),idx:a.nextFetchId||0}))}async function b1(a,b,c,d,e,f){let g=await a.arrayBuffer(),h={headers:Object.fromEntries(a.headers.entries()),body:Buffer.from(g).toString("base64"),status:a.status,url:a.url};return c&&await d.set(b,{kind:b$.CachedRouteKind.FETCH,data:h,revalidate:e},c),await f(),new Response(g,{headers:a.headers,status:a.status,statusText:a.statusText})}async function b2(a,b,c,d,e,f,g,h,i,j){let[k,l]=bY(b),m=k.arrayBuffer().then(async a=>{let b=Buffer.from(a),h={headers:Object.fromEntries(k.headers.entries()),body:b.toString("base64"),status:k.status,url:k.url};null==f||f.set(c,h),d&&await e.set(c,{kind:b$.CachedRouteKind.FETCH,data:h,revalidate:g},d)}).catch(a=>{(null==j?void 0:j.aborted)||console.warn("Failed to set fetch cache",h,a)}).finally(i),n=`cache-set-${c}`,o=a.pendingRevalidates??={},p=Promise.resolve();return n in o&&(p=o[n]),o[n]=p.then(()=>m).finally(()=>{(null==o?void 0:o[n])&&delete o[n]}),l}let b3=null;globalThis.__next__clear_chunk_cache__=a.C,a.s(["InstantValidation",0,()=>{},"SegmentViewNode",0,()=>null,"SegmentViewStateNode",0,()=>null,"patchFetch",0,function(){return function(a){var b;let c;if(!0===globalThis[b_])return;let d=(b=globalThis.fetch,c=j.cache(a=>[]),function(a,d){let e,f;if(d&&d.signal)return b(a,d);if("string"!=typeof a||d){let c,g="string"==typeof a||a instanceof URL?new Request(a,d):a;if("GET"!==g.method&&"HEAD"!==g.method||g.keepalive)return b(a,d);c=Array.from(g.headers.entries()).filter(([a])=>!bZ.has(a.toLowerCase())),f=JSON.stringify([g.method,c,g.mode,g.redirect,g.credentials,g.referrer,g.referrerPolicy,g.integrity]),e=g.url}else f='["GET",[],null,"follow",null,null,null,null]',e=a;let g=c(e);for(let a=0,b=g.length;a{let b=g[a][2];if(!b)throw Object.defineProperty(new B.InvariantError("No cached response"),"__NEXT_ERROR_CODE",{value:"E579",enumerable:!1,configurable:!0});let[c,d]=bY(b);return g[a][2]=d,c})}let h=b(a,d),i=[f,h,null];return g.push(i),h.then(a=>{let[b,c]=bY(a);return i[2]=c,b})});globalThis.fetch=function(a,{workAsyncStorage:b,workUnitAsyncStorage:c}){let d=async function(d,e){var f,g;let h;try{(h=new URL(d instanceof Request?d.url:d)).username="",h.password=""}catch{h=void 0}let i=(null==h?void 0:h.href)??"",j=(null==e||null==(f=e.method)?void 0:f.toUpperCase())||"GET",k=(null==e||null==(g=e.next)?void 0:g.internal)===!0,m="1"===process.env.NEXT_OTEL_FETCH_DISABLED,n=k?void 0:performance.timeOrigin+performance.now(),o=b.getStore(),p=c.getStore(),q=p?(0,l.getCacheSignal)(p):null;q&&q.beginRead();let r=(0,aM.getTracer)().trace(k?aN.NextNodeServerSpan.internalFetch:aN.AppRenderSpan.fetch,{hideSpan:m,kind:aM.SpanKind.CLIENT,spanName:["fetch",j,i].filter(Boolean).join(" "),attributes:{"http.url":i,"http.method":j,"net.peer.name":null==h?void 0:h.hostname,"net.peer.port":(null==h?void 0:h.port)||void 0}},async()=>{var b;let c,f,g,h,j,l;if(k||!o||o.isDraftMode)return a(d,e);let m=d&&"object"==typeof d&&"string"==typeof d.method,r=a=>(null==e?void 0:e[a])||(m?d[a]:null),s=a=>{var b,c,f;return void 0!==(null==e||null==(b=e.next)?void 0:b[a])?null==e||null==(c=e.next)?void 0:c[a]:m?null==(f=d.next)?void 0:f[a]:void 0},t=s("revalidate"),u=t,w=function(a,b){let c=[],d=[];for(let e=0;ebW.NEXT_CACHE_TAG_MAX_LENGTH?d.push({tag:f,reason:`exceeded max length of ${bW.NEXT_CACHE_TAG_MAX_LENGTH}`}):c.push(f),c.length>bW.NEXT_CACHE_TAG_MAX_ITEMS){console.warn(`Warning: exceeded max tag count for ${b}, dropped tags:`,a.slice(e).join(", "));break}}if(d.length>0)for(let{tag:a,reason:c}of(console.warn(`Warning: invalid tags passed to ${b}: `),d))console.log(`tag: "${a}" ${c}`);return c}(s("tags")||[],`fetch ${d.toString()}`);if(p)switch(p.type){case"prerender":case"prerender-runtime":case"prerender-client":case"validation-client":case"prerender-ppr":case"prerender-legacy":case"cache":case"private-cache":c=p}if(c&&Array.isArray(w)){let a=c.tags??(c.tags=[]);for(let b of w)a.includes(b)||a.push(b)}let x=null==p?void 0:p.implicitTags,y=o.fetchCache;p&&"unstable-cache"===p.type&&(y="force-no-store");let z=!!o.isUnstableNoStore,A=r("cache"),B="";"string"==typeof A&&void 0!==u&&("force-cache"===A&&0===u||"no-store"===A&&(u>0||!1===u))&&(f=`Specified "cache: ${A}" and "revalidate: ${u}", only one should be specified.`,A=void 0,u=void 0);let C="no-cache"===A||"no-store"===A||"force-no-store"===y||"only-no-store"===y,D=!y&&!A&&!u&&o.forceDynamic;"force-cache"===A&&void 0===u?u=!1:(C||D)&&(u=0),("no-cache"===A||"no-store"===A)&&(B=`cache: ${A}`),l=function(a,b){try{let c;if(!1===a)c=bW.INFINITE_CACHE;else if("number"==typeof a&&!isNaN(a)&&a>-1)c=a;else if(void 0!==a)throw Object.defineProperty(Error(`Invalid revalidate value "${a}" on "${b}", must be a non-negative number or false`),"__NEXT_ERROR_CODE",{value:"E179",enumerable:!1,configurable:!0});return c}catch(a){if(a instanceof Error&&a.message.includes("Invalid revalidate"))throw a;return}}(u,o.route);let E=r("headers"),G="function"==typeof(null==E?void 0:E.get)?E:new Headers(E||{}),H=G.get("authorization")||G.get("cookie"),I=!["get","head"].includes((null==(b=r("method"))?void 0:b.toLowerCase())||"get"),J=void 0==y&&(void 0==A||"default"===A)&&void 0==u,K=!!((H||I)&&(null==c?void 0:c.revalidate)===0),L=!1;if(!K&&J&&(o.isBuildTimePrerendering?L=!0:K=!0),J&&void 0!==p)switch(p.type){case"prerender":case"prerender-runtime":case"prerender-client":return q&&(q.endRead(),q=null),F(p.renderSignal,o.route,"fetch()")}switch(y){case"force-no-store":B="fetchCache = force-no-store";break;case"only-no-store":if("force-cache"===A||void 0!==l&&l>0)throw Object.defineProperty(Error(`cache: 'force-cache' used on fetch for ${i} with 'export const fetchCache = 'only-no-store'`),"__NEXT_ERROR_CODE",{value:"E448",enumerable:!1,configurable:!0});B="fetchCache = only-no-store";break;case"only-cache":if("no-store"===A)throw Object.defineProperty(Error(`cache: 'no-store' used on fetch for ${i} with 'export const fetchCache = 'only-cache'`),"__NEXT_ERROR_CODE",{value:"E521",enumerable:!1,configurable:!0});break;case"force-cache":(void 0===u||0===u)&&(B="fetchCache = force-cache",l=bW.INFINITE_CACHE)}if(void 0===l?"default-cache"!==y||z?"default-no-store"===y?(l=0,B="fetchCache = default-no-store"):z?(l=0,B="noStore call"):K?(l=0,B="auto no cache"):(B="auto cache",l=c?c.revalidate:bW.INFINITE_CACHE):(l=bW.INFINITE_CACHE,B="fetchCache = default-cache"):B||(B=`revalidate: ${l}`),!(o.forceStatic&&0===l)&&!K&&c&&l0,{incrementalCache:N}=o,O=!1;if(p)switch(p.type){case"request":case"cache":case"private-cache":O=p.isHmrRefresh??!1,h=p.serverComponentsHmrCache}if(N&&(M||h))try{g=await N.generateCacheKey(i,m?d:e)}catch(a){console.error("Failed to generate cache key for",d)}let P=o.nextFetchId??1;o.nextFetchId=P+1;let Q=()=>{},R=async(b,c)=>{let j=["cache","credentials","headers","integrity","keepalive","method","mode","redirect","referrer","referrerPolicy","window","duplex",...b?[]:["signal"]];if(m){let a=d,b={body:a._ogBody||a.body};for(let c of j)b[c]=a[c];d=new Request(a.url,b)}else if(e){let{_ogBody:a,body:c,signal:d,...f}=e;e={...f,body:a||c,signal:b?void 0:d}}let k={...e,next:{...null==e?void 0:e.next,fetchType:"origin",fetchIdx:P}};return a(d,k).then(async a=>{if(!b&&n&&b0(o,{start:n,url:i,cacheReason:c||B,cacheStatus:0===l||c?"skip":"miss",cacheWarning:f,status:a.status,method:k.method||"GET"}),200===a.status&&N&&g&&(M||h)){let b=l>=bW.INFINITE_CACHE?bW.CACHE_ONE_YEAR_SECONDS:l,c=M?{fetchCache:!0,fetchUrl:i,fetchIdx:P,tags:w,isImplicitBuildTimeCache:L}:void 0;switch(null==p?void 0:p.type){case"prerender":case"prerender-client":case"validation-client":case"prerender-runtime":return b1(a,g,c,N,b,Q);case"request":case"prerender-ppr":case"prerender-legacy":case"cache":case"private-cache":case"unstable-cache":case"generate-static-params":case void 0:return b2(o,a,g,c,N,h,b,d,Q,r("signal"))}}return await Q(),a}).catch(a=>{throw Q(),a})},S=!1,T=!1;if(g&&N){let a;if(O&&h&&(a=h.get(g),T=!0),M&&!a){Q=await N.lock(g);let b=o.isOnDemandRevalidate?null:await N.get(g,{kind:b$.IncrementalCacheKind.FETCH,revalidate:l,fetchUrl:i,fetchIdx:P,tags:w,softTags:null==x?void 0:x.tags});if(J&&p)switch(p.type){case"prerender":case"prerender-client":case"validation-client":case"prerender-runtime":await (b3||(b3=new Promise(a=>{setTimeout(()=>{b3=null,a()},0)})),b3)}if(b?await Q():j="cache-control: no-cache (hard refresh)",(null==b?void 0:b.value)&&b.value.kind===b$.CachedRouteKind.FETCH)if(o.isStaticGeneration&&b.isStale)S=!0;else{if(b.isStale&&(o.pendingRevalidates??={},!o.pendingRevalidates[g])){let a=R(!0).then(async a=>({body:await a.arrayBuffer(),headers:a.headers,status:a.status,statusText:a.statusText})).finally(()=>{o.pendingRevalidates??={},delete o.pendingRevalidates[g||""]});a.catch(console.error),o.pendingRevalidates[g]=a}a=b.value.data}}if(a){n&&b0(o,{start:n,url:i,cacheReason:B,cacheStatus:T?"hmr":"hit",cacheWarning:f,status:a.status||200,method:(null==e?void 0:e.method)||"GET"});let b=new Response(Buffer.from(a.body,"base64"),{headers:a.headers,status:a.status});return Object.defineProperty(b,"url",{value:a.url}),b}}if(o.isStaticGeneration&&e&&"object"==typeof e){let{cache:a}=e;if("no-store"===a){if(p)switch(p.type){case"prerender":case"prerender-client":case"prerender-runtime":case"validation-client":return q&&(q.endRead(),q=null),F(p.renderSignal,o.route,"fetch()")}v(o,p,`no-store fetch ${d} ${o.route}`)}let b="next"in e,{next:f={}}=e;if("number"==typeof f.revalidate&&c&&f.revalidate{let b=a[0];return{body:await b.arrayBuffer(),headers:b.headers,status:b.status,statusText:b.statusText}}).finally(()=>{var b;(null==(b=o.pendingRevalidates)?void 0:b[a])&&delete o.pendingRevalidates[a]})).catch(()=>{}),o.pendingRevalidates[a]=b,c.then(a=>a[1])}});if(q)try{return await r}finally{q&&q.endRead()}return r};return d.__nextPatched=!0,d.__nextGetStaticStore=()=>b,d._nextOriginalFetch=a,globalThis[b_]=!0,Object.defineProperty(d,"name",{value:"fetch",writable:!1}),d}(d,a)}({workAsyncStorage:k.workAsyncStorage,workUnitAsyncStorage:l.workUnitAsyncStorage})}],9095)},96772,a=>{"use strict";var b=a.i(9095),c=a.i(11857),d=a.i(10990),e=a.i(717),f=a.i(28212),g=a.i(54691),h=a.i(56704),i=a.i(32319),j=a.i(20635),k=a.i(20575),l=a.i(5476),m=a.i(98499),n=a.i(52589),o=a.i(81793),p=a.i(88471),q=a.i(2754),r=a.i(82622),s=a.i(641),t=a.i(7891),u=a.i(75385),v=a.i(34373);a.s(["ClientPageRoot",()=>k.ClientPageRoot,"ClientSegmentRoot",()=>l.ClientSegmentRoot,"Fragment",()=>e.Fragment,"HTTPAccessFallbackBoundary",()=>p.HTTPAccessFallbackBoundary,"InstantValidation",()=>b.InstantValidation,"LayoutRouter",()=>f.default,"LoadingBoundaryProvider",()=>f.LoadingBoundaryProvider,"Postpone",()=>t.Postpone,"RenderFromTemplateContext",()=>g.default,"RootLayoutBoundary",()=>r.RootLayoutBoundary,"SegmentViewNode",()=>b.SegmentViewNode,"SegmentViewStateNode",()=>b.SegmentViewStateNode,"actionAsyncStorage",()=>j.actionAsyncStorage,"captureOwnerStack",()=>e.captureOwnerStack,"collectPrefetchHints",()=>v.collectPrefetchHints,"collectSegmentData",()=>v.collectSegmentData,"createElement",()=>e.createElement,"createMetadataComponents",()=>q.createMetadataComponents,"createPrerenderParamsForClientSegment",()=>n.createPrerenderParamsForClientSegment,"createPrerenderSearchParamsForClientPage",()=>m.createPrerenderSearchParamsForClientPage,"createServerParamsForServerSegment",()=>n.createServerParamsForServerSegment,"createServerSearchParamsForServerPage",()=>m.createServerSearchParamsForServerPage,"createTemporaryReferenceSet",()=>c.createTemporaryReferenceSet,"decodeAction",()=>c.decodeAction,"decodeFormState",()=>c.decodeFormState,"decodeReply",()=>c.decodeReply,"patchFetch",()=>b.patchFetch,"preconnect",()=>s.preconnect,"preloadFont",()=>s.preloadFont,"preloadStyle",()=>s.preloadStyle,"prerender",()=>d.prerender,"renderToReadableStream",()=>c.renderToReadableStream,"serverHooks",0,o,"taintObjectReference",()=>u.taintObjectReference,"workAsyncStorage",()=>h.workAsyncStorage,"workUnitAsyncStorage",()=>i.workUnitAsyncStorage])}]; + +//# sourceMappingURL=node_modules_next_dist_0_t6nhm._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js.map b/.next/server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js.map new file mode 100644 index 0000000..951e44c --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_0_t6nhm._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/server/route-kind.ts","../../../../node_modules/next/src/server/instrumentation/utils.ts","../../../../node_modules/next/src/server/lib/trace/constants.ts","../../../../node_modules/next/dist/compiled/%40opentelemetry/api/index.js","../../../../node_modules/next/dist/esm/server/lib/trace/tracer.js","../../../../node_modules/next/dist/esm/shared/lib/is-thenable.js","../../../../node_modules/next/src/server/request-meta.ts","../../../../node_modules/next/src/server/app-render/interop-default.ts","../../../../node_modules/next/src/client/components/app-router-headers.ts","../../../../node_modules/next/src/server/app-render/strip-flight-headers.ts","../../../../node_modules/next/src/client/components/redirect-status-code.ts","../../../../node_modules/next/dist/esm/server/base-http/index.js","../../../../node_modules/next/dist/esm/server/base-http/node.js","../../../../node_modules/next/dist/esm/server/api-utils/index.js","../../../../node_modules/next/dist/esm/server/api-utils/get-cookie-parser.js","../../../../node_modules/next/src/server/lib/experimental/ppr.ts","../../../../node_modules/next/src/server/lib/is-rsc-request.ts","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../node_modules/next/dist/esm/shared/lib/segment.js","../../../../node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js","../../../../node_modules/next/src/shared/lib/router/utils/interception-routes.ts","../../../../node_modules/next/src/shared/lib/router/utils/get-segment-param.tsx","../../../../node_modules/next/dist/esm/shared/lib/router/routes/app.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/parse-loader-tree.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/interception-prefix-from-param-type.js","../../../../node_modules/next/dist/esm/server/app-render/get-short-dynamic-param-type.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/resolve-param-value.js","../../../../node_modules/next/dist/esm/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js","../../../../node_modules/next/dist/esm/server/request/fallback-params.js","../../../../node_modules/next/dist/esm/build/static-paths/utils.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js","../../../../node_modules/next/src/server/app-render/manifests-singleton.ts","../../../../node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js","../../../../node_modules/next/src/server/lib/streaming-metadata.ts","../../../../node_modules/next/src/server/lib/server-action-request-meta.ts","../../../../node_modules/next/src/lib/scheduler.ts","../../../../node_modules/next/src/server/response-cache/types.ts","../../../../node_modules/next/src/server/stream-utils/encoded-tags.ts","../../../../node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js","../../../../node_modules/next/dist/esm/shared/lib/errors/constants.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js","../../../../node_modules/next/dist/esm/server/stream-utils/uint8array-helpers.js","../../../../node_modules/next/dist/esm/lib/detached-promise.js","../../../../node_modules/next/dist/compiled/%40edge-runtime/cookies/index.js","../../../../node_modules/next/src/server/web/spec-extension/cookies.ts","../../../../node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js","../../../../node_modules/next/dist/esm/shared/lib/i18n/normalize-locale-path.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/next-request.js","../../../../node_modules/next/dist/esm/server/client-component-renderer-logger.js","../../../../node_modules/next/dist/esm/server/render-result.js","../../../../node_modules/next/dist/esm/shared/lib/i18n/detect-domain-locale.js","../../../../node_modules/next/dist/esm/server/web/error.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/add-locale.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/get-next-pathname-info.js","../../../../node_modules/next/dist/esm/server/pipe-readable.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/request.js","../../../../node_modules/next/dist/esm/server/web/next-url.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/format-next-pathname-info.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/add-path-suffix.js","../../../../node_modules/next/dist/esm/shared/lib/get-hostname.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/remove-trailing-slash.js","../../../../node_modules/next/dist/esm/server/web/utils.js","../../../../node_modules/next/dist/esm/server/base-http/helpers.js","../../../../node_modules/next/src/lib/constants.ts","../../../../node_modules/next/dist/esm/server/lib/lru-cache.js","../../../../node_modules/next/dist/esm/lib/batcher.js","../../../../node_modules/next/dist/esm/lib/picocolors.js","../../../../node_modules/next/dist/esm/server/response-cache/utils.js","../../../../node_modules/next/dist/esm/build/output/log.js","../../../../node_modules/next/dist/esm/server/response-cache/index.js","../../../../node_modules/next/src/lib/fallback.ts","../../../../node_modules/next/dist/compiled/fresh/index.js","../../../../node_modules/next/dist/esm/server/lib/cache-control.js","../../../../node_modules/next/dist/esm/server/send-payload.js","../../../../node_modules/next/dist/esm/shared/lib/utils.js","../../../../node_modules/next/dist/esm/server/lib/etag.js","../../../../node_modules/next/src/shared/lib/size-limit.ts","../../../../node_modules/next/src/server/lib/postponed-request-body.ts","../../../../node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.ts","../../../../node_modules/next/dist/esm/client/components/layout-router.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/components/layout-router.tsx","../../../../node_modules/next/dist/esm/client/components/render-from-template-context.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/components/render-from-template-context.tsx","../../../../node_modules/next/dist/esm/client/components/client-page.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/components/client-page.tsx","../../../../node_modules/next/dist/esm/client/components/client-segment.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/components/client-segment.tsx","../../../../node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js","../../../../node_modules/next/dist/esm/server/app-render/instant-validation/instant-validation-error.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js","../../../../node_modules/next/dist/esm/server/app-render/instant-validation/instant-samples.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/querystring.js","../../../../node_modules/next/dist/esm/shared/lib/action-revalidation-kind.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/request-cookies.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/parse-relative-url.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/headers.js","../../../../node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/components/http-access-fallback/error-boundary.tsx","../../../../node_modules/next/src/shared/lib/isomorphic/path.js","../../../../node_modules/next/dist/esm/lib/framework/boundary-components.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/lib/framework/boundary-components.tsx","../../../../node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/lib/metadata/generate/icon-mark.tsx","../../../../node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.node.production.js","../../../../node_modules/next/dist/compiled/react-server-dom-turbopack/client.node.js","../../../../node_modules/next/dist/compiled/string-hash/index.js","../../../../node_modules/next/dist/esm/lib/metadata/generate/utils.js","../../../../node_modules/next/dist/esm/server/lib/clone-response.js","../../../../node_modules/next/dist/esm/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/esm/server/app-render/entry-base.js","../../../../node_modules/next/dist/esm/lib/metadata/metadata.js","../../../../node_modules/next/dist/esm/lib/metadata/resolve-metadata.js","../../../../node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js","../../../../node_modules/next/dist/esm/lib/metadata/resolvers/resolve-title.js","../../../../node_modules/next/dist/esm/server/lib/app-dir-module.js","../../../../node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js","../../../../node_modules/next/dist/esm/client/components/hooks-server-context.js","../../../../node_modules/next/dist/esm/server/app-render/rsc/preloads.js","../../../../node_modules/next/dist/esm/server/app-render/create-error-handler.js","../../../../node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/esm/client/components/redirect-error.js","../../../../node_modules/next/dist/esm/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/esm/lib/metadata/constants.js","../../../../node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js","../../../../node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js","../../../../node_modules/next/dist/esm/lib/framework/boundary-constants.js","../../../../node_modules/next/dist/esm/lib/metadata/default-metadata.js","../../../../node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js","../../../../node_modules/next/dist/esm/server/app-render/vary-params.js","../../../../node_modules/next/dist/esm/server/request/utils.js","../../../../node_modules/next/dist/esm/lib/client-and-server-references.js","../../../../node_modules/next/dist/esm/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js","../../../../node_modules/next/dist/esm/lib/metadata/resolvers/resolve-basics.js","../../../../node_modules/next/dist/esm/server/request/search-params.js","../../../../node_modules/next/dist/esm/server/lib/patch-fetch.js","../../../../node_modules/next/dist/esm/server/app-render/react-large-shell-error.js","../../../../node_modules/next/dist/esm/server/app-render/prospective-render-utils.js","../../../../node_modules/next/dist/esm/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/esm/lib/metadata/resolvers/resolve-opengraph.js","../../../../node_modules/next/dist/esm/lib/metadata/resolvers/resolve-icons.js","../../../../node_modules/next/dist/esm/server/app-render/collect-segment-data.js","../../../../node_modules/next/dist/esm/server/lib/lazy-result.js","../../../../node_modules/next/dist/esm/server/app-render/rsc/taint.js","../../../../node_modules/next/dist/esm/server/lib/dedupe-fetch.js","../../../../node_modules/next/dist/esm/server/request/pathname.js","../../../../node_modules/next/dist/esm/shared/lib/app-router-types.js","../../../../node_modules/next/dist/esm/client/components/is-next-router-error.js","../../../../node_modules/next/dist/esm/server/request/params.js","../../../../node_modules/next/dist/esm/shared/lib/segment-cache/vary-params-decoding.js","../../../../node_modules/next/dist/esm/shared/lib/server-reference-info.js","../../../../node_modules/next/dist/esm/server/app-render/dynamic-rendering.js"],"sourcesContent":["export const enum RouteKind {\n /**\n * `PAGES` represents all the React pages that are under `pages/`.\n */\n PAGES = 'PAGES',\n /**\n * `PAGES_API` represents all the API routes under `pages/api/`.\n */\n PAGES_API = 'PAGES_API',\n /**\n * `APP_PAGE` represents all the React pages that are under `app/` with the\n * filename of `page.{j,t}s{,x}`.\n */\n APP_PAGE = 'APP_PAGE',\n /**\n * `APP_ROUTE` represents all the API routes and metadata routes that are under `app/` with the\n * filename of `route.{j,t}s{,x}`.\n */\n APP_ROUTE = 'APP_ROUTE',\n\n /**\n * `IMAGE` represents all the images that are generated by `next/image`.\n */\n IMAGE = 'IMAGE',\n}\n","export function getRevalidateReason(params: {\n isOnDemandRevalidate?: boolean\n isStaticGeneration?: boolean\n}): 'on-demand' | 'stale' | undefined {\n if (params.isOnDemandRevalidate) {\n return 'on-demand'\n }\n if (params.isStaticGeneration) {\n return 'stale'\n }\n return undefined\n}\n","/**\n * Contains predefined constants for the trace span name in next/server.\n *\n * Currently, next/server/tracer is internal implementation only for tracking\n * next.js's implementation only with known span names defined here.\n **/\n\n// eslint typescript has a bug with TS enums\n\nenum BaseServerSpan {\n handleRequest = 'BaseServer.handleRequest',\n run = 'BaseServer.run',\n pipe = 'BaseServer.pipe',\n getStaticHTML = 'BaseServer.getStaticHTML',\n render = 'BaseServer.render',\n renderToResponseWithComponents = 'BaseServer.renderToResponseWithComponents',\n renderToResponse = 'BaseServer.renderToResponse',\n renderToHTML = 'BaseServer.renderToHTML',\n renderError = 'BaseServer.renderError',\n renderErrorToResponse = 'BaseServer.renderErrorToResponse',\n renderErrorToHTML = 'BaseServer.renderErrorToHTML',\n render404 = 'BaseServer.render404',\n}\n\nenum LoadComponentsSpan {\n loadDefaultErrorComponents = 'LoadComponents.loadDefaultErrorComponents',\n loadComponents = 'LoadComponents.loadComponents',\n}\n\nenum NextServerSpan {\n getRequestHandler = 'NextServer.getRequestHandler',\n getRequestHandlerWithMetadata = 'NextServer.getRequestHandlerWithMetadata',\n getServer = 'NextServer.getServer',\n getServerRequestHandler = 'NextServer.getServerRequestHandler',\n createServer = 'createServer.createServer',\n}\n\nenum NextNodeServerSpan {\n compression = 'NextNodeServer.compression',\n getBuildId = 'NextNodeServer.getBuildId',\n createComponentTree = 'NextNodeServer.createComponentTree',\n clientComponentLoading = 'NextNodeServer.clientComponentLoading',\n getLayoutOrPageModule = 'NextNodeServer.getLayoutOrPageModule',\n generateStaticRoutes = 'NextNodeServer.generateStaticRoutes',\n generateFsStaticRoutes = 'NextNodeServer.generateFsStaticRoutes',\n generatePublicRoutes = 'NextNodeServer.generatePublicRoutes',\n generateImageRoutes = 'NextNodeServer.generateImageRoutes.route',\n sendRenderResult = 'NextNodeServer.sendRenderResult',\n proxyRequest = 'NextNodeServer.proxyRequest',\n runApi = 'NextNodeServer.runApi',\n render = 'NextNodeServer.render',\n renderHTML = 'NextNodeServer.renderHTML',\n imageOptimizer = 'NextNodeServer.imageOptimizer',\n getPagePath = 'NextNodeServer.getPagePath',\n getRoutesManifest = 'NextNodeServer.getRoutesManifest',\n findPageComponents = 'NextNodeServer.findPageComponents',\n getFontManifest = 'NextNodeServer.getFontManifest',\n getServerComponentManifest = 'NextNodeServer.getServerComponentManifest',\n getRequestHandler = 'NextNodeServer.getRequestHandler',\n renderToHTML = 'NextNodeServer.renderToHTML',\n renderError = 'NextNodeServer.renderError',\n renderErrorToHTML = 'NextNodeServer.renderErrorToHTML',\n render404 = 'NextNodeServer.render404',\n startResponse = 'NextNodeServer.startResponse',\n\n // nested inner span, does not require parent scope name\n route = 'route',\n onProxyReq = 'onProxyReq',\n apiResolver = 'apiResolver',\n internalFetch = 'internalFetch',\n}\n\nenum StartServerSpan {\n startServer = 'startServer.startServer',\n}\n\nenum RenderSpan {\n getServerSideProps = 'Render.getServerSideProps',\n getStaticProps = 'Render.getStaticProps',\n renderToString = 'Render.renderToString',\n renderDocument = 'Render.renderDocument',\n createBodyResult = 'Render.createBodyResult',\n}\n\nenum AppRenderSpan {\n renderToString = 'AppRender.renderToString',\n renderToReadableStream = 'AppRender.renderToReadableStream',\n getBodyResult = 'AppRender.getBodyResult',\n fetch = 'AppRender.fetch',\n}\n\nenum RouterSpan {\n executeRoute = 'Router.executeRoute',\n}\n\nenum NodeSpan {\n runHandler = 'Node.runHandler',\n}\n\nenum AppRouteRouteHandlersSpan {\n runHandler = 'AppRouteRouteHandlers.runHandler',\n}\n\nenum ResolveMetadataSpan {\n generateMetadata = 'ResolveMetadata.generateMetadata',\n generateViewport = 'ResolveMetadata.generateViewport',\n}\n\nenum MiddlewareSpan {\n execute = 'Middleware.execute',\n}\n\ntype SpanTypes =\n | `${BaseServerSpan}`\n | `${LoadComponentsSpan}`\n | `${NextServerSpan}`\n | `${StartServerSpan}`\n | `${NextNodeServerSpan}`\n | `${RenderSpan}`\n | `${RouterSpan}`\n | `${AppRenderSpan}`\n | `${NodeSpan}`\n | `${AppRouteRouteHandlersSpan}`\n | `${ResolveMetadataSpan}`\n | `${MiddlewareSpan}`\n\n// This list is used to filter out spans that are not relevant to the user\nexport const NextVanillaSpanAllowlist = new Set([\n MiddlewareSpan.execute,\n BaseServerSpan.handleRequest,\n RenderSpan.getServerSideProps,\n RenderSpan.getStaticProps,\n AppRenderSpan.fetch,\n AppRenderSpan.getBodyResult,\n RenderSpan.renderDocument,\n NodeSpan.runHandler,\n AppRouteRouteHandlersSpan.runHandler,\n ResolveMetadataSpan.generateMetadata,\n ResolveMetadataSpan.generateViewport,\n NextNodeServerSpan.createComponentTree,\n NextNodeServerSpan.findPageComponents,\n NextNodeServerSpan.getLayoutOrPageModule,\n NextNodeServerSpan.startResponse,\n NextNodeServerSpan.clientComponentLoading,\n])\n\n// These Spans are allowed to be always logged\n// when the otel log prefix env is set\nexport const LogSpanAllowList = new Set([\n NextNodeServerSpan.findPageComponents,\n NextNodeServerSpan.createComponentTree,\n NextNodeServerSpan.clientComponentLoading,\n])\n\nexport {\n BaseServerSpan,\n LoadComponentsSpan,\n NextServerSpan,\n NextNodeServerSpan,\n StartServerSpan,\n RenderSpan,\n RouterSpan,\n AppRenderSpan,\n NodeSpan,\n AppRouteRouteHandlersSpan,\n ResolveMetadataSpan,\n MiddlewareSpan,\n}\n\nexport type { SpanTypes }\n","(()=>{\"use strict\";var e={491:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ContextAPI=void 0;const n=r(223);const a=r(172);const o=r(930);const i=\"context\";const c=new n.NoopContextManager;class ContextAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new ContextAPI}return this._instance}setGlobalContextManager(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}active(){return this._getContextManager().active()}with(e,t,r,...n){return this._getContextManager().with(e,t,r,...n)}bind(e,t){return this._getContextManager().bind(e,t)}_getContextManager(){return(0,a.getGlobal)(i)||c}disable(){this._getContextManager().disable();(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.ContextAPI=ContextAPI},930:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagAPI=void 0;const n=r(56);const a=r(912);const o=r(957);const i=r(172);const c=\"diag\";class DiagAPI{constructor(){function _logProxy(e){return function(...t){const r=(0,i.getGlobal)(\"diag\");if(!r)return;return r[e](...t)}}const e=this;const setLogger=(t,r={logLevel:o.DiagLogLevel.INFO})=>{var n,c,s;if(t===e){const t=new Error(\"Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation\");e.error((n=t.stack)!==null&&n!==void 0?n:t.message);return false}if(typeof r===\"number\"){r={logLevel:r}}const u=(0,i.getGlobal)(\"diag\");const l=(0,a.createLogLevelDiagLogger)((c=r.logLevel)!==null&&c!==void 0?c:o.DiagLogLevel.INFO,t);if(u&&!r.suppressOverrideMessage){const e=(s=(new Error).stack)!==null&&s!==void 0?s:\"\";u.warn(`Current logger will be overwritten from ${e}`);l.warn(`Current logger will overwrite one already registered from ${e}`)}return(0,i.registerGlobal)(\"diag\",l,e,true)};e.setLogger=setLogger;e.disable=()=>{(0,i.unregisterGlobal)(c,e)};e.createComponentLogger=e=>new n.DiagComponentLogger(e);e.verbose=_logProxy(\"verbose\");e.debug=_logProxy(\"debug\");e.info=_logProxy(\"info\");e.warn=_logProxy(\"warn\");e.error=_logProxy(\"error\")}static instance(){if(!this._instance){this._instance=new DiagAPI}return this._instance}}t.DiagAPI=DiagAPI},653:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.MetricsAPI=void 0;const n=r(660);const a=r(172);const o=r(930);const i=\"metrics\";class MetricsAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new MetricsAPI}return this._instance}setGlobalMeterProvider(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}getMeterProvider(){return(0,a.getGlobal)(i)||n.NOOP_METER_PROVIDER}getMeter(e,t,r){return this.getMeterProvider().getMeter(e,t,r)}disable(){(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.MetricsAPI=MetricsAPI},181:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.PropagationAPI=void 0;const n=r(172);const a=r(874);const o=r(194);const i=r(277);const c=r(369);const s=r(930);const u=\"propagation\";const l=new a.NoopTextMapPropagator;class PropagationAPI{constructor(){this.createBaggage=c.createBaggage;this.getBaggage=i.getBaggage;this.getActiveBaggage=i.getActiveBaggage;this.setBaggage=i.setBaggage;this.deleteBaggage=i.deleteBaggage}static getInstance(){if(!this._instance){this._instance=new PropagationAPI}return this._instance}setGlobalPropagator(e){return(0,n.registerGlobal)(u,e,s.DiagAPI.instance())}inject(e,t,r=o.defaultTextMapSetter){return this._getGlobalPropagator().inject(e,t,r)}extract(e,t,r=o.defaultTextMapGetter){return this._getGlobalPropagator().extract(e,t,r)}fields(){return this._getGlobalPropagator().fields()}disable(){(0,n.unregisterGlobal)(u,s.DiagAPI.instance())}_getGlobalPropagator(){return(0,n.getGlobal)(u)||l}}t.PropagationAPI=PropagationAPI},997:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceAPI=void 0;const n=r(172);const a=r(846);const o=r(139);const i=r(607);const c=r(930);const s=\"trace\";class TraceAPI{constructor(){this._proxyTracerProvider=new a.ProxyTracerProvider;this.wrapSpanContext=o.wrapSpanContext;this.isSpanContextValid=o.isSpanContextValid;this.deleteSpan=i.deleteSpan;this.getSpan=i.getSpan;this.getActiveSpan=i.getActiveSpan;this.getSpanContext=i.getSpanContext;this.setSpan=i.setSpan;this.setSpanContext=i.setSpanContext}static getInstance(){if(!this._instance){this._instance=new TraceAPI}return this._instance}setGlobalTracerProvider(e){const t=(0,n.registerGlobal)(s,this._proxyTracerProvider,c.DiagAPI.instance());if(t){this._proxyTracerProvider.setDelegate(e)}return t}getTracerProvider(){return(0,n.getGlobal)(s)||this._proxyTracerProvider}getTracer(e,t){return this.getTracerProvider().getTracer(e,t)}disable(){(0,n.unregisterGlobal)(s,c.DiagAPI.instance());this._proxyTracerProvider=new a.ProxyTracerProvider}}t.TraceAPI=TraceAPI},277:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.deleteBaggage=t.setBaggage=t.getActiveBaggage=t.getBaggage=void 0;const n=r(491);const a=r(780);const o=(0,a.createContextKey)(\"OpenTelemetry Baggage Key\");function getBaggage(e){return e.getValue(o)||undefined}t.getBaggage=getBaggage;function getActiveBaggage(){return getBaggage(n.ContextAPI.getInstance().active())}t.getActiveBaggage=getActiveBaggage;function setBaggage(e,t){return e.setValue(o,t)}t.setBaggage=setBaggage;function deleteBaggage(e){return e.deleteValue(o)}t.deleteBaggage=deleteBaggage},993:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.BaggageImpl=void 0;class BaggageImpl{constructor(e){this._entries=e?new Map(e):new Map}getEntry(e){const t=this._entries.get(e);if(!t){return undefined}return Object.assign({},t)}getAllEntries(){return Array.from(this._entries.entries()).map((([e,t])=>[e,t]))}setEntry(e,t){const r=new BaggageImpl(this._entries);r._entries.set(e,t);return r}removeEntry(e){const t=new BaggageImpl(this._entries);t._entries.delete(e);return t}removeEntries(...e){const t=new BaggageImpl(this._entries);for(const r of e){t._entries.delete(r)}return t}clear(){return new BaggageImpl}}t.BaggageImpl=BaggageImpl},830:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataSymbol=void 0;t.baggageEntryMetadataSymbol=Symbol(\"BaggageEntryMetadata\")},369:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataFromString=t.createBaggage=void 0;const n=r(930);const a=r(993);const o=r(830);const i=n.DiagAPI.instance();function createBaggage(e={}){return new a.BaggageImpl(new Map(Object.entries(e)))}t.createBaggage=createBaggage;function baggageEntryMetadataFromString(e){if(typeof e!==\"string\"){i.error(`Cannot create baggage metadata from unknown type: ${typeof e}`);e=\"\"}return{__TYPE__:o.baggageEntryMetadataSymbol,toString(){return e}}}t.baggageEntryMetadataFromString=baggageEntryMetadataFromString},67:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.context=void 0;const n=r(491);t.context=n.ContextAPI.getInstance()},223:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopContextManager=void 0;const n=r(780);class NoopContextManager{active(){return n.ROOT_CONTEXT}with(e,t,r,...n){return t.call(r,...n)}bind(e,t){return t}enable(){return this}disable(){return this}}t.NoopContextManager=NoopContextManager},780:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ROOT_CONTEXT=t.createContextKey=void 0;function createContextKey(e){return Symbol.for(e)}t.createContextKey=createContextKey;class BaseContext{constructor(e){const t=this;t._currentContext=e?new Map(e):new Map;t.getValue=e=>t._currentContext.get(e);t.setValue=(e,r)=>{const n=new BaseContext(t._currentContext);n._currentContext.set(e,r);return n};t.deleteValue=e=>{const r=new BaseContext(t._currentContext);r._currentContext.delete(e);return r}}}t.ROOT_CONTEXT=new BaseContext},506:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.diag=void 0;const n=r(930);t.diag=n.DiagAPI.instance()},56:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagComponentLogger=void 0;const n=r(172);class DiagComponentLogger{constructor(e){this._namespace=e.namespace||\"DiagComponentLogger\"}debug(...e){return logProxy(\"debug\",this._namespace,e)}error(...e){return logProxy(\"error\",this._namespace,e)}info(...e){return logProxy(\"info\",this._namespace,e)}warn(...e){return logProxy(\"warn\",this._namespace,e)}verbose(...e){return logProxy(\"verbose\",this._namespace,e)}}t.DiagComponentLogger=DiagComponentLogger;function logProxy(e,t,r){const a=(0,n.getGlobal)(\"diag\");if(!a){return}r.unshift(t);return a[e](...r)}},972:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagConsoleLogger=void 0;const r=[{n:\"error\",c:\"error\"},{n:\"warn\",c:\"warn\"},{n:\"info\",c:\"info\"},{n:\"debug\",c:\"debug\"},{n:\"verbose\",c:\"trace\"}];class DiagConsoleLogger{constructor(){function _consoleFunc(e){return function(...t){if(console){let r=console[e];if(typeof r!==\"function\"){r=console.log}if(typeof r===\"function\"){return r.apply(console,t)}}}}for(let e=0;e{Object.defineProperty(t,\"__esModule\",{value:true});t.createLogLevelDiagLogger=void 0;const n=r(957);function createLogLevelDiagLogger(e,t){if(en.DiagLogLevel.ALL){e=n.DiagLogLevel.ALL}t=t||{};function _filterFunc(r,n){const a=t[r];if(typeof a===\"function\"&&e>=n){return a.bind(t)}return function(){}}return{error:_filterFunc(\"error\",n.DiagLogLevel.ERROR),warn:_filterFunc(\"warn\",n.DiagLogLevel.WARN),info:_filterFunc(\"info\",n.DiagLogLevel.INFO),debug:_filterFunc(\"debug\",n.DiagLogLevel.DEBUG),verbose:_filterFunc(\"verbose\",n.DiagLogLevel.VERBOSE)}}t.createLogLevelDiagLogger=createLogLevelDiagLogger},957:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagLogLevel=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"ERROR\"]=30]=\"ERROR\";e[e[\"WARN\"]=50]=\"WARN\";e[e[\"INFO\"]=60]=\"INFO\";e[e[\"DEBUG\"]=70]=\"DEBUG\";e[e[\"VERBOSE\"]=80]=\"VERBOSE\";e[e[\"ALL\"]=9999]=\"ALL\"})(r=t.DiagLogLevel||(t.DiagLogLevel={}))},172:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.unregisterGlobal=t.getGlobal=t.registerGlobal=void 0;const n=r(200);const a=r(521);const o=r(130);const i=a.VERSION.split(\".\")[0];const c=Symbol.for(`opentelemetry.js.api.${i}`);const s=n._globalThis;function registerGlobal(e,t,r,n=false){var o;const i=s[c]=(o=s[c])!==null&&o!==void 0?o:{version:a.VERSION};if(!n&&i[e]){const t=new Error(`@opentelemetry/api: Attempted duplicate registration of API: ${e}`);r.error(t.stack||t.message);return false}if(i.version!==a.VERSION){const t=new Error(`@opentelemetry/api: Registration of version v${i.version} for ${e} does not match previously registered API v${a.VERSION}`);r.error(t.stack||t.message);return false}i[e]=t;r.debug(`@opentelemetry/api: Registered a global for ${e} v${a.VERSION}.`);return true}t.registerGlobal=registerGlobal;function getGlobal(e){var t,r;const n=(t=s[c])===null||t===void 0?void 0:t.version;if(!n||!(0,o.isCompatible)(n)){return}return(r=s[c])===null||r===void 0?void 0:r[e]}t.getGlobal=getGlobal;function unregisterGlobal(e,t){t.debug(`@opentelemetry/api: Unregistering a global for ${e} v${a.VERSION}.`);const r=s[c];if(r){delete r[e]}}t.unregisterGlobal=unregisterGlobal},130:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.isCompatible=t._makeCompatibilityCheck=void 0;const n=r(521);const a=/^(\\d+)\\.(\\d+)\\.(\\d+)(-(.+))?$/;function _makeCompatibilityCheck(e){const t=new Set([e]);const r=new Set;const n=e.match(a);if(!n){return()=>false}const o={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(o.prerelease!=null){return function isExactmatch(t){return t===e}}function _reject(e){r.add(e);return false}function _accept(e){t.add(e);return true}return function isCompatible(e){if(t.has(e)){return true}if(r.has(e)){return false}const n=e.match(a);if(!n){return _reject(e)}const i={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(i.prerelease!=null){return _reject(e)}if(o.major!==i.major){return _reject(e)}if(o.major===0){if(o.minor===i.minor&&o.patch<=i.patch){return _accept(e)}return _reject(e)}if(o.minor<=i.minor){return _accept(e)}return _reject(e)}}t._makeCompatibilityCheck=_makeCompatibilityCheck;t.isCompatible=_makeCompatibilityCheck(n.VERSION)},886:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.metrics=void 0;const n=r(653);t.metrics=n.MetricsAPI.getInstance()},901:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ValueType=void 0;var r;(function(e){e[e[\"INT\"]=0]=\"INT\";e[e[\"DOUBLE\"]=1]=\"DOUBLE\"})(r=t.ValueType||(t.ValueType={}))},102:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createNoopMeter=t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=t.NOOP_OBSERVABLE_GAUGE_METRIC=t.NOOP_OBSERVABLE_COUNTER_METRIC=t.NOOP_UP_DOWN_COUNTER_METRIC=t.NOOP_HISTOGRAM_METRIC=t.NOOP_COUNTER_METRIC=t.NOOP_METER=t.NoopObservableUpDownCounterMetric=t.NoopObservableGaugeMetric=t.NoopObservableCounterMetric=t.NoopObservableMetric=t.NoopHistogramMetric=t.NoopUpDownCounterMetric=t.NoopCounterMetric=t.NoopMetric=t.NoopMeter=void 0;class NoopMeter{constructor(){}createHistogram(e,r){return t.NOOP_HISTOGRAM_METRIC}createCounter(e,r){return t.NOOP_COUNTER_METRIC}createUpDownCounter(e,r){return t.NOOP_UP_DOWN_COUNTER_METRIC}createObservableGauge(e,r){return t.NOOP_OBSERVABLE_GAUGE_METRIC}createObservableCounter(e,r){return t.NOOP_OBSERVABLE_COUNTER_METRIC}createObservableUpDownCounter(e,r){return t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC}addBatchObservableCallback(e,t){}removeBatchObservableCallback(e){}}t.NoopMeter=NoopMeter;class NoopMetric{}t.NoopMetric=NoopMetric;class NoopCounterMetric extends NoopMetric{add(e,t){}}t.NoopCounterMetric=NoopCounterMetric;class NoopUpDownCounterMetric extends NoopMetric{add(e,t){}}t.NoopUpDownCounterMetric=NoopUpDownCounterMetric;class NoopHistogramMetric extends NoopMetric{record(e,t){}}t.NoopHistogramMetric=NoopHistogramMetric;class NoopObservableMetric{addCallback(e){}removeCallback(e){}}t.NoopObservableMetric=NoopObservableMetric;class NoopObservableCounterMetric extends NoopObservableMetric{}t.NoopObservableCounterMetric=NoopObservableCounterMetric;class NoopObservableGaugeMetric extends NoopObservableMetric{}t.NoopObservableGaugeMetric=NoopObservableGaugeMetric;class NoopObservableUpDownCounterMetric extends NoopObservableMetric{}t.NoopObservableUpDownCounterMetric=NoopObservableUpDownCounterMetric;t.NOOP_METER=new NoopMeter;t.NOOP_COUNTER_METRIC=new NoopCounterMetric;t.NOOP_HISTOGRAM_METRIC=new NoopHistogramMetric;t.NOOP_UP_DOWN_COUNTER_METRIC=new NoopUpDownCounterMetric;t.NOOP_OBSERVABLE_COUNTER_METRIC=new NoopObservableCounterMetric;t.NOOP_OBSERVABLE_GAUGE_METRIC=new NoopObservableGaugeMetric;t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=new NoopObservableUpDownCounterMetric;function createNoopMeter(){return t.NOOP_METER}t.createNoopMeter=createNoopMeter},660:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NOOP_METER_PROVIDER=t.NoopMeterProvider=void 0;const n=r(102);class NoopMeterProvider{getMeter(e,t,r){return n.NOOP_METER}}t.NoopMeterProvider=NoopMeterProvider;t.NOOP_METER_PROVIDER=new NoopMeterProvider},200:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(46),t)},651:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t._globalThis=void 0;t._globalThis=typeof globalThis===\"object\"?globalThis:global},46:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(651),t)},939:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.propagation=void 0;const n=r(181);t.propagation=n.PropagationAPI.getInstance()},874:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTextMapPropagator=void 0;class NoopTextMapPropagator{inject(e,t){}extract(e,t){return e}fields(){return[]}}t.NoopTextMapPropagator=NoopTextMapPropagator},194:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.defaultTextMapSetter=t.defaultTextMapGetter=void 0;t.defaultTextMapGetter={get(e,t){if(e==null){return undefined}return e[t]},keys(e){if(e==null){return[]}return Object.keys(e)}};t.defaultTextMapSetter={set(e,t,r){if(e==null){return}e[t]=r}}},845:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.trace=void 0;const n=r(997);t.trace=n.TraceAPI.getInstance()},403:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NonRecordingSpan=void 0;const n=r(476);class NonRecordingSpan{constructor(e=n.INVALID_SPAN_CONTEXT){this._spanContext=e}spanContext(){return this._spanContext}setAttribute(e,t){return this}setAttributes(e){return this}addEvent(e,t){return this}setStatus(e){return this}updateName(e){return this}end(e){}isRecording(){return false}recordException(e,t){}}t.NonRecordingSpan=NonRecordingSpan},614:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracer=void 0;const n=r(491);const a=r(607);const o=r(403);const i=r(139);const c=n.ContextAPI.getInstance();class NoopTracer{startSpan(e,t,r=c.active()){const n=Boolean(t===null||t===void 0?void 0:t.root);if(n){return new o.NonRecordingSpan}const s=r&&(0,a.getSpanContext)(r);if(isSpanContext(s)&&(0,i.isSpanContextValid)(s)){return new o.NonRecordingSpan(s)}else{return new o.NonRecordingSpan}}startActiveSpan(e,t,r,n){let o;let i;let s;if(arguments.length<2){return}else if(arguments.length===2){s=t}else if(arguments.length===3){o=t;s=r}else{o=t;i=r;s=n}const u=i!==null&&i!==void 0?i:c.active();const l=this.startSpan(e,o,u);const g=(0,a.setSpan)(u,l);return c.with(g,s,undefined,l)}}t.NoopTracer=NoopTracer;function isSpanContext(e){return typeof e===\"object\"&&typeof e[\"spanId\"]===\"string\"&&typeof e[\"traceId\"]===\"string\"&&typeof e[\"traceFlags\"]===\"number\"}},124:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracerProvider=void 0;const n=r(614);class NoopTracerProvider{getTracer(e,t,r){return new n.NoopTracer}}t.NoopTracerProvider=NoopTracerProvider},125:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracer=void 0;const n=r(614);const a=new n.NoopTracer;class ProxyTracer{constructor(e,t,r,n){this._provider=e;this.name=t;this.version=r;this.options=n}startSpan(e,t,r){return this._getTracer().startSpan(e,t,r)}startActiveSpan(e,t,r,n){const a=this._getTracer();return Reflect.apply(a.startActiveSpan,a,arguments)}_getTracer(){if(this._delegate){return this._delegate}const e=this._provider.getDelegateTracer(this.name,this.version,this.options);if(!e){return a}this._delegate=e;return this._delegate}}t.ProxyTracer=ProxyTracer},846:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracerProvider=void 0;const n=r(125);const a=r(124);const o=new a.NoopTracerProvider;class ProxyTracerProvider{getTracer(e,t,r){var a;return(a=this.getDelegateTracer(e,t,r))!==null&&a!==void 0?a:new n.ProxyTracer(this,e,t,r)}getDelegate(){var e;return(e=this._delegate)!==null&&e!==void 0?e:o}setDelegate(e){this._delegate=e}getDelegateTracer(e,t,r){var n;return(n=this._delegate)===null||n===void 0?void 0:n.getTracer(e,t,r)}}t.ProxyTracerProvider=ProxyTracerProvider},996:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SamplingDecision=void 0;var r;(function(e){e[e[\"NOT_RECORD\"]=0]=\"NOT_RECORD\";e[e[\"RECORD\"]=1]=\"RECORD\";e[e[\"RECORD_AND_SAMPLED\"]=2]=\"RECORD_AND_SAMPLED\"})(r=t.SamplingDecision||(t.SamplingDecision={}))},607:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.getSpanContext=t.setSpanContext=t.deleteSpan=t.setSpan=t.getActiveSpan=t.getSpan=void 0;const n=r(780);const a=r(403);const o=r(491);const i=(0,n.createContextKey)(\"OpenTelemetry Context Key SPAN\");function getSpan(e){return e.getValue(i)||undefined}t.getSpan=getSpan;function getActiveSpan(){return getSpan(o.ContextAPI.getInstance().active())}t.getActiveSpan=getActiveSpan;function setSpan(e,t){return e.setValue(i,t)}t.setSpan=setSpan;function deleteSpan(e){return e.deleteValue(i)}t.deleteSpan=deleteSpan;function setSpanContext(e,t){return setSpan(e,new a.NonRecordingSpan(t))}t.setSpanContext=setSpanContext;function getSpanContext(e){var t;return(t=getSpan(e))===null||t===void 0?void 0:t.spanContext()}t.getSpanContext=getSpanContext},325:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceStateImpl=void 0;const n=r(564);const a=32;const o=512;const i=\",\";const c=\"=\";class TraceStateImpl{constructor(e){this._internalState=new Map;if(e)this._parse(e)}set(e,t){const r=this._clone();if(r._internalState.has(e)){r._internalState.delete(e)}r._internalState.set(e,t);return r}unset(e){const t=this._clone();t._internalState.delete(e);return t}get(e){return this._internalState.get(e)}serialize(){return this._keys().reduce(((e,t)=>{e.push(t+c+this.get(t));return e}),[]).join(i)}_parse(e){if(e.length>o)return;this._internalState=e.split(i).reverse().reduce(((e,t)=>{const r=t.trim();const a=r.indexOf(c);if(a!==-1){const o=r.slice(0,a);const i=r.slice(a+1,t.length);if((0,n.validateKey)(o)&&(0,n.validateValue)(i)){e.set(o,i)}else{}}return e}),new Map);if(this._internalState.size>a){this._internalState=new Map(Array.from(this._internalState.entries()).reverse().slice(0,a))}}_keys(){return Array.from(this._internalState.keys()).reverse()}_clone(){const e=new TraceStateImpl;e._internalState=new Map(this._internalState);return e}}t.TraceStateImpl=TraceStateImpl},564:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.validateValue=t.validateKey=void 0;const r=\"[_0-9a-z-*/]\";const n=`[a-z]${r}{0,255}`;const a=`[a-z0-9]${r}{0,240}@[a-z]${r}{0,13}`;const o=new RegExp(`^(?:${n}|${a})$`);const i=/^[ -~]{0,255}[!-~]$/;const c=/,|=/;function validateKey(e){return o.test(e)}t.validateKey=validateKey;function validateValue(e){return i.test(e)&&!c.test(e)}t.validateValue=validateValue},98:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createTraceState=void 0;const n=r(325);function createTraceState(e){return new n.TraceStateImpl(e)}t.createTraceState=createTraceState},476:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.INVALID_SPAN_CONTEXT=t.INVALID_TRACEID=t.INVALID_SPANID=void 0;const n=r(475);t.INVALID_SPANID=\"0000000000000000\";t.INVALID_TRACEID=\"00000000000000000000000000000000\";t.INVALID_SPAN_CONTEXT={traceId:t.INVALID_TRACEID,spanId:t.INVALID_SPANID,traceFlags:n.TraceFlags.NONE}},357:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanKind=void 0;var r;(function(e){e[e[\"INTERNAL\"]=0]=\"INTERNAL\";e[e[\"SERVER\"]=1]=\"SERVER\";e[e[\"CLIENT\"]=2]=\"CLIENT\";e[e[\"PRODUCER\"]=3]=\"PRODUCER\";e[e[\"CONSUMER\"]=4]=\"CONSUMER\"})(r=t.SpanKind||(t.SpanKind={}))},139:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.wrapSpanContext=t.isSpanContextValid=t.isValidSpanId=t.isValidTraceId=void 0;const n=r(476);const a=r(403);const o=/^([0-9a-f]{32})$/i;const i=/^[0-9a-f]{16}$/i;function isValidTraceId(e){return o.test(e)&&e!==n.INVALID_TRACEID}t.isValidTraceId=isValidTraceId;function isValidSpanId(e){return i.test(e)&&e!==n.INVALID_SPANID}t.isValidSpanId=isValidSpanId;function isSpanContextValid(e){return isValidTraceId(e.traceId)&&isValidSpanId(e.spanId)}t.isSpanContextValid=isSpanContextValid;function wrapSpanContext(e){return new a.NonRecordingSpan(e)}t.wrapSpanContext=wrapSpanContext},847:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanStatusCode=void 0;var r;(function(e){e[e[\"UNSET\"]=0]=\"UNSET\";e[e[\"OK\"]=1]=\"OK\";e[e[\"ERROR\"]=2]=\"ERROR\"})(r=t.SpanStatusCode||(t.SpanStatusCode={}))},475:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceFlags=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"SAMPLED\"]=1]=\"SAMPLED\"})(r=t.TraceFlags||(t.TraceFlags={}))},521:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.VERSION=void 0;t.VERSION=\"1.6.0\"}};var t={};function __nccwpck_require__(r){var n=t[r];if(n!==undefined){return n.exports}var a=t[r]={exports:{}};var o=true;try{e[r].call(a.exports,a,a.exports,__nccwpck_require__);o=false}finally{if(o)delete t[r]}return a.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var r={};(()=>{var e=r;Object.defineProperty(e,\"__esModule\",{value:true});e.trace=e.propagation=e.metrics=e.diag=e.context=e.INVALID_SPAN_CONTEXT=e.INVALID_TRACEID=e.INVALID_SPANID=e.isValidSpanId=e.isValidTraceId=e.isSpanContextValid=e.createTraceState=e.TraceFlags=e.SpanStatusCode=e.SpanKind=e.SamplingDecision=e.ProxyTracerProvider=e.ProxyTracer=e.defaultTextMapSetter=e.defaultTextMapGetter=e.ValueType=e.createNoopMeter=e.DiagLogLevel=e.DiagConsoleLogger=e.ROOT_CONTEXT=e.createContextKey=e.baggageEntryMetadataFromString=void 0;var t=__nccwpck_require__(369);Object.defineProperty(e,\"baggageEntryMetadataFromString\",{enumerable:true,get:function(){return t.baggageEntryMetadataFromString}});var n=__nccwpck_require__(780);Object.defineProperty(e,\"createContextKey\",{enumerable:true,get:function(){return n.createContextKey}});Object.defineProperty(e,\"ROOT_CONTEXT\",{enumerable:true,get:function(){return n.ROOT_CONTEXT}});var a=__nccwpck_require__(972);Object.defineProperty(e,\"DiagConsoleLogger\",{enumerable:true,get:function(){return a.DiagConsoleLogger}});var o=__nccwpck_require__(957);Object.defineProperty(e,\"DiagLogLevel\",{enumerable:true,get:function(){return o.DiagLogLevel}});var i=__nccwpck_require__(102);Object.defineProperty(e,\"createNoopMeter\",{enumerable:true,get:function(){return i.createNoopMeter}});var c=__nccwpck_require__(901);Object.defineProperty(e,\"ValueType\",{enumerable:true,get:function(){return c.ValueType}});var s=__nccwpck_require__(194);Object.defineProperty(e,\"defaultTextMapGetter\",{enumerable:true,get:function(){return s.defaultTextMapGetter}});Object.defineProperty(e,\"defaultTextMapSetter\",{enumerable:true,get:function(){return s.defaultTextMapSetter}});var u=__nccwpck_require__(125);Object.defineProperty(e,\"ProxyTracer\",{enumerable:true,get:function(){return u.ProxyTracer}});var l=__nccwpck_require__(846);Object.defineProperty(e,\"ProxyTracerProvider\",{enumerable:true,get:function(){return l.ProxyTracerProvider}});var g=__nccwpck_require__(996);Object.defineProperty(e,\"SamplingDecision\",{enumerable:true,get:function(){return g.SamplingDecision}});var p=__nccwpck_require__(357);Object.defineProperty(e,\"SpanKind\",{enumerable:true,get:function(){return p.SpanKind}});var d=__nccwpck_require__(847);Object.defineProperty(e,\"SpanStatusCode\",{enumerable:true,get:function(){return d.SpanStatusCode}});var _=__nccwpck_require__(475);Object.defineProperty(e,\"TraceFlags\",{enumerable:true,get:function(){return _.TraceFlags}});var f=__nccwpck_require__(98);Object.defineProperty(e,\"createTraceState\",{enumerable:true,get:function(){return f.createTraceState}});var b=__nccwpck_require__(139);Object.defineProperty(e,\"isSpanContextValid\",{enumerable:true,get:function(){return b.isSpanContextValid}});Object.defineProperty(e,\"isValidTraceId\",{enumerable:true,get:function(){return b.isValidTraceId}});Object.defineProperty(e,\"isValidSpanId\",{enumerable:true,get:function(){return b.isValidSpanId}});var v=__nccwpck_require__(476);Object.defineProperty(e,\"INVALID_SPANID\",{enumerable:true,get:function(){return v.INVALID_SPANID}});Object.defineProperty(e,\"INVALID_TRACEID\",{enumerable:true,get:function(){return v.INVALID_TRACEID}});Object.defineProperty(e,\"INVALID_SPAN_CONTEXT\",{enumerable:true,get:function(){return v.INVALID_SPAN_CONTEXT}});const O=__nccwpck_require__(67);Object.defineProperty(e,\"context\",{enumerable:true,get:function(){return O.context}});const P=__nccwpck_require__(506);Object.defineProperty(e,\"diag\",{enumerable:true,get:function(){return P.diag}});const N=__nccwpck_require__(886);Object.defineProperty(e,\"metrics\",{enumerable:true,get:function(){return N.metrics}});const S=__nccwpck_require__(939);Object.defineProperty(e,\"propagation\",{enumerable:true,get:function(){return S.propagation}});const C=__nccwpck_require__(845);Object.defineProperty(e,\"trace\",{enumerable:true,get:function(){return C.trace}});e[\"default\"]={context:O.context,diag:P.diag,metrics:N.metrics,propagation:S.propagation,trace:C.trace}})();module.exports=r})();","import { LogSpanAllowList, NextVanillaSpanAllowlist } from './constants';\nimport { isThenable } from '../../../shared/lib/is-thenable';\nconst NEXT_OTEL_PERFORMANCE_PREFIX = process.env.NEXT_OTEL_PERFORMANCE_PREFIX;\nlet api;\n// we want to allow users to use their own version of @opentelemetry/api if they\n// want to, so we try to require it first, and if it fails we fall back to the\n// version that is bundled with Next.js\n// this is because @opentelemetry/api has to be synced with the version of\n// @opentelemetry/tracing that is used, and we don't want to force users to use\n// the version that is bundled with Next.js.\n// the API is ~stable, so this should be fine\nif (process.env.NEXT_RUNTIME === 'edge') {\n api = require('@opentelemetry/api');\n} else {\n try {\n api = require('@opentelemetry/api');\n } catch (err) {\n api = require('next/dist/compiled/@opentelemetry/api');\n }\n}\nconst { context, propagation, trace, SpanStatusCode, SpanKind, ROOT_CONTEXT } = api;\nexport class BubbledError extends Error {\n constructor(bubble, result){\n super(), this.bubble = bubble, this.result = result;\n }\n}\nexport function isBubbledError(error) {\n if (typeof error !== 'object' || error === null) return false;\n return error instanceof BubbledError;\n}\nconst closeSpanWithError = (span, error)=>{\n if (isBubbledError(error) && error.bubble) {\n span.setAttribute('next.bubble', true);\n } else {\n if (error) {\n span.recordException(error);\n span.setAttribute('error.type', error.name);\n }\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: error == null ? void 0 : error.message\n });\n }\n span.end();\n};\n/** we use this map to propagate attributes from nested spans to the top span */ const rootSpanAttributesStore = new Map();\nconst rootSpanIdKey = api.createContextKey('next.rootSpanId');\nlet lastSpanId = 0;\nconst getSpanId = ()=>lastSpanId++;\nconst clientTraceDataSetter = {\n set (carrier, key, value) {\n carrier.push({\n key,\n value\n });\n }\n};\nclass NextTracerImpl {\n /**\n * Returns an instance to the trace with configured name.\n * Since wrap / trace can be defined in any place prior to actual trace subscriber initialization,\n * This should be lazily evaluated.\n */ getTracerInstance() {\n return trace.getTracer('next.js', '0.0.1');\n }\n getContext() {\n return context;\n }\n getTracePropagationData() {\n const activeContext = context.active();\n const entries = [];\n propagation.inject(activeContext, entries, clientTraceDataSetter);\n return entries;\n }\n getActiveScopeSpan() {\n return trace.getSpan(context == null ? void 0 : context.active());\n }\n withPropagatedContext(carrier, fn, getter, force = false) {\n const activeContext = context.active();\n if (force) {\n const remoteContext = propagation.extract(ROOT_CONTEXT, carrier, getter);\n if (trace.getSpanContext(remoteContext)) {\n return context.with(remoteContext, fn);\n }\n // Preserve the current active span while still merging any extracted\n // baggage/context values from the carrier.\n const mergedContext = propagation.extract(activeContext, carrier, getter);\n return context.with(mergedContext, fn);\n }\n if (trace.getSpanContext(activeContext)) {\n // Active span is already set, too late to propagate.\n return fn();\n }\n const remoteContext = propagation.extract(activeContext, carrier, getter);\n return context.with(remoteContext, fn);\n }\n trace(...args) {\n const [type, fnOrOptions, fnOrEmpty] = args;\n // coerce options form overload\n const { fn, options } = typeof fnOrOptions === 'function' ? {\n fn: fnOrOptions,\n options: {}\n } : {\n fn: fnOrEmpty,\n options: {\n ...fnOrOptions\n }\n };\n const spanName = options.spanName ?? type;\n if (!NextVanillaSpanAllowlist.has(type) && process.env.NEXT_OTEL_VERBOSE !== '1' || options.hideSpan) {\n return fn();\n }\n // Trying to get active scoped span to assign parent. If option specifies parent span manually, will try to use it.\n let spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan());\n if (!spanContext) {\n spanContext = (context == null ? void 0 : context.active()) ?? ROOT_CONTEXT;\n }\n // Check if there's already a root span in the store for this trace\n // We are intentionally not checking whether there is an active context\n // from outside of nextjs to ensure that we can provide the same level\n // of telemetry when using a custom server\n const existingRootSpanId = spanContext.getValue(rootSpanIdKey);\n const isRootSpan = typeof existingRootSpanId !== 'number' || !rootSpanAttributesStore.has(existingRootSpanId);\n const spanId = getSpanId();\n options.attributes = {\n 'next.span_name': spanName,\n 'next.span_type': type,\n ...options.attributes\n };\n return context.with(spanContext.setValue(rootSpanIdKey, spanId), ()=>this.getTracerInstance().startActiveSpan(spanName, options, (span)=>{\n let startTime;\n if (NEXT_OTEL_PERFORMANCE_PREFIX && type && LogSpanAllowList.has(type)) {\n startTime = 'performance' in globalThis && 'measure' in performance ? globalThis.performance.now() : undefined;\n }\n let cleanedUp = false;\n const onCleanup = ()=>{\n if (cleanedUp) return;\n cleanedUp = true;\n rootSpanAttributesStore.delete(spanId);\n if (startTime) {\n performance.measure(`${NEXT_OTEL_PERFORMANCE_PREFIX}:next-${(type.split('.').pop() || '').replace(/[A-Z]/g, (match)=>'-' + match.toLowerCase())}`, {\n start: startTime,\n end: performance.now()\n });\n }\n };\n if (isRootSpan) {\n rootSpanAttributesStore.set(spanId, new Map(Object.entries(options.attributes ?? {})));\n }\n if (fn.length > 1) {\n try {\n return fn(span, (err)=>closeSpanWithError(span, err));\n } catch (err) {\n closeSpanWithError(span, err);\n throw err;\n } finally{\n onCleanup();\n }\n }\n try {\n const result = fn(span);\n if (isThenable(result)) {\n // If there's error make sure it throws\n return result.then((res)=>{\n span.end();\n // Need to pass down the promise result,\n // it could be react stream response with error { error, stream }\n return res;\n }).catch((err)=>{\n closeSpanWithError(span, err);\n throw err;\n }).finally(onCleanup);\n } else {\n span.end();\n onCleanup();\n }\n return result;\n } catch (err) {\n closeSpanWithError(span, err);\n onCleanup();\n throw err;\n }\n }));\n }\n wrap(...args) {\n const tracer = this;\n const [name, options, fn] = args.length === 3 ? args : [\n args[0],\n {},\n args[1]\n ];\n if (!NextVanillaSpanAllowlist.has(name) && process.env.NEXT_OTEL_VERBOSE !== '1') {\n return fn;\n }\n return function() {\n let optionsObj = options;\n if (typeof optionsObj === 'function' && typeof fn === 'function') {\n optionsObj = optionsObj.apply(this, arguments);\n }\n const lastArgId = arguments.length - 1;\n const cb = arguments[lastArgId];\n if (typeof cb === 'function') {\n const scopeBoundCb = tracer.getContext().bind(context.active(), cb);\n return tracer.trace(name, optionsObj, (_span, done)=>{\n arguments[lastArgId] = function(err) {\n done == null ? void 0 : done(err);\n return scopeBoundCb.apply(this, arguments);\n };\n return fn.apply(this, arguments);\n });\n } else {\n return tracer.trace(name, optionsObj, ()=>fn.apply(this, arguments));\n }\n };\n }\n startSpan(...args) {\n const [type, options] = args;\n const spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan());\n return this.getTracerInstance().startSpan(type, options, spanContext);\n }\n getSpanContext(parentSpan) {\n const spanContext = parentSpan ? trace.setSpan(context.active(), parentSpan) : undefined;\n return spanContext;\n }\n getRootSpanAttributes() {\n const spanId = context.active().getValue(rootSpanIdKey);\n return rootSpanAttributesStore.get(spanId);\n }\n setRootSpanAttribute(key, value) {\n const spanId = context.active().getValue(rootSpanIdKey);\n const attributes = rootSpanAttributesStore.get(spanId);\n if (attributes && !attributes.has(key)) {\n attributes.set(key, value);\n }\n }\n withSpan(span, fn) {\n const spanContext = trace.setSpan(context.active(), span);\n return context.with(spanContext, fn);\n }\n}\nconst getTracer = (()=>{\n const tracer = new NextTracerImpl();\n return ()=>tracer;\n})();\nexport { getTracer, SpanStatusCode, SpanKind };\n\n//# sourceMappingURL=tracer.js.map","/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */ export function isThenable(promise) {\n return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function';\n}\n\n//# sourceMappingURL=is-thenable.js.map","import type { IncomingMessage, ServerResponse } from 'http'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { UrlWithParsedQuery } from 'url'\nimport type { BaseNextRequest } from './base-http'\nimport type { CloneableBody } from './body-streams'\nimport type { RouteMatch } from './route-matches/route-match'\nimport type { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\nimport type {\n ResponseCacheEntry,\n ServerComponentsHmrCache,\n} from './response-cache'\nimport type { PagesDevOverlayBridgeType } from '../next-devtools/userspace/pages/pages-dev-overlay-setup'\nimport type { OpaqueFallbackRouteParams } from './request/fallback-params'\nimport type { IncrementalCache } from './lib/incremental-cache'\nimport type { RevalidateFn } from './lib/router-utils/router-server-context'\nimport type { NextRequest } from './web/exports'\n\n// FIXME: (wyattjoh) this is a temporary solution to allow us to pass data between bundled modules\nexport const NEXT_REQUEST_META = Symbol.for('NextInternalRequestMeta')\n\nexport type NextIncomingMessage = (\n | BaseNextRequest\n | IncomingMessage\n | NextRequest\n) & {\n [NEXT_REQUEST_META]?: RequestMeta\n}\n\n/**\n * The callback function to call when a response cache entry was generated or\n * looked up in the cache. When it returns true, the server assumes that the\n * handler has already responded to the request and will not do so itself.\n */\nexport type OnCacheEntryHandler = (\n /**\n * The response cache entry that was generated or looked up in the cache.\n */\n cacheEntry: ResponseCacheEntry,\n\n /**\n * The request metadata.\n */\n requestMeta: {\n /**\n * The URL that was used to make the request.\n */\n url: string | undefined\n }\n) => Promise | boolean | void\n\nexport interface RequestMeta {\n /**\n * The query that was used to make the request.\n */\n initQuery?: ParsedUrlQuery\n\n /**\n * The URL that was used to make the request.\n */\n initURL?: string\n\n /**\n * The protocol that was used to make the request.\n */\n initProtocol?: string\n\n /**\n * The body that was read from the request. This is used to allow the body to\n * be read multiple times.\n */\n clonableBody?: CloneableBody\n\n /**\n * True when the request matched a locale domain that was configured in the\n * next.config.js file.\n */\n isLocaleDomain?: boolean\n\n /**\n * True when the request had locale information stripped from the pathname\n * part of the URL.\n */\n didStripLocale?: boolean\n\n /**\n * If the request had its URL rewritten, this is the pathname it was rewritten\n * to (not a full URL, just the pathname).\n */\n rewrittenPathname?: string\n\n /**\n * The resolved pathname for the request. Dynamic route params are\n * interpolated, the pathname is decoded, and the trailing slash is removed.\n */\n resolvedPathname?: string\n\n /**\n * The cookies that were added by middleware and were added to the response.\n */\n middlewareCookie?: string[]\n\n /**\n * The match on the request for a given route.\n */\n match?: RouteMatch\n\n /**\n * The incremental cache to use for the request.\n */\n incrementalCache?: IncrementalCache\n\n /**\n * The server components HMR cache, only for dev.\n */\n serverComponentsHmrCache?: ServerComponentsHmrCache\n\n /**\n * Equals the segment path that was used for the prefetch RSC request.\n */\n segmentPrefetchRSCRequest?: string\n\n /**\n * True when the request is for the prefetch flight data.\n */\n isPrefetchRSCRequest?: true\n\n /**\n * True when the request is for the flight data.\n */\n isRSCRequest?: true\n\n /**\n * A search param set by the Next.js client when performing RSC requests.\n * Because some CDNs do not vary their cache entries on our custom headers,\n * this search param represents a hash of the header values. For any cached\n * RSC request, we should verify that the hash matches before responding.\n * Otherwise this can lead to cache poisoning.\n * TODO: Consider not using custom request headers at all, and instead encode\n * everything into the search param.\n */\n cacheBustingSearchParam?: string\n\n /**\n * True when the request is for the `/_next/data` route using the pages\n * router.\n */\n isNextDataReq?: true\n\n /**\n * Postponed state to use for resumption. If present it's assumed that the\n * request is for a page that has postponed (there are no guarantees that the\n * page actually has postponed though as it would incur an additional cache\n * lookup).\n */\n postponed?: string\n\n /**\n * The action body extracted from a server action request when the postponed\n * state was prepended to the body by the proxy. This allows the action\n * handler to read the action payload without re-reading the consumed stream.\n */\n actionBody?: Buffer\n\n /**\n * If provided, this will be called when a response cache entry was generated\n * or looked up in the cache.\n *\n * @deprecated Use `onCacheEntryV2` instead.\n */\n onCacheEntry?: OnCacheEntryHandler\n\n /**\n * If provided, this will be called when a response cache entry was generated\n * or looked up in the cache.\n */\n onCacheEntryV2?: OnCacheEntryHandler\n\n /**\n * The previous revalidate before rendering 404 page for notFound: true\n */\n notFoundRevalidate?: number | false\n\n /**\n * In development, the original source page that returned a 404.\n */\n developmentNotFoundSourcePage?: string\n\n /**\n * The path we routed to and should be invoked\n */\n invokePath?: string\n\n /**\n * The specific page output we should be matching\n */\n invokeOutput?: string\n\n /**\n * The status we are invoking the request with from routing\n */\n invokeStatus?: number\n\n /**\n * The routing error we are invoking with\n */\n invokeError?: Error\n\n /**\n * The query parsed for the invocation\n */\n invokeQuery?: Record\n\n /**\n * Whether the request is a middleware invocation\n */\n middlewareInvoke?: boolean\n\n /**\n * Whether the request should render the fallback shell or not.\n */\n renderFallbackShell?: boolean\n\n /**\n * Whether the request is for the custom error page.\n */\n customErrorRender?: true\n\n /**\n * Whether to bubble up the NoFallbackError to the caller when a 404 is\n * returned.\n */\n bubbleNoFallback?: true\n\n /**\n * True when the request had locale information inferred from the default\n * locale.\n */\n localeInferredFromDefault?: true\n\n /**\n * The locale that was inferred or explicitly set for the request.\n */\n locale?: string\n\n /**\n * The default locale that was inferred or explicitly set for the request.\n */\n defaultLocale?: string\n\n /**\n * The relative project dir the server is running in from project root\n */\n relativeProjectDir?: string\n\n /**\n * The dist directory the server is currently using\n */\n distDir?: string\n\n /**\n Optional hostname used by route handlers when constructing absolute URLs.\n hostname: '127.0.0.1',\n */\n hostname?: string\n\n /**\n Optional internal revalidate function to avoid revalidating over the network\n */\n revalidate?: RevalidateFn\n\n /**\n Optional function to render the 404 page for pages router `notFound: true`\n */\n render404?: (\n req: IncomingMessage,\n res: ServerResponse,\n parsedUrl?: UrlWithParsedQuery,\n setHeaders?: boolean\n ) => Promise\n\n /**\n * The query after resolving routes\n */\n query?: ParsedUrlQuery\n\n /**\n * The params after resolving routes\n */\n params?: ParsedUrlQuery\n\n /**\n * ErrorOverlay component to use in development for pages router\n */\n PagesErrorDebug?: PagesDevOverlayBridgeType\n\n /**\n * Whether server is in minimal mode (this will be replaced with more\n * specific flags in future)\n */\n minimalMode?: boolean\n\n /**\n * When background revalidation resolves some route params but not others,\n * tracks the param keys that are no longer placeholders so only the\n * unresolved subset suspends in intermediate PPR shells.\n */\n resolvedRouteParamKeys?: Set\n\n /**\n * The fallback params for this route. In dev, used for validating prerenders.\n * In production, used to defer params resolution during staged rendering.\n */\n fallbackParams?: OpaqueFallbackRouteParams\n\n /**\n * DEV only: Request timings in process.hrtime.bigint()\n */\n devRequestTimingStart?: bigint\n devRequestTimingMiddlewareStart?: bigint\n devRequestTimingMiddlewareEnd?: bigint\n devRequestTimingInternalsEnd?: bigint\n\n /**\n * DEV only: The duration of getStaticPaths/generateStaticParams in process.hrtime.bigint()\n */\n devGenerateStaticParamsDuration?: bigint\n\n /**\n * DEV only: Server action log info to be logged after the request log\n */\n devServerActionLog?: {\n functionName: string\n args: unknown[]\n location: string\n duration: number\n }\n}\n\n/**\n * Gets the request metadata. If no key is provided, the entire metadata object\n * is returned.\n *\n * @param req the request to get the metadata from\n * @param key the key to get from the metadata (optional)\n * @returns the value for the key or the entire metadata object\n */\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key?: undefined\n): RequestMeta\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key: K\n): RequestMeta[K]\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key?: K\n): RequestMeta | RequestMeta[K] {\n const meta = req[NEXT_REQUEST_META] || {}\n return typeof key === 'string' ? meta[key] : meta\n}\n\n/**\n * Sets the request metadata.\n *\n * @param req the request to set the metadata on\n * @param meta the metadata to set\n * @returns the mutated request metadata\n */\nexport function setRequestMeta(req: NextIncomingMessage, meta: RequestMeta) {\n req[NEXT_REQUEST_META] = meta\n return meta\n}\n\n/**\n * Adds a value to the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to set\n * @param value the value to set\n * @returns the mutated request metadata\n */\nexport function addRequestMeta(\n request: NextIncomingMessage,\n key: K,\n value: RequestMeta[K]\n) {\n const meta = getRequestMeta(request)\n meta[key] = value\n return setRequestMeta(request, meta)\n}\n\n/**\n * Removes a key from the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to remove\n * @returns the mutated request metadata\n */\nexport function removeRequestMeta(\n request: NextIncomingMessage,\n key: K\n) {\n const meta = getRequestMeta(request)\n delete meta[key]\n return setRequestMeta(request, meta)\n}\n\ntype NextQueryMetadata = {\n /**\n * The `_rsc` query parameter used for cache busting to ensure that the RSC\n * requests do not get cached by the browser explicitly.\n */\n [NEXT_RSC_UNION_QUERY]?: string\n}\n\nexport type NextParsedUrlQuery = ParsedUrlQuery & NextQueryMetadata\n\n/**\n * subset of `url.parse` return value\n */\ninterface LegacyUrl {\n auth?: string | null\n hash: string | null\n hostname: string | null\n href: string\n pathname: string | null\n protocol: string | null\n search: string | null\n slashes: boolean | null\n port: string | null\n query: string | null | ParsedUrlQuery\n}\ninterface LegacyUrlWithParsedQuery extends LegacyUrl {\n query: ParsedUrlQuery\n}\n\n// TODO: Remove in favor of WHATWG URLs\nexport interface NextUrlWithParsedQuery extends LegacyUrlWithParsedQuery {\n query: NextParsedUrlQuery\n}\n","/**\n * Interop between \"export default\" and \"module.exports\".\n */\nexport function interopDefault(mod: any) {\n return mod.default || mod\n}\n","export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\n// Header for the Instant Navigation Testing API. In development and testing\n// builds, static pre-renders normally don't happen. This header tells the\n// server to perform a static pre-render anyway, allowing tests to assert on\n// the prefetched UI. Not exposed in production builds by default.\nexport const NEXT_INSTANT_PREFETCH_HEADER =\n 'next-instant-navigation-testing-prefetch' as const\n\n// Cookie for the Instant Navigation Testing API. Used for MPA navigations\n// (page reload, full page load) where we can't set request headers. When set,\n// the server renders only the static shell. Not exposed in production builds\n// by default.\nexport const NEXT_INSTANT_TEST_COOKIE =\n 'next-instant-navigation-testing' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n","import type { IncomingHttpHeaders } from 'node:http'\n\nimport { FLIGHT_HEADERS } from '../../client/components/app-router-headers'\n\n/**\n * Removes the flight headers from the request.\n *\n * @param req the request to strip the headers from\n */\nexport function stripFlightHeaders(headers: IncomingHttpHeaders) {\n for (const header of FLIGHT_HEADERS) {\n delete headers[header]\n }\n}\n","export enum RedirectStatusCode {\n SeeOther = 303,\n TemporaryRedirect = 307,\n PermanentRedirect = 308,\n}\n","import { RedirectStatusCode } from '../../client/components/redirect-status-code';\nimport { getCookieParser } from '../api-utils/get-cookie-parser';\nexport class BaseNextRequest {\n constructor(method, url, body){\n this.method = method;\n this.url = url;\n this.body = body;\n }\n // Utils implemented using the abstract methods above\n get cookies() {\n if (this._cookies) return this._cookies;\n return this._cookies = getCookieParser(this.headers)();\n }\n}\nexport class BaseNextResponse {\n constructor(destination){\n this.destination = destination;\n }\n // Utils implemented using the abstract methods above\n redirect(destination, statusCode) {\n this.setHeader('Location', destination);\n this.statusCode = statusCode;\n // Since IE11 doesn't support the 308 header add backwards\n // compatibility using refresh header\n if (statusCode === RedirectStatusCode.PermanentRedirect) {\n this.setHeader('Refresh', `0;url=${destination}`);\n }\n return this;\n }\n}\n\n//# sourceMappingURL=index.js.map","import { SYMBOL_CLEARED_COOKIES } from '../api-utils';\nimport { NEXT_REQUEST_META } from '../request-meta';\nimport { BaseNextRequest, BaseNextResponse } from './index';\nlet prop;\nexport class NodeNextRequest extends BaseNextRequest {\n static #_ = prop = _NEXT_REQUEST_META = NEXT_REQUEST_META;\n constructor(_req){\n var _this__req;\n super(_req.method.toUpperCase(), _req.url, _req), this._req = _req, this.headers = this._req.headers, this.fetchMetrics = (_this__req = this._req) == null ? void 0 : _this__req.fetchMetrics, this[_NEXT_REQUEST_META] = this._req[NEXT_REQUEST_META] || {}, this.streaming = false;\n }\n get originalRequest() {\n // Need to mimic these changes to the original req object for places where we use it:\n // render.tsx, api/ssg requests\n this._req[NEXT_REQUEST_META] = this[NEXT_REQUEST_META];\n this._req.url = this.url;\n this._req.cookies = this.cookies;\n return this._req;\n }\n set originalRequest(value) {\n this._req = value;\n }\n /**\n * Returns the request body as a Web Readable Stream. The body here can only\n * be read once as the body will start flowing as soon as the data handler\n * is attached.\n *\n * @internal\n */ stream() {\n if (this.streaming) {\n throw Object.defineProperty(new Error('Invariant: NodeNextRequest.stream() can only be called once'), \"__NEXT_ERROR_CODE\", {\n value: \"E467\",\n enumerable: false,\n configurable: true\n });\n }\n this.streaming = true;\n return new ReadableStream({\n start: (controller)=>{\n this._req.on('data', (chunk)=>{\n controller.enqueue(new Uint8Array(chunk));\n });\n this._req.on('end', ()=>{\n controller.close();\n });\n this._req.on('error', (err)=>{\n controller.error(err);\n });\n }\n });\n }\n}\nexport class NodeNextResponse extends BaseNextResponse {\n get originalResponse() {\n if (SYMBOL_CLEARED_COOKIES in this) {\n this._res[SYMBOL_CLEARED_COOKIES] = this[SYMBOL_CLEARED_COOKIES];\n }\n return this._res;\n }\n constructor(_res){\n super(_res), this._res = _res, this.textBody = undefined;\n }\n get sent() {\n return this._res.finished || this._res.headersSent;\n }\n get statusCode() {\n return this._res.statusCode;\n }\n set statusCode(value) {\n this._res.statusCode = value;\n }\n get statusMessage() {\n return this._res.statusMessage;\n }\n set statusMessage(value) {\n this._res.statusMessage = value;\n }\n setHeader(name, value) {\n this._res.setHeader(name, value);\n return this;\n }\n removeHeader(name) {\n this._res.removeHeader(name);\n return this;\n }\n getHeaderValues(name) {\n const values = this._res.getHeader(name);\n if (values === undefined) return undefined;\n return (Array.isArray(values) ? values : [\n values\n ]).map((value)=>value.toString());\n }\n hasHeader(name) {\n return this._res.hasHeader(name);\n }\n getHeader(name) {\n const values = this.getHeaderValues(name);\n return Array.isArray(values) ? values.join(',') : undefined;\n }\n getHeaders() {\n return this._res.getHeaders();\n }\n appendHeader(name, value) {\n const currentValues = this.getHeaderValues(name) ?? [];\n if (!currentValues.includes(value)) {\n this._res.setHeader(name, [\n ...currentValues,\n value\n ]);\n }\n return this;\n }\n body(value) {\n this.textBody = value;\n return this;\n }\n send() {\n this._res.end(this.textBody);\n }\n onClose(callback) {\n this.originalResponse.on('close', callback);\n }\n}\nvar _NEXT_REQUEST_META;\n\n//# sourceMappingURL=node.js.map","import { HeadersAdapter } from '../web/spec-extension/adapters/headers';\nimport { PRERENDER_REVALIDATE_HEADER, PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER } from '../../lib/constants';\nimport { getTracer } from '../lib/trace/tracer';\nimport { NodeSpan } from '../lib/trace/constants';\nexport function wrapApiHandler(page, handler) {\n return (...args)=>{\n getTracer().setRootSpanAttribute('next.route', page);\n // Call API route method\n return getTracer().trace(NodeSpan.runHandler, {\n spanName: `executing api route (pages) ${page}`\n }, ()=>handler(...args));\n };\n}\n/**\n *\n * @param res response object\n * @param statusCode `HTTP` status code of response\n */ export function sendStatusCode(res, statusCode) {\n res.statusCode = statusCode;\n return res;\n}\n/**\n *\n * @param res response object\n * @param [statusOrUrl] `HTTP` status code of redirect\n * @param url URL of redirect\n */ export function redirect(res, statusOrUrl, url) {\n if (typeof statusOrUrl === 'string') {\n url = statusOrUrl;\n statusOrUrl = 307;\n }\n if (typeof statusOrUrl !== 'number' || typeof url !== 'string') {\n throw Object.defineProperty(new Error(`Invalid redirect arguments. Please use a single argument URL, e.g. res.redirect('/destination') or use a status code and URL, e.g. res.redirect(307, '/destination').`), \"__NEXT_ERROR_CODE\", {\n value: \"E389\",\n enumerable: false,\n configurable: true\n });\n }\n res.writeHead(statusOrUrl, {\n Location: url\n });\n res.write(url);\n res.end();\n return res;\n}\nexport function checkIsOnDemandRevalidate(req, previewProps) {\n const headers = HeadersAdapter.from(req.headers);\n const previewModeId = headers.get(PRERENDER_REVALIDATE_HEADER);\n const isOnDemandRevalidate = previewModeId === previewProps.previewModeId;\n const revalidateOnlyGenerated = headers.has(PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER);\n return {\n isOnDemandRevalidate,\n revalidateOnlyGenerated\n };\n}\nexport const COOKIE_NAME_PRERENDER_BYPASS = `__prerender_bypass`;\nexport const COOKIE_NAME_PRERENDER_DATA = `__next_preview_data`;\nexport const RESPONSE_LIMIT_DEFAULT = 4 * 1024 * 1024;\nexport const SYMBOL_PREVIEW_DATA = Symbol(COOKIE_NAME_PRERENDER_DATA);\nexport const SYMBOL_CLEARED_COOKIES = Symbol(COOKIE_NAME_PRERENDER_BYPASS);\nexport function clearPreviewData(res, options = {}) {\n if (SYMBOL_CLEARED_COOKIES in res) {\n return res;\n }\n const { serialize } = require('next/dist/compiled/cookie');\n const previous = res.getHeader('Set-Cookie');\n res.setHeader(`Set-Cookie`, [\n ...typeof previous === 'string' ? [\n previous\n ] : Array.isArray(previous) ? previous : [],\n serialize(COOKIE_NAME_PRERENDER_BYPASS, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...options.path !== undefined ? {\n path: options.path\n } : undefined\n }),\n serialize(COOKIE_NAME_PRERENDER_DATA, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...options.path !== undefined ? {\n path: options.path\n } : undefined\n })\n ]);\n Object.defineProperty(res, SYMBOL_CLEARED_COOKIES, {\n value: true,\n enumerable: false\n });\n return res;\n}\n/**\n * Custom error class\n */ export class ApiError extends Error {\n constructor(statusCode, message){\n super(message);\n this.statusCode = statusCode;\n }\n}\n/**\n * Sends error in `response`\n * @param res response object\n * @param statusCode of response\n * @param message of response\n */ export function sendError(res, statusCode, message) {\n res.statusCode = statusCode;\n res.statusMessage = message;\n res.end(message);\n}\n/**\n * Execute getter function only if its needed\n * @param LazyProps `req` and `params` for lazyProp\n * @param prop name of property\n * @param getter function to get data\n */ export function setLazyProp({ req }, prop, getter) {\n const opts = {\n configurable: true,\n enumerable: true\n };\n const optsReset = {\n ...opts,\n writable: true\n };\n Object.defineProperty(req, prop, {\n ...opts,\n get: ()=>{\n const value = getter();\n // we set the property on the object to avoid recalculating it\n Object.defineProperty(req, prop, {\n ...optsReset,\n value\n });\n return value;\n },\n set: (value)=>{\n Object.defineProperty(req, prop, {\n ...optsReset,\n value\n });\n }\n });\n}\n\n//# sourceMappingURL=index.js.map","/**\n * Parse cookies from the `headers` of request\n * @param req request object\n */ export function getCookieParser(headers) {\n return function parseCookie() {\n const { cookie } = headers;\n if (!cookie) {\n return {};\n }\n const { parse: parseCookieFn } = require('next/dist/compiled/cookie');\n return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie);\n };\n}\n\n//# sourceMappingURL=get-cookie-parser.js.map","/**\n * If set to `incremental`, only those leaf pages that export\n * `experimental_ppr = true` will have partial prerendering enabled. If any\n * page exports this value as `false` or does not export it at all will not\n * have partial prerendering enabled. If set to a boolean, the options for\n * `experimental_ppr` will be ignored.\n */\n\nexport type ExperimentalPPRConfig = boolean | 'incremental'\n\n/**\n * Returns true if partial prerendering is enabled for the application. It does\n * not tell you if a given route has PPR enabled, as that requires analysis of\n * the route's configuration.\n *\n * @see {@link checkIsRoutePPREnabled} - for checking if a specific route has PPR enabled.\n */\nexport function checkIsAppPPREnabled(\n config: ExperimentalPPRConfig | undefined\n): boolean {\n // If the config is undefined, partial prerendering is disabled.\n if (typeof config === 'undefined') return false\n\n // If the config is a boolean, use it directly.\n if (typeof config === 'boolean') return config\n\n // If the config is a string, it must be 'incremental' to enable partial\n // prerendering.\n if (config === 'incremental') return true\n\n return false\n}\n\n/**\n * Returns true if partial prerendering is supported for the current page with\n * the provided app configuration. If the application doesn't have partial\n * prerendering enabled, this function will always return false. If you want to\n * check if the application has partial prerendering enabled\n *\n * @see {@link checkIsAppPPREnabled} for checking if the application has PPR enabled.\n */\nexport function checkIsRoutePPREnabled(\n config: ExperimentalPPRConfig | undefined\n): boolean {\n // If the config is undefined, partial prerendering is disabled.\n if (typeof config === 'undefined') return false\n\n // If the config is a boolean, use it directly.\n if (typeof config === 'boolean') return config\n\n return false\n}\n","/**\n * Normalizes the raw RSC header value. Only the literal string \"1\" is treated\n * as a valid RSC request marker; malformed or repeated values are ignored.\n */\nexport function isRSCRequestHeader(\n value: string | string[] | null | undefined\n): boolean {\n return value === '1'\n}\n","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","export function getSegmentValue(segment) {\n return Array.isArray(segment) ? segment[1] : segment;\n}\nexport function isGroupSegment(segment) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')');\n}\nexport function isParallelRouteSegment(segment) {\n return segment.startsWith('@') && segment !== '@children';\n}\nexport function addSearchParamsIfPageSegment(segment, searchParams) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY);\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams);\n return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY;\n }\n return segment;\n}\nexport function computeSelectedLayoutSegment(segments, parallelRouteKey) {\n if (!segments || segments.length === 0) {\n return null;\n }\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1];\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment;\n}\n/** Get the canonical parameters from the current level to the leaf node. */ export function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) {\n let node;\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey];\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1];\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0];\n }\n if (!node) return segmentPath;\n const segment = node[0];\n let segmentValue = getSegmentValue(segment);\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath;\n }\n segmentPath.push(segmentValue);\n return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath);\n}\nexport const PAGE_SEGMENT_KEY = '__PAGE__';\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__';\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found';\n\n//# sourceMappingURL=segment.js.map","/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */ export function ensureLeadingSlash(path) {\n return path.startsWith('/') ? path : `/${path}`;\n}\n\n//# sourceMappingURL=ensure-leading-slash.js.map","import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash';\nimport { isGroupSegment } from '../../segment';\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */ export function normalizeAppPath(route) {\n return ensureLeadingSlash(route.split('/').reduce((pathname, segment, index, segments)=>{\n // Empty segments are ignored.\n if (!segment) {\n return pathname;\n }\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname;\n }\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname;\n }\n // The last segment (if it's a leaf) should be ignored.\n if ((segment === 'page' || segment === 'route') && index === segments.length - 1) {\n return pathname;\n }\n return `${pathname}/${segment}`;\n }, ''));\n}\n/**\n * Comparator for sorting app paths so that parallel slot paths (containing\n * `/@`) come before the children/root page path. This ensures the last item\n * is always the children page, which is what `renderPageComponent` reads via\n * `appPaths[appPaths.length - 1]`.\n *\n * Without this, route group prefixes like `(group)` (char code 0x28) sort\n * before `@` (0x40), causing the children page to sort first instead of last\n * and leading to a manifest mismatch / 404 in webpack dev mode.\n */ export function compareAppPaths(a, b) {\n const aHasSlot = a.includes('/@');\n const bHasSlot = b.includes('/@');\n if (aHasSlot && !bHasSlot) return -1;\n if (!aHasSlot && bHasSlot) return 1;\n return a.localeCompare(b);\n}\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */ export function normalizeRscURL(url) {\n return url.replace(/\\.rsc($|\\?)/, // $1 ensures `?` is preserved\n '$1');\n}\n\n//# sourceMappingURL=app-paths.js.map","import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n","import { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport type { DynamicParamTypes } from '../../app-router-types'\n\nexport type SegmentParam = {\n paramName: string\n paramType: DynamicParamTypes\n}\n\n/**\n * Parse dynamic route segment to type of parameter\n */\nexport function getSegmentParam(segment: string): SegmentParam | null {\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker) =>\n segment.startsWith(marker)\n )\n\n // if an interception marker is part of the path segment, we need to jump ahead\n // to the relevant portion for param parsing\n if (interceptionMarker) {\n segment = segment.slice(interceptionMarker.length)\n }\n\n if (segment.startsWith('[[...') && segment.endsWith(']]')) {\n return {\n // TODO-APP: Optional catchall does not currently work with parallel routes,\n // so for now aren't handling a potential interception marker.\n paramType: 'optional-catchall',\n paramName: segment.slice(5, -2),\n }\n }\n\n if (segment.startsWith('[...') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `catchall-intercepted-${interceptionMarker}`\n : 'catchall',\n paramName: segment.slice(4, -1),\n }\n }\n\n if (segment.startsWith('[') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `dynamic-intercepted-${interceptionMarker}`\n : 'dynamic',\n paramName: segment.slice(1, -1),\n }\n }\n\n return null\n}\n\nexport function isCatchAll(\n type: DynamicParamTypes\n): type is\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall' {\n return (\n type === 'catchall' ||\n type === 'catchall-intercepted-(..)(..)' ||\n type === 'catchall-intercepted-(.)' ||\n type === 'catchall-intercepted-(..)' ||\n type === 'catchall-intercepted-(...)' ||\n type === 'optional-catchall'\n )\n}\n\nexport function getParamProperties(paramType: DynamicParamTypes): {\n repeat: boolean\n optional: boolean\n} {\n let repeat = false\n let optional = false\n\n switch (paramType) {\n case 'catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n repeat = true\n break\n case 'optional-catchall':\n repeat = true\n optional = true\n break\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n break\n default:\n paramType satisfies never\n }\n\n return { repeat, optional }\n}\n","import { InvariantError } from '../../invariant-error';\nimport { getSegmentParam } from '../utils/get-segment-param';\nimport { INTERCEPTION_ROUTE_MARKERS } from '../utils/interception-routes';\nfunction normalizeEncodedDynamicPlaceholder(segment) {\n if (!/%5b|%5d/i.test(segment)) {\n return segment;\n }\n try {\n const decodedSegment = decodeURIComponent(segment);\n return getSegmentParam(decodedSegment) ? decodedSegment : segment;\n } catch {\n return segment;\n }\n}\nexport function parseAppRouteSegment(segment) {\n if (segment === '') {\n return null;\n }\n // Check if the segment starts with an interception marker\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m));\n const param = getSegmentParam(segment);\n if (param) {\n return {\n type: 'dynamic',\n name: segment,\n param,\n interceptionMarker\n };\n } else if (segment.startsWith('(') && segment.endsWith(')')) {\n return {\n type: 'route-group',\n name: segment,\n interceptionMarker\n };\n } else if (segment.startsWith('@')) {\n return {\n type: 'parallel-route',\n name: segment,\n interceptionMarker\n };\n } else {\n return {\n type: 'static',\n name: segment,\n interceptionMarker\n };\n }\n}\nexport function isNormalizedAppRoute(route) {\n return route.normalized;\n}\nexport function isInterceptionAppRoute(route) {\n return route.interceptionMarker !== undefined && route.interceptingRoute !== undefined && route.interceptedRoute !== undefined;\n}\nexport function parseAppRoute(pathname, normalized) {\n const pathnameSegments = pathname.split('/').filter(Boolean);\n // Build segments array with static and dynamic segments\n const segments = [];\n // Parse if this is an interception route.\n let interceptionMarker;\n let interceptingRoute;\n let interceptedRoute;\n for (const segment of pathnameSegments){\n const normalizedSegment = normalizeEncodedDynamicPlaceholder(segment);\n // Parse the segment into an AppSegment.\n const appSegment = parseAppRouteSegment(normalizedSegment);\n if (!appSegment) {\n continue;\n }\n if (normalized && (appSegment.type === 'route-group' || appSegment.type === 'parallel-route')) {\n throw Object.defineProperty(new InvariantError(`${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`), \"__NEXT_ERROR_CODE\", {\n value: \"E923\",\n enumerable: false,\n configurable: true\n });\n }\n segments.push(appSegment);\n if (appSegment.interceptionMarker) {\n const parts = pathname.split(appSegment.interceptionMarker);\n if (parts.length !== 2) {\n throw Object.defineProperty(new Error(`Invalid interception route: ${pathname}`), \"__NEXT_ERROR_CODE\", {\n value: \"E924\",\n enumerable: false,\n configurable: true\n });\n }\n interceptingRoute = normalized ? parseAppRoute(parts[0], true) : parseAppRoute(parts[0], false);\n interceptedRoute = normalized ? parseAppRoute(parts[1], true) : parseAppRoute(parts[1], false);\n interceptionMarker = appSegment.interceptionMarker;\n }\n }\n const dynamicSegments = segments.filter((segment)=>segment.type === 'dynamic');\n return {\n normalized,\n pathname,\n segments,\n dynamicSegments,\n interceptionMarker,\n interceptingRoute,\n interceptedRoute\n };\n}\n\n//# sourceMappingURL=app.js.map","import { DEFAULT_SEGMENT_KEY } from '../../segment';\nexport function parseLoaderTree(tree) {\n const [segment, parallelRoutes, modules, staticSiblings] = tree;\n const { layout, template } = modules;\n let { page } = modules;\n // a __DEFAULT__ segment means that this route didn't match any of the\n // segments in the route, so we should use the default page\n page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page;\n const conventionPath = layout?.[1] || template?.[1] || page?.[1];\n return {\n page,\n segment,\n modules,\n /* it can be either layout / template / page */ conventionPath,\n parallelRoutes,\n staticSiblings\n };\n}\n\n//# sourceMappingURL=parse-loader-tree.js.map","export function interceptionPrefixFromParamType(paramType) {\n switch(paramType){\n case 'catchall-intercepted-(..)(..)':\n case 'dynamic-intercepted-(..)(..)':\n return '(..)(..)';\n case 'catchall-intercepted-(.)':\n case 'dynamic-intercepted-(.)':\n return '(.)';\n case 'catchall-intercepted-(..)':\n case 'dynamic-intercepted-(..)':\n return '(..)';\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(...)':\n return '(...)';\n case 'catchall':\n case 'dynamic':\n case 'optional-catchall':\n default:\n return null;\n }\n}\n\n//# sourceMappingURL=interception-prefix-from-param-type.js.map","export const dynamicParamTypes = {\n catchall: 'c',\n 'catchall-intercepted-(..)(..)': 'ci(..)(..)',\n 'catchall-intercepted-(.)': 'ci(.)',\n 'catchall-intercepted-(..)': 'ci(..)',\n 'catchall-intercepted-(...)': 'ci(...)',\n 'optional-catchall': 'oc',\n dynamic: 'd',\n 'dynamic-intercepted-(..)(..)': 'di(..)(..)',\n 'dynamic-intercepted-(.)': 'di(.)',\n 'dynamic-intercepted-(..)': 'di(..)',\n 'dynamic-intercepted-(...)': 'di(...)'\n};\n\n//# sourceMappingURL=get-short-dynamic-param-type.js.map","import { InvariantError } from '../../invariant-error';\nimport { interceptionPrefixFromParamType } from './interception-prefix-from-param-type';\n/**\n * Extracts the param value from a path segment, handling interception markers\n * based on the expected param type.\n *\n * @param pathSegment - The path segment to extract the value from\n * @param params - The current params object for resolving dynamic param references\n * @param paramType - The expected param type which may include interception marker info\n * @returns The extracted param value\n */ function getParamValueFromSegment(pathSegment, params, paramType) {\n // If the segment is dynamic, resolve it from the params object\n if (pathSegment.type === 'dynamic') {\n return params[pathSegment.param.paramName];\n }\n // If the paramType indicates this is an intercepted param, strip the marker\n // that matches the interception marker in the param type\n const interceptionPrefix = interceptionPrefixFromParamType(paramType);\n if (interceptionPrefix === pathSegment.interceptionMarker) {\n return pathSegment.name.replace(pathSegment.interceptionMarker, '');\n }\n // For static segments, use the name\n return pathSegment.name;\n}\n/**\n * Resolves a route parameter value from the route segments at the given depth.\n * This shared logic is used by both extractPathnameRouteParamSegmentsFromLoaderTree\n * and resolveRouteParamsFromTree.\n *\n * @param paramName - The parameter name to resolve\n * @param paramType - The parameter type (dynamic, catchall, etc.)\n * @param depth - The current depth in the route tree\n * @param route - The normalized route containing segments\n * @param params - The current params object (used to resolve embedded param references)\n * @param options - Configuration options\n * @returns The resolved parameter value, or undefined if it cannot be resolved\n */ export function resolveParamValue(paramName, paramType, depth, route, params) {\n switch(paramType){\n case 'catchall':\n case 'optional-catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n // For catchall routes, derive from pathname using depth to determine\n // which segments to use\n const processedSegments = [];\n // Process segments to handle any embedded dynamic params\n for(let index = depth; index < route.segments.length; index++){\n const pathSegment = route.segments[index];\n if (pathSegment.type === 'static') {\n let value = pathSegment.name;\n // For intercepted catch-all params, strip the marker from the first segment\n const interceptionPrefix = interceptionPrefixFromParamType(paramType);\n if (interceptionPrefix && index === depth && interceptionPrefix === pathSegment.interceptionMarker) {\n // Strip the interception marker from the value\n value = value.replace(pathSegment.interceptionMarker, '');\n }\n processedSegments.push(value);\n } else {\n // If the segment is a param placeholder, check if we have its value\n if (!params.hasOwnProperty(pathSegment.param.paramName)) {\n // If the segment is an optional catchall, we can break out of the\n // loop because it's optional!\n if (pathSegment.param.paramType === 'optional-catchall') {\n break;\n }\n // Unknown param placeholder in pathname - can't derive full value\n return undefined;\n }\n // If the segment matches a param, use the param value\n // We don't encode values here as that's handled during retrieval.\n const paramValue = params[pathSegment.param.paramName];\n if (Array.isArray(paramValue)) {\n processedSegments.push(...paramValue);\n } else {\n processedSegments.push(paramValue);\n }\n }\n }\n if (processedSegments.length > 0) {\n return processedSegments;\n } else if (paramType === 'optional-catchall') {\n return undefined;\n } else {\n // We shouldn't be able to match a catchall segment without any path\n // segments if it's not an optional catchall\n throw Object.defineProperty(new InvariantError(`Unexpected empty path segments match for a route \"${route.pathname}\" with param \"${paramName}\" of type \"${paramType}\"`), \"__NEXT_ERROR_CODE\", {\n value: \"E931\",\n enumerable: false,\n configurable: true\n });\n }\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n // For regular dynamic parameters, take the segment at this depth\n if (depth < route.segments.length) {\n const pathSegment = route.segments[depth];\n // Check if the segment at this depth is a placeholder for an unknown param\n if (pathSegment.type === 'dynamic' && !params.hasOwnProperty(pathSegment.param.paramName)) {\n // The segment is a placeholder like [category] and we don't have the value\n return undefined;\n }\n // If the segment matches a param, use the param value from params object\n // Otherwise it's a static segment, just use it directly\n // We don't encode values here as that's handled during retrieval\n return getParamValueFromSegment(pathSegment, params, paramType);\n }\n return undefined;\n default:\n paramType;\n }\n}\n\n//# sourceMappingURL=resolve-param-value.js.map","import { parseAppRouteSegment } from '../../../shared/lib/router/routes/app';\nimport { parseLoaderTree } from '../../../shared/lib/router/utils/parse-loader-tree';\nimport { resolveParamValue } from '../../../shared/lib/router/utils/resolve-param-value';\n/**\n * Validates that the static segments in currentPath match the corresponding\n * segments in targetSegments. This ensures we only extract dynamic parameters\n * that are part of the target pathname structure.\n *\n * Segments are compared literally - interception markers like \"(.)photo\" are\n * part of the pathname and must match exactly.\n *\n * @example\n * // Matching paths\n * currentPath: ['blog', '(.)photo']\n * targetSegments: ['blog', '(.)photo', '[id]']\n * → Returns true (both static segments match exactly)\n *\n * @example\n * // Non-matching paths\n * currentPath: ['blog', '(.)photo']\n * targetSegments: ['blog', 'photo', '[id]']\n * → Returns false (segments don't match - marker is part of pathname)\n *\n * @param currentPath - The accumulated path segments from the loader tree\n * @param targetSegments - The target pathname split into segments\n * @returns true if all static segments match, false otherwise\n */ function validatePrefixMatch(currentPath, route) {\n for(let i = 0; i < currentPath.length; i++){\n const pathSegment = currentPath[i];\n const targetPathSegment = route.segments[i];\n // Type mismatch - one is static, one is dynamic\n if (pathSegment.type !== targetPathSegment.type) {\n return false;\n }\n // One has an interception marker, the other doesn't.\n if (pathSegment.interceptionMarker !== targetPathSegment.interceptionMarker) {\n return false;\n }\n // Both are static but names don't match\n if (pathSegment.type === 'static' && targetPathSegment.type === 'static' && pathSegment.name !== targetPathSegment.name) {\n return false;\n } else if (pathSegment.type === 'dynamic' && targetPathSegment.type === 'dynamic' && pathSegment.param.paramType !== targetPathSegment.param.paramType && pathSegment.param.paramName !== targetPathSegment.param.paramName) {\n return false;\n }\n }\n return true;\n}\n/**\n * Extracts pathname route param segments from a loader tree and resolves\n * parameter values from static segments in the route.\n *\n * @param loaderTree - The loader tree structure containing route hierarchy\n * @param route - The target route to match against\n * @returns Object containing pathname route param segments and resolved params\n */ export function extractPathnameRouteParamSegmentsFromLoaderTree(loaderTree, route) {\n const pathnameRouteParamSegments = [];\n const params = {};\n // BFS traversal with depth and path tracking\n const queue = [\n {\n tree: loaderTree,\n depth: 0,\n currentPath: []\n }\n ];\n while(queue.length > 0){\n const { tree, depth, currentPath } = queue.shift();\n const { segment, parallelRoutes } = parseLoaderTree(tree);\n // Build the path for the current node\n let updatedPath = currentPath;\n let nextDepth = depth;\n const appSegment = parseAppRouteSegment(segment);\n // Only add to path if it's a real segment that appears in the URL\n // Route groups and parallel markers don't contribute to URL pathname\n if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') {\n updatedPath = [\n ...currentPath,\n appSegment\n ];\n nextDepth = depth + 1;\n }\n // Check if this segment has a param and matches the target pathname at this depth\n if ((appSegment == null ? void 0 : appSegment.type) === 'dynamic') {\n const { paramName, paramType } = appSegment.param;\n // Check if this segment is at the correct depth in the target pathname\n // A segment matches if:\n // 1. There's a dynamic segment at this depth in the pathname\n // 2. The parameter names match (e.g., [id] matches [id], not [category])\n // 3. The static segments leading up to this point match (prefix check)\n if (depth < route.segments.length) {\n const targetSegment = route.segments[depth];\n // Match if the target pathname has a dynamic segment at this depth\n if (targetSegment.type === 'dynamic') {\n // Check that parameter names match exactly\n // This prevents [category] from matching against /[id]\n if (paramName !== targetSegment.param.paramName) {\n continue; // Different param names, skip this segment\n }\n // Validate that the path leading up to this dynamic segment matches\n // the target pathname. This prevents false matches like extracting\n // [slug] from \"/news/[slug]\" when the tree has \"/blog/[slug]\"\n if (validatePrefixMatch(currentPath, route)) {\n pathnameRouteParamSegments.push({\n name: segment,\n paramName,\n paramType\n });\n }\n }\n }\n // Resolve parameter value if it's not already known.\n if (!params.hasOwnProperty(paramName)) {\n const paramValue = resolveParamValue(paramName, paramType, depth, route, params);\n if (paramValue !== undefined) {\n params[paramName] = paramValue;\n }\n }\n }\n // Continue traversing all parallel routes to find matching segments\n for (const parallelRoute of Object.values(parallelRoutes)){\n queue.push({\n tree: parallelRoute,\n depth: nextDepth,\n currentPath: updatedPath\n });\n }\n }\n return {\n pathnameRouteParamSegments,\n params\n };\n}\n\n//# sourceMappingURL=extract-pathname-route-param-segments-from-loader-tree.js.map","import { resolveRouteParamsFromTree } from '../../build/static-paths/utils';\nimport { dynamicParamTypes } from '../app-render/get-short-dynamic-param-type';\nimport { parseAppRoute } from '../../shared/lib/router/routes/app';\nimport { extractPathnameRouteParamSegmentsFromLoaderTree } from '../../build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree';\nimport { getParamProperties } from '../../shared/lib/router/utils/get-segment-param';\n/**\n * Creates an opaque fallback route params object from the fallback route params.\n *\n * @param fallbackRouteParams the fallback route params\n * @returns the opaque fallback route params\n */ export function createOpaqueFallbackRouteParams(fallbackRouteParams) {\n // If there are no fallback route params, we can return early.\n if (fallbackRouteParams.length === 0) return null;\n // As we're creating unique keys for each of the dynamic route params, we only\n // need to generate a unique ID once per request because each of the keys will\n // be also be unique.\n const uniqueID = Math.random().toString(16).slice(2);\n const keys = new Map();\n // Generate a unique key for the fallback route param, if this key is found\n // in the static output, it represents a bug in cache components.\n for (const { paramName, paramType } of fallbackRouteParams){\n keys.set(paramName, [\n `%%drp:${paramName}:${uniqueID}%%`,\n dynamicParamTypes[paramType]\n ]);\n }\n return keys;\n}\nexport function buildDynamicSegmentPlaceholder(param) {\n const { repeat, optional } = getParamProperties(param.paramType);\n if (optional) {\n return `[[...${param.paramName}]]`;\n }\n if (repeat) {\n return `[...${param.paramName}]`;\n }\n return `[${param.paramName}]`;\n}\nexport function getPlaceholderFallbackRouteParams(params, fallbackRouteParams) {\n return fallbackRouteParams.filter((param)=>{\n const placeholder = buildDynamicSegmentPlaceholder(param);\n const value = params == null ? void 0 : params[param.paramName];\n return value === placeholder || Array.isArray(value) && value.length === 1 && value[0] === placeholder;\n });\n}\n/**\n * Gets the fallback route params for a given page. This is an expensive\n * operation because it requires parsing the loader tree to extract the fallback\n * route params.\n *\n * @param page the page\n * @param routeModule the route module\n * @returns the opaque fallback route params\n */ export function getFallbackRouteParams(page, routeModule) {\n const route = parseAppRoute(page, true);\n // Extract the pathname-contributing segments from the loader tree. This\n // mirrors the logic in buildAppStaticPaths where we determine which segments\n // actually contribute to the pathname.\n const { pathnameRouteParamSegments, params } = extractPathnameRouteParamSegmentsFromLoaderTree(routeModule.userland.loaderTree, route);\n // Create fallback route params for the pathname segments.\n const fallbackRouteParams = pathnameRouteParamSegments.map(({ paramName, paramType })=>({\n paramName,\n paramType\n }));\n // Resolve route params from the loader tree. This mutates the\n // fallbackRouteParams array to add any route params that are\n // unknown at request time.\n //\n // The page parameter contains placeholders like [slug], which helps\n // resolveRouteParamsFromTree determine which params are unknown.\n resolveRouteParamsFromTree(routeModule.userland.loaderTree, params, route, fallbackRouteParams // Will be mutated to add route params\n );\n // Convert the fallback route params to an opaque format that can be safely\n // used in the postponed state without exposing implementation details.\n return createOpaqueFallbackRouteParams(fallbackRouteParams);\n}\n\n//# sourceMappingURL=fallback-params.js.map","import { isAppPageRouteModule } from '../../server/route-modules/checks';\nimport { parseAppRouteSegment } from '../../shared/lib/router/routes/app';\nimport { parseLoaderTree } from '../../shared/lib/router/utils/parse-loader-tree';\nimport { extractPathnameRouteParamSegmentsFromLoaderTree } from './app/extract-pathname-route-param-segments-from-loader-tree';\nimport { resolveParamValue } from '../../shared/lib/router/utils/resolve-param-value';\n/**\n * Encodes a parameter value using the provided encoder.\n *\n * @param value - The value to encode.\n * @param encoder - The encoder to use.\n * @returns The encoded value.\n */ export function encodeParam(value, encoder) {\n let replaceValue;\n if (Array.isArray(value)) {\n replaceValue = value.map(encoder).join('/');\n } else {\n replaceValue = encoder(value);\n }\n return replaceValue;\n}\n/**\n * Normalizes a pathname to a consistent format.\n *\n * @param pathname - The pathname to normalize.\n * @returns The normalized pathname.\n */ export function normalizePathname(pathname) {\n return pathname.replace(/\\\\/g, '/').replace(/(?!^)\\/$/, '');\n}\n/**\n * Extracts segments that contribute to the pathname by traversing the loader tree\n * based on the route module type.\n *\n * @param routeModule - The app route module (page or route handler)\n * @param segments - Array of AppSegment objects collected from the route\n * @param page - The target pathname to match against, INCLUDING interception\n * markers (e.g., \"/blog/[slug]\", \"/(.)photo/[id]\")\n * @returns Array of segments with param info that contribute to the pathname\n */ export function extractPathnameRouteParamSegments(routeModule, segments, route) {\n // For AppPageRouteModule, use the loaderTree traversal approach\n if (isAppPageRouteModule(routeModule)) {\n const { pathnameRouteParamSegments } = extractPathnameRouteParamSegmentsFromLoaderTree(routeModule.userland.loaderTree, route);\n return pathnameRouteParamSegments;\n }\n return extractPathnameRouteParamSegmentsFromSegments(segments);\n}\nexport function extractPathnameRouteParamSegmentsFromSegments(segments) {\n // TODO: should we consider what values are already present in the page?\n // For AppRouteRouteModule, filter the segments array to get the route params\n // that contribute to the pathname.\n const result = [];\n for (const segment of segments){\n // Skip segments without param info.\n if (!segment.paramName || !segment.paramType) continue;\n // Collect all the route param keys that contribute to the pathname.\n result.push({\n name: segment.name,\n paramName: segment.paramName,\n paramType: segment.paramType\n });\n }\n return result;\n}\n/**\n * Resolves all route parameters from the loader tree. This function uses\n * tree-based traversal to correctly handle the hierarchical structure of routes\n * and accurately determine parameter values based on their depth in the tree.\n *\n * This processes both regular route parameters (from the main children route) and\n * parallel route parameters (from slots like @modal, @sidebar).\n *\n * Unlike interpolateParallelRouteParams (which has a complete URL at runtime),\n * this build-time function determines which route params are unknown.\n * The pathname may contain placeholders like [slug], making it incomplete.\n *\n * @param loaderTree - The loader tree structure containing route hierarchy\n * @param params - The current route parameters object (will be mutated)\n * @param route - The current route being processed\n * @param fallbackRouteParams - Array of fallback route parameters (will be mutated)\n */ export function resolveRouteParamsFromTree(loaderTree, params, route, fallbackRouteParams) {\n // Stack-based traversal with depth tracking\n const stack = [\n {\n tree: loaderTree,\n depth: 0\n }\n ];\n while(stack.length > 0){\n const { tree, depth } = stack.pop();\n const { segment, parallelRoutes } = parseLoaderTree(tree);\n const appSegment = parseAppRouteSegment(segment);\n // If this segment is a route parameter, then we should process it if it's\n // not already known and is not already marked as a fallback route param.\n if ((appSegment == null ? void 0 : appSegment.type) === 'dynamic' && !params.hasOwnProperty(appSegment.param.paramName) && !fallbackRouteParams.some((param)=>param.paramName === appSegment.param.paramName)) {\n const { paramName, paramType } = appSegment.param;\n const paramValue = resolveParamValue(paramName, paramType, depth, route, params);\n if (paramValue !== undefined) {\n params[paramName] = paramValue;\n } else if (paramType !== 'optional-catchall') {\n // If we couldn't resolve the param, mark it as a fallback\n fallbackRouteParams.push({\n paramName,\n paramType\n });\n }\n }\n // Calculate next depth - increment if this is not a route group and not empty\n let nextDepth = depth;\n if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') {\n nextDepth++;\n }\n // Add all parallel routes to the stack for processing.\n for (const parallelRoute of Object.values(parallelRoutes)){\n stack.push({\n tree: parallelRoute,\n depth: nextDepth\n });\n }\n }\n}\n\n//# sourceMappingURL=utils.js.map","/**\n * Given a path this function will find the pathname, query and hash and return\n * them. This is useful to parse full paths on the client side.\n * @param path A path to parse e.g. /foo/bar?id=1#hash\n */ export function parsePath(path) {\n const hashIndex = path.indexOf('#');\n const queryIndex = path.indexOf('?');\n const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex);\n if (hasQuery || hashIndex > -1) {\n return {\n pathname: path.substring(0, hasQuery ? queryIndex : hashIndex),\n query: hasQuery ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined) : '',\n hash: hashIndex > -1 ? path.slice(hashIndex) : ''\n };\n }\n return {\n pathname: path,\n query: '',\n hash: ''\n };\n}\n\n//# sourceMappingURL=parse-path.js.map","import { parsePath } from './parse-path';\n/**\n * Checks if a given path starts with a given prefix. It ensures it matches\n * exactly without containing extra chars. e.g. prefix /docs should replace\n * for /docs, /docs/, /docs/a but not /docsss\n * @param path The path to check.\n * @param prefix The prefix to check against.\n */ export function pathHasPrefix(path, prefix) {\n if (typeof path !== 'string') {\n return false;\n }\n const { pathname } = parsePath(path);\n return pathname === prefix || pathname.startsWith(prefix + '/');\n}\n\n//# sourceMappingURL=path-has-prefix.js.map","import { pathHasPrefix } from './path-has-prefix';\n/**\n * Given a path and a prefix it will remove the prefix when it exists in the\n * given path. It ensures it matches exactly without containing extra chars\n * and if the prefix is not there it will be noop.\n *\n * @param path The path to remove the prefix from.\n * @param prefix The prefix to be removed.\n */ export function removePathPrefix(path, prefix) {\n // If the path doesn't start with the prefix we can return it as is. This\n // protects us from situations where the prefix is a substring of the path\n // prefix such as:\n //\n // For prefix: /blog\n //\n // /blog -> true\n // /blog/ -> true\n // /blog/1 -> true\n // /blogging -> false\n // /blogging/ -> false\n // /blogging/1 -> false\n if (!pathHasPrefix(path, prefix)) {\n return path;\n }\n // Remove the prefix from the path via slicing.\n const withoutPrefix = path.slice(prefix.length);\n // If the path without the prefix starts with a `/` we can return it as is.\n if (withoutPrefix.startsWith('/')) {\n return withoutPrefix;\n }\n // If the path without the prefix doesn't start with a `/` we need to add it\n // back to the path to make sure it's a valid path.\n return `/${withoutPrefix}`;\n}\n\n//# sourceMappingURL=remove-path-prefix.js.map","import type { ActionManifest } from '../../build/webpack/plugins/flight-client-entry-plugin'\nimport type { ClientReferenceManifest } from '../../build/webpack/plugins/flight-manifest-plugin'\nimport type { DeepReadonly } from '../../shared/lib/deep-readonly'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { pathHasPrefix } from '../../shared/lib/router/utils/path-has-prefix'\nimport { removePathPrefix } from '../../shared/lib/router/utils/remove-path-prefix'\nimport { workAsyncStorage } from './work-async-storage.external'\n\nexport interface ServerModuleMap {\n readonly [name: string]: {\n readonly id: string | number\n readonly name: string\n readonly chunks: Readonly> // currently not used\n readonly async?: boolean\n }\n}\n\n// This is a global singleton that is, among other things, also used to\n// encode/decode bound args of server function closures. This can't be using a\n// AsyncLocalStorage as it might happen at the module level.\nconst MANIFESTS_SINGLETON = Symbol.for('next.server.manifests')\n\ninterface ManifestsSingleton {\n readonly clientReferenceManifestsPerRoute: Map<\n string,\n DeepReadonly\n >\n readonly proxiedClientReferenceManifest: DeepReadonly\n serverActionsManifest: DeepReadonly\n serverModuleMap: ServerModuleMap\n}\n\ntype GlobalThisWithManifests = typeof globalThis & {\n [MANIFESTS_SINGLETON]?: ManifestsSingleton\n}\n\ntype ClientReferenceManifestMappingProp =\n | 'clientModules'\n | 'rscModuleMapping'\n | 'edgeRscModuleMapping'\n | 'ssrModuleMapping'\n | 'edgeSSRModuleMapping'\n\nconst globalThisWithManifests = globalThis as GlobalThisWithManifests\n\nfunction createProxiedClientReferenceManifest(\n clientReferenceManifestsPerRoute: Map<\n string,\n DeepReadonly\n >\n): DeepReadonly {\n const createMappingProxy = (prop: ClientReferenceManifestMappingProp) => {\n return new Proxy(\n {},\n {\n get(_, id: string) {\n const workStore = workAsyncStorage.getStore()\n\n if (workStore) {\n const currentManifest = clientReferenceManifestsPerRoute.get(\n workStore.route\n )\n\n if (currentManifest?.[prop][id]) {\n return currentManifest[prop][id]\n }\n\n // In development, we also check all other manifests to see if the\n // module exists there. This is to support a scenario where React's\n // I/O tracking (dev-only) creates a connection from one page to\n // another through an emitted async I/O node that references client\n // components from the other page, e.g. in owner props.\n // TODO: Maybe we need to add a `debugBundlerConfig` option to React\n // to avoid this workaround. The current workaround has the\n // disadvantage that one might accidentally or intentionally share\n // client references across pages (e.g. by storing them in a global\n // variable), which would then only be caught in production.\n if (process.env.NODE_ENV !== 'production') {\n for (const [\n route,\n manifest,\n ] of clientReferenceManifestsPerRoute) {\n if (route === workStore.route) {\n continue\n }\n\n const entry = manifest[prop][id]\n\n if (entry !== undefined) {\n return entry\n }\n }\n }\n } else {\n // If there's no work store defined, we can assume that a client\n // reference manifest is needed during module evaluation, e.g. to\n // create a server function using a higher-order function. This\n // might also use client components which need to be serialized by\n // Flight, and therefore client references need to be resolvable. In\n // that case we search all page manifests to find the module.\n for (const manifest of clientReferenceManifestsPerRoute.values()) {\n const entry = manifest[prop][id]\n\n if (entry !== undefined) {\n return entry\n }\n }\n }\n\n return undefined\n },\n }\n )\n }\n\n const mappingProxies = new Map<\n ClientReferenceManifestMappingProp,\n ReturnType\n >()\n\n return new Proxy(\n {},\n {\n get(_, prop) {\n const workStore = workAsyncStorage.getStore()\n\n switch (prop) {\n case 'moduleLoading':\n case 'entryCSSFiles':\n case 'entryJSFiles': {\n if (!workStore) {\n throw new InvariantError(\n `Cannot access \"${prop}\" without a work store.`\n )\n }\n\n const currentManifest = clientReferenceManifestsPerRoute.get(\n workStore.route\n )\n\n if (!currentManifest) {\n throw new InvariantError(\n `The client reference manifest for route \"${workStore.route}\" does not exist.`\n )\n }\n\n return currentManifest[prop]\n }\n case 'clientModules':\n case 'rscModuleMapping':\n case 'edgeRscModuleMapping':\n case 'ssrModuleMapping':\n case 'edgeSSRModuleMapping': {\n let proxy = mappingProxies.get(prop)\n\n if (!proxy) {\n proxy = createMappingProxy(prop)\n mappingProxies.set(prop, proxy)\n }\n\n return proxy\n }\n default: {\n throw new InvariantError(\n `This is a proxied client reference manifest. The property \"${String(prop)}\" is not handled.`\n )\n }\n }\n },\n }\n ) as DeepReadonly\n}\n\n/**\n * This function creates a Flight-acceptable server module map proxy from our\n * Server Reference Manifest similar to our client module map. This is because\n * our manifest contains a lot of internal Next.js data that are relevant to the\n * runtime, workers, etc. that React doesn't need to know.\n */\nfunction createServerModuleMap(): ServerModuleMap {\n return new Proxy(\n {},\n {\n get: (_, id: string) => {\n const workers =\n getServerActionsManifest()[\n process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node'\n ]?.[id]?.workers\n\n if (!workers) {\n return undefined\n }\n\n const workStore = workAsyncStorage.getStore()\n\n let workerEntry:\n | { moduleId: string | number; async: boolean }\n | undefined\n\n if (workStore) {\n workerEntry = workers[normalizeWorkerPageName(workStore.page)]\n } else {\n // If there's no work store defined, we can assume that a server\n // module map is needed during module evaluation, e.g. to create a\n // server action using a higher-order function. Therefore it should be\n // safe to return any entry from the manifest that matches the action\n // ID. They all refer to the same module ID, which must also exist in\n // the current page bundle. TODO: This is currently not guaranteed in\n // Turbopack, and needs to be fixed.\n workerEntry = Object.values(workers).at(0)\n }\n\n if (!workerEntry) {\n return undefined\n }\n\n const { moduleId, async } = workerEntry\n\n return { id: moduleId, name: id, chunks: [], async }\n },\n }\n )\n}\n\n/**\n * The flight entry loader keys actions by bundlePath. bundlePath corresponds\n * with the relative path (including 'app') to the page entrypoint.\n */\nfunction normalizeWorkerPageName(pageName: string) {\n if (pathHasPrefix(pageName, 'app')) {\n return pageName\n }\n\n return 'app' + pageName\n}\n\n/**\n * Converts a bundlePath (relative path to the entrypoint) to a routable page\n * name.\n */\nfunction denormalizeWorkerPageName(bundlePath: string) {\n return normalizeAppPath(removePathPrefix(bundlePath, 'app'))\n}\n\n/**\n * Checks if the requested action has a worker for the current page.\n * If not, it returns the first worker that has a handler for the action.\n */\nexport function selectWorkerForForwarding(\n actionId: string,\n pageName: string\n): string | undefined {\n const serverActionsManifest = getServerActionsManifest()\n const workers =\n serverActionsManifest[\n process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node'\n ][actionId]?.workers\n\n // There are no workers to handle this action, nothing to forward to.\n if (!workers) {\n return\n }\n\n // If there is an entry for the current page, we don't need to forward.\n if (workers[normalizeWorkerPageName(pageName)]) {\n return\n }\n\n // Otherwise, grab the first worker that has a handler for this action id.\n return denormalizeWorkerPageName(Object.keys(workers)[0])\n}\n\nexport function setManifestsSingleton({\n page,\n clientReferenceManifest,\n serverActionsManifest: rawServerActionsManifest,\n}: {\n page: string\n clientReferenceManifest: DeepReadonly\n serverActionsManifest: DeepReadonly\n}) {\n const existingSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]\n\n const serverActionsManifest: DeepReadonly = {\n encryptionKey: rawServerActionsManifest.encryptionKey,\n // Use null-prototypes for the action objects to prevent prototype pollution\n // from affecting action ID lookups.\n node: Object.assign(Object.create(null), rawServerActionsManifest.node),\n edge: Object.assign(Object.create(null), rawServerActionsManifest.edge),\n }\n\n if (existingSingleton) {\n existingSingleton.clientReferenceManifestsPerRoute.set(\n normalizeAppPath(page),\n clientReferenceManifest\n )\n\n existingSingleton.serverActionsManifest = serverActionsManifest\n } else {\n const clientReferenceManifestsPerRoute = new Map<\n string,\n DeepReadonly\n >([[normalizeAppPath(page), clientReferenceManifest]])\n\n const proxiedClientReferenceManifest = createProxiedClientReferenceManifest(\n clientReferenceManifestsPerRoute\n )\n\n globalThisWithManifests[MANIFESTS_SINGLETON] = {\n clientReferenceManifestsPerRoute,\n proxiedClientReferenceManifest,\n serverActionsManifest,\n serverModuleMap: createServerModuleMap(),\n }\n }\n}\n\nfunction getManifestsSingleton(): ManifestsSingleton {\n const manifestSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]\n\n if (!manifestSingleton) {\n throw new InvariantError('The manifests singleton was not initialized.')\n }\n\n return manifestSingleton\n}\n\nexport function getClientReferenceManifest(): DeepReadonly {\n return getManifestsSingleton().proxiedClientReferenceManifest\n}\n\nexport function getServerActionsManifest(): DeepReadonly {\n return getManifestsSingleton().serverActionsManifest\n}\n\nexport function getServerModuleMap() {\n return getManifestsSingleton().serverModuleMap\n}\n","import { HTML_LIMITED_BOT_UA_RE } from './html-bots';\n// Bot crawler that will spin up a headless browser and execute JS.\n// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers.\n// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers\n// This regex specifically matches \"Googlebot\" but NOT \"Mediapartners-Google\", \"AdsBot-Google\", etc.\nconst HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i;\nexport const HTML_LIMITED_BOT_UA_RE_STRING = HTML_LIMITED_BOT_UA_RE.source;\nexport { HTML_LIMITED_BOT_UA_RE };\nfunction isDomBotUA(userAgent) {\n return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent);\n}\nfunction isHtmlLimitedBotUA(userAgent) {\n return HTML_LIMITED_BOT_UA_RE.test(userAgent);\n}\nexport function isBot(userAgent) {\n return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent);\n}\nexport function getBotType(userAgent) {\n if (isDomBotUA(userAgent)) {\n return 'dom';\n }\n if (isHtmlLimitedBotUA(userAgent)) {\n return 'html';\n }\n return undefined;\n}\n\n//# sourceMappingURL=is-bot.js.map","// This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent.\n// Note: The pattern [\\w-]+-Google captures all Google crawlers with \"-Google\" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google)\n// as well as crawlers starting with \"Google-\" (e.g., Google-PageRenderer, Google-InspectionTool)\nexport const HTML_LIMITED_BOT_UA_RE = /[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i;\n\n//# sourceMappingURL=html-bots.js.map","import {\n getBotType,\n HTML_LIMITED_BOT_UA_RE_STRING,\n} from '../../shared/lib/router/utils/is-bot'\nimport type { BaseNextRequest } from '../base-http'\n\nexport function shouldServeStreamingMetadata(\n userAgent: string,\n htmlLimitedBots: string | undefined\n): boolean {\n const blockingMetadataUARegex = new RegExp(\n htmlLimitedBots || HTML_LIMITED_BOT_UA_RE_STRING,\n 'i'\n )\n // Only block metadata for HTML-limited bots\n if (userAgent && blockingMetadataUARegex.test(userAgent)) {\n return false\n }\n return true\n}\n\n// When the request UA is a html-limited bot, we should do a dynamic render.\n// In this case, postpone state is not sent.\nexport function isHtmlBotRequest(req: {\n headers: BaseNextRequest['headers']\n}): boolean {\n const ua = req.headers['user-agent'] || ''\n const botType = getBotType(ua)\n\n return botType === 'html'\n}\n","import type { IncomingMessage } from 'http'\nimport type { BaseNextRequest } from '../base-http'\nimport type { NextRequest } from '../web/exports'\nimport { ACTION_HEADER } from '../../client/components/app-router-headers'\n\nexport function getServerActionRequestMetadata(\n req: IncomingMessage | BaseNextRequest | NextRequest\n): {\n actionId: string | null\n isURLEncodedAction: boolean\n isMultipartAction: boolean\n isFetchAction: boolean\n isPossibleServerAction: boolean\n} {\n let actionId: string | null\n let contentType: string | null\n\n if (req.headers instanceof Headers) {\n actionId = req.headers.get(ACTION_HEADER) ?? null\n contentType = req.headers.get('content-type')\n } else {\n actionId = (req.headers[ACTION_HEADER] as string) ?? null\n contentType = req.headers['content-type'] ?? null\n }\n\n // We don't actually support URL encoded actions, and the action handler will bail out if it sees one.\n // But we still want it to flow through to the action handler, to prevent changes in behavior when a regular\n // page component tries to handle a POST.\n const isURLEncodedAction = Boolean(\n req.method === 'POST' && contentType === 'application/x-www-form-urlencoded'\n )\n const isMultipartAction = Boolean(\n req.method === 'POST' && contentType?.startsWith('multipart/form-data')\n )\n const isFetchAction = Boolean(\n actionId !== undefined &&\n typeof actionId === 'string' &&\n req.method === 'POST'\n )\n\n const isPossibleServerAction = Boolean(\n isFetchAction || isURLEncodedAction || isMultipartAction\n )\n\n return {\n actionId,\n isURLEncodedAction,\n isMultipartAction,\n isFetchAction,\n isPossibleServerAction,\n }\n}\n\nexport function getIsPossibleServerAction(\n req: IncomingMessage | BaseNextRequest | NextRequest\n): boolean {\n return getServerActionRequestMetadata(req).isPossibleServerAction\n}\n","export type ScheduledFn = () => T | PromiseLike\nexport type SchedulerFn = (cb: ScheduledFn) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n","import type { OutgoingHttpHeaders } from 'http'\nimport type RenderResult from '../render-result'\nimport type { CacheControl, Revalidate } from '../lib/cache-control'\nimport type { RouteKind } from '../route-kind'\n\nexport interface ResponseCacheBase {\n get(\n key: string | null,\n responseGenerator: ResponseGenerator,\n context: {\n isOnDemandRevalidate?: boolean\n isPrefetch?: boolean\n incrementalCache: IncrementalCache\n /**\n * This is a hint to the cache to help it determine what kind of route\n * this is so it knows where to look up the cache entry from. If not\n * provided it will test the filesystem to check.\n */\n routeKind: RouteKind\n\n /**\n * True if this is a fallback request.\n */\n isFallback?: boolean\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n }\n ): Promise\n}\n\n// The server components HMR cache might store other data as well in the future,\n// at which point this should be refactored to a discriminated union type.\nexport interface ServerComponentsHmrCache {\n get(key: string): CachedFetchData | undefined\n set(key: string, data: CachedFetchData): void\n}\n\nexport type CachedFetchData = {\n headers: Record\n body: string\n url: string\n status?: number\n}\n\nexport const enum CachedRouteKind {\n APP_PAGE = 'APP_PAGE',\n APP_ROUTE = 'APP_ROUTE',\n PAGES = 'PAGES',\n FETCH = 'FETCH',\n REDIRECT = 'REDIRECT',\n IMAGE = 'IMAGE',\n}\n\nexport interface CachedFetchValue {\n kind: CachedRouteKind.FETCH\n data: CachedFetchData\n // tags are only present with file-system-cache\n // fetch cache stores tags outside of cache entry\n tags?: string[]\n revalidate: number\n}\n\nexport interface CachedRedirectValue {\n kind: CachedRouteKind.REDIRECT\n props: Object\n}\n\nexport interface CachedAppPageValue {\n kind: CachedRouteKind.APP_PAGE\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n html: RenderResult\n rscData: Buffer | undefined\n status: number | undefined\n postponed: string | undefined\n headers: OutgoingHttpHeaders | undefined\n segmentData: Map | undefined\n}\n\nexport interface CachedPageValue {\n kind: CachedRouteKind.PAGES\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n html: RenderResult\n pageData: Object\n status: number | undefined\n headers: OutgoingHttpHeaders | undefined\n}\n\nexport interface CachedRouteValue {\n kind: CachedRouteKind.APP_ROUTE\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n body: Buffer\n status: number\n headers: OutgoingHttpHeaders\n}\n\nexport interface CachedImageValue {\n kind: CachedRouteKind.IMAGE\n etag: string\n upstreamEtag: string\n buffer: Buffer\n extension: string\n revalidate?: number\n isMiss?: boolean\n isStale?: boolean\n}\n\nexport interface IncrementalCachedAppPageValue {\n kind: CachedRouteKind.APP_PAGE\n // this needs to be a string since the cache expects to store\n // the string value\n html: string\n rscData: Buffer | undefined\n headers: OutgoingHttpHeaders | undefined\n postponed: string | undefined\n status: number | undefined\n segmentData: Map | undefined\n}\n\nexport interface IncrementalCachedPageValue {\n kind: CachedRouteKind.PAGES\n // this needs to be a string since the cache expects to store\n // the string value\n html: string\n pageData: Object\n headers: OutgoingHttpHeaders | undefined\n status: number | undefined\n}\n\nexport interface IncrementalResponseCacheEntry {\n cacheControl?: CacheControl\n /**\n * timestamp in milliseconds to revalidate after\n */\n revalidateAfter?: Revalidate\n /**\n * `-1` here dictates a blocking revalidate should be used\n */\n isStale?: boolean | -1\n isMiss?: boolean\n isFallback?: boolean\n value: Exclude | null\n}\n\nexport interface IncrementalFetchCacheEntry {\n /**\n * `-1` here dictates a blocking revalidate should be used\n */\n isStale?: boolean | -1\n value: CachedFetchValue\n}\n\nexport type IncrementalCacheEntry =\n | IncrementalResponseCacheEntry\n | IncrementalFetchCacheEntry\n\nexport type IncrementalCacheValue =\n | CachedRedirectValue\n | IncrementalCachedPageValue\n | IncrementalCachedAppPageValue\n | CachedImageValue\n | CachedFetchValue\n | CachedRouteValue\n\nexport type ResponseCacheValue =\n | CachedRedirectValue\n | CachedPageValue\n | CachedAppPageValue\n | CachedImageValue\n | CachedRouteValue\n\nexport type ResponseCacheEntry = {\n cacheControl?: CacheControl\n value: ResponseCacheValue | null\n isStale?: boolean | -1\n isMiss?: boolean\n isFallback?: boolean\n}\n\n/**\n * @param hasResolved whether the responseGenerator has resolved it's promise\n * @param previousCacheEntry the previous cache entry if it exists or the current\n */\nexport type ResponseGenerator = (state: {\n hasResolved: boolean\n previousCacheEntry?: IncrementalResponseCacheEntry | null\n isRevalidating?: boolean\n span?: any\n\n /**\n * When true, this indicates that the response generator is being called in a\n * context where the response must be generated statically.\n *\n * CRITICAL: This should only currently be used when revalidating due to a\n * dynamic RSC request.\n */\n forceStaticRender?: boolean\n}) => Promise\n\nexport const enum IncrementalCacheKind {\n APP_PAGE = 'APP_PAGE',\n APP_ROUTE = 'APP_ROUTE',\n PAGES = 'PAGES',\n FETCH = 'FETCH',\n IMAGE = 'IMAGE',\n}\n\nexport interface GetIncrementalFetchCacheContext {\n kind: IncrementalCacheKind.FETCH\n revalidate?: Revalidate\n fetchUrl?: string\n fetchIdx?: number\n tags?: string[]\n softTags?: string[]\n}\n\nexport interface GetIncrementalResponseCacheContext {\n kind: Exclude\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n\n /**\n * True if this is a fallback request.\n */\n isFallback: boolean\n}\n\nexport interface SetIncrementalFetchCacheContext {\n fetchCache: true\n fetchUrl?: string\n fetchIdx?: number\n tags?: string[]\n isImplicitBuildTimeCache?: boolean\n}\n\nexport interface SetIncrementalResponseCacheContext {\n fetchCache?: false\n cacheControl?: CacheControl\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n\n /**\n * True if this is a fallback request.\n */\n isFallback?: boolean\n}\n\nexport interface IncrementalResponseCache {\n get(\n cacheKey: string,\n ctx: GetIncrementalResponseCacheContext\n ): Promise\n set(\n key: string,\n data: Exclude | null,\n ctx: SetIncrementalResponseCacheContext\n ): Promise\n}\n\nexport interface IncrementalCache extends IncrementalResponseCache {\n get(\n cacheKey: string,\n ctx: GetIncrementalFetchCacheContext\n ): Promise\n get(\n cacheKey: string,\n ctx: GetIncrementalResponseCacheContext\n ): Promise\n set(\n key: string,\n data: CachedFetchValue | null,\n ctx: SetIncrementalFetchCacheContext\n ): Promise\n set(\n key: string,\n data: Exclude | null,\n ctx: SetIncrementalResponseCacheContext\n ): Promise\n revalidateTag(\n tags: string | string[],\n durations?: { expire?: number }\n ): Promise\n}\n","export const ENCODED_TAGS = {\n // opening tags do not have the closing `>` since they can contain other attributes such as ``\n OPENING: {\n // \n HEAD: new Uint8Array([60, 47, 104, 101, 97, 100, 62]),\n // \n BODY: new Uint8Array([60, 47, 98, 111, 100, 121, 62]),\n // \n HTML: new Uint8Array([60, 47, 104, 116, 109, 108, 62]),\n // \n BODY_AND_HTML: new Uint8Array([\n 60, 47, 98, 111, 100, 121, 62, 60, 47, 104, 116, 109, 108, 62,\n ]),\n },\n META: {\n // Only the match the prefix cause the suffix can be different wether it's xml compatible or not \">\" or \"/>\"\n // nextStream.pipeTo(writable, {\n preventClose: true\n }));\n }\n // We can omit the length check because we halted before the last stream and there\n // is at least two streams so the lastStream here will always be defined\n const lastStream = streams[i];\n promise = promise.then(()=>lastStream.pipeTo(writable));\n // Catch any errors from the streams and ignore them, they will be handled\n // by whatever is consuming the readable stream.\n promise.catch(voidCatch);\n return readable;\n}\nexport function streamFromString(str) {\n return new ReadableStream({\n start (controller) {\n controller.enqueue(encoder.encode(str));\n controller.close();\n }\n });\n}\nexport function streamFromBuffer(chunk) {\n return new ReadableStream({\n start (controller) {\n controller.enqueue(chunk);\n controller.close();\n }\n });\n}\nasync function streamToChunks(stream) {\n const reader = stream.getReader();\n const chunks = [];\n while(true){\n const { done, value } = await reader.read();\n if (done) {\n break;\n }\n chunks.push(value);\n }\n return chunks;\n}\nfunction concatUint8Arrays(chunks) {\n const totalLength = chunks.reduce((sum, chunk)=>sum + chunk.length, 0);\n const result = new Uint8Array(totalLength);\n let offset = 0;\n for (const chunk of chunks){\n result.set(chunk, offset);\n offset += chunk.length;\n }\n return result;\n}\nexport async function streamToUint8Array(stream) {\n return concatUint8Arrays(await streamToChunks(stream));\n}\nexport async function streamToBuffer(stream) {\n return Buffer.concat(await streamToChunks(stream));\n}\nexport async function streamToString(stream, signal) {\n const decoder = new TextDecoder('utf-8', {\n fatal: true\n });\n let string = '';\n for await (const chunk of stream){\n if (signal == null ? void 0 : signal.aborted) {\n return string;\n }\n string += decoder.decode(chunk, {\n stream: true\n });\n }\n string += decoder.decode();\n return string;\n}\nexport function createBufferedTransformStream(options = {}) {\n const { maxBufferByteLength = Infinity } = options;\n let bufferedChunks = [];\n let bufferByteLength = 0;\n let pending;\n const flush = (controller)=>{\n try {\n if (bufferedChunks.length === 0) {\n return;\n }\n const chunk = new Uint8Array(bufferByteLength);\n let copiedBytes = 0;\n for(let i = 0; i < bufferedChunks.length; i++){\n const bufferedChunk = bufferedChunks[i];\n chunk.set(bufferedChunk, copiedBytes);\n copiedBytes += bufferedChunk.byteLength;\n }\n // We just wrote all the buffered chunks so we need to reset the bufferedChunks array\n // and our bufferByteLength to prepare for the next round of buffered chunks\n bufferedChunks.length = 0;\n bufferByteLength = 0;\n controller.enqueue(chunk);\n } catch {\n // If an error occurs while enqueuing, it can't be due to this\n // transformer. It's most likely caused by the controller having been\n // errored (for example, if the stream was cancelled).\n }\n };\n const scheduleFlush = (controller)=>{\n if (pending) {\n return;\n }\n const detached = new DetachedPromise();\n pending = detached;\n scheduleImmediate(()=>{\n try {\n flush(controller);\n } finally{\n pending = undefined;\n detached.resolve();\n }\n });\n };\n return new TransformStream({\n transform (chunk, controller) {\n // Combine the previous buffer with the new chunk.\n bufferedChunks.push(chunk);\n bufferByteLength += chunk.byteLength;\n if (bufferByteLength >= maxBufferByteLength) {\n flush(controller);\n } else {\n scheduleFlush(controller);\n }\n },\n flush () {\n return pending == null ? void 0 : pending.promise;\n }\n });\n}\n// TODO this is currently unused but once we add proper output:export support, it needs to be\n// revisited. See https://github.com/vercel/next.js/pull/89478 for more details\n//\n// function createPrefetchCommentStream(\n// isBuildTimePrerendering: boolean,\n// buildId: string\n// ): TransformStream {\n// // Insert an extra comment at the beginning of the HTML document. This must\n// // come after the DOCTYPE, which is inserted by React.\n// //\n// // The first chunk sent by React will contain the doctype. After that, we can\n// // pass through the rest of the chunks as-is.\n// let didTransformFirstChunk = false\n// return new TransformStream({\n// transform(chunk, controller) {\n// if (isBuildTimePrerendering && !didTransformFirstChunk) {\n// didTransformFirstChunk = true\n// const decoder = new TextDecoder('utf-8', { fatal: true })\n// const chunkStr = decoder.decode(chunk, {\n// stream: true,\n// })\n// const updatedChunkStr = insertBuildIdComment(chunkStr, buildId)\n// controller.enqueue(encoder.encode(updatedChunkStr))\n// return\n// }\n// controller.enqueue(chunk)\n// },\n// })\n// }\nexport function renderToInitialFizzStream({ ReactDOMServer, element, streamOptions }) {\n return getTracer().trace(AppRenderSpan.renderToReadableStream, async ()=>ReactDOMServer.renderToReadableStream(element, streamOptions));\n}\nfunction createMetadataTransformStream(insert) {\n let chunkIndex = -1;\n let isMarkRemoved = false;\n return new TransformStream({\n async transform (chunk, controller) {\n let iconMarkIndex = -1;\n let closedHeadIndex = -1;\n chunkIndex++;\n if (isMarkRemoved) {\n controller.enqueue(chunk);\n return;\n }\n let iconMarkLength = 0;\n // Only search for the closed head tag once\n if (iconMarkIndex === -1) {\n iconMarkIndex = indexOfUint8Array(chunk, ENCODED_TAGS.META.ICON_MARK);\n if (iconMarkIndex === -1) {\n controller.enqueue(chunk);\n return;\n } else {\n // When we found the `` or `>`, checking the next char to ensure we cover both cases.\n iconMarkLength = ENCODED_TAGS.META.ICON_MARK.length;\n // Check if next char is /, this is for xml mode.\n if (chunk[iconMarkIndex + iconMarkLength] === 47) {\n iconMarkLength += 2;\n } else {\n // The last char is `>`\n iconMarkLength++;\n }\n }\n }\n // Check if icon mark is inside tag in the first chunk.\n if (chunkIndex === 0) {\n closedHeadIndex = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD);\n if (iconMarkIndex !== -1) {\n // The mark icon is located in the 1st chunk before the head tag.\n // We do not need to insert the script tag in this case because it's in the head.\n // Just remove the icon mark from the chunk.\n if (iconMarkIndex < closedHeadIndex) {\n const replaced = new Uint8Array(chunk.length - iconMarkLength);\n // Remove the icon mark from the chunk.\n replaced.set(chunk.subarray(0, iconMarkIndex));\n replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex);\n chunk = replaced;\n } else {\n // The icon mark is after the head tag, replace and insert the script tag at that position.\n const insertion = await insert();\n const encodedInsertion = encoder.encode(insertion);\n const insertionLength = encodedInsertion.length;\n const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength);\n replaced.set(chunk.subarray(0, iconMarkIndex));\n replaced.set(encodedInsertion, iconMarkIndex);\n replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength);\n chunk = replaced;\n }\n isMarkRemoved = true;\n }\n // If there's no icon mark located, it will be handled later when if present in the following chunks.\n } else {\n // When it's appeared in the following chunks, we'll need to\n // remove the mark and then insert the script tag at that position.\n const insertion = await insert();\n const encodedInsertion = encoder.encode(insertion);\n const insertionLength = encodedInsertion.length;\n // Replace the icon mark with the hoist script or empty string.\n const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength);\n // Set the first part of the chunk, before the icon mark.\n replaced.set(chunk.subarray(0, iconMarkIndex));\n // Set the insertion after the icon mark.\n replaced.set(encodedInsertion, iconMarkIndex);\n // Set the rest of the chunk after the icon mark.\n replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength);\n chunk = replaced;\n isMarkRemoved = true;\n }\n controller.enqueue(chunk);\n }\n });\n}\nfunction createHeadInsertionTransformStream(insert) {\n let inserted = false;\n // We need to track if this transform saw any bytes because if it didn't\n // we won't want to insert any server HTML at all\n let hasBytes = false;\n return new TransformStream({\n async transform (chunk, controller) {\n hasBytes = true;\n const insertion = await insert();\n if (inserted) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion);\n controller.enqueue(encodedInsertion);\n }\n controller.enqueue(chunk);\n } else {\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD);\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n if (index !== -1) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion);\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, index));\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, index);\n // Append the rest of the chunk\n insertedHeadContent.set(chunk.slice(index), index + encodedInsertion.length);\n controller.enqueue(insertedHeadContent);\n } else {\n controller.enqueue(chunk);\n }\n inserted = true;\n } else {\n // This will happens in PPR rendering during next start, when the page is partially rendered.\n // When the page resumes, the head tag will be found in the middle of the chunk.\n // Where we just need to append the insertion and chunk to the current stream.\n // e.g.\n // PPR-static: ... [ resume content ] \n // PPR-resume: [ insertion ] [ rest content ]\n if (insertion) {\n controller.enqueue(encoder.encode(insertion));\n }\n controller.enqueue(chunk);\n inserted = true;\n }\n }\n },\n async flush (controller) {\n // Check before closing if there's anything remaining to insert.\n if (hasBytes) {\n const insertion = await insert();\n if (insertion) {\n controller.enqueue(encoder.encode(insertion));\n }\n }\n }\n });\n}\nasync function createClientResumeScriptInsertionTransformStream() {\n const segmentPath = '/_full';\n const cacheBustingHeader = await computeCacheBustingSearchParam('1', '/_full', undefined, undefined // headers[NEXT_URL]\n );\n const searchStr = `${NEXT_RSC_UNION_QUERY}=${cacheBustingHeader}`;\n const NEXT_CLIENT_RESUME_SCRIPT = ``;\n let didAlreadyInsert = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (didAlreadyInsert) {\n // Already inserted the script into the head. Pass through.\n controller.enqueue(chunk);\n return;\n }\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const headClosingTagIndex = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD);\n if (headClosingTagIndex === -1) {\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n controller.enqueue(chunk);\n return;\n }\n const encodedInsertion = encoder.encode(NEXT_CLIENT_RESUME_SCRIPT);\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, headClosingTagIndex));\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, headClosingTagIndex);\n // Append the rest of the chunk\n insertedHeadContent.set(chunk.slice(headClosingTagIndex), headClosingTagIndex + encodedInsertion.length);\n controller.enqueue(insertedHeadContent);\n didAlreadyInsert = true;\n }\n });\n}\n/**\n * Creates a transform stream that injects an inline script as the first\n * element inside . Used during instant navigation testing to set\n * self.__next_instant_test before any async bootstrap scripts execute.\n */ export async function createInstantTestScriptInsertionTransformStream(requestId) {\n // Kick off a fetch for the static RSC payload. This is the hydration\n // source for the locked static shell — same as the __NEXT_CLIENT_RESUME\n // fetch used for fallback routes, but with NEXT_INSTANT_PREFETCH_HEADER\n // so the server returns static-only data.\n //\n // The fetch promise is stored as self.__next_instant_test, which doubles\n // as the feature flag (truthy = instant test mode). The client processes\n // this as a fallback prerender payload for hydration.\n const segmentPath = '/_full';\n const cacheBustingHeader = await computeCacheBustingSearchParam('1', segmentPath, undefined, undefined);\n const searchStr = `${NEXT_RSC_UNION_QUERY}=${cacheBustingHeader}`;\n // In dev mode, inject self.__next_r (request ID) so that HMR WebSocket\n // and debug channel initialization don't crash. The static shell\n // bypasses renderToFizzStream which normally injects this via\n // bootstrapScriptContent.\n const requestIdScript = requestId !== null ? `self.__next_r=${JSON.stringify(requestId)};` : '';\n const INSTANT_TEST_SCRIPT = ``;\n let didAlreadyInsert = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (didAlreadyInsert) {\n // Already inserted the script into the head. Pass through.\n controller.enqueue(chunk);\n return;\n }\n // Find the opening )\n const headOpenIndex = indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.HEAD);\n if (headOpenIndex === -1) {\n controller.enqueue(chunk);\n return;\n }\n // Find the closing > of the tag\n const headCloseAngle = chunk.indexOf(62, headOpenIndex + ENCODED_TAGS.OPENING.HEAD.length);\n if (headCloseAngle === -1) {\n controller.enqueue(chunk);\n return;\n }\n const encodedInsertion = encoder.encode(INSTANT_TEST_SCRIPT);\n const insertionPoint = headCloseAngle + 1;\n // e.g.\n // chunk = ...\n // insertion = \n // output = [ ] ...\n const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);\n insertedHeadContent.set(chunk.slice(0, insertionPoint));\n insertedHeadContent.set(encodedInsertion, insertionPoint);\n insertedHeadContent.set(chunk.slice(insertionPoint), insertionPoint + encodedInsertion.length);\n controller.enqueue(insertedHeadContent);\n didAlreadyInsert = true;\n },\n flush (controller) {\n // Append closing tags so the browser can parse the full document.\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML);\n }\n });\n}\n// Suffix after main body content - scripts before ,\n// but wait for the major chunks to be enqueued.\nfunction createDeferredSuffixStream(suffix) {\n let flushed = false;\n let pending;\n const flush = (controller)=>{\n const detached = new DetachedPromise();\n pending = detached;\n scheduleImmediate(()=>{\n try {\n controller.enqueue(encoder.encode(suffix));\n } catch {\n // If an error occurs while enqueuing it can't be due to this\n // transformers fault. It's likely due to the controller being\n // errored due to the stream being cancelled.\n } finally{\n pending = undefined;\n detached.resolve();\n }\n });\n };\n return new TransformStream({\n transform (chunk, controller) {\n controller.enqueue(chunk);\n // If we've already flushed, we're done.\n if (flushed) return;\n // Schedule the flush to happen.\n flushed = true;\n flush(controller);\n },\n flush (controller) {\n if (pending) return pending.promise;\n if (flushed) return;\n // Flush now.\n controller.enqueue(encoder.encode(suffix));\n }\n });\n}\nfunction createFlightDataInjectionTransformStream(stream, delayDataUntilFirstHtmlChunk) {\n let htmlStreamFinished = false;\n let pull = null;\n let donePulling = false;\n function startOrContinuePulling(controller) {\n if (!pull) {\n pull = startPulling(controller);\n }\n return pull;\n }\n async function startPulling(controller) {\n const reader = stream.getReader();\n if (delayDataUntilFirstHtmlChunk) {\n // NOTE: streaming flush\n // We are buffering here for the inlined data stream because the\n // \"shell\" stream might be chunkenized again by the underlying stream\n // implementation, e.g. with a specific high-water mark. To ensure it's\n // the safe timing to pipe the data stream, this extra tick is\n // necessary.\n // We don't start reading until we've left the current Task to ensure\n // that it's inserted after flushing the shell. Note that this implementation\n // might get stale if impl details of Fizz change in the future.\n await atLeastOneTask();\n }\n try {\n while(true){\n const { done, value } = await reader.read();\n if (done) {\n donePulling = true;\n return;\n }\n // We want to prioritize HTML over RSC data.\n // The SSR render is based on the same RSC stream, so when we get a new RSC chunk,\n // we're likely to produce an HTML chunk as well, so give it a chance to flush first.\n if (!delayDataUntilFirstHtmlChunk && !htmlStreamFinished) {\n await atLeastOneTask();\n }\n controller.enqueue(value);\n }\n } catch (err) {\n controller.error(err);\n }\n }\n return new TransformStream({\n start (controller) {\n if (!delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller);\n }\n },\n transform (chunk, controller) {\n controller.enqueue(chunk);\n // Start the streaming if it hasn't already been started yet.\n if (delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller);\n }\n },\n flush (controller) {\n htmlStreamFinished = true;\n if (donePulling) {\n return;\n }\n return startOrContinuePulling(controller);\n }\n });\n}\nconst CLOSE_TAG = '';\n/**\n * This transform stream moves the suffix to the end of the stream, so results\n * like `` will be transformed to\n * ``.\n */ function createMoveSuffixStream() {\n let foundSuffix = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (foundSuffix) {\n return controller.enqueue(chunk);\n }\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML);\n if (index > -1) {\n foundSuffix = true;\n // If the whole chunk is the suffix, then don't write anything, it will\n // be written in the flush.\n if (chunk.length === ENCODED_TAGS.CLOSED.BODY_AND_HTML.length) {\n return;\n }\n // Write out the part before the suffix.\n const before = chunk.slice(0, index);\n controller.enqueue(before);\n // In the case where the suffix is in the middle of the chunk, we need\n // to split the chunk into two parts.\n if (chunk.length > ENCODED_TAGS.CLOSED.BODY_AND_HTML.length + index) {\n // Write out the part after the suffix.\n const after = chunk.slice(index + ENCODED_TAGS.CLOSED.BODY_AND_HTML.length);\n controller.enqueue(after);\n }\n } else {\n controller.enqueue(chunk);\n }\n },\n flush (controller) {\n // Even if we didn't find the suffix, the HTML is not valid if we don't\n // add it, so insert it at the end.\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML);\n }\n });\n}\nfunction createStripDocumentClosingTagsTransform() {\n return new TransformStream({\n transform (chunk, controller) {\n // We rely on the assumption that chunks will never break across a code unit.\n // This is reasonable because we currently concat all of React's output from a single\n // flush into one chunk before streaming it forward which means the chunk will represent\n // a single coherent utf-8 string. This is not safe to use if we change our streaming to no\n // longer do this large buffered chunk\n if (isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML) || isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY) || isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.HTML)) {\n // the entire chunk is the closing tags; return without enqueueing anything.\n return;\n }\n // We assume these tags will go at together at the end of the document and that\n // they won't appear anywhere else in the document. This is not really a safe assumption\n // but until we revamp our streaming infra this is a performant way to string the tags\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY);\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.HTML);\n controller.enqueue(chunk);\n }\n });\n}\nfunction createHtmlDataDplIdTransformStream(dplId) {\n let didTransform = false;\n return new TransformStream({\n transform (chunk, controller) {\n if (didTransform) {\n controller.enqueue(chunk);\n return;\n }\n const htmlTagIndex = indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.HTML);\n if (htmlTagIndex === -1) {\n controller.enqueue(chunk);\n return;\n }\n // Insert the data-dpl-id attribute right after \" -1) {\n foundHtml = true;\n }\n if (!foundBody && indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.BODY) > -1) {\n foundBody = true;\n }\n controller.enqueue(chunk);\n },\n flush (controller) {\n const missingTags = [];\n if (!foundHtml) missingTags.push('html');\n if (!foundBody) missingTags.push('body');\n if (!missingTags.length) return;\n controller.enqueue(encoder.encode(`\n `<${c}>`).join(missingTags.length > 1 ? ' and ' : '')} tags in the root layout.\\nRead more at https://nextjs.org/docs/messages/missing-root-layout-tags\"\n data-next-error-digest=\"${MISSING_ROOT_TAGS_ERROR}\"\n data-next-error-stack=\"\"\n >\n `));\n }\n });\n}\nfunction chainTransformers(readable, transformers) {\n let stream = readable;\n for (const transformer of transformers){\n if (!transformer) continue;\n stream = stream.pipeThrough(transformer);\n }\n return stream;\n}\nexport async function continueFizzStream(renderStream, { suffix, inlinedDataStream, isStaticGeneration, deploymentId, getServerInsertedHTML, getServerInsertedMetadata, validateRootLayout }) {\n // Suffix itself might contain close tags at the end, so we need to split it.\n const suffixUnclosed = suffix ? suffix.split(CLOSE_TAG, 1)[0] : null;\n if (isStaticGeneration) {\n // If we're generating static HTML we need to wait for it to resolve before continuing.\n await renderStream.allReady;\n } else {\n // Otherwise, we want to make sure Fizz is done with all microtasky work\n // before we start pulling the stream and cause a flush.\n await waitAtLeastOneReactRenderTask();\n }\n return chainTransformers(renderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert suffix content\n suffixUnclosed != null && suffixUnclosed.length > 0 ? createDeferredSuffixStream(suffixUnclosed) : null,\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n inlinedDataStream ? createFlightDataInjectionTransformStream(inlinedDataStream, true) : null,\n // Validate the root layout for missing html or body tags\n validateRootLayout ? createRootLayoutValidatorStream() : null,\n // Close tags should always be deferred to the end\n createMoveSuffixStream(),\n // Special head insertions\n // TODO-APP: Insert server side html to end of head in app layout rendering, to avoid\n // hydration errors. Remove this once it's ready to be handled by react itself.\n createHeadInsertionTransformStream(getServerInsertedHTML)\n ]);\n}\nexport async function continueDynamicPrerender(prerenderStream, { getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n return chainTransformers(prerenderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n createStripDocumentClosingTagsTransform(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata)\n ]);\n}\nexport async function continueStaticPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n return chainTransformers(prerenderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Add build id comment to start of the HTML document (in export mode)\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n createFlightDataInjectionTransformStream(inlinedDataStream, true),\n // Close tags should always be deferred to the end\n createMoveSuffixStream()\n ]);\n}\nexport async function continueStaticFallbackPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n // Same as `continueStaticPrerender`, but also inserts an additional script\n // to instruct the client to start fetching the hydration data as early\n // as possible.\n return chainTransformers(prerenderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Insert the client resume script into the head\n await createClientResumeScriptInsertionTransformStream(),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n createFlightDataInjectionTransformStream(inlinedDataStream, true),\n // Close tags should always be deferred to the end\n createMoveSuffixStream()\n ]);\n}\nexport async function continueDynamicHTMLResume(renderStream, { delayDataUntilFirstHtmlChunk, inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, deploymentId }) {\n return chainTransformers(renderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n // Insert data-dpl-id attribute on the html tag\n deploymentId ? createHtmlDataDplIdTransformStream(deploymentId) : null,\n // Insert generated tags to head\n createHeadInsertionTransformStream(getServerInsertedHTML),\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n createFlightDataInjectionTransformStream(inlinedDataStream, delayDataUntilFirstHtmlChunk),\n // Close tags should always be deferred to the end\n createMoveSuffixStream()\n ]);\n}\nexport function createDocumentClosingStream() {\n return streamFromString(CLOSE_TAG);\n}\n// ---------------------------------------------------------------------------\n// Runtime prefetch transform (Web streams)\n// ---------------------------------------------------------------------------\n/**\n * Web TransformStream that replaces the runtime prefetch sentinel in an RSC\n * payload stream: `[]` -> `[,]`.\n *\n * This is the web equivalent of createRuntimePrefetchNodeTransform\n * in node-stream-helpers.ts.\n */ export function createRuntimePrefetchTransformStream(sentinel, isPartial, staleTime) {\n const enc = new TextEncoder();\n // Search for: []\n // Replace with: [,]\n const search = enc.encode(`[${sentinel}]`);\n const first = search[0];\n const replace = enc.encode(`[${isPartial},${staleTime}]`);\n const searchLen = search.length;\n let currentChunk = null;\n let found = false;\n function processChunk(controller, nextChunk) {\n if (found) {\n if (nextChunk) {\n controller.enqueue(nextChunk);\n }\n return;\n }\n if (currentChunk) {\n // We can't search past the index that can contain a full match\n let exclusiveUpperBound = currentChunk.length - (searchLen - 1);\n if (nextChunk) {\n // If we have any overflow bytes we can search up to the chunk's final byte\n exclusiveUpperBound += Math.min(nextChunk.length, searchLen - 1);\n }\n if (exclusiveUpperBound < 1) {\n // we can't match the current chunk.\n controller.enqueue(currentChunk);\n currentChunk = nextChunk // advance so we don't process this chunk again\n ;\n return;\n }\n let currentIndex = currentChunk.indexOf(first);\n // check the current candidate match if it is within the bounds of our search space for the currentChunk\n candidateLoop: while(-1 < currentIndex && currentIndex < exclusiveUpperBound){\n // We already know index 0 matches because we used indexOf to find the candidateIndex so we start at index 1\n let matchIndex = 1;\n while(matchIndex < searchLen){\n const candidateIndex = currentIndex + matchIndex;\n const candidateValue = candidateIndex < currentChunk.length ? currentChunk[candidateIndex] : nextChunk[candidateIndex - currentChunk.length];\n if (candidateValue !== search[matchIndex]) {\n // No match, reset and continue the search from the next position\n currentIndex = currentChunk.indexOf(first, currentIndex + 1);\n continue candidateLoop;\n }\n matchIndex++;\n }\n // We found a complete match. currentIndex is our starting point to replace the value.\n found = true;\n // enqueue everything up to the match\n controller.enqueue(currentChunk.subarray(0, currentIndex));\n // enqueue the replacement value\n controller.enqueue(replace);\n // If there are bytes in the currentChunk after the match enqueue them\n if (currentIndex + searchLen < currentChunk.length) {\n controller.enqueue(currentChunk.slice(currentIndex + searchLen));\n }\n // If we have a next chunk we enqueue it now\n if (nextChunk) {\n // if replacement spills over to the next chunk we first exclude the replaced bytes\n const overflowBytes = currentIndex + searchLen - currentChunk.length;\n const truncatedChunk = overflowBytes > 0 ? nextChunk.subarray(overflowBytes) : nextChunk;\n controller.enqueue(truncatedChunk);\n }\n // We are now in found mode and don't need to track currentChunk anymore\n currentChunk = null;\n return;\n }\n // No match found in this chunk, emit it and wait for the next one\n controller.enqueue(currentChunk);\n }\n // Advance to the next chunk\n currentChunk = nextChunk;\n }\n return new TransformStream({\n transform (chunk, controller) {\n processChunk(controller, chunk);\n },\n flush (controller) {\n processChunk(controller, null);\n }\n });\n}\n\n//# sourceMappingURL=node-web-streams-helper.js.map","export const MISSING_ROOT_TAGS_ERROR = 'NEXT_MISSING_ROOT_TAGS';\n\n//# sourceMappingURL=constants.js.map","import { hexHash } from '../../hash';\nconst CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES = 12;\nconst textEncoder = new TextEncoder();\nfunction encodeCacheBustingSearchParam(bytes) {\n let binary = '';\n for(let i = 0; i < bytes.length; i++){\n binary += String.fromCharCode(bytes[i]);\n }\n return btoa(binary).replace(/\\+/g, '-').replace(/\\//g, '_').replace(/=+$/, '');\n}\nfunction normalizeCacheBustingInput(value) {\n if (value === undefined) {\n return '0';\n }\n return Array.isArray(value) ? value.join(',') : value;\n}\nfunction createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) {\n return null;\n }\n return [\n prefetchHeader ?? '0',\n normalizeCacheBustingInput(segmentPrefetchHeader),\n normalizeCacheBustingInput(stateTreeHeader),\n normalizeCacheBustingInput(nextUrlHeader)\n ].join(',');\n}\nasync function computeCacheBustingSearchParamFromInput(input) {\n // Truncate SHA-256 to 96 bits to keep `_rsc` compact\n const digest = await globalThis.crypto.subtle.digest('SHA-256', textEncoder.encode(input));\n return encodeCacheBustingSearchParam(new Uint8Array(digest).subarray(0, CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES));\n}\nexport async function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n const input = createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader);\n if (input === null) {\n return '';\n }\n return computeCacheBustingSearchParamFromInput(input);\n}\nexport function computeLegacyCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n const input = createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader);\n if (input === null) {\n return '';\n }\n return hexHash(input);\n}\n\n//# sourceMappingURL=cache-busting-search-param.js.map","/**\n * Find the starting index of Uint8Array `b` within Uint8Array `a`.\n */ export function indexOfUint8Array(a, b) {\n if (b.length === 0) return 0;\n if (a.length === 0 || b.length > a.length) return -1;\n // Use Node's native implementation when available.\n if (typeof Buffer !== 'undefined') {\n const haystack = Buffer.isBuffer(a) ? a : Buffer.from(a.buffer, a.byteOffset, a.byteLength);\n return haystack.indexOf(b);\n }\n // start iterating through `a`\n for(let i = 0; i <= a.length - b.length; i++){\n let completeMatch = true;\n // from index `i`, iterate through `b` and check for mismatch\n for(let j = 0; j < b.length; j++){\n // if the values do not match, then this isn't a complete match, exit `b` iteration early and iterate to next index of `a`.\n if (a[i + j] !== b[j]) {\n completeMatch = false;\n break;\n }\n }\n if (completeMatch) {\n return i;\n }\n }\n return -1;\n}\n/**\n * Check if two Uint8Arrays are strictly equivalent.\n */ export function isEquivalentUint8Arrays(a, b) {\n if (a.length !== b.length) return false;\n for(let i = 0; i < a.length; i++){\n if (a[i] !== b[i]) return false;\n }\n return true;\n}\n/**\n * Remove Uint8Array `b` from Uint8Array `a`.\n *\n * If `b` is not in `a`, `a` is returned unchanged.\n *\n * Otherwise, the function returns a new Uint8Array instance with size `a.length - b.length`\n */ export function removeFromUint8Array(a, b) {\n const tagIndex = indexOfUint8Array(a, b);\n if (tagIndex === 0) return a.subarray(b.length);\n if (tagIndex > -1) {\n const removed = new Uint8Array(a.length - b.length);\n removed.set(a.subarray(0, tagIndex));\n removed.set(a.subarray(tagIndex + b.length), tagIndex);\n return removed;\n } else {\n return a;\n }\n}\n\n//# sourceMappingURL=uint8array-helpers.js.map","/**\n * A `Promise.withResolvers` implementation that exposes the `resolve` and\n * `reject` functions on a `Promise`.\n *\n * @see https://tc39.es/proposal-promise-with-resolvers/\n */ export class DetachedPromise {\n constructor(){\n let resolve;\n let reject;\n // Create the promise and assign the resolvers to the object.\n this.promise = new Promise((res, rej)=>{\n resolve = res;\n reject = rej;\n });\n // We know that resolvers is defined because the Promise constructor runs\n // synchronously.\n this.resolve = resolve;\n this.reject = reject;\n }\n}\n\n//# sourceMappingURL=detached-promise.js.map","\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n// src/index.ts\nvar src_exports = {};\n__export(src_exports, {\n RequestCookies: () => RequestCookies,\n ResponseCookies: () => ResponseCookies,\n parseCookie: () => parseCookie,\n parseSetCookie: () => parseSetCookie,\n stringifyCookie: () => stringifyCookie\n});\nmodule.exports = __toCommonJS(src_exports);\n\n// src/serialize.ts\nfunction stringifyCookie(c) {\n var _a;\n const attrs = [\n \"path\" in c && c.path && `Path=${c.path}`,\n \"expires\" in c && (c.expires || c.expires === 0) && `Expires=${(typeof c.expires === \"number\" ? new Date(c.expires) : c.expires).toUTCString()}`,\n \"maxAge\" in c && typeof c.maxAge === \"number\" && `Max-Age=${c.maxAge}`,\n \"domain\" in c && c.domain && `Domain=${c.domain}`,\n \"secure\" in c && c.secure && \"Secure\",\n \"httpOnly\" in c && c.httpOnly && \"HttpOnly\",\n \"sameSite\" in c && c.sameSite && `SameSite=${c.sameSite}`,\n \"partitioned\" in c && c.partitioned && \"Partitioned\",\n \"priority\" in c && c.priority && `Priority=${c.priority}`\n ].filter(Boolean);\n const stringified = `${c.name}=${encodeURIComponent((_a = c.value) != null ? _a : \"\")}`;\n return attrs.length === 0 ? stringified : `${stringified}; ${attrs.join(\"; \")}`;\n}\nfunction parseCookie(cookie) {\n const map = /* @__PURE__ */ new Map();\n for (const pair of cookie.split(/; */)) {\n if (!pair)\n continue;\n const splitAt = pair.indexOf(\"=\");\n if (splitAt === -1) {\n map.set(pair, \"true\");\n continue;\n }\n const [key, value] = [pair.slice(0, splitAt), pair.slice(splitAt + 1)];\n try {\n map.set(key, decodeURIComponent(value != null ? value : \"true\"));\n } catch {\n }\n }\n return map;\n}\nfunction parseSetCookie(setCookie) {\n if (!setCookie) {\n return void 0;\n }\n const [[name, value], ...attributes] = parseCookie(setCookie);\n const {\n domain,\n expires,\n httponly,\n maxage,\n path,\n samesite,\n secure,\n partitioned,\n priority\n } = Object.fromEntries(\n attributes.map(([key, value2]) => [\n key.toLowerCase().replace(/-/g, \"\"),\n value2\n ])\n );\n const cookie = {\n name,\n value: decodeURIComponent(value),\n domain,\n ...expires && { expires: new Date(expires) },\n ...httponly && { httpOnly: true },\n ...typeof maxage === \"string\" && { maxAge: Number(maxage) },\n path,\n ...samesite && { sameSite: parseSameSite(samesite) },\n ...secure && { secure: true },\n ...priority && { priority: parsePriority(priority) },\n ...partitioned && { partitioned: true }\n };\n return compact(cookie);\n}\nfunction compact(t) {\n const newT = {};\n for (const key in t) {\n if (t[key]) {\n newT[key] = t[key];\n }\n }\n return newT;\n}\nvar SAME_SITE = [\"strict\", \"lax\", \"none\"];\nfunction parseSameSite(string) {\n string = string.toLowerCase();\n return SAME_SITE.includes(string) ? string : void 0;\n}\nvar PRIORITY = [\"low\", \"medium\", \"high\"];\nfunction parsePriority(string) {\n string = string.toLowerCase();\n return PRIORITY.includes(string) ? string : void 0;\n}\nfunction splitCookiesString(cookiesString) {\n if (!cookiesString)\n return [];\n var cookiesStrings = [];\n var pos = 0;\n var start;\n var ch;\n var lastComma;\n var nextStart;\n var cookiesSeparatorFound;\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1;\n }\n return pos < cookiesString.length;\n }\n function notSpecialChar() {\n ch = cookiesString.charAt(pos);\n return ch !== \"=\" && ch !== \";\" && ch !== \",\";\n }\n while (pos < cookiesString.length) {\n start = pos;\n cookiesSeparatorFound = false;\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos);\n if (ch === \",\") {\n lastComma = pos;\n pos += 1;\n skipWhitespace();\n nextStart = pos;\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1;\n }\n if (pos < cookiesString.length && cookiesString.charAt(pos) === \"=\") {\n cookiesSeparatorFound = true;\n pos = nextStart;\n cookiesStrings.push(cookiesString.substring(start, lastComma));\n start = pos;\n } else {\n pos = lastComma + 1;\n }\n } else {\n pos += 1;\n }\n }\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length));\n }\n }\n return cookiesStrings;\n}\n\n// src/request-cookies.ts\nvar RequestCookies = class {\n constructor(requestHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n this._headers = requestHeaders;\n const header = requestHeaders.get(\"cookie\");\n if (header) {\n const parsed = parseCookie(header);\n for (const [name, value] of parsed) {\n this._parsed.set(name, { name, value });\n }\n }\n }\n [Symbol.iterator]() {\n return this._parsed[Symbol.iterator]();\n }\n /**\n * The amount of cookies received from the client\n */\n get size() {\n return this._parsed.size;\n }\n get(...args) {\n const name = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(name);\n }\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed);\n if (!args.length) {\n return all.map(([_, value]) => value);\n }\n const name = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter(([n]) => n === name).map(([_, value]) => value);\n }\n has(name) {\n return this._parsed.has(name);\n }\n set(...args) {\n const [name, value] = args.length === 1 ? [args[0].name, args[0].value] : args;\n const map = this._parsed;\n map.set(name, { name, value });\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value2]) => stringifyCookie(value2)).join(\"; \")\n );\n return this;\n }\n /**\n * Delete the cookies matching the passed name or names in the request.\n */\n delete(names) {\n const map = this._parsed;\n const result = !Array.isArray(names) ? map.delete(names) : names.map((name) => map.delete(name));\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value]) => stringifyCookie(value)).join(\"; \")\n );\n return result;\n }\n /**\n * Delete all the cookies in the cookies in the request.\n */\n clear() {\n this.delete(Array.from(this._parsed.keys()));\n return this;\n }\n /**\n * Format the cookies in the request as a string for logging\n */\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map((v) => `${v.name}=${encodeURIComponent(v.value)}`).join(\"; \");\n }\n};\n\n// src/response-cookies.ts\nvar ResponseCookies = class {\n constructor(responseHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n var _a, _b, _c;\n this._headers = responseHeaders;\n const setCookie = (_c = (_b = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders)) != null ? _b : responseHeaders.get(\"set-cookie\")) != null ? _c : [];\n const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie);\n for (const cookieString of cookieStrings) {\n const parsed = parseSetCookie(cookieString);\n if (parsed)\n this._parsed.set(parsed.name, parsed);\n }\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-get CookieStore#get} without the Promise.\n */\n get(...args) {\n const key = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(key);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-getAll CookieStore#getAll} without the Promise.\n */\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed.values());\n if (!args.length) {\n return all;\n }\n const key = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter((c) => c.name === key);\n }\n has(name) {\n return this._parsed.has(name);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-set CookieStore#set} without the Promise.\n */\n set(...args) {\n const [name, value, cookie] = args.length === 1 ? [args[0].name, args[0].value, args[0]] : args;\n const map = this._parsed;\n map.set(name, normalizeCookie({ name, value, ...cookie }));\n replace(map, this._headers);\n return this;\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-delete CookieStore#delete} without the Promise.\n */\n delete(...args) {\n const [name, options] = typeof args[0] === \"string\" ? [args[0]] : [args[0].name, args[0]];\n return this.set({ ...options, name, value: \"\", expires: /* @__PURE__ */ new Date(0) });\n }\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map(stringifyCookie).join(\"; \");\n }\n};\nfunction replace(bag, headers) {\n headers.delete(\"set-cookie\");\n for (const [, value] of bag) {\n const serialized = stringifyCookie(value);\n headers.append(\"set-cookie\", serialized);\n }\n}\nfunction normalizeCookie(cookie = { name: \"\", value: \"\" }) {\n if (typeof cookie.expires === \"number\") {\n cookie.expires = new Date(cookie.expires);\n }\n if (cookie.maxAge) {\n cookie.expires = new Date(Date.now() + cookie.maxAge * 1e3);\n }\n if (cookie.path === null || cookie.path === void 0) {\n cookie.path = \"/\";\n }\n return cookie;\n}\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n RequestCookies,\n ResponseCookies,\n parseCookie,\n parseSetCookie,\n stringifyCookie\n});\n","export {\n RequestCookies,\n ResponseCookies,\n stringifyCookie,\n} from 'next/dist/compiled/@edge-runtime/cookies'\n","import { parsePath } from './parse-path';\n/**\n * Adds the provided prefix to the given path. It first ensures that the path\n * is indeed starting with a slash.\n */ export function addPathPrefix(path, prefix) {\n if (!path.startsWith('/') || !prefix) {\n return path;\n }\n const { pathname, query, hash } = parsePath(path);\n return `${prefix}${pathname}${query}${hash}`;\n}\n\n//# sourceMappingURL=add-path-prefix.js.map","/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */ const cache = new WeakMap();\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */ export function normalizeLocalePath(pathname, locales) {\n // If locales is undefined, return the pathname as is.\n if (!locales) return {\n pathname\n };\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales);\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale)=>locale.toLowerCase());\n cache.set(locales, lowercasedLocales);\n }\n let detectedLocale;\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2);\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return {\n pathname\n };\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase();\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment);\n if (index < 0) return {\n pathname\n };\n // Return the case-sensitive locale.\n detectedLocale = locales[index];\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/';\n return {\n pathname,\n detectedLocale\n };\n}\n\n//# sourceMappingURL=normalize-locale-path.js.map","import { getRequestMeta } from '../../../request-meta';\nimport { fromNodeOutgoingHttpHeaders } from '../../utils';\nimport { NextRequest } from '../request';\nimport { isNodeNextRequest, isWebNextRequest } from '../../../base-http/helpers';\nexport const ResponseAbortedName = 'ResponseAborted';\nexport class ResponseAborted extends Error {\n constructor(...args){\n super(...args), this.name = ResponseAbortedName;\n }\n}\n/**\n * Creates an AbortController tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * If the `close` event is fired before the `finish` event, then we'll send the\n * `abort` signal.\n */ export function createAbortController(response) {\n const controller = new AbortController();\n // If `finish` fires first, then `res.end()` has been called and the close is\n // just us finishing the stream on our side. If `close` fires first, then we\n // know the client disconnected before we finished.\n response.once('close', ()=>{\n if (response.writableFinished) return;\n controller.abort(new ResponseAborted());\n });\n return controller;\n}\n/**\n * Creates an AbortSignal tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * This cannot be done with the request (IncomingMessage or Readable) because\n * the `abort` event will not fire if to data has been fully read (because that\n * will \"close\" the readable stream and nothing fires after that).\n */ export function signalFromNodeResponse(response) {\n const { errored, destroyed } = response;\n if (errored || destroyed) {\n return AbortSignal.abort(errored ?? new ResponseAborted());\n }\n const { signal } = createAbortController(response);\n return signal;\n}\nexport class NextRequestAdapter {\n static fromBaseNextRequest(request, signal) {\n if (// The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME === 'edge' && isWebNextRequest(request)) {\n return NextRequestAdapter.fromWebNextRequest(request);\n } else if (// The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME !== 'edge' && isNodeNextRequest(request)) {\n return NextRequestAdapter.fromNodeNextRequest(request, signal);\n } else {\n throw Object.defineProperty(new Error('Invariant: Unsupported NextRequest type'), \"__NEXT_ERROR_CODE\", {\n value: \"E345\",\n enumerable: false,\n configurable: true\n });\n }\n }\n static fromNodeNextRequest(request, signal) {\n // HEAD and GET requests can not have a body.\n let body = null;\n if (request.method !== 'GET' && request.method !== 'HEAD' && request.body) {\n // @ts-expect-error - this is handled by undici, when streams/web land use it instead\n body = request.body;\n }\n let url;\n if (request.url.startsWith('http')) {\n url = new URL(request.url);\n } else {\n // Grab the full URL from the request metadata.\n const base = getRequestMeta(request, 'initURL');\n if (!base || !base.startsWith('http')) {\n // Because the URL construction relies on the fact that the URL provided\n // is absolute, we need to provide a base URL. We can't use the request\n // URL because it's relative, so we use a dummy URL instead.\n url = new URL(request.url, 'http://n');\n } else {\n url = new URL(request.url, base);\n }\n }\n return new NextRequest(url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal,\n // geo\n // ip\n // nextConfig\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...signal.aborted ? {} : {\n body\n }\n });\n }\n static fromWebNextRequest(request) {\n // HEAD and GET requests can not have a body.\n let body = null;\n if (request.method !== 'GET' && request.method !== 'HEAD') {\n body = request.body;\n }\n return new NextRequest(request.url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal: request.request.signal,\n // geo\n // ip\n // nextConfig\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...request.request.signal.aborted ? {} : {\n body\n }\n });\n }\n}\n\n//# sourceMappingURL=next-request.js.map","// Combined load times for loading client components\nlet clientComponentLoadStart = 0;\nlet clientComponentLoadTimes = 0;\nlet clientComponentLoadCount = 0;\nexport function wrapClientComponentLoader(ComponentMod) {\n if (!('performance' in globalThis)) {\n return ComponentMod.__next_app__;\n }\n return {\n require: (...args)=>{\n const startTime = performance.now();\n if (clientComponentLoadStart === 0) {\n clientComponentLoadStart = startTime;\n }\n try {\n clientComponentLoadCount += 1;\n return ComponentMod.__next_app__.require(...args);\n } finally{\n clientComponentLoadTimes += performance.now() - startTime;\n }\n },\n loadChunk: (...args)=>{\n const startTime = performance.now();\n const result = ComponentMod.__next_app__.loadChunk(...args);\n // Avoid wrapping `loadChunk`'s result in an extra promise in case something like React depends on its identity.\n // We only need to know when it's settled.\n result.finally(()=>{\n clientComponentLoadTimes += performance.now() - startTime;\n });\n return result;\n }\n };\n}\nexport function getClientComponentLoaderMetrics(options = {}) {\n const metrics = clientComponentLoadStart === 0 ? undefined : {\n clientComponentLoadStart,\n clientComponentLoadTimes,\n clientComponentLoadCount\n };\n if (options.reset) {\n clientComponentLoadStart = 0;\n clientComponentLoadTimes = 0;\n clientComponentLoadCount = 0;\n }\n return metrics;\n}\n\n//# sourceMappingURL=client-component-renderer-logger.js.map","import { chainStreams, streamFromBuffer, streamFromString, streamToString } from './stream-utils/node-web-streams-helper';\nimport { isAbortError, pipeToNodeResponse } from './pipe-readable';\nimport { InvariantError } from '../shared/lib/invariant-error';\nexport default class RenderResult {\n static #_ = /**\n * A render result that represents an empty response. This is used to\n * represent a response that was not found or was already sent.\n */ this.EMPTY = new RenderResult(null, {\n metadata: {},\n contentType: null\n });\n /**\n * Creates a new RenderResult instance from a static response.\n *\n * @param value the static response value\n * @param contentType the content type of the response\n * @returns a new RenderResult instance\n */ static fromStatic(value, contentType) {\n return new RenderResult(value, {\n metadata: {},\n contentType\n });\n }\n constructor(response, { contentType, waitUntil, metadata }){\n this.response = response;\n this.contentType = contentType;\n this.metadata = metadata;\n this.waitUntil = waitUntil;\n }\n assignMetadata(metadata) {\n Object.assign(this.metadata, metadata);\n }\n /**\n * Returns true if the response is null. It can be null if the response was\n * not found or was already sent.\n */ get isNull() {\n return this.response === null;\n }\n /**\n * Returns false if the response is a string. It can be a string if the page\n * was prerendered. If it's not, then it was generated dynamically.\n */ get isDynamic() {\n return typeof this.response !== 'string';\n }\n toUnchunkedString(stream = false) {\n if (this.response === null) {\n // If the response is null, return an empty string. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return '';\n }\n if (typeof this.response !== 'string') {\n if (!stream) {\n throw Object.defineProperty(new InvariantError('dynamic responses cannot be unchunked. This is a bug in Next.js'), \"__NEXT_ERROR_CODE\", {\n value: \"E732\",\n enumerable: false,\n configurable: true\n });\n }\n return streamToString(this.readable);\n }\n return this.response;\n }\n /**\n * Returns a readable stream of the response.\n */ get readable() {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return new ReadableStream({\n start (controller) {\n controller.close();\n }\n });\n }\n if (typeof this.response === 'string') {\n return streamFromString(this.response);\n }\n if (Buffer.isBuffer(this.response)) {\n return streamFromBuffer(this.response);\n }\n // If the response is an array of streams, then chain them together.\n if (Array.isArray(this.response)) {\n return chainStreams(...this.response);\n }\n return this.response;\n }\n /**\n * Coerces the response to an array of streams. This will convert the response\n * to an array of streams if it is not already one.\n *\n * @returns An array of streams\n */ coerce() {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return [];\n }\n if (typeof this.response === 'string') {\n return [\n streamFromString(this.response)\n ];\n } else if (Array.isArray(this.response)) {\n return this.response;\n } else if (Buffer.isBuffer(this.response)) {\n return [\n streamFromBuffer(this.response)\n ];\n } else {\n return [\n this.response\n ];\n }\n }\n /**\n * Pipes the response through a transform stream. This converts the response\n * to a single readable stream (chaining if needed) and pipes it through the\n * provided transform.\n *\n * @param transform The transform stream to pipe through\n */ pipeThrough(transform) {\n this.response = this.readable.pipeThrough(transform);\n }\n /**\n * Unshifts a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the start of the array. When this response is piped, all of the streams\n * will be piped one after the other.\n *\n * @param readable The new stream to unshift\n */ unshift(readable) {\n // Coerce the response to an array of streams.\n this.response = this.coerce();\n // Add the new stream to the start of the array.\n this.response.unshift(readable);\n }\n /**\n * Chains a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the end. When this response is piped, all of the streams will be piped\n * one after the other.\n *\n * @param readable The new stream to chain\n */ push(readable) {\n // Coerce the response to an array of streams.\n this.response = this.coerce();\n // Add the new stream to the end of the array.\n this.response.push(readable);\n }\n /**\n * Pipes the response to a writable stream. This will close/cancel the\n * writable stream if an error is encountered. If this doesn't throw, then\n * the writable stream will be closed or aborted.\n *\n * @param writable Writable stream to pipe the response to\n */ async pipeTo(writable) {\n try {\n await this.readable.pipeTo(writable, {\n // We want to close the writable stream ourselves so that we can wait\n // for the waitUntil promise to resolve before closing it. If an error\n // is encountered, we'll abort the writable stream if we swallowed the\n // error.\n preventClose: true\n });\n // If there is a waitUntil promise, wait for it to resolve before\n // closing the writable stream.\n if (this.waitUntil) await this.waitUntil;\n // Close the writable stream.\n await writable.close();\n } catch (err) {\n // If this is an abort error, we should abort the writable stream (as we\n // took ownership of it when we started piping). We don't need to re-throw\n // because we handled the error.\n if (isAbortError(err)) {\n // Abort the writable stream if an error is encountered.\n await writable.abort(err);\n return;\n }\n // We're not aborting the writer here as when this method throws it's not\n // clear as to how so the caller should assume it's their responsibility\n // to clean up the writer.\n throw err;\n }\n }\n /**\n * Pipes the response to a node response. This will close/cancel the node\n * response if an error is encountered.\n *\n * @param res\n */ async pipeToNodeResponse(res) {\n await pipeToNodeResponse(this.readable, res, this.waitUntil);\n }\n}\n\n//# sourceMappingURL=render-result.js.map","export function detectDomainLocale(domainItems, hostname, detectedLocale) {\n if (!domainItems) return;\n if (detectedLocale) {\n detectedLocale = detectedLocale.toLowerCase();\n }\n for (const item of domainItems){\n // remove port if present\n const domainHostname = item.domain?.split(':', 1)[0].toLowerCase();\n if (hostname === domainHostname || detectedLocale === item.defaultLocale.toLowerCase() || item.locales?.some((locale)=>locale.toLowerCase() === detectedLocale)) {\n return item;\n }\n }\n}\n\n//# sourceMappingURL=detect-domain-locale.js.map","export class PageSignatureError extends Error {\n constructor({ page }){\n super(`The middleware \"${page}\" accepts an async API directly with the form:\n \n export function middleware(request, event) {\n return NextResponse.redirect('/new-location')\n }\n \n Read more: https://nextjs.org/docs/messages/middleware-new-signature\n `);\n }\n}\nexport class RemovedPageError extends Error {\n constructor(){\n super(`The request.page has been deprecated in favour of \\`URLPattern\\`.\n Read more: https://nextjs.org/docs/messages/middleware-request-page\n `);\n }\n}\nexport class RemovedUAError extends Error {\n constructor(){\n super(`The request.ua has been removed in favour of \\`userAgent\\` function.\n Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n `);\n }\n}\n\n//# sourceMappingURL=error.js.map","import { addPathPrefix } from './add-path-prefix';\nimport { pathHasPrefix } from './path-has-prefix';\n/**\n * For a given path and a locale, if the locale is given, it will prefix the\n * locale. The path shouldn't be an API path. If a default locale is given the\n * prefix will be omitted if the locale is already the default locale.\n */ export function addLocale(path, locale, defaultLocale, ignorePrefix) {\n // If no locale was given or the locale is the default locale, we don't need\n // to prefix the path.\n if (!locale || locale === defaultLocale) return path;\n const lower = path.toLowerCase();\n // If the path is an API path or the path already has the locale prefix, we\n // don't need to prefix the path.\n if (!ignorePrefix) {\n if (pathHasPrefix(lower, '/api')) return path;\n if (pathHasPrefix(lower, `/${locale.toLowerCase()}`)) return path;\n }\n // Add the locale prefix to the path.\n return addPathPrefix(path, `/${locale}`);\n}\n\n//# sourceMappingURL=add-locale.js.map","import { normalizeLocalePath } from '../../i18n/normalize-locale-path';\nimport { removePathPrefix } from './remove-path-prefix';\nimport { pathHasPrefix } from './path-has-prefix';\nexport function getNextPathnameInfo(pathname, options) {\n const { basePath, i18n, trailingSlash } = options.nextConfig ?? {};\n const info = {\n pathname,\n trailingSlash: pathname !== '/' ? pathname.endsWith('/') : trailingSlash\n };\n if (basePath && pathHasPrefix(info.pathname, basePath)) {\n info.pathname = removePathPrefix(info.pathname, basePath);\n info.basePath = basePath;\n }\n let pathnameNoDataPrefix = info.pathname;\n if (info.pathname.startsWith('/_next/data/') && info.pathname.endsWith('.json')) {\n const paths = info.pathname.replace(/^\\/_next\\/data\\//, '').replace(/\\.json$/, '').split('/');\n const buildId = paths[0];\n info.buildId = buildId;\n pathnameNoDataPrefix = paths[1] !== 'index' ? `/${paths.slice(1).join('/')}` : '/';\n // update pathname with normalized if enabled although\n // we use normalized to populate locale info still\n if (options.parseData === true) {\n info.pathname = pathnameNoDataPrefix;\n }\n }\n // If provided, use the locale route normalizer to detect the locale instead\n // of the function below.\n if (i18n) {\n let result = options.i18nProvider ? options.i18nProvider.analyze(info.pathname) : normalizeLocalePath(info.pathname, i18n.locales);\n info.locale = result.detectedLocale;\n info.pathname = result.pathname ?? info.pathname;\n if (!result.detectedLocale && info.buildId) {\n result = options.i18nProvider ? options.i18nProvider.analyze(pathnameNoDataPrefix) : normalizeLocalePath(pathnameNoDataPrefix, i18n.locales);\n if (result.detectedLocale) {\n info.locale = result.detectedLocale;\n }\n }\n }\n return info;\n}\n\n//# sourceMappingURL=get-next-pathname-info.js.map","import { ResponseAbortedName, createAbortController } from './web/spec-extension/adapters/next-request';\nimport { DetachedPromise } from '../lib/detached-promise';\nimport { getTracer } from './lib/trace/tracer';\nimport { NextNodeServerSpan } from './lib/trace/constants';\nimport { getClientComponentLoaderMetrics } from './client-component-renderer-logger';\nexport function isAbortError(e) {\n return (e == null ? void 0 : e.name) === 'AbortError' || (e == null ? void 0 : e.name) === ResponseAbortedName;\n}\nfunction createWriterFromResponse(res, waitUntilForEnd) {\n let started = false;\n // Create a promise that will resolve once the response has drained. See\n // https://nodejs.org/api/stream.html#stream_event_drain\n let drained = new DetachedPromise();\n function onDrain() {\n drained.resolve();\n }\n res.on('drain', onDrain);\n // If the finish event fires, it means we shouldn't block and wait for the\n // drain event.\n res.once('close', ()=>{\n res.off('drain', onDrain);\n drained.resolve();\n });\n // Create a promise that will resolve once the response has finished. See\n // https://nodejs.org/api/http.html#event-finish_1\n const finished = new DetachedPromise();\n res.once('finish', ()=>{\n finished.resolve();\n });\n // Create a writable stream that will write to the response.\n return new WritableStream({\n write: async (chunk)=>{\n // You'd think we'd want to use `start` instead of placing this in `write`\n // but this ensures that we don't actually flush the headers until we've\n // started writing chunks.\n if (!started) {\n started = true;\n if ('performance' in globalThis && process.env.NEXT_OTEL_PERFORMANCE_PREFIX) {\n const metrics = getClientComponentLoaderMetrics();\n if (metrics) {\n performance.measure(`${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`, {\n start: metrics.clientComponentLoadStart,\n end: metrics.clientComponentLoadStart + metrics.clientComponentLoadTimes\n });\n }\n }\n res.flushHeaders();\n getTracer().trace(NextNodeServerSpan.startResponse, {\n spanName: 'start response'\n }, ()=>undefined);\n }\n try {\n const ok = res.write(chunk);\n // Added by the `compression` middleware, this is a function that will\n // flush the partially-compressed response to the client.\n if ('flush' in res && typeof res.flush === 'function') {\n res.flush();\n }\n // If the write returns false, it means there's some backpressure, so\n // wait until it's streamed before continuing.\n if (!ok) {\n await drained.promise;\n // Reset the drained promise so that we can wait for the next drain event.\n drained = new DetachedPromise();\n }\n } catch (err) {\n res.end();\n throw Object.defineProperty(new Error('failed to write chunk to response', {\n cause: err\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E321\",\n enumerable: false,\n configurable: true\n });\n }\n },\n abort: (err)=>{\n if (res.writableFinished) return;\n res.destroy(err);\n },\n close: async ()=>{\n // if a waitUntil promise was passed, wait for it to resolve before\n // ending the response.\n if (waitUntilForEnd) {\n await waitUntilForEnd;\n }\n if (res.writableFinished) return;\n res.end();\n return finished.promise;\n }\n });\n}\nexport async function pipeToNodeResponse(readable, res, waitUntilForEnd) {\n try {\n // If the response has already errored, then just return now.\n const { errored, destroyed } = res;\n if (errored || destroyed) return;\n // Create a new AbortController so that we can abort the readable if the\n // client disconnects.\n const controller = createAbortController(res);\n const writer = createWriterFromResponse(res, waitUntilForEnd);\n await readable.pipeTo(writer, {\n signal: controller.signal\n });\n } catch (err) {\n // If this isn't related to an abort error, re-throw it.\n if (isAbortError(err)) return;\n throw Object.defineProperty(new Error('failed to pipe response', {\n cause: err\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E180\",\n enumerable: false,\n configurable: true\n });\n }\n}\n\n//# sourceMappingURL=pipe-readable.js.map","import { NextURL } from '../next-url';\nimport { toNodeOutgoingHttpHeaders, validateURL } from '../utils';\nimport { RemovedUAError, RemovedPageError } from '../error';\nimport { RequestCookies } from './cookies';\nexport const INTERNALS = Symbol('internal request');\n/**\n * This class extends the [Web `Request` API](https://developer.mozilla.org/docs/Web/API/Request) with additional convenience methods.\n *\n * Read more: [Next.js Docs: `NextRequest`](https://nextjs.org/docs/app/api-reference/functions/next-request)\n */ export class NextRequest extends Request {\n constructor(input, init = {}){\n const url = typeof input !== 'string' && 'url' in input ? input.url : String(input);\n validateURL(url);\n // node Request instance requires duplex option when a body\n // is present or it errors, we don't handle this for\n // Request being passed in since it would have already\n // errored if this wasn't configured\n if (process.env.NEXT_RUNTIME !== 'edge') {\n if (init.body && init.duplex !== 'half') {\n init.duplex = 'half';\n }\n }\n if (input instanceof Request) super(input, init);\n else super(url, init);\n const nextUrl = new NextURL(url, {\n headers: toNodeOutgoingHttpHeaders(this.headers),\n nextConfig: init.nextConfig\n });\n this[INTERNALS] = {\n cookies: new RequestCookies(this.headers),\n nextUrl,\n url: process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE ? url : nextUrl.toString()\n };\n }\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n cookies: this.cookies,\n nextUrl: this.nextUrl,\n url: this.url,\n // rest of props come from Request\n bodyUsed: this.bodyUsed,\n cache: this.cache,\n credentials: this.credentials,\n destination: this.destination,\n headers: Object.fromEntries(this.headers),\n integrity: this.integrity,\n keepalive: this.keepalive,\n method: this.method,\n mode: this.mode,\n redirect: this.redirect,\n referrer: this.referrer,\n referrerPolicy: this.referrerPolicy,\n signal: this.signal\n };\n }\n get cookies() {\n return this[INTERNALS].cookies;\n }\n get nextUrl() {\n return this[INTERNALS].nextUrl;\n }\n /**\n * @deprecated\n * `page` has been deprecated in favour of `URLPattern`.\n * Read more: https://nextjs.org/docs/messages/middleware-request-page\n */ get page() {\n throw new RemovedPageError();\n }\n /**\n * @deprecated\n * `ua` has been removed in favour of \\`userAgent\\` function.\n * Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n */ get ua() {\n throw new RemovedUAError();\n }\n get url() {\n return this[INTERNALS].url;\n }\n}\n\n//# sourceMappingURL=request.js.map","import { detectDomainLocale } from '../../shared/lib/i18n/detect-domain-locale';\nimport { formatNextPathnameInfo } from '../../shared/lib/router/utils/format-next-pathname-info';\nimport { getHostname } from '../../shared/lib/get-hostname';\nimport { getNextPathnameInfo } from '../../shared/lib/router/utils/get-next-pathname-info';\nconst REGEX_LOCALHOST_HOSTNAME = /^(?:127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\\[::1\\]|localhost)$/;\nfunction parseURL(url, base) {\n const parsed = new URL(String(url), base && String(base));\n if (REGEX_LOCALHOST_HOSTNAME.test(parsed.hostname)) {\n parsed.hostname = 'localhost';\n }\n return parsed;\n}\nconst Internal = Symbol('NextURLInternal');\nexport class NextURL {\n constructor(input, baseOrOpts, opts){\n let base;\n let options;\n if (typeof baseOrOpts === 'object' && 'pathname' in baseOrOpts || typeof baseOrOpts === 'string') {\n base = baseOrOpts;\n options = opts || {};\n } else {\n options = opts || baseOrOpts || {};\n }\n this[Internal] = {\n url: parseURL(input, base ?? options.base),\n options: options,\n basePath: ''\n };\n this.analyze();\n }\n analyze() {\n var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig, _this_Internal_domainLocale, _this_Internal_options_nextConfig_i18n1, _this_Internal_options_nextConfig1;\n const info = getNextPathnameInfo(this[Internal].url.pathname, {\n nextConfig: this[Internal].options.nextConfig,\n parseData: !process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,\n i18nProvider: this[Internal].options.i18nProvider\n });\n const hostname = getHostname(this[Internal].url, this[Internal].options.headers);\n this[Internal].domainLocale = this[Internal].options.i18nProvider ? this[Internal].options.i18nProvider.detectDomainLocale(hostname) : detectDomainLocale((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.domains, hostname);\n const defaultLocale = ((_this_Internal_domainLocale = this[Internal].domainLocale) == null ? void 0 : _this_Internal_domainLocale.defaultLocale) || ((_this_Internal_options_nextConfig1 = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n1 = _this_Internal_options_nextConfig1.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n1.defaultLocale);\n this[Internal].url.pathname = info.pathname;\n this[Internal].defaultLocale = defaultLocale;\n this[Internal].basePath = info.basePath ?? '';\n this[Internal].buildId = info.buildId;\n this[Internal].locale = info.locale ?? defaultLocale;\n this[Internal].trailingSlash = info.trailingSlash;\n }\n formatPathname() {\n return formatNextPathnameInfo({\n basePath: this[Internal].basePath,\n buildId: this[Internal].buildId,\n defaultLocale: !this[Internal].options.forceLocale ? this[Internal].defaultLocale : undefined,\n locale: this[Internal].locale,\n pathname: this[Internal].url.pathname,\n trailingSlash: this[Internal].trailingSlash\n });\n }\n formatSearch() {\n return this[Internal].url.search;\n }\n get buildId() {\n return this[Internal].buildId;\n }\n set buildId(buildId) {\n this[Internal].buildId = buildId;\n }\n get locale() {\n return this[Internal].locale ?? '';\n }\n set locale(locale) {\n var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig;\n if (!this[Internal].locale || !((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.locales.includes(locale))) {\n throw Object.defineProperty(new TypeError(`The NextURL configuration includes no locale \"${locale}\"`), \"__NEXT_ERROR_CODE\", {\n value: \"E597\",\n enumerable: false,\n configurable: true\n });\n }\n this[Internal].locale = locale;\n }\n get defaultLocale() {\n return this[Internal].defaultLocale;\n }\n get domainLocale() {\n return this[Internal].domainLocale;\n }\n get searchParams() {\n return this[Internal].url.searchParams;\n }\n get host() {\n return this[Internal].url.host;\n }\n set host(value) {\n this[Internal].url.host = value;\n }\n get hostname() {\n return this[Internal].url.hostname;\n }\n set hostname(value) {\n this[Internal].url.hostname = value;\n }\n get port() {\n return this[Internal].url.port;\n }\n set port(value) {\n this[Internal].url.port = value;\n }\n get protocol() {\n return this[Internal].url.protocol;\n }\n set protocol(value) {\n this[Internal].url.protocol = value;\n }\n get href() {\n const pathname = this.formatPathname();\n const search = this.formatSearch();\n return `${this.protocol}//${this.host}${pathname}${search}${this.hash}`;\n }\n set href(url) {\n this[Internal].url = parseURL(url);\n this.analyze();\n }\n get origin() {\n return this[Internal].url.origin;\n }\n get pathname() {\n return this[Internal].url.pathname;\n }\n set pathname(value) {\n this[Internal].url.pathname = value;\n }\n get hash() {\n return this[Internal].url.hash;\n }\n set hash(value) {\n this[Internal].url.hash = value;\n }\n get search() {\n return this[Internal].url.search;\n }\n set search(value) {\n this[Internal].url.search = value;\n }\n get password() {\n return this[Internal].url.password;\n }\n set password(value) {\n this[Internal].url.password = value;\n }\n get username() {\n return this[Internal].url.username;\n }\n set username(value) {\n this[Internal].url.username = value;\n }\n get basePath() {\n return this[Internal].basePath;\n }\n set basePath(value) {\n this[Internal].basePath = value.startsWith('/') ? value : `/${value}`;\n }\n toString() {\n return this.href;\n }\n toJSON() {\n return this.href;\n }\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n href: this.href,\n origin: this.origin,\n protocol: this.protocol,\n username: this.username,\n password: this.password,\n host: this.host,\n hostname: this.hostname,\n port: this.port,\n pathname: this.pathname,\n search: this.search,\n searchParams: this.searchParams,\n hash: this.hash\n };\n }\n clone() {\n return new NextURL(String(this), this[Internal].options);\n }\n}\n\n//# sourceMappingURL=next-url.js.map","import { removeTrailingSlash } from './remove-trailing-slash';\nimport { addPathPrefix } from './add-path-prefix';\nimport { addPathSuffix } from './add-path-suffix';\nimport { addLocale } from './add-locale';\nexport function formatNextPathnameInfo(info) {\n let pathname = addLocale(info.pathname, info.locale, info.buildId ? undefined : info.defaultLocale, info.ignorePrefix);\n if (info.buildId || !info.trailingSlash) {\n pathname = removeTrailingSlash(pathname);\n }\n if (info.buildId) {\n pathname = addPathSuffix(addPathPrefix(pathname, `/_next/data/${info.buildId}`), info.pathname === '/' ? 'index.json' : '.json');\n }\n pathname = addPathPrefix(pathname, info.basePath);\n return !info.buildId && info.trailingSlash ? !pathname.endsWith('/') ? addPathSuffix(pathname, '/') : pathname : removeTrailingSlash(pathname);\n}\n\n//# sourceMappingURL=format-next-pathname-info.js.map","import { parsePath } from './parse-path';\n/**\n * Similarly to `addPathPrefix`, this function adds a suffix at the end on the\n * provided path. It also works only for paths ensuring the argument starts\n * with a slash.\n */ export function addPathSuffix(path, suffix) {\n if (!path.startsWith('/') || !suffix) {\n return path;\n }\n const { pathname, query, hash } = parsePath(path);\n return `${pathname}${suffix}${query}${hash}`;\n}\n\n//# sourceMappingURL=add-path-suffix.js.map","/**\n * Takes an object with a hostname property (like a parsed URL) and some\n * headers that may contain Host and returns the preferred hostname.\n * @param parsed An object containing a hostname property.\n * @param headers A dictionary with headers containing a `host`.\n */ export function getHostname(parsed, headers) {\n // Get the hostname from the headers if it exists, otherwise use the parsed\n // hostname.\n let hostname;\n if (headers?.host && !Array.isArray(headers.host)) {\n hostname = headers.host.toString().split(':', 1)[0];\n } else if (parsed.hostname) {\n hostname = parsed.hostname;\n } else return;\n return hostname.toLowerCase();\n}\n\n//# sourceMappingURL=get-hostname.js.map","/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */ export function removeTrailingSlash(route) {\n return route.replace(/\\/$/, '') || '/';\n}\n\n//# sourceMappingURL=remove-trailing-slash.js.map","import { NEXT_INTERCEPTION_MARKER_PREFIX, NEXT_QUERY_PARAM_PREFIX } from '../../lib/constants';\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */ export function fromNodeOutgoingHttpHeaders(nodeHeaders) {\n const headers = new Headers();\n for (let [key, value] of Object.entries(nodeHeaders)){\n const values = Array.isArray(value) ? value : [\n value\n ];\n for (let v of values){\n if (typeof v === 'undefined') continue;\n if (typeof v === 'number') {\n v = v.toString();\n }\n headers.append(key, v);\n }\n }\n return headers;\n}\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/ export function splitCookiesString(cookiesString) {\n var cookiesStrings = [];\n var pos = 0;\n var start;\n var ch;\n var lastComma;\n var nextStart;\n var cookiesSeparatorFound;\n function skipWhitespace() {\n while(pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))){\n pos += 1;\n }\n return pos < cookiesString.length;\n }\n function notSpecialChar() {\n ch = cookiesString.charAt(pos);\n return ch !== '=' && ch !== ';' && ch !== ',';\n }\n while(pos < cookiesString.length){\n start = pos;\n cookiesSeparatorFound = false;\n while(skipWhitespace()){\n ch = cookiesString.charAt(pos);\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos;\n pos += 1;\n skipWhitespace();\n nextStart = pos;\n while(pos < cookiesString.length && notSpecialChar()){\n pos += 1;\n }\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true;\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart;\n cookiesStrings.push(cookiesString.substring(start, lastComma));\n start = pos;\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1;\n }\n } else {\n pos += 1;\n }\n }\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length));\n }\n }\n return cookiesStrings;\n}\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */ export function toNodeOutgoingHttpHeaders(headers) {\n const nodeHeaders = {};\n const cookies = [];\n if (headers) {\n for (const [key, value] of headers.entries()){\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value));\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies;\n } else {\n nodeHeaders[key] = value;\n }\n }\n }\n return nodeHeaders;\n}\n/**\n * Validate the correctness of a user-provided URL.\n */ export function validateURL(url) {\n try {\n return String(new URL(String(url)));\n } catch (error) {\n throw Object.defineProperty(new Error(`URL is malformed \"${String(url)}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`, {\n cause: error\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E61\",\n enumerable: false,\n configurable: true\n });\n }\n}\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */ export function normalizeNextQueryParam(key) {\n const prefixes = [\n NEXT_QUERY_PARAM_PREFIX,\n NEXT_INTERCEPTION_MARKER_PREFIX\n ];\n for (const prefix of prefixes){\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length);\n }\n }\n return null;\n}\n\n//# sourceMappingURL=utils.js.map","/**\n * This file provides some helpers that should be used in conjunction with\n * explicit environment checks. When combined with the environment checks, it\n * will ensure that the correct typings are used as well as enable code\n * elimination.\n */ /**\n * Type guard to determine if a request is a WebNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base request is a WebNextRequest.\n */ export const isWebNextRequest = (req)=>process.env.NEXT_RUNTIME === 'edge';\n/**\n * Type guard to determine if a response is a WebNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base response is a WebNextResponse.\n */ export const isWebNextResponse = (res)=>process.env.NEXT_RUNTIME === 'edge';\n/**\n * Type guard to determine if a request is a NodeNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base request is a NodeNextRequest.\n */ export const isNodeNextRequest = (req)=>process.env.NEXT_RUNTIME !== 'edge';\n/**\n * Type guard to determine if a response is a NodeNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base response is a NodeNextResponse.\n */ export const isNodeNextResponse = (res)=>process.env.NEXT_RUNTIME !== 'edge';\n\n//# sourceMappingURL=helpers.js.map","import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_NAV_DEPLOYMENT_ID_HEADER = 'x-nextjs-deployment-id'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\nexport const NEXT_RESUME_STATE_LENGTH_HEADER = 'x-next-resume-state-length'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\nexport const NEXT_CACHE_ROOT_PARAM_TAG_ID = '_N_RP_'\n\n// in seconds\nexport const CACHE_ONE_YEAR_SECONDS = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n","/**\n * Node in the doubly-linked list used for LRU tracking.\n * Each node represents a cache entry with bidirectional pointers.\n */ class LRUNode {\n constructor(key, data, size){\n this.prev = null;\n this.next = null;\n this.key = key;\n this.data = data;\n this.size = size;\n }\n}\n/**\n * Sentinel node used for head/tail boundaries.\n * These nodes don't contain actual cache data but simplify list operations.\n */ class SentinelNode {\n constructor(){\n this.prev = null;\n this.next = null;\n }\n}\n/**\n * LRU (Least Recently Used) Cache implementation using a doubly-linked list\n * and hash map for O(1) operations.\n *\n * Algorithm:\n * - Uses a doubly-linked list to maintain access order (most recent at head)\n * - Hash map provides O(1) key-to-node lookup\n * - Sentinel head/tail nodes simplify edge case handling\n * - Size-based eviction supports custom size calculation functions\n *\n * Data Structure Layout:\n * HEAD <-> [most recent] <-> ... <-> [least recent] <-> TAIL\n *\n * Operations:\n * - get(): Move accessed node to head (mark as most recent)\n * - set(): Add new node at head, evict from tail if over capacity\n * - Eviction: Remove least recent node (tail.prev) when size exceeds limit\n */ export class LRUCache {\n constructor(maxSize, calculateSize, onEvict){\n this.cache = new Map();\n this.totalSize = 0;\n this.maxSize = maxSize;\n this.calculateSize = calculateSize;\n this.onEvict = onEvict;\n // Create sentinel nodes to simplify doubly-linked list operations\n // HEAD <-> TAIL (empty list)\n this.head = new SentinelNode();\n this.tail = new SentinelNode();\n this.head.next = this.tail;\n this.tail.prev = this.head;\n }\n /**\n * Adds a node immediately after the head (marks as most recently used).\n * Used when inserting new items or when an item is accessed.\n * PRECONDITION: node must be disconnected (prev/next should be null)\n */ addToHead(node) {\n node.prev = this.head;\n node.next = this.head.next;\n // head.next is always non-null (points to tail or another node)\n this.head.next.prev = node;\n this.head.next = node;\n }\n /**\n * Removes a node from its current position in the doubly-linked list.\n * Updates the prev/next pointers of adjacent nodes to maintain list integrity.\n * PRECONDITION: node must be connected (prev/next are non-null)\n */ removeNode(node) {\n // Connected nodes always have non-null prev/next\n node.prev.next = node.next;\n node.next.prev = node.prev;\n }\n /**\n * Moves an existing node to the head position (marks as most recently used).\n * This is the core LRU operation - accessed items become most recent.\n */ moveToHead(node) {\n this.removeNode(node);\n this.addToHead(node);\n }\n /**\n * Removes and returns the least recently used node (the one before tail).\n * This is called during eviction when the cache exceeds capacity.\n * PRECONDITION: cache is not empty (ensured by caller)\n */ removeTail() {\n const lastNode = this.tail.prev;\n // tail.prev is always non-null and always LRUNode when cache is not empty\n this.removeNode(lastNode);\n return lastNode;\n }\n /**\n * Sets a key-value pair in the cache.\n * If the key exists, updates the value and moves to head.\n * If new, adds at head and evicts from tail if necessary.\n *\n * Time Complexity:\n * - O(1) for uniform item sizes\n * - O(k) where k is the number of items evicted (can be O(N) for variable sizes)\n */ set(key, value) {\n const size = (this.calculateSize == null ? void 0 : this.calculateSize.call(this, value)) ?? 1;\n if (size <= 0) {\n throw Object.defineProperty(new Error(`LRUCache: calculateSize returned ${size}, but size must be > 0. ` + `Items with size 0 would never be evicted, causing unbounded cache growth.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1045\",\n enumerable: false,\n configurable: true\n });\n }\n if (size > this.maxSize) {\n console.warn('Single item size exceeds maxSize');\n return false;\n }\n const existing = this.cache.get(key);\n if (existing) {\n // Update existing node: adjust size and move to head (most recent)\n existing.data = value;\n this.totalSize = this.totalSize - existing.size + size;\n existing.size = size;\n this.moveToHead(existing);\n } else {\n // Add new node at head (most recent position)\n const newNode = new LRUNode(key, value, size);\n this.cache.set(key, newNode);\n this.addToHead(newNode);\n this.totalSize += size;\n }\n // Evict least recently used items until under capacity\n while(this.totalSize > this.maxSize && this.cache.size > 0){\n const tail = this.removeTail();\n this.cache.delete(tail.key);\n this.totalSize -= tail.size;\n this.onEvict == null ? void 0 : this.onEvict.call(this, tail.key, tail.data);\n }\n return true;\n }\n /**\n * Checks if a key exists in the cache.\n * This is a pure query operation - does NOT update LRU order.\n *\n * Time Complexity: O(1)\n */ has(key) {\n return this.cache.has(key);\n }\n /**\n * Retrieves a value by key and marks it as most recently used.\n * Moving to head maintains the LRU property for future evictions.\n *\n * Time Complexity: O(1)\n */ get(key) {\n const node = this.cache.get(key);\n if (!node) return undefined;\n // Mark as most recently used by moving to head\n this.moveToHead(node);\n return node.data;\n }\n /**\n * Returns an iterator over the cache entries. The order is outputted in the\n * order of most recently used to least recently used.\n */ *[Symbol.iterator]() {\n let current = this.head.next;\n while(current && current !== this.tail){\n // Between head and tail, current is always LRUNode\n const node = current;\n yield [\n node.key,\n node.data\n ];\n current = current.next;\n }\n }\n /**\n * Removes a specific key from the cache.\n * Updates both the hash map and doubly-linked list.\n *\n * Note: This is an explicit removal and does NOT trigger the `onEvict`\n * callback. Use this for intentional deletions where eviction tracking\n * is not needed.\n *\n * Time Complexity: O(1)\n */ remove(key) {\n const node = this.cache.get(key);\n if (!node) return;\n this.removeNode(node);\n this.cache.delete(key);\n this.totalSize -= node.size;\n }\n /**\n * Returns the number of items in the cache.\n */ get size() {\n return this.cache.size;\n }\n /**\n * Returns the current total size of all cached items.\n * This uses the custom size calculation if provided.\n */ get currentSize() {\n return this.totalSize;\n }\n}\n\n//# sourceMappingURL=lru-cache.js.map","import { DetachedPromise } from './detached-promise';\n/**\n * A wrapper for a function that will only allow one call to the function to\n * execute at a time.\n */ export class Batcher {\n constructor(cacheKeyFn, /**\n * A function that will be called to schedule the wrapped function to be\n * executed. This defaults to a function that will execute the function\n * immediately.\n */ schedulerFn = (fn)=>fn()){\n this.cacheKeyFn = cacheKeyFn;\n this.schedulerFn = schedulerFn;\n this.pending = new Map();\n }\n static create(options) {\n return new Batcher(options == null ? void 0 : options.cacheKeyFn, options == null ? void 0 : options.schedulerFn);\n }\n /**\n * Wraps a function in a promise that will be resolved or rejected only once\n * for a given key. This will allow multiple calls to the function to be\n * made, but only one will be executed at a time. The result of the first\n * call will be returned to all callers.\n *\n * @param key the key to use for the cache\n * @param fn the function to wrap\n * @returns a promise that resolves to the result of the function\n */ async batch(key, fn) {\n const cacheKey = this.cacheKeyFn ? await this.cacheKeyFn(key) : key;\n if (cacheKey === null) {\n return fn({\n resolve: (value)=>Promise.resolve(value),\n key\n });\n }\n const pending = this.pending.get(cacheKey);\n if (pending) return pending;\n const { promise, resolve, reject } = new DetachedPromise();\n this.pending.set(cacheKey, promise);\n this.schedulerFn(async ()=>{\n try {\n const result = await fn({\n resolve,\n key\n });\n // Resolving a promise multiple times is a no-op, so we can safely\n // resolve all pending promises with the same result.\n resolve(result);\n } catch (err) {\n reject(err);\n } finally{\n this.pending.delete(cacheKey);\n }\n });\n return promise;\n }\n}\n\n//# sourceMappingURL=batcher.js.map","// ISC License\n// Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\n// Permission to use, copy, modify, and/or distribute this software for any\n// purpose with or without fee is hereby granted, provided that the above\n// copyright notice and this permission notice appear in all copies.\n// THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n// https://github.com/alexeyraspopov/picocolors/blob/b6261487e7b81aaab2440e397a356732cad9e342/picocolors.js#L1\nvar _globalThis;\nconst { env, stdout } = ((_globalThis = globalThis) == null ? void 0 : _globalThis.process) ?? {};\nconst enabled = env && !env.NO_COLOR && (env.FORCE_COLOR || (stdout == null ? void 0 : stdout.isTTY) && !env.CI && env.TERM !== 'dumb');\nconst replaceClose = (str, close, replace, index)=>{\n const start = str.substring(0, index) + replace;\n const end = str.substring(index + close.length);\n const nextIndex = end.indexOf(close);\n return ~nextIndex ? start + replaceClose(end, close, replace, nextIndex) : start + end;\n};\nconst formatter = (open, close, replace = open)=>{\n if (!enabled) return String;\n return (input)=>{\n const string = '' + input;\n const index = string.indexOf(close, open.length);\n return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;\n };\n};\nexport const reset = enabled ? (s)=>`\\x1b[0m${s}\\x1b[0m` : String;\nexport const bold = formatter('\\x1b[1m', '\\x1b[22m', '\\x1b[22m\\x1b[1m');\nexport const dim = formatter('\\x1b[2m', '\\x1b[22m', '\\x1b[22m\\x1b[2m');\nexport const italic = formatter('\\x1b[3m', '\\x1b[23m');\nexport const underline = formatter('\\x1b[4m', '\\x1b[24m');\nexport const inverse = formatter('\\x1b[7m', '\\x1b[27m');\nexport const hidden = formatter('\\x1b[8m', '\\x1b[28m');\nexport const strikethrough = formatter('\\x1b[9m', '\\x1b[29m');\nexport const black = formatter('\\x1b[30m', '\\x1b[39m');\nexport const red = formatter('\\x1b[31m', '\\x1b[39m');\nexport const green = formatter('\\x1b[32m', '\\x1b[39m');\nexport const yellow = formatter('\\x1b[33m', '\\x1b[39m');\nexport const blue = formatter('\\x1b[34m', '\\x1b[39m');\nexport const magenta = formatter('\\x1b[35m', '\\x1b[39m');\nexport const purple = formatter('\\x1b[38;2;173;127;168m', '\\x1b[39m');\nexport const cyan = formatter('\\x1b[36m', '\\x1b[39m');\nexport const white = formatter('\\x1b[37m', '\\x1b[39m');\nexport const gray = formatter('\\x1b[90m', '\\x1b[39m');\nexport const bgBlack = formatter('\\x1b[40m', '\\x1b[49m');\nexport const bgRed = formatter('\\x1b[41m', '\\x1b[49m');\nexport const bgGreen = formatter('\\x1b[42m', '\\x1b[49m');\nexport const bgYellow = formatter('\\x1b[43m', '\\x1b[49m');\nexport const bgBlue = formatter('\\x1b[44m', '\\x1b[49m');\nexport const bgMagenta = formatter('\\x1b[45m', '\\x1b[49m');\nexport const bgCyan = formatter('\\x1b[46m', '\\x1b[49m');\nexport const bgWhite = formatter('\\x1b[47m', '\\x1b[49m');\n\n//# sourceMappingURL=picocolors.js.map","import { CachedRouteKind, IncrementalCacheKind } from './types';\nimport RenderResult from '../render-result';\nimport { RouteKind } from '../route-kind';\nimport { HTML_CONTENT_TYPE_HEADER } from '../../lib/constants';\nexport async function fromResponseCacheEntry(cacheEntry) {\n var _cacheEntry_value, _cacheEntry_value1;\n return {\n ...cacheEntry,\n value: ((_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) === CachedRouteKind.PAGES ? {\n kind: CachedRouteKind.PAGES,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n pageData: cacheEntry.value.pageData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status\n } : ((_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind) === CachedRouteKind.APP_PAGE ? {\n kind: CachedRouteKind.APP_PAGE,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n postponed: cacheEntry.value.postponed,\n rscData: cacheEntry.value.rscData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status,\n segmentData: cacheEntry.value.segmentData\n } : cacheEntry.value\n };\n}\nexport async function toResponseCacheEntry(response) {\n var _response_value, _response_value1;\n if (!response) return null;\n return {\n isMiss: response.isMiss,\n isStale: response.isStale,\n cacheControl: response.cacheControl,\n isFallback: response.isFallback,\n value: ((_response_value = response.value) == null ? void 0 : _response_value.kind) === CachedRouteKind.PAGES ? {\n kind: CachedRouteKind.PAGES,\n html: RenderResult.fromStatic(response.value.html, HTML_CONTENT_TYPE_HEADER),\n pageData: response.value.pageData,\n headers: response.value.headers,\n status: response.value.status\n } : ((_response_value1 = response.value) == null ? void 0 : _response_value1.kind) === CachedRouteKind.APP_PAGE ? {\n kind: CachedRouteKind.APP_PAGE,\n html: RenderResult.fromStatic(response.value.html, HTML_CONTENT_TYPE_HEADER),\n rscData: response.value.rscData,\n headers: response.value.headers,\n status: response.value.status,\n postponed: response.value.postponed,\n segmentData: response.value.segmentData\n } : response.value\n };\n}\nexport function routeKindToIncrementalCacheKind(routeKind) {\n switch(routeKind){\n case RouteKind.PAGES:\n return IncrementalCacheKind.PAGES;\n case RouteKind.APP_PAGE:\n return IncrementalCacheKind.APP_PAGE;\n case RouteKind.IMAGE:\n return IncrementalCacheKind.IMAGE;\n case RouteKind.APP_ROUTE:\n return IncrementalCacheKind.APP_ROUTE;\n case RouteKind.PAGES_API:\n // Pages Router API routes are not cached in the incremental cache.\n throw Object.defineProperty(new Error(`Unexpected route kind ${routeKind}`), \"__NEXT_ERROR_CODE\", {\n value: \"E64\",\n enumerable: false,\n configurable: true\n });\n default:\n return routeKind;\n }\n}\n\n//# sourceMappingURL=utils.js.map","import { bold, green, magenta, red, yellow, white } from '../../lib/picocolors';\nimport { LRUCache } from '../../server/lib/lru-cache';\nexport const prefixes = {\n wait: white(bold('○')),\n error: red(bold('⨯')),\n warn: yellow(bold('⚠')),\n ready: '▲',\n info: white(bold(' ')),\n event: green(bold('✓')),\n trace: magenta(bold('»'))\n};\nconst LOGGING_METHOD = {\n log: 'log',\n warn: 'warn',\n error: 'error'\n};\nfunction prefixedLog(prefixType, ...message) {\n if ((message[0] === '' || message[0] === undefined) && message.length === 1) {\n message.shift();\n }\n const consoleMethod = prefixType in LOGGING_METHOD ? LOGGING_METHOD[prefixType] : 'log';\n const prefix = prefixes[prefixType];\n // If there's no message, don't print the prefix but a new line\n if (message.length === 0) {\n console[consoleMethod]('');\n } else {\n // Ensure if there's ANSI escape codes it's concatenated into one string.\n // Chrome DevTool can only handle color if it's in one string.\n if (message.length === 1 && typeof message[0] === 'string') {\n console[consoleMethod](prefix + ' ' + message[0]);\n } else {\n console[consoleMethod](prefix, ...message);\n }\n }\n}\nexport function bootstrap(message) {\n console.log(message);\n}\nexport function wait(...message) {\n prefixedLog('wait', ...message);\n}\nexport function error(...message) {\n prefixedLog('error', ...message);\n}\nexport function warn(...message) {\n prefixedLog('warn', ...message);\n}\nexport function ready(...message) {\n prefixedLog('ready', ...message);\n}\nexport function info(...message) {\n prefixedLog('info', ...message);\n}\nexport function event(...message) {\n prefixedLog('event', ...message);\n}\nexport function trace(...message) {\n prefixedLog('trace', ...message);\n}\nconst warnOnceCache = new LRUCache(10000, (value)=>value.length);\nexport function warnOnce(...message) {\n const key = message.join(' ');\n if (!warnOnceCache.has(key)) {\n warnOnceCache.set(key, key);\n warn(...message);\n }\n}\nconst errorOnceCache = new LRUCache(10000, (value)=>value.length);\nexport function errorOnce(...message) {\n const key = message.join(' ');\n if (!errorOnceCache.has(key)) {\n errorOnceCache.set(key, key);\n error(...message);\n }\n}\n\n//# sourceMappingURL=log.js.map","import { Batcher } from '../../lib/batcher';\nimport { LRUCache } from '../lib/lru-cache';\nimport { warnOnce } from '../../build/output/log';\nimport { scheduleOnNextTick } from '../../lib/scheduler';\nimport { fromResponseCacheEntry, routeKindToIncrementalCacheKind, toResponseCacheEntry } from './utils';\n/**\n * Parses an environment variable as a positive integer, returning the fallback\n * if the value is missing, not a number, or not positive.\n */ function parsePositiveInt(envValue, fallback) {\n if (!envValue) return fallback;\n const parsed = parseInt(envValue, 10);\n return Number.isFinite(parsed) && parsed > 0 ? parsed : fallback;\n}\n/**\n * Default TTL (in milliseconds) for minimal mode response cache entries.\n * Used for cache hit validation as a fallback for providers that don't\n * send the x-invocation-id header yet.\n *\n * 10 seconds chosen because:\n * - Long enough to dedupe rapid successive requests (e.g., page + data)\n * - Short enough to not serve stale data across unrelated requests\n *\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_TTL` environment variable.\n */ const DEFAULT_TTL_MS = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL, 10000);\n/**\n * Default maximum number of entries in the response cache.\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE` environment variable.\n */ const DEFAULT_MAX_SIZE = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE, 150);\n/**\n * Separator used in compound cache keys to join pathname and invocationID.\n * Using null byte (\\0) since it cannot appear in valid URL paths or UUIDs.\n */ const KEY_SEPARATOR = '\\0';\n/**\n * Sentinel value used for TTL-based cache entries (when invocationID is undefined).\n * Chosen to be a clearly reserved marker for internal cache keys.\n */ const TTL_SENTINEL = '__ttl_sentinel__';\n/**\n * Creates a compound cache key from pathname and invocationID.\n */ function createCacheKey(pathname, invocationID) {\n return `${pathname}${KEY_SEPARATOR}${invocationID ?? TTL_SENTINEL}`;\n}\n/**\n * Extracts the invocationID from a compound cache key.\n * Returns undefined if the key used TTL_SENTINEL.\n */ function extractInvocationID(compoundKey) {\n const separatorIndex = compoundKey.lastIndexOf(KEY_SEPARATOR);\n if (separatorIndex === -1) return undefined;\n const invocationID = compoundKey.slice(separatorIndex + 1);\n return invocationID === TTL_SENTINEL ? undefined : invocationID;\n}\nexport * from './types';\nexport default class ResponseCache {\n constructor(minimal_mode, maxSize = DEFAULT_MAX_SIZE, ttl = DEFAULT_TTL_MS){\n this.getBatcher = Batcher.create({\n // Ensure on-demand revalidate doesn't block normal requests, it should be\n // safe to run an on-demand revalidate for the same key as a normal request.\n cacheKeyFn: ({ key, isOnDemandRevalidate })=>`${key}-${isOnDemandRevalidate ? '1' : '0'}`,\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick\n });\n this.revalidateBatcher = Batcher.create({\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick\n });\n /**\n * Set of invocation IDs that have had cache entries evicted.\n * Used to detect when the cache size may be too small.\n * Bounded to prevent memory growth.\n */ this.evictedInvocationIDs = new Set();\n this.minimal_mode = minimal_mode;\n this.maxSize = maxSize;\n this.ttl = ttl;\n // Create the LRU cache with eviction tracking\n this.cache = new LRUCache(maxSize, undefined, (compoundKey)=>{\n const invocationID = extractInvocationID(compoundKey);\n if (invocationID) {\n // Bound to 100 entries to prevent unbounded memory growth.\n // FIFO eviction is acceptable here because:\n // 1. Invocations are short-lived (single request lifecycle), so older\n // invocations are unlikely to still be active after 100 newer ones\n // 2. This warning mechanism is best-effort for developer guidance—\n // missing occasional eviction warnings doesn't affect correctness\n // 3. If a long-running invocation is somehow evicted and then has\n // another cache entry evicted, it will simply be re-added\n if (this.evictedInvocationIDs.size >= 100) {\n const first = this.evictedInvocationIDs.values().next().value;\n if (first) this.evictedInvocationIDs.delete(first);\n }\n this.evictedInvocationIDs.add(invocationID);\n }\n });\n }\n /**\n * Gets the response cache entry for the given key.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @returns The response cache entry.\n */ async get(key, responseGenerator, context) {\n // If there is no key for the cache, we can't possibly look this up in the\n // cache so just return the result of the response generator.\n if (!key) {\n return responseGenerator({\n hasResolved: false,\n previousCacheEntry: null\n });\n }\n // Check minimal mode cache before doing any other work.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID);\n const cachedItem = this.cache.get(cacheKey);\n if (cachedItem) {\n // With invocationID: exact match found - always a hit\n // With TTL mode: must check expiration\n if (context.invocationID !== undefined) {\n return toResponseCacheEntry(cachedItem.entry);\n }\n // TTL mode: check expiration\n const now = Date.now();\n if (cachedItem.expiresAt > now) {\n return toResponseCacheEntry(cachedItem.entry);\n }\n // TTL expired - clean up\n this.cache.remove(cacheKey);\n }\n // Warn if this invocation had entries evicted - indicates cache may be too small.\n if (context.invocationID && this.evictedInvocationIDs.has(context.invocationID)) {\n warnOnce(`Response cache entry was evicted for invocation ${context.invocationID}. ` + `Consider increasing NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE (current: ${this.maxSize}).`);\n }\n }\n const { incrementalCache, isOnDemandRevalidate = false, isFallback = false, isRoutePPREnabled = false, isPrefetch = false, waitUntil, routeKind, invocationID } = context;\n const response = await this.getBatcher.batch({\n key,\n isOnDemandRevalidate\n }, ({ resolve })=>{\n const promise = this.handleGet(key, responseGenerator, {\n incrementalCache,\n isOnDemandRevalidate,\n isFallback,\n isRoutePPREnabled,\n isPrefetch,\n routeKind,\n invocationID\n }, resolve);\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise);\n return promise;\n });\n return toResponseCacheEntry(response);\n }\n /**\n * Handles the get request for the response cache.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @param resolve - The resolve function to use to resolve the response cache entry.\n * @returns The response cache entry.\n */ async handleGet(key, responseGenerator, context, resolve) {\n let previousIncrementalCacheEntry = null;\n let resolved = false;\n try {\n // Get the previous cache entry if not in minimal mode\n previousIncrementalCacheEntry = !this.minimal_mode ? await context.incrementalCache.get(key, {\n kind: routeKindToIncrementalCacheKind(context.routeKind),\n isRoutePPREnabled: context.isRoutePPREnabled,\n isFallback: context.isFallback\n }) : null;\n if (previousIncrementalCacheEntry && !context.isOnDemandRevalidate) {\n resolve(previousIncrementalCacheEntry);\n resolved = true;\n if (!previousIncrementalCacheEntry.isStale || context.isPrefetch) {\n // The cached value is still valid, so we don't need to update it yet.\n return previousIncrementalCacheEntry;\n }\n }\n // Revalidate the cache entry\n const incrementalResponseCacheEntry = await this.revalidate(key, context.incrementalCache, context.isRoutePPREnabled, context.isFallback, responseGenerator, previousIncrementalCacheEntry, previousIncrementalCacheEntry !== null && !context.isOnDemandRevalidate, undefined, context.invocationID);\n // Handle null response\n if (!incrementalResponseCacheEntry) {\n // Remove the cache item if it was set so we don't use it again.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID);\n this.cache.remove(cacheKey);\n }\n return null;\n }\n // Resolve for on-demand revalidation or if not already resolved\n if (context.isOnDemandRevalidate && !resolved) {\n return incrementalResponseCacheEntry;\n }\n return incrementalResponseCacheEntry;\n } catch (err) {\n // If we've already resolved the cache entry, we can't reject as we\n // already resolved the cache entry so log the error here.\n if (resolved) {\n console.error(err);\n return null;\n }\n throw err;\n }\n }\n /**\n * Revalidates the cache entry for the given key.\n *\n * @param key - The key to revalidate the cache entry for.\n * @param incrementalCache - The incremental cache to use to revalidate the cache entry.\n * @param isRoutePPREnabled - Whether the route is PPR enabled.\n * @param isFallback - Whether the route is a fallback.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param previousIncrementalCacheEntry - The previous cache entry to use to revalidate the cache entry.\n * @param hasResolved - Whether the response has been resolved.\n * @param waitUntil - Optional function to register background work.\n * @param invocationID - The invocation ID for cache key scoping.\n * @returns The revalidated cache entry.\n */ async revalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, waitUntil, invocationID) {\n return this.revalidateBatcher.batch(key, ()=>{\n const promise = this.handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID);\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise);\n return promise;\n });\n }\n async handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID) {\n try {\n // Generate the response cache entry using the response generator.\n const responseCacheEntry = await responseGenerator({\n hasResolved,\n previousCacheEntry: previousIncrementalCacheEntry,\n isRevalidating: true\n });\n if (!responseCacheEntry) {\n return null;\n }\n // Convert the response cache entry to an incremental response cache entry.\n const incrementalResponseCacheEntry = await fromResponseCacheEntry({\n ...responseCacheEntry,\n isMiss: !previousIncrementalCacheEntry\n });\n // We want to persist the result only if it has a cache control value\n // defined.\n if (incrementalResponseCacheEntry.cacheControl) {\n if (this.minimal_mode) {\n // Set TTL expiration for cache hit validation. Entries are validated\n // by invocationID when available, with TTL as a fallback for providers\n // that don't send x-invocation-id. Memory is managed by LRU eviction.\n const cacheKey = createCacheKey(key, invocationID);\n this.cache.set(cacheKey, {\n entry: incrementalResponseCacheEntry,\n expiresAt: Date.now() + this.ttl\n });\n } else {\n await incrementalCache.set(key, incrementalResponseCacheEntry.value, {\n cacheControl: incrementalResponseCacheEntry.cacheControl,\n isRoutePPREnabled,\n isFallback\n });\n }\n }\n return incrementalResponseCacheEntry;\n } catch (err) {\n // When a path is erroring we automatically re-set the existing cache\n // with new revalidate and expire times to prevent non-stop retrying.\n if (previousIncrementalCacheEntry == null ? void 0 : previousIncrementalCacheEntry.cacheControl) {\n const revalidate = Math.min(Math.max(previousIncrementalCacheEntry.cacheControl.revalidate || 3, 3), 30);\n const expire = previousIncrementalCacheEntry.cacheControl.expire === undefined ? undefined : Math.max(revalidate + 3, previousIncrementalCacheEntry.cacheControl.expire);\n await incrementalCache.set(key, previousIncrementalCacheEntry.value, {\n cacheControl: {\n revalidate: revalidate,\n expire: expire\n },\n isRoutePPREnabled,\n isFallback\n });\n }\n // We haven't resolved yet, so let's throw to indicate an error.\n throw err;\n }\n }\n}\n\n//# sourceMappingURL=index.js.map","/**\n * Describes the different fallback modes that a given page can have.\n */\nexport const enum FallbackMode {\n /**\n * A BLOCKING_STATIC_RENDER fallback will block the request until the page is\n * generated. No fallback page will be rendered, and users will have to wait\n * to render the page.\n */\n BLOCKING_STATIC_RENDER = 'BLOCKING_STATIC_RENDER',\n\n /**\n * When set to PRERENDER, a fallback page will be sent to users in place of\n * forcing them to wait for the page to be generated. This allows the user to\n * see a rendered page earlier.\n */\n PRERENDER = 'PRERENDER',\n\n /**\n * When set to NOT_FOUND, pages that are not already prerendered will result\n * in a not found response.\n */\n NOT_FOUND = 'NOT_FOUND',\n}\n\n/**\n * The fallback value returned from the `getStaticPaths` function.\n */\nexport type GetStaticPathsFallback = boolean | 'blocking'\n\n/**\n * Parses the fallback field from the prerender manifest.\n *\n * @param fallbackField The fallback field from the prerender manifest.\n * @returns The fallback mode.\n */\nexport function parseFallbackField(\n fallbackField: string | boolean | null | undefined\n): FallbackMode | undefined {\n if (typeof fallbackField === 'string') {\n return FallbackMode.PRERENDER\n } else if (fallbackField === null) {\n return FallbackMode.BLOCKING_STATIC_RENDER\n } else if (fallbackField === false) {\n return FallbackMode.NOT_FOUND\n } else if (fallbackField === undefined) {\n return undefined\n } else {\n throw new Error(\n `Invalid fallback option: ${fallbackField}. Fallback option must be a string, null, undefined, or false.`\n )\n }\n}\n\nexport function fallbackModeToFallbackField(\n fallback: FallbackMode,\n page: string | undefined\n): string | false | null {\n switch (fallback) {\n case FallbackMode.BLOCKING_STATIC_RENDER:\n return null\n case FallbackMode.NOT_FOUND:\n return false\n case FallbackMode.PRERENDER:\n if (!page) {\n throw new Error(\n `Invariant: expected a page to be provided when fallback mode is \"${fallback}\"`\n )\n }\n\n return page\n default:\n throw new Error(`Invalid fallback mode: ${fallback}`)\n }\n}\n\n/**\n * Parses the fallback from the static paths result.\n *\n * @param result The result from the static paths function.\n * @returns The fallback mode.\n */\nexport function parseStaticPathsResult(\n result: GetStaticPathsFallback\n): FallbackMode {\n if (result === true) {\n return FallbackMode.PRERENDER\n } else if (result === 'blocking') {\n return FallbackMode.BLOCKING_STATIC_RENDER\n } else {\n return FallbackMode.NOT_FOUND\n }\n}\n","(()=>{\"use strict\";var e={695:e=>{\n/*!\n * fresh\n * Copyright(c) 2012 TJ Holowaychuk\n * Copyright(c) 2016-2017 Douglas Christopher Wilson\n * MIT Licensed\n */\nvar r=/(?:^|,)\\s*?no-cache\\s*?(?:,|$)/;e.exports=fresh;function fresh(e,a){var t=e[\"if-modified-since\"];var s=e[\"if-none-match\"];if(!t&&!s){return false}var i=e[\"cache-control\"];if(i&&r.test(i)){return false}if(s&&s!==\"*\"){var f=a[\"etag\"];if(!f){return false}var n=true;var u=parseTokenList(s);for(var _=0;_{\n if (!used) {\n used = true;\n result = fn(...args);\n }\n return result;\n };\n}\n// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1\n// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\nconst ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\\d+\\-.]*?:/;\nexport const isAbsoluteUrl = (url)=>ABSOLUTE_URL_REGEX.test(url);\nexport function getLocationOrigin() {\n const { protocol, hostname, port } = window.location;\n return `${protocol}//${hostname}${port ? ':' + port : ''}`;\n}\nexport function getURL() {\n const { href } = window.location;\n const origin = getLocationOrigin();\n return href.substring(origin.length);\n}\nexport function getDisplayName(Component) {\n return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown';\n}\nexport function isResSent(res) {\n return res.finished || res.headersSent;\n}\nexport function normalizeRepeatedSlashes(url) {\n const urlParts = url.split('?');\n const urlNoQuery = urlParts[0];\n return urlNoQuery// first we replace any non-encoded backslashes with forward\n // then normalize repeated forward slashes\n .replace(/\\\\/g, '/').replace(/\\/\\/+/g, '/') + (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : '');\n}\nexport async function loadGetInitialProps(App, ctx) {\n if (process.env.NODE_ENV !== 'production') {\n if (App.prototype?.getInitialProps) {\n const message = `\"${getDisplayName(App)}.getInitialProps()\" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`;\n throw Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1035\",\n enumerable: false,\n configurable: true\n });\n }\n }\n // when called from _app `ctx` is nested in `ctx`\n const res = ctx.res || ctx.ctx && ctx.ctx.res;\n if (!App.getInitialProps) {\n if (ctx.ctx && ctx.Component) {\n // @ts-ignore pageProps default\n return {\n pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx)\n };\n }\n return {};\n }\n const props = await App.getInitialProps(ctx);\n if (res && isResSent(res)) {\n return props;\n }\n if (!props) {\n const message = `\"${getDisplayName(App)}.getInitialProps()\" should resolve to an object. But found \"${props}\" instead.`;\n throw Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1025\",\n enumerable: false,\n configurable: true\n });\n }\n if (process.env.NODE_ENV !== 'production') {\n if (Object.keys(props).length === 0 && !ctx.ctx) {\n console.warn(`${getDisplayName(App)} returned an empty object from \\`getInitialProps\\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`);\n }\n }\n return props;\n}\nexport const SP = typeof performance !== 'undefined';\nexport const ST = SP && [\n 'mark',\n 'measure',\n 'getEntriesByName'\n].every((method)=>typeof performance[method] === 'function');\nexport class DecodeError extends Error {\n}\nexport class NormalizeError extends Error {\n}\nexport class PageNotFoundError extends Error {\n constructor(page){\n super();\n this.code = 'ENOENT';\n this.name = 'PageNotFoundError';\n this.message = `Cannot find module for page: ${page}`;\n }\n}\nexport class MissingStaticPage extends Error {\n constructor(page, message){\n super();\n this.message = `Failed to load static file for page: ${page} ${message}`;\n }\n}\nexport class MiddlewareNotFoundError extends Error {\n constructor(){\n super();\n this.code = 'ENOENT';\n this.message = `Cannot find the middleware module`;\n }\n}\nexport function stringifyError(error) {\n return JSON.stringify({\n message: error.message,\n stack: error.stack\n });\n}\n\n//# sourceMappingURL=utils.js.map","/**\n * FNV-1a Hash implementation\n * @author Travis Webb (tjwebb) \n *\n * Ported from https://github.com/tjwebb/fnv-plus/blob/master/index.js\n *\n * Simplified, optimized and add modified for 52 bit, which provides a larger hash space\n * and still making use of Javascript's 53-bit integer space.\n */ export const fnv1a52 = (str)=>{\n const len = str.length;\n let i = 0, t0 = 0, v0 = 0x2325, t1 = 0, v1 = 0x8422, t2 = 0, v2 = 0x9ce4, t3 = 0, v3 = 0xcbf2;\n while(i < len){\n v0 ^= str.charCodeAt(i++);\n t0 = v0 * 435;\n t1 = v1 * 435;\n t2 = v2 * 435;\n t3 = v3 * 435;\n t2 += v0 << 8;\n t3 += v1 << 8;\n t1 += t0 >>> 16;\n v0 = t0 & 65535;\n t2 += t1 >>> 16;\n v1 = t1 & 65535;\n v3 = t3 + (t2 >>> 16) & 65535;\n v2 = t2 & 65535;\n }\n return (v3 & 15) * 281474976710656 + v2 * 4294967296 + v1 * 65536 + (v0 ^ v3 >> 4);\n};\nexport const generateETag = (payload, weak = false)=>{\n const prefix = weak ? 'W/\"' : '\"';\n return prefix + fnv1a52(payload).toString(36) + payload.length.toString(36) + '\"';\n};\n\n//# sourceMappingURL=etag.js.map","import type { SizeLimit } from '../../types'\n\nexport const DEFAULT_MAX_POSTPONED_STATE_SIZE: SizeLimit = '100 MB'\n\n// 100MB in bytes. Not using the parseSizeLimit for performance as parseMaxPostponedStateSize is in the hot path for rendering.\nconst DEFAULT_MAX_POSTPONED_STATE_SIZE_BYTES = 104_857_600\n\nfunction parseSizeLimit(size: SizeLimit): number | undefined {\n const bytes = (\n require('next/dist/compiled/bytes') as typeof import('next/dist/compiled/bytes')\n ).parse(size)\n if (bytes === null || isNaN(bytes) || bytes < 1) {\n return undefined\n }\n return bytes\n}\n\n/**\n * Parses the maxPostponedStateSize config value, using the default if not provided.\n */\nexport function parseMaxPostponedStateSize(\n size: SizeLimit | undefined\n): number | undefined {\n if (!size) {\n return DEFAULT_MAX_POSTPONED_STATE_SIZE_BYTES\n }\n return parseSizeLimit(size)\n}\n","import {\n DEFAULT_MAX_POSTPONED_STATE_SIZE,\n parseMaxPostponedStateSize,\n} from '../../shared/lib/size-limit'\nimport type { SizeLimit } from '../../types'\n\nconst INVALID_MAX_POSTPONED_STATE_SIZE_ERROR_MESSAGE =\n 'maxPostponedStateSize must be a valid number (bytes) or filesize format string (e.g., \"5mb\")'\n\nexport type PostponedRequestBodyChunk = Buffer | Uint8Array | string\n\nexport function getMaxPostponedStateSize(\n configuredMaxPostponedStateSize: SizeLimit | undefined\n): {\n maxPostponedStateSize: SizeLimit\n maxPostponedStateSizeBytes: number\n} {\n const maxPostponedStateSize =\n configuredMaxPostponedStateSize ?? DEFAULT_MAX_POSTPONED_STATE_SIZE\n const maxPostponedStateSizeBytes = parseMaxPostponedStateSize(\n configuredMaxPostponedStateSize\n )\n\n if (maxPostponedStateSizeBytes === undefined) {\n throw new Error(INVALID_MAX_POSTPONED_STATE_SIZE_ERROR_MESSAGE)\n }\n\n return { maxPostponedStateSize, maxPostponedStateSizeBytes }\n}\n\nexport function getPostponedStateExceededErrorMessage(\n maxPostponedStateSize: SizeLimit\n): string {\n return (\n `Postponed state exceeded ${maxPostponedStateSize} limit. ` +\n `To configure the limit, see: https://nextjs.org/docs/app/api-reference/config/next-config-js/max-postponed-state-size`\n )\n}\n\nfunction toBuffer(chunk: PostponedRequestBodyChunk): Buffer {\n return Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk)\n}\n\nexport async function readBodyWithSizeLimit(\n body: AsyncIterable,\n maxBodySizeBytes: number\n): Promise {\n const chunks: Array = []\n let size = 0\n\n for await (const chunk of body) {\n const buffer = toBuffer(chunk)\n size += buffer.byteLength\n if (size > maxBodySizeBytes) {\n return null\n }\n chunks.push(buffer)\n }\n\n return Buffer.concat(chunks)\n}\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactServerDOMTurbopackStatic\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/layout-router.js\"));\n","'use client'\n\nimport type { CacheNode } from '../../shared/lib/app-router-types'\nimport type { LoadingModuleData } from '../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n} from '../../shared/lib/app-router-types'\nimport type { ErrorComponent } from './error-boundary'\nimport type { FocusAndScrollRef } from './router-reducer/router-reducer-types'\n\nimport React, {\n Activity,\n Fragment,\n useContext,\n use,\n Suspense,\n useDeferredValue,\n useLayoutEffect,\n type FragmentInstance,\n type JSX,\n type ActivityProps,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport {\n LayoutRouterContext,\n GlobalLayoutRouterContext,\n TemplateContext,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport { unresolvedThenable } from './unresolved-thenable'\nimport { ErrorBoundary } from './error-boundary'\nimport { disableSmoothScrollDuringRouteTransition } from '../../shared/lib/router/utils/disable-smooth-scroll'\nimport { RedirectBoundary } from './redirect-boundary'\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary'\nimport { createRouterCacheKey } from './router-reducer/create-router-cache-key'\nimport {\n useRouterBFCache,\n type RouterBFCacheEntry,\n} from './bfcache-state-manager'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport {\n NavigationPromisesContext,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport { getParamValueFromCacheKey } from '../route-params'\nimport type { Params } from '../../server/request/params'\nimport { isDeferredRsc } from './router-reducer/ppr-navigations'\n\nconst enableNewScrollHandler = process.env.__NEXT_APP_NEW_SCROLL_HANDLER\n\nconst __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = (\n ReactDOM as any\n).__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE\n\n// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available\n/**\n * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning\n */\nfunction findDOMNode(\n instance: React.ReactInstance | null | undefined\n): Element | Text | null {\n // Tree-shake for server bundle\n if (typeof window === 'undefined') return null\n\n // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init.\n // We need to lazily reference it.\n const internal_reactDOMfindDOMNode =\n __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode\n return internal_reactDOMfindDOMNode(instance)\n}\n\nconst rectProperties = [\n 'bottom',\n 'height',\n 'left',\n 'right',\n 'top',\n 'width',\n 'x',\n 'y',\n] as const\n/**\n * Check if a HTMLElement is hidden or fixed/sticky position\n */\nfunction shouldSkipElement(element: HTMLElement) {\n // we ignore fixed or sticky positioned elements since they'll likely pass the \"in-viewport\" check\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (['sticky', 'fixed'].includes(getComputedStyle(element).position)) {\n return true\n }\n\n // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent`\n // because `offsetParent` doesn't consider document/body\n const rect = element.getBoundingClientRect()\n return rectProperties.every((item) => rect[item] === 0)\n}\n\n/**\n * Check if the top corner of the HTMLElement is in the viewport.\n */\nfunction topOfElementInViewport(\n instance: HTMLElement | FragmentInstance,\n viewportHeight: number\n): boolean {\n const rects = instance.getClientRects()\n if (rects.length === 0) {\n // Just to be explicit.\n return false\n }\n let elementTop = Number.POSITIVE_INFINITY\n for (let i = 0; i < rects.length; i++) {\n const rect = rects[i]\n if (rect.top < elementTop) {\n elementTop = rect.top\n }\n }\n return elementTop >= 0 && elementTop <= viewportHeight\n}\n\n/**\n * Find the DOM node for a hash fragment.\n * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior.\n * If the hash fragment is an id, the page has to scroll to the element with that id.\n * If the hash fragment is a name, the page has to scroll to the first element with that name.\n */\nfunction getHashFragmentDomNode(hashFragment: string) {\n // If the hash fragment is `top` the page has to scroll to the top of the page.\n if (hashFragment === 'top') {\n return document.body\n }\n\n // If the hash fragment is an id, the page has to scroll to the element with that id.\n return (\n document.getElementById(hashFragment) ??\n // If the hash fragment is a name, the page has to scroll to the first element with that name.\n document.getElementsByName(hashFragment)[0]\n )\n}\ninterface ScrollAndMaybeFocusHandlerProps {\n focusAndScrollRef: FocusAndScrollRef\n children: React.ReactNode\n cacheNode: CacheNode\n}\nclass InnerScrollAndFocusHandlerOld extends React.Component {\n handlePotentialScroll = () => {\n // Handle scroll and focus, it's only applied once.\n const { focusAndScrollRef, cacheNode } = this.props\n\n const scrollRef = focusAndScrollRef.forceScroll\n ? focusAndScrollRef.scrollRef\n : cacheNode.scrollRef\n if (scrollRef === null || !scrollRef.current) return\n\n let domNode:\n | ReturnType\n | ReturnType = null\n const hashFragment = focusAndScrollRef.hashFragment\n\n if (hashFragment) {\n domNode = getHashFragmentDomNode(hashFragment)\n }\n\n // `findDOMNode` is tricky because it returns just the first child if the component is a fragment.\n // This already caused a bug where the first child was a in head.\n if (!domNode) {\n domNode = findDOMNode(this)\n }\n\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (!(domNode instanceof Element)) {\n return\n }\n\n // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior.\n // If the element is skipped, try to select the next sibling and try again.\n while (!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)) {\n if (process.env.NODE_ENV !== 'production') {\n if (domNode.parentElement?.localName === 'head') {\n // We enter this state when metadata was rendered as part of the page or via Next.js.\n // This is always a bug in Next.js and caused by React hoisting metadata.\n // Fixed with `experimental.appNewScrollHandler`\n }\n }\n\n // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead.\n if (domNode.nextElementSibling === null) {\n return\n }\n domNode = domNode.nextElementSibling\n }\n\n // Mark as scrolled so no other segment scrolls for this navigation.\n scrollRef.current = false\n\n disableSmoothScrollDuringRouteTransition(\n () => {\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n domNode.scrollIntoView()\n\n return\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement\n const viewportHeight = htmlElement.clientHeight\n\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(domNode, viewportHeight)) {\n return\n }\n\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0\n\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(domNode, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n domNode.scrollIntoView()\n }\n },\n {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange,\n }\n )\n\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false\n focusAndScrollRef.hashFragment = null\n\n // Set focus on the element\n domNode.focus()\n }\n\n componentDidMount() {\n this.handlePotentialScroll()\n }\n\n componentDidUpdate() {\n this.handlePotentialScroll()\n }\n\n render() {\n return this.props.children\n }\n}\n\n/**\n * Fork of InnerScrollAndFocusHandlerOld using Fragment refs for scrolling.\n * No longer focuses the first host descendant.\n */\nfunction InnerScrollHandlerNew(props: ScrollAndMaybeFocusHandlerProps) {\n const childrenRef = React.useRef(null)\n\n useLayoutEffect(\n () => {\n const { focusAndScrollRef, cacheNode } = props\n\n const scrollRef = focusAndScrollRef.forceScroll\n ? focusAndScrollRef.scrollRef\n : cacheNode.scrollRef\n if (scrollRef === null || !scrollRef.current) return\n\n let instance: FragmentInstance | HTMLElement | null = null\n const hashFragment = focusAndScrollRef.hashFragment\n\n if (hashFragment) {\n instance = getHashFragmentDomNode(hashFragment)\n }\n\n if (!instance) {\n instance = childrenRef.current\n }\n\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (instance === null) {\n return\n }\n\n // Mark as scrolled so no other segment scrolls for this navigation.\n scrollRef.current = false\n\n const activeElement = document.activeElement\n if (\n activeElement !== null &&\n 'blur' in activeElement &&\n typeof activeElement.blur === 'function'\n ) {\n // Trying to match hard navigations.\n // Ideally we'd move the internal focus cursor either to the top\n // or at least before the segment. But there's no DOM API to do that,\n // so we just blur.\n // We could workaround this by moving focus to a temporary element in\n // the body. But adding elements might trigger layout or other effects\n // so it should be well motivated.\n activeElement.blur()\n }\n\n disableSmoothScrollDuringRouteTransition(\n () => {\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n instance.scrollIntoView()\n\n return\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement\n const viewportHeight = htmlElement.clientHeight\n\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(instance, viewportHeight)) {\n return\n }\n\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0\n\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(instance, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n instance.scrollIntoView()\n }\n },\n {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange,\n }\n )\n\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false\n focusAndScrollRef.hashFragment = null\n },\n // Used to run on every commit. We may be able to be smarter about this\n // but be prepared for lots of manual testing.\n undefined\n )\n\n return {props.children}\n}\n\nconst InnerScrollAndMaybeFocusHandler = enableNewScrollHandler\n ? InnerScrollHandlerNew\n : InnerScrollAndFocusHandlerOld\n\nfunction ScrollAndMaybeFocusHandler({\n children,\n cacheNode,\n}: {\n children: React.ReactNode\n cacheNode: CacheNode\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n return (\n \n {children}\n \n )\n}\n\n/**\n * InnerLayoutRouter handles rendering the provided segment based on the cache.\n */\nfunction InnerLayoutRouter({\n tree,\n segmentPath,\n debugNameContext,\n cacheNode: maybeCacheNode,\n params,\n url,\n isActive,\n}: {\n tree: FlightRouterState\n segmentPath: FlightSegmentPath\n debugNameContext: string\n cacheNode: CacheNode | null\n params: Params\n url: string\n isActive: boolean\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n const parentNavPromises = useContext(NavigationPromisesContext)\n\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n const cacheNode =\n maybeCacheNode !== null\n ? maybeCacheNode\n : // This segment is not in the cache. Suspend indefinitely.\n //\n // This should only be reachable for inactive/hidden segments, during\n // prerendering The active segment should always be consistent with the\n // CacheNode tree. Regardless, if we don't have a matching CacheNode, we\n // must suspend rather than render nothing, to prevent showing an\n // inconsistent route.\n\n (use(unresolvedThenable) as never)\n\n // `rsc` represents the renderable node for this segment.\n\n // If this segment has a `prefetchRsc`, it's the statically prefetched data.\n // We should use that on initial render instead of `rsc`. Then we'll switch\n // to `rsc` when the dynamic response streams in.\n //\n // If no prefetch data is available, then we go straight to rendering `rsc`.\n const resolvedPrefetchRsc =\n cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc\n\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n const rsc: any = useDeferredValue(cacheNode.rsc, resolvedPrefetchRsc)\n\n // `rsc` is either a React node or a promise for a React node, except we\n // special case `null` to represent that this segment's data is missing. If\n // it's a promise, we need to unwrap it so we can determine whether or not the\n // data is missing.\n let resolvedRsc: React.ReactNode\n if (isDeferredRsc(rsc)) {\n const unwrappedRsc = use(rsc)\n if (unwrappedRsc === null) {\n // If the promise was resolved to `null`, it means the data for this\n // segment was not returned by the server. Suspend indefinitely. When this\n // happens, the router is responsible for triggering a new state update to\n // un-suspend this segment.\n use(unresolvedThenable) as never\n }\n resolvedRsc = unwrappedRsc\n } else {\n // This is not a deferred RSC promise. Don't need to unwrap it.\n if (rsc === null) {\n use(unresolvedThenable) as never\n }\n resolvedRsc = rsc\n }\n\n // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide\n // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`.\n // Promises are cached outside of render to survive suspense retries.\n let navigationPromises: NavigationPromises | null = null\n if (process.env.NODE_ENV !== 'production') {\n const { createNestedLayoutNavigationPromises } =\n require('./navigation-devtools') as typeof import('./navigation-devtools')\n\n navigationPromises = createNestedLayoutNavigationPromises(\n tree,\n parentNavPromises\n )\n }\n\n let children = resolvedRsc\n\n if (navigationPromises) {\n children = (\n \n {resolvedRsc}\n \n )\n }\n\n children = (\n // The layout router context narrows down tree and childNodes at each level.\n \n {children}\n \n )\n\n return children\n}\n\nexport function LoadingBoundaryProvider({\n loading,\n children,\n}: {\n loading: LoadingModuleData\n children: React.ReactNode\n}) {\n // Provides the data needed to render a loading.tsx boundary, via context.\n //\n // loading.tsx creates a Suspense boundary around each of a layout's child\n // slots. (Might be bit confusing to think about the data flow, but: if\n // loading.tsx and layout.tsx are in the same directory, they are assigned\n // to the same CacheNode.)\n //\n // This provider component does not render the Suspense boundary directly;\n // that's handled by LoadingBoundary.\n //\n // TODO: For simplicity, we should combine this provider with LoadingBoundary\n // and render the Suspense boundary directly. The only real benefit of doing\n // it separately is so that when there are multiple parallel routes, we only\n // send the boundary data once, rather than once per child. But that's a\n // negligible benefit and can be achieved via caching instead.\n const parentContext = use(LayoutRouterContext)\n if (parentContext === null) {\n return children\n }\n // All values except for parentLoadingData are the same as the parent context.\n return (\n \n {children}\n \n )\n}\n\n/**\n * Renders suspense boundary with the provided \"loading\" property as the fallback.\n * If no loading property is provided it renders the children without a suspense boundary.\n */\nfunction LoadingBoundary({\n name,\n loading,\n children,\n}: {\n name: ActivityProps['name']\n loading: LoadingModuleData | null\n children: React.ReactNode\n}): JSX.Element {\n // TODO: For LoadingBoundary, and the other built-in boundary types, don't\n // wrap in an extra function component if no user-defined boundary is\n // provided. In other words, inline this conditional wrapping logic into\n // the parent component. More efficient and keeps unnecessary junk out of\n // the component stack.\n if (loading !== null) {\n const loadingRsc = loading[0]\n const loadingStyles = loading[1]\n const loadingScripts = loading[2]\n return (\n \n {loadingStyles}\n {loadingScripts}\n {loadingRsc}\n \n }\n >\n {children}\n \n )\n }\n\n return <>{children}\n}\n\n/**\n * OuterLayoutRouter handles the current segment as well as rendering of other segments.\n * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.\n */\nexport default function OuterLayoutRouter({\n parallelRouterKey,\n error,\n errorStyles,\n errorScripts,\n templateStyles,\n templateScripts,\n template,\n notFound,\n forbidden,\n unauthorized,\n segmentViewBoundaries,\n}: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n errorStyles: React.ReactNode | undefined\n errorScripts: React.ReactNode | undefined\n templateStyles: React.ReactNode | undefined\n templateScripts: React.ReactNode | undefined\n template: React.ReactNode\n notFound: React.ReactNode | undefined\n forbidden: React.ReactNode | undefined\n unauthorized: React.ReactNode | undefined\n segmentViewBoundaries?: React.ReactNode\n}) {\n const context = useContext(LayoutRouterContext)\n if (!context) {\n throw new Error('invariant expected layout router to be mounted')\n }\n\n const {\n parentTree,\n parentCacheNode,\n parentSegmentPath,\n parentParams,\n parentLoadingData,\n url,\n isActive,\n debugNameContext,\n } = context\n\n // Get the CacheNode for this segment by reading it from the parent segment's\n // child map.\n const parentTreeSegment = parentTree[0]\n const segmentPath =\n parentSegmentPath === null\n ? // TODO: The root segment value is currently omitted from the segment\n // path. This has led to a bunch of special cases scattered throughout\n // the code. We should clean this up.\n [parallelRouterKey]\n : parentSegmentPath.concat([parentTreeSegment, parallelRouterKey])\n\n // The \"state\" key of a segment is the one passed to React — it represents the\n // identity of the UI tree. Whenever the state key changes, the tree is\n // recreated and the state is reset. In the App Router model, search params do\n // not cause state to be lost, so two segments with the same segment path but\n // different search params should have the same state key.\n //\n // The \"cache\" key of a segment, however, *does* include the search params, if\n // it's possible that the segment accessed the search params on the server.\n // (This only applies to page segments; layout segments cannot access search\n // params on the server.)\n const activeTree = parentTree[1][parallelRouterKey]\n const maybeParentSlots = parentCacheNode.slots\n if (activeTree === undefined || maybeParentSlots === null) {\n // Could not find a matching segment. The client tree is inconsistent with\n // the server tree. Suspend indefinitely; the router will have already\n // detected the inconsistency when handling the server response, and\n // triggered a refresh of the page to recover.\n use(unresolvedThenable) as never\n }\n\n let maybeValidationBoundaryId: string | null = null\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS) {\n const { InstantValidationBoundaryContext } =\n require('./instant-validation/boundary') as typeof import('./instant-validation/boundary')\n maybeValidationBoundaryId = use(InstantValidationBoundaryContext)\n }\n\n const activeSegment = activeTree[0]\n const activeCacheNode = maybeParentSlots![parallelRouterKey] ?? null\n const activeStateKey = createRouterCacheKey(activeSegment, true) // no search params\n\n // At each level of the route tree, not only do we render the currently\n // active segment — we also render the last N segments that were active at\n // this level inside a hidden boundary, to preserve their state\n // if or when the user navigates to them again.\n //\n // bfcacheEntry is a linked list of FlightRouterStates.\n let bfcacheEntry: RouterBFCacheEntry | null = useRouterBFCache(\n activeTree,\n activeCacheNode,\n activeStateKey\n )\n let children: Array = []\n do {\n const tree = bfcacheEntry.tree\n const cacheNode = bfcacheEntry.cacheNode\n const stateKey = bfcacheEntry.stateKey\n const segment = tree[0]\n\n /*\n - Error boundary\n - Only renders error boundary if error component is provided.\n - Rendered for each segment to ensure they have their own error state.\n - When gracefully degrade for bots, skip rendering error boundary.\n - Loading boundary\n - Only renders suspense boundary if loading components is provided.\n - Rendered for each segment to ensure they have their own loading state.\n - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch.\n */\n\n let segmentBoundaryTriggerNode: React.ReactNode = null\n let segmentViewStateNode: React.ReactNode = null\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentBoundaryTriggerNode, SegmentViewStateNode } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n const pagePrefix = normalizeAppPath(url)\n segmentViewStateNode = (\n \n )\n\n segmentBoundaryTriggerNode = (\n <>\n \n \n )\n }\n\n let params = parentParams\n if (Array.isArray(segment)) {\n // This segment contains a route param. Accumulate these as we traverse\n // down the router tree. The result represents the set of params that\n // the layout/page components are permitted to access below this point.\n const paramName = segment[0]\n const paramCacheKey = segment[1]\n const paramType = segment[2]\n const paramValue = getParamValueFromCacheKey(paramCacheKey, paramType)\n if (paramValue !== null) {\n params = {\n ...parentParams,\n [paramName]: paramValue,\n }\n }\n }\n\n const debugName = getBoundaryDebugNameFromSegment(segment)\n // `debugNameContext` represents the nearest non-\"virtual\" parent segment.\n // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments.\n // So if `debugName` is undefined, the context is passed through unchanged.\n const childDebugNameContext = debugName ?? debugNameContext\n\n // In practical terms, clicking this name in the Suspense DevTools\n // should select the child slots of that layout.\n //\n // So the name we apply to the Activity boundary is actually based on\n // the nearest parent segments.\n //\n // We skip over \"virtual\" parents, i.e. ones inserted by Next.js that\n // don't correspond to application-defined code.\n const isVirtual = debugName === undefined\n const debugNameToDisplay = isVirtual ? undefined : debugNameContext\n\n let templateValue = (\n \n \n \n \n \n \n {segmentBoundaryTriggerNode}\n \n \n \n \n {segmentViewStateNode}\n \n )\n\n if (\n typeof window === 'undefined' &&\n process.env.__NEXT_CACHE_COMPONENTS &&\n typeof maybeValidationBoundaryId === 'string'\n ) {\n const { RenderValidationBoundaryAtThisLevel } =\n require('./instant-validation/boundary') as typeof import('./instant-validation/boundary')\n templateValue = (\n \n {templateValue}\n \n )\n }\n\n let child = (\n \n {templateStyles}\n {templateScripts}\n {template}\n \n )\n\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentStateProvider } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n child = (\n \n {child}\n {segmentViewBoundaries}\n \n )\n }\n\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n child = (\n \n {child}\n \n )\n }\n\n children.push(child)\n\n bfcacheEntry = bfcacheEntry.next\n } while (bfcacheEntry !== null)\n\n return children\n}\n\nfunction getBoundaryDebugNameFromSegment(segment: Segment): string | undefined {\n if (segment === '/') {\n // Reached the root\n return '/'\n }\n if (typeof segment === 'string') {\n if (isVirtualLayout(segment)) {\n return undefined\n } else {\n return segment + '/'\n }\n }\n const paramCacheKey = segment[1]\n return paramCacheKey + '/'\n}\n\nfunction isVirtualLayout(segment: string): boolean {\n return (\n // This is inserted by the loader. Uses double-underscore convention\n // (like __PAGE__ and __DEFAULT__) to avoid collisions with\n // user-defined route groups.\n segment === '(__SLOT__)'\n )\n}\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js\"));\n","'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport { TemplateContext } from '../../shared/lib/app-router-context.shared-runtime'\n\nexport default function RenderFromTemplateContext(): JSX.Element {\n const children = useContext(TemplateContext)\n return <>{children}\n}\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-page.js\"));\n","'use client'\n\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\nimport { urlSearchParamsToParsedUrlQuery } from '../route-params'\nimport { SearchParamsContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * When the Page is a client component we send the params and searchParams to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Page component.\n *\n * additionally we may send promises representing the params and searchParams. We don't ever use these passed\n * values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.\n * It is up to the caller to decide if the promises are needed.\n */\nexport function ClientPageRoot({\n Component,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n serverProvidedParams: null | {\n searchParams: ParsedUrlQuery\n params: Params\n promises: Array> | null\n }\n}) {\n let searchParams: ParsedUrlQuery\n let params: Params\n if (serverProvidedParams !== null) {\n searchParams = serverProvidedParams.searchParams\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params as\n // props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n\n // This is an intentional behavior change: when Cache Components is enabled,\n // client segments receive the \"canonical\" search params, not the\n // rewritten ones. Users should either call useSearchParams directly or pass\n // the rewritten ones in from a Server Component.\n // TODO: Log a deprecation error when this object is accessed\n searchParams = urlSearchParamsToParsedUrlQuery(use(SearchParamsContext)!)\n }\n\n if (typeof window === 'undefined') {\n let clientSearchParams: Promise\n let clientParams: Promise\n\n const { createSearchParamsFromClient } =\n require('../../server/request/search-params') as typeof import('../../server/request/search-params')\n clientSearchParams = createSearchParamsFromClient(searchParams)\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params)\n\n return \n } else {\n const { createRenderSearchParamsFromClient } =\n require('../request/search-params.browser') as typeof import('../request/search-params.browser')\n const clientSearchParams = createRenderSearchParamsFromClient(searchParams)\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n\n return \n }\n}\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-segment.js\"));\n","'use client'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\n\n/**\n * When the Page is a client component we send the params to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Segment component.\n *\n * additionally we may send a promise representing params. We don't ever use this passed\n * value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations\n * such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.\n */\nexport function ClientSegmentRoot({\n Component,\n slots,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n slots: { [key: string]: React.ReactNode }\n serverProvidedParams: null | {\n params: Params\n promises: Array> | null\n }\n}) {\n let params: Params\n if (serverProvidedParams !== null) {\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params\n // as props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n }\n\n if (typeof window === 'undefined') {\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n const clientParams: Promise = createParamsFromClient(params)\n\n return \n } else {\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n return \n }\n}\n","// This regex will have fast negatives meaning valid identifiers may not pass\n// this test. However this is only used during static generation to provide hints\n// about why a page bailed out of some or all prerendering and we can use bracket notation\n// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']`\n// even if this would have been fine too `searchParams.ಠ_ಠ`\nconst isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/;\nexport function describeStringPropertyAccess(target, prop) {\n if (isDefinitelyAValidIdentifier.test(prop)) {\n return `\\`${target}.${prop}\\``;\n }\n return `\\`${target}[${JSON.stringify(prop)}]\\``;\n}\nexport function describeHasCheckingStringProperty(target, prop) {\n const stringifiedProp = JSON.stringify(prop);\n return `\\`Reflect.has(${target}, ${stringifiedProp})\\`, \\`${stringifiedProp} in ${target}\\`, or similar`;\n}\nexport const wellKnownProperties = new Set([\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toString',\n 'valueOf',\n 'toLocaleString',\n // Promise prototype\n 'then',\n 'catch',\n 'finally',\n // React Promise extension\n 'status',\n // 'value',\n // 'error',\n // React introspection\n 'displayName',\n '_debugInfo',\n // Common tested properties\n 'toJSON',\n '$$typeof',\n '__esModule',\n // Tested by flight when checking for iterables\n '@@iterator'\n]);\n\n//# sourceMappingURL=reflect-utils.js.map","const INSTANT_VALIDATION_ERROR_DIGEST = 'INSTANT_VALIDATION_ERROR';\n/** Check if an error is an exhaustive samples validation error (by digest). */ export function isInstantValidationError(err) {\n return !!(err && typeof err === 'object' && err instanceof Error && err.digest === INSTANT_VALIDATION_ERROR_DIGEST);\n}\nexport class InstantValidationError extends Error {\n constructor(...args){\n super(...args), this.digest = INSTANT_VALIDATION_ERROR_DIGEST;\n }\n}\n\n//# sourceMappingURL=instant-validation-error.js.map","export class ReflectAdapter {\n static get(target, prop, receiver) {\n const value = Reflect.get(target, prop, receiver);\n if (typeof value === 'function') {\n return value.bind(target);\n }\n return value;\n }\n static set(target, prop, value, receiver) {\n return Reflect.set(target, prop, value, receiver);\n }\n static has(target, prop) {\n return Reflect.has(target, prop);\n }\n static deleteProperty(target, prop) {\n return Reflect.deleteProperty(target, prop);\n }\n}\n\n//# sourceMappingURL=reflect.js.map","import { RequestCookies } from '../../web/spec-extension/cookies';\nimport { RequestCookiesAdapter } from '../../web/spec-extension/adapters/request-cookies';\nimport { HeadersAdapter } from '../../web/spec-extension/adapters/headers';\nimport { getSegmentParam } from '../../../shared/lib/router/utils/get-segment-param';\nimport { parseRelativeUrl } from '../../../shared/lib/router/utils/parse-relative-url';\nimport { InvariantError } from '../../../shared/lib/invariant-error';\nimport { InstantValidationError } from './instant-validation-error';\nimport { workUnitAsyncStorage } from '../work-unit-async-storage.external';\nimport { wellKnownProperties } from '../../../shared/lib/utils/reflect-utils';\nexport function createValidationSampleTracking() {\n return {\n missingSampleErrors: []\n };\n}\nfunction getExpectedSampleTracking() {\n let validationSampleTracking = null;\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'request':\n case 'validation-client':\n // TODO(instant-validation-build): do we need any special handling for caches?\n validationSampleTracking = workUnitStore.validationSampleTracking ?? null;\n break;\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n case 'prerender':\n case 'prerender-runtime':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (!validationSampleTracking) {\n throw Object.defineProperty(new InvariantError('Expected to have a workUnitStore that provides validationSampleTracking'), \"__NEXT_ERROR_CODE\", {\n value: \"E1110\",\n enumerable: false,\n configurable: true\n });\n }\n return validationSampleTracking;\n}\nexport function trackMissingSampleError(error) {\n const validationSampleTracking = getExpectedSampleTracking();\n validationSampleTracking.missingSampleErrors.push(error);\n}\nexport function trackMissingSampleErrorAndThrow(error) {\n // TODO(instant-validation-build): this should abort the render\n trackMissingSampleError(error);\n throw error;\n}\n/**\n * Creates ReadonlyRequestCookies from sample cookie data.\n * Accessing a cookie not declared in the sample will throw an error.\n * Cookies with `value: null` are declared (allowed to access) but return no value.\n */ export function createCookiesFromSample(sampleCookies, route) {\n const declaredNames = new Set();\n const cookies = new RequestCookies(new Headers());\n if (sampleCookies) {\n for (const cookie of sampleCookies){\n declaredNames.add(cookie.name);\n if (cookie.value !== null) {\n cookies.set(cookie.name, cookie.value);\n }\n }\n }\n const sealed = RequestCookiesAdapter.seal(cookies);\n return new Proxy(sealed, {\n get (target, prop, receiver) {\n if (prop === 'has') {\n const originalMethod = Reflect.get(target, prop, receiver);\n const wrappedMethod = function(name) {\n if (!declaredNames.has(name)) {\n trackMissingSampleErrorAndThrow(createMissingCookieSampleError(route, name));\n }\n return originalMethod.call(target, name);\n };\n return wrappedMethod;\n }\n if (prop === 'get') {\n const originalMethod = Reflect.get(target, prop, receiver);\n const wrappedMethod = function(nameOrCookie) {\n let name;\n if (typeof nameOrCookie === 'string') {\n name = nameOrCookie;\n } else if (nameOrCookie && typeof nameOrCookie === 'object' && typeof nameOrCookie.name === 'string') {\n name = nameOrCookie.name;\n } else {\n // This is an invalid input. Pass it through to the original method so it can error.\n return originalMethod.call(target, nameOrCookie);\n }\n if (!declaredNames.has(name)) {\n trackMissingSampleErrorAndThrow(createMissingCookieSampleError(route, name));\n }\n return originalMethod.call(target, name);\n };\n return wrappedMethod;\n }\n // TODO(instant-validation-build): what should getAll do?\n // Maybe we should only allow it if there's an array (possibly empty?)\n return Reflect.get(target, prop, receiver);\n }\n });\n}\nfunction createMissingCookieSampleError(route, name) {\n return Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed cookie \"${name}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`cookies\\` array, ` + `or \\`{ name: \"${name}\", value: null }\\` if it should be absent.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1115\",\n enumerable: false,\n configurable: true\n });\n}\n/**\n * Creates ReadonlyHeaders from sample header data.\n * Accessing a header not declared in the sample will throw an error.\n * Headers with `value: null` are declared (allowed to access) but return null.\n */ export function createHeadersFromSample(rawSampleHeaders, sampleCookies, route) {\n // If we have cookie samples, add a `cookie` header to match.\n // Accessing it will be implicitly allowed by the proxy --\n // if the user defined some cookies, accessing the \"cookie\" header is also fine.\n const sampleHeaders = rawSampleHeaders ? [\n ...rawSampleHeaders\n ] : [];\n if (sampleHeaders.find(([name])=>name.toLowerCase() === 'cookie')) {\n throw Object.defineProperty(new InstantValidationError('Invalid sample: Defining cookies via a \"cookie\" header is not supported. Use `cookies: [{ name: ..., value: ... }]` instead.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1111\",\n enumerable: false,\n configurable: true\n });\n }\n if (sampleCookies) {\n const cookieHeaderValue = sampleCookies.toString();\n sampleHeaders.push([\n 'cookie',\n // if the `cookies` samples were empty, or they were all `null`, then we have no cookies,\n // and the header isn't present, but should remains readable, so we set it to null.\n cookieHeaderValue !== '' ? cookieHeaderValue : null\n ]);\n }\n const declaredNames = new Set();\n const headersInit = {};\n for (const [name, value] of sampleHeaders){\n declaredNames.add(name.toLowerCase());\n if (value !== null) {\n headersInit[name.toLowerCase()] = value;\n }\n }\n const sealed = HeadersAdapter.seal(HeadersAdapter.from(headersInit));\n return new Proxy(sealed, {\n get (target, prop, receiver) {\n if (prop === 'get' || prop === 'has') {\n const originalMethod = Reflect.get(target, prop, receiver);\n const patchedMethod = function(rawName) {\n const name = rawName.toLowerCase();\n if (!declaredNames.has(name)) {\n trackMissingSampleErrorAndThrow(Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed header \"${name}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`headers\\` array, ` + `or \\`[\"${name}\", null]\\` if it should be absent.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1116\",\n enumerable: false,\n configurable: true\n }));\n }\n // typescript can't reconcile a union of functions with a union of return types,\n // so we have to cast the original return type away\n return originalMethod.call(target, name);\n };\n return patchedMethod;\n }\n return Reflect.get(target, prop, receiver);\n }\n });\n}\n/**\n * Creates a DraftModeProvider that always returns isEnabled: false.\n */ export function createDraftModeForValidation() {\n // Create a minimal DraftModeProvider-compatible object\n // that always reports draft mode as disabled.\n //\n // private properties that can't be set from outside the class.\n return {\n get isEnabled () {\n return false;\n },\n enable () {\n throw Object.defineProperty(new Error('Draft mode cannot be enabled during build-time instant validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1092\",\n enumerable: false,\n configurable: true\n });\n },\n disable () {\n throw Object.defineProperty(new Error('Draft mode cannot be disabled during build-time instant validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1094\",\n enumerable: false,\n configurable: true\n });\n }\n };\n}\n/**\n * Creates params wrapped with an exhaustive proxy.\n * Accessing a param not declared in the sample will throw an error.\n */ export function createExhaustiveParamsProxy(underlyingParams, declaredParamNames, route) {\n return new Proxy(underlyingParams, {\n get (target, prop, receiver) {\n if (typeof prop === 'string' && !wellKnownProperties.has(prop) && // Only error when accessing a param that is part of the route but wasn't provided.\n // accessing properties that aren't expected to be a valid param value is fine.\n prop in underlyingParams && !declaredParamNames.has(prop)) {\n trackMissingSampleErrorAndThrow(Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed param \"${prop}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`params\\` object.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1095\",\n enumerable: false,\n configurable: true\n }));\n }\n return Reflect.get(target, prop, receiver);\n }\n });\n}\n/**\n * Creates searchParams wrapped with an exhaustive proxy.\n * Accessing a searchParam not declared in the sample will throw an error.\n * A searchParam with `value: undefined` means \"declared but absent\" (allowed to access, returns undefined).\n */ export function createExhaustiveSearchParamsProxy(searchParams, declaredSearchParamNames, route) {\n return new Proxy(searchParams, {\n get (target, prop, receiver) {\n if (typeof prop === 'string' && !wellKnownProperties.has(prop) && !declaredSearchParamNames.has(prop)) {\n trackMissingSampleErrorAndThrow(createMissingSearchParamSampleError(route, prop));\n }\n return Reflect.get(target, prop, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'string' && !wellKnownProperties.has(prop) && !declaredSearchParamNames.has(prop)) {\n trackMissingSampleErrorAndThrow(createMissingSearchParamSampleError(route, prop));\n }\n return Reflect.has(target, prop);\n }\n });\n}\n/**\n * Wraps a URLSearchParams (or subclass like ReadonlyURLSearchParams) with an\n * exhaustive proxy. Accessing a search param not declared in the sample via\n * get/getAll/has will throw an error.\n */ export function createExhaustiveURLSearchParamsProxy(searchParams, declaredSearchParamNames, route) {\n return new Proxy(searchParams, {\n get (target, prop, receiver) {\n // Intercept method calls that access specific param names\n if (prop === 'get' || prop === 'getAll' || prop === 'has') {\n const originalMathod = Reflect.get(target, prop, receiver);\n return (name)=>{\n if (typeof name === 'string' && !declaredSearchParamNames.has(name)) {\n trackMissingSampleErrorAndThrow(createMissingSearchParamSampleError(route, name));\n }\n return originalMathod.call(target, name);\n };\n }\n const value = Reflect.get(target, prop, receiver);\n // Prevent `TypeError: Value of \"this\" must be of type URLSearchParams` for methods\n if (typeof value === 'function' && !Object.hasOwn(target, prop)) {\n return value.bind(target);\n }\n return value;\n }\n });\n}\nfunction createMissingSearchParamSampleError(route, name) {\n return Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed searchParam \"${name}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`searchParams\\` object, ` + `or \\`{ \"${name}\": null }\\` if it should be absent.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1098\",\n enumerable: false,\n configurable: true\n });\n}\nexport function createRelativeURLFromSamples(route, sampleParams, sampleSearchParams) {\n // Build searchParams query object and URL search string from sample\n const pathname = createPathnameFromRouteAndSampleParams(route, sampleParams ?? {});\n let search = '';\n if (sampleSearchParams) {\n const qs = createURLSearchParamsFromSample(sampleSearchParams).toString();\n if (qs) {\n search = '?' + qs;\n }\n }\n return parseRelativeUrl(pathname + search, undefined, true);\n}\nfunction createURLSearchParamsFromSample(sampleSearchParams) {\n const result = new URLSearchParams();\n if (sampleSearchParams) {\n for (const [key, value] of Object.entries(sampleSearchParams)){\n if (value === null || value === undefined) continue;\n if (Array.isArray(value)) {\n for (const v of value){\n result.append(key, v);\n }\n } else {\n result.set(key, value);\n }\n }\n }\n return result;\n}\n/**\n * Substitute sample params into `workStore.route` to create a plausible pathname.\n * TODO(instant-validation-build): this logic is somewhat hacky and likely incomplete,\n * but it should be good enough for some initial testing.\n */ function createPathnameFromRouteAndSampleParams(route, params) {\n let interpolatedSegments = [];\n const rawSegments = route.split('/');\n for (const rawSegment of rawSegments){\n const param = getSegmentParam(rawSegment);\n if (param) {\n switch(param.paramType){\n case 'catchall':\n case 'optional-catchall':\n {\n let paramValue = params[param.paramName];\n if (paramValue === undefined) {\n // The value for the param was not provided. `usePathname` will detect this and throw\n // before this can surface to userspace. Use `[...NAME]` as a placeholder for the param value\n // in case it pops up somewhere unexpectedly.\n paramValue = [\n rawSegment\n ];\n } else if (!Array.isArray(paramValue)) {\n // NOTE: this happens outside of render, so we don't need `trackMissingSampleErrorAndThrow`\n throw Object.defineProperty(new InstantValidationError(`Expected sample param value for segment '${rawSegment}' to be an array of strings, got ${typeof paramValue}`), \"__NEXT_ERROR_CODE\", {\n value: \"E1104\",\n enumerable: false,\n configurable: true\n });\n }\n interpolatedSegments.push(...paramValue.map((v)=>encodeURIComponent(v)));\n break;\n }\n case 'dynamic':\n {\n let paramValue = params[param.paramName];\n if (paramValue === undefined) {\n // The value for the param was not provided. `usePathname` will detect this and throw\n // before this can surface to userspace. Use `[NAME]` as a placeholder for the param value\n // in case it pops up somewhere unexpectedly.\n paramValue = rawSegment;\n } else if (typeof paramValue !== 'string') {\n // NOTE: this happens outside of render, so we don't need `trackMissingSampleErrorAndThrow`\n throw Object.defineProperty(new InstantValidationError(`Expected sample param value for segment '${rawSegment}' to be a string, got ${typeof paramValue}`), \"__NEXT_ERROR_CODE\", {\n value: \"E1108\",\n enumerable: false,\n configurable: true\n });\n }\n interpolatedSegments.push(encodeURIComponent(paramValue));\n break;\n }\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n {\n // TODO(instant-validation-build): i don't know how these are supposed to work, or if we can even get them here\n throw Object.defineProperty(new InvariantError('Not implemented: Validation of interception routes'), \"__NEXT_ERROR_CODE\", {\n value: \"E1106\",\n enumerable: false,\n configurable: true\n });\n }\n default:\n {\n param.paramType;\n }\n }\n } else {\n interpolatedSegments.push(rawSegment);\n }\n }\n return interpolatedSegments.join('/');\n}\nexport function assertRootParamInSamples(workStore, sampleParams, paramName) {\n if (sampleParams && paramName in sampleParams) {\n // The param is defined in the samples.\n } else {\n const route = workStore.route;\n trackMissingSampleErrorAndThrow(Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed root param \"${paramName}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`params\\` object.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1114\",\n enumerable: false,\n configurable: true\n }));\n }\n}\n\n//# sourceMappingURL=instant-samples.js.map","export function searchParamsToUrlQuery(searchParams) {\n const query = {};\n for (const [key, value] of searchParams.entries()){\n const existing = query[key];\n if (typeof existing === 'undefined') {\n query[key] = value;\n } else if (Array.isArray(existing)) {\n existing.push(value);\n } else {\n query[key] = [\n existing,\n value\n ];\n }\n }\n return query;\n}\nfunction stringifyUrlQueryParam(param) {\n if (typeof param === 'string') {\n return param;\n }\n if (typeof param === 'number' && !isNaN(param) || typeof param === 'boolean') {\n return String(param);\n } else {\n return '';\n }\n}\nexport function urlQueryToSearchParams(query) {\n const searchParams = new URLSearchParams();\n for (const [key, value] of Object.entries(query)){\n if (Array.isArray(value)) {\n for (const item of value){\n searchParams.append(key, stringifyUrlQueryParam(item));\n }\n } else {\n searchParams.set(key, stringifyUrlQueryParam(value));\n }\n }\n return searchParams;\n}\nexport function assign(target, ...searchParamsList) {\n for (const searchParams of searchParamsList){\n for (const key of searchParams.keys()){\n target.delete(key);\n }\n for (const [key, value] of searchParams.entries()){\n target.append(key, value);\n }\n }\n return target;\n}\n\n//# sourceMappingURL=querystring.js.map","export const ActionDidNotRevalidate = 0;\nexport const ActionDidRevalidateStaticAndDynamic = 1;\nexport const ActionDidRevalidateDynamicOnly = 2;\n\n//# sourceMappingURL=action-revalidation-kind.js.map","import { RequestCookies } from '../cookies';\nimport { ResponseCookies } from '../cookies';\nimport { ReflectAdapter } from './reflect';\nimport { workAsyncStorage } from '../../../app-render/work-async-storage.external';\nimport { ActionDidRevalidateStaticAndDynamic } from '../../../../shared/lib/action-revalidation-kind';\n/**\n * @internal\n */ export class ReadonlyRequestCookiesError extends Error {\n constructor(){\n super('Cookies can only be modified in a Server Action or Route Handler. Read more: https://nextjs.org/docs/app/api-reference/functions/cookies#options');\n }\n static callable() {\n throw new ReadonlyRequestCookiesError();\n }\n}\nexport class RequestCookiesAdapter {\n static seal(cookies) {\n return new Proxy(cookies, {\n get (target, prop, receiver) {\n switch(prop){\n case 'clear':\n case 'delete':\n case 'set':\n return ReadonlyRequestCookiesError.callable;\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n }\n}\nconst SYMBOL_MODIFY_COOKIE_VALUES = Symbol.for('next.mutated.cookies');\nexport function getModifiedCookieValues(cookies) {\n const modified = cookies[SYMBOL_MODIFY_COOKIE_VALUES];\n if (!modified || !Array.isArray(modified) || modified.length === 0) {\n return [];\n }\n return modified;\n}\nexport function appendMutableCookies(headers, mutableCookies) {\n const modifiedCookieValues = getModifiedCookieValues(mutableCookies);\n if (modifiedCookieValues.length === 0) {\n return false;\n }\n // Return a new response that extends the response with\n // the modified cookies as fallbacks. `res` cookies\n // will still take precedence.\n const resCookies = new ResponseCookies(headers);\n const returnedCookies = resCookies.getAll();\n // Set the modified cookies as fallbacks.\n for (const cookie of modifiedCookieValues){\n resCookies.set(cookie);\n }\n // Set the original cookies as the final values.\n for (const cookie of returnedCookies){\n resCookies.set(cookie);\n }\n return true;\n}\nexport class MutableRequestCookiesAdapter {\n static wrap(cookies, onUpdateCookies) {\n const responseCookies = new ResponseCookies(new Headers());\n for (const cookie of cookies.getAll()){\n responseCookies.set(cookie);\n }\n let modifiedValues = [];\n const modifiedCookies = new Set();\n const updateResponseCookies = ()=>{\n // TODO-APP: change method of getting workStore\n const workStore = workAsyncStorage.getStore();\n if (workStore) {\n workStore.pathWasRevalidated = ActionDidRevalidateStaticAndDynamic;\n }\n const allCookies = responseCookies.getAll();\n modifiedValues = allCookies.filter((c)=>modifiedCookies.has(c.name));\n if (onUpdateCookies) {\n const serializedCookies = [];\n for (const cookie of modifiedValues){\n const tempCookies = new ResponseCookies(new Headers());\n tempCookies.set(cookie);\n serializedCookies.push(tempCookies.toString());\n }\n onUpdateCookies(serializedCookies);\n }\n };\n const wrappedCookies = new Proxy(responseCookies, {\n get (target, prop, receiver) {\n switch(prop){\n // A special symbol to get the modified cookie values\n case SYMBOL_MODIFY_COOKIE_VALUES:\n return modifiedValues;\n // TODO: Throw error if trying to set a cookie after the response\n // headers have been set.\n case 'delete':\n return function(...args) {\n modifiedCookies.add(typeof args[0] === 'string' ? args[0] : args[0].name);\n try {\n target.delete(...args);\n return wrappedCookies;\n } finally{\n updateResponseCookies();\n }\n };\n case 'set':\n return function(...args) {\n modifiedCookies.add(typeof args[0] === 'string' ? args[0] : args[0].name);\n try {\n target.set(...args);\n return wrappedCookies;\n } finally{\n updateResponseCookies();\n }\n };\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n return wrappedCookies;\n }\n}\nexport function createCookiesWithMutableAccessCheck(requestStore) {\n const wrappedCookies = new Proxy(requestStore.mutableCookies, {\n get (target, prop, receiver) {\n switch(prop){\n case 'delete':\n return function(...args) {\n ensureCookiesAreStillMutable(requestStore, 'cookies().delete');\n target.delete(...args);\n return wrappedCookies;\n };\n case 'set':\n return function(...args) {\n ensureCookiesAreStillMutable(requestStore, 'cookies().set');\n target.set(...args);\n return wrappedCookies;\n };\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n return wrappedCookies;\n}\nexport function areCookiesMutableInCurrentPhase(requestStore) {\n return requestStore.phase === 'action';\n}\n/** Ensure that cookies() starts throwing on mutation\n * if we changed phases and can no longer mutate.\n *\n * This can happen when going:\n * 'render' -> 'after'\n * 'action' -> 'render'\n * */ function ensureCookiesAreStillMutable(requestStore, _callingExpression) {\n if (!areCookiesMutableInCurrentPhase(requestStore)) {\n // TODO: maybe we can give a more precise error message based on callingExpression?\n throw new ReadonlyRequestCookiesError();\n }\n}\nexport function responseCookiesToRequestCookies(responseCookies) {\n const requestCookies = new RequestCookies(new Headers());\n for (const cookie of responseCookies.getAll()){\n requestCookies.set(cookie);\n }\n return requestCookies;\n}\n\n//# sourceMappingURL=request-cookies.js.map","import { getLocationOrigin } from '../../utils';\nimport { searchParamsToUrlQuery } from './querystring';\nexport function parseRelativeUrl(url, base, parseQuery = true) {\n const globalBase = new URL(typeof window === 'undefined' ? 'http://n' : getLocationOrigin());\n const resolvedBase = base ? new URL(base, globalBase) : url.startsWith('.') ? new URL(typeof window === 'undefined' ? 'http://n' : window.location.href) : globalBase;\n const { pathname, searchParams, search, hash, href, origin } = url.startsWith('/') ? // See https://nodejs.org/api/http.html#messageurl\n // Not using `origin` to support other protocols\n new URL(`${resolvedBase.protocol}//${resolvedBase.host}${url}`) : new URL(url, resolvedBase);\n if (origin !== globalBase.origin) {\n throw Object.defineProperty(new Error(`invariant: invalid relative URL, router received ${url}`), \"__NEXT_ERROR_CODE\", {\n value: \"E159\",\n enumerable: false,\n configurable: true\n });\n }\n return {\n auth: null,\n host: null,\n hostname: null,\n pathname,\n port: null,\n protocol: null,\n query: parseQuery ? searchParamsToUrlQuery(searchParams) : undefined,\n search,\n hash,\n href: href.slice(origin.length),\n // We don't know for relative URLs at this point since we set a custom, internal\n // base that isn't surfaced to users.\n slashes: null\n };\n}\n\n//# sourceMappingURL=parse-relative-url.js.map","import { ReflectAdapter } from './reflect';\n/**\n * @internal\n */ export class ReadonlyHeadersError extends Error {\n constructor(){\n super('Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers');\n }\n static callable() {\n throw new ReadonlyHeadersError();\n }\n}\nexport class HeadersAdapter extends Headers {\n constructor(headers){\n // We've already overridden the methods that would be called, so we're just\n // calling the super constructor to ensure that the instanceof check works.\n super();\n this.headers = new Proxy(headers, {\n get (target, prop, receiver) {\n // Because this is just an object, we expect that all \"get\" operations\n // are for properties. If it's a \"get\" for a symbol, we'll just return\n // the symbol.\n if (typeof prop === 'symbol') {\n return ReflectAdapter.get(target, prop, receiver);\n }\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, return undefined.\n if (typeof original === 'undefined') return;\n // If the original casing exists, return the value.\n return ReflectAdapter.get(target, original, receiver);\n },\n set (target, prop, value, receiver) {\n if (typeof prop === 'symbol') {\n return ReflectAdapter.set(target, prop, value, receiver);\n }\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, use the prop as the key.\n return ReflectAdapter.set(target, original ?? prop, value, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'symbol') return ReflectAdapter.has(target, prop);\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, return false.\n if (typeof original === 'undefined') return false;\n // If the original casing exists, return true.\n return ReflectAdapter.has(target, original);\n },\n deleteProperty (target, prop) {\n if (typeof prop === 'symbol') return ReflectAdapter.deleteProperty(target, prop);\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, return true.\n if (typeof original === 'undefined') return true;\n // If the original casing exists, delete the property.\n return ReflectAdapter.deleteProperty(target, original);\n }\n });\n }\n /**\n * Seals a Headers instance to prevent modification by throwing an error when\n * any mutating method is called.\n */ static seal(headers) {\n return new Proxy(headers, {\n get (target, prop, receiver) {\n switch(prop){\n case 'append':\n case 'delete':\n case 'set':\n return ReadonlyHeadersError.callable;\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n }\n /**\n * Merges a header value into a string. This stores multiple values as an\n * array, so we need to merge them into a string.\n *\n * @param value a header value\n * @returns a merged header value (a string)\n */ merge(value) {\n if (Array.isArray(value)) return value.join(', ');\n return value;\n }\n /**\n * Creates a Headers instance from a plain object or a Headers instance.\n *\n * @param headers a plain object or a Headers instance\n * @returns a headers instance\n */ static from(headers) {\n if (headers instanceof Headers) return headers;\n return new HeadersAdapter(headers);\n }\n append(name, value) {\n const existing = this.headers[name];\n if (typeof existing === 'string') {\n this.headers[name] = [\n existing,\n value\n ];\n } else if (Array.isArray(existing)) {\n existing.push(value);\n } else {\n this.headers[name] = value;\n }\n }\n delete(name) {\n delete this.headers[name];\n }\n get(name) {\n const value = this.headers[name];\n if (typeof value !== 'undefined') return this.merge(value);\n return null;\n }\n has(name) {\n return typeof this.headers[name] !== 'undefined';\n }\n set(name, value) {\n this.headers[name] = value;\n }\n forEach(callbackfn, thisArg) {\n for (const [name, value] of this.entries()){\n callbackfn.call(thisArg, value, name, this);\n }\n }\n *entries() {\n for (const key of Object.keys(this.headers)){\n const name = key.toLowerCase();\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(name);\n yield [\n name,\n value\n ];\n }\n }\n *keys() {\n for (const key of Object.keys(this.headers)){\n const name = key.toLowerCase();\n yield name;\n }\n }\n *values() {\n for (const key of Object.keys(this.headers)){\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(key);\n yield value;\n }\n }\n [Symbol.iterator]() {\n return this.entries();\n }\n}\n\n//# sourceMappingURL=headers.js.map","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js\"));\n","'use client'\n\n/**\n * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a\n * fallback component for HTTP errors.\n *\n * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.\n *\n * e.g. 404\n * 404 represents not found, and the fallback component pair contains the component and its styles.\n *\n */\n\nimport React, { useContext } from 'react'\nimport { useUntrackedPathname } from '../navigation-untracked'\nimport {\n HTTPAccessErrorStatus,\n getAccessFallbackHTTPStatus,\n getAccessFallbackErrorTypeByStatus,\n isHTTPAccessFallbackError,\n} from './http-access-fallback'\nimport { warnOnce } from '../../../shared/lib/utils/warn-once'\nimport { MissingSlotContext } from '../../../shared/lib/app-router-context.shared-runtime'\n\ninterface HTTPAccessFallbackBoundaryProps {\n notFound?: React.ReactNode\n forbidden?: React.ReactNode\n unauthorized?: React.ReactNode\n // TODO: Make this required once `React.createElement` understands that positional args go into children\n children?: React.ReactNode\n missingSlots?: Set\n}\n\ninterface HTTPAccessFallbackErrorBoundaryProps\n extends HTTPAccessFallbackBoundaryProps {\n pathname: string | null\n missingSlots?: Set\n}\n\ninterface HTTPAccessBoundaryState {\n triggeredStatus: number | undefined\n previousPathname: string | null\n}\n\nclass HTTPAccessFallbackErrorBoundary extends React.Component<\n HTTPAccessFallbackErrorBoundaryProps,\n HTTPAccessBoundaryState\n> {\n constructor(props: HTTPAccessFallbackErrorBoundaryProps) {\n super(props)\n this.state = {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n\n componentDidCatch(): void {\n if (\n process.env.NODE_ENV === 'development' &&\n this.props.missingSlots &&\n this.props.missingSlots.size > 0 &&\n // A missing children slot is the typical not-found case, so no need to warn\n !this.props.missingSlots.has('children')\n ) {\n let warningMessage =\n 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\\n\\n'\n\n const formattedSlots = Array.from(this.props.missingSlots)\n .sort((a, b) => a.localeCompare(b))\n .map((slot) => `@${slot}`)\n .join(', ')\n\n warningMessage += 'Missing slots: ' + formattedSlots\n\n warnOnce(warningMessage)\n }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isHTTPAccessFallbackError(error)) {\n const httpStatus = getAccessFallbackHTTPStatus(error)\n return {\n triggeredStatus: httpStatus,\n }\n }\n // Re-throw if error is not for 404\n throw error\n }\n\n static getDerivedStateFromProps(\n props: HTTPAccessFallbackErrorBoundaryProps,\n state: HTTPAccessBoundaryState\n ): HTTPAccessBoundaryState | null {\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.triggeredStatus) {\n return {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n return {\n triggeredStatus: state.triggeredStatus,\n previousPathname: props.pathname,\n }\n }\n\n render() {\n const { notFound, forbidden, unauthorized, children } = this.props\n const { triggeredStatus } = this.state\n const errorComponents = {\n [HTTPAccessErrorStatus.NOT_FOUND]: notFound,\n [HTTPAccessErrorStatus.FORBIDDEN]: forbidden,\n [HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized,\n }\n\n if (triggeredStatus) {\n const isNotFound =\n triggeredStatus === HTTPAccessErrorStatus.NOT_FOUND && notFound\n const isForbidden =\n triggeredStatus === HTTPAccessErrorStatus.FORBIDDEN && forbidden\n const isUnauthorized =\n triggeredStatus === HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized\n\n // If there's no matched boundary in this layer, keep throwing the error by rendering the children\n if (!(isNotFound || isForbidden || isUnauthorized)) {\n return children\n }\n\n return (\n <>\n \n {process.env.NODE_ENV === 'development' && (\n \n )}\n {errorComponents[triggeredStatus]}\n \n )\n }\n\n return children\n }\n}\n\nexport function HTTPAccessFallbackBoundary({\n notFound,\n forbidden,\n unauthorized,\n children,\n}: HTTPAccessFallbackBoundaryProps) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these error can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n const missingSlots = useContext(MissingSlotContext)\n const hasErrorFallback = !!(notFound || forbidden || unauthorized)\n\n if (hasErrorFallback) {\n return (\n \n {children}\n \n )\n }\n\n return <>{children}\n}\n","/**\n * This module is for next.js server internal usage of path module.\n * It will use native path module for nodejs runtime.\n * It will use path-browserify polyfill for edge runtime.\n */\nlet path\n\nif (process.env.NEXT_RUNTIME === 'edge') {\n path = require('next/dist/compiled/path-browserify')\n} else {\n path = require('path')\n}\n\nmodule.exports = path\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js\"));\n","'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from './boundary-constants'\n\n// We use a namespace object to allow us to recover the name of the function\n// at runtime even when production bundling/minification is used.\nconst NameSpace = {\n [METADATA_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [VIEWPORT_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [OUTLET_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [ROOT_LAYOUT_BOUNDARY_NAME]: function ({\n children,\n }: {\n children: ReactNode\n }) {\n return children\n },\n}\n\nexport const MetadataBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[METADATA_BOUNDARY_NAME.slice(0) as typeof METADATA_BOUNDARY_NAME]\n\nexport const ViewportBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[VIEWPORT_BOUNDARY_NAME.slice(0) as typeof VIEWPORT_BOUNDARY_NAME]\n\nexport const OutletBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[OUTLET_BOUNDARY_NAME.slice(0) as typeof OUTLET_BOUNDARY_NAME]\n\nexport const RootLayoutBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[\n ROOT_LAYOUT_BOUNDARY_NAME.slice(0) as typeof ROOT_LAYOUT_BOUNDARY_NAME\n ]\n","// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js\"));\n","'use client'\n\n// This is a client component that only renders during SSR,\n// but will be replaced during streaming with an icon insertion script tag.\n// We don't want it to be presented anywhere so it's only visible during streaming,\n// right after the icon meta tags so that browser can pick it up as soon as it's rendered.\n// Note: we don't just emit the script here because we only need the script if it's not in the head,\n// and we need it to be hoistable alongside the other metadata but sync scripts are not hoistable.\nexport const IconMark = () => {\n if (typeof window !== 'undefined') {\n return null\n }\n return \n}\n","/**\n * @license React\n * react-server-dom-turbopack-client.node.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar util = require(\"util\"),\n ReactDOM = require(\"react-dom\"),\n decoderOptions = { stream: !0 },\n hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction resolveClientReference(bundlerConfig, metadata) {\n if (bundlerConfig) {\n var moduleExports = bundlerConfig[metadata[0]];\n if ((bundlerConfig = moduleExports && moduleExports[metadata[2]]))\n moduleExports = bundlerConfig.name;\n else {\n bundlerConfig = moduleExports && moduleExports[\"*\"];\n if (!bundlerConfig)\n throw Error(\n 'Could not find the module \"' +\n metadata[0] +\n '\" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.'\n );\n moduleExports = metadata[2];\n }\n return 4 === metadata.length\n ? [bundlerConfig.id, bundlerConfig.chunks, moduleExports, 1]\n : [bundlerConfig.id, bundlerConfig.chunks, moduleExports];\n }\n return metadata;\n}\nfunction resolveServerReference(bundlerConfig, id) {\n var name = \"\",\n resolvedModuleData = bundlerConfig[id];\n if (resolvedModuleData) name = resolvedModuleData.name;\n else {\n var idx = id.lastIndexOf(\"#\");\n -1 !== idx &&\n ((name = id.slice(idx + 1)),\n (resolvedModuleData = bundlerConfig[id.slice(0, idx)]));\n if (!resolvedModuleData)\n throw Error(\n 'Could not find the module \"' +\n id +\n '\" in the React Server Manifest. This is probably a bug in the React Server Components bundler.'\n );\n }\n return resolvedModuleData.async\n ? [resolvedModuleData.id, resolvedModuleData.chunks, name, 1]\n : [resolvedModuleData.id, resolvedModuleData.chunks, name];\n}\nfunction requireAsyncModule(id) {\n var promise = globalThis.__next_require__(id);\n if (\"function\" !== typeof promise.then || \"fulfilled\" === promise.status)\n return null;\n promise.then(\n function (value) {\n promise.status = \"fulfilled\";\n promise.value = value;\n },\n function (reason) {\n promise.status = \"rejected\";\n promise.reason = reason;\n }\n );\n return promise;\n}\nvar instrumentedChunks = new WeakSet(),\n loadedChunks = new WeakSet();\nfunction ignoreReject() {}\nfunction preloadModule(metadata) {\n for (var chunks = metadata[1], promises = [], i = 0; i < chunks.length; i++) {\n var thenable = globalThis.__next_chunk_load__(chunks[i]);\n loadedChunks.has(thenable) || promises.push(thenable);\n if (!instrumentedChunks.has(thenable)) {\n var resolve = loadedChunks.add.bind(loadedChunks, thenable);\n thenable.then(resolve, ignoreReject);\n instrumentedChunks.add(thenable);\n }\n }\n return 4 === metadata.length\n ? 0 === promises.length\n ? requireAsyncModule(metadata[0])\n : Promise.all(promises).then(function () {\n return requireAsyncModule(metadata[0]);\n })\n : 0 < promises.length\n ? Promise.all(promises)\n : null;\n}\nfunction requireModule(metadata) {\n var moduleExports = globalThis.__next_require__(metadata[0]);\n if (4 === metadata.length && \"function\" === typeof moduleExports.then)\n if (\"fulfilled\" === moduleExports.status)\n moduleExports = moduleExports.value;\n else throw moduleExports.reason;\n if (\"*\" === metadata[2]) return moduleExports;\n if (\"\" === metadata[2])\n return moduleExports.__esModule ? moduleExports.default : moduleExports;\n if (hasOwnProperty.call(moduleExports, metadata[2]))\n return moduleExports[metadata[2]];\n}\nfunction prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {\n if (null !== moduleLoading)\n for (var i = 0; i < chunks.length; i++) {\n var nonce = nonce$jscomp$0,\n JSCompiler_temp_const = ReactDOMSharedInternals.d,\n JSCompiler_temp_const$jscomp$0 = JSCompiler_temp_const.X,\n JSCompiler_temp_const$jscomp$1 = moduleLoading.prefix + chunks[i];\n var JSCompiler_inline_result = moduleLoading.crossOrigin;\n JSCompiler_inline_result =\n \"string\" === typeof JSCompiler_inline_result\n ? \"use-credentials\" === JSCompiler_inline_result\n ? JSCompiler_inline_result\n : \"\"\n : void 0;\n JSCompiler_temp_const$jscomp$0.call(\n JSCompiler_temp_const,\n JSCompiler_temp_const$jscomp$1,\n { crossOrigin: JSCompiler_inline_result, nonce: nonce }\n );\n }\n}\nvar ReactDOMSharedInternals =\n ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator;\nfunction getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable) return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n}\nvar ASYNC_ITERATOR = Symbol.asyncIterator,\n isArrayImpl = Array.isArray,\n getPrototypeOf = Object.getPrototypeOf,\n ObjectPrototype = Object.prototype,\n knownServerReferences = new WeakMap();\nfunction serializeNumber(number) {\n return Number.isFinite(number)\n ? 0 === number && -Infinity === 1 / number\n ? \"$-0\"\n : number\n : Infinity === number\n ? \"$Infinity\"\n : -Infinity === number\n ? \"$-Infinity\"\n : \"$NaN\";\n}\nfunction processReply(\n root,\n formFieldPrefix,\n temporaryReferences,\n resolve,\n reject\n) {\n function serializeTypedArray(tag, typedArray) {\n typedArray = new Blob([\n new Uint8Array(\n typedArray.buffer,\n typedArray.byteOffset,\n typedArray.byteLength\n )\n ]);\n var blobId = nextPartId++;\n null === formData && (formData = new FormData());\n formData.append(formFieldPrefix + blobId, typedArray);\n return \"$\" + tag + blobId.toString(16);\n }\n function serializeBinaryReader(reader) {\n function progress(entry) {\n entry.done\n ? ((entry = nextPartId++),\n data.append(formFieldPrefix + entry, new Blob(buffer)),\n data.append(\n formFieldPrefix + streamId,\n '\"$o' + entry.toString(16) + '\"'\n ),\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data))\n : (buffer.push(entry.value),\n reader.read(new Uint8Array(1024)).then(progress, reject));\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++,\n buffer = [];\n reader.read(new Uint8Array(1024)).then(progress, reject);\n return \"$r\" + streamId.toString(16);\n }\n function serializeReader(reader) {\n function progress(entry) {\n if (entry.done)\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data);\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, partJSON);\n reader.read().then(progress, reject);\n } catch (x) {\n reject(x);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n reader.read().then(progress, reject);\n return \"$R\" + streamId.toString(16);\n }\n function serializeReadableStream(stream) {\n try {\n var binaryReader = stream.getReader({ mode: \"byob\" });\n } catch (x) {\n return serializeReader(stream.getReader());\n }\n return serializeBinaryReader(binaryReader);\n }\n function serializeAsyncIterable(iterable, iterator) {\n function progress(entry) {\n if (entry.done) {\n if (void 0 === entry.value)\n data.append(formFieldPrefix + streamId, \"C\");\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, \"C\" + partJSON);\n } catch (x) {\n reject(x);\n return;\n }\n pendingParts--;\n 0 === pendingParts && resolve(data);\n } else\n try {\n var partJSON$21 = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, partJSON$21);\n iterator.next().then(progress, reject);\n } catch (x$22) {\n reject(x$22);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n iterable = iterable === iterator;\n iterator.next().then(progress, reject);\n return \"$\" + (iterable ? \"x\" : \"X\") + streamId.toString(16);\n }\n function resolveToJSON(key, value) {\n if (null === value) return null;\n if (\"object\" === typeof value) {\n switch (value.$$typeof) {\n case REACT_ELEMENT_TYPE:\n if (void 0 !== temporaryReferences && -1 === key.indexOf(\":\")) {\n var parentReference = writtenObjects.get(this);\n if (void 0 !== parentReference)\n return (\n temporaryReferences.set(parentReference + \":\" + key, value),\n \"$T\"\n );\n }\n if (void 0 !== temporaryReferences && modelRoot === value)\n return (modelRoot = null), \"$T\";\n throw Error(\n \"React Element cannot be passed to Server Functions from the Client without a temporary reference set. Pass a TemporaryReferenceSet to the options.\"\n );\n case REACT_LAZY_TYPE:\n parentReference = value._payload;\n var init = value._init;\n null === formData && (formData = new FormData());\n pendingParts++;\n try {\n var resolvedModel = init(parentReference),\n lazyId = nextPartId++,\n partJSON = serializeModel(resolvedModel, lazyId);\n formData.append(formFieldPrefix + lazyId, partJSON);\n return \"$\" + lazyId.toString(16);\n } catch (x) {\n if (\n \"object\" === typeof x &&\n null !== x &&\n \"function\" === typeof x.then\n ) {\n pendingParts++;\n var lazyId$23 = nextPartId++;\n parentReference = function () {\n try {\n var partJSON$24 = serializeModel(value, lazyId$23),\n data$25 = formData;\n data$25.append(formFieldPrefix + lazyId$23, partJSON$24);\n pendingParts--;\n 0 === pendingParts && resolve(data$25);\n } catch (reason) {\n reject(reason);\n }\n };\n x.then(parentReference, parentReference);\n return \"$\" + lazyId$23.toString(16);\n }\n reject(x);\n return null;\n } finally {\n pendingParts--;\n }\n }\n parentReference = writtenObjects.get(value);\n if (\"function\" === typeof value.then) {\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n null === formData && (formData = new FormData());\n pendingParts++;\n var promiseId = nextPartId++;\n key = \"$@\" + promiseId.toString(16);\n writtenObjects.set(value, key);\n value.then(function (partValue) {\n try {\n var previousReference = writtenObjects.get(partValue);\n var partJSON$27 =\n void 0 !== previousReference\n ? JSON.stringify(previousReference)\n : serializeModel(partValue, promiseId);\n partValue = formData;\n partValue.append(formFieldPrefix + promiseId, partJSON$27);\n pendingParts--;\n 0 === pendingParts && resolve(partValue);\n } catch (reason) {\n reject(reason);\n }\n }, reject);\n return key;\n }\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n else\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference &&\n ((key = parentReference + \":\" + key),\n writtenObjects.set(value, key),\n void 0 !== temporaryReferences &&\n temporaryReferences.set(key, value)));\n if (isArrayImpl(value)) return value;\n if (value instanceof FormData) {\n null === formData && (formData = new FormData());\n var data$31 = formData;\n key = nextPartId++;\n var prefix = formFieldPrefix + \"_\" + key + \"_\";\n value.forEach(function (originalValue, originalKey) {\n data$31.append(prefix + originalKey, originalValue);\n });\n return \"$K\" + key.toString(16);\n }\n if (value instanceof Map)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$Q\" + key.toString(16)\n );\n if (value instanceof Set)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$W\" + key.toString(16)\n );\n if (value instanceof ArrayBuffer)\n return (\n (key = new Blob([value])),\n (parentReference = nextPartId++),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + parentReference, key),\n \"$A\" + parentReference.toString(16)\n );\n if (value instanceof Int8Array) return serializeTypedArray(\"O\", value);\n if (value instanceof Uint8Array) return serializeTypedArray(\"o\", value);\n if (value instanceof Uint8ClampedArray)\n return serializeTypedArray(\"U\", value);\n if (value instanceof Int16Array) return serializeTypedArray(\"S\", value);\n if (value instanceof Uint16Array) return serializeTypedArray(\"s\", value);\n if (value instanceof Int32Array) return serializeTypedArray(\"L\", value);\n if (value instanceof Uint32Array) return serializeTypedArray(\"l\", value);\n if (value instanceof Float32Array) return serializeTypedArray(\"G\", value);\n if (value instanceof Float64Array) return serializeTypedArray(\"g\", value);\n if (value instanceof BigInt64Array)\n return serializeTypedArray(\"M\", value);\n if (value instanceof BigUint64Array)\n return serializeTypedArray(\"m\", value);\n if (value instanceof DataView) return serializeTypedArray(\"V\", value);\n if (\"function\" === typeof Blob && value instanceof Blob)\n return (\n null === formData && (formData = new FormData()),\n (key = nextPartId++),\n formData.append(formFieldPrefix + key, value),\n \"$B\" + key.toString(16)\n );\n if ((key = getIteratorFn(value)))\n return (\n (parentReference = key.call(value)),\n parentReference === value\n ? ((key = nextPartId++),\n (parentReference = serializeModel(\n Array.from(parentReference),\n key\n )),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$i\" + key.toString(16))\n : Array.from(parentReference)\n );\n if (\n \"function\" === typeof ReadableStream &&\n value instanceof ReadableStream\n )\n return serializeReadableStream(value);\n key = value[ASYNC_ITERATOR];\n if (\"function\" === typeof key)\n return serializeAsyncIterable(value, key.call(value));\n key = getPrototypeOf(value);\n if (\n key !== ObjectPrototype &&\n (null === key || null !== getPrototypeOf(key))\n ) {\n if (void 0 === temporaryReferences)\n throw Error(\n \"Only plain objects, and a few built-ins, can be passed to Server Functions. Classes or null prototypes are not supported.\"\n );\n return \"$T\";\n }\n return value;\n }\n if (\"string\" === typeof value) {\n if (\"Z\" === value[value.length - 1] && this[key] instanceof Date)\n return \"$D\" + value;\n key = \"$\" === value[0] ? \"$\" + value : value;\n return key;\n }\n if (\"boolean\" === typeof value) return value;\n if (\"number\" === typeof value) return serializeNumber(value);\n if (\"undefined\" === typeof value) return \"$undefined\";\n if (\"function\" === typeof value) {\n parentReference = knownServerReferences.get(value);\n if (void 0 !== parentReference) {\n key = writtenObjects.get(value);\n if (void 0 !== key) return key;\n key = JSON.stringify(\n { id: parentReference.id, bound: parentReference.bound },\n resolveToJSON\n );\n null === formData && (formData = new FormData());\n parentReference = nextPartId++;\n formData.set(formFieldPrefix + parentReference, key);\n key = \"$h\" + parentReference.toString(16);\n writtenObjects.set(value, key);\n return key;\n }\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Client Functions cannot be passed directly to Server Functions. Only Functions passed from the Server can be passed back again.\"\n );\n }\n if (\"symbol\" === typeof value) {\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Symbols cannot be passed to a Server Function without a temporary reference set. Pass a TemporaryReferenceSet to the options.\"\n );\n }\n if (\"bigint\" === typeof value) return \"$n\" + value.toString(10);\n throw Error(\n \"Type \" +\n typeof value +\n \" is not supported as an argument to a Server Function.\"\n );\n }\n function serializeModel(model, id) {\n \"object\" === typeof model &&\n null !== model &&\n ((id = \"$\" + id.toString(16)),\n writtenObjects.set(model, id),\n void 0 !== temporaryReferences && temporaryReferences.set(id, model));\n modelRoot = model;\n return JSON.stringify(model, resolveToJSON);\n }\n var nextPartId = 1,\n pendingParts = 0,\n formData = null,\n writtenObjects = new WeakMap(),\n modelRoot = root,\n json = serializeModel(root, 0);\n null === formData\n ? resolve(json)\n : (formData.set(formFieldPrefix + \"0\", json),\n 0 === pendingParts && resolve(formData));\n return function () {\n 0 < pendingParts &&\n ((pendingParts = 0),\n null === formData ? resolve(json) : resolve(formData));\n };\n}\nvar boundCache = new WeakMap();\nfunction encodeFormData(reference) {\n var resolve,\n reject,\n thenable = new Promise(function (res, rej) {\n resolve = res;\n reject = rej;\n });\n processReply(\n reference,\n \"\",\n void 0,\n function (body) {\n if (\"string\" === typeof body) {\n var data = new FormData();\n data.append(\"0\", body);\n body = data;\n }\n thenable.status = \"fulfilled\";\n thenable.value = body;\n resolve(body);\n },\n function (e) {\n thenable.status = \"rejected\";\n thenable.reason = e;\n reject(e);\n }\n );\n return thenable;\n}\nfunction defaultEncodeFormAction(identifierPrefix) {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n var data = null;\n if (null !== referenceClosure.bound) {\n data = boundCache.get(referenceClosure);\n data ||\n ((data = encodeFormData({\n id: referenceClosure.id,\n bound: referenceClosure.bound\n })),\n boundCache.set(referenceClosure, data));\n if (\"rejected\" === data.status) throw data.reason;\n if (\"fulfilled\" !== data.status) throw data;\n referenceClosure = data.value;\n var prefixedData = new FormData();\n referenceClosure.forEach(function (value, key) {\n prefixedData.append(\"$ACTION_\" + identifierPrefix + \":\" + key, value);\n });\n data = prefixedData;\n referenceClosure = \"$ACTION_REF_\" + identifierPrefix;\n } else referenceClosure = \"$ACTION_ID_\" + referenceClosure.id;\n return {\n name: referenceClosure,\n method: \"POST\",\n encType: \"multipart/form-data\",\n data: data\n };\n}\nfunction isSignatureEqual(referenceId, numberOfBoundArgs) {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n if (referenceClosure.id !== referenceId) return !1;\n var boundPromise = referenceClosure.bound;\n if (null === boundPromise) return 0 === numberOfBoundArgs;\n switch (boundPromise.status) {\n case \"fulfilled\":\n return boundPromise.value.length === numberOfBoundArgs;\n case \"pending\":\n throw boundPromise;\n case \"rejected\":\n throw boundPromise.reason;\n default:\n throw (\n (\"string\" !== typeof boundPromise.status &&\n ((boundPromise.status = \"pending\"),\n boundPromise.then(\n function (boundArgs) {\n boundPromise.status = \"fulfilled\";\n boundPromise.value = boundArgs;\n },\n function (error) {\n boundPromise.status = \"rejected\";\n boundPromise.reason = error;\n }\n )),\n boundPromise)\n );\n }\n}\nfunction registerBoundServerReference(reference, id, bound, encodeFormAction) {\n knownServerReferences.has(reference) ||\n (knownServerReferences.set(reference, {\n id: id,\n originalBind: reference.bind,\n bound: bound\n }),\n Object.defineProperties(reference, {\n $$FORM_ACTION: {\n value:\n void 0 === encodeFormAction\n ? defaultEncodeFormAction\n : function () {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n var boundPromise = referenceClosure.bound;\n null === boundPromise && (boundPromise = Promise.resolve([]));\n return encodeFormAction(referenceClosure.id, boundPromise);\n }\n },\n $$IS_SIGNATURE_EQUAL: { value: isSignatureEqual },\n bind: { value: bind }\n }));\n}\nvar FunctionBind = Function.prototype.bind,\n ArraySlice = Array.prototype.slice;\nfunction bind() {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure) return FunctionBind.apply(this, arguments);\n var newFn = referenceClosure.originalBind.apply(this, arguments),\n args = ArraySlice.call(arguments, 1),\n boundPromise = null;\n boundPromise =\n null !== referenceClosure.bound\n ? Promise.resolve(referenceClosure.bound).then(function (boundArgs) {\n return boundArgs.concat(args);\n })\n : Promise.resolve(args);\n knownServerReferences.set(newFn, {\n id: referenceClosure.id,\n originalBind: newFn.bind,\n bound: boundPromise\n });\n Object.defineProperties(newFn, {\n $$FORM_ACTION: { value: this.$$FORM_ACTION },\n $$IS_SIGNATURE_EQUAL: { value: isSignatureEqual },\n bind: { value: bind }\n });\n return newFn;\n}\nfunction createBoundServerReference(metaData, callServer, encodeFormAction) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return bound\n ? \"fulfilled\" === bound.status\n ? callServer(id, bound.value.concat(args))\n : Promise.resolve(bound).then(function (boundArgs) {\n return callServer(id, boundArgs.concat(args));\n })\n : callServer(id, args);\n }\n var id = metaData.id,\n bound = metaData.bound;\n registerBoundServerReference(action, id, bound, encodeFormAction);\n return action;\n}\nfunction createServerReference$1(id, callServer, encodeFormAction) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return callServer(id, args);\n }\n registerBoundServerReference(action, id, null, encodeFormAction);\n return action;\n}\nfunction ReactPromise(status, value, reason) {\n this.status = status;\n this.value = value;\n this.reason = reason;\n}\nReactPromise.prototype = Object.create(Promise.prototype);\nReactPromise.prototype.then = function (resolve, reject) {\n switch (this.status) {\n case \"resolved_model\":\n initializeModelChunk(this);\n break;\n case \"resolved_module\":\n initializeModuleChunk(this);\n }\n switch (this.status) {\n case \"fulfilled\":\n \"function\" === typeof resolve && resolve(this.value);\n break;\n case \"pending\":\n case \"blocked\":\n \"function\" === typeof resolve &&\n (null === this.value && (this.value = []), this.value.push(resolve));\n \"function\" === typeof reject &&\n (null === this.reason && (this.reason = []), this.reason.push(reject));\n break;\n case \"halted\":\n break;\n default:\n \"function\" === typeof reject && reject(this.reason);\n }\n};\nfunction readChunk(chunk) {\n switch (chunk.status) {\n case \"resolved_model\":\n initializeModelChunk(chunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(chunk);\n }\n switch (chunk.status) {\n case \"fulfilled\":\n return chunk.value;\n case \"pending\":\n case \"blocked\":\n case \"halted\":\n throw chunk;\n default:\n throw chunk.reason;\n }\n}\nfunction createPendingChunk() {\n return new ReactPromise(\"pending\", null, null);\n}\nfunction wakeChunk(response, listeners, value, chunk) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n}\nfunction rejectChunk(response, listeners, error) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(error)\n : rejectReference(response, listener.handler, error);\n }\n}\nfunction resolveBlockedCycle(resolvedChunk, reference) {\n var referencedChunk = reference.handler.chunk;\n if (null === referencedChunk) return null;\n if (referencedChunk === resolvedChunk) return reference.handler;\n reference = referencedChunk.value;\n if (null !== reference)\n for (\n referencedChunk = 0;\n referencedChunk < reference.length;\n referencedChunk++\n ) {\n var listener = reference[referencedChunk];\n if (\n \"function\" !== typeof listener &&\n ((listener = resolveBlockedCycle(resolvedChunk, listener)),\n null !== listener)\n )\n return listener;\n }\n return null;\n}\nfunction wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n) {\n switch (chunk.status) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n break;\n case \"blocked\":\n for (var i = 0; i < resolveListeners.length; i++) {\n var listener = resolveListeners[i];\n if (\"function\" !== typeof listener) {\n var cyclicHandler = resolveBlockedCycle(chunk, listener);\n if (null !== cyclicHandler)\n switch (\n (fulfillReference(response, listener, cyclicHandler.value, chunk),\n resolveListeners.splice(i, 1),\n i--,\n null !== rejectListeners &&\n ((listener = rejectListeners.indexOf(listener)),\n -1 !== listener && rejectListeners.splice(listener, 1)),\n chunk.status)\n ) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n return;\n case \"rejected\":\n null !== rejectListeners &&\n rejectChunk(response, rejectListeners, chunk.reason);\n return;\n }\n }\n }\n case \"pending\":\n if (chunk.value)\n for (response = 0; response < resolveListeners.length; response++)\n chunk.value.push(resolveListeners[response]);\n else chunk.value = resolveListeners;\n if (chunk.reason) {\n if (rejectListeners)\n for (\n resolveListeners = 0;\n resolveListeners < rejectListeners.length;\n resolveListeners++\n )\n chunk.reason.push(rejectListeners[resolveListeners]);\n } else chunk.reason = rejectListeners;\n break;\n case \"rejected\":\n rejectListeners && rejectChunk(response, rejectListeners, chunk.reason);\n }\n}\nfunction triggerErrorOnChunk(response, chunk, error) {\n if (\"pending\" !== chunk.status && \"blocked\" !== chunk.status)\n chunk.reason.error(error);\n else {\n var listeners = chunk.reason;\n chunk.status = \"rejected\";\n chunk.reason = error;\n null !== listeners && rejectChunk(response, listeners, error);\n }\n}\nfunction createResolvedIteratorResultChunk(response, value, done) {\n return new ReactPromise(\n \"resolved_model\",\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') + value + \"}\",\n response\n );\n}\nfunction resolveIteratorResultChunk(response, chunk, value, done) {\n resolveModelChunk(\n response,\n chunk,\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') + value + \"}\"\n );\n}\nfunction resolveModelChunk(response, chunk, value) {\n if (\"pending\" !== chunk.status) chunk.reason.enqueueModel(value);\n else {\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_model\";\n chunk.value = value;\n chunk.reason = response;\n null !== resolveListeners &&\n (initializeModelChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n}\nfunction resolveModuleChunk(response, chunk, value) {\n if (\"pending\" === chunk.status || \"blocked\" === chunk.status) {\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_module\";\n chunk.value = value;\n chunk.reason = null;\n null !== resolveListeners &&\n (initializeModuleChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n}\nvar initializingHandler = null;\nfunction initializeModelChunk(chunk) {\n var prevHandler = initializingHandler;\n initializingHandler = null;\n var resolvedModel = chunk.value,\n response = chunk.reason;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n try {\n var value = parseModel(response, resolvedModel),\n resolveListeners = chunk.value;\n if (null !== resolveListeners)\n for (\n chunk.value = null, chunk.reason = null, resolvedModel = 0;\n resolvedModel < resolveListeners.length;\n resolvedModel++\n ) {\n var listener = resolveListeners[resolvedModel];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n if (null !== initializingHandler) {\n if (initializingHandler.errored) throw initializingHandler.reason;\n if (0 < initializingHandler.deps) {\n initializingHandler.value = value;\n initializingHandler.chunk = chunk;\n return;\n }\n }\n chunk.status = \"fulfilled\";\n chunk.value = value;\n chunk.reason = null;\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n } finally {\n initializingHandler = prevHandler;\n }\n}\nfunction initializeModuleChunk(chunk) {\n try {\n var value = requireModule(chunk.value);\n chunk.status = \"fulfilled\";\n chunk.value = value;\n chunk.reason = null;\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n }\n}\nfunction reportGlobalError(weakResponse, error) {\n weakResponse._closed = !0;\n weakResponse._closedReason = error;\n weakResponse._chunks.forEach(function (chunk) {\n \"pending\" === chunk.status\n ? triggerErrorOnChunk(weakResponse, chunk, error)\n : \"fulfilled\" === chunk.status &&\n null !== chunk.reason &&\n chunk.reason.error(error);\n });\n}\nfunction createLazyChunkWrapper(chunk) {\n return { $$typeof: REACT_LAZY_TYPE, _payload: chunk, _init: readChunk };\n}\nfunction getChunk(response, id) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk ||\n (response._closed\n ? response._allowPartialStream\n ? ((response = chunk = createPendingChunk()),\n (response.status = \"halted\"),\n (response.value = null),\n (response.reason = null))\n : (chunk = new ReactPromise(\"rejected\", null, response._closedReason))\n : (chunk = createPendingChunk()),\n chunks.set(id, chunk));\n return chunk;\n}\nfunction fulfillReference(response, reference, value) {\n var handler = reference.handler,\n parentObject = reference.parentObject,\n key = reference.key,\n map = reference.map,\n path = reference.path;\n try {\n for (var i = 1; i < path.length; i++) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var referencedChunk = value._payload;\n if (referencedChunk === handler.chunk) value = handler.value;\n else {\n switch (referencedChunk.status) {\n case \"resolved_model\":\n initializeModelChunk(referencedChunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(referencedChunk);\n }\n switch (referencedChunk.status) {\n case \"fulfilled\":\n value = referencedChunk.value;\n continue;\n case \"blocked\":\n var cyclicHandler = resolveBlockedCycle(\n referencedChunk,\n reference\n );\n if (null !== cyclicHandler) {\n value = cyclicHandler.value;\n continue;\n }\n case \"pending\":\n path.splice(0, i - 1);\n null === referencedChunk.value\n ? (referencedChunk.value = [reference])\n : referencedChunk.value.push(reference);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [reference])\n : referencedChunk.reason.push(reference);\n return;\n case \"halted\":\n return;\n default:\n rejectReference(\n response,\n reference.handler,\n referencedChunk.reason\n );\n return;\n }\n }\n }\n var name = path[i];\n if (\n \"object\" === typeof value &&\n null !== value &&\n hasOwnProperty.call(value, name)\n )\n value = value[name];\n else throw Error(\"Invalid reference.\");\n }\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var referencedChunk$44 = value._payload;\n if (referencedChunk$44 === handler.chunk) value = handler.value;\n else {\n switch (referencedChunk$44.status) {\n case \"resolved_model\":\n initializeModelChunk(referencedChunk$44);\n break;\n case \"resolved_module\":\n initializeModuleChunk(referencedChunk$44);\n }\n switch (referencedChunk$44.status) {\n case \"fulfilled\":\n value = referencedChunk$44.value;\n continue;\n }\n break;\n }\n }\n var mappedValue = map(response, value, parentObject, key);\n \"__proto__\" !== key && (parentObject[key] = mappedValue);\n \"\" === key && null === handler.value && (handler.value = mappedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var element = handler.value;\n switch (key) {\n case \"3\":\n element.props = mappedValue;\n }\n }\n } catch (error) {\n rejectReference(response, reference.handler, error);\n return;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((reference = handler.chunk),\n null !== reference &&\n \"blocked\" === reference.status &&\n ((value = reference.value),\n (reference.status = \"fulfilled\"),\n (reference.value = handler.value),\n (reference.reason = handler.reason),\n null !== value && wakeChunk(response, value, handler.value, reference)));\n}\nfunction rejectReference(response, handler, error) {\n handler.errored ||\n ((handler.errored = !0),\n (handler.value = null),\n (handler.reason = error),\n (handler = handler.chunk),\n null !== handler &&\n \"blocked\" === handler.status &&\n triggerErrorOnChunk(response, handler, error));\n}\nfunction waitForReference(\n referencedChunk,\n parentObject,\n key,\n response,\n map,\n path\n) {\n initializingHandler\n ? ((response = initializingHandler), response.deps++)\n : (response = initializingHandler =\n {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n });\n parentObject = {\n handler: response,\n parentObject: parentObject,\n key: key,\n map: map,\n path: path\n };\n null === referencedChunk.value\n ? (referencedChunk.value = [parentObject])\n : referencedChunk.value.push(parentObject);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [parentObject])\n : referencedChunk.reason.push(parentObject);\n return null;\n}\nfunction loadServerReference(response, metaData, parentObject, key) {\n if (!response._serverReferenceConfig)\n return createBoundServerReference(\n metaData,\n response._callServer,\n response._encodeFormAction\n );\n var serverReference = resolveServerReference(\n response._serverReferenceConfig,\n metaData.id\n ),\n promise = preloadModule(serverReference);\n if (promise)\n metaData.bound && (promise = Promise.all([promise, metaData.bound]));\n else if (metaData.bound) promise = Promise.resolve(metaData.bound);\n else\n return (\n (promise = requireModule(serverReference)),\n registerBoundServerReference(\n promise,\n metaData.id,\n metaData.bound,\n response._encodeFormAction\n ),\n promise\n );\n if (initializingHandler) {\n var handler = initializingHandler;\n handler.deps++;\n } else\n handler = initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n };\n promise.then(\n function () {\n var resolvedValue = requireModule(serverReference);\n if (metaData.bound) {\n var boundArgs = metaData.bound.value.slice(0);\n boundArgs.unshift(null);\n resolvedValue = resolvedValue.bind.apply(resolvedValue, boundArgs);\n }\n registerBoundServerReference(\n resolvedValue,\n metaData.id,\n metaData.bound,\n response._encodeFormAction\n );\n \"__proto__\" !== key && (parentObject[key] = resolvedValue);\n \"\" === key && null === handler.value && (handler.value = resolvedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n )\n switch (((boundArgs = handler.value), key)) {\n case \"3\":\n boundArgs.props = resolvedValue;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((resolvedValue = handler.chunk),\n null !== resolvedValue &&\n \"blocked\" === resolvedValue.status &&\n ((boundArgs = resolvedValue.value),\n (resolvedValue.status = \"fulfilled\"),\n (resolvedValue.value = handler.value),\n (resolvedValue.reason = null),\n null !== boundArgs &&\n wakeChunk(response, boundArgs, handler.value, resolvedValue)));\n },\n function (error) {\n if (!handler.errored) {\n handler.errored = !0;\n handler.value = null;\n handler.reason = error;\n var chunk = handler.chunk;\n null !== chunk &&\n \"blocked\" === chunk.status &&\n triggerErrorOnChunk(response, chunk, error);\n }\n }\n );\n return null;\n}\nfunction getOutlinedModel(response, reference, parentObject, key, map) {\n reference = reference.split(\":\");\n var id = parseInt(reference[0], 16);\n id = getChunk(response, id);\n switch (id.status) {\n case \"resolved_model\":\n initializeModelChunk(id);\n break;\n case \"resolved_module\":\n initializeModuleChunk(id);\n }\n switch (id.status) {\n case \"fulfilled\":\n id = id.value;\n for (var i = 1; i < reference.length; i++) {\n for (\n ;\n \"object\" === typeof id &&\n null !== id &&\n id.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n id = id._payload;\n switch (id.status) {\n case \"resolved_model\":\n initializeModelChunk(id);\n break;\n case \"resolved_module\":\n initializeModuleChunk(id);\n }\n switch (id.status) {\n case \"fulfilled\":\n id = id.value;\n break;\n case \"blocked\":\n case \"pending\":\n return waitForReference(\n id,\n parentObject,\n key,\n response,\n map,\n reference.slice(i - 1)\n );\n case \"halted\":\n return (\n initializingHandler\n ? ((response = initializingHandler), response.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = id.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: id.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n }\n id = id[reference[i]];\n }\n for (\n ;\n \"object\" === typeof id &&\n null !== id &&\n id.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n reference = id._payload;\n switch (reference.status) {\n case \"resolved_model\":\n initializeModelChunk(reference);\n break;\n case \"resolved_module\":\n initializeModuleChunk(reference);\n }\n switch (reference.status) {\n case \"fulfilled\":\n id = reference.value;\n continue;\n }\n break;\n }\n return map(response, id, parentObject, key);\n case \"pending\":\n case \"blocked\":\n return waitForReference(id, parentObject, key, response, map, reference);\n case \"halted\":\n return (\n initializingHandler\n ? ((response = initializingHandler), response.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = id.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: id.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n}\nfunction createMap(response, model) {\n return new Map(model);\n}\nfunction createSet(response, model) {\n return new Set(model);\n}\nfunction createBlob(response, model) {\n return new Blob(model.slice(1), { type: model[0] });\n}\nfunction createFormData(response, model) {\n response = new FormData();\n for (var i = 0; i < model.length; i++)\n response.append(model[i][0], model[i][1]);\n return response;\n}\nfunction extractIterator(response, model) {\n return model[Symbol.iterator]();\n}\nfunction createModel(response, model) {\n return model;\n}\nfunction parseModelString(response, parentObject, key, value) {\n if (\"$\" === value[0]) {\n if (\"$\" === value)\n return (\n null !== initializingHandler &&\n \"0\" === key &&\n (initializingHandler = {\n parent: initializingHandler,\n chunk: null,\n value: null,\n reason: null,\n deps: 0,\n errored: !1\n }),\n REACT_ELEMENT_TYPE\n );\n switch (value[1]) {\n case \"$\":\n return value.slice(1);\n case \"L\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n (response = getChunk(response, parentObject)),\n createLazyChunkWrapper(response)\n );\n case \"@\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n getChunk(response, parentObject)\n );\n case \"S\":\n return Symbol.for(value.slice(2));\n case \"h\":\n return (\n (value = value.slice(2)),\n getOutlinedModel(\n response,\n value,\n parentObject,\n key,\n loadServerReference\n )\n );\n case \"T\":\n parentObject = \"$\" + value.slice(2);\n response = response._tempRefs;\n if (null == response)\n throw Error(\n \"Missing a temporary reference set but the RSC response returned a temporary reference. Pass a temporaryReference option with the set that was used with the reply.\"\n );\n return response.get(parentObject);\n case \"Q\":\n return (\n (value = value.slice(2)),\n getOutlinedModel(response, value, parentObject, key, createMap)\n );\n case \"W\":\n return (\n (value = value.slice(2)),\n getOutlinedModel(response, value, parentObject, key, createSet)\n );\n case \"B\":\n return (\n (value = value.slice(2)),\n getOutlinedModel(response, value, parentObject, key, createBlob)\n );\n case \"K\":\n return (\n (value = value.slice(2)),\n getOutlinedModel(response, value, parentObject, key, createFormData)\n );\n case \"Z\":\n return resolveErrorProd();\n case \"i\":\n return (\n (value = value.slice(2)),\n getOutlinedModel(response, value, parentObject, key, extractIterator)\n );\n case \"I\":\n return Infinity;\n case \"-\":\n return \"$-0\" === value ? -0 : -Infinity;\n case \"N\":\n return NaN;\n case \"u\":\n return;\n case \"D\":\n return new Date(Date.parse(value.slice(2)));\n case \"n\":\n return BigInt(value.slice(2));\n default:\n return (\n (value = value.slice(1)),\n getOutlinedModel(response, value, parentObject, key, createModel)\n );\n }\n }\n return value;\n}\nfunction missingCall() {\n throw Error(\n 'Trying to call a function from \"use server\" but the callServer option was not implemented in your router runtime.'\n );\n}\nfunction ResponseInstance(\n bundlerConfig,\n serverReferenceConfig,\n moduleLoading,\n callServer,\n encodeFormAction,\n nonce,\n temporaryReferences,\n allowPartialStream\n) {\n var chunks = new Map();\n this._bundlerConfig = bundlerConfig;\n this._serverReferenceConfig = serverReferenceConfig;\n this._moduleLoading = moduleLoading;\n this._callServer = void 0 !== callServer ? callServer : missingCall;\n this._encodeFormAction = encodeFormAction;\n this._nonce = nonce;\n this._chunks = chunks;\n this._stringDecoder = new util.TextDecoder();\n this._closed = !1;\n this._closedReason = null;\n this._allowPartialStream = allowPartialStream;\n this._tempRefs = temporaryReferences;\n}\nfunction createStreamState() {\n return { _rowState: 0, _rowID: 0, _rowTag: 0, _rowLength: 0, _buffer: [] };\n}\nfunction resolveBuffer(response, id, buffer) {\n response = response._chunks;\n var chunk = response.get(id);\n chunk && \"pending\" !== chunk.status\n ? chunk.reason.enqueueValue(buffer)\n : ((buffer = new ReactPromise(\"fulfilled\", buffer, null)),\n response.set(id, buffer));\n}\nfunction resolveModule(response, id, model) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n model = parseModel(response, model);\n var clientReference = resolveClientReference(response._bundlerConfig, model);\n prepareDestinationWithChunks(\n response._moduleLoading,\n model[1],\n response._nonce\n );\n if ((model = preloadModule(clientReference))) {\n if (chunk) {\n var blockedChunk = chunk;\n blockedChunk.status = \"blocked\";\n } else\n (blockedChunk = new ReactPromise(\"blocked\", null, null)),\n chunks.set(id, blockedChunk);\n model.then(\n function () {\n return resolveModuleChunk(response, blockedChunk, clientReference);\n },\n function (error) {\n return triggerErrorOnChunk(response, blockedChunk, error);\n }\n );\n } else\n chunk\n ? resolveModuleChunk(response, chunk, clientReference)\n : ((chunk = new ReactPromise(\"resolved_module\", clientReference, null)),\n chunks.set(id, chunk));\n}\nfunction resolveStream(response, id, stream, controller) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk\n ? \"pending\" === chunk.status &&\n ((id = chunk.value),\n (chunk.status = \"fulfilled\"),\n (chunk.value = stream),\n (chunk.reason = controller),\n null !== id && wakeChunk(response, id, chunk.value, chunk))\n : ((response = new ReactPromise(\"fulfilled\", stream, controller)),\n chunks.set(id, response));\n}\nfunction startReadableStream(response, id, type) {\n var controller = null,\n closed = !1;\n type = new ReadableStream({\n type: type,\n start: function (c) {\n controller = c;\n }\n });\n var previousBlockedChunk = null;\n resolveStream(response, id, type, {\n enqueueValue: function (value) {\n null === previousBlockedChunk\n ? controller.enqueue(value)\n : previousBlockedChunk.then(function () {\n controller.enqueue(value);\n });\n },\n enqueueModel: function (json) {\n if (null === previousBlockedChunk) {\n var chunk = new ReactPromise(\"resolved_model\", json, response);\n initializeModelChunk(chunk);\n \"fulfilled\" === chunk.status\n ? controller.enqueue(chunk.value)\n : (chunk.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n ),\n (previousBlockedChunk = chunk));\n } else {\n chunk = previousBlockedChunk;\n var chunk$55 = createPendingChunk();\n chunk$55.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n );\n previousBlockedChunk = chunk$55;\n chunk.then(function () {\n previousBlockedChunk === chunk$55 && (previousBlockedChunk = null);\n resolveModelChunk(response, chunk$55, json);\n });\n }\n },\n close: function () {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk)) controller.close();\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.close();\n });\n }\n },\n error: function (error) {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk))\n controller.error(error);\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.error(error);\n });\n }\n }\n });\n}\nfunction asyncIterator() {\n return this;\n}\nfunction createIterator(next) {\n next = { next: next };\n next[ASYNC_ITERATOR] = asyncIterator;\n return next;\n}\nfunction startAsyncIterable(response, id, iterator) {\n var buffer = [],\n closed = !1,\n nextWriteIndex = 0,\n iterable = {};\n iterable[ASYNC_ITERATOR] = function () {\n var nextReadIndex = 0;\n return createIterator(function (arg) {\n if (void 0 !== arg)\n throw Error(\n \"Values cannot be passed to next() of AsyncIterables passed to Client Components.\"\n );\n if (nextReadIndex === buffer.length) {\n if (closed)\n return new ReactPromise(\n \"fulfilled\",\n { done: !0, value: void 0 },\n null\n );\n buffer[nextReadIndex] = createPendingChunk();\n }\n return buffer[nextReadIndex++];\n });\n };\n resolveStream(\n response,\n id,\n iterator ? iterable[ASYNC_ITERATOR]() : iterable,\n {\n enqueueValue: function (value) {\n if (nextWriteIndex === buffer.length)\n buffer[nextWriteIndex] = new ReactPromise(\n \"fulfilled\",\n { done: !1, value: value },\n null\n );\n else {\n var chunk = buffer[nextWriteIndex],\n resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"fulfilled\";\n chunk.value = { done: !1, value: value };\n chunk.reason = null;\n null !== resolveListeners &&\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n );\n }\n nextWriteIndex++;\n },\n enqueueModel: function (value) {\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] = createResolvedIteratorResultChunk(\n response,\n value,\n !1\n ))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !1\n );\n nextWriteIndex++;\n },\n close: function (value) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] = createResolvedIteratorResultChunk(\n response,\n value,\n !0\n ))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !0\n ),\n nextWriteIndex++;\n nextWriteIndex < buffer.length;\n\n )\n resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex++],\n '\"$undefined\"',\n !0\n );\n },\n error: function (error) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length &&\n (buffer[nextWriteIndex] = createPendingChunk());\n nextWriteIndex < buffer.length;\n\n )\n triggerErrorOnChunk(response, buffer[nextWriteIndex++], error);\n }\n }\n );\n}\nfunction resolveErrorProd() {\n var error = Error(\n \"An error occurred in the Server Components render. The specific message is omitted in production builds to avoid leaking sensitive details. A digest property is included on this error instance which may provide additional details about the nature of the error.\"\n );\n error.stack = \"Error: \" + error.message;\n return error;\n}\nfunction mergeBuffer(buffer, lastChunk) {\n for (var l = buffer.length, byteLength = lastChunk.length, i = 0; i < l; i++)\n byteLength += buffer[i].byteLength;\n byteLength = new Uint8Array(byteLength);\n for (var i$56 = (i = 0); i$56 < l; i$56++) {\n var chunk = buffer[i$56];\n byteLength.set(chunk, i);\n i += chunk.byteLength;\n }\n byteLength.set(lastChunk, i);\n return byteLength;\n}\nfunction resolveTypedArray(\n response,\n id,\n buffer,\n lastChunk,\n constructor,\n bytesPerElement\n) {\n buffer =\n 0 === buffer.length && 0 === lastChunk.byteOffset % bytesPerElement\n ? lastChunk\n : mergeBuffer(buffer, lastChunk);\n constructor = new constructor(\n buffer.buffer,\n buffer.byteOffset,\n buffer.byteLength / bytesPerElement\n );\n resolveBuffer(response, id, constructor);\n}\nfunction processFullBinaryRow(response, streamState, id, tag, buffer, chunk) {\n switch (tag) {\n case 65:\n resolveBuffer(response, id, mergeBuffer(buffer, chunk).buffer);\n return;\n case 79:\n resolveTypedArray(response, id, buffer, chunk, Int8Array, 1);\n return;\n case 111:\n resolveBuffer(\n response,\n id,\n 0 === buffer.length ? chunk : mergeBuffer(buffer, chunk)\n );\n return;\n case 85:\n resolveTypedArray(response, id, buffer, chunk, Uint8ClampedArray, 1);\n return;\n case 83:\n resolveTypedArray(response, id, buffer, chunk, Int16Array, 2);\n return;\n case 115:\n resolveTypedArray(response, id, buffer, chunk, Uint16Array, 2);\n return;\n case 76:\n resolveTypedArray(response, id, buffer, chunk, Int32Array, 4);\n return;\n case 108:\n resolveTypedArray(response, id, buffer, chunk, Uint32Array, 4);\n return;\n case 71:\n resolveTypedArray(response, id, buffer, chunk, Float32Array, 4);\n return;\n case 103:\n resolveTypedArray(response, id, buffer, chunk, Float64Array, 8);\n return;\n case 77:\n resolveTypedArray(response, id, buffer, chunk, BigInt64Array, 8);\n return;\n case 109:\n resolveTypedArray(response, id, buffer, chunk, BigUint64Array, 8);\n return;\n case 86:\n resolveTypedArray(response, id, buffer, chunk, DataView, 1);\n return;\n }\n for (\n var stringDecoder = response._stringDecoder, row = \"\", i = 0;\n i < buffer.length;\n i++\n )\n row += stringDecoder.decode(buffer[i], decoderOptions);\n row += stringDecoder.decode(chunk);\n processFullStringRow(response, streamState, id, tag, row);\n}\nfunction processFullStringRow(response, streamState, id, tag, row) {\n switch (tag) {\n case 73:\n resolveModule(response, id, row);\n break;\n case 72:\n id = row[0];\n row = row.slice(1);\n response = parseModel(response, row);\n row = ReactDOMSharedInternals.d;\n switch (id) {\n case \"D\":\n row.D(response);\n break;\n case \"C\":\n \"string\" === typeof response\n ? row.C(response)\n : row.C(response[0], response[1]);\n break;\n case \"L\":\n id = response[0];\n streamState = response[1];\n 3 === response.length\n ? row.L(id, streamState, response[2])\n : row.L(id, streamState);\n break;\n case \"m\":\n \"string\" === typeof response\n ? row.m(response)\n : row.m(response[0], response[1]);\n break;\n case \"X\":\n \"string\" === typeof response\n ? row.X(response)\n : row.X(response[0], response[1]);\n break;\n case \"S\":\n \"string\" === typeof response\n ? row.S(response)\n : row.S(\n response[0],\n 0 === response[1] ? void 0 : response[1],\n 3 === response.length ? response[2] : void 0\n );\n break;\n case \"M\":\n \"string\" === typeof response\n ? row.M(response)\n : row.M(response[0], response[1]);\n }\n break;\n case 69:\n streamState = response._chunks;\n tag = streamState.get(id);\n row = JSON.parse(row);\n var error = resolveErrorProd();\n error.digest = row.digest;\n tag\n ? triggerErrorOnChunk(response, tag, error)\n : ((response = new ReactPromise(\"rejected\", null, error)),\n streamState.set(id, response));\n break;\n case 84:\n response = response._chunks;\n (streamState = response.get(id)) && \"pending\" !== streamState.status\n ? streamState.reason.enqueueValue(row)\n : ((row = new ReactPromise(\"fulfilled\", row, null)),\n response.set(id, row));\n break;\n case 78:\n case 68:\n case 74:\n case 87:\n throw Error(\n \"Failed to read a RSC payload created by a development version of React on the server while using a production version on the client. Always use matching versions on the server and the client.\"\n );\n case 82:\n startReadableStream(response, id, void 0);\n break;\n case 114:\n startReadableStream(response, id, \"bytes\");\n break;\n case 88:\n startAsyncIterable(response, id, !1);\n break;\n case 120:\n startAsyncIterable(response, id, !0);\n break;\n case 67:\n (id = response._chunks.get(id)) &&\n \"fulfilled\" === id.status &&\n id.reason.close(\"\" === row ? '\"$undefined\"' : row);\n break;\n default:\n (streamState = response._chunks),\n (tag = streamState.get(id))\n ? resolveModelChunk(response, tag, row)\n : ((response = new ReactPromise(\"resolved_model\", row, response)),\n streamState.set(id, response));\n }\n}\nfunction processBinaryChunk(weakResponse, streamState, chunk) {\n for (\n var i = 0,\n rowState = streamState._rowState,\n rowID = streamState._rowID,\n rowTag = streamState._rowTag,\n rowLength = streamState._rowLength,\n buffer = streamState._buffer,\n chunkLength = chunk.length;\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = chunk[i++];\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = chunk[i];\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 98 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 35 === rowState ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = chunk[i++];\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = chunk.indexOf(10, i);\n break;\n case 4:\n (lastIdx = i + rowLength), lastIdx > chunk.length && (lastIdx = -1);\n }\n var offset = chunk.byteOffset + i;\n if (-1 < lastIdx)\n (rowLength = new Uint8Array(chunk.buffer, offset, lastIdx - i)),\n 98 === rowTag\n ? resolveBuffer(\n weakResponse,\n rowID,\n lastIdx === chunkLength ? rowLength : rowLength.slice()\n )\n : processFullBinaryRow(\n weakResponse,\n streamState,\n rowID,\n rowTag,\n buffer,\n rowLength\n ),\n (i = lastIdx),\n 3 === rowState && i++,\n (rowLength = rowID = rowTag = rowState = 0),\n (buffer.length = 0);\n else {\n chunk = new Uint8Array(chunk.buffer, offset, chunk.byteLength - i);\n 98 === rowTag\n ? ((rowLength -= chunk.byteLength),\n resolveBuffer(weakResponse, rowID, chunk))\n : (buffer.push(chunk), (rowLength -= chunk.byteLength));\n break;\n }\n }\n streamState._rowState = rowState;\n streamState._rowID = rowID;\n streamState._rowTag = rowTag;\n streamState._rowLength = rowLength;\n}\nfunction parseModel(response, json) {\n json = JSON.parse(json);\n return reviveModel(response, json, { \"\": json }, \"\");\n}\nfunction reviveModel(response, value, parentObject, key) {\n if (\"string\" === typeof value)\n return \"$\" === value[0]\n ? parseModelString(response, parentObject, key, value)\n : value;\n if (\"object\" !== typeof value || null === value) return value;\n if (isArrayImpl(value)) {\n for (var i = 0; i < value.length; i++)\n value[i] = reviveModel(response, value[i], value, \"\" + i);\n return value[0] === REACT_ELEMENT_TYPE\n ? (value[0] === REACT_ELEMENT_TYPE\n ? ((response = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: value[1],\n key: value[2],\n ref: null,\n props: value[3]\n }),\n null !== initializingHandler &&\n ((value = initializingHandler),\n (initializingHandler = value.parent),\n value.errored\n ? ((response = new ReactPromise(\n \"rejected\",\n null,\n value.reason\n )),\n (response = createLazyChunkWrapper(response)))\n : 0 < value.deps &&\n ((i = new ReactPromise(\"blocked\", null, null)),\n (value.value = response),\n (value.chunk = i),\n (response = createLazyChunkWrapper(i)))))\n : (response = value),\n response)\n : value;\n }\n for (i in value)\n \"__proto__\" === i\n ? delete value[i]\n : ((parentObject = reviveModel(response, value[i], value, i)),\n void 0 !== parentObject ? (value[i] = parentObject) : delete value[i]);\n return value;\n}\nfunction close(weakResponse) {\n weakResponse._allowPartialStream\n ? ((weakResponse._closed = !0),\n weakResponse._chunks.forEach(function (chunk) {\n \"pending\" === chunk.status\n ? ((chunk.status = \"halted\"),\n (chunk.value = null),\n (chunk.reason = null))\n : \"fulfilled\" === chunk.status &&\n null !== chunk.reason &&\n chunk.reason.close('\"$undefined\"');\n }))\n : reportGlobalError(weakResponse, Error(\"Connection closed.\"));\n}\nfunction noServerCall$1() {\n throw Error(\n \"Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead.\"\n );\n}\nfunction createResponseFromOptions(options) {\n return new ResponseInstance(\n options.serverConsumerManifest.moduleMap,\n options.serverConsumerManifest.serverModuleMap,\n options.serverConsumerManifest.moduleLoading,\n noServerCall$1,\n options.encodeFormAction,\n \"string\" === typeof options.nonce ? options.nonce : void 0,\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n options && options.unstable_allowPartialStream\n ? options.unstable_allowPartialStream\n : !1\n );\n}\nfunction startReadingFromStream$1(response, stream, onDone) {\n function progress(_ref) {\n var value = _ref.value;\n if (_ref.done) return onDone();\n processBinaryChunk(response, streamState, value);\n return reader.read().then(progress).catch(error);\n }\n function error(e) {\n reportGlobalError(response, e);\n }\n var streamState = createStreamState(),\n reader = stream.getReader();\n reader.read().then(progress).catch(error);\n}\nfunction noServerCall() {\n throw Error(\n \"Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead.\"\n );\n}\nfunction startReadingFromStream(response, stream, onEnd) {\n var streamState = createStreamState();\n stream.on(\"data\", function (chunk) {\n if (\"string\" === typeof chunk) {\n for (\n var i = 0,\n rowState = streamState._rowState,\n rowID = streamState._rowID,\n rowTag = streamState._rowTag,\n rowLength = streamState._rowLength,\n buffer = streamState._buffer,\n chunkLength = chunk.length;\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = chunk.charCodeAt(i++);\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = chunk.charCodeAt(i);\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = chunk.charCodeAt(i++);\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = chunk.indexOf(\"\\n\", i);\n break;\n case 4:\n if (84 !== rowTag)\n throw Error(\n \"Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams.\"\n );\n if (rowLength < chunk.length || chunk.length > 3 * rowLength)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n lastIdx = chunk.length;\n }\n if (-1 < lastIdx) {\n if (0 < buffer.length)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n i = chunk.slice(i, lastIdx);\n processFullStringRow(response, streamState, rowID, rowTag, i);\n i = lastIdx;\n 3 === rowState && i++;\n rowLength = rowID = rowTag = rowState = 0;\n buffer.length = 0;\n } else if (chunk.length !== i)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n }\n streamState._rowState = rowState;\n streamState._rowID = rowID;\n streamState._rowTag = rowTag;\n streamState._rowLength = rowLength;\n } else processBinaryChunk(response, streamState, chunk);\n });\n stream.on(\"error\", function (error) {\n reportGlobalError(response, error);\n });\n stream.on(\"end\", onEnd);\n}\nexports.createFromFetch = function (promiseForResponse, options) {\n var response = createResponseFromOptions(options);\n promiseForResponse.then(\n function (r) {\n startReadingFromStream$1(response, r.body, close.bind(null, response));\n },\n function (e) {\n reportGlobalError(response, e);\n }\n );\n return getChunk(response, 0);\n};\nexports.createFromNodeStream = function (\n stream,\n serverConsumerManifest,\n options\n) {\n serverConsumerManifest = new ResponseInstance(\n serverConsumerManifest.moduleMap,\n serverConsumerManifest.serverModuleMap,\n serverConsumerManifest.moduleLoading,\n noServerCall,\n options ? options.encodeFormAction : void 0,\n options && \"string\" === typeof options.nonce ? options.nonce : void 0,\n void 0,\n options && options.unstable_allowPartialStream\n ? options.unstable_allowPartialStream\n : !1\n );\n startReadingFromStream(\n serverConsumerManifest,\n stream,\n close.bind(null, serverConsumerManifest)\n );\n return getChunk(serverConsumerManifest, 0);\n};\nexports.createFromReadableStream = function (stream, options) {\n options = createResponseFromOptions(options);\n startReadingFromStream$1(options, stream, close.bind(null, options));\n return getChunk(options, 0);\n};\nexports.createServerReference = function (id) {\n return createServerReference$1(id, noServerCall$1);\n};\nexports.createTemporaryReferenceSet = function () {\n return new Map();\n};\nexports.encodeReply = function (value, options) {\n return new Promise(function (resolve, reject) {\n var abort = processReply(\n value,\n \"\",\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n resolve,\n reject\n );\n if (options && options.signal) {\n var signal = options.signal;\n if (signal.aborted) abort(signal.reason);\n else {\n var listener = function () {\n abort(signal.reason);\n signal.removeEventListener(\"abort\", listener);\n };\n signal.addEventListener(\"abort\", listener);\n }\n }\n });\n};\nexports.registerServerReference = function (reference, id, encodeFormAction) {\n registerBoundServerReference(reference, id, null, encodeFormAction);\n return reference;\n};\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-server-dom-turbopack-client.node.production.js');\n} else {\n module.exports = require('./cjs/react-server-dom-turbopack-client.node.development.js');\n}\n","(()=>{\"use strict\";var e={328:e=>{function hash(e){var r=5381,_=e.length;while(_){r=r*33^e.charCodeAt(--_)}return r>>>0}e.exports=hash}};var r={};function __nccwpck_require__(_){var a=r[_];if(a!==undefined){return a.exports}var t=r[_]={exports:{}};var i=true;try{e[_](t,t.exports,__nccwpck_require__);i=false}finally{if(i)delete r[_]}return t.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var _=__nccwpck_require__(328);module.exports=_})();","function resolveArray(value) {\n if (Array.isArray(value)) {\n return value;\n }\n return [\n value\n ];\n}\nfunction resolveAsArrayOrUndefined(value) {\n if (typeof value === 'undefined' || value === null) {\n return undefined;\n }\n return resolveArray(value);\n}\nfunction getOrigin(url) {\n let origin = undefined;\n if (typeof url === 'string') {\n try {\n url = new URL(url);\n origin = url.origin;\n } catch {}\n }\n return origin;\n}\nexport { resolveAsArrayOrUndefined, resolveArray, getOrigin };\n\n//# sourceMappingURL=utils.js.map","const noop = ()=>{};\nlet registry;\nif (globalThis.FinalizationRegistry) {\n registry = new FinalizationRegistry((weakRef)=>{\n const stream = weakRef.deref();\n if (stream && !stream.locked) {\n stream.cancel('Response object has been garbage collected').then(noop);\n }\n });\n}\n/**\n * Clones a response by teeing the body so we can return two independent\n * ReadableStreams from it. This avoids the bug in the undici library around\n * response cloning.\n *\n * After cloning, the original response's body will be consumed and closed.\n *\n * @see https://github.com/vercel/next.js/pull/73274\n *\n * @param original - The original response to clone.\n * @returns A tuple containing two independent clones of the original response.\n */ export function cloneResponse(original) {\n // If the response has no body, then we can just return the original response\n // twice because it's immutable.\n if (!original.body) {\n return [\n original,\n original\n ];\n }\n const [body1, body2] = original.body.tee();\n const cloned1 = new Response(body1, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers\n });\n Object.defineProperty(cloned1, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false\n });\n const cloned2 = new Response(body2, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers\n });\n Object.defineProperty(cloned2, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false\n });\n // The Fetch Standard allows users to skip consuming the response body by\n // relying on garbage collection to release connection resources.\n // https://github.com/nodejs/undici?tab=readme-ov-file#garbage-collection\n //\n // To cancel the stream you then need to cancel both resulting branches.\n // Teeing a stream will generally lock it for the duration, preventing other\n // readers from locking it.\n // https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee\n if (registry) {\n if (cloned1.body) {\n registry.register(cloned1, new WeakRef(cloned1.body));\n }\n if (cloned2.body) {\n registry.register(cloned2, new WeakRef(cloned2.body));\n }\n }\n return [\n cloned1,\n cloned2\n ];\n}\n\n//# sourceMappingURL=clone-response.js.map","const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT';\nexport class StaticGenBailoutError extends Error {\n constructor(...args){\n super(...args), this.code = NEXT_STATIC_GEN_BAILOUT;\n }\n}\nexport function isStaticGenBailoutError(error) {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false;\n }\n return error.code === NEXT_STATIC_GEN_BAILOUT;\n}\n\n//# sourceMappingURL=static-generation-bailout.js.map","// eslint-disable-next-line import/no-extraneous-dependencies\nexport { createTemporaryReferenceSet, renderToReadableStream, decodeReply, decodeAction, decodeFormState } from 'react-server-dom-webpack/server';\n// eslint-disable-next-line import/no-extraneous-dependencies\nexport { prerender } from 'react-server-dom-webpack/static';\n// TODO: Just re-export `* as ReactServer`\nexport { captureOwnerStack, createElement, Fragment } from 'react';\nexport { default as LayoutRouter, LoadingBoundaryProvider } from '../../client/components/layout-router';\nexport { default as RenderFromTemplateContext } from '../../client/components/render-from-template-context';\nexport { workAsyncStorage } from '../app-render/work-async-storage.external';\nexport { workUnitAsyncStorage } from './work-unit-async-storage.external';\nexport { actionAsyncStorage } from '../app-render/action-async-storage.external';\nexport { ClientPageRoot } from '../../client/components/client-page';\nexport { ClientSegmentRoot } from '../../client/components/client-segment';\nexport { createServerSearchParamsForServerPage, createPrerenderSearchParamsForClientPage } from '../request/search-params';\nexport { createServerParamsForServerSegment, createPrerenderParamsForClientSegment } from '../request/params';\nexport * as serverHooks from '../../client/components/hooks-server-context';\nexport { HTTPAccessFallbackBoundary } from '../../client/components/http-access-fallback/error-boundary';\nexport { createMetadataComponents } from '../../lib/metadata/metadata';\nexport { RootLayoutBoundary } from '../../lib/framework/boundary-components';\nexport { preloadStyle, preloadFont, preconnect } from './rsc/preloads';\nexport { Postpone } from './rsc/postpone';\nexport { taintObjectReference } from './rsc/taint';\nexport { collectSegmentData, collectPrefetchHints } from './collect-segment-data';\nexport const InstantValidation = ()=>{\n if (process.env.NEXT_RUNTIME !== 'edge' && process.env.__NEXT_CACHE_COMPONENTS) {\n return require('./instant-validation/instant-validation');\n } else {\n return undefined;\n }\n};\nimport { workAsyncStorage } from '../app-render/work-async-storage.external';\nimport { workUnitAsyncStorage } from './work-unit-async-storage.external';\nimport { patchFetch as _patchFetch } from '../lib/patch-fetch';\nlet SegmentViewNode = ()=>null;\nlet SegmentViewStateNode = ()=>null;\nif (process.env.NODE_ENV === 'development') {\n const mod = require('../../next-devtools/userspace/app/segment-explorer-node');\n SegmentViewNode = mod.SegmentViewNode;\n SegmentViewStateNode = mod.SegmentViewStateNode;\n}\n// hot-reloader modules are not bundled so we need to inject `__next__clear_chunk_cache__`\n// into globalThis from this file which is bundled.\nif (process.env.TURBOPACK) {\n globalThis.__next__clear_chunk_cache__ = __turbopack_clear_chunk_cache__;\n} else {\n // Webpack does not have chunks on the server\n globalThis.__next__clear_chunk_cache__ = null;\n}\n// patchFetch makes use of APIs such as `React.unstable_postpone` which are only available\n// in the experimental channel of React, so export it from here so that it comes from the bundled runtime\nexport function patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage\n });\n}\n// Development only\nexport { SegmentViewNode, SegmentViewStateNode };\n\n//# sourceMappingURL=entry-base.js.map","import { jsx as _jsx, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport React, { Suspense, cache } from 'react';\nimport { resolveMetadata, resolveViewport } from './resolve-metadata';\nimport { isHTTPAccessFallbackError } from '../../client/components/http-access-fallback/http-access-fallback';\nimport { createServerSearchParamsForMetadata } from '../../server/request/search-params';\nimport { createServerPathnameForMetadata } from '../../server/request/pathname';\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone';\nimport { workUnitAsyncStorage, getStagedRenderingController } from '../../server/app-render/work-unit-async-storage.external';\nimport { RenderStage } from '../../server/app-render/staged-rendering';\nimport { MetadataBoundary, ViewportBoundary, OutletBoundary } from '../framework/boundary-components';\nimport { getOrigin } from './generate/utils';\nimport { IconMark } from './generate/icon-mark';\n// Use a promise to share the status of the metadata resolving,\n// returning two components `MetadataTree` and `MetadataOutlet`\n// `MetadataTree` is the one that will be rendered at first in the content sequence for metadata tags.\n// `MetadataOutlet` is the one that will be rendered under error boundaries for metadata resolving errors.\n// In this way we can let the metadata tags always render successfully,\n// and the error will be caught by the error boundary and trigger fallbacks.\nexport function createMetadataComponents({ tree, pathname, parsedQuery, metadataContext, interpolatedParams, errorType, serveStreamingMetadata, isRuntimePrefetchable }) {\n const searchParams = createServerSearchParamsForMetadata(parsedQuery, isRuntimePrefetchable);\n const pathnameForMetadata = createServerPathnameForMetadata(pathname);\n async function Viewport() {\n // Gate metadata to the correct render stage. If the page is not\n // runtime-prefetchable, defer until the Static stage so that\n // prefetchable segments get a head start.\n if (!isRuntimePrefetchable) {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n const stagedRendering = getStagedRenderingController(workUnitStore);\n if (stagedRendering) {\n await stagedRendering.waitForStage(RenderStage.Static);\n }\n }\n }\n const tags = await getResolvedViewport(tree, searchParams, interpolatedParams, isRuntimePrefetchable, errorType).catch((viewportErr)=>{\n // When Legacy PPR is enabled viewport can reject with a Postpone type\n // This will go away once Legacy PPR is removed and dynamic metadata will\n // stay pending until after the prerender is complete when it is dynamic\n if (isPostpone(viewportErr)) {\n throw viewportErr;\n }\n if (!errorType && isHTTPAccessFallbackError(viewportErr)) {\n return getNotFoundViewport(tree, searchParams, interpolatedParams, isRuntimePrefetchable).catch(()=>null);\n }\n // We're going to throw the error from the metadata outlet so we just render null here instead\n return null;\n });\n return tags;\n }\n Viewport.displayName = 'Next.Viewport';\n function ViewportWrapper() {\n return /*#__PURE__*/ _jsx(ViewportBoundary, {\n children: /*#__PURE__*/ _jsx(Viewport, {})\n });\n }\n async function Metadata() {\n // Gate metadata to the correct render stage. If the page is not\n // runtime-prefetchable, defer until the Static stage so that\n // prefetchable segments get a head start.\n if (!isRuntimePrefetchable) {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n const stagedRendering = getStagedRenderingController(workUnitStore);\n if (stagedRendering) {\n await stagedRendering.waitForStage(RenderStage.Static);\n }\n }\n }\n const tags = await getResolvedMetadata(tree, pathnameForMetadata, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable, errorType).catch((metadataErr)=>{\n // When Legacy PPR is enabled metadata can reject with a Postpone type\n // This will go away once Legacy PPR is removed and dynamic metadata will\n // stay pending until after the prerender is complete when it is dynamic\n if (isPostpone(metadataErr)) {\n throw metadataErr;\n }\n if (!errorType && isHTTPAccessFallbackError(metadataErr)) {\n return getNotFoundMetadata(tree, pathnameForMetadata, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable).catch(()=>null);\n }\n // We're going to throw the error from the metadata outlet so we just render null here instead\n return null;\n });\n return tags;\n }\n Metadata.displayName = 'Next.Metadata';\n function MetadataWrapper() {\n // TODO: We shouldn't change what we render based on whether we are streaming or not.\n // If we aren't streaming we should just block the response until we have resolved the\n // metadata.\n if (!serveStreamingMetadata) {\n return /*#__PURE__*/ _jsx(MetadataBoundary, {\n children: /*#__PURE__*/ _jsx(Metadata, {})\n });\n }\n return /*#__PURE__*/ _jsx(\"div\", {\n hidden: true,\n children: /*#__PURE__*/ _jsx(MetadataBoundary, {\n children: /*#__PURE__*/ _jsx(Suspense, {\n name: \"Next.Metadata\",\n children: /*#__PURE__*/ _jsx(Metadata, {})\n })\n })\n });\n }\n function MetadataOutlet() {\n const pendingOutlet = Promise.all([\n getResolvedMetadata(tree, pathnameForMetadata, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable, errorType),\n getResolvedViewport(tree, searchParams, interpolatedParams, isRuntimePrefetchable, errorType)\n ]).then(()=>null);\n // TODO: We shouldn't change what we render based on whether we are streaming or not.\n // If we aren't streaming we should just block the response until we have resolved the\n // metadata.\n if (!serveStreamingMetadata) {\n return /*#__PURE__*/ _jsx(OutletBoundary, {\n children: pendingOutlet\n });\n }\n return /*#__PURE__*/ _jsx(OutletBoundary, {\n children: /*#__PURE__*/ _jsx(Suspense, {\n name: \"Next.MetadataOutlet\",\n children: pendingOutlet\n })\n });\n }\n MetadataOutlet.displayName = 'Next.MetadataOutlet';\n return {\n Viewport: ViewportWrapper,\n Metadata: MetadataWrapper,\n MetadataOutlet\n };\n}\nconst getResolvedMetadata = cache(getResolvedMetadataImpl);\nasync function getResolvedMetadataImpl(tree, pathname, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable, errorType) {\n const errorConvention = errorType === 'redirect' ? undefined : errorType;\n return renderMetadata(tree, pathname, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable, errorConvention);\n}\nconst getNotFoundMetadata = cache(getNotFoundMetadataImpl);\nasync function getNotFoundMetadataImpl(tree, pathname, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable) {\n const notFoundErrorConvention = 'not-found';\n return renderMetadata(tree, pathname, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable, notFoundErrorConvention);\n}\nconst getResolvedViewport = cache(getResolvedViewportImpl);\nasync function getResolvedViewportImpl(tree, searchParams, interpolatedParams, isRuntimePrefetchable, errorType) {\n const errorConvention = errorType === 'redirect' ? undefined : errorType;\n return renderViewport(tree, searchParams, interpolatedParams, isRuntimePrefetchable, errorConvention);\n}\nconst getNotFoundViewport = cache(getNotFoundViewportImpl);\nasync function getNotFoundViewportImpl(tree, searchParams, interpolatedParams, isRuntimePrefetchable) {\n const notFoundErrorConvention = 'not-found';\n return renderViewport(tree, searchParams, interpolatedParams, isRuntimePrefetchable, notFoundErrorConvention);\n}\nasync function renderMetadata(tree, pathname, searchParams, interpolatedParams, metadataContext, isRuntimePrefetchable, errorConvention) {\n const resolvedMetadata = await resolveMetadata(tree, pathname, searchParams, errorConvention, interpolatedParams, metadataContext, isRuntimePrefetchable);\n return /*#__PURE__*/ _jsx(_Fragment, {\n children: createMetadataElements(resolvedMetadata)\n });\n}\nasync function renderViewport(tree, searchParams, interpolatedParams, isRuntimePrefetchable, errorConvention) {\n const resolvedViewport = await resolveViewport(tree, searchParams, errorConvention, interpolatedParams, isRuntimePrefetchable);\n return /*#__PURE__*/ _jsx(_Fragment, {\n children: createViewportElements(resolvedViewport)\n });\n}\n// ---------------------------------------------------------------------------\n// Viewport tag rendering\n// ---------------------------------------------------------------------------\nfunction createViewportElements(viewport) {\n const tags = [];\n let i = 0;\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n charSet: \"utf-8\"\n }, i++));\n // Build viewport content string from layout properties\n const viewportParts = [];\n if (viewport.width != null) {\n viewportParts.push(`width=${viewport.width}`);\n }\n if (viewport.height != null) {\n viewportParts.push(`height=${viewport.height}`);\n }\n if (viewport.initialScale != null) {\n viewportParts.push(`initial-scale=${viewport.initialScale}`);\n }\n if (viewport.minimumScale != null) {\n viewportParts.push(`minimum-scale=${viewport.minimumScale}`);\n }\n if (viewport.maximumScale != null) {\n viewportParts.push(`maximum-scale=${viewport.maximumScale}`);\n }\n if (viewport.userScalable != null) {\n viewportParts.push(`user-scalable=${viewport.userScalable ? 'yes' : 'no'}`);\n }\n if (viewport.viewportFit) {\n viewportParts.push(`viewport-fit=${viewport.viewportFit}`);\n }\n if (viewport.interactiveWidget) {\n viewportParts.push(`interactive-widget=${viewport.interactiveWidget}`);\n }\n if (viewportParts.length) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"viewport\",\n content: viewportParts.join(', ')\n }, i++));\n }\n if (viewport.themeColor) {\n for (const themeColor of viewport.themeColor){\n if (themeColor.media) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"theme-color\",\n content: themeColor.color,\n media: themeColor.media\n }, i++));\n } else {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"theme-color\",\n content: themeColor.color\n }, i++));\n }\n }\n }\n if (viewport.colorScheme) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"color-scheme\",\n content: viewport.colorScheme\n }, i++));\n }\n return tags;\n}\n// ---------------------------------------------------------------------------\n// Metadata tag rendering\n// ---------------------------------------------------------------------------\nfunction createMetadataElements(metadata) {\n var _metadata_robots, _metadata_robots1;\n const tags = [];\n let i = 0;\n // --- Title ---\n if (metadata.title !== null && metadata.title.absolute) {\n tags.push(/*#__PURE__*/ _jsx(\"title\", {\n children: metadata.title.absolute\n }, i++));\n }\n // --- Basic meta tags ---\n if (metadata.description) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"description\",\n content: metadata.description\n }, i++));\n }\n if (metadata.applicationName) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"application-name\",\n content: metadata.applicationName\n }, i++));\n }\n // --- Authors ---\n if (metadata.authors) {\n for (const author of metadata.authors){\n if (author.url) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"author\",\n href: author.url.toString()\n }, i++));\n }\n if (author.name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"author\",\n content: author.name\n }, i++));\n }\n }\n }\n // --- Manifest ---\n if (metadata.manifest) {\n const manifestOrigin = getOrigin(metadata.manifest);\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"manifest\",\n href: metadata.manifest.toString(),\n crossOrigin: !manifestOrigin && process.env.VERCEL_ENV === 'preview' ? 'use-credentials' : undefined\n }, i++));\n }\n if (metadata.generator) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"generator\",\n content: metadata.generator\n }, i++));\n }\n if (metadata.keywords && metadata.keywords.length) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"keywords\",\n content: metadata.keywords.join(',')\n }, i++));\n }\n if (metadata.referrer) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"referrer\",\n content: metadata.referrer\n }, i++));\n }\n if (metadata.creator) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"creator\",\n content: metadata.creator\n }, i++));\n }\n if (metadata.publisher) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"publisher\",\n content: metadata.publisher\n }, i++));\n }\n if ((_metadata_robots = metadata.robots) == null ? void 0 : _metadata_robots.basic) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"robots\",\n content: metadata.robots.basic\n }, i++));\n }\n if ((_metadata_robots1 = metadata.robots) == null ? void 0 : _metadata_robots1.googleBot) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"googlebot\",\n content: metadata.robots.googleBot\n }, i++));\n }\n if (metadata.abstract) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"abstract\",\n content: metadata.abstract\n }, i++));\n }\n // --- Link rel arrays ---\n if (metadata.archives) {\n for (const archive of metadata.archives){\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"archives\",\n href: archive\n }, i++));\n }\n }\n if (metadata.assets) {\n for (const asset of metadata.assets){\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"assets\",\n href: asset\n }, i++));\n }\n }\n if (metadata.bookmarks) {\n for (const bookmark of metadata.bookmarks){\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"bookmarks\",\n href: bookmark\n }, i++));\n }\n }\n // --- Pagination ---\n if (metadata.pagination) {\n if (metadata.pagination.previous) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"prev\",\n href: metadata.pagination.previous\n }, i++));\n }\n if (metadata.pagination.next) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"next\",\n href: metadata.pagination.next\n }, i++));\n }\n }\n if (metadata.category) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"category\",\n content: metadata.category\n }, i++));\n }\n if (metadata.classification) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"classification\",\n content: metadata.classification\n }, i++));\n }\n // --- Other (arbitrary name/value pairs) ---\n if (metadata.other) {\n for (const [name, content] of Object.entries(metadata.other)){\n if (Array.isArray(content)) {\n for (const contentItem of content){\n if (contentItem != null && contentItem !== '') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: name,\n content: String(contentItem)\n }, i++));\n }\n }\n } else if (content != null && content !== '') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: name,\n content: String(content)\n }, i++));\n }\n }\n }\n // --- Alternates ---\n if (metadata.alternates) {\n const { canonical, languages, media, types } = metadata.alternates;\n if (canonical && canonical.url) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"canonical\",\n href: canonical.url.toString(),\n ...canonical.title ? {\n title: canonical.title\n } : undefined\n }, i++));\n }\n if (languages) {\n for (const [locale, descriptors] of Object.entries(languages)){\n if (descriptors) {\n for (const descriptor of descriptors){\n if (descriptor.url) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"alternate\",\n hrefLang: locale,\n href: descriptor.url.toString(),\n ...descriptor.title ? {\n title: descriptor.title\n } : undefined\n }, i++));\n }\n }\n }\n }\n }\n if (media) {\n for (const [mediaName, descriptors] of Object.entries(media)){\n if (descriptors) {\n for (const descriptor of descriptors){\n if (descriptor.url) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"alternate\",\n media: mediaName,\n href: descriptor.url.toString(),\n ...descriptor.title ? {\n title: descriptor.title\n } : undefined\n }, i++));\n }\n }\n }\n }\n }\n if (types) {\n for (const [type, descriptors] of Object.entries(types)){\n if (descriptors) {\n for (const descriptor of descriptors){\n if (descriptor.url) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: \"alternate\",\n type: type,\n href: descriptor.url.toString(),\n ...descriptor.title ? {\n title: descriptor.title\n } : undefined\n }, i++));\n }\n }\n }\n }\n }\n }\n // --- iTunes ---\n if (metadata.itunes) {\n const { appId, appArgument } = metadata.itunes;\n let itunesContent = `app-id=${appId}`;\n if (appArgument) {\n itunesContent += `, app-argument=${appArgument}`;\n }\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"apple-itunes-app\",\n content: itunesContent\n }, i++));\n }\n // --- Facebook ---\n if (metadata.facebook) {\n if (metadata.facebook.appId) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"fb:app_id\",\n content: metadata.facebook.appId\n }, i++));\n }\n if (metadata.facebook.admins) {\n for (const admin of metadata.facebook.admins){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"fb:admins\",\n content: admin\n }, i++));\n }\n }\n }\n // --- Pinterest ---\n if (metadata.pinterest && metadata.pinterest.richPin !== undefined) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"pinterest-rich-pin\",\n content: metadata.pinterest.richPin.toString()\n }, i++));\n }\n // --- Format Detection ---\n if (metadata.formatDetection) {\n const formatDetectionKeys = [\n 'telephone',\n 'date',\n 'address',\n 'email',\n 'url'\n ];\n let formatContent = '';\n for (const key of formatDetectionKeys){\n if (metadata.formatDetection[key] === false) {\n if (formatContent) formatContent += ', ';\n formatContent += `${key}=no`;\n }\n }\n if (formatContent) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"format-detection\",\n content: formatContent\n }, i++));\n }\n }\n // --- Verification ---\n if (metadata.verification) {\n const verification = metadata.verification;\n if (verification.google) {\n for (const value of verification.google){\n if (value != null && value !== '') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"google-site-verification\",\n content: String(value)\n }, i++));\n }\n }\n }\n if (verification.yahoo) {\n for (const value of verification.yahoo){\n if (value != null && value !== '') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"y_key\",\n content: String(value)\n }, i++));\n }\n }\n }\n if (verification.yandex) {\n for (const value of verification.yandex){\n if (value != null && value !== '') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"yandex-verification\",\n content: String(value)\n }, i++));\n }\n }\n }\n if (verification.me) {\n for (const value of verification.me){\n if (value != null && value !== '') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"me\",\n content: String(value)\n }, i++));\n }\n }\n }\n if (verification.other) {\n for (const [name, values] of Object.entries(verification.other)){\n for (const value of values){\n if (value != null && value !== '') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: name,\n content: String(value)\n }, i++));\n }\n }\n }\n }\n }\n // --- Apple Web App ---\n if (metadata.appleWebApp) {\n const { capable, title, startupImage, statusBarStyle } = metadata.appleWebApp;\n if (capable) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"mobile-web-app-capable\",\n content: \"yes\"\n }, i++));\n }\n if (title) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"apple-mobile-web-app-title\",\n content: title\n }, i++));\n }\n if (startupImage) {\n for (const image of startupImage){\n if (image.media) {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n href: image.url,\n media: image.media,\n rel: \"apple-touch-startup-image\"\n }, i++));\n } else {\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n href: image.url,\n rel: \"apple-touch-startup-image\"\n }, i++));\n }\n }\n }\n if (statusBarStyle) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"apple-mobile-web-app-status-bar-style\",\n content: statusBarStyle\n }, i++));\n }\n }\n // --- Open Graph ---\n if (metadata.openGraph) {\n var _og_title;\n const og = metadata.openGraph;\n if (og.determiner) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:determiner\",\n content: og.determiner\n }, i++));\n }\n if ((_og_title = og.title) == null ? void 0 : _og_title.absolute) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:title\",\n content: og.title.absolute\n }, i++));\n }\n if (og.description) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:description\",\n content: og.description\n }, i++));\n }\n if (og.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:url\",\n content: og.url.toString()\n }, i++));\n }\n if (og.siteName) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:site_name\",\n content: og.siteName\n }, i++));\n }\n if (og.locale) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:locale\",\n content: og.locale\n }, i++));\n }\n if (og.countryName) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:country_name\",\n content: og.countryName\n }, i++));\n }\n if (og.ttl != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:ttl\",\n content: og.ttl.toString()\n }, i++));\n }\n // OG images\n if (og.images) {\n for (const image of og.images){\n if (typeof image === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:image\",\n content: image\n }, i++));\n } else {\n if (image.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:image\",\n content: String(image.url)\n }, i++));\n }\n if (image.secureUrl) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:image:secure_url\",\n content: String(image.secureUrl)\n }, i++));\n }\n if (image.type) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:image:type\",\n content: image.type\n }, i++));\n }\n if (image.width) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:image:width\",\n content: String(image.width)\n }, i++));\n }\n if (image.height) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:image:height\",\n content: String(image.height)\n }, i++));\n }\n if (image.alt) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:image:alt\",\n content: image.alt\n }, i++));\n }\n }\n }\n }\n // OG videos\n if (og.videos) {\n for (const video of og.videos){\n if (typeof video === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:video\",\n content: video\n }, i++));\n } else {\n if (video.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:video\",\n content: String(video.url)\n }, i++));\n }\n if (video.secureUrl) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:video:secure_url\",\n content: String(video.secureUrl)\n }, i++));\n }\n if (video.type) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:video:type\",\n content: video.type\n }, i++));\n }\n if (video.width) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:video:width\",\n content: String(video.width)\n }, i++));\n }\n if (video.height) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:video:height\",\n content: String(video.height)\n }, i++));\n }\n }\n }\n }\n // OG audio\n if (og.audio) {\n for (const audio of og.audio){\n if (typeof audio === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:audio\",\n content: audio\n }, i++));\n } else {\n if (audio.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:audio\",\n content: String(audio.url)\n }, i++));\n }\n if (audio.secureUrl) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:audio:secure_url\",\n content: String(audio.secureUrl)\n }, i++));\n }\n if (audio.type) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:audio:type\",\n content: audio.type\n }, i++));\n }\n }\n }\n }\n // OG simple array properties\n if (og.emails) {\n for (const email of og.emails){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:email\",\n content: email\n }, i++));\n }\n }\n if (og.phoneNumbers) {\n for (const phone of og.phoneNumbers){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:phone_number\",\n content: phone\n }, i++));\n }\n }\n if (og.faxNumbers) {\n for (const fax of og.faxNumbers){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:fax_number\",\n content: fax\n }, i++));\n }\n }\n if (og.alternateLocale) {\n for (const locale of og.alternateLocale){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:locale:alternate\",\n content: locale\n }, i++));\n }\n }\n // OG type-specific tags\n if ('type' in og) {\n const ogType = og.type;\n switch(ogType){\n case 'website':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"website\"\n }, i++));\n break;\n case 'article':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"article\"\n }, i++));\n if (og.publishedTime) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"article:published_time\",\n content: og.publishedTime.toString()\n }, i++));\n }\n if (og.modifiedTime) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"article:modified_time\",\n content: og.modifiedTime.toString()\n }, i++));\n }\n if (og.expirationTime) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"article:expiration_time\",\n content: og.expirationTime.toString()\n }, i++));\n }\n if (og.authors) {\n for (const author of og.authors){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"article:author\",\n content: String(author)\n }, i++));\n }\n }\n if (og.section) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"article:section\",\n content: og.section\n }, i++));\n }\n if (og.tags) {\n for (const tag of og.tags){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"article:tag\",\n content: tag\n }, i++));\n }\n }\n break;\n case 'book':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"book\"\n }, i++));\n if (og.isbn) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"book:isbn\",\n content: og.isbn\n }, i++));\n }\n if (og.releaseDate) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"book:release_date\",\n content: og.releaseDate\n }, i++));\n }\n if (og.authors) {\n for (const author of og.authors){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"book:author\",\n content: String(author)\n }, i++));\n }\n }\n if (og.tags) {\n for (const tag of og.tags){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"book:tag\",\n content: tag\n }, i++));\n }\n }\n break;\n case 'profile':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"profile\"\n }, i++));\n if (og.firstName) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"profile:first_name\",\n content: og.firstName\n }, i++));\n }\n if (og.lastName) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"profile:last_name\",\n content: og.lastName\n }, i++));\n }\n if (og.username) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"profile:username\",\n content: og.username\n }, i++));\n }\n if (og.gender) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"profile:gender\",\n content: og.gender\n }, i++));\n }\n break;\n case 'music.song':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"music.song\"\n }, i++));\n if (og.duration != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:duration\",\n content: og.duration.toString()\n }, i++));\n }\n if (og.albums) {\n for (const album of og.albums){\n if (typeof album === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:album\",\n content: album\n }, i++));\n } else {\n if (album.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:album\",\n content: String(album.url)\n }, i++));\n }\n if (album.disc != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:album:disc\",\n content: String(album.disc)\n }, i++));\n }\n if (album.track != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:album:track\",\n content: String(album.track)\n }, i++));\n }\n }\n }\n }\n if (og.musicians) {\n for (const musician of og.musicians){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:musician\",\n content: String(musician)\n }, i++));\n }\n }\n break;\n case 'music.album':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"music.album\"\n }, i++));\n if (og.songs) {\n for (const song of og.songs){\n if (typeof song === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song\",\n content: song\n }, i++));\n } else {\n if (song.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song\",\n content: String(song.url)\n }, i++));\n }\n if (song.disc != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song:disc\",\n content: String(song.disc)\n }, i++));\n }\n if (song.track != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song:track\",\n content: String(song.track)\n }, i++));\n }\n }\n }\n }\n if (og.musicians) {\n for (const musician of og.musicians){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:musician\",\n content: String(musician)\n }, i++));\n }\n }\n if (og.releaseDate) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:release_date\",\n content: og.releaseDate\n }, i++));\n }\n break;\n case 'music.playlist':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"music.playlist\"\n }, i++));\n if (og.songs) {\n for (const song of og.songs){\n if (typeof song === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song\",\n content: song\n }, i++));\n } else {\n if (song.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song\",\n content: String(song.url)\n }, i++));\n }\n if (song.disc != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song:disc\",\n content: String(song.disc)\n }, i++));\n }\n if (song.track != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:song:track\",\n content: String(song.track)\n }, i++));\n }\n }\n }\n }\n if (og.creators) {\n for (const creator of og.creators){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:creator\",\n content: String(creator)\n }, i++));\n }\n }\n break;\n case 'music.radio_station':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"music.radio_station\"\n }, i++));\n if (og.creators) {\n for (const creator of og.creators){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"music:creator\",\n content: String(creator)\n }, i++));\n }\n }\n break;\n case 'video.movie':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"video.movie\"\n }, i++));\n if (og.actors) {\n for (const actor of og.actors){\n if (typeof actor === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:actor\",\n content: actor\n }, i++));\n } else {\n if (actor.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:actor\",\n content: String(actor.url)\n }, i++));\n }\n if (actor.role) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:actor:role\",\n content: actor.role\n }, i++));\n }\n }\n }\n }\n if (og.directors) {\n for (const director of og.directors){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:director\",\n content: String(director)\n }, i++));\n }\n }\n if (og.writers) {\n for (const writer of og.writers){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:writer\",\n content: String(writer)\n }, i++));\n }\n }\n if (og.duration != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:duration\",\n content: String(og.duration)\n }, i++));\n }\n if (og.releaseDate) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:release_date\",\n content: og.releaseDate\n }, i++));\n }\n if (og.tags) {\n for (const tag of og.tags){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:tag\",\n content: tag\n }, i++));\n }\n }\n break;\n case 'video.episode':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"video.episode\"\n }, i++));\n if (og.actors) {\n for (const actor of og.actors){\n if (typeof actor === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:actor\",\n content: actor\n }, i++));\n } else {\n if (actor.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:actor\",\n content: String(actor.url)\n }, i++));\n }\n if (actor.role) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:actor:role\",\n content: actor.role\n }, i++));\n }\n }\n }\n }\n if (og.directors) {\n for (const director of og.directors){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:director\",\n content: String(director)\n }, i++));\n }\n }\n if (og.writers) {\n for (const writer of og.writers){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:writer\",\n content: String(writer)\n }, i++));\n }\n }\n if (og.duration != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:duration\",\n content: String(og.duration)\n }, i++));\n }\n if (og.releaseDate) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:release_date\",\n content: og.releaseDate\n }, i++));\n }\n if (og.tags) {\n for (const tag of og.tags){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:tag\",\n content: tag\n }, i++));\n }\n }\n if (og.series) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"video:series\",\n content: String(og.series)\n }, i++));\n }\n break;\n case 'video.tv_show':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"video.tv_show\"\n }, i++));\n break;\n case 'video.other':\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"og:type\",\n content: \"video.other\"\n }, i++));\n break;\n default:\n const _exhaustiveCheck = ogType;\n throw Object.defineProperty(new Error(`Invalid OpenGraph type: ${_exhaustiveCheck}`), \"__NEXT_ERROR_CODE\", {\n value: \"E237\",\n enumerable: false,\n configurable: true\n });\n }\n }\n }\n // --- Twitter ---\n if (metadata.twitter) {\n var _tw_title;\n const tw = metadata.twitter;\n const { card } = tw;\n if (card) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:card\",\n content: card\n }, i++));\n }\n if (tw.site) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:site\",\n content: tw.site\n }, i++));\n }\n if (tw.siteId) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:site:id\",\n content: tw.siteId\n }, i++));\n }\n if (tw.creator) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:creator\",\n content: tw.creator\n }, i++));\n }\n if (tw.creatorId) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:creator:id\",\n content: tw.creatorId\n }, i++));\n }\n if ((_tw_title = tw.title) == null ? void 0 : _tw_title.absolute) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:title\",\n content: tw.title.absolute\n }, i++));\n }\n if (tw.description) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:description\",\n content: tw.description\n }, i++));\n }\n // Twitter images\n if (tw.images) {\n for (const image of tw.images){\n if (typeof image === 'string') {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:image\",\n content: image\n }, i++));\n } else {\n if (image.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:image\",\n content: String(image.url)\n }, i++));\n }\n if (image.alt) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:image:alt\",\n content: image.alt\n }, i++));\n }\n if (image.secureUrl) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:image:secure_url\",\n content: String(image.secureUrl)\n }, i++));\n }\n if (image.type) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:image:type\",\n content: image.type\n }, i++));\n }\n if (image.width) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:image:width\",\n content: String(image.width)\n }, i++));\n }\n if (image.height) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:image:height\",\n content: String(image.height)\n }, i++));\n }\n }\n }\n }\n // Twitter player cards\n if (card === 'player') {\n for (const player of tw.players){\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:player\",\n content: player.playerUrl.toString()\n }, i++));\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:player:stream\",\n content: player.streamUrl.toString()\n }, i++));\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:player:width\",\n content: String(player.width)\n }, i++));\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: \"twitter:player:height\",\n content: String(player.height)\n }, i++));\n }\n }\n // Twitter app cards\n if (card === 'app') {\n const { app } = tw;\n for (const platform of [\n 'iphone',\n 'ipad',\n 'googleplay'\n ]){\n var _app_url;\n if (app.name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: `twitter:app:name:${platform}`,\n content: app.name\n }, i++));\n }\n if (app.id[platform]) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: `twitter:app:id:${platform}`,\n content: String(app.id[platform])\n }, i++));\n }\n if ((_app_url = app.url) == null ? void 0 : _app_url[platform]) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n name: `twitter:app:url:${platform}`,\n content: app.url[platform].toString()\n }, i++));\n }\n }\n }\n }\n // --- App Links ---\n if (metadata.appLinks) {\n const appLinks = metadata.appLinks;\n // iOS / iPhone / iPad (AppLinksApple: url, app_store_id, app_name)\n if (appLinks.ios) {\n for (const item of appLinks.ios){\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:ios:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.app_store_id) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:ios:app_store_id\",\n content: String(item.app_store_id)\n }, i++));\n }\n if (item.app_name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:ios:app_name\",\n content: item.app_name\n }, i++));\n }\n }\n }\n if (appLinks.iphone) {\n for (const item of appLinks.iphone){\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:iphone:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.app_store_id) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:iphone:app_store_id\",\n content: String(item.app_store_id)\n }, i++));\n }\n if (item.app_name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:iphone:app_name\",\n content: item.app_name\n }, i++));\n }\n }\n }\n if (appLinks.ipad) {\n for (const item of appLinks.ipad){\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:ipad:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.app_store_id) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:ipad:app_store_id\",\n content: String(item.app_store_id)\n }, i++));\n }\n if (item.app_name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:ipad:app_name\",\n content: item.app_name\n }, i++));\n }\n }\n }\n // Android (AppLinksAndroid: package, url, class, app_name)\n if (appLinks.android) {\n for (const item of appLinks.android){\n if (item.package) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:android:package\",\n content: item.package\n }, i++));\n }\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:android:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.class) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:android:class\",\n content: item.class\n }, i++));\n }\n if (item.app_name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:android:app_name\",\n content: item.app_name\n }, i++));\n }\n }\n }\n // Windows Phone (AppLinksWindows: url, app_id, app_name)\n if (appLinks.windows_phone) {\n for (const item of appLinks.windows_phone){\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows_phone:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.app_id) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows_phone:app_id\",\n content: item.app_id\n }, i++));\n }\n if (item.app_name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows_phone:app_name\",\n content: item.app_name\n }, i++));\n }\n }\n }\n // Windows (AppLinksWindows: url, app_id, app_name)\n if (appLinks.windows) {\n for (const item of appLinks.windows){\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.app_id) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows:app_id\",\n content: item.app_id\n }, i++));\n }\n if (item.app_name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows:app_name\",\n content: item.app_name\n }, i++));\n }\n }\n }\n // Windows Universal (AppLinksWindows: url, app_id, app_name)\n if (appLinks.windows_universal) {\n for (const item of appLinks.windows_universal){\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows_universal:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.app_id) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows_universal:app_id\",\n content: item.app_id\n }, i++));\n }\n if (item.app_name) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:windows_universal:app_name\",\n content: item.app_name\n }, i++));\n }\n }\n }\n // Web (AppLinksWeb: url, should_fallback)\n if (appLinks.web) {\n for (const item of appLinks.web){\n if (item.url) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:web:url\",\n content: String(item.url)\n }, i++));\n }\n if (item.should_fallback != null) {\n tags.push(/*#__PURE__*/ _jsx(\"meta\", {\n property: \"al:web:should_fallback\",\n content: String(item.should_fallback)\n }, i++));\n }\n }\n }\n }\n // --- Icons ---\n if (metadata.icons) {\n const { shortcut, icon, apple, other } = metadata.icons;\n const hasIcon = Boolean((shortcut == null ? void 0 : shortcut.length) || (icon == null ? void 0 : icon.length) || (apple == null ? void 0 : apple.length) || (other == null ? void 0 : other.length));\n if (shortcut) {\n for (const ic of shortcut){\n const { url, rel, ...props } = ic;\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: rel || 'shortcut icon',\n href: url.toString(),\n ...props\n }, i++));\n }\n }\n if (icon) {\n for (const ic of icon){\n const { url, rel, ...props } = ic;\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: rel || 'icon',\n href: url.toString(),\n ...props\n }, i++));\n }\n }\n if (apple) {\n for (const ic of apple){\n const { url, rel, ...props } = ic;\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: rel || 'apple-touch-icon',\n href: url.toString(),\n ...props\n }, i++));\n }\n }\n if (other) {\n for (const ic of other){\n const { url, rel, ...props } = ic;\n tags.push(/*#__PURE__*/ _jsx(\"link\", {\n rel: rel || 'icon',\n href: url.toString(),\n ...props\n }, i++));\n }\n }\n if (hasIcon) {\n tags.push(/*#__PURE__*/ _jsx(IconMark, {}, i++));\n }\n }\n return tags;\n}\n\n//# sourceMappingURL=metadata.js.map","import { getSegmentParam } from '../../shared/lib/router/utils/get-segment-param';\nimport { workAsyncStorage } from '../../server/app-render/work-async-storage.external';\nimport { InvariantError } from '../../shared/lib/invariant-error';\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport 'server-only';\nimport { cache } from 'react';\nimport { createDefaultMetadata, createDefaultViewport } from './default-metadata';\nimport { resolveOpenGraph, resolveTwitter } from './resolvers/resolve-opengraph';\nimport { resolveTitle } from './resolvers/resolve-title';\nimport { resolveAsArrayOrUndefined } from './generate/utils';\nimport { getComponentTypeModule, getLayoutOrPageModule } from '../../server/lib/app-dir-module';\nimport { resolveAlternates, resolveAppleWebApp, resolveAppLinks, resolveRobots, resolveThemeColor, resolveVerification, resolveItunes, resolveFacebook, resolvePagination } from './resolvers/resolve-basics';\nimport { resolveIcons } from './resolvers/resolve-icons';\nimport { getTracer } from '../../server/lib/trace/tracer';\nimport { ResolveMetadataSpan } from '../../server/lib/trace/constants';\nimport { PAGE_SEGMENT_KEY } from '../../shared/lib/segment';\nimport * as Log from '../../build/output/log';\nimport { createServerParamsForMetadata } from '../../server/request/params';\nimport { getUseCacheFunctionInfo, isUseCacheFunction } from '../client-and-server-references';\nimport { createLazyResult } from '../../server/lib/lazy-result';\nfunction isFavicon(icon) {\n if (!icon) {\n return false;\n }\n // turbopack appends a hash to all images\n return (icon.url === '/favicon.ico' || icon.url.toString().startsWith('/favicon.ico?')) && icon.type === 'image/x-icon';\n}\nfunction convertUrlsToStrings(input) {\n if (input instanceof URL) {\n return input.toString();\n } else if (Array.isArray(input)) {\n return input.map((item)=>convertUrlsToStrings(item));\n } else if (input && typeof input === 'object') {\n const result = {};\n for (const [key, value] of Object.entries(input)){\n result[key] = convertUrlsToStrings(value);\n }\n return result;\n }\n return input;\n}\nfunction normalizeMetadataBase(metadataBase) {\n if (typeof metadataBase === 'string') {\n try {\n metadataBase = new URL(metadataBase);\n } catch {\n throw Object.defineProperty(new Error(`metadataBase is not a valid URL: ${metadataBase}`), \"__NEXT_ERROR_CODE\", {\n value: \"E850\",\n enumerable: false,\n configurable: true\n });\n }\n }\n return metadataBase;\n}\nasync function mergeStaticMetadata(metadataBase, source, target, staticFilesMetadata, metadataContext, titleTemplates, leafSegmentStaticIcons, pathname) {\n var _source_twitter, _source_openGraph;\n if (!staticFilesMetadata) return target;\n const { icon, apple, openGraph, twitter, manifest } = staticFilesMetadata;\n // Keep updating the static icons in the most leaf node\n if (icon) {\n leafSegmentStaticIcons.icon = icon;\n }\n if (apple) {\n leafSegmentStaticIcons.apple = apple;\n }\n // file based metadata is specified and current level metadata twitter.images is not specified\n if (twitter && !(source == null ? void 0 : (_source_twitter = source.twitter) == null ? void 0 : _source_twitter.hasOwnProperty('images'))) {\n const resolvedTwitter = resolveTwitter({\n ...target.twitter,\n images: twitter\n }, metadataBase, {\n ...metadataContext,\n isStaticMetadataRouteFile: true\n }, titleTemplates.twitter);\n target.twitter = convertUrlsToStrings(resolvedTwitter);\n }\n // file based metadata is specified and current level metadata openGraph.images is not specified\n if (openGraph && !(source == null ? void 0 : (_source_openGraph = source.openGraph) == null ? void 0 : _source_openGraph.hasOwnProperty('images'))) {\n const resolvedOpenGraph = await resolveOpenGraph({\n ...target.openGraph,\n images: openGraph\n }, metadataBase, pathname, {\n ...metadataContext,\n isStaticMetadataRouteFile: true\n }, titleTemplates.openGraph);\n target.openGraph = convertUrlsToStrings(resolvedOpenGraph);\n }\n if (manifest) {\n target.manifest = manifest;\n }\n return target;\n}\n/**\n * Merges the given metadata with the resolved metadata. Returns a new object.\n */ async function mergeMetadata(route, pathname, { metadata, resolvedMetadata, staticFilesMetadata, titleTemplates, metadataContext, buildState, leafSegmentStaticIcons }) {\n const newResolvedMetadata = structuredClone(resolvedMetadata);\n const metadataBase = normalizeMetadataBase((metadata == null ? void 0 : metadata.metadataBase) !== undefined ? metadata.metadataBase : resolvedMetadata.metadataBase);\n for(const key_ in metadata){\n const key = key_;\n switch(key){\n case 'title':\n {\n newResolvedMetadata.title = resolveTitle(metadata.title, titleTemplates.title);\n break;\n }\n case 'alternates':\n {\n newResolvedMetadata.alternates = convertUrlsToStrings(await resolveAlternates(metadata.alternates, metadataBase, pathname, metadataContext));\n break;\n }\n case 'openGraph':\n {\n newResolvedMetadata.openGraph = convertUrlsToStrings(await resolveOpenGraph(metadata.openGraph, metadataBase, pathname, metadataContext, titleTemplates.openGraph));\n break;\n }\n case 'twitter':\n {\n newResolvedMetadata.twitter = convertUrlsToStrings(resolveTwitter(metadata.twitter, metadataBase, metadataContext, titleTemplates.twitter));\n break;\n }\n case 'facebook':\n newResolvedMetadata.facebook = resolveFacebook(metadata.facebook);\n break;\n case 'verification':\n newResolvedMetadata.verification = resolveVerification(metadata.verification);\n break;\n case 'icons':\n {\n newResolvedMetadata.icons = convertUrlsToStrings(resolveIcons(metadata.icons));\n break;\n }\n case 'appleWebApp':\n newResolvedMetadata.appleWebApp = resolveAppleWebApp(metadata.appleWebApp);\n break;\n case 'appLinks':\n newResolvedMetadata.appLinks = convertUrlsToStrings(resolveAppLinks(metadata.appLinks));\n break;\n case 'robots':\n {\n newResolvedMetadata.robots = resolveRobots(metadata.robots);\n break;\n }\n case 'archives':\n case 'assets':\n case 'bookmarks':\n case 'keywords':\n {\n newResolvedMetadata[key] = resolveAsArrayOrUndefined(metadata[key]);\n break;\n }\n case 'authors':\n {\n newResolvedMetadata[key] = convertUrlsToStrings(resolveAsArrayOrUndefined(metadata.authors));\n break;\n }\n case 'itunes':\n {\n newResolvedMetadata[key] = await resolveItunes(metadata.itunes, metadataBase, pathname, metadataContext);\n break;\n }\n case 'pagination':\n {\n newResolvedMetadata.pagination = await resolvePagination(metadata.pagination, metadataBase, pathname, metadataContext);\n break;\n }\n // directly assign fields that fallback to null\n case 'abstract':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'applicationName':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'description':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'generator':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'creator':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'publisher':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'category':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'classification':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'referrer':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'formatDetection':\n newResolvedMetadata[key] = metadata[key] ?? null;\n break;\n case 'manifest':\n newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null;\n break;\n case 'pinterest':\n newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null;\n break;\n case 'other':\n newResolvedMetadata.other = Object.assign({}, newResolvedMetadata.other, metadata.other);\n if (metadata.other) {\n if ('apple-touch-fullscreen' in metadata.other) {\n buildState.warnings.add(`Use appleWebApp instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`);\n }\n if ('apple-touch-icon-precomposed' in metadata.other) {\n buildState.warnings.add(`Use icons.apple instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`);\n }\n }\n break;\n case 'metadataBase':\n newResolvedMetadata.metadataBase = metadataBase ? metadataBase.toString() : null;\n break;\n case 'apple-touch-fullscreen':\n {\n buildState.warnings.add(`Use appleWebApp instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`);\n break;\n }\n case 'apple-touch-icon-precomposed':\n {\n buildState.warnings.add(`Use icons.apple instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`);\n break;\n }\n case 'themeColor':\n case 'colorScheme':\n case 'viewport':\n if (metadata[key] != null) {\n buildState.warnings.add(`Unsupported metadata ${key} is configured in metadata export in ${route}. Please move it to viewport export instead.\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-viewport`);\n }\n break;\n default:\n {\n key;\n }\n }\n }\n return mergeStaticMetadata(metadataBase, metadata, newResolvedMetadata, staticFilesMetadata, metadataContext, titleTemplates, leafSegmentStaticIcons, pathname);\n}\n/**\n * Merges the given viewport with the resolved viewport. Returns a new object.\n */ function mergeViewport({ resolvedViewport, viewport }) {\n const newResolvedViewport = structuredClone(resolvedViewport);\n if (viewport) {\n for(const key_ in viewport){\n const key = key_;\n switch(key){\n case 'themeColor':\n {\n newResolvedViewport.themeColor = resolveThemeColor(viewport.themeColor);\n break;\n }\n case 'colorScheme':\n newResolvedViewport.colorScheme = viewport.colorScheme || null;\n break;\n case 'width':\n case 'height':\n case 'initialScale':\n case 'minimumScale':\n case 'maximumScale':\n case 'userScalable':\n case 'viewportFit':\n case 'interactiveWidget':\n // always override the target with the source\n // @ts-ignore viewport properties\n newResolvedViewport[key] = viewport[key];\n break;\n default:\n key;\n }\n }\n }\n return newResolvedViewport;\n}\nfunction getDefinedViewport(mod, props, tracingProps) {\n if (typeof mod.generateViewport === 'function') {\n const { route } = tracingProps;\n const segmentProps = createSegmentProps(mod.generateViewport, props);\n return Object.assign((parent)=>getTracer().trace(ResolveMetadataSpan.generateViewport, {\n spanName: `generateViewport ${route}`,\n attributes: {\n 'next.page': route\n }\n }, ()=>mod.generateViewport(segmentProps, parent)), {\n $$original: mod.generateViewport\n });\n }\n return mod.viewport || null;\n}\nfunction getDefinedMetadata(mod, props, tracingProps) {\n if (typeof mod.generateMetadata === 'function') {\n const { route } = tracingProps;\n const segmentProps = createSegmentProps(mod.generateMetadata, props);\n return Object.assign((parent)=>getTracer().trace(ResolveMetadataSpan.generateMetadata, {\n spanName: `generateMetadata ${route}`,\n attributes: {\n 'next.page': route\n }\n }, ()=>mod.generateMetadata(segmentProps, parent)), {\n $$original: mod.generateMetadata\n });\n }\n return mod.metadata || null;\n}\n/**\n * If `fn` is a `'use cache'` function, we add special markers to the props,\n * that the cache wrapper reads and removes, before passing the props to the\n * user function.\n */ function createSegmentProps(fn, props) {\n return isUseCacheFunction(fn) ? 'searchParams' in props ? {\n ...props,\n $$isPage: true\n } : {\n ...props,\n $$isLayout: true\n } : props;\n}\nasync function collectStaticImagesFiles(metadata, props, type) {\n if (!(metadata == null ? void 0 : metadata[type])) return undefined;\n const iconPromises = metadata[type].map(async (imageModule)=>await imageModule(props));\n return (iconPromises == null ? void 0 : iconPromises.length) > 0 ? (await Promise.all(iconPromises)).flat() : undefined;\n}\nasync function resolveStaticMetadata(modules, props) {\n const { metadata } = modules;\n if (!metadata) return null;\n const [icon, apple, openGraph, twitter] = await Promise.all([\n collectStaticImagesFiles(metadata, props, 'icon'),\n collectStaticImagesFiles(metadata, props, 'apple'),\n collectStaticImagesFiles(metadata, props, 'openGraph'),\n collectStaticImagesFiles(metadata, props, 'twitter')\n ]);\n const staticMetadata = {\n icon,\n apple,\n openGraph,\n twitter,\n manifest: metadata.manifest\n };\n return staticMetadata;\n}\n// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata]\nasync function collectMetadata({ tree, metadataItems, errorMetadataItem, props, route, errorConvention }) {\n let mod;\n let modType;\n const hasErrorConventionComponent = Boolean(errorConvention && tree[2][errorConvention]);\n if (errorConvention) {\n mod = await getComponentTypeModule(tree, 'layout');\n modType = errorConvention;\n } else {\n const { mod: layoutOrPageMod, modType: layoutOrPageModType } = await getLayoutOrPageModule(tree);\n mod = layoutOrPageMod;\n modType = layoutOrPageModType;\n }\n if (modType) {\n route += `/${modType}`;\n }\n const staticFilesMetadata = await resolveStaticMetadata(tree[2], props);\n const metadataExport = mod ? getDefinedMetadata(mod, props, {\n route\n }) : null;\n metadataItems.push([\n metadataExport,\n staticFilesMetadata\n ]);\n if (hasErrorConventionComponent && errorConvention) {\n const errorMod = await getComponentTypeModule(tree, errorConvention);\n const errorMetadataExport = errorMod ? getDefinedMetadata(errorMod, props, {\n route\n }) : null;\n errorMetadataItem[0] = errorMetadataExport;\n errorMetadataItem[1] = staticFilesMetadata;\n }\n}\n// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata]\nasync function collectViewport({ tree, viewportItems, errorViewportItemRef, props, route, errorConvention }) {\n let mod;\n let modType;\n const hasErrorConventionComponent = Boolean(errorConvention && tree[2][errorConvention]);\n if (errorConvention) {\n mod = await getComponentTypeModule(tree, 'layout');\n modType = errorConvention;\n } else {\n const { mod: layoutOrPageMod, modType: layoutOrPageModType } = await getLayoutOrPageModule(tree);\n mod = layoutOrPageMod;\n modType = layoutOrPageModType;\n }\n if (modType) {\n route += `/${modType}`;\n }\n const viewportExport = mod ? getDefinedViewport(mod, props, {\n route\n }) : null;\n viewportItems.push(viewportExport);\n if (hasErrorConventionComponent && errorConvention) {\n const errorMod = await getComponentTypeModule(tree, errorConvention);\n const errorViewportExport = errorMod ? getDefinedViewport(errorMod, props, {\n route\n }) : null;\n errorViewportItemRef.current = errorViewportExport;\n }\n}\nconst resolveMetadataItems = cache(async function(tree, searchParams, errorConvention, interpolatedParams, isRuntimePrefetchable) {\n const parentParams = {};\n const metadataItems = [];\n const errorMetadataItem = [\n null,\n null\n ];\n const treePrefix = undefined;\n return resolveMetadataItemsImpl(metadataItems, tree, treePrefix, parentParams, null, searchParams, errorConvention, errorMetadataItem, interpolatedParams, isRuntimePrefetchable);\n});\nasync function resolveMetadataItemsImpl(metadataItems, tree, /** Provided tree can be nested subtree, this argument says what is the path of such subtree */ treePrefix, parentParams, parentOptionalCatchAllParamName, searchParams, errorConvention, errorMetadataItem, interpolatedParams, isRuntimePrefetchable) {\n const [segment, parallelRoutes, { page }] = tree;\n const currentTreePrefix = treePrefix && treePrefix.length ? [\n ...treePrefix,\n segment\n ] : [\n segment\n ];\n const isPage = typeof page !== 'undefined';\n // Handle dynamic segment params.\n let currentParams = parentParams;\n const segmentParam = getSegmentParam(segment);\n if (segmentParam) {\n const value = interpolatedParams[segmentParam.paramName];\n if (value !== null && value !== undefined) {\n currentParams = {\n ...parentParams,\n [segmentParam.paramName]: value\n };\n }\n }\n // Track optional catch-all params with no value (see comment in\n // create-component-tree.tsx for full explanation).\n const optionalCatchAllParamName = (segmentParam == null ? void 0 : segmentParam.paramType) === 'optional-catchall' && (interpolatedParams[segmentParam.paramName] === null || interpolatedParams[segmentParam.paramName] === undefined) ? segmentParam.paramName : parentOptionalCatchAllParamName;\n const params = createServerParamsForMetadata(currentParams, optionalCatchAllParamName, isRuntimePrefetchable);\n const props = isPage ? {\n params,\n searchParams\n } : {\n params\n };\n await collectMetadata({\n tree,\n metadataItems,\n errorMetadataItem,\n errorConvention,\n props,\n route: currentTreePrefix// __PAGE__ shouldn't be shown in a route\n .filter((s)=>s !== PAGE_SEGMENT_KEY).join('/')\n });\n for(const key in parallelRoutes){\n const childTree = parallelRoutes[key];\n await resolveMetadataItemsImpl(metadataItems, childTree, currentTreePrefix, currentParams, optionalCatchAllParamName, searchParams, errorConvention, errorMetadataItem, interpolatedParams, isRuntimePrefetchable);\n }\n if (Object.keys(parallelRoutes).length === 0 && errorConvention) {\n // If there are no parallel routes, place error metadata as the last item.\n // e.g. layout -> layout -> not-found\n metadataItems.push(errorMetadataItem);\n }\n return metadataItems;\n}\nconst resolveViewportItems = cache(async function(tree, searchParams, errorConvention, interpolatedParams, isRuntimePrefetchable) {\n const parentParams = {};\n const viewportItems = [];\n const errorViewportItemRef = {\n current: null\n };\n const treePrefix = undefined;\n return resolveViewportItemsImpl(viewportItems, tree, treePrefix, parentParams, null, searchParams, errorConvention, errorViewportItemRef, interpolatedParams, isRuntimePrefetchable);\n});\nasync function resolveViewportItemsImpl(viewportItems, tree, /** Provided tree can be nested subtree, this argument says what is the path of such subtree */ treePrefix, parentParams, parentOptionalCatchAllParamName, searchParams, errorConvention, errorViewportItemRef, interpolatedParams, isRuntimePrefetchable) {\n const [segment, parallelRoutes, { page }] = tree;\n const currentTreePrefix = treePrefix && treePrefix.length ? [\n ...treePrefix,\n segment\n ] : [\n segment\n ];\n const isPage = typeof page !== 'undefined';\n // Handle dynamic segment params.\n let currentParams = parentParams;\n const segmentParam = getSegmentParam(segment);\n if (segmentParam) {\n const value = interpolatedParams[segmentParam.paramName];\n if (value !== null && value !== undefined) {\n currentParams = {\n ...parentParams,\n [segmentParam.paramName]: value\n };\n }\n }\n // Track optional catch-all params with no value (see comment in\n // create-component-tree.tsx for full explanation).\n const optionalCatchAllParamName = (segmentParam == null ? void 0 : segmentParam.paramType) === 'optional-catchall' && (interpolatedParams[segmentParam.paramName] === null || interpolatedParams[segmentParam.paramName] === undefined) ? segmentParam.paramName : parentOptionalCatchAllParamName;\n const params = createServerParamsForMetadata(currentParams, optionalCatchAllParamName, isRuntimePrefetchable);\n let layerProps;\n if (isPage) {\n layerProps = {\n params,\n searchParams\n };\n } else {\n layerProps = {\n params\n };\n }\n await collectViewport({\n tree,\n viewportItems,\n errorViewportItemRef,\n errorConvention,\n props: layerProps,\n route: currentTreePrefix// __PAGE__ shouldn't be shown in a route\n .filter((s)=>s !== PAGE_SEGMENT_KEY).join('/')\n });\n for(const key in parallelRoutes){\n const childTree = parallelRoutes[key];\n await resolveViewportItemsImpl(viewportItems, childTree, currentTreePrefix, currentParams, optionalCatchAllParamName, searchParams, errorConvention, errorViewportItemRef, interpolatedParams, isRuntimePrefetchable);\n }\n if (Object.keys(parallelRoutes).length === 0 && errorConvention) {\n // If there are no parallel routes, place error metadata as the last item.\n // e.g. layout -> layout -> not-found\n viewportItems.push(errorViewportItemRef.current);\n }\n return viewportItems;\n}\nconst isTitleTruthy = (title)=>!!(title == null ? void 0 : title.absolute);\nconst hasTitle = (metadata)=>isTitleTruthy(metadata == null ? void 0 : metadata.title);\nfunction inheritFromMetadata(target, metadata) {\n if (target) {\n if (!hasTitle(target) && hasTitle(metadata)) {\n target.title = metadata.title;\n }\n if (!target.description && metadata.description) {\n target.description = metadata.description;\n }\n }\n}\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nconst commonOgKeys = [\n 'title',\n 'description',\n 'images'\n];\nfunction postProcessMetadata(metadata, favicon, titleTemplates, metadataContext) {\n const { openGraph, twitter } = metadata;\n if (openGraph) {\n // If there's openGraph information but not configured in twitter,\n // inherit them from openGraph metadata.\n let autoFillProps = {};\n const hasTwTitle = hasTitle(twitter);\n const hasTwDescription = twitter == null ? void 0 : twitter.description;\n const hasTwImages = Boolean((twitter == null ? void 0 : twitter.hasOwnProperty('images')) && twitter.images);\n if (!hasTwTitle) {\n if (isTitleTruthy(openGraph.title)) {\n autoFillProps.title = openGraph.title;\n } else if (metadata.title && isTitleTruthy(metadata.title)) {\n autoFillProps.title = metadata.title;\n }\n }\n if (!hasTwDescription) autoFillProps.description = openGraph.description || metadata.description || undefined;\n if (!hasTwImages) autoFillProps.images = openGraph.images;\n if (Object.keys(autoFillProps).length > 0) {\n const partialTwitter = resolveTwitter(autoFillProps, normalizeMetadataBase(metadata.metadataBase), metadataContext, titleTemplates.twitter);\n if (metadata.twitter) {\n metadata.twitter = Object.assign({}, metadata.twitter, {\n ...!hasTwTitle && {\n title: partialTwitter == null ? void 0 : partialTwitter.title\n },\n ...!hasTwDescription && {\n description: partialTwitter == null ? void 0 : partialTwitter.description\n },\n ...!hasTwImages && {\n images: partialTwitter == null ? void 0 : partialTwitter.images\n }\n });\n } else {\n metadata.twitter = convertUrlsToStrings(partialTwitter);\n }\n }\n }\n // If there's no title and description configured in openGraph or twitter,\n // use the title and description from metadata.\n inheritFromMetadata(openGraph, metadata);\n inheritFromMetadata(twitter, metadata);\n if (favicon) {\n if (!metadata.icons) {\n metadata.icons = {\n icon: [],\n apple: []\n };\n }\n metadata.icons.icon.unshift(favicon);\n }\n return metadata;\n}\nfunction prerenderMetadata(metadataItems) {\n // If the index is a function then it is a resolver and the next slot\n // is the corresponding result. If the index is not a function it is the result\n // itself.\n const resolversAndResults = [];\n for(let i = 0; i < metadataItems.length; i++){\n const metadataExport = metadataItems[i][0];\n getResult(resolversAndResults, metadataExport);\n }\n return resolversAndResults;\n}\nfunction prerenderViewport(viewportItems) {\n // If the index is a function then it is a resolver and the next slot\n // is the corresponding result. If the index is not a function it is the result\n // itself.\n const resolversAndResults = [];\n for(let i = 0; i < viewportItems.length; i++){\n const viewportExport = viewportItems[i];\n getResult(resolversAndResults, viewportExport);\n }\n return resolversAndResults;\n}\nconst noop = ()=>{};\nfunction getResult(resolversAndResults, exportForResult) {\n if (typeof exportForResult === 'function') {\n // If the function is a 'use cache' function that uses the parent data as\n // the second argument, we don't want to eagerly execute it during\n // metadata/viewport pre-rendering, as the parent data might also be\n // computed from another 'use cache' function. To ensure that the hanging\n // input abort signal handling works in this case (i.e. the depending\n // function waits for the cached input to resolve while encoding its args),\n // they must be called sequentially. This can be accomplished by wrapping\n // the call in a lazy promise, so that the original function is only called\n // when the result is actually awaited.\n const useCacheFunctionInfo = getUseCacheFunctionInfo(exportForResult.$$original);\n if (useCacheFunctionInfo && useCacheFunctionInfo.usedArgs[1]) {\n const promise = new Promise((resolve)=>resolversAndResults.push(resolve));\n resolversAndResults.push(createLazyResult(async ()=>exportForResult(promise)));\n } else {\n let result;\n if (useCacheFunctionInfo) {\n resolversAndResults.push(noop);\n // @ts-expect-error We intentionally omit the parent argument, because\n // we know from the check above that the 'use cache' function does not\n // use it.\n result = exportForResult();\n } else {\n result = exportForResult(new Promise((resolve)=>resolversAndResults.push(resolve)));\n }\n resolversAndResults.push(result);\n if (result instanceof Promise) {\n // since we eager execute generateMetadata and\n // they can reject at anytime we need to ensure\n // we attach the catch handler right away to\n // prevent unhandled rejections crashing the process\n result.catch((err)=>{\n return {\n __nextError: err\n };\n });\n }\n }\n } else if (typeof exportForResult === 'object') {\n resolversAndResults.push(exportForResult);\n } else {\n resolversAndResults.push(null);\n }\n}\nfunction freezeInDev(obj) {\n if (process.env.NODE_ENV === 'development') {\n return require('../../shared/lib/deep-freeze').deepFreeze(obj);\n }\n return obj;\n}\nexport async function accumulateMetadata(route, metadataItems, pathname, metadataContext) {\n let resolvedMetadata = createDefaultMetadata();\n let titleTemplates = {\n title: null,\n twitter: null,\n openGraph: null\n };\n const buildState = {\n warnings: new Set()\n };\n let favicon;\n // Collect the static icons in the most leaf node,\n // since we don't collect all the static metadata icons in the parent segments.\n const leafSegmentStaticIcons = {\n icon: [],\n apple: []\n };\n const resolversAndResults = prerenderMetadata(metadataItems);\n let resultIndex = 0;\n for(let i = 0; i < metadataItems.length; i++){\n var _staticFilesMetadata_icon;\n const staticFilesMetadata = metadataItems[i][1];\n // Treat favicon as special case, it should be the first icon in the list\n // i <= 1 represents root layout, and if current page is also at root\n if (i <= 1 && isFavicon(staticFilesMetadata == null ? void 0 : (_staticFilesMetadata_icon = staticFilesMetadata.icon) == null ? void 0 : _staticFilesMetadata_icon[0])) {\n var _staticFilesMetadata_icon1;\n const iconMod = staticFilesMetadata == null ? void 0 : (_staticFilesMetadata_icon1 = staticFilesMetadata.icon) == null ? void 0 : _staticFilesMetadata_icon1.shift();\n if (i === 0) favicon = iconMod;\n }\n let pendingMetadata = resolversAndResults[resultIndex++];\n if (typeof pendingMetadata === 'function') {\n // This metadata item had a `generateMetadata` and\n // we need to provide the currently resolved metadata\n // to it before we continue;\n const resolveParentMetadata = pendingMetadata;\n // we know that the next item is a result if this item\n // was a resolver\n pendingMetadata = resolversAndResults[resultIndex++];\n resolveParentMetadata(freezeInDev(resolvedMetadata));\n }\n // Otherwise the item was either null or a static export\n let metadata;\n if (isPromiseLike(pendingMetadata)) {\n metadata = await pendingMetadata;\n } else {\n metadata = pendingMetadata;\n }\n resolvedMetadata = await mergeMetadata(route, pathname, {\n resolvedMetadata,\n metadata,\n metadataContext,\n staticFilesMetadata,\n titleTemplates,\n buildState,\n leafSegmentStaticIcons\n });\n // If the layout is the same layer with page, skip the leaf layout and leaf page\n // The leaf layout and page are the last two items\n if (i < metadataItems.length - 2) {\n var _resolvedMetadata_title, _resolvedMetadata_openGraph, _resolvedMetadata_twitter;\n titleTemplates = {\n title: ((_resolvedMetadata_title = resolvedMetadata.title) == null ? void 0 : _resolvedMetadata_title.template) || null,\n openGraph: ((_resolvedMetadata_openGraph = resolvedMetadata.openGraph) == null ? void 0 : _resolvedMetadata_openGraph.title.template) || null,\n twitter: ((_resolvedMetadata_twitter = resolvedMetadata.twitter) == null ? void 0 : _resolvedMetadata_twitter.title.template) || null\n };\n }\n }\n if (leafSegmentStaticIcons.icon.length > 0 || leafSegmentStaticIcons.apple.length > 0) {\n if (!resolvedMetadata.icons) {\n resolvedMetadata.icons = {\n icon: [],\n apple: []\n };\n if (leafSegmentStaticIcons.icon.length > 0) {\n resolvedMetadata.icons.icon.unshift(...leafSegmentStaticIcons.icon);\n }\n if (leafSegmentStaticIcons.apple.length > 0) {\n resolvedMetadata.icons.apple.unshift(...leafSegmentStaticIcons.apple);\n }\n }\n }\n // Only log warnings if there are any, and only once after the metadata resolving process is finished\n if (buildState.warnings.size > 0) {\n for (const warning of buildState.warnings){\n Log.warn(warning);\n }\n }\n return postProcessMetadata(resolvedMetadata, favicon, titleTemplates, metadataContext);\n}\nexport async function accumulateViewport(viewportItems) {\n let resolvedViewport = createDefaultViewport();\n const resolversAndResults = prerenderViewport(viewportItems);\n let i = 0;\n while(i < resolversAndResults.length){\n let pendingViewport = resolversAndResults[i++];\n if (typeof pendingViewport === 'function') {\n // this viewport item had a `generateViewport` and\n // we need to provide the currently resolved viewport\n // to it before we continue;\n const resolveParentViewport = pendingViewport;\n // we know that the next item is a result if this item\n // was a resolver\n pendingViewport = resolversAndResults[i++];\n resolveParentViewport(freezeInDev(resolvedViewport));\n }\n // Otherwise the item was either null or a static export\n let viewport;\n if (isPromiseLike(pendingViewport)) {\n viewport = await pendingViewport;\n } else {\n viewport = pendingViewport;\n }\n resolvedViewport = mergeViewport({\n resolvedViewport,\n viewport\n });\n }\n return resolvedViewport;\n}\n// Exposed API for metadata component, that directly resolve the loader tree and related context as resolved metadata.\nexport async function resolveMetadata(tree, pathname, searchParams, errorConvention, interpolatedParams, metadataContext, isRuntimePrefetchable) {\n const metadataItems = await resolveMetadataItems(tree, searchParams, errorConvention, interpolatedParams, isRuntimePrefetchable);\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n return accumulateMetadata(workStore.route, metadataItems, pathname, metadataContext);\n}\n// Exposed API for viewport component, that directly resolve the loader tree and related context as resolved viewport.\nexport async function resolveViewport(tree, searchParams, errorConvention, interpolatedParams, isRuntimePrefetchable) {\n const viewportItems = await resolveViewportItems(tree, searchParams, errorConvention, interpolatedParams, isRuntimePrefetchable);\n return accumulateViewport(viewportItems);\n}\nfunction isPromiseLike(value) {\n return typeof value === 'object' && value !== null && typeof value.then === 'function';\n}\n\n//# sourceMappingURL=resolve-metadata.js.map","import path from '../../../shared/lib/isomorphic/path';\nfunction isStringOrURL(icon) {\n return typeof icon === 'string' || icon instanceof URL;\n}\nfunction createLocalMetadataBase() {\n // Check if experimental HTTPS is enabled\n const isExperimentalHttps = Boolean(process.env.__NEXT_EXPERIMENTAL_HTTPS);\n const protocol = isExperimentalHttps ? 'https' : 'http';\n return new URL(`${protocol}://localhost:${process.env.PORT || 3000}`);\n}\nfunction getPreviewDeploymentUrl() {\n const origin = process.env.VERCEL_BRANCH_URL || process.env.VERCEL_URL;\n return origin ? new URL(`https://${origin}`) : undefined;\n}\nfunction getProductionDeploymentUrl() {\n const origin = process.env.VERCEL_PROJECT_PRODUCTION_URL;\n return origin ? new URL(`https://${origin}`) : undefined;\n}\n/**\n * Given an optional user-provided metadataBase, this determines what the metadataBase should\n * fallback to. Specifically:\n * - In dev, it should always be localhost\n * - In Vercel preview builds, it should be the preview build ID\n * - In start, it should be the user-provided metadataBase value. Otherwise,\n * it'll fall back to the Vercel production deployment, and localhost as a last resort.\n */ export function getSocialImageMetadataBaseFallback(metadataBase) {\n const defaultMetadataBase = createLocalMetadataBase();\n const previewDeploymentUrl = getPreviewDeploymentUrl();\n const productionDeploymentUrl = getProductionDeploymentUrl();\n let fallbackMetadataBase;\n if (process.env.NODE_ENV === 'development') {\n fallbackMetadataBase = defaultMetadataBase;\n } else {\n fallbackMetadataBase = process.env.NODE_ENV === 'production' && previewDeploymentUrl && process.env.VERCEL_ENV === 'preview' ? previewDeploymentUrl : metadataBase || productionDeploymentUrl || defaultMetadataBase;\n }\n return fallbackMetadataBase;\n}\nfunction resolveUrl(url, metadataBase) {\n if (url instanceof URL) return url;\n if (!url) return null;\n try {\n // If we can construct a URL instance from url, ignore metadataBase\n const parsedUrl = new URL(url);\n return parsedUrl;\n } catch {}\n if (!metadataBase) {\n metadataBase = createLocalMetadataBase();\n }\n // Handle relative or absolute paths\n const pathname = metadataBase.pathname || '';\n const joinedPath = path.posix.join(pathname, url);\n return new URL(joinedPath, metadataBase);\n}\n// Resolve with `pathname` if `url` is a relative path.\nfunction resolveRelativeUrl(url, pathname) {\n if (typeof url === 'string' && url.startsWith('./')) {\n return path.posix.resolve(pathname, url);\n }\n return url;\n}\n// The regex is matching logic from packages/next/src/lib/load-custom-routes.ts\nconst FILE_REGEX = /^(?:\\/((?!\\.well-known(?:\\/.*)?)(?:[^/]+\\/)*[^/]+\\.\\w+))(\\/?|$)/i;\nfunction isFilePattern(pathname) {\n return FILE_REGEX.test(pathname);\n}\n// Resolve `pathname` if `url` is a relative path the compose with `metadataBase`.\nfunction resolveAbsoluteUrlWithPathname(url, metadataBase, pathname, { trailingSlash }) {\n // Resolve url with pathname that always starts with `/`\n url = resolveRelativeUrl(url, pathname);\n // Convert string url or URL instance to absolute url string,\n // if there's case needs to be resolved with metadataBase\n let resolvedUrl = '';\n const result = metadataBase ? resolveUrl(url, metadataBase) : url;\n if (typeof result === 'string') {\n resolvedUrl = result;\n } else {\n resolvedUrl = result.pathname === '/' && result.searchParams.size === 0 ? result.origin : result.href;\n }\n // Add trailing slash if it's enabled for urls matches the condition\n // - Not external, same origin with metadataBase\n // - Doesn't have query\n if (trailingSlash && !resolvedUrl.endsWith('/')) {\n let isRelative = resolvedUrl.startsWith('/');\n let hasQuery = resolvedUrl.includes('?');\n let isExternal = false;\n let isFileUrl = false;\n if (!isRelative) {\n try {\n const parsedUrl = new URL(resolvedUrl);\n isExternal = metadataBase != null && parsedUrl.origin !== metadataBase.origin;\n isFileUrl = isFilePattern(parsedUrl.pathname);\n } catch {\n // If it's not a valid URL, treat it as external\n isExternal = true;\n }\n if (// Do not apply trailing slash for file like urls, aligning with the behavior with `trailingSlash`\n !isFileUrl && !isExternal && !hasQuery) return `${resolvedUrl}/`;\n }\n }\n return resolvedUrl;\n}\nexport { isStringOrURL, resolveUrl, resolveRelativeUrl, resolveAbsoluteUrlWithPathname, };\n\n//# sourceMappingURL=resolve-url.js.map","function resolveTitleTemplate(template, title) {\n return template ? template.replace(/%s/g, title) : title;\n}\nexport function resolveTitle(title, stashedTemplate) {\n let resolved;\n const template = typeof title !== 'string' && title && 'template' in title ? title.template : null;\n if (typeof title === 'string') {\n resolved = resolveTitleTemplate(stashedTemplate, title);\n } else if (title) {\n if ('default' in title) {\n resolved = resolveTitleTemplate(stashedTemplate, title.default);\n }\n if ('absolute' in title && title.absolute) {\n resolved = title.absolute;\n }\n }\n if (title && typeof title !== 'string') {\n return {\n template,\n absolute: resolved || ''\n };\n } else {\n return {\n absolute: resolved || title || '',\n template\n };\n }\n}\n\n//# sourceMappingURL=resolve-title.js.map","import { DEFAULT_SEGMENT_KEY } from '../../shared/lib/segment';\nexport async function getLayoutOrPageModule(loaderTree) {\n const { layout, page, defaultPage } = loaderTree[2];\n const isLayout = typeof layout !== 'undefined';\n const isPage = typeof page !== 'undefined';\n const isDefaultPage = typeof defaultPage !== 'undefined' && loaderTree[0] === DEFAULT_SEGMENT_KEY;\n let mod = undefined;\n let modType = undefined;\n let filePath = undefined;\n if (isLayout) {\n mod = await layout[0]();\n modType = 'layout';\n filePath = layout[1];\n } else if (isPage) {\n mod = await page[0]();\n modType = 'page';\n filePath = page[1];\n } else if (isDefaultPage) {\n mod = await defaultPage[0]();\n modType = 'page';\n filePath = defaultPage[1];\n }\n return {\n mod,\n modType,\n filePath\n };\n}\nexport async function getComponentTypeModule(loaderTree, moduleType) {\n const { [moduleType]: module } = loaderTree[2];\n if (typeof module !== 'undefined') {\n return await module[0]();\n }\n return undefined;\n}\n\n//# sourceMappingURL=app-dir-module.js.map","const REACT_POSTPONE_TYPE = Symbol.for('react.postpone');\nexport function isPostpone(error) {\n return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE;\n}\n\n//# sourceMappingURL=is-postpone.js.map","const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE';\nexport class DynamicServerError extends Error {\n constructor(description){\n super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE;\n }\n}\nexport function isDynamicServerError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') {\n return false;\n }\n return err.digest === DYNAMIC_ERROR_CODE;\n}\n\n//# sourceMappingURL=hooks-server-context.js.map","/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/ import ReactDOM from 'react-dom';\nexport function preloadStyle(href, crossOrigin, nonce) {\n const opts = {\n as: 'style'\n };\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin;\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce;\n }\n ReactDOM.preload(href, opts);\n}\nexport function preloadFont(href, type, crossOrigin, nonce) {\n const opts = {\n as: 'font',\n type\n };\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin;\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce;\n }\n ReactDOM.preload(href, opts);\n}\nexport function preconnect(href, crossOrigin, nonce) {\n const opts = {};\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin;\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce;\n }\n ;\n ReactDOM.preconnect(href, opts);\n}\n\n//# sourceMappingURL=preloads.js.map","import stringHash from 'next/dist/compiled/string-hash';\nimport { formatServerError } from '../../lib/format-server-error';\nimport { SpanStatusCode, getTracer } from '../lib/trace/tracer';\nimport { isAbortError } from '../pipe-readable';\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr';\nimport { isDynamicServerError } from '../../client/components/hooks-server-context';\nimport { isNextRouterError } from '../../client/components/is-next-router-error';\nimport { isPrerenderInterruptedError } from './dynamic-rendering';\nimport { getProperError } from '../../lib/is-error';\nimport { createDigestWithErrorCode } from '../../lib/error-telemetry-utils';\nimport { isReactLargeShellError } from './react-large-shell-error';\nimport { isInstantValidationError } from './instant-validation/instant-validation-error';\n/**\n * Returns a digest for well-known Next.js errors, otherwise `undefined`. If a\n * digest is returned this also means that the error does not need to be\n * reported.\n */ export function getDigestForWellKnownError(error) {\n // If we're bailing out to CSR, we don't need to log the error.\n if (isBailoutToCSRError(error)) return error.digest;\n // If this is a navigation error, we don't need to log the error.\n if (isNextRouterError(error)) return error.digest;\n // If this error occurs, we know that we should be stopping the static\n // render. This is only thrown in static generation when PPR is not enabled,\n // which causes the whole page to be marked as dynamic. We don't need to\n // tell the user about this error, as it's not actionable.\n if (isDynamicServerError(error)) return error.digest;\n // If this is a prerender interrupted error, we don't need to log the error.\n if (isPrerenderInterruptedError(error)) return error.digest;\n if (isInstantValidationError(error)) return error.digest;\n return undefined;\n}\nexport function createReactServerErrorHandler(shouldFormatError, isBuildTimePrerendering, reactServerErrors, onReactServerRenderError, spanToRecordOn) {\n return (thrownValue)=>{\n var _err_message;\n if (typeof thrownValue === 'string') {\n // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited.\n return stringHash(thrownValue).toString();\n }\n // If the response was closed, we don't need to log the error.\n if (isAbortError(thrownValue)) return;\n const digest = getDigestForWellKnownError(thrownValue);\n if (digest) {\n return digest;\n }\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue);\n return undefined;\n }\n let err = getProperError(thrownValue);\n let silenceLog = false;\n // If the error already has a digest, respect the original digest,\n // so it won't get re-generated into another new error.\n if (err.digest) {\n if (process.env.NODE_ENV === 'production' && reactServerErrors.has(err.digest)) {\n // This error is likely an obfuscated error from another react-server\n // environment (e.g. 'use cache'). We recover the original error here\n // for reporting purposes.\n err = reactServerErrors.get(err.digest);\n // We don't log it again though, as it was already logged in the\n // original environment.\n silenceLog = true;\n } else {\n // Either we're in development (where we want to keep the transported\n // error with environmentName), or the error is not in reactServerErrors\n // but has a digest from other means. Keep the error as-is.\n }\n } else {\n err.digest = createDigestWithErrorCode(err, // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited.\n stringHash(err.message + (err.stack || '')).toString());\n }\n // @TODO by putting this here and not at the top it is possible that\n // we don't error the build in places we actually expect to\n if (!reactServerErrors.has(err.digest)) {\n reactServerErrors.set(err.digest, err);\n }\n // Format server errors in development to add more helpful error messages\n if (shouldFormatError) {\n formatServerError(err);\n }\n // Don't log the suppressed error during export\n if (!(isBuildTimePrerendering && (err == null ? void 0 : (_err_message = err.message) == null ? void 0 : _err_message.includes('The specific message is omitted in production builds to avoid leaking sensitive details.')))) {\n // Record exception on the provided span if available, otherwise try active span.\n const span = spanToRecordOn ?? getTracer().getActiveScopeSpan();\n if (span) {\n span.recordException(err);\n span.setAttribute('error.type', err.name);\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: err.message\n });\n }\n onReactServerRenderError(err, silenceLog);\n }\n return err.digest;\n };\n}\nexport function createHTMLErrorHandler(shouldFormatError, isBuildTimePrerendering, reactServerErrors, allCapturedErrors, onHTMLRenderSSRError, spanToRecordOn) {\n return (thrownValue, errorInfo)=>{\n var _err_message;\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue);\n return undefined;\n }\n let isSSRError = true;\n allCapturedErrors.push(thrownValue);\n // If the response was closed, we don't need to log the error.\n if (isAbortError(thrownValue)) return;\n const digest = getDigestForWellKnownError(thrownValue);\n if (digest) {\n return digest;\n }\n const err = getProperError(thrownValue);\n // If the error already has a digest, respect the original digest,\n // so it won't get re-generated into another new error.\n if (err.digest) {\n if (reactServerErrors.has(err.digest)) {\n // This error is likely an obfuscated error from react-server.\n // We recover the original error here.\n thrownValue = reactServerErrors.get(err.digest);\n isSSRError = false;\n } else {\n // The error is not from react-server but has a digest\n // from other means so we don't need to produce a new one\n }\n } else {\n err.digest = createDigestWithErrorCode(err, stringHash(err.message + ((errorInfo == null ? void 0 : errorInfo.componentStack) || err.stack || '')).toString());\n }\n // Format server errors in development to add more helpful error messages\n if (shouldFormatError) {\n formatServerError(err);\n }\n // Don't log the suppressed error during export\n if (!(isBuildTimePrerendering && (err == null ? void 0 : (_err_message = err.message) == null ? void 0 : _err_message.includes('The specific message is omitted in production builds to avoid leaking sensitive details.')))) {\n // HTML errors contain RSC errors as well, filter them out before reporting\n if (isSSRError) {\n // Record exception on the provided span if available, otherwise try active span.\n const span = spanToRecordOn ?? getTracer().getActiveScopeSpan();\n if (span) {\n span.recordException(err);\n span.setAttribute('error.type', err.name);\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: err.message\n });\n }\n onHTMLRenderSSRError(err, errorInfo);\n }\n }\n return err.digest;\n };\n}\nexport function isUserLandError(err) {\n return !isAbortError(err) && !isBailoutToCSRError(err) && !isNextRouterError(err);\n}\n\n//# sourceMappingURL=create-error-handler.js.map","// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING';\n/** An error that should be thrown when we want to bail out to client-side rendering. */ export class BailoutToCSRError extends Error {\n constructor(reason){\n super(`Bail out to client-side rendering: ${reason}`), this.reason = reason, this.digest = BAILOUT_TO_CSR;\n }\n}\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */ export function isBailoutToCSRError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false;\n }\n return err.digest === BAILOUT_TO_CSR;\n}\n\n//# sourceMappingURL=bailout-to-csr.js.map","import { RedirectStatusCode } from './redirect-status-code';\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT';\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */ export function isRedirectError(error) {\n if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') {\n return false;\n }\n const digest = error.digest.split(';');\n const [errorCode, type] = digest;\n const destination = digest.slice(2, -2).join(';');\n const status = digest.at(-2);\n const statusCode = Number(status);\n return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in RedirectStatusCode;\n}\n\n//# sourceMappingURL=redirect-error.js.map","export const INSTANT_VALIDATION_BOUNDARY_NAME = '__next_instant_validation_boundary__';\n\n//# sourceMappingURL=boundary-constants.js.map","export const ViewportMetaKeys = {\n width: 'width',\n height: 'height',\n initialScale: 'initial-scale',\n minimumScale: 'minimum-scale',\n maximumScale: 'maximum-scale',\n viewportFit: 'viewport-fit',\n userScalable: 'user-scalable',\n interactiveWidget: 'interactive-widget'\n};\nexport const IconKeys = [\n 'icon',\n 'shortcut',\n 'apple',\n 'other'\n];\n\n//# sourceMappingURL=constants.js.map","export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401\n};\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus));\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK';\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */ export function isHTTPAccessFallbackError(error) {\n if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') {\n return false;\n }\n const [prefix, httpStatus] = error.digest.split(';');\n return prefix === HTTP_ERROR_FALLBACK_ERROR_CODE && ALLOWED_CODES.has(Number(httpStatus));\n}\nexport function getAccessFallbackHTTPStatus(error) {\n const httpStatus = error.digest.split(';')[1];\n return Number(httpStatus);\n}\nexport function getAccessFallbackErrorTypeByStatus(status) {\n switch(status){\n case 401:\n return 'unauthorized';\n case 403:\n return 'forbidden';\n case 404:\n return 'not-found';\n default:\n return;\n }\n}\n\n//# sourceMappingURL=http-access-fallback.js.map","export function createPromiseWithResolvers() {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve;\n let reject;\n const promise = new Promise((res, rej)=>{\n resolve = res;\n reject = rej;\n });\n return {\n resolve: resolve,\n reject: reject,\n promise\n };\n}\n\n//# sourceMappingURL=promise-with-resolvers.js.map","export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__';\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__';\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__';\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__';\n\n//# sourceMappingURL=boundary-constants.js.map","export function createDefaultViewport() {\n return {\n // name=viewport\n width: 'device-width',\n initialScale: 1,\n // visual metadata\n themeColor: null,\n colorScheme: null\n };\n}\nexport function createDefaultMetadata() {\n return {\n // Deprecated ones\n viewport: null,\n themeColor: null,\n colorScheme: null,\n metadataBase: null,\n // Other values are all null\n title: null,\n description: null,\n applicationName: null,\n authors: null,\n generator: null,\n keywords: null,\n referrer: null,\n creator: null,\n publisher: null,\n robots: null,\n manifest: null,\n alternates: {\n canonical: null,\n languages: null,\n media: null,\n types: null\n },\n icons: null,\n openGraph: null,\n twitter: null,\n verification: {},\n appleWebApp: null,\n formatDetection: null,\n itunes: null,\n facebook: null,\n pinterest: null,\n abstract: null,\n appLinks: null,\n archives: null,\n assets: null,\n bookmarks: null,\n category: null,\n classification: null,\n pagination: {\n previous: null,\n next: null\n },\n other: {}\n };\n}\n\n//# sourceMappingURL=default-metadata.js.map","import * as React from 'react';\nconst errorRef = {\n current: null\n};\n// React.cache is currently only available in canary/experimental React channels.\nconst cache = typeof React.cache === 'function' ? React.cache : (fn)=>fn;\n// When Cache Components is enabled, we record these as errors so that they\n// are captured by the dev overlay as it's more critical to fix these\n// when enabled.\nconst logErrorOrWarn = process.env.__NEXT_CACHE_COMPONENTS ? console.error : console.warn;\n// We don't want to dedupe across requests.\n// The developer might've just attempted to fix the warning so we should warn again if it still happens.\nconst flushCurrentErrorIfNew = cache(// eslint-disable-next-line @typescript-eslint/no-unused-vars -- cache key\n(key)=>{\n try {\n logErrorOrWarn(errorRef.current);\n } finally{\n errorRef.current = null;\n }\n});\n/**\n * Creates a function that logs an error message that is deduped by the userland\n * callsite.\n * This requires no indirection between the call of this function and the userland\n * callsite i.e. there's only a single library frame above this.\n * Do not use on the Client where sourcemaps and ignore listing might be enabled.\n * Only use that for warnings need a fix independent of the callstack.\n *\n * @param getMessage\n * @returns\n */ export function createDedupedByCallsiteServerErrorLoggerDev(getMessage) {\n return function logDedupedError(...args) {\n const message = getMessage(...args);\n if (process.env.NODE_ENV !== 'production') {\n var _stack;\n const callStackFrames = (_stack = new Error().stack) == null ? void 0 : _stack.split('\\n');\n if (callStackFrames === undefined || callStackFrames.length < 4) {\n logErrorOrWarn(message);\n } else {\n // Error:\n // logDedupedError\n // asyncApiBeingAccessedSynchronously\n // \n // TODO: This breaks if sourcemaps with ignore lists are enabled.\n const key = callStackFrames[4];\n errorRef.current = message;\n flushCurrentErrorIfNew(key);\n }\n } else {\n logErrorOrWarn(message);\n }\n };\n}\n\n//# sourceMappingURL=create-deduped-by-callsite-server-error-logger.js.map","import { workUnitAsyncStorage } from './work-unit-async-storage.external';\nfunction createSegmentVaryParamsAccumulator() {\n const accumulator = {\n varyParams: new Set(),\n status: 'pending',\n value: new Set(),\n then (onfulfilled) {\n if (onfulfilled) {\n if (accumulator.status === 'pending') {\n accumulator.resolvers.push(onfulfilled);\n } else {\n onfulfilled(accumulator.value);\n }\n }\n },\n resolvers: []\n };\n return accumulator;\n}\n/**\n * A singleton accumulator that's already resolved to an empty Set. Use this for\n * segments where we know upfront that no params will be accessed, such as\n * client components or segments without user code.\n *\n * Benefits:\n * - No need to accumulate or resolve later\n * - Resilient: resolves correctly even if other tracking fails\n * - Memory efficient: reuses the same object\n */ const emptySet = new Set();\nexport const emptyVaryParamsAccumulator = {\n varyParams: emptySet,\n status: 'fulfilled',\n value: emptySet,\n then (onfulfilled) {\n if (onfulfilled) {\n onfulfilled(emptySet);\n }\n },\n resolvers: []\n};\nexport function createResponseVaryParamsAccumulator() {\n // Create the head and rootParams accumulators as top-level fields.\n // Segment accumulators are added to the segments set as they are created.\n const head = createSegmentVaryParamsAccumulator();\n const rootParams = createSegmentVaryParamsAccumulator();\n const segments = new Set();\n return {\n head,\n rootParams,\n segments\n };\n}\n/**\n * Allocates a new VaryParamsAccumulator and adds it to the response accumulator\n * associated with the current WorkUnitStore.\n *\n * Returns a thenable that resolves to the segment's vary params once rendering\n * is complete. The thenable can be passed directly to React Flight for\n * serialization.\n */ export function createVaryParamsAccumulator() {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n {\n const responseAccumulator = workUnitStore.varyParamsAccumulator;\n if (responseAccumulator !== null) {\n const accumulator = createSegmentVaryParamsAccumulator();\n responseAccumulator.segments.add(accumulator);\n return accumulator;\n }\n return null;\n }\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'prerender-client':\n case 'validation-client':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n return null;\n}\nexport function getMetadataVaryParamsAccumulator() {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n {\n const responseAccumulator = workUnitStore.varyParamsAccumulator;\n if (responseAccumulator !== null) {\n return responseAccumulator.head;\n }\n return null;\n }\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'prerender-client':\n case 'validation-client':\n case 'unstable-cache':\n case 'generate-static-params':\n return null;\n default:\n workUnitStore;\n }\n }\n return null;\n}\nexport function getVaryParamsThenable(accumulator) {\n return accumulator;\n}\nexport function getMetadataVaryParamsThenable() {\n const accumulator = getMetadataVaryParamsAccumulator();\n if (accumulator !== null) {\n return getVaryParamsThenable(accumulator);\n }\n return null;\n}\n// The metadata and viewport are always delivered in a single payload, so they\n// don't need to be tracked separately. This may change in the future, but for\n// now this is just an alias.\nexport const getViewportVaryParamsAccumulator = getMetadataVaryParamsAccumulator;\nexport function getRootParamsVaryParamsAccumulator() {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n {\n const responseAccumulator = workUnitStore.varyParamsAccumulator;\n if (responseAccumulator !== null) {\n return responseAccumulator.rootParams;\n }\n return null;\n }\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'prerender-client':\n case 'validation-client':\n case 'unstable-cache':\n case 'generate-static-params':\n return null;\n default:\n workUnitStore;\n }\n }\n return null;\n}\n/**\n * Records that a param was accessed. Adds the param name to the accumulator's\n * varyParams set.\n */ export function accumulateVaryParam(accumulator, paramName) {\n accumulator.varyParams.add(paramName);\n}\n/**\n * Records a root param access.\n */ export function accumulateRootVaryParam(paramName) {\n const rootParamsAccumulator = getRootParamsVaryParamsAccumulator();\n if (rootParamsAccumulator !== null) {\n accumulateVaryParam(rootParamsAccumulator, paramName);\n }\n}\nexport function createVaryingParams(accumulator, originalParamsObject, optionalCatchAllParamName) {\n if (optionalCatchAllParamName !== null) {\n // When there's an optional catch-all param with no value (e.g.,\n // [[...slug]] at /), the param doesn't exist as a property on the params\n // object. Use a Proxy to track all param access — both existing params\n // and the missing optional param — including enumeration patterns like\n // Object.keys(), spread, for...in, and `in` checks.\n return new Proxy(originalParamsObject, {\n get (target, prop, receiver) {\n if (typeof prop === 'string') {\n if (prop === optionalCatchAllParamName || Object.prototype.hasOwnProperty.call(target, prop)) {\n accumulateVaryParam(accumulator, prop);\n }\n }\n return Reflect.get(target, prop, receiver);\n },\n has (target, prop) {\n if (prop === optionalCatchAllParamName) {\n accumulateVaryParam(accumulator, optionalCatchAllParamName);\n }\n return Reflect.has(target, prop);\n },\n ownKeys (target) {\n // Enumerating the params object means the user's code may depend on\n // which params are present, so conservatively track the optional\n // param as accessed.\n accumulateVaryParam(accumulator, optionalCatchAllParamName);\n return Reflect.ownKeys(target);\n }\n });\n }\n // When there's no optional catch-all, all params exist as properties on the\n // object, so we can use defineProperty getters instead of a Proxy. This is\n // faster because the engine can optimize property access on regular objects\n // more aggressively than Proxy trap calls.\n const underlyingParamsWithVarying = {};\n for(const paramName in originalParamsObject){\n Object.defineProperty(underlyingParamsWithVarying, paramName, {\n get () {\n accumulateVaryParam(accumulator, paramName);\n return originalParamsObject[paramName];\n },\n enumerable: true\n });\n }\n return underlyingParamsWithVarying;\n}\nexport function createVaryingSearchParams(accumulator, originalSearchParamsObject) {\n const underlyingSearchParamsWithVarying = {};\n for(const searchParamName in originalSearchParamsObject){\n Object.defineProperty(underlyingSearchParamsWithVarying, searchParamName, {\n get () {\n // TODO: Unlike path params, we don't vary track each search param\n // individually. The entire search string is treated as a single param.\n // This may change in the future.\n accumulateVaryParam(accumulator, '?');\n return originalSearchParamsObject[searchParamName];\n },\n enumerable: true\n });\n }\n return underlyingSearchParamsWithVarying;\n}\n/**\n * Resolves all segment accumulators in a ResponseVaryParamsAccumulator with\n * their final vary params. Call this after rendering is complete.\n *\n * Each segment's thenable is resolved with its vary params merged with the\n * root params. If we can't track vary params (e.g., legacy prerender), simply\n * don't call this function - the client treats unresolved thenables as\n * \"unknown\" vary params.\n */ export async function finishAccumulatingVaryParams(responseAccumulator) {\n const rootVaryParams = responseAccumulator.rootParams.varyParams;\n // Resolve head\n finishSegmentAccumulator(responseAccumulator.head, rootVaryParams);\n // Resolve each segment\n for (const segmentAccumulator of responseAccumulator.segments){\n finishSegmentAccumulator(segmentAccumulator, rootVaryParams);\n }\n // Now that the thenables are resolved, Flight should be able to flush the\n // vary params into the response stream. This work gets scheduled internally\n // by Flight using a microtask as soon as we notify the thenable listeners.\n //\n // We need to ensure that Flight's pending queues are emptied before this\n // function returns; the caller will abort the prerender immediately after.\n // We can't use a macrotask, because that would allow dynamic IO to sneak\n // into the response. So we use microtasks instead.\n //\n // The exact number of awaits here isn't important (indeed, one seems to be\n // sufficient, at the time of writing), as long as we wait enough ticks for\n // Flight to finish writing the response.\n //\n // Anything that remains in Flight's internal queue after these awaits must\n // be actual dynamic IO, not caused by pending vary params tasks. In other\n // words, failing to do this would cause us to treat a fully static prerender\n // as if it were partially dynamic.\n await Promise.resolve();\n await Promise.resolve();\n await Promise.resolve();\n}\nfunction finishSegmentAccumulator(accumulator, rootVaryParams) {\n if (accumulator.status !== 'pending') {\n return;\n }\n const merged = new Set(accumulator.varyParams);\n for (const param of rootVaryParams){\n merged.add(param);\n }\n accumulator.value = merged;\n accumulator.status = 'fulfilled';\n for (const resolver of accumulator.resolvers){\n resolver(merged);\n }\n accumulator.resolvers = [];\n}\n\n//# sourceMappingURL=vary-params.js.map","import { StaticGenBailoutError } from '../../client/components/static-generation-bailout';\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external';\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(route, expression) {\n throw Object.defineProperty(new StaticGenBailoutError(`Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), \"__NEXT_ERROR_CODE\", {\n value: \"E543\",\n enumerable: false,\n configurable: true\n });\n}\nexport function throwForSearchParamsAccessInUseCache(workStore, constructorOpt) {\n const error = Object.defineProperty(new Error(`Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`), \"__NEXT_ERROR_CODE\", {\n value: \"E842\",\n enumerable: false,\n configurable: true\n });\n Error.captureStackTrace(error, constructorOpt);\n workStore.invalidDynamicUsageError ??= error;\n throw error;\n}\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore();\n return (afterTaskStore == null ? void 0 : afterTaskStore.rootTaskSpawnPhase) === 'action';\n}\n\n//# sourceMappingURL=utils.js.map","import { extractInfoFromServerReferenceId } from '../shared/lib/server-reference-info';\nexport function isServerReference(value) {\n return value.$$typeof === Symbol.for('react.server.reference');\n}\nexport function isUseCacheFunction(value) {\n if (!isServerReference(value)) {\n return false;\n }\n const { type } = extractInfoFromServerReferenceId(value.$$id);\n return type === 'use-cache';\n}\nexport function getUseCacheFunctionInfo(value) {\n if (!isServerReference(value)) {\n return null;\n }\n const info = extractInfoFromServerReferenceId(value.$$id);\n return info.type === 'use-cache' ? info : null;\n}\nexport function isClientReference(mod) {\n const defaultExport = (mod == null ? void 0 : mod.default) || mod;\n return (defaultExport == null ? void 0 : defaultExport.$$typeof) === Symbol.for('react.client.reference');\n}\n\n//# sourceMappingURL=client-and-server-references.js.map","import { RenderStage } from './app-render/staged-rendering';\nexport function isHangingPromiseRejectionError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false;\n }\n return err.digest === HANGING_PROMISE_REJECTION;\n}\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION';\nclass HangingPromiseRejectionError extends Error {\n constructor(route, expression){\n super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION;\n }\n}\nconst abortListenersBySignal = new WeakMap();\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */ export function makeHangingPromise(signal, route, expression) {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression));\n } else {\n const hangingPromise = new Promise((_, reject)=>{\n const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression));\n let currentListeners = abortListenersBySignal.get(signal);\n if (currentListeners) {\n currentListeners.push(boundRejection);\n } else {\n const listeners = [\n boundRejection\n ];\n abortListenersBySignal.set(signal, listeners);\n signal.addEventListener('abort', ()=>{\n for(let i = 0; i < listeners.length; i++){\n listeners[i]();\n }\n }, {\n once: true\n });\n }\n });\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject);\n return hangingPromise;\n }\n}\nfunction ignoreReject() {}\nexport function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying);\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise((resolve)=>{\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(()=>{\n resolve(underlying);\n }, 0);\n });\n}\n/**\n * Returns the appropriate runtime stage for the current point in the render.\n * Runtime-prefetchable segments render in the early stages and should wait\n * for EarlyRuntime. Non-prefetchable segments render in the later stages\n * and should wait for Runtime.\n */ export function getRuntimeStage(stagedRendering) {\n if (stagedRendering.currentStage === RenderStage.EarlyStatic || stagedRendering.currentStage === RenderStage.EarlyRuntime) {\n return RenderStage.EarlyRuntime;\n }\n return RenderStage.Runtime;\n}\n/**\n * Delays until the appropriate runtime stage based on the current stage of\n * the rendering pipeline:\n *\n * - Early stages → wait for EarlyRuntime\n * (for runtime-prefetchable segments)\n * - Later stages → wait for Runtime\n * (for segments not using runtime prefetch)\n *\n * This ensures that cookies()/headers()/etc. resolve at the right time for\n * each segment type.\n */ export function delayUntilRuntimeStage(prerenderStore, result) {\n const { stagedRendering } = prerenderStore;\n if (!stagedRendering) {\n return result;\n }\n return stagedRendering.waitForStage(getRuntimeStage(stagedRendering)).then(()=>result);\n}\n\n//# sourceMappingURL=dynamic-rendering-utils.js.map","import { PAGE_SEGMENT_KEY } from '../segment';\nexport const ROOT_SEGMENT_REQUEST_KEY = '';\nexport const HEAD_REQUEST_KEY = '/_head';\nexport function createSegmentRequestKeyPart(segment) {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY;\n }\n const safeName = // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found' ? '_not-found' : encodeToFilesystemAndURLSafeString(segment);\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName;\n }\n const name = segment[0];\n const paramType = segment[2];\n const safeName = encodeToFilesystemAndURLSafeString(name);\n const encodedName = '$' + paramType + '$' + safeName;\n return encodedName;\n}\nexport function appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, childRequestKeyPart) {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey = parallelRouteKey === 'children' ? childRequestKeyPart : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`;\n return parentRequestKey + '/' + slotKey;\n}\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/;\nfunction encodeToFilesystemAndURLSafeString(value) {\n if (simpleParamValueRegex.test(value)) {\n return value;\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value).replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n ;\n return '!' + base64url;\n}\nexport function convertSegmentPathToStaticExportFilename(segmentPath) {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`;\n}\n\n//# sourceMappingURL=segment-value-encoding.js.map","import { resolveAsArrayOrUndefined } from '../generate/utils';\nimport { resolveAbsoluteUrlWithPathname } from './resolve-url';\nfunction resolveAlternateUrl(url, metadataBase, pathname, metadataContext) {\n // If alter native url is an URL instance,\n // we treat it as a URL base and resolve with current pathname\n if (url instanceof URL) {\n const newUrl = new URL(pathname, url);\n url.searchParams.forEach((value, key)=>newUrl.searchParams.set(key, value));\n url = newUrl;\n }\n return resolveAbsoluteUrlWithPathname(url, metadataBase, pathname, metadataContext);\n}\nexport const resolveThemeColor = (themeColor)=>{\n var _resolveAsArrayOrUndefined;\n if (!themeColor) return null;\n const themeColorDescriptors = [];\n (_resolveAsArrayOrUndefined = resolveAsArrayOrUndefined(themeColor)) == null ? void 0 : _resolveAsArrayOrUndefined.forEach((descriptor)=>{\n if (typeof descriptor === 'string') themeColorDescriptors.push({\n color: descriptor\n });\n else if (typeof descriptor === 'object') themeColorDescriptors.push({\n color: descriptor.color,\n media: descriptor.media\n });\n });\n return themeColorDescriptors;\n};\nasync function resolveUrlValuesOfObject(obj, metadataBase, pathname, metadataContext) {\n if (!obj) return null;\n const result = {};\n for (const [key, value] of Object.entries(obj)){\n if (typeof value === 'string' || value instanceof URL) {\n const pathnameForUrl = await pathname;\n result[key] = [\n {\n url: resolveAlternateUrl(value, metadataBase, pathnameForUrl, metadataContext)\n }\n ];\n } else if (value && value.length) {\n result[key] = [];\n const pathnameForUrl = await pathname;\n value.forEach((item, index)=>{\n const url = resolveAlternateUrl(item.url, metadataBase, pathnameForUrl, metadataContext);\n result[key][index] = {\n url,\n title: item.title\n };\n });\n }\n }\n return result;\n}\nasync function resolveCanonicalUrl(urlOrDescriptor, metadataBase, pathname, metadataContext) {\n if (!urlOrDescriptor) return null;\n const url = typeof urlOrDescriptor === 'string' || urlOrDescriptor instanceof URL ? urlOrDescriptor : urlOrDescriptor.url;\n const pathnameForUrl = await pathname;\n // Return string url because structureClone can't handle URL instance\n return {\n url: resolveAlternateUrl(url, metadataBase, pathnameForUrl, metadataContext)\n };\n}\nexport const resolveAlternates = async (alternates, metadataBase, pathname, context)=>{\n if (!alternates) return null;\n const canonical = await resolveCanonicalUrl(alternates.canonical, metadataBase, pathname, context);\n const languages = await resolveUrlValuesOfObject(alternates.languages, metadataBase, pathname, context);\n const media = await resolveUrlValuesOfObject(alternates.media, metadataBase, pathname, context);\n const types = await resolveUrlValuesOfObject(alternates.types, metadataBase, pathname, context);\n return {\n canonical,\n languages,\n media,\n types\n };\n};\nconst robotsKeys = [\n 'noarchive',\n 'nosnippet',\n 'noimageindex',\n 'nocache',\n 'notranslate',\n 'indexifembedded',\n 'nositelinkssearchbox',\n 'unavailable_after',\n 'max-video-preview',\n 'max-image-preview',\n 'max-snippet'\n];\nconst resolveRobotsValue = (robots)=>{\n if (!robots) return null;\n if (typeof robots === 'string') return robots;\n const values = [];\n if (robots.index) values.push('index');\n else if (typeof robots.index === 'boolean') values.push('noindex');\n if (robots.follow) values.push('follow');\n else if (typeof robots.follow === 'boolean') values.push('nofollow');\n for (const key of robotsKeys){\n const value = robots[key];\n if (typeof value !== 'undefined' && value !== false) {\n values.push(typeof value === 'boolean' ? key : `${key}:${value}`);\n }\n }\n return values.join(', ');\n};\nexport const resolveRobots = (robots)=>{\n if (!robots) return null;\n return {\n basic: resolveRobotsValue(robots),\n googleBot: typeof robots !== 'string' ? resolveRobotsValue(robots.googleBot) : null\n };\n};\nconst VerificationKeys = [\n 'google',\n 'yahoo',\n 'yandex',\n 'me',\n 'other'\n];\nexport const resolveVerification = (verification)=>{\n if (!verification) return null;\n const res = {};\n for (const key of VerificationKeys){\n const value = verification[key];\n if (value) {\n if (key === 'other') {\n res.other = {};\n for(const otherKey in verification.other){\n const otherValue = resolveAsArrayOrUndefined(verification.other[otherKey]);\n if (otherValue) res.other[otherKey] = otherValue;\n }\n } else res[key] = resolveAsArrayOrUndefined(value);\n }\n }\n return res;\n};\nexport const resolveAppleWebApp = (appWebApp)=>{\n var _resolveAsArrayOrUndefined;\n if (!appWebApp) return null;\n if (appWebApp === true) {\n return {\n capable: true\n };\n }\n const startupImages = appWebApp.startupImage ? (_resolveAsArrayOrUndefined = resolveAsArrayOrUndefined(appWebApp.startupImage)) == null ? void 0 : _resolveAsArrayOrUndefined.map((item)=>typeof item === 'string' ? {\n url: item\n } : item) : null;\n return {\n capable: 'capable' in appWebApp ? !!appWebApp.capable : true,\n title: appWebApp.title || null,\n startupImage: startupImages,\n statusBarStyle: appWebApp.statusBarStyle || 'default'\n };\n};\nexport const resolveAppLinks = (appLinks)=>{\n if (!appLinks) return null;\n for(const key in appLinks){\n // @ts-ignore // TODO: type infer\n appLinks[key] = resolveAsArrayOrUndefined(appLinks[key]);\n }\n return appLinks;\n};\nexport const resolveItunes = async (itunes, metadataBase, pathname, context)=>{\n if (!itunes) return null;\n return {\n appId: itunes.appId,\n appArgument: itunes.appArgument ? resolveAlternateUrl(itunes.appArgument, metadataBase, await pathname, context) : undefined\n };\n};\nexport const resolveFacebook = (facebook)=>{\n if (!facebook) return null;\n return {\n appId: facebook.appId,\n admins: resolveAsArrayOrUndefined(facebook.admins)\n };\n};\nexport const resolvePagination = async (pagination, metadataBase, pathname, context)=>{\n return {\n previous: (pagination == null ? void 0 : pagination.previous) ? resolveAlternateUrl(pagination.previous, metadataBase, await pathname, context) : null,\n next: (pagination == null ? void 0 : pagination.next) ? resolveAlternateUrl(pagination.next, metadataBase, await pathname, context) : null\n };\n};\n\n//# sourceMappingURL=resolve-basics.js.map","import { workAsyncStorage } from '../app-render/work-async-storage.external';\nimport { createVaryingSearchParams, getMetadataVaryParamsAccumulator } from '../app-render/vary-params';\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect';\nimport { throwToInterruptStaticGeneration, postponeWithTracking, annotateDynamicAccess } from '../app-render/dynamic-rendering';\nimport { workUnitAsyncStorage, throwInvariantForMissingStore } from '../app-render/work-unit-async-storage.external';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nimport { makeDevtoolsIOAwarePromise, makeHangingPromise } from '../dynamic-rendering-utils';\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger';\nimport { describeStringPropertyAccess, describeHasCheckingStringProperty, wellKnownProperties } from '../../shared/lib/utils/reflect-utils';\nimport { throwWithStaticGenerationBailoutErrorWithDynamicError, throwForSearchParamsAccessInUseCache } from './utils';\nimport { RenderStage } from '../app-render/staged-rendering';\nexport function createSearchParamsFromClient(underlyingSearchParams) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore);\n case 'validation-client':\n {\n return createClientSearchParamsInValidation(underlyingSearchParams, workStore, workUnitStore);\n }\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError('createSearchParamsFromClient should not be called in a runtime prerender.'), \"__NEXT_ERROR_CODE\", {\n value: \"E769\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createSearchParamsFromClient should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E739\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createSearchParamsFromClient should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1133\",\n enumerable: false,\n configurable: true\n });\n case 'request':\n // Client searchParams are not runtime prefetchable\n const isRuntimePrefetchable = false;\n return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore, isRuntimePrefetchable);\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerSearchParamsForMetadata(underlyingSearchParams, isRuntimePrefetchable) {\n const metadataVaryParamsAccumulator = getMetadataVaryParamsAccumulator();\n return createServerSearchParamsForServerPage(underlyingSearchParams, metadataVaryParamsAccumulator, isRuntimePrefetchable);\n}\nexport function createServerSearchParamsForServerPage(underlyingSearchParams, varyParamsAccumulator, isRuntimePrefetchable) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore);\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createServerSearchParamsForServerPage should not be called in a client validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1066\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createServerSearchParamsForServerPage should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E747\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createServerSearchParamsForServerPage should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1128\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n return createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore, varyParamsAccumulator, isRuntimePrefetchable);\n case 'request':\n return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore, isRuntimePrefetchable);\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nexport function createPrerenderSearchParamsForClientPage() {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({});\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n // We're prerendering in a mode that aborts (cacheComponents) and should stall\n // the promise to ensure the RSC side is considered dynamic\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, '`searchParams`');\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called in a client validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1061\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'), \"__NEXT_ERROR_CODE\", {\n value: \"E768\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E746\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1124\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n return Promise.resolve({});\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nfunction createStaticPrerenderSearchParams(workStore, prerenderStore) {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({});\n }\n switch(prerenderStore.type){\n case 'prerender':\n case 'prerender-client':\n // We are in a cacheComponents (PPR or otherwise) prerender\n return makeHangingSearchParams(workStore, prerenderStore);\n case 'prerender-ppr':\n case 'prerender-legacy':\n // We are in a legacy static generation and need to interrupt the\n // prerender when search params are accessed.\n return makeErroringSearchParams(workStore, prerenderStore);\n default:\n return prerenderStore;\n }\n}\nfunction createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore, varyParamsAccumulator, isRuntimePrefetchable) {\n const underlyingSearchParamsWithVarying = varyParamsAccumulator !== null ? createVaryingSearchParams(varyParamsAccumulator, underlyingSearchParams) : underlyingSearchParams;\n const result = makeUntrackedSearchParams(underlyingSearchParamsWithVarying);\n const { stagedRendering } = workUnitStore;\n if (!stagedRendering) {\n return result;\n }\n const stage = isRuntimePrefetchable ? RenderStage.EarlyRuntime : RenderStage.Runtime;\n return stagedRendering.waitForStage(stage).then(()=>result);\n}\nfunction createRenderSearchParams(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable) {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({});\n } else {\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable);\n } else if (requestStore.asyncApiPromises) {\n if (requestStore.validationSamples) {\n const { createExhaustiveSearchParamsProxy } = require('../app-render/instant-validation/instant-samples');\n const declaredKeys = new Set(Object.keys(requestStore.validationSamples.searchParams ?? {}));\n underlyingSearchParams = createExhaustiveSearchParamsProxy(underlyingSearchParams, declaredKeys, workStore.route);\n }\n return (isRuntimePrefetchable ? requestStore.asyncApiPromises.earlySharedSearchParamsParent : requestStore.asyncApiPromises.sharedSearchParamsParent).then(()=>underlyingSearchParams);\n } else {\n return makeUntrackedSearchParams(underlyingSearchParams);\n }\n }\n}\nconst CachedSearchParams = new WeakMap();\nconst CachedSearchParamsForUseCache = new WeakMap();\nfunction makeHangingSearchParams(workStore, prerenderStore) {\n const cachedSearchParams = CachedSearchParams.get(prerenderStore);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = makeHangingPromise(prerenderStore.renderSignal, workStore.route, '`searchParams`');\n const proxiedPromise = new Proxy(promise, {\n get (target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver);\n }\n switch(prop){\n case 'then':\n {\n const expression = '`await searchParams`, `searchParams.then`, or similar';\n annotateDynamicAccess(expression, prerenderStore);\n return ReflectAdapter.get(target, prop, receiver);\n }\n case 'status':\n {\n const expression = '`use(searchParams)`, `searchParams.status`, or similar';\n annotateDynamicAccess(expression, prerenderStore);\n return ReflectAdapter.get(target, prop, receiver);\n }\n default:\n {\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n }\n });\n CachedSearchParams.set(prerenderStore, proxiedPromise);\n return proxiedPromise;\n}\nfunction makeErroringSearchParams(workStore, prerenderStore) {\n const cachedSearchParams = CachedSearchParams.get(workStore);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const underlyingSearchParams = {};\n // For search params we don't construct a ReactPromise because we want to interrupt\n // rendering on any property access that was not set from outside and so we only want\n // to have properties like value and status if React sets them.\n const promise = Promise.resolve(underlyingSearchParams);\n const proxiedPromise = new Proxy(promise, {\n get (target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver);\n }\n if (typeof prop === 'string' && prop === 'then') {\n const expression = '`await searchParams`, `searchParams.then`, or similar';\n if (workStore.dynamicShouldError) {\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n } else if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(workStore.route, expression, prerenderStore.dynamicTracking);\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(expression, workStore, prerenderStore);\n }\n }\n return ReflectAdapter.get(target, prop, receiver);\n }\n });\n CachedSearchParams.set(workStore, proxiedPromise);\n return proxiedPromise;\n}\n/**\n * This is a variation of `makeErroringSearchParams` that always throws an\n * error on access, because accessing searchParams inside of `\"use cache\"` is\n * not allowed.\n */ export function makeErroringSearchParamsForUseCache() {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = Promise.resolve({});\n const proxiedPromise = new Proxy(promise, {\n get: function get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it. We know it\n // isn't a dynamic access because it can only be something that was\n // previously written to the promise and thus not an underlying\n // searchParam value\n return ReflectAdapter.get(target, prop, receiver);\n }\n if (typeof prop === 'string' && (prop === 'then' || !wellKnownProperties.has(prop))) {\n throwForSearchParamsAccessInUseCache(workStore, get);\n }\n return ReflectAdapter.get(target, prop, receiver);\n }\n });\n CachedSearchParamsForUseCache.set(workStore, proxiedPromise);\n return proxiedPromise;\n}\nfunction makeUntrackedSearchParams(underlyingSearchParams) {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = Promise.resolve(underlyingSearchParams);\n CachedSearchParams.set(underlyingSearchParams, promise);\n return promise;\n}\nfunction makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable) {\n if (requestStore.asyncApiPromises) {\n // Do not cache the resulting promise. If we do, we'll only show the first \"awaited at\"\n // across all segments that receive searchParams.\n return makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable);\n } else {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable);\n CachedSearchParams.set(requestStore, promise);\n return promise;\n }\n}\nfunction makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable) {\n const promiseInitialized = {\n current: false\n };\n const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized);\n let promise;\n if (requestStore.asyncApiPromises) {\n // We wrap each instance of searchParams in a `new Promise()`.\n // This is important when all awaits are in third party which would otherwise\n // track all the way to the internal params.\n const sharedSearchParamsParent = isRuntimePrefetchable ? requestStore.asyncApiPromises.earlySharedSearchParamsParent : requestStore.asyncApiPromises.sharedSearchParamsParent;\n promise = new Promise((resolve, reject)=>{\n sharedSearchParamsParent.then(()=>resolve(proxiedUnderlying), reject);\n });\n // @ts-expect-error\n promise.displayName = 'searchParams';\n } else {\n promise = makeDevtoolsIOAwarePromise(proxiedUnderlying, requestStore, RenderStage.Runtime);\n }\n promise.then(()=>{\n promiseInitialized.current = true;\n }, // If we're in staged rendering, this promise will reject if the render\n // is aborted before it can reach the runtime stage.\n // In that case, we have to prevent an unhandled rejection from the promise\n // created by this `.then()` call.\n // This does not affect the `promiseInitialized` logic above,\n // because `proxiedUnderlying` will not be used to resolve the promise,\n // so there's no risk of any of its properties being accessed and triggering\n // an undesireable warning.\n ignoreReject);\n return instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore);\n}\nfunction ignoreReject() {}\nfunction instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized) {\n // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying\n // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender\n // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking\n // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger\n // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce\n // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise.\n return new Proxy(underlyingSearchParams, {\n get (target, prop, receiver) {\n if (typeof prop === 'string' && promiseInitialized.current) {\n if (workStore.dynamicShouldError) {\n const expression = describeStringPropertyAccess('searchParams', prop);\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n }\n return ReflectAdapter.get(target, prop, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'string') {\n if (workStore.dynamicShouldError) {\n const expression = describeHasCheckingStringProperty('searchParams', prop);\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n }\n return Reflect.has(target, prop);\n },\n ownKeys (target) {\n if (workStore.dynamicShouldError) {\n const expression = '`{...searchParams}`, `Object.keys(searchParams)`, or similar';\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n return Reflect.ownKeys(target);\n }\n });\n}\nfunction instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set();\n Object.keys(underlyingSearchParams).forEach((prop)=>{\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop);\n }\n });\n return new Proxy(promise, {\n get (target, prop, receiver) {\n if (prop === 'then' && workStore.dynamicShouldError) {\n const expression = '`searchParams.then`';\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n if (typeof prop === 'string') {\n if (!wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)) {\n const expression = describeStringPropertyAccess('searchParams', prop);\n warnForSyncAccess(workStore.route, expression);\n }\n }\n return ReflectAdapter.get(target, prop, receiver);\n },\n set (target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop);\n }\n return Reflect.set(target, prop, value, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'string') {\n if (!wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)) {\n const expression = describeHasCheckingStringProperty('searchParams', prop);\n warnForSyncAccess(workStore.route, expression);\n }\n }\n return Reflect.has(target, prop);\n },\n ownKeys (target) {\n const expression = '`Object.keys(searchParams)` or similar';\n warnForSyncAccess(workStore.route, expression);\n return Reflect.ownKeys(target);\n }\n });\n}\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(createSearchAccessError);\nfunction createSearchAccessError(route, expression) {\n const prefix = route ? `Route \"${route}\" ` : 'This route ';\n return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\\`searchParams\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), \"__NEXT_ERROR_CODE\", {\n value: \"E848\",\n enumerable: false,\n configurable: true\n });\n}\nfunction createClientSearchParamsInValidation(underlyingSearchParams, workStore, workUnitStore) {\n var _workUnitStore_validationSamples;\n const { createExhaustiveSearchParamsProxy } = require('../app-render/instant-validation/instant-samples');\n const declaredKeys = new Set(Object.keys(((_workUnitStore_validationSamples = workUnitStore.validationSamples) == null ? void 0 : _workUnitStore_validationSamples.searchParams) ?? {}));\n underlyingSearchParams = createExhaustiveSearchParamsProxy(underlyingSearchParams, declaredKeys, workStore.route);\n return Promise.resolve(underlyingSearchParams);\n}\n\n//# sourceMappingURL=search-params.js.map","import { AppRenderSpan, NextNodeServerSpan } from './trace/constants';\nimport { getTracer, SpanKind } from './trace/tracer';\nimport { CACHE_ONE_YEAR_SECONDS, INFINITE_CACHE, NEXT_CACHE_TAG_MAX_ITEMS, NEXT_CACHE_TAG_MAX_LENGTH } from '../../lib/constants';\nimport { markCurrentScopeAsDynamic } from '../app-render/dynamic-rendering';\nimport { makeHangingPromise } from '../dynamic-rendering-utils';\nimport { createDedupeFetch } from './dedupe-fetch';\nimport { getCacheSignal } from '../app-render/work-unit-async-storage.external';\nimport { CachedRouteKind, IncrementalCacheKind } from '../response-cache';\nimport { cloneResponse } from './clone-response';\nimport { RenderStage } from '../app-render/staged-rendering';\nconst isEdgeRuntime = process.env.NEXT_RUNTIME === 'edge';\nexport const NEXT_PATCH_SYMBOL = Symbol.for('next-patch');\nfunction isFetchPatched() {\n return globalThis[NEXT_PATCH_SYMBOL] === true;\n}\nexport function validateRevalidate(revalidateVal, route) {\n try {\n let normalizedRevalidate = undefined;\n if (revalidateVal === false) {\n normalizedRevalidate = INFINITE_CACHE;\n } else if (typeof revalidateVal === 'number' && !isNaN(revalidateVal) && revalidateVal > -1) {\n normalizedRevalidate = revalidateVal;\n } else if (typeof revalidateVal !== 'undefined') {\n throw Object.defineProperty(new Error(`Invalid revalidate value \"${revalidateVal}\" on \"${route}\", must be a non-negative number or false`), \"__NEXT_ERROR_CODE\", {\n value: \"E179\",\n enumerable: false,\n configurable: true\n });\n }\n return normalizedRevalidate;\n } catch (err) {\n // handle client component error from attempting to check revalidate value\n if (err instanceof Error && err.message.includes('Invalid revalidate')) {\n throw err;\n }\n return undefined;\n }\n}\nexport function validateTags(tags, description) {\n const validTags = [];\n const invalidTags = [];\n for(let i = 0; i < tags.length; i++){\n const tag = tags[i];\n if (typeof tag !== 'string') {\n invalidTags.push({\n tag,\n reason: 'invalid type, must be a string'\n });\n } else if (tag.length > NEXT_CACHE_TAG_MAX_LENGTH) {\n invalidTags.push({\n tag,\n reason: `exceeded max length of ${NEXT_CACHE_TAG_MAX_LENGTH}`\n });\n } else {\n validTags.push(tag);\n }\n if (validTags.length > NEXT_CACHE_TAG_MAX_ITEMS) {\n console.warn(`Warning: exceeded max tag count for ${description}, dropped tags:`, tags.slice(i).join(', '));\n break;\n }\n }\n if (invalidTags.length > 0) {\n console.warn(`Warning: invalid tags passed to ${description}: `);\n for (const { tag, reason } of invalidTags){\n console.log(`tag: \"${tag}\" ${reason}`);\n }\n }\n return validTags;\n}\nfunction trackFetchMetric(workStore, ctx) {\n if (!workStore.shouldTrackFetchMetrics) {\n return;\n }\n workStore.fetchMetrics ??= [];\n workStore.fetchMetrics.push({\n ...ctx,\n end: performance.timeOrigin + performance.now(),\n idx: workStore.nextFetchId || 0\n });\n}\nasync function createCachedPrerenderResponse(res, cacheKey, incrementalCacheContext, incrementalCache, revalidate, handleUnlock) {\n // We are prerendering at build time or revalidate time with cacheComponents so we\n // need to buffer the response so we can guarantee it can be read in a\n // microtask.\n const bodyBuffer = await res.arrayBuffer();\n const fetchedData = {\n headers: Object.fromEntries(res.headers.entries()),\n body: Buffer.from(bodyBuffer).toString('base64'),\n status: res.status,\n url: res.url\n };\n // We can skip setting the serverComponentsHmrCache because we aren't in dev\n // mode.\n if (incrementalCacheContext) {\n await incrementalCache.set(cacheKey, {\n kind: CachedRouteKind.FETCH,\n data: fetchedData,\n revalidate\n }, incrementalCacheContext);\n }\n await handleUnlock();\n // We return a new Response to the caller.\n return new Response(bodyBuffer, {\n headers: res.headers,\n status: res.status,\n statusText: res.statusText\n });\n}\nasync function createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheContext, incrementalCache, serverComponentsHmrCache, revalidate, input, handleUnlock, signal) {\n // We're cloning the response using this utility because there exists a bug in\n // the undici library around response cloning. See the following pull request\n // for more details: https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(res);\n // We are dynamically rendering including dev mode. We want to return the\n // response to the caller as soon as possible because it might stream over a\n // very long time.\n const cacheSetPromise = cloned1.arrayBuffer().then(async (arrayBuffer)=>{\n const bodyBuffer = Buffer.from(arrayBuffer);\n const fetchedData = {\n headers: Object.fromEntries(cloned1.headers.entries()),\n body: bodyBuffer.toString('base64'),\n status: cloned1.status,\n url: cloned1.url\n };\n serverComponentsHmrCache == null ? void 0 : serverComponentsHmrCache.set(cacheKey, fetchedData);\n if (incrementalCacheContext) {\n await incrementalCache.set(cacheKey, {\n kind: CachedRouteKind.FETCH,\n data: fetchedData,\n revalidate\n }, incrementalCacheContext);\n }\n }).catch((error)=>{\n // Don't warn if the request was aborted intentionally.\n if (!(signal == null ? void 0 : signal.aborted)) {\n console.warn(`Failed to set fetch cache`, input, error);\n }\n }).finally(handleUnlock);\n const pendingRevalidateKey = `cache-set-${cacheKey}`;\n const pendingRevalidates = workStore.pendingRevalidates ??= {};\n let pendingRevalidatePromise = Promise.resolve();\n if (pendingRevalidateKey in pendingRevalidates) {\n // There is already a pending revalidate entry that we need to await to\n // avoid race conditions.\n pendingRevalidatePromise = pendingRevalidates[pendingRevalidateKey];\n }\n pendingRevalidates[pendingRevalidateKey] = pendingRevalidatePromise.then(()=>cacheSetPromise).finally(()=>{\n // If the pending revalidate is not present in the store, then we have\n // nothing to delete.\n if (!(pendingRevalidates == null ? void 0 : pendingRevalidates[pendingRevalidateKey])) {\n return;\n }\n delete pendingRevalidates[pendingRevalidateKey];\n });\n return cloned2;\n}\nexport function createPatchedFetcher(originFetch, { workAsyncStorage, workUnitAsyncStorage }) {\n // Create the patched fetch function.\n const patched = async function fetch(input, init) {\n var _init_method, _init_next;\n let url;\n try {\n url = new URL(input instanceof Request ? input.url : input);\n url.username = '';\n url.password = '';\n } catch {\n // Error caused by malformed URL should be handled by native fetch\n url = undefined;\n }\n const fetchUrl = (url == null ? void 0 : url.href) ?? '';\n const method = (init == null ? void 0 : (_init_method = init.method) == null ? void 0 : _init_method.toUpperCase()) || 'GET';\n // Do create a new span trace for internal fetches in the\n // non-verbose mode.\n const isInternal = (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next.internal) === true;\n const hideSpan = process.env.NEXT_OTEL_FETCH_DISABLED === '1';\n // We don't track fetch metrics for internal fetches\n // so it's not critical that we have a start time, as it won't be recorded.\n // This is to workaround a flaky issue where performance APIs might\n // not be available and will require follow-up investigation.\n const fetchStart = isInternal ? undefined : performance.timeOrigin + performance.now();\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n let cacheSignal = workUnitStore ? getCacheSignal(workUnitStore) : null;\n if (cacheSignal) {\n cacheSignal.beginRead();\n }\n const result = getTracer().trace(isInternal ? NextNodeServerSpan.internalFetch : AppRenderSpan.fetch, {\n hideSpan,\n kind: SpanKind.CLIENT,\n spanName: [\n 'fetch',\n method,\n fetchUrl\n ].filter(Boolean).join(' '),\n attributes: {\n 'http.url': fetchUrl,\n 'http.method': method,\n 'net.peer.name': url == null ? void 0 : url.hostname,\n 'net.peer.port': (url == null ? void 0 : url.port) || undefined\n }\n }, async ()=>{\n var _getRequestMeta;\n // If this is an internal fetch, we should not do any special treatment.\n if (isInternal) {\n return originFetch(input, init);\n }\n // If the workStore is not available, we can't do any\n // special treatment of fetch, therefore fallback to the original\n // fetch implementation.\n if (!workStore) {\n return originFetch(input, init);\n }\n // We should also fallback to the original fetch implementation if we\n // are in draft mode, it does not constitute a static generation.\n if (workStore.isDraftMode) {\n return originFetch(input, init);\n }\n const isRequestInput = input && typeof input === 'object' && typeof input.method === 'string';\n const getRequestMeta = (field)=>{\n // If request input is present but init is not, retrieve from input first.\n const value = init == null ? void 0 : init[field];\n return value || (isRequestInput ? input[field] : null);\n };\n let finalRevalidate = undefined;\n const getNextField = (field)=>{\n var _init_next, _init_next1, _input_next;\n return typeof (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next[field]) !== 'undefined' ? init == null ? void 0 : (_init_next1 = init.next) == null ? void 0 : _init_next1[field] : isRequestInput ? (_input_next = input.next) == null ? void 0 : _input_next[field] : undefined;\n };\n // RequestInit doesn't keep extra fields e.g. next so it's\n // only available if init is used separate\n const originalFetchRevalidate = getNextField('revalidate');\n let currentFetchRevalidate = originalFetchRevalidate;\n const tags = validateTags(getNextField('tags') || [], `fetch ${input.toString()}`);\n let revalidateStore;\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n // TODO: Stop accumulating tags in client prerender. (fallthrough)\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n revalidateStore = workUnitStore;\n break;\n case 'request':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (revalidateStore) {\n if (Array.isArray(tags)) {\n // Collect tags onto parent caches or parent prerenders.\n const collectedTags = revalidateStore.tags ?? (revalidateStore.tags = []);\n for (const tag of tags){\n if (!collectedTags.includes(tag)) {\n collectedTags.push(tag);\n }\n }\n }\n }\n const implicitTags = workUnitStore == null ? void 0 : workUnitStore.implicitTags;\n let pageFetchCacheMode = workStore.fetchCache;\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'unstable-cache':\n // Inside unstable-cache we treat it the same as force-no-store on\n // the page.\n pageFetchCacheMode = 'force-no-store';\n break;\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n const isUsingNoStore = !!workStore.isUnstableNoStore;\n let currentFetchCacheConfig = getRequestMeta('cache');\n let cacheReason = '';\n let cacheWarning;\n if (typeof currentFetchCacheConfig === 'string' && typeof currentFetchRevalidate !== 'undefined') {\n // If the revalidate value conflicts with the cache value, we should warn the user and unset the conflicting values.\n const isConflictingRevalidate = // revalidate: 0 and cache: force-cache\n currentFetchCacheConfig === 'force-cache' && currentFetchRevalidate === 0 || // revalidate: >0 or revalidate: false and cache: no-store\n currentFetchCacheConfig === 'no-store' && (currentFetchRevalidate > 0 || currentFetchRevalidate === false);\n if (isConflictingRevalidate) {\n cacheWarning = `Specified \"cache: ${currentFetchCacheConfig}\" and \"revalidate: ${currentFetchRevalidate}\", only one should be specified.`;\n currentFetchCacheConfig = undefined;\n currentFetchRevalidate = undefined;\n }\n }\n const hasExplicitFetchCacheOptOut = // fetch config itself signals not to cache\n currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store' || // the fetch isn't explicitly caching and the segment level cache config signals not to cache\n // note: `pageFetchCacheMode` is also set by being in an unstable_cache context.\n pageFetchCacheMode === 'force-no-store' || pageFetchCacheMode === 'only-no-store';\n // If no explicit fetch cache mode is set, but dynamic = `force-dynamic` is set,\n // we shouldn't consider caching the fetch. This is because the `dynamic` cache\n // is considered a \"top-level\" cache mode, whereas something like `fetchCache` is more\n // fine-grained. Top-level modes are responsible for setting reasonable defaults for the\n // other configurations.\n const noFetchConfigAndForceDynamic = !pageFetchCacheMode && !currentFetchCacheConfig && !currentFetchRevalidate && workStore.forceDynamic;\n if (// force-cache was specified without a revalidate value. We set the revalidate value to false\n // which will signal the cache to not revalidate\n currentFetchCacheConfig === 'force-cache' && typeof currentFetchRevalidate === 'undefined') {\n currentFetchRevalidate = false;\n } else if (hasExplicitFetchCacheOptOut || noFetchConfigAndForceDynamic) {\n currentFetchRevalidate = 0;\n }\n if (currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store') {\n cacheReason = `cache: ${currentFetchCacheConfig}`;\n }\n finalRevalidate = validateRevalidate(currentFetchRevalidate, workStore.route);\n const _headers = getRequestMeta('headers');\n const initHeaders = typeof (_headers == null ? void 0 : _headers.get) === 'function' ? _headers : new Headers(_headers || {});\n const hasUnCacheableHeader = initHeaders.get('authorization') || initHeaders.get('cookie');\n const isUnCacheableMethod = ![\n 'get',\n 'head'\n ].includes(((_getRequestMeta = getRequestMeta('method')) == null ? void 0 : _getRequestMeta.toLowerCase()) || 'get');\n /**\n * We automatically disable fetch caching under the following conditions:\n * - Fetch cache configs are not set. Specifically:\n * - A page fetch cache mode is not set (export const fetchCache=...)\n * - A fetch cache mode is not set in the fetch call (fetch(url, { cache: ... }))\n * or the fetch cache mode is set to 'default'\n * - A fetch revalidate value is not set in the fetch call (fetch(url, { revalidate: ... }))\n * - OR the fetch comes after a configuration that triggered dynamic rendering (e.g., reading cookies())\n * and the fetch was considered uncacheable (e.g., POST method or has authorization headers)\n */ const hasNoExplicitCacheConfig = // eslint-disable-next-line eqeqeq\n pageFetchCacheMode == undefined && // eslint-disable-next-line eqeqeq\n (currentFetchCacheConfig == undefined || // when considering whether to opt into the default \"no-cache\" fetch semantics,\n // a \"default\" cache config should be treated the same as no cache config\n currentFetchCacheConfig === 'default') && // eslint-disable-next-line eqeqeq\n currentFetchRevalidate == undefined;\n let autoNoCache = Boolean((hasUnCacheableHeader || isUnCacheableMethod) && (revalidateStore == null ? void 0 : revalidateStore.revalidate) === 0);\n let isImplicitBuildTimeCache = false;\n if (!autoNoCache && hasNoExplicitCacheConfig) {\n // We don't enable automatic no-cache behavior during build-time\n // prerendering so that we can still leverage the fetch cache between\n // export workers.\n if (workStore.isBuildTimePrerendering) {\n isImplicitBuildTimeCache = true;\n } else {\n autoNoCache = true;\n }\n }\n // If we have no cache config, and we're in Dynamic I/O prerendering,\n // it'll be a dynamic call. We don't have to issue that dynamic call.\n if (hasNoExplicitCacheConfig && workUnitStore !== undefined) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n // While we don't want to do caching in the client scope we know the\n // fetch will be dynamic for cacheComponents so we may as well avoid the\n // call here. (fallthrough)\n case 'prerender-client':\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'validation-client':\n break;\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n switch(pageFetchCacheMode){\n case 'force-no-store':\n {\n cacheReason = 'fetchCache = force-no-store';\n break;\n }\n case 'only-no-store':\n {\n if (currentFetchCacheConfig === 'force-cache' || typeof finalRevalidate !== 'undefined' && finalRevalidate > 0) {\n throw Object.defineProperty(new Error(`cache: 'force-cache' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-no-store'`), \"__NEXT_ERROR_CODE\", {\n value: \"E448\",\n enumerable: false,\n configurable: true\n });\n }\n cacheReason = 'fetchCache = only-no-store';\n break;\n }\n case 'only-cache':\n {\n if (currentFetchCacheConfig === 'no-store') {\n throw Object.defineProperty(new Error(`cache: 'no-store' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-cache'`), \"__NEXT_ERROR_CODE\", {\n value: \"E521\",\n enumerable: false,\n configurable: true\n });\n }\n break;\n }\n case 'force-cache':\n {\n if (typeof currentFetchRevalidate === 'undefined' || currentFetchRevalidate === 0) {\n cacheReason = 'fetchCache = force-cache';\n finalRevalidate = INFINITE_CACHE;\n }\n break;\n }\n case 'default-cache':\n case 'default-no-store':\n case 'auto':\n case undefined:\n break;\n default:\n pageFetchCacheMode;\n }\n if (typeof finalRevalidate === 'undefined') {\n if (pageFetchCacheMode === 'default-cache' && !isUsingNoStore) {\n finalRevalidate = INFINITE_CACHE;\n cacheReason = 'fetchCache = default-cache';\n } else if (pageFetchCacheMode === 'default-no-store') {\n finalRevalidate = 0;\n cacheReason = 'fetchCache = default-no-store';\n } else if (isUsingNoStore) {\n finalRevalidate = 0;\n cacheReason = 'noStore call';\n } else if (autoNoCache) {\n finalRevalidate = 0;\n cacheReason = 'auto no cache';\n } else {\n // TODO: should we consider this case an invariant?\n cacheReason = 'auto cache';\n finalRevalidate = revalidateStore ? revalidateStore.revalidate : INFINITE_CACHE;\n }\n } else if (!cacheReason) {\n cacheReason = `revalidate: ${finalRevalidate}`;\n }\n if (// when force static is configured we don't bail from\n // `revalidate: 0` values\n !(workStore.forceStatic && finalRevalidate === 0) && // we don't consider autoNoCache to switch to dynamic for ISR\n !autoNoCache && // If the revalidate value isn't currently set or the value is less\n // than the current revalidate value, we should update the revalidate\n // value.\n revalidateStore && finalRevalidate < revalidateStore.revalidate) {\n // If we were setting the revalidate value to 0, we should try to\n // postpone instead first.\n if (finalRevalidate === 0) {\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n // If we're in an instant validation, a dynamic fetch won't\n // have time to resolve during the validation prerender anyway,\n // so we leave it hanging. This can cause false negatives in shared parents,\n // but we accept that for now, because client data fetching is non-idiomatic.\n // eslint-disable-next-line no-fallthrough\n case 'validation-client':\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n markCurrentScopeAsDynamic(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`);\n }\n // We only want to set the revalidate store's revalidate time if it\n // was explicitly set for the fetch call, i.e.\n // originalFetchRevalidate.\n if (revalidateStore && originalFetchRevalidate === finalRevalidate) {\n revalidateStore.revalidate = finalRevalidate;\n }\n }\n const isCacheableRevalidate = typeof finalRevalidate === 'number' && finalRevalidate > 0;\n let cacheKey;\n const { incrementalCache } = workStore;\n let isHmrRefresh = false;\n let serverComponentsHmrCache;\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'request':\n case 'cache':\n case 'private-cache':\n isHmrRefresh = workUnitStore.isHmrRefresh ?? false;\n serverComponentsHmrCache = workUnitStore.serverComponentsHmrCache;\n break;\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (incrementalCache && (isCacheableRevalidate || serverComponentsHmrCache)) {\n try {\n cacheKey = await incrementalCache.generateCacheKey(fetchUrl, isRequestInput ? input : init);\n } catch (err) {\n console.error(`Failed to generate cache key for`, input);\n }\n }\n const fetchIdx = workStore.nextFetchId ?? 1;\n workStore.nextFetchId = fetchIdx + 1;\n let handleUnlock = ()=>{};\n const doOriginalFetch = async (isStale, cacheReasonOverride)=>{\n const requestInputFields = [\n 'cache',\n 'credentials',\n 'headers',\n 'integrity',\n 'keepalive',\n 'method',\n 'mode',\n 'redirect',\n 'referrer',\n 'referrerPolicy',\n 'window',\n 'duplex',\n // don't pass through signal when revalidating\n ...isStale ? [] : [\n 'signal'\n ]\n ];\n if (isRequestInput) {\n const reqInput = input;\n const reqOptions = {\n body: reqInput._ogBody || reqInput.body\n };\n for (const field of requestInputFields){\n // @ts-expect-error custom fields\n reqOptions[field] = reqInput[field];\n }\n input = new Request(reqInput.url, reqOptions);\n } else if (init) {\n const { _ogBody, body, signal, ...otherInput } = init;\n init = {\n ...otherInput,\n body: _ogBody || body,\n signal: isStale ? undefined : signal\n };\n }\n // add metadata to init without editing the original\n const clonedInit = {\n ...init,\n next: {\n ...init == null ? void 0 : init.next,\n fetchType: 'origin',\n fetchIdx\n }\n };\n return originFetch(input, clonedInit).then(async (res)=>{\n if (!isStale && fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason: cacheReasonOverride || cacheReason,\n cacheStatus: finalRevalidate === 0 || cacheReasonOverride ? 'skip' : 'miss',\n cacheWarning,\n status: res.status,\n method: clonedInit.method || 'GET'\n });\n }\n if (res.status === 200 && incrementalCache && cacheKey && (isCacheableRevalidate || serverComponentsHmrCache)) {\n const normalizedRevalidate = finalRevalidate >= INFINITE_CACHE ? CACHE_ONE_YEAR_SECONDS : finalRevalidate;\n const incrementalCacheConfig = isCacheableRevalidate ? {\n fetchCache: true,\n fetchUrl,\n fetchIdx,\n tags,\n isImplicitBuildTimeCache\n } : undefined;\n switch(workUnitStore == null ? void 0 : workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock);\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering && workUnitStore.cacheSignal && isCacheableRevalidate) {\n // We're filling caches for a staged render with an\n // explicit cache config, so we need to wait for the\n // response to finish instead of streaming. For HMR-only\n // caching (no explicit revalidate), we fall through to\n // createCachedDynamicResponse which handles streaming\n // and abort gracefully.\n return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock);\n }\n // fallthrough\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n case undefined:\n return createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheConfig, incrementalCache, serverComponentsHmrCache, normalizedRevalidate, input, handleUnlock, getRequestMeta('signal'));\n default:\n workUnitStore;\n }\n }\n // we had response that we determined shouldn't be cached so we return it\n // and don't cache it. This also needs to unlock the cache lock we acquired.\n await handleUnlock();\n return res;\n }).catch((error)=>{\n handleUnlock();\n throw error;\n });\n };\n let cacheReasonOverride;\n let isForegroundRevalidate = false;\n let isHmrRefreshCache = false;\n if (cacheKey && incrementalCache) {\n let cachedFetchData;\n if (isHmrRefresh && serverComponentsHmrCache) {\n cachedFetchData = serverComponentsHmrCache.get(cacheKey);\n isHmrRefreshCache = true;\n }\n if (isCacheableRevalidate && !cachedFetchData) {\n handleUnlock = await incrementalCache.lock(cacheKey);\n const entry = workStore.isOnDemandRevalidate ? null : await incrementalCache.get(cacheKey, {\n kind: IncrementalCacheKind.FETCH,\n revalidate: finalRevalidate,\n fetchUrl,\n fetchIdx,\n tags,\n softTags: implicitTags == null ? void 0 : implicitTags.tags\n });\n if (hasNoExplicitCacheConfig && workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-runtime':\n // We sometimes use the cache to dedupe fetches that do not\n // specify a cache configuration. In these cases we want to\n // make sure we still exclude them from prerenders if\n // cacheComponents is on so we introduce an artificial task boundary\n // here.\n await getTimeoutBoundary();\n break;\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (entry) {\n await handleUnlock();\n } else {\n // in dev, incremental cache response will be null in case the browser adds `cache-control: no-cache` in the request headers\n // TODO: it seems like we also hit this after revalidates in dev?\n cacheReasonOverride = 'cache-control: no-cache (hard refresh)';\n }\n if ((entry == null ? void 0 : entry.value) && entry.value.kind === CachedRouteKind.FETCH) {\n // when stale and is revalidating we wait for fresh data\n // so the revalidated entry has the updated data\n if (workStore.isStaticGeneration && entry.isStale) {\n isForegroundRevalidate = true;\n } else {\n if (entry.isStale) {\n workStore.pendingRevalidates ??= {};\n if (!workStore.pendingRevalidates[cacheKey]) {\n const pendingRevalidate = doOriginalFetch(true).then(async (response)=>({\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText\n })).finally(()=>{\n workStore.pendingRevalidates ??= {};\n delete workStore.pendingRevalidates[cacheKey || ''];\n });\n // Attach the empty catch here so we don't get a \"unhandled\n // promise rejection\" warning.\n pendingRevalidate.catch(console.error);\n workStore.pendingRevalidates[cacheKey] = pendingRevalidate;\n }\n }\n cachedFetchData = entry.value.data;\n }\n }\n }\n if (cachedFetchData) {\n if (fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason,\n cacheStatus: isHmrRefreshCache ? 'hmr' : 'hit',\n cacheWarning,\n status: cachedFetchData.status || 200,\n method: (init == null ? void 0 : init.method) || 'GET'\n });\n }\n const response = new Response(Buffer.from(cachedFetchData.body, 'base64'), {\n headers: cachedFetchData.headers,\n status: cachedFetchData.status\n });\n Object.defineProperty(response, 'url', {\n value: cachedFetchData.url\n });\n return response;\n }\n }\n if ((workStore.isStaticGeneration || process.env.NODE_ENV === 'development' && process.env.__NEXT_CACHE_COMPONENTS && workUnitStore && // eslint-disable-next-line no-restricted-syntax\n workUnitStore.type === 'request' && workUnitStore.stagedRendering) && init && typeof init === 'object') {\n const { cache } = init;\n // Delete `cache` property as Cloudflare Workers will throw an error\n if (isEdgeRuntime) delete init.cache;\n if (cache === 'no-store') {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'validation-client':\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n if (cacheSignal) {\n cacheSignal.endRead();\n cacheSignal = null;\n }\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n markCurrentScopeAsDynamic(workStore, workUnitStore, `no-store fetch ${input} ${workStore.route}`);\n }\n const hasNextConfig = 'next' in init;\n const { next = {} } = init;\n if (typeof next.revalidate === 'number' && revalidateStore && next.revalidate < revalidateStore.revalidate) {\n if (next.revalidate === 0) {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'validation-client':\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, 'fetch()');\n case 'request':\n if (process.env.NODE_ENV === 'development' && workUnitStore.stagedRendering) {\n await workUnitStore.stagedRendering.waitForStage(RenderStage.Dynamic);\n }\n break;\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n markCurrentScopeAsDynamic(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`);\n }\n if (!workStore.forceStatic || next.revalidate !== 0) {\n revalidateStore.revalidate = next.revalidate;\n }\n }\n if (hasNextConfig) delete init.next;\n }\n // if we are revalidating the whole page via time or on-demand and\n // the fetch cache entry is stale we should still de-dupe the\n // origin hit if it's a cache-able entry\n if (cacheKey && isForegroundRevalidate) {\n const pendingRevalidateKey = cacheKey;\n workStore.pendingRevalidates ??= {};\n let pendingRevalidate = workStore.pendingRevalidates[pendingRevalidateKey];\n if (pendingRevalidate) {\n const revalidatedResult = await pendingRevalidate;\n return new Response(revalidatedResult.body, {\n headers: revalidatedResult.headers,\n status: revalidatedResult.status,\n statusText: revalidatedResult.statusText\n });\n }\n // We used to just resolve the Response and clone it however for\n // static generation with cacheComponents we need the response to be able to\n // be resolved in a microtask and cloning the response will never have\n // a body that can resolve in a microtask in node (as observed through\n // experimentation) So instead we await the body and then when it is\n // available we construct manually cloned Response objects with the\n // body as an ArrayBuffer. This will be resolvable in a microtask\n // making it compatible with cacheComponents.\n const pendingResponse = doOriginalFetch(true, cacheReasonOverride)// We're cloning the response using this utility because there\n // exists a bug in the undici library around response cloning.\n // See the following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n .then(cloneResponse);\n pendingRevalidate = pendingResponse.then(async (responses)=>{\n const response = responses[0];\n return {\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText\n };\n }).finally(()=>{\n var _workStore_pendingRevalidates;\n // If the pending revalidate is not present in the store, then\n // we have nothing to delete.\n if (!((_workStore_pendingRevalidates = workStore.pendingRevalidates) == null ? void 0 : _workStore_pendingRevalidates[pendingRevalidateKey])) {\n return;\n }\n delete workStore.pendingRevalidates[pendingRevalidateKey];\n });\n // Attach the empty catch here so we don't get a \"unhandled promise\n // rejection\" warning\n pendingRevalidate.catch(()=>{});\n workStore.pendingRevalidates[pendingRevalidateKey] = pendingRevalidate;\n return pendingResponse.then((responses)=>responses[1]);\n } else {\n return doOriginalFetch(false, cacheReasonOverride);\n }\n });\n if (cacheSignal) {\n try {\n return await result;\n } finally{\n if (cacheSignal) {\n cacheSignal.endRead();\n }\n }\n }\n return result;\n };\n // Attach the necessary properties to the patched fetch function.\n // We don't use this to determine if the fetch function has been patched,\n // but for external consumers to determine if the fetch function has been\n // patched.\n patched.__nextPatched = true;\n patched.__nextGetStaticStore = ()=>workAsyncStorage;\n patched._nextOriginalFetch = originFetch;\n globalThis[NEXT_PATCH_SYMBOL] = true;\n // Assign the function name also as a name property, so that it's preserved\n // even when mangling is enabled.\n Object.defineProperty(patched, 'name', {\n value: 'fetch',\n writable: false\n });\n return patched;\n}\n// we patch fetch to collect cache information used for\n// determining if a page is static or not\nexport function patchFetch(options) {\n // If we've already patched fetch, we should not patch it again.\n if (isFetchPatched()) return;\n // Grab the original fetch function. We'll attach this so we can use it in\n // the patched fetch function.\n const original = createDedupeFetch(globalThis.fetch);\n // Set the global fetch to the patched fetch.\n globalThis.fetch = createPatchedFetcher(original, options);\n}\nlet currentTimeoutBoundary = null;\nfunction getTimeoutBoundary() {\n if (!currentTimeoutBoundary) {\n currentTimeoutBoundary = new Promise((r)=>{\n setTimeout(()=>{\n currentTimeoutBoundary = null;\n r();\n }, 0);\n });\n }\n return currentTimeoutBoundary;\n}\n\n//# sourceMappingURL=patch-fetch.js.map","// TODO: isWellKnownError -> isNextInternalError\n// isReactLargeShellError -> isWarning\nexport function isReactLargeShellError(error) {\n return typeof error === 'object' && error !== null && 'message' in error && typeof error.message === 'string' && error.message.startsWith('This rendered a large document (>');\n}\n\n//# sourceMappingURL=react-large-shell-error.js.map","import { getDigestForWellKnownError } from './create-error-handler';\nimport { isReactLargeShellError } from './react-large-shell-error';\nexport var Phase = /*#__PURE__*/ function(Phase) {\n Phase[\"ProspectiveRender\"] = \"the prospective render\";\n Phase[\"SegmentCollection\"] = \"segment collection\";\n Phase[\"InstantValidation\"] = \"instant validation\";\n return Phase;\n}({});\nexport function printDebugThrownValueForProspectiveRender(thrownValue, route, phase) {\n // We don't need to print well-known Next.js errors.\n if (getDigestForWellKnownError(thrownValue)) {\n return;\n }\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue);\n return undefined;\n }\n let message;\n if (typeof thrownValue === 'object' && thrownValue !== null && typeof thrownValue.message === 'string') {\n message = thrownValue.message;\n if (typeof thrownValue.stack === 'string') {\n const originalErrorStack = thrownValue.stack;\n const stackStart = originalErrorStack.indexOf('\\n');\n if (stackStart > -1) {\n const error = Object.defineProperty(new Error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled.\n \nOriginal Error: ${message}`), \"__NEXT_ERROR_CODE\", {\n value: \"E949\",\n enumerable: false,\n configurable: true\n });\n error.stack = 'Error: ' + error.message + originalErrorStack.slice(stackStart);\n console.error(error);\n return;\n }\n }\n } else if (typeof thrownValue === 'string') {\n message = thrownValue;\n }\n if (message) {\n console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. No stack was provided.\n \nOriginal Message: ${message}`);\n return;\n }\n console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. The thrown value is logged just following this message`);\n console.error(thrownValue);\n return;\n}\n\n//# sourceMappingURL=prospective-render-utils.js.map","import { InvariantError } from '../../shared/lib/invariant-error';\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers';\nexport var RenderStage = /*#__PURE__*/ function(RenderStage) {\n RenderStage[RenderStage[\"Before\"] = 1] = \"Before\";\n RenderStage[RenderStage[\"EarlyStatic\"] = 2] = \"EarlyStatic\";\n RenderStage[RenderStage[\"Static\"] = 3] = \"Static\";\n RenderStage[RenderStage[\"EarlyRuntime\"] = 4] = \"EarlyRuntime\";\n RenderStage[RenderStage[\"Runtime\"] = 5] = \"Runtime\";\n RenderStage[RenderStage[\"Dynamic\"] = 6] = \"Dynamic\";\n RenderStage[RenderStage[\"Abandoned\"] = 7] = \"Abandoned\";\n return RenderStage;\n}({});\nexport class StagedRenderingController {\n constructor(abortSignal, abandonController, shouldTrackSyncIO){\n this.abortSignal = abortSignal;\n this.abandonController = abandonController;\n this.shouldTrackSyncIO = shouldTrackSyncIO;\n this.currentStage = 1;\n this.syncInterruptReason = null;\n this.staticStageEndTime = Infinity;\n this.runtimeStageEndTime = Infinity;\n this.staticStageListeners = [];\n this.earlyRuntimeStageListeners = [];\n this.runtimeStageListeners = [];\n this.dynamicStageListeners = [];\n this.staticStagePromise = createPromiseWithResolvers();\n this.earlyRuntimeStagePromise = createPromiseWithResolvers();\n this.runtimeStagePromise = createPromiseWithResolvers();\n this.dynamicStagePromise = createPromiseWithResolvers();\n if (abortSignal) {\n abortSignal.addEventListener('abort', ()=>{\n // Reject all stage promises that haven't already been resolved.\n // If a promise was already resolved via advanceStage, the reject\n // is a no-op. The ignoreReject handler suppresses unhandled\n // rejection warnings for promises that no one is awaiting.\n const { reason } = abortSignal;\n this.staticStagePromise.promise.catch(ignoreReject);\n this.staticStagePromise.reject(reason);\n this.earlyRuntimeStagePromise.promise.catch(ignoreReject);\n this.earlyRuntimeStagePromise.reject(reason);\n this.runtimeStagePromise.promise.catch(ignoreReject);\n this.runtimeStagePromise.reject(reason);\n this.dynamicStagePromise.promise.catch(ignoreReject);\n this.dynamicStagePromise.reject(reason);\n }, {\n once: true\n });\n }\n if (abandonController) {\n abandonController.signal.addEventListener('abort', ()=>{\n this.abandonRender();\n }, {\n once: true\n });\n }\n }\n onStage(stage, callback) {\n if (this.currentStage >= stage) {\n callback();\n } else if (stage === 3) {\n this.staticStageListeners.push(callback);\n } else if (stage === 4) {\n this.earlyRuntimeStageListeners.push(callback);\n } else if (stage === 5) {\n this.runtimeStageListeners.push(callback);\n } else if (stage === 6) {\n this.dynamicStageListeners.push(callback);\n } else {\n // This should never happen\n throw Object.defineProperty(new InvariantError(`Invalid render stage: ${stage}`), \"__NEXT_ERROR_CODE\", {\n value: \"E881\",\n enumerable: false,\n configurable: true\n });\n }\n }\n shouldTrackSyncInterrupt() {\n if (!this.shouldTrackSyncIO) {\n return false;\n }\n switch(this.currentStage){\n case 1:\n // If we haven't started the render yet, it can't be interrupted.\n return false;\n case 2:\n case 3:\n return true;\n case 4:\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO\n // should error because it would abort a runtime prefetch.\n return true;\n case 5:\n // Runtime is for non-prefetchable segments. Sync IO is fine there\n // because in practice this segment will never be runtime prefetched\n return false;\n case 6:\n case 7:\n return false;\n default:\n return false;\n }\n }\n syncInterruptCurrentStageWithReason(reason) {\n if (this.currentStage === 1) {\n return;\n }\n // If the render has already been abandoned, there's nothing to interrupt.\n if (this.currentStage === 7) {\n return;\n }\n // If Sync IO occurs during an abandonable render, we trigger the abandon.\n // The abandon listener will call abandonRender which advances through\n // stages to let caches fill before marking as Abandoned.\n if (this.abandonController) {\n this.abandonController.abort();\n return;\n }\n if (this.abortSignal) {\n // If this is an abortable render, we capture the interruption reason and stop advancing.\n // We don't release any more promises.\n // The caller is expected to abort the signal.\n this.syncInterruptReason = reason;\n this.currentStage = 7;\n return;\n }\n // If we're in a non-abandonable & non-abortable render,\n // we need to advance to the Dynamic stage and capture the interruption reason.\n // (in dev, this will be the restarted render)\n switch(this.currentStage){\n case 2:\n case 3:\n case 4:\n {\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO here\n // means the prefetch would be aborted too early.\n this.syncInterruptReason = reason;\n this.advanceStage(6);\n return;\n }\n case 5:\n {\n // canSyncInterrupt returns false for Runtime, so we should\n // never get here. Defensive no-op.\n return;\n }\n case 6:\n default:\n }\n }\n getSyncInterruptReason() {\n return this.syncInterruptReason;\n }\n getStaticStageEndTime() {\n return this.staticStageEndTime;\n }\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime;\n }\n abandonRender() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the next stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this;\n switch(currentStage){\n case 2:\n {\n this.resolveStaticStage();\n }\n // intentional fallthrough\n case 3:\n {\n this.resolveEarlyRuntimeStage();\n }\n // intentional fallthrough\n case 4:\n {\n this.resolveRuntimeStage();\n }\n // intentional fallthrough\n case 5:\n {\n this.currentStage = 7;\n return;\n }\n case 6:\n case 1:\n case 7:\n break;\n default:\n {\n currentStage;\n }\n }\n }\n advanceStage(stage) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return;\n }\n let currentStage = this.currentStage;\n this.currentStage = stage;\n if (currentStage < 3 && stage >= 3) {\n this.resolveStaticStage();\n }\n if (currentStage < 4 && stage >= 4) {\n this.resolveEarlyRuntimeStage();\n }\n if (currentStage < 5 && stage >= 5) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin;\n this.resolveRuntimeStage();\n }\n if (currentStage < 6 && stage >= 6) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin;\n this.resolveDynamicStage();\n return;\n }\n }\n /** Fire the `onStage` listeners for the static stage and unblock any promises waiting for it. */ resolveStaticStage() {\n const staticListeners = this.staticStageListeners;\n for(let i = 0; i < staticListeners.length; i++){\n staticListeners[i]();\n }\n staticListeners.length = 0;\n this.staticStagePromise.resolve();\n }\n /** Fire the `onStage` listeners for the early runtime stage and unblock any promises waiting for it. */ resolveEarlyRuntimeStage() {\n const earlyRuntimeListeners = this.earlyRuntimeStageListeners;\n for(let i = 0; i < earlyRuntimeListeners.length; i++){\n earlyRuntimeListeners[i]();\n }\n earlyRuntimeListeners.length = 0;\n this.earlyRuntimeStagePromise.resolve();\n }\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */ resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners;\n for(let i = 0; i < runtimeListeners.length; i++){\n runtimeListeners[i]();\n }\n runtimeListeners.length = 0;\n this.runtimeStagePromise.resolve();\n }\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */ resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners;\n for(let i = 0; i < dynamicListeners.length; i++){\n dynamicListeners[i]();\n }\n dynamicListeners.length = 0;\n this.dynamicStagePromise.resolve();\n }\n getStagePromise(stage) {\n switch(stage){\n case 3:\n {\n return this.staticStagePromise.promise;\n }\n case 4:\n {\n return this.earlyRuntimeStagePromise.promise;\n }\n case 5:\n {\n return this.runtimeStagePromise.promise;\n }\n case 6:\n {\n return this.dynamicStagePromise.promise;\n }\n default:\n {\n stage;\n throw Object.defineProperty(new InvariantError(`Invalid render stage: ${stage}`), \"__NEXT_ERROR_CODE\", {\n value: \"E881\",\n enumerable: false,\n configurable: true\n });\n }\n }\n }\n waitForStage(stage) {\n return this.getStagePromise(stage);\n }\n delayUntilStage(stage, displayName, resolvedValue) {\n const ioTriggerPromise = this.getStagePromise(stage);\n const promise = makeDevtoolsIOPromiseFromIOTrigger(ioTriggerPromise, displayName, resolvedValue);\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject);\n }\n return promise;\n }\n}\nfunction ignoreReject() {}\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger(ioTrigger, displayName, resolvedValue) {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise((resolve, reject)=>{\n ioTrigger.then(resolve.bind(null, resolvedValue), reject);\n });\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName;\n }\n return promise;\n}\n\n//# sourceMappingURL=staged-rendering.js.map","import { resolveArray, resolveAsArrayOrUndefined } from '../generate/utils';\nimport { getSocialImageMetadataBaseFallback, isStringOrURL, resolveUrl, resolveAbsoluteUrlWithPathname } from './resolve-url';\nimport { resolveTitle } from './resolve-title';\nimport { isFullStringUrl } from '../../url';\nimport { warnOnce } from '../../../build/output/log';\nconst OgTypeFields = {\n article: [\n 'authors',\n 'tags'\n ],\n song: [\n 'albums',\n 'musicians'\n ],\n playlist: [\n 'albums',\n 'musicians'\n ],\n radio: [\n 'creators'\n ],\n video: [\n 'actors',\n 'directors',\n 'writers',\n 'tags'\n ],\n basic: [\n 'emails',\n 'phoneNumbers',\n 'faxNumbers',\n 'alternateLocale',\n 'audio',\n 'videos'\n ]\n};\nfunction resolveAndValidateImage(item, metadataBase, isStaticMetadataRouteFile) {\n if (!item) return undefined;\n const isItemUrl = isStringOrURL(item);\n const inputUrl = isItemUrl ? item : item.url;\n if (!inputUrl) return undefined;\n // process.env.VERCEL is set to \"1\" when System Environment Variables are\n // exposed. When exposed, validation is not necessary since we are falling back to\n // process.env.VERCEL_PROJECT_PRODUCTION_URL, process.env.VERCEL_BRANCH_URL, or\n // process.env.VERCEL_URL for the `metadataBase`. process.env.VERCEL is undefined\n // when System Environment Variables are not exposed. When not exposed, we cannot\n // detect in the build environment if the deployment is a Vercel deployment or not.\n //\n // x-ref: https://vercel.com/docs/projects/environment-variables/system-environment-variables#system-environment-variables\n const isUsingVercelSystemEnvironmentVariables = Boolean(process.env.VERCEL);\n const isRelativeUrl = typeof inputUrl === 'string' && !isFullStringUrl(inputUrl);\n // When no explicit metadataBase is specified by the user, we'll override it with the fallback metadata\n // under the following conditions:\n // - The provided URL is relative (ie ./og-image).\n // - The image is statically generated by Next.js (such as the special `opengraph-image` route)\n // In both cases, we want to ensure that across all environments, the ogImage is a fully qualified URL.\n // In the `opengraph-image` case, since the user isn't explicitly passing a relative path, this ensures\n // the ogImage will be properly discovered across different environments without the user needing to\n // have a bunch of `process.env` checks when defining their `metadataBase`.\n if (isRelativeUrl && (!metadataBase || isStaticMetadataRouteFile)) {\n const fallbackMetadataBase = getSocialImageMetadataBaseFallback(metadataBase);\n // When not using Vercel environment variables for URL injection, we aren't able to determine\n // a fallback value for `metadataBase`. For self-hosted setups, we want to warn\n // about this since the only fallback we'll be able to generate is `localhost`.\n // In development, we'll only warn for relative metadata that isn't part of the static\n // metadata conventions (eg `opengraph-image`), as otherwise it's currently very noisy\n // for common cases. Eventually we should remove this warning all together in favor of\n // devtools.\n const shouldWarn = !isUsingVercelSystemEnvironmentVariables && !metadataBase && (process.env.NODE_ENV === 'production' || !isStaticMetadataRouteFile);\n if (shouldWarn) {\n warnOnce(`metadataBase property in metadata export is not set for resolving social open graph or twitter images, using \"${fallbackMetadataBase.origin}\". See https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase`);\n }\n metadataBase = fallbackMetadataBase;\n }\n return isItemUrl ? {\n url: resolveUrl(inputUrl, metadataBase)\n } : {\n ...item,\n // Update image descriptor url\n url: resolveUrl(inputUrl, metadataBase)\n };\n}\nexport function resolveImages(images, metadataBase, isStaticMetadataRouteFile) {\n const resolvedImages = resolveAsArrayOrUndefined(images);\n if (!resolvedImages) return resolvedImages;\n const nonNullableImages = [];\n for (const item of resolvedImages){\n const resolvedItem = resolveAndValidateImage(item, metadataBase, isStaticMetadataRouteFile);\n if (!resolvedItem) continue;\n nonNullableImages.push(resolvedItem);\n }\n return nonNullableImages;\n}\nconst ogTypeToFields = {\n article: OgTypeFields.article,\n book: OgTypeFields.article,\n 'music.song': OgTypeFields.song,\n 'music.album': OgTypeFields.song,\n 'music.playlist': OgTypeFields.playlist,\n 'music.radio_station': OgTypeFields.radio,\n 'video.movie': OgTypeFields.video,\n 'video.episode': OgTypeFields.video\n};\nfunction getFieldsByOgType(ogType) {\n if (!ogType || !(ogType in ogTypeToFields)) return OgTypeFields.basic;\n return ogTypeToFields[ogType].concat(OgTypeFields.basic);\n}\nexport const resolveOpenGraph = async (openGraph, metadataBase, pathname, metadataContext, titleTemplate)=>{\n if (!openGraph) return null;\n function resolveProps(target, og) {\n const ogType = og && 'type' in og ? og.type : undefined;\n const keys = getFieldsByOgType(ogType);\n for (const k of keys){\n const key = k;\n if (key in og && key !== 'url') {\n const value = og[key];\n target[key] = value ? resolveArray(value) : null;\n }\n }\n target.images = resolveImages(og.images, metadataBase, metadataContext.isStaticMetadataRouteFile);\n }\n const resolved = {\n ...openGraph,\n title: resolveTitle(openGraph.title, titleTemplate)\n };\n resolveProps(resolved, openGraph);\n resolved.url = openGraph.url ? resolveAbsoluteUrlWithPathname(openGraph.url, metadataBase, await pathname, metadataContext) : null;\n return resolved;\n};\nconst TwitterBasicInfoKeys = [\n 'site',\n 'siteId',\n 'creator',\n 'creatorId',\n 'description'\n];\nexport const resolveTwitter = (twitter, metadataBase, metadataContext, titleTemplate)=>{\n var _resolved_images;\n if (!twitter) return null;\n let card = 'card' in twitter ? twitter.card : undefined;\n const resolved = {\n ...twitter,\n title: resolveTitle(twitter.title, titleTemplate)\n };\n for (const infoKey of TwitterBasicInfoKeys){\n resolved[infoKey] = twitter[infoKey] || null;\n }\n resolved.images = resolveImages(twitter.images, metadataBase, metadataContext.isStaticMetadataRouteFile);\n card = card || (((_resolved_images = resolved.images) == null ? void 0 : _resolved_images.length) ? 'summary_large_image' : 'summary');\n resolved.card = card;\n if ('card' in resolved) {\n switch(resolved.card){\n case 'player':\n {\n resolved.players = resolveAsArrayOrUndefined(resolved.players) || [];\n break;\n }\n case 'app':\n {\n resolved.app = resolved.app || {};\n break;\n }\n case 'summary':\n case 'summary_large_image':\n break;\n default:\n resolved;\n }\n }\n return resolved;\n};\n\n//# sourceMappingURL=resolve-opengraph.js.map","import { resolveAsArrayOrUndefined } from '../generate/utils';\nimport { isStringOrURL } from './resolve-url';\nimport { IconKeys } from '../constants';\nexport function resolveIcon(icon) {\n if (isStringOrURL(icon)) return {\n url: icon\n };\n else if (Array.isArray(icon)) return icon;\n return icon;\n}\nexport const resolveIcons = (icons)=>{\n if (!icons) {\n return null;\n }\n const resolved = {\n icon: [],\n apple: []\n };\n if (Array.isArray(icons)) {\n resolved.icon = icons.map(resolveIcon).filter(Boolean);\n } else if (isStringOrURL(icons)) {\n resolved.icon = [\n resolveIcon(icons)\n ];\n } else {\n for (const key of IconKeys){\n const values = resolveAsArrayOrUndefined(icons[key]);\n if (values) resolved[key] = values.map(resolveIcon);\n }\n }\n return resolved;\n};\n\n//# sourceMappingURL=resolve-icons.js.map","/* eslint-disable @next/internal/no-ambiguous-jsx -- Bundled in entry-base so it gets the right JSX runtime. */ import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { PrefetchHint } from '../../shared/lib/app-router-types';\nimport { readVaryParams } from '../../shared/lib/segment-cache/vary-params-decoding';\nimport { PAGE_SEGMENT_KEY } from '../../shared/lib/segment';\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { createFromReadableStream } from 'react-server-dom-webpack/client';\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { prerender } from 'react-server-dom-webpack/static';\nimport { streamFromBuffer, streamToBuffer } from '../stream-utils/node-web-streams-helper';\nimport { waitAtLeastOneReactRenderTask } from '../../lib/scheduler';\nimport { createSegmentRequestKeyPart, appendSegmentRequestKeyPart, ROOT_SEGMENT_REQUEST_KEY, HEAD_REQUEST_KEY } from '../../shared/lib/segment-cache/segment-value-encoding';\nimport { getDigestForWellKnownError } from './create-error-handler';\nimport { Phase, printDebugThrownValueForProspectiveRender } from './prospective-render-utils';\nimport { workAsyncStorage } from './work-async-storage.external';\nconst filterStackFrame = process.env.NODE_ENV !== 'production' ? require('../lib/source-maps').filterStackFrameDEV : undefined;\nconst findSourceMapURL = process.env.NODE_ENV !== 'production' ? require('../lib/source-maps').findSourceMapURLDEV : undefined;\nfunction onSegmentPrerenderError(error) {\n const digest = getDigestForWellKnownError(error);\n if (digest) {\n return digest;\n }\n // We don't need to log the errors because we would have already done that\n // when generating the original Flight stream for the whole page.\n if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {\n const workStore = workAsyncStorage.getStore();\n printDebugThrownValueForProspectiveRender(error, (workStore == null ? void 0 : workStore.route) ?? 'unknown route', Phase.SegmentCollection);\n }\n}\n/**\n * Extract the FlightRouterState, seed data, and head from a prerendered\n * InitialRSCPayload. Returns null if the payload doesn't match the expected\n * shape (single path with 3 elements).\n */ function extractFlightData(initialRSCPayload) {\n const flightDataPaths = initialRSCPayload.f;\n // FlightDataPath is an unsound type, hence the additional checks.\n if (flightDataPaths.length !== 1 && flightDataPaths[0].length !== 3) {\n console.error('Internal Next.js error: InitialRSCPayload does not match the expected ' + 'shape for a prerendered page during segment prefetch generation.');\n return null;\n }\n return {\n buildId: initialRSCPayload.b,\n flightRouterState: flightDataPaths[0][0],\n seedData: flightDataPaths[0][1],\n head: flightDataPaths[0][2]\n };\n}\nexport async function collectSegmentData(isCacheComponentsEnabled, fullPageDataBuffer, staleTime, clientModules, serverConsumerManifest, prefetchInlining, hints) {\n // Traverse the router tree and generate a prefetch response for each segment.\n // A mutable map to collect the results as we traverse the route tree.\n const resultMap = new Map();\n // Before we start, warm up the module cache by decoding the page data once.\n // Then we can assume that any remaining async tasks that occur the next time\n // are due to hanging promises caused by dynamic data access. Note we only\n // have to do this once per page, not per individual segment.\n //\n try {\n await createFromReadableStream(streamFromBuffer(fullPageDataBuffer), {\n findSourceMapURL,\n serverConsumerManifest\n });\n await waitAtLeastOneReactRenderTask();\n } catch {}\n // Create an abort controller that we'll use to stop the stream.\n const abortController = new AbortController();\n const onCompletedProcessingRouteTree = async ()=>{\n // Since all we're doing is decoding and re-encoding a cached prerender, if\n // serializing the stream takes longer than a microtask, it must because of\n // hanging promises caused by dynamic data.\n await waitAtLeastOneReactRenderTask();\n abortController.abort();\n };\n // Generate a stream for the route tree prefetch. While we're walking the\n // tree, we'll also spawn additional tasks to generate the segment prefetches.\n // The promises for these tasks are pushed to a mutable array that we will\n // await once the route tree is fully rendered.\n const segmentTasks = [];\n const { prelude: treeStream } = await prerender(// RootTreePrefetch is not a valid return type for a React component, but\n // we need to use a component so that when we decode the original stream\n // inside of it, the side effects are transferred to the new stream.\n // @ts-expect-error\n /*#__PURE__*/ _jsx(PrefetchTreeData, {\n isClientParamParsingEnabled: isCacheComponentsEnabled,\n fullPageDataBuffer: fullPageDataBuffer,\n serverConsumerManifest: serverConsumerManifest,\n clientModules: clientModules,\n staleTime: staleTime,\n segmentTasks: segmentTasks,\n onCompletedProcessingRouteTree: onCompletedProcessingRouteTree,\n prefetchInlining: prefetchInlining,\n hints: hints\n }), clientModules, {\n filterStackFrame,\n signal: abortController.signal,\n onError: onSegmentPrerenderError\n });\n // Write the route tree to a special `/_tree` segment.\n const treeBuffer = await streamToBuffer(treeStream);\n resultMap.set('/_tree', treeBuffer);\n // Also output the entire full page data response\n resultMap.set('/_full', fullPageDataBuffer);\n // Now that we've finished rendering the route tree, all the segment tasks\n // should have been spawned. Await them in parallel and write the segment\n // prefetches to the result map.\n let hasPageSegment = false;\n for (const [segmentPath, buffer] of (await Promise.all(segmentTasks))){\n resultMap.set(segmentPath, buffer);\n if (segmentPath.endsWith('__PAGE__')) {\n hasPageSegment = true;\n }\n }\n if (!hasPageSegment) {\n // The build requires at least one segment path ending with __PAGE__ to\n // register the catch-all segment data route. When all page segments are\n // disabled (e.g. every leaf has runtime prefetching), no __PAGE__ entry\n // is emitted. Write a dummy entry with a path that doesn't match any\n // real route segment so the client will never request it.\n //\n // TODO: Remove the __PAGE__ requirement from the build instead of\n // working around it here. The invariant is outdated now that segments\n // can be disabled.\n resultMap.set('/todo-remove-fake-segment/__PAGE__', Buffer.alloc(0));\n }\n return resultMap;\n}\n/**\n * Compute prefetch hints for a route by measuring segment sizes and deciding\n * which segments should be inlined. Only runs at build time. The results are\n * written to prefetch-hints.json and loaded at server startup.\n *\n * This is a separate pass from collectSegmentData so that the inlining\n * decisions can be fed back into collectSegmentData to control which segments\n * are output as separate entries vs. inlined into their parent.\n */ export async function collectPrefetchHints(fullPageDataBuffer, staleTime, clientModules, serverConsumerManifest, maxSize, maxBundleSize) {\n // Warm up the module cache, same as collectSegmentData.\n try {\n await createFromReadableStream(streamFromBuffer(fullPageDataBuffer), {\n findSourceMapURL,\n serverConsumerManifest\n });\n await waitAtLeastOneReactRenderTask();\n } catch {}\n // Decode the Flight data to walk the route tree.\n const initialRSCPayload = await createFromReadableStream(createUnclosingPrefetchStream(streamFromBuffer(fullPageDataBuffer)), {\n findSourceMapURL,\n serverConsumerManifest\n });\n const flightData = extractFlightData(initialRSCPayload);\n if (flightData === null) {\n return {\n hints: 0,\n slots: null\n };\n }\n const { buildId, flightRouterState, seedData, head } = flightData;\n // Measure the head (metadata/viewport) gzip size so the main traversal\n // can decide whether to inline it into a page's bundle.\n const headVaryParamsThenable = initialRSCPayload.h;\n const headVaryParams = headVaryParamsThenable !== null ? readVaryParams(headVaryParamsThenable) : null;\n const [, headBuffer] = await renderSegmentPrefetch(buildId, staleTime, head, HEAD_REQUEST_KEY, headVaryParams, clientModules);\n const headGzipSize = await getGzipSize(headBuffer);\n // Mutable accumulator: the first page leaf that can fit the head sets\n // this to true. Once set, subsequent leaves skip the check.\n const headInlineState = {\n inlined: false\n };\n // Walk the tree with the parent-first, child-decides algorithm.\n const { node } = await collectPrefetchHintsImpl(flightRouterState, buildId, staleTime, seedData, clientModules, ROOT_SEGMENT_REQUEST_KEY, null, maxSize, maxBundleSize, headGzipSize, headInlineState);\n if (!headInlineState.inlined) {\n // No page could accept the head. Set HeadOutlined on the root so the\n // client knows to fetch the head separately.\n node.hints |= PrefetchHint.HeadOutlined;\n }\n return node;\n}\n// Measure a segment's gzip size and decide whether it should be inlined.\n//\n// These hints are computed once during build and never change for the\n// lifetime of that deployment. The client can assume that hints delivered as\n// part of one request will be the same during a subsequent request, given\n// the same build ID. There's no skew to worry about as long as the build\n// itself is consistent.\n//\n// In the Segment Cache, we split page prefetches into multiple requests so\n// that each one can be cached and deduped independently. However, some\n// segments are small enough that the potential caching benefits are not worth\n// the additional network overhead. For these, we inline a parent's data into\n// one of its children's responses, avoiding a separate request. The parent\n// is inlined into the child (not the other way around) because the parent's\n// response is more likely to be shared across multiple pages. The child's\n// response is already page-specific, so adding the parent's data there\n// doesn't meaningfully reduce deduplication. It's similar to how JS bundlers\n// decide whether to inline a module into a chunk.\n//\n// The algorithm is parent-first, child-decides: the parent measures itself\n// and passes its gzip size down. Each child decides whether to accept. A\n// child rejects if the parent exceeds maxSize or if accepting would push\n// the cumulative inlined bytes past maxBundleSize. This produces\n// both ParentInlinedIntoSelf (on the child) and InlinedIntoChild (on the\n// parent) in a single pass.\nasync function collectPrefetchHintsImpl(route, buildId, staleTime, seedData, clientModules, // TODO: Consider persisting the computed requestKey into the hints output\n// so it doesn't need to be recomputed during the build. This might also\n// suggest renaming prefetch-hints.json to something like\n// segment-manifest.json, since it would contain more than just hints.\nrequestKey, parentGzipSize, maxSize, maxBundleSize, headGzipSize, headInlineState) {\n // Render current segment and measure its gzip size.\n let currentGzipSize = null;\n if (seedData !== null) {\n const varyParamsThenable = seedData[4];\n const varyParams = varyParamsThenable !== null ? readVaryParams(varyParamsThenable) : null;\n const [, buffer] = await renderSegmentPrefetch(buildId, staleTime, seedData[0], requestKey, varyParams, clientModules);\n currentGzipSize = await getGzipSize(buffer);\n }\n // Only offer this segment to its children for inlining if its gzip size\n // is below maxSize. Segments above this get their own response.\n const sizeToInline = currentGzipSize !== null && currentGzipSize < maxSize ? currentGzipSize : null;\n // Process children serially (not in parallel) to ensure deterministic\n // results. Since this only runs at build time and the rendering is just\n // re-encoding cached prerenders, this won't impact build times. Each child\n // receives our gzip size and decides whether to inline us. Once a child\n // accepts, we stop offering to remaining siblings — the parent is only\n // inlined into one child. In parallel routes, this avoids duplicating the\n // parent's data across multiple sibling responses.\n const children = route[1];\n const seedDataChildren = seedData !== null ? seedData[1] : null;\n let slots = null;\n let didInlineIntoChild = false;\n let acceptingChildInlinedBytes = 0;\n // Track the smallest inlinedBytes across all children so we know how much\n // budget remains along the best path. When our own parent asks whether we\n // can accept its data, the parent's bytes would flow through to the child\n // with the most remaining headroom.\n let smallestChildInlinedBytes = Infinity;\n let hasChildren = false;\n for(const parallelRouteKey in children){\n hasChildren = true;\n const childRoute = children[parallelRouteKey];\n const childSegment = childRoute[0];\n const childSeedData = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null;\n const childRequestKey = appendSegmentRequestKeyPart(requestKey, parallelRouteKey, createSegmentRequestKeyPart(childSegment));\n const childResult = await collectPrefetchHintsImpl(childRoute, buildId, staleTime, childSeedData, clientModules, childRequestKey, // Once a child has accepted us, stop offering to remaining siblings.\n didInlineIntoChild ? null : sizeToInline, maxSize, maxBundleSize, headGzipSize, headInlineState);\n if (slots === null) {\n slots = {};\n }\n slots[parallelRouteKey] = childResult.node;\n if (childResult.node.hints & PrefetchHint.ParentInlinedIntoSelf) {\n // This child accepted our data — it will include our segment's\n // response in its own. No need to track headroom anymore since\n // we already know which child we're inlined into.\n didInlineIntoChild = true;\n acceptingChildInlinedBytes = childResult.inlinedBytes;\n } else if (!didInlineIntoChild) {\n // Track the child with the most remaining headroom. Used below\n // when deciding whether to accept our own parent's data.\n if (childResult.inlinedBytes < smallestChildInlinedBytes) {\n smallestChildInlinedBytes = childResult.inlinedBytes;\n }\n }\n }\n // Leaf segment: no children have consumed any budget yet.\n if (!hasChildren) {\n smallestChildInlinedBytes = 0;\n }\n // Mark this segment as InlinedIntoChild if one of its children accepted.\n // This means this segment doesn't need its own prefetch response — its\n // data is included in the accepting child's response instead.\n let hints = 0;\n if (didInlineIntoChild) {\n hints |= PrefetchHint.InlinedIntoChild;\n }\n // inlinedBytes represents the total gzipped bytes of parent data inlined\n // into the deepest \"inlining target\" along this branch. It starts at 0 at\n // the leaves and grows as parents are inlined going back up the tree. If a\n // child accepted us, our size is already counted in that child's value.\n let inlinedBytes = didInlineIntoChild ? acceptingChildInlinedBytes : smallestChildInlinedBytes;\n // At leaf nodes (pages), try to inline the head (metadata/viewport) into\n // this page's response. The head is treated like an additional inlined\n // entry — it counts against the same total budget. Only the first page\n // that has room gets the head; subsequent pages skip via the shared\n // headInlineState accumulator.\n if (!hasChildren && !headInlineState.inlined) {\n if (inlinedBytes + headGzipSize < maxBundleSize) {\n hints |= PrefetchHint.HeadInlinedIntoSelf;\n inlinedBytes += headGzipSize;\n headInlineState.inlined = true;\n }\n }\n // Decide whether to accept our own parent's data. Two conditions:\n //\n // 1. The parent offered us a size (parentGzipSize is not null). It's null\n // when the parent is too large to inline or when this is the root.\n //\n // 2. The total inlined bytes along this branch wouldn't exceed the budget.\n // Even if each segment is individually small, at some point it no\n // longer makes sense to keep adding bytes because the combined response\n // is unique per URL and can't be deduped.\n //\n // A node can be both InlinedIntoChild and ParentInlinedIntoSelf. This\n // happens in multi-level chains: GP → P → C where all are small. C\n // accepts P (P is InlinedIntoChild), then P also accepts GP (P is\n // ParentInlinedIntoSelf). The result: C's response includes both P's\n // and GP's data. The parent's data flows through to the deepest\n // accepting descendant.\n if (parentGzipSize !== null) {\n if (inlinedBytes + parentGzipSize < maxBundleSize) {\n hints |= PrefetchHint.ParentInlinedIntoSelf;\n inlinedBytes += parentGzipSize;\n }\n }\n return {\n node: {\n hints,\n slots\n },\n inlinedBytes\n };\n}\n// We use gzip size rather than raw size because it better reflects the actual\n// transfer cost. The inlining trade-off is about whether the overhead of an\n// additional HTTP request (connection setup, headers, round trip) is worth\n// the deduplication benefit of keeping a segment separate. Below some\n// compressed size, the request overhead dominates and inlining is better.\n// Above it, the deduplication benefit of a cacheable standalone response\n// wins out.\nasync function getGzipSize(buffer) {\n const stream = new Blob([\n new Uint8Array(buffer)\n ]).stream().pipeThrough(new CompressionStream('gzip'));\n const compressedBlob = await new Response(stream).blob();\n return compressedBlob.size;\n}\nasync function PrefetchTreeData({ isClientParamParsingEnabled, fullPageDataBuffer, serverConsumerManifest, clientModules, staleTime, segmentTasks, onCompletedProcessingRouteTree, prefetchInlining, hints }) {\n // We're currently rendering a Flight response for the route tree prefetch.\n // Inside this component, decode the Flight stream for the whole page. This is\n // a hack to transfer the side effects from the original Flight stream (e.g.\n // Float preloads) onto the Flight stream for the tree prefetch.\n // TODO: React needs a better way to do this. Needed for Server Actions, too.\n const initialRSCPayload = await createFromReadableStream(createUnclosingPrefetchStream(streamFromBuffer(fullPageDataBuffer)), {\n findSourceMapURL,\n serverConsumerManifest\n });\n const flightData = extractFlightData(initialRSCPayload);\n if (flightData === null) {\n return null;\n }\n const { buildId, flightRouterState, seedData, head } = flightData;\n // Extract the head vary params from the decoded response.\n // The head vary params thenable should be fulfilled by now; if not, treat\n // as unknown (null).\n const headVaryParamsThenable = initialRSCPayload.h;\n const headVaryParams = headVaryParamsThenable !== null ? readVaryParams(headVaryParamsThenable) : null;\n // Compute the route metadata tree by traversing the FlightRouterState. As we\n // walk the tree, we will also spawn a task to produce a prefetch response for\n // each segment (unless prefetch inlining is enabled, in which case all\n // segments are bundled into a single /_inlined response).\n const tree = collectSegmentDataImpl(isClientParamParsingEnabled, flightRouterState, buildId, staleTime, seedData, clientModules, ROOT_SEGMENT_REQUEST_KEY, segmentTasks, prefetchInlining, hints);\n if (prefetchInlining) {\n // When prefetch inlining is enabled, bundle all segment data into a single\n // /_inlined response instead of individual per-segment responses. The head\n // is also included in the inlined response.\n segmentTasks.push(waitAtLeastOneReactRenderTask().then(()=>renderInlinedPrefetchResponse(flightRouterState, buildId, staleTime, seedData, head, headVaryParams, clientModules)));\n } else {\n // Also spawn a task to produce a prefetch response for the \"head\" segment.\n // The head contains metadata, like the title; it's not really a route\n // segment, but it contains RSC data, so it's treated like a segment by\n // the client cache.\n segmentTasks.push(waitAtLeastOneReactRenderTask().then(()=>renderSegmentPrefetch(buildId, staleTime, head, HEAD_REQUEST_KEY, headVaryParams, clientModules)));\n }\n // Notify the abort controller that we're done processing the route tree.\n // Anything async that happens after this point must be due to hanging\n // promises in the original stream.\n onCompletedProcessingRouteTree();\n // Render the route tree to a special `/_tree` segment.\n const treePrefetch = {\n tree,\n staleTime\n };\n if (buildId) {\n treePrefetch.buildId = buildId;\n }\n return treePrefetch;\n}\nfunction collectSegmentDataImpl(isClientParamParsingEnabled, route, buildId, staleTime, seedData, clientModules, requestKey, segmentTasks, prefetchInlining, hintTree) {\n // Metadata about the segment. Sent as part of the tree prefetch. Null if\n // there are no children.\n let slotMetadata = null;\n const children = route[1];\n const seedDataChildren = seedData !== null ? seedData[1] : null;\n for(const parallelRouteKey in children){\n const childRoute = children[parallelRouteKey];\n const childSegment = childRoute[0];\n const childSeedData = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null;\n const childRequestKey = appendSegmentRequestKeyPart(requestKey, parallelRouteKey, createSegmentRequestKeyPart(childSegment));\n const childHintTree = hintTree !== null && hintTree.slots !== null ? hintTree.slots[parallelRouteKey] ?? null : null;\n const childTree = collectSegmentDataImpl(isClientParamParsingEnabled, childRoute, buildId, staleTime, childSeedData, clientModules, childRequestKey, segmentTasks, prefetchInlining, childHintTree);\n if (slotMetadata === null) {\n slotMetadata = {};\n }\n slotMetadata[parallelRouteKey] = childTree;\n }\n // Union the hints already embedded in the FlightRouterState with the\n // separately-computed build-time hints. During the initial build, the\n // FlightRouterState was produced before collectPrefetchHints ran, so\n // inlining hints (ParentInlinedIntoSelf, InlinedIntoChild) won't be in\n // route[4] yet. On subsequent renders the hints are already in the\n // FlightRouterState, so the union is idempotent.\n const prefetchHints = (route[4] ?? 0) | (hintTree !== null ? hintTree.hints : 0);\n // Determine which params this segment varies on.\n // Read the vary params thenable directly from the seed data. By the time\n // collectSegmentData runs, the thenable should be fulfilled. If it's not\n // fulfilled or null, treat as unknown (null means we can't share cache\n // entries across param values).\n const varyParamsThenable = seedData !== null ? seedData[4] : null;\n const varyParams = varyParamsThenable !== null ? readVaryParams(varyParamsThenable) : null;\n if (!prefetchInlining) {\n // When prefetch inlining is disabled, spawn individual segment tasks.\n // When enabled, segment data is bundled into the /_inlined response\n // instead, so we skip per-segment tasks here.\n if (seedData !== null) {\n // Spawn a task to write the segment data to a new Flight stream.\n segmentTasks.push(// Since we're already in the middle of a render, wait until after the\n // current task to escape the current rendering context.\n waitAtLeastOneReactRenderTask().then(()=>renderSegmentPrefetch(buildId, staleTime, seedData[0], requestKey, varyParams, clientModules)));\n } else {\n // This segment does not have any seed data. Skip generating a prefetch\n // response for it. We'll still include it in the route tree, though.\n // TODO: We should encode in the route tree whether a segment is missing\n // so we don't attempt to fetch it for no reason. As of now this shouldn't\n // ever happen in practice, though.\n }\n }\n const segment = route[0];\n let name;\n let param;\n if (typeof segment === 'string') {\n name = segment;\n param = null;\n } else {\n name = segment[0];\n param = {\n type: segment[2],\n // This value is omitted from the prefetch response when cacheComponents\n // is enabled.\n key: isClientParamParsingEnabled ? null : segment[1],\n siblings: segment[3]\n };\n }\n // Metadata about the segment. Sent to the client as part of the\n // tree prefetch.\n return {\n name,\n param,\n prefetchHints,\n slots: slotMetadata\n };\n}\nasync function renderSegmentPrefetch(buildId, staleTime, rsc, requestKey, varyParams, clientModules) {\n // Render the segment data to a stream.\n const segmentPrefetch = {\n rsc,\n isPartial: await isPartialRSCData(rsc, clientModules),\n staleTime,\n varyParams\n };\n if (buildId) {\n segmentPrefetch.buildId = buildId;\n }\n // Since all we're doing is decoding and re-encoding a cached prerender, if\n // it takes longer than a microtask, it must because of hanging promises\n // caused by dynamic data. Abort the stream at the end of the current task.\n const abortController = new AbortController();\n waitAtLeastOneReactRenderTask().then(()=>abortController.abort());\n const { prelude: segmentStream } = await prerender(segmentPrefetch, clientModules, {\n filterStackFrame,\n signal: abortController.signal,\n onError: onSegmentPrerenderError\n });\n const segmentBuffer = await streamToBuffer(segmentStream);\n if (requestKey === ROOT_SEGMENT_REQUEST_KEY) {\n return [\n '/_index',\n segmentBuffer\n ];\n } else {\n return [\n requestKey,\n segmentBuffer\n ];\n }\n}\nasync function renderInlinedPrefetchResponse(route, buildId, staleTime, seedData, head, headVaryParams, clientModules) {\n // Build the inlined tree by walking the route and collecting all segments.\n const inlinedTree = await buildInlinedSegmentPrefetch(route, buildId, staleTime, seedData, clientModules);\n // Build the head segment.\n const headPrefetch = {\n rsc: head,\n isPartial: await isPartialRSCData(head, clientModules),\n staleTime,\n varyParams: headVaryParams\n };\n if (buildId) {\n headPrefetch.buildId = buildId;\n }\n const response = {\n tree: inlinedTree,\n head: headPrefetch\n };\n // Render as a single Flight response.\n const abortController = new AbortController();\n waitAtLeastOneReactRenderTask().then(()=>abortController.abort());\n const { prelude } = await prerender(response, clientModules, {\n filterStackFrame,\n signal: abortController.signal,\n onError: onSegmentPrerenderError\n });\n const buffer = await streamToBuffer(prelude);\n return [\n '/' + PAGE_SEGMENT_KEY,\n buffer\n ];\n}\nasync function buildInlinedSegmentPrefetch(route, buildId, staleTime, seedData, clientModules) {\n let slots = null;\n const children = route[1];\n const seedDataChildren = seedData !== null ? seedData[1] : null;\n for(const parallelRouteKey in children){\n const childRoute = children[parallelRouteKey];\n const childSeedData = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null;\n const childPrefetch = await buildInlinedSegmentPrefetch(childRoute, buildId, staleTime, childSeedData, clientModules);\n if (slots === null) {\n slots = {};\n }\n slots[parallelRouteKey] = childPrefetch;\n }\n const rsc = seedData !== null ? seedData[0] : null;\n const varyParamsThenable = seedData !== null ? seedData[4] : null;\n const varyParams = varyParamsThenable !== null ? readVaryParams(varyParamsThenable) : null;\n const segment = {\n rsc,\n isPartial: rsc !== null ? await isPartialRSCData(rsc, clientModules) : true,\n staleTime,\n varyParams\n };\n if (buildId) {\n segment.buildId = buildId;\n }\n return {\n segment,\n slots\n };\n}\nasync function isPartialRSCData(rsc, clientModules) {\n // We can determine if a segment contains only partial data if it takes longer\n // than a task to encode, because dynamic data is encoded as an infinite\n // promise. We must do this in a separate Flight prerender from the one that\n // actually generates the prefetch stream because we need to include\n // `isPartial` in the stream itself.\n let isPartial = false;\n const abortController = new AbortController();\n waitAtLeastOneReactRenderTask().then(()=>{\n // If we haven't yet finished the outer task, then it must be because we\n // accessed dynamic data.\n isPartial = true;\n abortController.abort();\n });\n await prerender(rsc, clientModules, {\n filterStackFrame,\n signal: abortController.signal,\n onError () {}\n });\n return isPartial;\n}\nfunction createUnclosingPrefetchStream(originalFlightStream) {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n const reader = originalFlightStream.getReader();\n return new ReadableStream({\n async pull (controller) {\n while(true){\n const { done, value } = await reader.read();\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value);\n continue;\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream.\n return;\n }\n }\n });\n}\n\n//# sourceMappingURL=collect-segment-data.js.map","/**\n * Calls the given function only when the returned promise-like object is\n * awaited. Afterwards, it provides the resolved value synchronously as `value`\n * property.\n */ export function createLazyResult(fn) {\n let pendingResult;\n const result = {\n then (onfulfilled, onrejected) {\n if (!pendingResult) {\n pendingResult = Promise.resolve(fn());\n }\n pendingResult.then((value)=>{\n result.value = value;\n }).catch(()=>{\n // The externally awaited result will be rejected via `onrejected`. We\n // don't need to handle it here. But we do want to avoid an unhandled\n // rejection.\n });\n return pendingResult.then(onfulfilled, onrejected);\n }\n };\n return result;\n}\nexport function isResolvedLazyResult(result) {\n return result.hasOwnProperty('value');\n}\n\n//# sourceMappingURL=lazy-result.js.map","/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/ import * as React from 'react';\nfunction notImplemented() {\n throw Object.defineProperty(new Error('Taint can only be used with the taint flag.'), \"__NEXT_ERROR_CODE\", {\n value: \"E354\",\n enumerable: false,\n configurable: true\n });\n}\nexport const taintObjectReference = process.env.__NEXT_EXPERIMENTAL_REACT ? React.experimental_taintObjectReference : notImplemented;\nexport const taintUniqueValue = process.env.__NEXT_EXPERIMENTAL_REACT ? React.experimental_taintUniqueValue : notImplemented;\n\n//# sourceMappingURL=taint.js.map","/**\n * Based on https://github.com/facebook/react/blob/d4e78c42a94be027b4dc7ed2659a5fddfbf9bd4e/packages/react/src/ReactFetch.js\n */ import * as React from 'react';\nimport { cloneResponse } from './clone-response';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nconst simpleCacheKey = '[\"GET\",[],null,\"follow\",null,null,null,null]' // generateCacheKey(new Request('https://blank'));\n;\n// Headers that should not affect deduplication\n// traceparent and tracestate are used for distributed tracing and should not affect cache keys\nconst headersToExcludeInCacheKey = new Set([\n 'traceparent',\n 'tracestate'\n]);\nfunction generateCacheKey(request) {\n // We pick the fields that goes into the key used to dedupe requests.\n // We don't include the `cache` field, because we end up using whatever\n // caching resulted from the first request.\n // Notably we currently don't consider non-standard (or future) options.\n // This might not be safe. TODO: warn for non-standard extensions differing.\n // IF YOU CHANGE THIS UPDATE THE simpleCacheKey ABOVE.\n const filteredHeaders = Array.from(request.headers.entries()).filter(([key])=>!headersToExcludeInCacheKey.has(key.toLowerCase()));\n return JSON.stringify([\n request.method,\n filteredHeaders,\n request.mode,\n request.redirect,\n request.credentials,\n request.referrer,\n request.referrerPolicy,\n request.integrity\n ]);\n}\nexport function createDedupeFetch(originalFetch) {\n const getCacheEntries = React.cache(// eslint-disable-next-line @typescript-eslint/no-unused-vars -- url is the cache key\n (url)=>[]);\n return function dedupeFetch(resource, options) {\n if (options && options.signal) {\n // If we're passed a signal, then we assume that\n // someone else controls the lifetime of this object and opts out of\n // caching. It's effectively the opt-out mechanism.\n // Ideally we should be able to check this on the Request but\n // it always gets initialized with its own signal so we don't\n // know if it's supposed to override - unless we also override the\n // Request constructor.\n return originalFetch(resource, options);\n }\n // Normalize the Request\n let url;\n let cacheKey;\n if (typeof resource === 'string' && !options) {\n // Fast path.\n cacheKey = simpleCacheKey;\n url = resource;\n } else {\n // Normalize the request.\n // if resource is not a string or a URL (its an instance of Request)\n // then do not instantiate a new Request but instead\n // reuse the request as to not disturb the body in the event it's a ReadableStream.\n const request = typeof resource === 'string' || resource instanceof URL ? new Request(resource, options) : resource;\n if (request.method !== 'GET' && request.method !== 'HEAD' || request.keepalive) {\n // We currently don't dedupe requests that might have side-effects. Those\n // have to be explicitly cached. We assume that the request doesn't have a\n // body if it's GET or HEAD.\n // keepalive gets treated the same as if you passed a custom cache signal.\n return originalFetch(resource, options);\n }\n cacheKey = generateCacheKey(request);\n url = request.url;\n }\n const cacheEntries = getCacheEntries(url);\n for(let i = 0, j = cacheEntries.length; i < j; i += 1){\n const [key, promise] = cacheEntries[i];\n if (key === cacheKey) {\n return promise.then(()=>{\n const response = cacheEntries[i][2];\n if (!response) throw Object.defineProperty(new InvariantError('No cached response'), \"__NEXT_ERROR_CODE\", {\n value: \"E579\",\n enumerable: false,\n configurable: true\n });\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response);\n cacheEntries[i][2] = cloned2;\n return cloned1;\n });\n }\n }\n // We pass the original arguments here in case normalizing the Request\n // doesn't include all the options in this environment.\n const promise = originalFetch(resource, options);\n const entry = [\n cacheKey,\n promise,\n null\n ];\n cacheEntries.push(entry);\n return promise.then((response)=>{\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response);\n entry[2] = cloned2;\n return cloned1;\n });\n };\n}\n\n//# sourceMappingURL=dedupe-fetch.js.map","import { workAsyncStorage } from '../app-render/work-async-storage.external';\nimport { postponeWithTracking } from '../app-render/dynamic-rendering';\nimport { throwInvariantForMissingStore, workUnitAsyncStorage } from '../app-render/work-unit-async-storage.external';\nimport { delayUntilRuntimeStage, makeHangingPromise } from '../dynamic-rendering-utils';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nexport function createServerPathnameForMetadata(underlyingPathname) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-ppr':\n case 'prerender-legacy':\n {\n return createPrerenderPathname(underlyingPathname, workStore, workUnitStore);\n }\n case 'prerender-client':\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createServerPathnameForMetadata should not be called in client contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1065\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createServerPathnameForMetadata should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E740\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createServerPathnameForMetadata should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1129\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n return delayUntilRuntimeStage(workUnitStore, createRenderPathname(underlyingPathname));\n case 'request':\n return createRenderPathname(underlyingPathname);\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nfunction createPrerenderPathname(underlyingPathname, workStore, prerenderStore) {\n switch(prerenderStore.type){\n case 'prerender':\n {\n const fallbackParams = prerenderStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n return makeHangingPromise(prerenderStore.renderSignal, workStore.route, '`pathname`');\n }\n break;\n }\n case 'prerender-ppr':\n {\n const fallbackParams = prerenderStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n return makeErroringPathname(workStore, prerenderStore.dynamicTracking);\n }\n break;\n }\n case 'prerender-legacy':\n break;\n default:\n prerenderStore;\n }\n // We don't have any fallback params so we have an entirely static safe params object\n return Promise.resolve(underlyingPathname);\n}\nfunction makeErroringPathname(workStore, dynamicTracking) {\n let reject = null;\n const promise = new Promise((_, re)=>{\n reject = re;\n });\n const originalThen = promise.then.bind(promise);\n // We instrument .then so that we can generate a tracking event only if you actually\n // await this promise, not just that it is created.\n promise.then = (onfulfilled, onrejected)=>{\n if (reject) {\n try {\n postponeWithTracking(workStore.route, 'metadata relative url resolving', dynamicTracking);\n } catch (error) {\n reject(error);\n reject = null;\n }\n }\n return originalThen(onfulfilled, onrejected);\n };\n // We wrap in a noop proxy to trick the runtime into thinking it\n // isn't a native promise (it's not really). This is so that awaiting\n // the promise will call the `then` property triggering the lazy postpone\n return new Proxy(promise, {});\n}\nfunction createRenderPathname(underlyingPathname) {\n return Promise.resolve(underlyingPathname);\n}\n\n//# sourceMappingURL=pathname.js.map","/**\n * App Router types - Client-safe types for the Next.js App Router\n *\n * This file contains type definitions that can be safely imported\n * by both client-side and server-side code without circular dependencies.\n */ export var PrefetchHint = /*#__PURE__*/ function(PrefetchHint) {\n // This segment has a runtime prefetch enabled (via unstable_instant with\n // prefetch: 'runtime'). Per-segment only, does not propagate to ancestors.\n PrefetchHint[PrefetchHint[\"HasRuntimePrefetch\"] = 1] = \"HasRuntimePrefetch\";\n // This segment or one of its descendants has an instant config defined\n // (any truthy unstable_instant, regardless of prefetch mode). Propagates\n // upward so the root segment reflects the entire subtree.\n PrefetchHint[PrefetchHint[\"SubtreeHasInstant\"] = 2] = \"SubtreeHasInstant\";\n // This segment itself has a loading.tsx boundary.\n PrefetchHint[PrefetchHint[\"SegmentHasLoadingBoundary\"] = 4] = \"SegmentHasLoadingBoundary\";\n // A descendant segment (but not this one) has a loading.tsx boundary.\n // Propagates upward so the root reflects the entire subtree.\n PrefetchHint[PrefetchHint[\"SubtreeHasLoadingBoundary\"] = 8] = \"SubtreeHasLoadingBoundary\";\n // This segment is the root layout of the application.\n PrefetchHint[PrefetchHint[\"IsRootLayout\"] = 16] = \"IsRootLayout\";\n // This segment's response includes its parent's data inlined into it.\n // Set at build time by the segment size measurement pass.\n PrefetchHint[PrefetchHint[\"ParentInlinedIntoSelf\"] = 32] = \"ParentInlinedIntoSelf\";\n // This segment's data is inlined into one of its children — don't fetch\n // it separately. Set at build time by the segment size measurement pass.\n PrefetchHint[PrefetchHint[\"InlinedIntoChild\"] = 64] = \"InlinedIntoChild\";\n // On a __PAGE__: this page's response includes the head (metadata/viewport)\n // at the end of its SegmentPrefetch[] array.\n PrefetchHint[PrefetchHint[\"HeadInlinedIntoSelf\"] = 128] = \"HeadInlinedIntoSelf\";\n // On the root hint node: the head was NOT inlined into any page — fetch\n // it separately. Absence of this bit means the head is bundled into a page.\n PrefetchHint[PrefetchHint[\"HeadOutlined\"] = 256] = \"HeadOutlined\";\n return PrefetchHint;\n}({});\n\n//# sourceMappingURL=app-router-types.js.map","import { isHTTPAccessFallbackError } from './http-access-fallback/http-access-fallback';\nimport { isRedirectError } from './redirect-error';\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */ export function isNextRouterError(error) {\n return isRedirectError(error) || isHTTPAccessFallbackError(error);\n}\n\n//# sourceMappingURL=is-next-router-error.js.map","import { workAsyncStorage } from '../app-render/work-async-storage.external';\nimport { createVaryingParams, getMetadataVaryParamsAccumulator } from '../app-render/vary-params';\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect';\nimport { throwToInterruptStaticGeneration, postponeWithTracking } from '../app-render/dynamic-rendering';\nimport { workUnitAsyncStorage, throwInvariantForMissingStore } from '../app-render/work-unit-async-storage.external';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nimport { describeStringPropertyAccess, wellKnownProperties } from '../../shared/lib/utils/reflect-utils';\nimport { makeDevtoolsIOAwarePromise, makeHangingPromise } from '../dynamic-rendering-utils';\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger';\nimport { dynamicAccessAsyncStorage } from '../app-render/dynamic-access-async-storage.external';\nimport { RenderStage } from '../app-render/staged-rendering';\nexport function createParamsFromClient(underlyingParams) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n // Client params don't need additional vary tracking because by the\n // time they reach the client, the access would have already been\n // tracked by the server.\n const varyParamsAccumulator = null;\n return createStaticPrerenderParams(underlyingParams, null, workStore, workUnitStore, varyParamsAccumulator);\n case 'validation-client':\n return createClientParamsInInstantValidation(underlyingParams, workStore, workUnitStore.validationSamples);\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createParamsFromClient should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E736\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError('createParamsFromClient should not be called in a runtime prerender.'), \"__NEXT_ERROR_CODE\", {\n value: \"E770\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createParamsFromClient should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1122\",\n enumerable: false,\n configurable: true\n });\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const fallbackParams = workUnitStore.fallbackParams;\n // Client params are not runtime prefetchable\n const isRuntimePrefetchable = false;\n return createRenderParamsInDev(underlyingParams, fallbackParams, workStore, workUnitStore, isRuntimePrefetchable);\n } else if (workUnitStore.validationSamples) {\n return createClientParamsInInstantValidation(underlyingParams, workStore, workUnitStore.validationSamples);\n } else {\n return createRenderParamsInProd(underlyingParams);\n }\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nexport function createServerParamsForMetadata(underlyingParams, optionalCatchAllParamName, isRuntimePrefetchable) {\n const metadataVaryParamsAccumulator = getMetadataVaryParamsAccumulator();\n return createServerParamsForServerSegment(underlyingParams, optionalCatchAllParamName, metadataVaryParamsAccumulator, isRuntimePrefetchable);\n}\n// routes always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerParamsForRoute(underlyingParams, varyParamsAccumulator = null) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(underlyingParams, null, workStore, workUnitStore, varyParamsAccumulator);\n case 'prerender-client':\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createServerParamsForRoute should not be called in client contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1064\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createServerParamsForRoute should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E738\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createServerParamsForRoute should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1131\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n {\n // Route params are not runtime prefetchable\n const isRuntimePrefetchable = false;\n return createRuntimePrerenderParams(underlyingParams, null, workUnitStore, varyParamsAccumulator, isRuntimePrefetchable);\n }\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const fallbackParams = workUnitStore.fallbackParams;\n // Route params are not runtime prefetchable\n const isRuntimePrefetchable = false;\n return createRenderParamsInDev(underlyingParams, fallbackParams, workStore, workUnitStore, isRuntimePrefetchable);\n } else {\n return createRenderParamsInProd(underlyingParams);\n }\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nexport function createServerParamsForServerSegment(underlyingParams, optionalCatchAllParamName, varyParamsAccumulator, isRuntimePrefetchable) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(underlyingParams, optionalCatchAllParamName, workStore, workUnitStore, varyParamsAccumulator);\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createServerParamsForServerSegment should not be called in client contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1101\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createServerParamsForServerSegment should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E743\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createServerParamsForServerSegment should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1120\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, optionalCatchAllParamName, workUnitStore, varyParamsAccumulator, isRuntimePrefetchable);\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const fallbackParams = workUnitStore.fallbackParams;\n return createRenderParamsInDev(underlyingParams, fallbackParams, workStore, workUnitStore, isRuntimePrefetchable);\n } else if (workUnitStore.asyncApiPromises && workUnitStore.validationSamples) {\n return createServerParamsInInstantValidation(underlyingParams, workStore, workUnitStore.validationSamples, workUnitStore.asyncApiPromises, isRuntimePrefetchable);\n } else if (workUnitStore.asyncApiPromises && hasFallbackRouteParams(underlyingParams, workUnitStore.fallbackParams)) {\n return (isRuntimePrefetchable ? workUnitStore.asyncApiPromises.earlySharedParamsParent : workUnitStore.asyncApiPromises.sharedParamsParent).then(()=>underlyingParams);\n } else {\n return createRenderParamsInProd(underlyingParams);\n }\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nexport function createPrerenderParamsForClientSegment(underlyingParams) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Missing workStore in createPrerenderParamsForClientSegment'), \"__NEXT_ERROR_CODE\", {\n value: \"E773\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n const fallbackParams = workUnitStore.fallbackRouteParams;\n if (fallbackParams) {\n for(let key in underlyingParams){\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, '`params`');\n }\n }\n }\n break;\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createPrerenderParamsForClientSegment should not be called in validation contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1099\",\n enumerable: false,\n configurable: true\n });\n break;\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createPrerenderParamsForClientSegment should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E734\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createPrerenderParamsForClientSegment should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1126\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'prerender-runtime':\n case 'request':\n break;\n default:\n workUnitStore;\n }\n }\n // We're prerendering in a mode that does not abort. We resolve the promise without\n // any tracking because we're just transporting a value from server to client where the tracking\n // will be applied.\n return Promise.resolve(underlyingParams);\n}\nfunction createStaticPrerenderParams(underlyingParams, optionalCatchAllParamName, workStore, prerenderStore, varyParamsAccumulator) {\n const underlyingParamsWithVarying = varyParamsAccumulator !== null ? createVaryingParams(varyParamsAccumulator, underlyingParams, optionalCatchAllParamName) : underlyingParams;\n switch(prerenderStore.type){\n case 'prerender':\n case 'prerender-client':\n {\n const fallbackParams = prerenderStore.fallbackRouteParams;\n if (fallbackParams) {\n for(const key in underlyingParams){\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingParams(underlyingParamsWithVarying, workStore, prerenderStore);\n }\n }\n }\n break;\n }\n case 'prerender-ppr':\n {\n const fallbackParams = prerenderStore.fallbackRouteParams;\n if (fallbackParams) {\n for(const key in underlyingParams){\n if (fallbackParams.has(key)) {\n return makeErroringParams(underlyingParamsWithVarying, fallbackParams, workStore, prerenderStore);\n }\n }\n }\n break;\n }\n case 'prerender-legacy':\n break;\n default:\n prerenderStore;\n }\n return makeUntrackedParams(underlyingParamsWithVarying);\n}\nfunction createRuntimePrerenderParams(underlyingParams, optionalCatchAllParamName, workUnitStore, varyParamsAccumulator, isRuntimePrefetchable) {\n const underlyingParamsWithVarying = varyParamsAccumulator !== null ? createVaryingParams(varyParamsAccumulator, underlyingParams, optionalCatchAllParamName) : underlyingParams;\n const result = makeUntrackedParams(underlyingParamsWithVarying);\n const { stagedRendering } = workUnitStore;\n if (!stagedRendering) {\n return result;\n }\n const stage = isRuntimePrefetchable ? RenderStage.EarlyRuntime : RenderStage.Runtime;\n return stagedRendering.waitForStage(stage).then(()=>result);\n}\nfunction hasFallbackRouteParams(underlyingParams, fallbackParams) {\n if (fallbackParams) {\n for(let key in underlyingParams){\n if (fallbackParams.has(key)) {\n return true;\n }\n }\n }\n return false;\n}\nfunction createServerParamsInInstantValidation(underlyingParams, workStore, validationSamples, asyncApiPromises, isRuntimePrefetchable) {\n const { createExhaustiveParamsProxy } = require('../app-render/instant-validation/instant-samples');\n const declaredParams = new Set(Object.keys(validationSamples.params ?? {}));\n const proxiedUnderlying = createExhaustiveParamsProxy(underlyingParams, declaredParams, workStore.route);\n return (isRuntimePrefetchable ? asyncApiPromises.earlySharedParamsParent : asyncApiPromises.sharedParamsParent).then(()=>proxiedUnderlying);\n}\nfunction createClientParamsInInstantValidation(underlyingParams, workStore, validationSamples) {\n const { createExhaustiveParamsProxy } = require('../app-render/instant-validation/instant-samples');\n const declaredParams = new Set(Object.keys((validationSamples == null ? void 0 : validationSamples.params) ?? {}));\n const proxiedUnderlying = createExhaustiveParamsProxy(underlyingParams, declaredParams, workStore.route);\n return Promise.resolve(proxiedUnderlying);\n}\nfunction createRenderParamsInProd(underlyingParams) {\n return makeUntrackedParams(underlyingParams);\n}\nfunction createRenderParamsInDev(underlyingParams, fallbackParams, workStore, requestStore, isRuntimePrefetchable) {\n return makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackRouteParams(underlyingParams, fallbackParams), workStore, requestStore, isRuntimePrefetchable);\n}\nconst CachedParams = new WeakMap();\nconst fallbackParamsProxyHandler = {\n get: function get(target, prop, receiver) {\n if (prop === 'then' || prop === 'catch' || prop === 'finally') {\n const originalMethod = ReflectAdapter.get(target, prop, receiver);\n return ({\n [prop]: (...args)=>{\n const store = dynamicAccessAsyncStorage.getStore();\n if (store) {\n store.abortController.abort(Object.defineProperty(new Error(`Accessed fallback \\`params\\` during prerendering.`), \"__NEXT_ERROR_CODE\", {\n value: \"E691\",\n enumerable: false,\n configurable: true\n }));\n }\n return new Proxy(originalMethod.apply(target, args), fallbackParamsProxyHandler);\n }\n })[prop];\n }\n return ReflectAdapter.get(target, prop, receiver);\n }\n};\nfunction makeHangingParams(underlyingParams, workStore, prerenderStore) {\n const cachedParams = CachedParams.get(underlyingParams);\n if (cachedParams) {\n return cachedParams;\n }\n const promise = new Proxy(makeHangingPromise(prerenderStore.renderSignal, workStore.route, '`params`'), fallbackParamsProxyHandler);\n CachedParams.set(underlyingParams, promise);\n return promise;\n}\nfunction makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore) {\n const cachedParams = CachedParams.get(underlyingParams);\n if (cachedParams) {\n return cachedParams;\n }\n const augmentedUnderlying = {\n ...underlyingParams\n };\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(augmentedUnderlying);\n CachedParams.set(underlyingParams, promise);\n Object.keys(underlyingParams).forEach((prop)=>{\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n if (fallbackParams.has(prop)) {\n Object.defineProperty(augmentedUnderlying, prop, {\n get () {\n const expression = describeStringPropertyAccess('params', prop);\n // In most dynamic APIs we also throw if `dynamic = \"error\"` however\n // for params is only dynamic when we're generating a fallback shell\n // and even when `dynamic = \"error\"` we still support generating dynamic\n // fallback shells\n // TODO remove this comment when cacheComponents is the default since there\n // will be no `dynamic = \"error\"`\n if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(workStore.route, expression, prerenderStore.dynamicTracking);\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(expression, workStore, prerenderStore);\n }\n },\n enumerable: true\n });\n }\n }\n });\n return promise;\n}\nfunction makeUntrackedParams(underlyingParams) {\n const cachedParams = CachedParams.get(underlyingParams);\n if (cachedParams) {\n return cachedParams;\n }\n const promise = Promise.resolve(underlyingParams);\n CachedParams.set(underlyingParams, promise);\n return promise;\n}\nfunction makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore, isRuntimePrefetchable) {\n if (requestStore.asyncApiPromises && hasFallbackParams) {\n // We wrap each instance of params in a `new Promise()`, because deduping\n // them across requests doesn't work anyway and this let us show each\n // await a different set of values. This is important when all awaits\n // are in third party which would otherwise track all the way to the\n // internal params.\n const sharedParamsParent = isRuntimePrefetchable ? requestStore.asyncApiPromises.earlySharedParamsParent : requestStore.asyncApiPromises.sharedParamsParent;\n const promise = new Promise((resolve, reject)=>{\n sharedParamsParent.then(()=>resolve(underlyingParams), reject);\n });\n // @ts-expect-error\n promise.displayName = 'params';\n return instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore);\n }\n const cachedParams = CachedParams.get(underlyingParams);\n if (cachedParams) {\n return cachedParams;\n }\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = hasFallbackParams ? makeDevtoolsIOAwarePromise(underlyingParams, requestStore, RenderStage.Runtime) : Promise.resolve(underlyingParams);\n const proxiedPromise = instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore);\n CachedParams.set(underlyingParams, proxiedPromise);\n return proxiedPromise;\n}\nfunction instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set();\n Object.keys(underlyingParams).forEach((prop)=>{\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop);\n }\n });\n return new Proxy(promise, {\n get (target, prop, receiver) {\n if (typeof prop === 'string') {\n if (// We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)) {\n const expression = describeStringPropertyAccess('params', prop);\n warnForSyncAccess(workStore.route, expression);\n }\n }\n return ReflectAdapter.get(target, prop, receiver);\n },\n set (target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop);\n }\n return ReflectAdapter.set(target, prop, value, receiver);\n },\n ownKeys (target) {\n const expression = '`...params` or similar expression';\n warnForSyncAccess(workStore.route, expression);\n return Reflect.ownKeys(target);\n }\n });\n}\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(createParamsAccessError);\nfunction createParamsAccessError(route, expression) {\n const prefix = route ? `Route \"${route}\" ` : 'This route ';\n return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\\`params\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), \"__NEXT_ERROR_CODE\", {\n value: \"E834\",\n enumerable: false,\n configurable: true\n });\n}\n\n//# sourceMappingURL=params.js.map","/**\n * Vary Params Decoding\n *\n * This module is shared between server and client.\n */ /**\n * Synchronously reads vary params from a thenable.\n *\n * By the time this is called (client-side or in collectSegmentData), the\n * thenable should already be fulfilled because the Flight stream has been\n * fully received. We check the status synchronously to avoid unnecessary\n * microtasks.\n *\n * Returns null if the thenable is still pending (which shouldn't happen in\n * normal operation - it indicates the server failed to track vary params).\n */ export function readVaryParams(thenable) {\n // Attach a no-op listener to force Flight to synchronously resolve the\n // thenable. When a thenable arrives from the Flight stream, it may be in an\n // intermediate 'resolved_model' state (data received but not unwrapped).\n // Calling .then() triggers Flight to transition it to 'fulfilled', making\n // the value available synchronously. React uses this same optimization\n // internally to avoid unnecessary microtasks.\n thenable.then(noop);\n // If the thenable is still not 'fulfilled' after calling .then(), the server\n // failed to resolve it before the stream ended. Treat as unknown.\n if (thenable.status !== 'fulfilled') {\n return null;\n }\n return thenable.value;\n}\nconst noop = ()=>{};\n\n//# sourceMappingURL=vary-params-decoding.js.map","/**\n * Extracts info about the server reference for the given server reference ID by\n * parsing the first byte of the hex-encoded ID.\n *\n * ```\n * Bit positions: [7] [6] [5] [4] [3] [2] [1] [0]\n * Bits: typeBit argMask restArgs\n * ```\n *\n * If the `typeBit` is `1` the server reference represents a `\"use cache\"`\n * function, otherwise a server action.\n *\n * The `argMask` encodes whether the function uses the argument at the\n * respective position.\n *\n * The `restArgs` bit indicates whether the function uses a rest parameter. It's\n * also set to 1 if the function has more than 6 args.\n *\n * @param id hex-encoded server reference ID\n */ export function extractInfoFromServerReferenceId(id) {\n const infoByte = parseInt(id.slice(0, 2), 16);\n const typeBit = infoByte >> 7 & 0x1;\n const argMask = infoByte >> 1 & 0x3f;\n const restArgs = infoByte & 0x1;\n const usedArgs = Array(6);\n for(let index = 0; index < 6; index++){\n const bitPosition = 5 - index;\n const bit = argMask >> bitPosition & 0x1;\n usedArgs[index] = bit === 1;\n }\n return {\n type: typeBit === 1 ? 'use-cache' : 'server-action',\n usedArgs: usedArgs,\n hasRestArgs: restArgs === 1\n };\n}\n/**\n * Creates a sparse array containing only the used arguments based on the\n * provided action info.\n */ export function omitUnusedArgs(args, info) {\n const filteredArgs = new Array(args.length);\n let length = 0;\n for(let index = 0; index < args.length; index++){\n if (index < 6 && info.usedArgs[index] || // This assumes that the server reference info byte has the restArgs bit\n // set to 1 if there are more than 6 args.\n index >= 6 && info.hasRestArgs) {\n filteredArgs[index] = args[index];\n length = index + 1;\n }\n }\n // Trim trailing unused args from the array.\n filteredArgs.length = length;\n return filteredArgs;\n}\n\n//# sourceMappingURL=server-reference-info.js.map","/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */ // Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react';\nimport { DynamicServerError } from '../../client/components/hooks-server-context';\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout';\nimport { throwForMissingRequestStore, workUnitAsyncStorage } from './work-unit-async-storage.external';\nimport { workAsyncStorage } from '../app-render/work-async-storage.external';\nimport { makeHangingPromise, getRuntimeStage } from '../dynamic-rendering-utils';\nimport { METADATA_BOUNDARY_NAME, VIEWPORT_BOUNDARY_NAME, OUTLET_BOUNDARY_NAME, ROOT_LAYOUT_BOUNDARY_NAME } from '../../lib/framework/boundary-constants';\nimport { scheduleOnNextTick } from '../../lib/scheduler';\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nimport { INSTANT_VALIDATION_BOUNDARY_NAME } from './instant-validation/boundary-constants';\nconst hasPostpone = typeof React.unstable_postpone === 'function';\nexport function createDynamicTrackingState(isDebugDynamicAccesses) {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null\n };\n}\nexport function createDynamicValidationState() {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: []\n };\n}\nexport function getFirstDynamicReason(trackingState) {\n var _trackingState_dynamicAccesses_;\n return (_trackingState_dynamicAccesses_ = trackingState.dynamicAccesses[0]) == null ? void 0 : _trackingState_dynamicAccesses_.expression;\n}\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */ export function markCurrentScopeAsDynamic(store, workUnitStore, expression) {\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return;\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return;\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return;\n if (store.dynamicShouldError) {\n throw Object.defineProperty(new StaticGenBailoutError(`Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), \"__NEXT_ERROR_CODE\", {\n value: \"E553\",\n enumerable: false,\n configurable: true\n });\n }\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender-ppr':\n return postponeWithTracking(store.route, expression, workUnitStore.dynamicTracking);\n case 'prerender-legacy':\n workUnitStore.revalidate = 0;\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = Object.defineProperty(new DynamicServerError(`Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), \"__NEXT_ERROR_CODE\", {\n value: \"E550\",\n enumerable: false,\n configurable: true\n });\n store.dynamicUsageDescription = expression;\n store.dynamicUsageStack = err.stack;\n throw err;\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true;\n }\n break;\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n}\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */ export function throwToInterruptStaticGeneration(expression, store, prerenderStore) {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = Object.defineProperty(new DynamicServerError(`Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), \"__NEXT_ERROR_CODE\", {\n value: \"E558\",\n enumerable: false,\n configurable: true\n });\n prerenderStore.revalidate = 0;\n store.dynamicUsageDescription = expression;\n store.dynamicUsageStack = err.stack;\n throw err;\n}\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */ export function trackDynamicDataInDynamicRender(workUnitStore) {\n switch(workUnitStore.type){\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return;\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return;\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n case 'validation-client':\n case 'generate-static-params':\n break;\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true;\n }\n break;\n default:\n workUnitStore;\n }\n}\nfunction abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore) {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`;\n const error = createPrerenderInterruptedError(reason);\n prerenderStore.controller.abort(error);\n const dynamicTracking = prerenderStore.dynamicTracking;\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined,\n expression\n });\n }\n}\nexport function abortOnSynchronousPlatformIOAccess(route, expression, errorWithStack, prerenderStore) {\n const dynamicTracking = prerenderStore.dynamicTracking;\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore);\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack;\n }\n }\n}\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */ export function abortAndThrowOnSynchronousRequestDataAccess(route, expression, errorWithStack, prerenderStore) {\n const prerenderSignal = prerenderStore.controller.signal;\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore);\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking;\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack;\n }\n }\n }\n throw createPrerenderInterruptedError(`Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`);\n}\nexport function Postpone({ reason, route }) {\n const prerenderStore = workUnitAsyncStorage.getStore();\n const dynamicTracking = prerenderStore && prerenderStore.type === 'prerender-ppr' ? prerenderStore.dynamicTracking : null;\n postponeWithTracking(route, reason, dynamicTracking);\n}\nexport function postponeWithTracking(route, expression, dynamicTracking) {\n assertPostpone();\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined,\n expression\n });\n }\n React.unstable_postpone(createPostponeReason(route, expression));\n}\nfunction createPostponeReason(route, expression) {\n return `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` + `React throws this special object to indicate where. It should not be caught by ` + `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`;\n}\nexport function isDynamicPostpone(err) {\n if (typeof err === 'object' && err !== null && typeof err.message === 'string') {\n return isDynamicPostponeReason(err.message);\n }\n return false;\n}\nfunction isDynamicPostponeReason(reason) {\n return reason.includes('needs to bail out of prerendering at this point because it used') && reason.includes('Learn more: https://nextjs.org/docs/messages/ppr-caught-error');\n}\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw Object.defineProperty(new Error('Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'), \"__NEXT_ERROR_CODE\", {\n value: \"E296\",\n enumerable: false,\n configurable: true\n });\n}\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED';\nfunction createPrerenderInterruptedError(message) {\n const error = Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E394\",\n enumerable: false,\n configurable: true\n });\n error.digest = NEXT_PRERENDER_INTERRUPTED;\n return error;\n}\nexport function isPrerenderInterruptedError(error) {\n return typeof error === 'object' && error !== null && error.digest === NEXT_PRERENDER_INTERRUPTED && 'name' in error && 'message' in error && error instanceof Error;\n}\nexport function accessedDynamicData(dynamicAccesses) {\n return dynamicAccesses.length > 0;\n}\nexport function consumeDynamicAccess(serverDynamic, clientDynamic) {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses);\n return serverDynamic.dynamicAccesses;\n}\nexport function formatDynamicAPIAccesses(dynamicAccesses) {\n return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{\n stack = stack.split('\\n')// Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4).filter((line)=>{\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false;\n }\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' ()')) {\n return false;\n }\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false;\n }\n return true;\n }).join('\\n');\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`;\n });\n}\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), \"__NEXT_ERROR_CODE\", {\n value: \"E224\",\n enumerable: false,\n configurable: true\n });\n }\n}\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */ export function createRenderInBrowserAbortSignal() {\n const controller = new AbortController();\n controller.abort(Object.defineProperty(new BailoutToCSRError('Render in Browser'), \"__NEXT_ERROR_CODE\", {\n value: \"E721\",\n enumerable: false,\n configurable: true\n }));\n return controller.signal;\n}\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */ export function createHangingInputAbortSignal(workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController();\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(()=>{\n controller.abort();\n });\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n if (// eslint-disable-next-line no-restricted-syntax -- We are discriminating between two different refined types and don't need an addition exhaustive switch here\n workUnitStore.type === 'prerender-runtime' && workUnitStore.stagedRendering) {\n const { stagedRendering } = workUnitStore;\n stagedRendering.waitForStage(getRuntimeStage(stagedRendering)).then(()=>scheduleOnNextTick(()=>controller.abort()));\n } else {\n scheduleOnNextTick(()=>controller.abort());\n }\n }\n return controller.signal;\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n return undefined;\n default:\n workUnitStore;\n }\n}\nexport function annotateDynamicAccess(expression, prerenderStore) {\n const dynamicTracking = prerenderStore.dynamicTracking;\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined,\n expression\n });\n }\n}\nexport function useDynamicRouteParams(expression) {\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workStore && workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender-client':\n case 'prerender':\n {\n const fallbackParams = workUnitStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(makeHangingPromise(workUnitStore.renderSignal, workStore.route, expression));\n }\n break;\n }\n case 'prerender-ppr':\n {\n const fallbackParams = workUnitStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking);\n }\n break;\n }\n case 'validation-client':\n {\n break;\n }\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E771\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E745\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1130\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break;\n default:\n workUnitStore;\n }\n }\n}\nexport function useDynamicSearchParams(expression) {\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (!workStore) {\n // We assume pages router context and just return\n return;\n }\n if (!workUnitStore) {\n throwForMissingRequestStore(expression);\n }\n switch(workUnitStore.type){\n case 'validation-client':\n // During instant validation we try to behave as close to client as possible,\n // so this shouldn't hang during SSR.\n return;\n case 'prerender-client':\n {\n React.use(makeHangingPromise(workUnitStore.renderSignal, workStore.route, expression));\n break;\n }\n case 'prerender-legacy':\n case 'prerender-ppr':\n {\n if (workStore.forceStatic) {\n return;\n }\n throw Object.defineProperty(new BailoutToCSRError(expression), \"__NEXT_ERROR_CODE\", {\n value: \"E394\",\n enumerable: false,\n configurable: true\n });\n }\n case 'prerender':\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E795\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E745\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1130\",\n enumerable: false,\n configurable: true\n });\n case 'request':\n return;\n default:\n workUnitStore;\n }\n}\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(\\)/;\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6';\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense ()\n// at __next_root_layout_boundary__ ()\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense ()\n// at SomeComponent ()\n// at __next_root_layout_boundary__ ()\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\\\n\\\\s+at Suspense \\\\(\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`);\nconst hasMetadataRegex = new RegExp(`\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasViewportRegex = new RegExp(`\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasInstantValidationBoundaryRegex = new RegExp(`\\\\n\\\\s+at ${INSTANT_VALIDATION_BOUNDARY_NAME}[\\\\n\\\\s]`);\nexport function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true;\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n } else {\n const message = `Route \"${workStore.route}\": Uncached data was accessed outside of ` + '. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route';\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1079\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n}\nexport var DynamicHoleKind = /*#__PURE__*/ function(DynamicHoleKind) {\n /** We know that this hole is caused by runtime data. */ DynamicHoleKind[DynamicHoleKind[\"Runtime\"] = 1] = \"Runtime\";\n /** We know that this hole is caused by dynamic data. */ DynamicHoleKind[DynamicHoleKind[\"Dynamic\"] = 2] = \"Dynamic\";\n return DynamicHoleKind;\n}({});\nexport function createInstantValidationState(createInstantStack) {\n return {\n hasDynamicMetadata: false,\n hasAllowedClientDynamicAboveBoundary: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n validationPreventingErrors: [],\n thrownErrorsOutsideBoundary: [],\n createInstantStack\n };\n}\nexport function trackDynamicHoleInNavigation(workStore, componentStack, dynamicValidation, clientDynamic, kind, boundaryState) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n }\n if (hasMetadataRegex.test(componentStack)) {\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments.` : `Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1076\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicMetadata = error;\n return;\n }\n if (hasViewportRegex.test(componentStack)) {\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`.` : `Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1086\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n const boundaryLocation = hasInstantValidationBoundaryRegex.exec(componentStack);\n if (!boundaryLocation) {\n // We don't see the validation boundary in the component stack,\n // so this hole must be coming from a shared parent.\n // Shared parents are fully resolved and don't have RSC holes,\n // but they can still suspend in a client component during SSR.\n // If we managed to render all the validation boundaries, that means\n // that the client holes aren't blocking validation and we can disregard them.\n // Note that we don't even care whether they have suspense or not.\n if (boundaryState.expectedIds.size === boundaryState.renderedIds.size) {\n dynamicValidation.hasAllowedClientDynamicAboveBoundary = true;\n dynamicValidation.hasAllowedDynamic = true // Holes outside the boundary contribute to allowing dynamic metadata\n ;\n return;\n } else {\n // TODO(instant-validation) TODO(NAR-787)\n // If shared parents blocked us from validating, we should only log\n // the errors from the innermost (segments), i.e. omit layouts whose\n // slots managed to render (because clearly they didn't block validation)\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because a Client Component in a parent segment prevented the page from rendering.`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1082\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.validationPreventingErrors.push(error);\n return;\n }\n } else {\n // The hole originates inside the validation boundary.\n //\n // Check if we have a Suspense above the hole, but below the validation boundary.\n // If we do, then this dynamic usage wouldn't block a navigation to this subtree.\n // Conversely, if the nearest suspense is above the validation boundary, then this subtree would block.\n //\n // Note that in the component stack, children come before parents.\n //\n // Valid:\n // ...\n // at Suspense\n // ...\n // at __next_prefetch_validation_boundary__\n //\n // Invalid:\n // ...\n // at __next_prefetch_validation_boundary__\n // ...\n // at Suspense\n //\n const suspenseLocation = hasSuspenseRegex.exec(componentStack);\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else {\n // invalid - fallthrough\n }\n }\n }\n if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n const syncError = clientDynamic.syncDynamicErrorWithStack;\n if (dynamicValidation.createInstantStack !== null && syncError.cause === undefined) {\n syncError.cause = dynamicValidation.createInstantStack();\n }\n dynamicValidation.dynamicErrors.push(syncError);\n return;\n }\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`.` : `Uncached data or \\`connection()\\` was accessed outside of \\`\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1078\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicErrors.push(error);\n return;\n}\nexport function trackThrownErrorInNavigation(workStore, dynamicValidation, thrownValue, componentStack) {\n const boundaryLocation = hasInstantValidationBoundaryRegex.exec(componentStack);\n if (!boundaryLocation) {\n // There's no validation boundary on the component stack.\n // This error may have blocked a boundary from rendering.\n // Wrap the error to provide component context.\n // This helps for errors from node_modules which would otherwise\n // have no useful stack information due to ignore-listing,\n // e.g. next/dynamic with `ssr: false`.\n const error = addErrorContext(Object.defineProperty(new Error('An error occurred while attempting to validate instant UI. This error may be preventing the validation from completing.', {\n cause: thrownValue\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E1118\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.thrownErrorsOutsideBoundary.push(error);\n } else {\n // There's validation boundary on the component stack,\n // so we know this error didn't block a validation boundary from rendering.\n // However, this error might be hiding be hiding dynamic content that would\n // cause validation to fail.\n const suspenseLocation = hasSuspenseRegex.exec(componentStack);\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n // There's a Suspense below the validation boundary but above this error's location.\n // This subtree can't fail instant validation because any potential\n // dynamic holes would be guarded by the Suspense anyway,\n // so we can allow this.\n return;\n } else {\n // invalid - fallthrough\n }\n }\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because an error prevented the target segment from rendering.`;\n const error = addErrorContext(Object.defineProperty(new Error(message, {\n cause: thrownValue\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E1112\",\n enumerable: false,\n configurable: true\n }), componentStack, null // TODO(instant-validation-build): conflicting use of cause\n );\n dynamicValidation.validationPreventingErrors.push(error);\n }\n}\nexport function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1080\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicMetadata = error;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n // TODO(instant-validation): If the page only has holes caused by runtime data,\n // we won't find out if there's a suspense-above-body and error for dynamic viewport\n // even if there is in fact a suspense-above-body\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1077\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n }\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1084\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n}\nexport function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1085\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicMetadata = error;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1081\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1083\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n}\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n *\n * Accepts an already-created Error so the SWC error-code plugin can see the\n * `new Error(...)` call at each call site and auto-assign error codes.\n */ function addErrorContext(error, componentStack, createInstantStack) {\n const ownerStack = process.env.NODE_ENV !== 'production' && React.captureOwnerStack ? React.captureOwnerStack() : null;\n if (createInstantStack !== null) {\n error.cause = createInstantStack();\n }\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + error.message + (ownerStack || componentStack);\n return error;\n}\nexport var PreludeState = /*#__PURE__*/ function(PreludeState) {\n PreludeState[PreludeState[\"Full\"] = 0] = \"Full\";\n PreludeState[PreludeState[\"Empty\"] = 1] = \"Empty\";\n PreludeState[PreludeState[\"Errored\"] = 2] = \"Errored\";\n return PreludeState;\n}({});\nexport function logDisallowedDynamicError(workStore, error) {\n console.error(error);\n if (process.env.NODE_ENV !== 'development') {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`);\n } else if (!process.env.__NEXT_DEV_SERVER) {\n console.error(`To debug the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`);\n }\n}\nexport function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack);\n throw new StaticGenBailoutError();\n }\n if (prelude !== 0) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return;\n }\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n for(let i = 0; i < dynamicErrors.length; i++){\n logDisallowedDynamicError(workStore, dynamicErrors[i]);\n }\n throw new StaticGenBailoutError();\n }\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(`Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`);\n throw new StaticGenBailoutError();\n }\n if (prelude === 1) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(`Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`);\n throw new StaticGenBailoutError();\n }\n } else {\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) {\n console.error(`Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`);\n throw new StaticGenBailoutError();\n }\n }\n}\nexport function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation, configAllowsBlocking) {\n if (configAllowsBlocking || dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return [];\n }\n if (prelude !== 0) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (prelude === 1) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n Object.defineProperty(new InvariantError(`Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`), \"__NEXT_ERROR_CODE\", {\n value: \"E936\",\n enumerable: false,\n configurable: true\n })\n ];\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) {\n return [\n dynamicValidation.dynamicMetadata\n ];\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return [];\n}\nexport function getNavigationDisallowedDynamicReasons(workStore, prelude, dynamicValidation, validationSampleTracking, boundaryState) {\n // If we have errors related to missing samples, those should take precedence over everything else.\n if (validationSampleTracking) {\n const { missingSampleErrors } = validationSampleTracking;\n if (missingSampleErrors.length > 0) {\n return missingSampleErrors;\n }\n }\n const { validationPreventingErrors } = dynamicValidation;\n if (validationPreventingErrors.length > 0) {\n return validationPreventingErrors;\n }\n if (boundaryState.renderedIds.size < boundaryState.expectedIds.size) {\n const { thrownErrorsOutsideBoundary, createInstantStack } = dynamicValidation;\n if (thrownErrorsOutsideBoundary.length === 0) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering for an unknown reason.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error\n ];\n } else if (thrownErrorsOutsideBoundary.length === 1) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to the following error.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error,\n thrownErrorsOutsideBoundary[0]\n ];\n } else {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to one of the following errors.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error,\n ...thrownErrorsOutsideBoundary\n ];\n }\n }\n // NOTE: We don't care about Suspense above body here,\n // we're only concerned with the validation boundary\n if (prelude !== 0) {\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (prelude === 1) {\n // If a client component suspended prevented us from rendering a shell\n // but didn't block validation, we don't require a prelude.\n if (dynamicValidation.hasAllowedClientDynamicAboveBoundary) {\n return [];\n }\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n return [\n Object.defineProperty(new InvariantError(`Route \"${workStore.route}\" failed to render during instant validation and Next.js was unable to determine a reason.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1055\",\n enumerable: false,\n configurable: true\n })\n ];\n }\n } else {\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicMetadata) {\n return [\n dynamicValidation.dynamicMetadata\n ];\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return [];\n}\n\n//# sourceMappingURL=dynamic-rendering.js.map"],"names":["RouteKind","getRevalidateReason","params","isOnDemandRevalidate","isStaticGeneration","undefined","BaseServerSpan","LoadComponentsSpan","NextServerSpan","NextNodeServerSpan","StartServerSpan","RenderSpan","AppRenderSpan","RouterSpan","NodeSpan","AppRouteRouteHandlersSpan","ResolveMetadataSpan","MiddlewareSpan","NextVanillaSpanAllowlist","Set","LogSpanAllowList","e","t","r","Object","defineProperty","value","ContextAPI","n","a","o","i","c","NoopContextManager","getInstance","_instance","setGlobalContextManager","registerGlobal","DiagAPI","instance","active","_getContextManager","with","bind","getGlobal","disable","unregisterGlobal","_logProxy","setLogger","logLevel","DiagLogLevel","INFO","s","Error","error","stack","message","u","l","createLogLevelDiagLogger","suppressOverrideMessage","warn","createComponentLogger","DiagComponentLogger","verbose","debug","info","MetricsAPI","setGlobalMeterProvider","getMeterProvider","NOOP_METER_PROVIDER","getMeter","PropagationAPI","NoopTextMapPropagator","createBaggage","getBaggage","getActiveBaggage","setBaggage","deleteBaggage","setGlobalPropagator","inject","defaultTextMapSetter","_getGlobalPropagator","extract","defaultTextMapGetter","fields","TraceAPI","_proxyTracerProvider","ProxyTracerProvider","wrapSpanContext","isSpanContextValid","deleteSpan","getSpan","getActiveSpan","getSpanContext","setSpan","setSpanContext","setGlobalTracerProvider","setDelegate","getTracerProvider","getTracer","createContextKey","getValue","setValue","deleteValue","BaggageImpl","_entries","Map","getEntry","get","assign","getAllEntries","Array","from","entries","map","setEntry","set","removeEntry","delete","removeEntries","clear","baggageEntryMetadataSymbol","Symbol","baggageEntryMetadataFromString","__TYPE__","toString","context","ROOT_CONTEXT","call","enable","for","BaseContext","_currentContext","diag","_namespace","namespace","logProxy","unshift","DiagConsoleLogger","_consoleFunc","console","log","apply","length","NONE","ALL","_filterFunc","ERROR","WARN","DEBUG","VERBOSE","VERSION","split","_globalThis","version","isCompatible","_makeCompatibilityCheck","match","major","minor","patch","prerelease","isExactmatch","_reject","add","_accept","has","metrics","ValueType","createNoopMeter","NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC","NOOP_OBSERVABLE_GAUGE_METRIC","NOOP_OBSERVABLE_COUNTER_METRIC","NOOP_UP_DOWN_COUNTER_METRIC","NOOP_HISTOGRAM_METRIC","NOOP_COUNTER_METRIC","NOOP_METER","NoopObservableUpDownCounterMetric","NoopObservableGaugeMetric","NoopObservableCounterMetric","NoopObservableMetric","NoopHistogramMetric","NoopUpDownCounterMetric","NoopCounterMetric","NoopMetric","NoopMeter","createHistogram","createCounter","createUpDownCounter","createObservableGauge","createObservableCounter","createObservableUpDownCounter","addBatchObservableCallback","removeBatchObservableCallback","record","addCallback","removeCallback","NoopMeterProvider","__createBinding","create","enumerable","__exportStar","prototype","hasOwnProperty","globalThis","propagation","keys","trace","NonRecordingSpan","INVALID_SPAN_CONTEXT","_spanContext","spanContext","setAttribute","setAttributes","addEvent","setStatus","updateName","end","isRecording","recordException","NoopTracer","startSpan","Boolean","root","isSpanContext","startActiveSpan","arguments","g","NoopTracerProvider","ProxyTracer","_provider","name","options","_getTracer","Reflect","_delegate","getDelegateTracer","getDelegate","SamplingDecision","TraceStateImpl","_internalState","_parse","_clone","unset","serialize","_keys","reduce","push","join","reverse","trim","indexOf","slice","validateKey","validateValue","size","RegExp","test","createTraceState","INVALID_TRACEID","INVALID_SPANID","traceId","spanId","traceFlags","TraceFlags","SpanKind","isValidSpanId","isValidTraceId","SpanStatusCode","__nccwpck_require__","exports","ab","p","d","_","f","b","v","O","P","N","S","C","module","promise","isThenable","then","NEXT_REQUEST_META","getRequestMeta","req","key","meta","setRequestMeta","addRequestMeta","request","removeRequestMeta","interopDefault","mod","default","RSC_HEADER","ACTION_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_URL","RSC_CONTENT_TYPE_HEADER","NEXT_INSTANT_PREFETCH_HEADER","NEXT_INSTANT_TEST_COOKIE","FLIGHT_HEADERS","NEXT_RSC_UNION_QUERY","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_ACTION_REVALIDATED_HEADER","stripFlightHeaders","headers","header","RedirectStatusCode","wrapApiHandler","page","handler","args","setRootSpanAttribute","runHandler","spanName","res","redirect","sendStatusCode","statusCode","statusOrUrl","url","configurable","writeHead","Location","previewModeId","write","checkIsOnDemandRevalidate","previewProps","revalidateOnlyGenerated","COOKIE_NAME_PRERENDER_BYPASS","COOKIE_NAME_PRERENDER_DATA","RESPONSE_LIMIT_DEFAULT","SYMBOL_PREVIEW_DATA","SYMBOL_CLEARED_COOKIES","clearPreviewData","previous","getHeader","setHeader","isArray","expires","Date","httpOnly","sameSite","secure","path","ApiError","sendError","statusMessage","setLazyProp","prop","getter","opts","optsReset","writable","checkIsAppPPREnabled","config","checkIsRoutePPREnabled","isRSCRequestHeader","InvariantError","constructor","endsWith","ensureLeadingSlash","startsWith","normalizeAppPath","INTERCEPTION_ROUTE_MARKERS","isInterceptionRouteAppPath","find","segment","m","extractInterceptionRouteInformation","interceptingRoute","marker","interceptedRoute","concat","splitInterceptingRoute","getSegmentParam","interceptionMarker","paramType","paramName","isCatchAll","type","getParamProperties","repeat","optional","normalizeEncodedDynamicPlaceholder","decodedSegment","decodeURIComponent","parseAppRouteSegment","param","route","isInterceptionAppRoute","pathname","pathnameSegments","isNormalizedAppRoute","normalized","appSegment","parseAppRoute","filter","segments","normalizedSegment","parts","dynamicSegments","parsePath","hashIndex","queryIndex","hasQuery","substring","query","hash","pathHasPrefix","removePathPrefix","workAsyncStorage","MANIFESTS_SINGLETON","globalThisWithManifests","createProxiedClientReferenceManifest","clientReferenceManifestsPerRoute","createMappingProxy","Proxy","id","workStore","getStore","currentManifest","process","env","NODE_ENV","manifest","entry","values","mappingProxies","proxy","String","createServerModuleMap","getServerActionsManifest","workers","NEXT_RUNTIME","workerEntry","normalizeWorkerPageName","at","moduleId","async","chunks","pageName","denormalizeWorkerPageName","bundlePath","selectWorkerForForwarding","actionId","serverActionsManifest","setManifestsSingleton","clientReferenceManifest","rawServerActionsManifest","existingSingleton","encryptionKey","node","edge","proxiedClientReferenceManifest","serverModuleMap","getManifestsSingleton","manifestSingleton","getClientReferenceManifest","getServerModuleMap","HTML_LIMITED_BOT_UA_RE","getBotType","HTML_LIMITED_BOT_UA_RE_STRING","shouldServeStreamingMetadata","userAgent","htmlLimitedBots","blockingMetadataUARegex","isHtmlBotRequest","ua","botType","getServerActionRequestMetadata","contentType","Headers","isURLEncodedAction","method","isMultipartAction","isFetchAction","isPossibleServerAction","getIsPossibleServerAction","scheduleOnNextTick","cb","Promise","resolve","setTimeout","nextTick","scheduleImmediate","setImmediate","atLeastOneTask","waitAtLeastOneReactRenderTask","CachedRouteKind","IncrementalCacheKind","ENCODED_TAGS","OPENING","HTML","Uint8Array","HEAD","BODY","CLOSED","BODY_AND_HTML","META","ICON_MARK","DetachedPromise","reject","rej","__defProp","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","__export","target","all","__copyProps","to","except","desc","__toCommonJS","src_exports","RequestCookies","ResponseCookies","parseCookie","parseSetCookie","stringifyCookie","_a","attrs","toUTCString","maxAge","domain","partitioned","priority","stringified","encodeURIComponent","cookie","pair","splitAt","setCookie","attributes","httponly","maxage","samesite","fromEntries","value2","toLowerCase","replace","Number","parseSameSite","parsePriority","compact","newT","SAME_SITE","string","includes","PRIORITY","splitCookiesString","cookiesString","cookiesStrings","pos","start","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","charAt","notSpecialChar","requestHeaders","_parsed","_headers","parsed","iterator","getAll","names","result","JSON","stringify","responseHeaders","_b","_c","getSetCookie","cookieStrings","cookieString","normalizeCookie","bag","serialized","append","now","fromNodeOutgoingHttpHeaders","nodeHeaders","toNodeOutgoingHttpHeaders","validateURL","cookies","cause","URL","normalizeNextQueryParam","prefixes","prefix","TEXT_PLAIN_CONTENT_TYPE_HEADER","HTML_CONTENT_TYPE_HEADER","JSON_CONTENT_TYPE_HEADER","NEXT_QUERY_PARAM_PREFIX","NEXT_INTERCEPTION_MARKER_PREFIX","MATCHED_PATH_HEADER","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","ACTION_SUFFIX","NEXT_DATA_SUFFIX","NEXT_META_SUFFIX","NEXT_BODY_SUFFIX","NEXT_NAV_DEPLOYMENT_ID_HEADER","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_RESUME_HEADER","NEXT_RESUME_STATE_LENGTH_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_IMPLICIT_TAG_ID","NEXT_CACHE_ROOT_PARAM_TAG_ID","CACHE_ONE_YEAR_SECONDS","INFINITE_CACHE","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","PROXY_FILENAME","PROXY_LOCATION_REGEXP","INSTRUMENTATION_HOOK_FILENAME","PAGES_DIR_ALIAS","DOT_NEXT_ALIAS","ROOT_DIR_ALIAS","APP_DIR_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","PUBLIC_DIR_MIDDLEWARE_CONFLICT","SSG_GET_INITIAL_PROPS_CONFLICT","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","SERVER_PROPS_EXPORT_ERROR","GSP_NO_RETURNED_VALUE","GSSP_NO_RETURNED_VALUE","UNSTABLE_REVALIDATE_RENAME_ERROR","GSSP_COMPONENT_MEMBER_ERROR","NON_STANDARD_NODE_ENV","SSG_FALLBACK_EXPORT_ERROR","ESLINT_DEFAULT_DIRS","SERVER_RUNTIME","experimentalEdge","nodejs","WEB_SOCKET_MAX_RECONNECTIONS","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","WEBPACK_LAYERS","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","WEBPACK_RESOURCE_QUERIES","edgeSSREntry","metadata","metadataRoute","metadataImageMeta","stdout","enabled","NO_COLOR","FORCE_COLOR","isTTY","CI","TERM","replaceClose","str","close","index","nextIndex","formatter","open","input","reset","bold","dim","italic","underline","inverse","hidden","strikethrough","black","red","green","yellow","blue","magenta","purple","cyan","white","gray","bgBlack","bgRed","bgGreen","bgYellow","bgBlue","bgMagenta","bgCyan","bgWhite","FallbackMode","parseFallbackField","fallbackField","fallbackModeToFallbackField","fallback","parseStaticPathsResult","fresh","parseTokenList","parseHttpDate","parse","NaN","charCodeAt","WEB_VITALS","used","fn","execOnce","isAbsoluteUrl","ABSOLUTE_URL_REGEX","href","location","hostname","getLocationOrigin","protocol","port","window","getDisplayName","Component","getURL","finished","origin","urlNoQuery","displayName","isResSent","headersSent","ctx","normalizeRepeatedSlashes","urlParts","loadGetInitialProps","App","getInitialProps","pageProps","props","SP","performance","ST","every","DecodeError","NormalizeError","PageNotFoundError","code","MissingStaticPage","MiddlewareNotFoundError","stringifyError","DEFAULT_MAX_POSTPONED_STATE_SIZE","DEFAULT_MAX_POSTPONED_STATE_SIZE_BYTES","parseSizeLimit","bytes","require","isNaN","parseMaxPostponedStateSize","INVALID_MAX_POSTPONED_STATE_SIZE_ERROR_MESSAGE","getMaxPostponedStateSize","configuredMaxPostponedStateSize","maxPostponedStateSize","maxPostponedStateSizeBytes","getPostponedStateExceededErrorMessage","toBuffer","chunk","Buffer","isBuffer","readBodyWithSizeLimit","body","maxBodySizeBytes","buffer","byteLength","vendored","ReactServerDOMTurbopackStatic","createClientModuleProxy","__turbopack_context__","React","Activity","Fragment","useContext","use","Suspense","useDeferredValue","useLayoutEffect","ReactDOM","LayoutRouterContext","GlobalLayoutRouterContext","TemplateContext","unresolvedThenable","ErrorBoundary","disableSmoothScrollDuringRouteTransition","RedirectBoundary","HTTPAccessFallbackBoundary","createRouterCacheKey","useRouterBFCache","NavigationPromisesContext","getParamValueFromCacheKey","isDeferredRsc","enableNewScrollHandler","__NEXT_APP_NEW_SCROLL_HANDLER","__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","findDOMNode","internal_reactDOMfindDOMNode","rectProperties","shouldSkipElement","element","getComputedStyle","position","rect","getBoundingClientRect","item","topOfElementInViewport","viewportHeight","rects","getClientRects","elementTop","POSITIVE_INFINITY","top","getHashFragmentDomNode","hashFragment","document","getElementById","getElementsByName","InnerScrollAndFocusHandlerOld","componentDidMount","handlePotentialScroll","componentDidUpdate","render","children","focusAndScrollRef","cacheNode","scrollRef","forceScroll","current","domNode","Element","HTMLElement","parentElement","localName","nextElementSibling","scrollIntoView","htmlElement","documentElement","clientHeight","scrollTop","dontForceLayout","onlyHashChange","focus","InnerScrollHandlerNew","childrenRef","useRef","activeElement","blur","ref","InnerScrollAndMaybeFocusHandler","ScrollAndMaybeFocusHandler","InnerLayoutRouter","tree","segmentPath","debugNameContext","maybeCacheNode","isActive","parentNavPromises","resolvedPrefetchRsc","prefetchRsc","rsc","resolvedRsc","unwrappedRsc","navigationPromises","createNestedLayoutNavigationPromises","Provider","parentTree","parentCacheNode","parentSegmentPath","parentParams","parentLoadingData","LoadingBoundaryProvider","loading","parentContext","LoadingBoundary","loadingRsc","loadingStyles","loadingScripts","OuterLayoutRouter","parallelRouterKey","errorStyles","errorScripts","templateStyles","templateScripts","template","notFound","forbidden","unauthorized","segmentViewBoundaries","parentTreeSegment","activeTree","maybeParentSlots","slots","maybeValidationBoundaryId","__NEXT_CACHE_COMPONENTS","InstantValidationBoundaryContext","activeSegment","activeCacheNode","activeStateKey","bfcacheEntry","stateKey","segmentBoundaryTriggerNode","segmentViewStateNode","SegmentBoundaryTriggerNode","SegmentViewStateNode","pagePrefix","paramCacheKey","paramValue","debugName","getBoundaryDebugNameFromSegment","childDebugNameContext","isVirtual","debugNameToDisplay","templateValue","errorComponent","RenderValidationBoundaryAtThisLevel","child","SegmentStateProvider","mode","next","isVirtualLayout","RenderFromTemplateContext","urlSearchParamsToParsedUrlQuery","SearchParamsContext","ClientPageRoot","serverProvidedParams","searchParams","layoutRouterContext","clientSearchParams","clientParams","createSearchParamsFromClient","createParamsFromClient","createRenderSearchParamsFromClient","createRenderParamsFromClient","ClientSegmentRoot","ReflectAdapter","receiver","deleteProperty","ActionDidNotRevalidate","ActionDidRevalidateStaticAndDynamic","ActionDidRevalidateDynamicOnly","useUntrackedPathname","HTTPAccessErrorStatus","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","isHTTPAccessFallbackError","warnOnce","MissingSlotContext","HTTPAccessFallbackErrorBoundary","state","triggeredStatus","previousPathname","componentDidCatch","missingSlots","warningMessage","formattedSlots","sort","localeCompare","slot","getDerivedStateFromError","httpStatus","getDerivedStateFromProps","errorComponents","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","isNotFound","isForbidden","isUnauthorized","content","hasErrorFallback","METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","NameSpace","MetadataBoundary","ViewportBoundary","OutletBoundary","RootLayoutBoundary","IconMark","util","decoderOptions","stream","resolveClientReference","bundlerConfig","moduleExports","resolveServerReference","resolvedModuleData","idx","lastIndexOf","requireAsyncModule","__next_require__","status","reason","instrumentedChunks","WeakSet","loadedChunks","ignoreReject","preloadModule","promises","thenable","__next_chunk_load__","requireModule","__esModule","prepareDestinationWithChunks","moduleLoading","nonce$jscomp$0","nonce","JSCompiler_temp_const","ReactDOMSharedInternals","JSCompiler_temp_const$jscomp$0","X","JSCompiler_temp_const$jscomp$1","JSCompiler_inline_result","crossOrigin","REACT_ELEMENT_TYPE","REACT_LAZY_TYPE","MAYBE_ITERATOR_SYMBOL","getIteratorFn","maybeIterable","ASYNC_ITERATOR","asyncIterator","isArrayImpl","getPrototypeOf","ObjectPrototype","knownServerReferences","WeakMap","serializeNumber","number","isFinite","Infinity","processReply","formFieldPrefix","temporaryReferences","serializeTypedArray","tag","typedArray","Blob","byteOffset","blobId","nextPartId","formData","FormData","serializeBinaryReader","reader","progress","done","data","streamId","pendingParts","read","serializeReader","partJSON","resolveToJSON","x","serializeReadableStream","binaryReader","getReader","serializeAsyncIterable","iterable","partJSON$21","x$22","$$typeof","parentReference","writtenObjects","modelRoot","_payload","init","_init","resolvedModel","lazyId","serializeModel","lazyId$23","partJSON$24","data$25","promiseId","partValue","previousReference","partJSON$27","data$31","forEach","originalValue","originalKey","ArrayBuffer","Int8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","BigInt64Array","BigUint64Array","DataView","ReadableStream","bound","model","json","boundCache","encodeFormData","reference","defaultEncodeFormAction","identifierPrefix","referenceClosure","prefixedData","encType","isSignatureEqual","referenceId","numberOfBoundArgs","boundPromise","boundArgs","registerBoundServerReference","encodeFormAction","originalBind","defineProperties","$$FORM_ACTION","$$IS_SIGNATURE_EQUAL","FunctionBind","Function","ArraySlice","newFn","createBoundServerReference","metaData","callServer","action","createServerReference$1","ReactPromise","initializeModelChunk","initializeModuleChunk","readChunk","createPendingChunk","wakeChunk","response","listeners","listener","fulfillReference","rejectChunk","rejectReference","resolveBlockedCycle","resolvedChunk","referencedChunk","wakeChunkIfInitialized","resolveListeners","rejectListeners","cyclicHandler","splice","triggerErrorOnChunk","createResolvedIteratorResultChunk","resolveIteratorResultChunk","resolveModelChunk","enqueueModel","resolveModuleChunk","initializingHandler","prevHandler","parseModel","errored","deps","reportGlobalError","weakResponse","_closed","_closedReason","_chunks","createLazyChunkWrapper","getChunk","_allowPartialStream","parentObject","referencedChunk$44","mappedValue","waitForReference","parent","loadServerReference","_serverReferenceConfig","_callServer","_encodeFormAction","serverReference","resolvedValue","getOutlinedModel","parseInt","createMap","createSet","createBlob","createFormData","extractIterator","createModel","parseModelString","_tempRefs","resolveErrorProd","BigInt","missingCall","ResponseInstance","serverReferenceConfig","allowPartialStream","_bundlerConfig","_moduleLoading","_nonce","_stringDecoder","TextDecoder","createStreamState","_rowState","_rowID","_rowTag","_rowLength","_buffer","resolveBuffer","enqueueValue","resolveModule","clientReference","blockedChunk","resolveStream","controller","startReadableStream","closed","previousBlockedChunk","enqueue","chunk$55","createIterator","startAsyncIterable","nextWriteIndex","nextReadIndex","arg","mergeBuffer","lastChunk","i$56","resolveTypedArray","bytesPerElement","processFullBinaryRow","streamState","stringDecoder","row","decode","processFullStringRow","D","L","M","digest","processBinaryChunk","rowState","rowID","rowTag","rowLength","chunkLength","lastIdx","offset","reviveModel","noServerCall$1","createResponseFromOptions","serverConsumerManifest","moduleMap","unstable_allowPartialStream","startReadingFromStream$1","onDone","_ref","catch","noServerCall","startReadingFromStream","onEnd","on","createFromFetch","promiseForResponse","createFromNodeStream","createFromReadableStream","createServerReference","createTemporaryReferenceSet","encodeReply","abort","signal","aborted","removeEventListener","addEventListener","registerServerReference","createSegmentVaryParamsAccumulator","accumulator","varyParams","onfulfilled","resolvers","emptySet","createResponseVaryParamsAccumulator","rootParams","workUnitStore","head","emptyVaryParamsAccumulator","responseAccumulator","createVaryParamsAccumulator","varyParamsAccumulator","getMetadataVaryParamsAccumulator","getRootParamsVaryParamsAccumulator","getVaryParamsThenable","getViewportVaryParamsAccumulator","accumulateRootVaryParam","optionalCatchAllParamName","getMetadataVaryParamsThenable","accumulateVaryParam","ownKeys","underlyingSearchParamsWithVarying","underlyingParamsWithVarying","rootParamsAccumulator","rootVaryParams","createVaryingParams","originalParamsObject","finishSegmentAccumulator","createVaryingSearchParams","originalSearchParamsObject","merged","searchParamName","finishAccumulatingVaryParams","segmentAccumulator","resolver"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,85,87,89,91,92,93,94,95,96,97,98,99,100,102,103,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_0h9llsw._.js b/.next/server/chunks/ssr/node_modules_next_dist_0h9llsw._.js new file mode 100644 index 0000000..9b130a1 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_0h9llsw._.js @@ -0,0 +1,6 @@ +module.exports=[57516,a=>{"use strict";let b={NOT_FOUND:404,FORBIDDEN:403,UNAUTHORIZED:401},c=new Set(Object.values(b));a.s(["HTTPAccessErrorStatus",0,b,"getAccessFallbackErrorTypeByStatus",0,function(a){switch(a){case 401:return"unauthorized";case 403:return"forbidden";case 404:return"not-found";default:return}},"getAccessFallbackHTTPStatus",0,function(a){return Number(a.digest.split(";")[1])},"isHTTPAccessFallbackError",0,function(a){if("object"!=typeof a||null===a||!("digest"in a)||"string"!=typeof a.digest)return!1;let[b,d]=a.digest.split(";");return"NEXT_HTTP_ERROR_FALLBACK"===b&&c.has(Number(d))}])},66574,87375,a=>{"use strict";var b,c=a.i(57516),d=((b={})[b.SeeOther=303]="SeeOther",b[b.TemporaryRedirect=307]="TemporaryRedirect",b[b.PermanentRedirect=308]="PermanentRedirect",b);function e(a){if("object"!=typeof a||null===a||!("digest"in a)||"string"!=typeof a.digest)return!1;let b=a.digest.split(";"),[c,e]=b,f=b.slice(2,-2).join(";"),g=Number(b.at(-2));return"NEXT_REDIRECT"===c&&("replace"===e||"push"===e)&&"string"==typeof f&&!isNaN(g)&&g in d}a.s(["isRedirectError",0,e],87375),a.s(["isNextRouterError",0,function(a){return e(a)||(0,c.isHTTPAccessFallbackError)(a)}],66574)},28535,a=>{"use strict";a.s(["InvariantError",0,class extends Error{constructor(a,b){super(`Invariant: ${a.endsWith(".")?a:a+"."} This is a bug in Next.js.`,b),this.name="InvariantError"}}])},92397,a=>{"use strict";a.s(["createPromiseWithResolvers",0,function(){let a,b,c=new Promise((c,d)=>{a=c,b=d});return{resolve:a,reject:b,promise:c}}])},27325,a=>{"use strict";a.s(["METADATA_BOUNDARY_NAME",0,"__next_metadata_boundary__","OUTLET_BOUNDARY_NAME",0,"__next_outlet_boundary__","ROOT_LAYOUT_BOUNDARY_NAME",0,"__next_root_layout_boundary__","VIEWPORT_BOUNDARY_NAME",0,"__next_viewport_boundary__"])},24970,53883,28734,66119,92307,64573,a=>{"use strict";var b,c,d,e=a.i(72131);let f="DYNAMIC_SERVER_USAGE";class g extends Error{constructor(a){super(`Dynamic server usage: ${a}`),this.description=a,this.digest=f}}a.s(["DynamicServerError",0,g,"isDynamicServerError",0,function(a){return"object"==typeof a&&null!==a&&"digest"in a&&"string"==typeof a.digest&&a.digest===f}],53883);class h extends Error{constructor(...a){super(...a),this.code="NEXT_STATIC_GEN_BAILOUT"}}a.s(["StaticGenBailoutError",0,h],28734);var i=a.i(32319),j=a.i(56704),k=a.i(28535);a.i(92397);var l=((b={})[b.Before=1]="Before",b[b.EarlyStatic=2]="EarlyStatic",b[b.Static=3]="Static",b[b.EarlyRuntime=4]="EarlyRuntime",b[b.Runtime=5]="Runtime",b[b.Dynamic=6]="Dynamic",b[b.Abandoned=7]="Abandoned",b);a.s(["RenderStage",0,l],66119);let m="HANGING_PROMISE_REJECTION";class n extends Error{constructor(a,b){super(`During prerendering, ${b} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${b} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${a}".`),this.route=a,this.expression=b,this.digest=m}}let o=new WeakMap;function p(a,b,c){if(a.aborted)return Promise.reject(new n(b,c));{let d=new Promise((d,e)=>{let f=e.bind(null,new n(b,c)),g=o.get(a);if(g)g.push(f);else{let b=[f];o.set(a,b),a.addEventListener("abort",()=>{for(let a=0;a{setTimeout(()=>{b(a)},0)})},"makeHangingPromise",0,p],92307);var s=a.i(27325);let t=a=>{Promise.resolve().then(()=>{process.nextTick(a)})},u="BAILOUT_TO_CLIENT_SIDE_RENDERING";class v extends Error{constructor(a){super(`Bail out to client-side rendering: ${a}`),this.reason=a,this.digest=u}}a.s(["BailoutToCSRError",0,v,"isBailoutToCSRError",0,function(a){return"object"==typeof a&&null!==a&&"digest"in a&&a.digest===u}],64573);let w="function"==typeof e.default.unstable_postpone;function x(a,b,c){let d=C(`Route ${a} needs to bail out of prerendering at this point because it used ${b}.`);c.controller.abort(d);let e=c.dynamicTracking;e&&e.dynamicAccesses.push({stack:e.isDebugDynamicAccesses?Error().stack:void 0,expression:b})}function y(a,b,c){(function(){if(!w)throw Object.defineProperty(Error("Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E224",enumerable:!1,configurable:!0})})(),c&&c.dynamicAccesses.push({stack:c.isDebugDynamicAccesses?Error().stack:void 0,expression:b}),e.default.unstable_postpone(z(a,b))}function z(a,b){return`Route ${a} needs to bail out of prerendering at this point because it used ${b}. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`}function A(a){return a.includes("needs to bail out of prerendering at this point because it used")&&a.includes("Learn more: https://nextjs.org/docs/messages/ppr-caught-error")}if(!1===A(z("%%%","^^^")))throw Object.defineProperty(Error("Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E296",enumerable:!1,configurable:!0});let B="NEXT_PRERENDER_INTERRUPTED";function C(a){let b=Object.defineProperty(Error(a),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});return b.digest=B,b}let D=/\n\s+at Suspense \(\)/,E=RegExp(`\\n\\s+at Suspense \\(\\)(?:(?!\\n\\s+at (?:body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6) \\(\\))[\\s\\S])*?\\n\\s+at ${s.ROOT_LAYOUT_BOUNDARY_NAME} \\([^\\n]*\\)`),F=RegExp(`\\n\\s+at ${s.METADATA_BOUNDARY_NAME}[\\n\\s]`),G=RegExp(`\\n\\s+at ${s.VIEWPORT_BOUNDARY_NAME}[\\n\\s]`),H=RegExp(`\\n\\s+at ${s.OUTLET_BOUNDARY_NAME}[\\n\\s]`),I=RegExp("\\n\\s+at __next_instant_validation_boundary__[\\n\\s]");var J=((c={})[c.Runtime=1]="Runtime",c[c.Dynamic=2]="Dynamic",c);function K(a,b,c){return null!==c&&(a.cause=c()),a.stack=a.name+": "+a.message+b,a}var L=((d={})[d.Full=0]="Full",d[d.Empty=1]="Empty",d[d.Errored=2]="Errored",d);function M(a,b){console.error(b),console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: + - Start the app in development mode by running \`next dev\`, then open "${a.route}" in your browser to investigate the error. + - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`)}a.s(["DynamicHoleKind",0,J,"Postpone",0,function({reason:a,route:b}){let c=i.workUnitAsyncStorage.getStore();y(b,a,c&&"prerender-ppr"===c.type?c.dynamicTracking:null)},"PreludeState",0,L,"abortAndThrowOnSynchronousRequestDataAccess",0,function(a,b,c,d){if(!1===d.controller.signal.aborted){x(a,b,d);let e=d.dynamicTracking;e&&null===e.syncDynamicErrorWithStack&&(e.syncDynamicErrorWithStack=c)}throw C(`Route ${a} needs to bail out of prerendering at this point because it used ${b}.`)},"abortOnSynchronousPlatformIOAccess",0,function(a,b,c,d){let e=d.dynamicTracking;x(a,b,d),e&&null===e.syncDynamicErrorWithStack&&(e.syncDynamicErrorWithStack=c)},"accessedDynamicData",0,function(a){return a.length>0},"annotateDynamicAccess",0,function(a,b){let c=b.dynamicTracking;c&&c.dynamicAccesses.push({stack:c.isDebugDynamicAccesses?Error().stack:void 0,expression:a})},"consumeDynamicAccess",0,function(a,b){return a.dynamicAccesses.push(...b.dynamicAccesses),a.dynamicAccesses},"createDynamicTrackingState",0,function(a){return{isDebugDynamicAccesses:a,dynamicAccesses:[],syncDynamicErrorWithStack:null}},"createDynamicValidationState",0,function(){return{hasSuspenseAboveBody:!1,hasDynamicMetadata:!1,dynamicMetadata:null,hasDynamicViewport:!1,hasAllowedDynamic:!1,dynamicErrors:[]}},"createHangingInputAbortSignal",0,function(a){switch(a.type){case"prerender":case"prerender-runtime":let b=new AbortController;if(a.cacheSignal)a.cacheSignal.inputReady().then(()=>{b.abort()});else if("prerender-runtime"===a.type&&a.stagedRendering){let{stagedRendering:c}=a;c.waitForStage(r(c)).then(()=>t(()=>b.abort()))}else t(()=>b.abort());return b.signal;case"prerender-client":case"validation-client":case"prerender-ppr":case"prerender-legacy":case"request":case"cache":case"private-cache":case"unstable-cache":case"generate-static-params":return}},"createInstantValidationState",0,function(a){return{hasDynamicMetadata:!1,hasAllowedClientDynamicAboveBoundary:!1,dynamicMetadata:null,hasDynamicViewport:!1,hasAllowedDynamic:!1,dynamicErrors:[],validationPreventingErrors:[],thrownErrorsOutsideBoundary:[],createInstantStack:a}},"createRenderInBrowserAbortSignal",0,function(){let a=new AbortController;return a.abort(Object.defineProperty(new v("Render in Browser"),"__NEXT_ERROR_CODE",{value:"E721",enumerable:!1,configurable:!0})),a.signal},"formatDynamicAPIAccesses",0,function(a){return a.filter(a=>"string"==typeof a.stack&&a.stack.length>0).map(({expression:a,stack:b})=>(b=b.split("\n").slice(4).filter(a=>!(a.includes("node_modules/next/")||a.includes(" ()")||a.includes(" (node:"))).join("\n"),`Dynamic API Usage Debug - ${a}: +${b}`))},"getFirstDynamicReason",0,function(a){var b;return null==(b=a.dynamicAccesses[0])?void 0:b.expression},"getNavigationDisallowedDynamicReasons",0,function(a,b,c,d,e){if(d){let{missingSampleErrors:a}=d;if(a.length>0)return a}let{validationPreventingErrors:f}=c;if(f.length>0)return f;if(e.renderedIds.size0)return d;if(1===b)return c.hasAllowedClientDynamicAboveBoundary?[]:[Object.defineProperty(new k.InvariantError(`Route "${a.route}" failed to render during instant validation and Next.js was unable to determine a reason.`),"__NEXT_ERROR_CODE",{value:"E1055",enumerable:!1,configurable:!0})]}else{let a=c.dynamicErrors;if(a.length>0)return a;if(!1===c.hasAllowedDynamic&&c.dynamicMetadata)return[c.dynamicMetadata]}return[]},"getStaticShellDisallowedDynamicReasons",0,function(a,b,c,d){if(d||c.hasSuspenseAboveBody)return[];if(0!==b){let d=c.dynamicErrors;if(d.length>0)return d;if(1===b)return[Object.defineProperty(new k.InvariantError(`Route "${a.route}" did not produce a static shell and Next.js was unable to determine a reason.`),"__NEXT_ERROR_CODE",{value:"E936",enumerable:!1,configurable:!0})]}else if(!1===c.hasAllowedDynamic&&0===c.dynamicErrors.length&&c.dynamicMetadata)return[c.dynamicMetadata];return[]},"isDynamicPostpone",0,function(a){return"object"==typeof a&&null!==a&&"string"==typeof a.message&&A(a.message)},"isPrerenderInterruptedError",0,function(a){return"object"==typeof a&&null!==a&&a.digest===B&&"name"in a&&"message"in a&&a instanceof Error},"logDisallowedDynamicError",0,M,"markCurrentScopeAsDynamic",0,function(a,b,c){if(b)switch(b.type){case"cache":case"unstable-cache":case"private-cache":return}if(!a.forceDynamic&&!a.forceStatic){if(a.dynamicShouldError)throw Object.defineProperty(new h(`Route ${a.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${c}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E553",enumerable:!1,configurable:!0});if(b)switch(b.type){case"prerender-ppr":return y(a.route,c,b.dynamicTracking);case"prerender-legacy":b.revalidate=0;let d=Object.defineProperty(new g(`Route ${a.route} couldn't be rendered statically because it used ${c}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E550",enumerable:!1,configurable:!0});throw a.dynamicUsageDescription=c,a.dynamicUsageStack=d.stack,d}}},"postponeWithTracking",0,y,"throwIfDisallowedDynamic",0,function(a,b,c,d){if(d.syncDynamicErrorWithStack)throw M(a,d.syncDynamicErrorWithStack),new h;if(0!==b){if(c.hasSuspenseAboveBody)return;let d=c.dynamicErrors;if(d.length>0){for(let b=0;b. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1079",enumerable:!1,configurable:!0}),b,null);return void c.dynamicErrors.push(e)}}},"trackDynamicDataInDynamicRender",0,function(a){switch(a.type){case"cache":case"unstable-cache":case"private-cache":return}},"trackDynamicHoleInNavigation",0,function(a,b,c,d,e,f){if(H.test(b))return;if(F.test(b)){let d=K(Object.defineProperty(Error(`Route "${a.route}": ${1===e?"Runtime data such as `cookies()`, `headers()`, `params`, or `searchParams` was accessed inside `generateMetadata` or you have file-based metadata such as icons that depend on dynamic params segments.":"Uncached data or `connection()` was accessed inside `generateMetadata`."} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1076",enumerable:!1,configurable:!0}),b,c.createInstantStack);c.dynamicMetadata=d;return}if(G.test(b)){let d=K(Object.defineProperty(Error(`Route "${a.route}": ${1===e?"Runtime data such as `cookies()`, `headers()`, `params`, or `searchParams` was accessed inside `generateViewport`.":"Uncached data or `connection()` was accessed inside `generateViewport`."} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1086",enumerable:!1,configurable:!0}),b,c.createInstantStack);c.dynamicErrors.push(d);return}let g=I.exec(b);if(g){let a=D.exec(b);if(a&&a.index`.":"Uncached data or `connection()` was accessed outside of ``."} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1078",enumerable:!1,configurable:!0}),b,c.createInstantStack);c.dynamicErrors.push(h)},"trackDynamicHoleInRuntimeShell",0,function(a,b,c,d){if(H.test(b))return;if(F.test(b)){c.dynamicMetadata=K(Object.defineProperty(Error(`Route "${a.route}": Uncached data or \`connection()\` was accessed inside \`generateMetadata\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1080",enumerable:!1,configurable:!0}),b,null);return}if(G.test(b)){let d=K(Object.defineProperty(Error(`Route "${a.route}": Uncached data or \`connection()\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1077",enumerable:!1,configurable:!0}),b,null);c.dynamicErrors.push(d);return}if(E.test(b)){c.hasAllowedDynamic=!0,c.hasSuspenseAboveBody=!0;return}if(D.test(b)){c.hasAllowedDynamic=!0;return}else if(d.syncDynamicErrorWithStack)return void c.dynamicErrors.push(d.syncDynamicErrorWithStack);let e=K(Object.defineProperty(Error(`Route "${a.route}": Uncached data or \`connection()\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1084",enumerable:!1,configurable:!0}),b,null);c.dynamicErrors.push(e)},"trackDynamicHoleInStaticShell",0,function(a,b,c,d){if(!H.test(b)){if(F.test(b)){c.dynamicMetadata=K(Object.defineProperty(Error(`Route "${a.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1085",enumerable:!1,configurable:!0}),b,null);return}if(G.test(b)){let d=K(Object.defineProperty(Error(`Route "${a.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1081",enumerable:!1,configurable:!0}),b,null);c.dynamicErrors.push(d);return}if(E.test(b)){c.hasAllowedDynamic=!0,c.hasSuspenseAboveBody=!0;return}else if(D.test(b)){c.hasAllowedDynamic=!0;return}else{if(d.syncDynamicErrorWithStack)return void c.dynamicErrors.push(d.syncDynamicErrorWithStack);let e=K(Object.defineProperty(Error(`Route "${a.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1083",enumerable:!1,configurable:!0}),b,null);return void c.dynamicErrors.push(e)}}},"trackThrownErrorInNavigation",0,function(a,b,c,d){let e=I.exec(d);if(e){let f=D.exec(d);if(f&&f.index0&&e.default.use(p(c.renderSignal,b.route,a));break}case"prerender-ppr":{let d=c.fallbackRouteParams;if(d&&d.size>0)return y(b.route,a,c.dynamicTracking);break}case"validation-client":case"prerender-legacy":case"request":case"unstable-cache":break;case"prerender-runtime":throw Object.defineProperty(new k.InvariantError(`\`${a}\` was called during a runtime prerender. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E771",enumerable:!1,configurable:!0});case"cache":case"private-cache":throw Object.defineProperty(new k.InvariantError(`\`${a}\` was called inside a cache scope. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E745",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new k.InvariantError(`\`${a}\` was called in \`generateStaticParams\`. Next.js should be preventing ${a} from being included in server component files statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E1130",enumerable:!1,configurable:!0})}},"useDynamicSearchParams",0,function(a){let b=j.workAsyncStorage.getStore(),c=i.workUnitAsyncStorage.getStore();if(b)switch(!c&&(0,i.throwForMissingRequestStore)(a),c.type){case"validation-client":case"request":return;case"prerender-client":e.default.use(p(c.renderSignal,b.route,a));break;case"prerender-legacy":case"prerender-ppr":if(b.forceStatic)return;throw Object.defineProperty(new v(a),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});case"prerender":case"prerender-runtime":throw Object.defineProperty(new k.InvariantError(`\`${a}\` was called from a Server Component. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E795",enumerable:!1,configurable:!0});case"cache":case"unstable-cache":case"private-cache":throw Object.defineProperty(new k.InvariantError(`\`${a}\` was called inside a cache scope. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E745",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new k.InvariantError(`\`${a}\` was called in \`generateStaticParams\`. Next.js should be preventing ${a} from being included in server component files statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E1130",enumerable:!1,configurable:!0})}}],24970)},29594,a=>{"use strict";var b=a.i(92307);let c=Symbol.for("react.postpone");var d=a.i(64573),e=a.i(66574),f=a.i(24970),g=a.i(53883);a.s(["unstable_rethrow",0,function a(h){if((0,e.isNextRouterError)(h)||(0,d.isBailoutToCSRError)(h)||(0,g.isDynamicServerError)(h)||(0,f.isDynamicPostpone)(h)||"object"==typeof h&&null!==h&&h.$$typeof===c||(0,b.isHangingPromiseRejectionError)(h)||(0,f.isPrerenderInterruptedError)(h))throw h;h instanceof Error&&"cause"in h&&a(h.cause)}],29594)},61660,14290,1303,a=>{"use strict";var b=a.i(87924),c=a.i(72131),d=a.i(36313);function e(){return!function(){{let{workUnitAsyncStorage:b}=a.r(32319),c=b.getStore();if(!c)return!1;switch(c.type){case"prerender":case"prerender-client":case"prerender-ppr":case"validation-client":let d=c.fallbackRouteParams;return!!d&&d.size>0}return!1}}()?(0,c.useContext)(d.PathnameContext):null}a.s(["useUntrackedPathname",0,e],14290);var f=a.i(57516);a.s([],1303);var g=a.i(9270);class h extends c.default.Component{constructor(a){super(a),this.state={triggeredStatus:void 0,previousPathname:a.pathname}}componentDidCatch(){}static getDerivedStateFromError(a){if((0,f.isHTTPAccessFallbackError)(a))return{triggeredStatus:(0,f.getAccessFallbackHTTPStatus)(a)};throw a}static getDerivedStateFromProps(a,b){return a.pathname!==b.previousPathname&&b.triggeredStatus?{triggeredStatus:void 0,previousPathname:a.pathname}:{triggeredStatus:b.triggeredStatus,previousPathname:a.pathname}}render(){let{notFound:a,forbidden:c,unauthorized:d,children:e}=this.props,{triggeredStatus:g}=this.state,h={[f.HTTPAccessErrorStatus.NOT_FOUND]:a,[f.HTTPAccessErrorStatus.FORBIDDEN]:c,[f.HTTPAccessErrorStatus.UNAUTHORIZED]:d};if(g){let i=g===f.HTTPAccessErrorStatus.NOT_FOUND&&a,j=g===f.HTTPAccessErrorStatus.FORBIDDEN&&c,k=g===f.HTTPAccessErrorStatus.UNAUTHORIZED&&d;return i||j||k?(0,b.jsxs)(b.Fragment,{children:[(0,b.jsx)("meta",{name:"robots",content:"noindex"}),!1,h[g]]}):e}return e}}a.s(["HTTPAccessFallbackBoundary",0,function({notFound:a,forbidden:d,unauthorized:f,children:i}){let j=e(),k=(0,c.useContext)(g.MissingSlotContext);return a||d||f?(0,b.jsx)(h,{pathname:j,notFound:a,forbidden:d,unauthorized:f,missingSlots:k,children:i}):(0,b.jsx)(b.Fragment,{children:i})}],61660)},51040,a=>{"use strict";a.s(["NEXT_DID_POSTPONE_HEADER",0,"x-nextjs-postponed","NEXT_INSTANT_TEST_COOKIE",0,"next-instant-navigation-testing","NEXT_REWRITTEN_PATH_HEADER",0,"x-nextjs-rewritten-path","NEXT_REWRITTEN_QUERY_HEADER",0,"x-nextjs-rewritten-query","NEXT_ROUTER_PREFETCH_HEADER",0,"next-router-prefetch","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER",0,"next-router-segment-prefetch","NEXT_ROUTER_STALE_TIME_HEADER",0,"x-nextjs-stale-time","NEXT_ROUTER_STATE_TREE_HEADER",0,"next-router-state-tree","NEXT_RSC_UNION_QUERY",0,"_rsc","NEXT_URL",0,"next-url","RSC_CONTENT_TYPE_HEADER",0,"text/x-component","RSC_HEADER",0,"rsc"])},60805,27062,76784,a=>{"use strict";function b(a,b){if(a.includes(c)){let a=JSON.stringify(b);return"{}"!==a?c+"?"+a:c}return a}let c="__PAGE__",d="__DEFAULT__";a.s(["DEFAULT_SEGMENT_KEY",0,d,"PAGE_SEGMENT_KEY",0,c,"addSearchParamsIfPageSegment",0,b],27062);let e=/^[a-zA-Z0-9\-_@]+$/;function f(a){return e.test(a)?a:"!"+btoa(a).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")}a.s(["HEAD_REQUEST_KEY",0,"/_head","ROOT_SEGMENT_REQUEST_KEY",0,"","appendSegmentRequestKeyPart",0,function(a,b,c){return a+"/"+("children"===b?c:`@${f(b)}/${c}`)},"createSegmentRequestKeyPart",0,function(a){if("string"==typeof a)return a.startsWith(c)?c:"/_not-found"===a?"_not-found":f(a);let b=a[0];return"$"+a[2]+"$"+f(b)}],76784);var g=a.i(51040);function h(a){try{return encodeURIComponent(decodeURIComponent(a))}catch{return a}}function i(a){let b=new URL(a);return b.searchParams.delete(g.NEXT_RSC_UNION_QUERY),b}a.s(["doesStaticSegmentAppearInURL",0,function(a){return!(""===a||a.startsWith(c)||"("===a[0]&&a.endsWith(")"))&&a!==d&&"/_not-found"!==a},"getCacheKeyForDynamicParam",0,function(a,c){return"string"==typeof a?b(a,Object.fromEntries(new URLSearchParams(c))):null===a?"":a.join("/")},"getParamValueFromCacheKey",0,function(a,b){return"c"===b||"oc"===b?a.split("/"):a},"getRenderedPathname",0,function(a){return a.headers.get(g.NEXT_REWRITTEN_PATH_HEADER)??i(new URL(a.url)).pathname},"getRenderedSearch",0,function(a){let b=a.headers.get(g.NEXT_REWRITTEN_QUERY_HEADER);return null!==b?""===b?"":"?"+b:i(new URL(a.url)).search},"parseDynamicParamFromURLPart",0,function(a,b,c){switch(a){case"c":return ch(a)):[];case"ci(..)(..)":case"ci(.)":case"ci(..)":case"ci(...)":{let d=a.length-2;return c0===b?h(a.slice(d)):h(a)):[]}case"oc":return ch(a)):null;case"d":if(c>=b.length)return"";return h(b[c]);case"di(..)(..)":case"di(.)":case"di(..)":case"di(...)":{let d=a.length-2;if(c>=b.length)return"";return h(b[c].slice(d))}default:return""}},"urlSearchParamsToParsedUrlQuery",0,function(a){let b={};for(let[c,d]of a.entries())void 0===b[c]?b[c]=d:Array.isArray(b[c])?b[c].push(d):b[c]=[b[c],d];return b}],60805)},6634,a=>{"use strict";a.i(72131),a.s(["dispatchAppRouterAction",0,function(a){throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0})}])},96659,a=>{"use strict";async function b(){}a.i(51040),a.i(6634),a.s(["isNavigationLocked",0,function(){return!1},"startListeningForInstantNavigationCookie",0,function(){},"transitionToCapturedSPA",0,function(a,b){},"updateCapturedSPAToTree",0,function(a,b){},"waitForNavigationLockIfActive",0,b])},2420,a=>{"use strict";var b,c,d=a.i(87924),e=a.i(72131),f=a.i(35112),g=a.i(9270);let h={then:()=>{}};var i=e,j=a.i(14290),k=a.i(66574);let l=a.r(56704).workAsyncStorage;/[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i.source;class m extends i.default.Component{static{this.contextType=g.AppRouterContext}constructor(a){super(a),this.reset=()=>{this.setState({error:null})},this.unstable_retry=()=>{(0,i.startTransition)(()=>{this.context?.refresh(),this.reset()})},this.state={error:null,previousPathname:this.props.pathname}}static getDerivedStateFromError(a){if((0,k.isNextRouterError)(a))throw a;return{error:a}}static getDerivedStateFromProps(a,b){let{error:c}=b;return a.pathname!==b.previousPathname&&b.error?{error:null,previousPathname:a.pathname}:{error:b.error,previousPathname:a.pathname}}render(){return this.state.error&&1?(!function({error:a}){if(l){let b=l.getStore();if(b?.isStaticGeneration)throw a&&console.error(a),a}}({error:this.state.error}),(0,d.jsxs)(d.Fragment,{children:[this.props.errorStyles,this.props.errorScripts,(0,d.jsx)(this.props.errorComponent,{error:this.state.error,reset:this.reset,unstable_retry:this.unstable_retry})]})):this.props.children}}function n({errorComponent:a,errorStyles:b,errorScripts:c,children:e}){let f=(0,j.useUntrackedPathname)();return a?(0,d.jsx)(m,{pathname:f,errorComponent:a,errorStyles:b,errorScripts:c,children:e}):(0,d.jsx)(d.Fragment,{children:e})}a.i(1303);var o=e,p=a.i(36313);a.i(18341);URLSearchParams;var q=a.i(87375);a.r(20635).actionAsyncStorage,a.r(29594).unstable_rethrow,a.r(24970).useDynamicRouteParams,a.r(24970).useDynamicSearchParams;let{instrumentParamsForClientValidation:r,instrumentSearchParamsForClientValidation:s,expectCompleteParamsInClientValidation:t}={};function u(){let a=(0,e.useContext)(g.AppRouterContext);if(null===a)throw Object.defineProperty(Error("invariant expected app router to be mounted"),"__NEXT_ERROR_CODE",{value:"E238",enumerable:!1,configurable:!0});return a}function v({redirect:a,reset:b,redirectType:c}){let d=u();return(0,o.useEffect)(()=>{o.default.startTransition(()=>{"push"===c?d.push(a,{}):d.replace(a,{}),b()})},[a,c,b,d]),null}class w extends o.default.Component{constructor(a){super(a),this.state={redirect:null,redirectType:null}}static getDerivedStateFromError(a){if((0,q.isRedirectError)(a)){let b=(0,q.isRedirectError)(a)?a.digest.split(";").slice(2,-2).join(";"):null,c=function(a){if(!(0,q.isRedirectError)(a))throw Object.defineProperty(Error("Not a redirect error"),"__NEXT_ERROR_CODE",{value:"E260",enumerable:!1,configurable:!0});return a.digest.split(";",2)[1]}(a);return"handled"in a?{redirect:null,redirectType:null}:{redirect:b,redirectType:c}}throw a}render(){let{redirect:a,redirectType:b}=this.state;return null!==a&&null!==b?(0,d.jsx)(v,{redirect:a,redirectType:b,reset:()=>this.setState({redirect:null})}):this.props.children}}function x({children:a}){let b=u();return(0,d.jsx)(w,{router:b,children:a})}var y=a.i(61660),z=a.i(27062),A=a.i(60805),B=a.i(38783);a.i(51040),a.i(6634),new TextEncoder;var C=((c={})[c.Intent=2]="Intent",c[c.Default=1]="Default",c[c.Background=0]="Background",c);function D(){return{parent:null,key:null,value:null,map:null,prev:null,next:null,size:0}}"function"==typeof queueMicrotask&&queueMicrotask,a.i(76784);let E="function"==typeof WeakMap?new WeakMap:new Map,F=new Set;"function"==typeof IntersectionObserver&&new IntersectionObserver(function(a){for(let b of a){let a=b.intersectionRatio>0;!function(a,b){let c=E.get(a);void 0!==c&&(c.isVisible=b,b?F.add(c):F.delete(c),C.Default)}(b.target,a)}},{rootMargin:"200px"}),D(),b=Number("300"),a.i(92397);let G={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"};({...G,GROUP:{builtinReact:[G.reactServerComponents,G.actionBrowser],serverOnly:[G.reactServerComponents,G.actionBrowser,G.instrument,G.middleware],neutralTarget:[G.apiNode,G.apiEdge],clientOnly:[G.serverSideRendering,G.appPagesBrowser],bundled:[G.reactServerComponents,G.actionBrowser,G.serverSideRendering,G.appPagesBrowser,G.shared,G.instrument,G.middleware],appPages:[G.reactServerComponents,G.serverSideRendering,G.appPagesBrowser,G.actionBrowser]}}),D(),D(),B.createFromReadableStream,B.createFromFetch;let H=Symbol();f.default.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;let I=["bottom","height","left","right","top","width","x","y"];function J(a,b){let c=a.getClientRects();if(0===c.length)return!1;let d=1/0;for(let a=0;a=0&&d<=b}class K extends e.default.Component{componentDidMount(){this.handlePotentialScroll()}componentDidUpdate(){this.handlePotentialScroll()}render(){return this.props.children}constructor(...a){super(...a),this.handlePotentialScroll=()=>{let{focusAndScrollRef:a,cacheNode:b}=this.props,c=a.forceScroll?a.scrollRef:b.scrollRef;if(null===c||!c.current)return;let d=null,e=a.hashFragment;if(e&&(d="top"===e?document.body:document.getElementById(e)??document.getElementsByName(e)[0]),d||(d=null),d instanceof Element){for(;!(d instanceof HTMLElement)||function(a){if(["sticky","fixed"].includes(getComputedStyle(a).position))return!0;let b=a.getBoundingClientRect();return I.every(a=>0===b[a])}(d);){if(null===d.nextElementSibling)return;d=d.nextElementSibling}c.current=!1,function(a,b={}){if(b.onlyHashChange)return a();let c=document.documentElement;if("smooth"!==c.dataset.scrollBehavior)return a();let d=c.style.scrollBehavior;c.style.scrollBehavior="auto",b.dontForceLayout||c.getClientRects(),a(),c.style.scrollBehavior=d}(()=>{if(e)return void d.scrollIntoView();let a=document.documentElement,b=a.clientHeight;!J(d,b)&&(a.scrollTop=0,J(d,b)||d.scrollIntoView())},{dontForceLayout:!0,onlyHashChange:a.onlyHashChange}),a.onlyHashChange=!1,a.hashFragment=null,d.focus()}}}}function L({children:a,cacheNode:b}){let c=(0,e.useContext)(g.GlobalLayoutRouterContext);if(!c)throw Object.defineProperty(Error("invariant global layout router not mounted"),"__NEXT_ERROR_CODE",{value:"E473",enumerable:!1,configurable:!0});return(0,d.jsx)(K,{focusAndScrollRef:c.focusAndScrollRef,cacheNode:b,children:a})}function M({tree:a,segmentPath:b,debugNameContext:c,cacheNode:f,params:i,url:j,isActive:k}){let l,m=(0,e.useContext)(g.GlobalLayoutRouterContext);if((0,e.useContext)(p.NavigationPromisesContext),!m)throw Object.defineProperty(Error("invariant global layout router not mounted"),"__NEXT_ERROR_CODE",{value:"E473",enumerable:!1,configurable:!0});let n=null!==f?f:(0,e.use)(h),o=null!==n.prefetchRsc?n.prefetchRsc:n.rsc,q=(0,e.useDeferredValue)(n.rsc,o);if(q&&"object"==typeof q&&q.tag===H){let a=(0,e.use)(q);null===a&&(0,e.use)(h),l=a}else null===q&&(0,e.use)(h),l=q;let r=l;return(0,d.jsx)(g.LayoutRouterContext.Provider,{value:{parentTree:a,parentCacheNode:n,parentSegmentPath:b,parentParams:i,parentLoadingData:null,debugNameContext:c,url:j,isActive:k},children:r})}function N({name:a,loading:b,children:c}){if(null!==b){let f=b[0],g=b[1],h=b[2];return(0,d.jsx)(e.Suspense,{name:a,fallback:(0,d.jsxs)(d.Fragment,{children:[g,h,f]}),children:c})}return(0,d.jsx)(d.Fragment,{children:c})}a.s(["LoadingBoundaryProvider",0,function({loading:a,children:b}){let c=(0,e.use)(g.LayoutRouterContext);return null===c?b:(0,d.jsx)(g.LayoutRouterContext.Provider,{value:{parentTree:c.parentTree,parentCacheNode:c.parentCacheNode,parentSegmentPath:c.parentSegmentPath,parentParams:c.parentParams,parentLoadingData:a,debugNameContext:c.debugNameContext,url:c.url,isActive:c.isActive},children:b})},"default",0,function({parallelRouterKey:a,error:b,errorStyles:c,errorScripts:f,templateStyles:i,templateScripts:j,template:k,notFound:l,forbidden:m,unauthorized:o,segmentViewBoundaries:p}){let q=(0,e.useContext)(g.LayoutRouterContext);if(!q)throw Object.defineProperty(Error("invariant expected layout router to be mounted"),"__NEXT_ERROR_CODE",{value:"E56",enumerable:!1,configurable:!0});let{parentTree:r,parentCacheNode:s,parentSegmentPath:t,parentParams:u,parentLoadingData:v,url:w,isActive:B,debugNameContext:C}=q,D=r[0],E=null===t?[a]:t.concat([D,a]),F=r[1][a],G=s.slots;(void 0===F||null===G)&&(0,e.use)(h);let H=F[0],I=G[a]??null,J=function(a,b=!1){return Array.isArray(a)?`${a[0]}|${a[1]}|${a[2]}`:b&&a.startsWith(z.PAGE_SEGMENT_KEY)?z.PAGE_SEGMENT_KEY:a}(H,!0),K=function(a,b,c){let[d,f]=(0,e.useState)(()=>({tree:a,cacheNode:b,stateKey:c,next:null}));if(d.tree===a)return d;let g={tree:a,cacheNode:b,stateKey:c,next:null},h=1,i=d,j=g;for(;null!==i&&h<1;){if(i.stateKey===c){j.next=i.next;break}{h++;let a={tree:i.tree,cacheNode:i.cacheNode,stateKey:i.stateKey,next:null};j.next=a,j=a}i=i.next}return f(g),g}(F,I,J),O=[];do{let a=K.tree,e=K.cacheNode,h=K.stateKey,p=a[0],q=u;if(Array.isArray(p)){let a=p[0],b=p[1],c=p[2],d=(0,A.getParamValueFromCacheKey)(b,c);null!==d&&(q={...u,[a]:d})}let r=function(a){if("/"===a)return"/";if("string"==typeof a)if("(__SLOT__)"===a)return;else return a+"/";return a[1]+"/"}(p),s=r??C,t=void 0===r?void 0:C,z=(0,d.jsxs)(L,{cacheNode:e,children:[(0,d.jsx)(n,{errorComponent:b,errorStyles:c,errorScripts:f,children:(0,d.jsx)(N,{name:t,loading:v,children:(0,d.jsx)(y.HTTPAccessFallbackBoundary,{notFound:l,forbidden:m,unauthorized:o,children:(0,d.jsxs)(x,{children:[(0,d.jsx)(M,{url:w,tree:a,params:q,cacheNode:e,segmentPath:E,debugNameContext:s,isActive:B&&h===J}),null]})})})}),null]}),D=(0,d.jsxs)(g.TemplateContext.Provider,{value:z,children:[i,j,k]},h);O.push(D),K=K.next}while(null!==K)return O}],2420)},24017,a=>{"use strict";var b=a.i(87924),c=a.i(72131),d=a.i(9270);a.s(["default",0,function(){let a=(0,c.useContext)(d.TemplateContext);return(0,b.jsx)(b.Fragment,{children:a})}])},39684,18366,a=>{"use strict";var b=a.i(32319);function c(a,b){a.varyParams.add(b)}a.s(["createVaryingParams",0,function(a,b,d){if(null!==d)return new Proxy(b,{get:(b,e,f)=>("string"==typeof e&&(e===d||Object.prototype.hasOwnProperty.call(b,e))&&c(a,e),Reflect.get(b,e,f)),has:(b,e)=>(e===d&&c(a,d),Reflect.has(b,e)),ownKeys:b=>(c(a,d),Reflect.ownKeys(b))});let e={};for(let d in b)Object.defineProperty(e,d,{get:()=>(c(a,d),b[d]),enumerable:!0});return e},"createVaryingSearchParams",0,function(a,b){let d={};for(let e in b)Object.defineProperty(d,e,{get:()=>(c(a,"?"),b[e]),enumerable:!0});return d},"getMetadataVaryParamsAccumulator",0,function(){let a=b.workUnitAsyncStorage.getStore();if(a)switch(a.type){case"prerender":case"prerender-runtime":{let b=a.varyParamsAccumulator;if(null!==b)return b.head}}return null}],39684);var d=a.i(72131);let e={current:null},f="function"==typeof d.cache?d.cache:a=>a,g=console.warn;f(a=>{try{g(e.current)}finally{e.current=null}}),a.s(["createDedupedByCallsiteServerErrorLoggerDev",0,function(a){return function(...b){g(a(...b))}}],18366)},19107,69825,a=>{"use strict";a.s(["ReflectAdapter",0,class{static get(a,b,c){let d=Reflect.get(a,b,c);return"function"==typeof d?d.bind(a):d}static set(a,b,c,d){return Reflect.set(a,b,c,d)}static has(a,b){return Reflect.has(a,b)}static deleteProperty(a,b){return Reflect.deleteProperty(a,b)}}],19107);let b=/^[A-Za-z_$][A-Za-z0-9_$]*$/,c=new Set(["hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toString","valueOf","toLocaleString","then","catch","finally","status","displayName","_debugInfo","toJSON","$$typeof","__esModule","@@iterator"]);a.s(["describeHasCheckingStringProperty",0,function(a,b){let c=JSON.stringify(b);return`\`Reflect.has(${a}, ${c})\`, \`${c} in ${a}\`, or similar`},"describeStringPropertyAccess",0,function(a,c){return b.test(c)?`\`${a}.${c}\``:`\`${a}[${JSON.stringify(c)}]\``},"wellKnownProperties",0,c],69825)},87598,(a,b,c)=>{"use strict";var d=Object.defineProperty,e=Object.getOwnPropertyDescriptor,f=Object.getOwnPropertyNames,g=Object.prototype.hasOwnProperty,h={},i={RequestCookies:()=>p,ResponseCookies:()=>q,parseCookie:()=>l,parseSetCookie:()=>m,stringifyCookie:()=>k};for(var j in i)d(h,j,{get:i[j],enumerable:!0});function k(a){var b;let c=["path"in a&&a.path&&`Path=${a.path}`,"expires"in a&&(a.expires||0===a.expires)&&`Expires=${("number"==typeof a.expires?new Date(a.expires):a.expires).toUTCString()}`,"maxAge"in a&&"number"==typeof a.maxAge&&`Max-Age=${a.maxAge}`,"domain"in a&&a.domain&&`Domain=${a.domain}`,"secure"in a&&a.secure&&"Secure","httpOnly"in a&&a.httpOnly&&"HttpOnly","sameSite"in a&&a.sameSite&&`SameSite=${a.sameSite}`,"partitioned"in a&&a.partitioned&&"Partitioned","priority"in a&&a.priority&&`Priority=${a.priority}`].filter(Boolean),d=`${a.name}=${encodeURIComponent(null!=(b=a.value)?b:"")}`;return 0===c.length?d:`${d}; ${c.join("; ")}`}function l(a){let b=new Map;for(let c of a.split(/; */)){if(!c)continue;let a=c.indexOf("=");if(-1===a){b.set(c,"true");continue}let[d,e]=[c.slice(0,a),c.slice(a+1)];try{b.set(d,decodeURIComponent(null!=e?e:"true"))}catch{}}return b}function m(a){if(!a)return;let[[b,c],...d]=l(a),{domain:e,expires:f,httponly:g,maxage:h,path:i,samesite:j,secure:k,partitioned:m,priority:p}=Object.fromEntries(d.map(([a,b])=>[a.toLowerCase().replace(/-/g,""),b]));{var q,r,s={name:b,value:decodeURIComponent(c),domain:e,...f&&{expires:new Date(f)},...g&&{httpOnly:!0},..."string"==typeof h&&{maxAge:Number(h)},path:i,...j&&{sameSite:n.includes(q=(q=j).toLowerCase())?q:void 0},...k&&{secure:!0},...p&&{priority:o.includes(r=(r=p).toLowerCase())?r:void 0},...m&&{partitioned:!0}};let a={};for(let b in s)s[b]&&(a[b]=s[b]);return a}}b.exports=((a,b,c)=>{if(b&&"object"==typeof b||"function"==typeof b)for(let h of f(b))g.call(a,h)||void 0===h||d(a,h,{get:()=>b[h],enumerable:!(c=e(b,h))||c.enumerable});return a})(d({},"__esModule",{value:!0}),h);var n=["strict","lax","none"],o=["low","medium","high"],p=class{constructor(a){this._parsed=new Map,this._headers=a;const b=a.get("cookie");if(b)for(const[a,c]of l(b))this._parsed.set(a,{name:a,value:c})}[Symbol.iterator](){return this._parsed[Symbol.iterator]()}get size(){return this._parsed.size}get(...a){let b="string"==typeof a[0]?a[0]:a[0].name;return this._parsed.get(b)}getAll(...a){var b;let c=Array.from(this._parsed);if(!a.length)return c.map(([a,b])=>b);let d="string"==typeof a[0]?a[0]:null==(b=a[0])?void 0:b.name;return c.filter(([a])=>a===d).map(([a,b])=>b)}has(a){return this._parsed.has(a)}set(...a){let[b,c]=1===a.length?[a[0].name,a[0].value]:a,d=this._parsed;return d.set(b,{name:b,value:c}),this._headers.set("cookie",Array.from(d).map(([a,b])=>k(b)).join("; ")),this}delete(a){let b=this._parsed,c=Array.isArray(a)?a.map(a=>b.delete(a)):b.delete(a);return this._headers.set("cookie",Array.from(b).map(([a,b])=>k(b)).join("; ")),c}clear(){return this.delete(Array.from(this._parsed.keys())),this}[Symbol.for("edge-runtime.inspect.custom")](){return`RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`}toString(){return[...this._parsed.values()].map(a=>`${a.name}=${encodeURIComponent(a.value)}`).join("; ")}},q=class{constructor(a){var b,c,d;this._parsed=new Map,this._headers=a;const e=null!=(d=null!=(c=null==(b=a.getSetCookie)?void 0:b.call(a))?c:a.get("set-cookie"))?d:[];for(const a of Array.isArray(e)?e:function(a){if(!a)return[];var b,c,d,e,f,g=[],h=0;function i(){for(;h=a.length)&&g.push(a.substring(b,a.length))}return g}(e)){const b=m(a);b&&this._parsed.set(b.name,b)}}get(...a){let b="string"==typeof a[0]?a[0]:a[0].name;return this._parsed.get(b)}getAll(...a){var b;let c=Array.from(this._parsed.values());if(!a.length)return c;let d="string"==typeof a[0]?a[0]:null==(b=a[0])?void 0:b.name;return c.filter(a=>a.name===d)}has(a){return this._parsed.has(a)}set(...a){let[b,c,d]=1===a.length?[a[0].name,a[0].value,a[0]]:a,e=this._parsed;return e.set(b,function(a={name:"",value:""}){return"number"==typeof a.expires&&(a.expires=new Date(a.expires)),a.maxAge&&(a.expires=new Date(Date.now()+1e3*a.maxAge)),(null===a.path||void 0===a.path)&&(a.path="/"),a}({name:b,value:c,...d})),function(a,b){for(let[,c]of(b.delete("set-cookie"),a)){let a=k(c);b.append("set-cookie",a)}}(e,this._headers),this}delete(...a){let[b,c]="string"==typeof a[0]?[a[0]]:[a[0].name,a[0]];return this.set({...c,name:b,value:"",expires:new Date(0)})}[Symbol.for("edge-runtime.inspect.custom")](){return`ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`}toString(){return[...this._parsed.values()].map(k).join("; ")}}},47395,a=>{"use strict";var b=a.i(87598),c=a.i(19107);a.i(56704);class d extends Error{constructor(){super("Cookies can only be modified in a Server Action or Route Handler. Read more: https://nextjs.org/docs/app/api-reference/functions/cookies#options")}static callable(){throw new d}}class e{static seal(a){return new Proxy(a,{get(a,b,e){switch(b){case"clear":case"delete":case"set":return d.callable;default:return c.ReflectAdapter.get(a,b,e)}}})}}Symbol.for("next.mutated.cookies");class f extends Error{constructor(){super("Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers")}static callable(){throw new f}}class g extends Headers{constructor(a){super(),this.headers=new Proxy(a,{get(b,d,e){if("symbol"==typeof d)return c.ReflectAdapter.get(b,d,e);let f=d.toLowerCase(),g=Object.keys(a).find(a=>a.toLowerCase()===f);if(void 0!==g)return c.ReflectAdapter.get(b,g,e)},set(b,d,e,f){if("symbol"==typeof d)return c.ReflectAdapter.set(b,d,e,f);let g=d.toLowerCase(),h=Object.keys(a).find(a=>a.toLowerCase()===g);return c.ReflectAdapter.set(b,h??d,e,f)},has(b,d){if("symbol"==typeof d)return c.ReflectAdapter.has(b,d);let e=d.toLowerCase(),f=Object.keys(a).find(a=>a.toLowerCase()===e);return void 0!==f&&c.ReflectAdapter.has(b,f)},deleteProperty(b,d){if("symbol"==typeof d)return c.ReflectAdapter.deleteProperty(b,d);let e=d.toLowerCase(),f=Object.keys(a).find(a=>a.toLowerCase()===e);return void 0===f||c.ReflectAdapter.deleteProperty(b,f)}})}static seal(a){return new Proxy(a,{get(a,b,d){switch(b){case"append":case"delete":case"set":return f.callable;default:return c.ReflectAdapter.get(a,b,d)}}})}merge(a){return Array.isArray(a)?a.join(", "):a}static from(a){return a instanceof Headers?a:new g(a)}append(a,b){let c=this.headers[a];"string"==typeof c?this.headers[a]=[c,b]:Array.isArray(c)?c.push(b):this.headers[a]=b}delete(a){delete this.headers[a]}get(a){let b=this.headers[a];return void 0!==b?this.merge(b):null}has(a){return void 0!==this.headers[a]}set(a,b){this.headers[a]=b}forEach(a,b){for(let[c,d]of this.entries())a.call(b,d,c,this)}*entries(){for(let a of Object.keys(this.headers)){let b=a.toLowerCase(),c=this.get(b);yield[b,c]}}*keys(){for(let a of Object.keys(this.headers)){let b=a.toLowerCase();yield b}}*values(){for(let a of Object.keys(this.headers)){let b=this.get(a);yield b}}[Symbol.iterator](){return this.entries()}}let h=["(..)(..)","(.)","(..)","(...)"];var i=a.i(28535);class j extends Error{constructor(...a){super(...a),this.digest="INSTANT_VALIDATION_ERROR"}}var k=a.i(32319),l=a.i(69825);function m(a){(function(){let a=null,b=k.workUnitAsyncStorage.getStore();if(b)switch(b.type){case"request":case"validation-client":a=b.validationSampleTracking??null}if(!a)throw Object.defineProperty(new i.InvariantError("Expected to have a workUnitStore that provides validationSampleTracking"),"__NEXT_ERROR_CODE",{value:"E1110",enumerable:!1,configurable:!0});return a})().missingSampleErrors.push(a)}function n(a){throw m(a),a}function o(a,b){return Object.defineProperty(new j(`Route "${a}" accessed cookie "${b}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`cookies\` array, or \`{ name: "${b}", value: null }\` if it should be absent.`),"__NEXT_ERROR_CODE",{value:"E1115",enumerable:!1,configurable:!0})}function p(a,b){return Object.defineProperty(new j(`Route "${a}" accessed searchParam "${b}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`searchParams\` object, or \`{ "${b}": null }\` if it should be absent.`),"__NEXT_ERROR_CODE",{value:"E1098",enumerable:!1,configurable:!0})}a.s(["assertRootParamInSamples",0,function(a,b,c){if(b&&c in b);else{let b=a.route;n(Object.defineProperty(new j(`Route "${b}" accessed root param "${c}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`params\` object.`),"__NEXT_ERROR_CODE",{value:"E1114",enumerable:!1,configurable:!0}))}},"createCookiesFromSample",0,function(a,c){let d=new Set,f=new b.RequestCookies(new Headers);if(a)for(let b of a)d.add(b.name),null!==b.value&&f.set(b.name,b.value);return new Proxy(e.seal(f),{get(a,b,e){if("has"===b){let f=Reflect.get(a,b,e);return function(b){return d.has(b)||n(o(c,b)),f.call(a,b)}}if("get"===b){let f=Reflect.get(a,b,e);return function(b){let e;if("string"==typeof b)e=b;else{if(!b||"object"!=typeof b||"string"!=typeof b.name)return f.call(a,b);e=b.name}return d.has(e)||n(o(c,e)),f.call(a,e)}}return Reflect.get(a,b,e)}})},"createDraftModeForValidation",0,function(){return{get isEnabled(){return!1},enable(){throw Object.defineProperty(Error("Draft mode cannot be enabled during build-time instant validation."),"__NEXT_ERROR_CODE",{value:"E1092",enumerable:!1,configurable:!0})},disable(){throw Object.defineProperty(Error("Draft mode cannot be disabled during build-time instant validation."),"__NEXT_ERROR_CODE",{value:"E1094",enumerable:!1,configurable:!0})}}},"createExhaustiveParamsProxy",0,function(a,b,c){return new Proxy(a,{get:(d,e,f)=>("string"==typeof e&&!l.wellKnownProperties.has(e)&&e in a&&!b.has(e)&&n(Object.defineProperty(new j(`Route "${c}" accessed param "${e}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`params\` object.`),"__NEXT_ERROR_CODE",{value:"E1095",enumerable:!1,configurable:!0})),Reflect.get(d,e,f))})},"createExhaustiveSearchParamsProxy",0,function(a,b,c){return new Proxy(a,{get:(a,d,e)=>("string"!=typeof d||l.wellKnownProperties.has(d)||b.has(d)||n(p(c,d)),Reflect.get(a,d,e)),has:(a,d)=>("string"!=typeof d||l.wellKnownProperties.has(d)||b.has(d)||n(p(c,d)),Reflect.has(a,d))})},"createExhaustiveURLSearchParamsProxy",0,function(a,b,c){return new Proxy(a,{get(a,d,e){if("get"===d||"getAll"===d||"has"===d){let f=Reflect.get(a,d,e);return d=>("string"!=typeof d||b.has(d)||n(p(c,d)),f.call(a,d))}let f=Reflect.get(a,d,e);return"function"!=typeof f||Object.hasOwn(a,d)?f:f.bind(a)}})},"createHeadersFromSample",0,function(a,b,c){let d=a?[...a]:[];if(d.find(([a])=>"cookie"===a.toLowerCase()))throw Object.defineProperty(new j('Invalid sample: Defining cookies via a "cookie" header is not supported. Use `cookies: [{ name: ..., value: ... }]` instead.'),"__NEXT_ERROR_CODE",{value:"E1111",enumerable:!1,configurable:!0});if(b){let a=b.toString();d.push(["cookie",""!==a?a:null])}let e=new Set,f={};for(let[a,b]of d)e.add(a.toLowerCase()),null!==b&&(f[a.toLowerCase()]=b);return new Proxy(g.seal(g.from(f)),{get(a,b,d){if("get"===b||"has"===b){let f=Reflect.get(a,b,d);return function(b){let d=b.toLowerCase();return e.has(d)||n(Object.defineProperty(new j(`Route "${c}" accessed header "${d}" which is not defined in the \`samples\` of \`unstable_instant\`. Add it to the sample's \`headers\` array, or \`["${d}", null]\` if it should be absent.`),"__NEXT_ERROR_CODE",{value:"E1116",enumerable:!1,configurable:!0})),f.call(a,d)}}return Reflect.get(a,b,d)}})},"createRelativeURLFromSamples",0,function(a,b,c){let d=function(a,b){let c=[];for(let d of a.split("/")){let a=function(a){let b=h.find(b=>a.startsWith(b));return(b&&(a=a.slice(b.length)),a.startsWith("[[...")&&a.endsWith("]]"))?{paramType:"optional-catchall",paramName:a.slice(5,-2)}:a.startsWith("[...")&&a.endsWith("]")?{paramType:b?`catchall-intercepted-${b}`:"catchall",paramName:a.slice(4,-1)}:a.startsWith("[")&&a.endsWith("]")?{paramType:b?`dynamic-intercepted-${b}`:"dynamic",paramName:a.slice(1,-1)}:null}(d);if(a)switch(a.paramType){case"catchall":case"optional-catchall":{let e=b[a.paramName];if(void 0===e)e=[d];else if(!Array.isArray(e))throw Object.defineProperty(new j(`Expected sample param value for segment '${d}' to be an array of strings, got ${typeof e}`),"__NEXT_ERROR_CODE",{value:"E1104",enumerable:!1,configurable:!0});c.push(...e.map(a=>encodeURIComponent(a)));break}case"dynamic":{let e=b[a.paramName];if(void 0===e)e=d;else if("string"!=typeof e)throw Object.defineProperty(new j(`Expected sample param value for segment '${d}' to be a string, got ${typeof e}`),"__NEXT_ERROR_CODE",{value:"E1108",enumerable:!1,configurable:!0});c.push(encodeURIComponent(e));break}case"catchall-intercepted-(..)(..)":case"catchall-intercepted-(.)":case"catchall-intercepted-(..)":case"catchall-intercepted-(...)":case"dynamic-intercepted-(..)(..)":case"dynamic-intercepted-(.)":case"dynamic-intercepted-(..)":case"dynamic-intercepted-(...)":throw Object.defineProperty(new i.InvariantError("Not implemented: Validation of interception routes"),"__NEXT_ERROR_CODE",{value:"E1106",enumerable:!1,configurable:!0});default:a.paramType}else c.push(d)}return c.join("/")}(a,b??{}),e="";if(c){let a=(function(a){let b=new URLSearchParams;if(a){for(let[c,d]of Object.entries(a))if(null!=d)if(Array.isArray(d))for(let a of d)b.append(c,a);else b.set(c,d)}return b})(c).toString();a&&(e="?"+a)}return function(a,b,c=!0){let d=new URL("http://n"),e=b?new URL(b,d):a.startsWith(".")?new URL("http://n"):d,{pathname:f,searchParams:g,search:h,hash:i,href:j,origin:k}=a.startsWith("/")?new URL(`${e.protocol}//${e.host}${a}`):new URL(a,e);if(k!==d.origin)throw Object.defineProperty(Error(`invariant: invalid relative URL, router received ${a}`),"__NEXT_ERROR_CODE",{value:"E159",enumerable:!1,configurable:!0});return{auth:null,host:null,hostname:null,pathname:f,port:null,protocol:null,query:c?function(a){let b={};for(let[c,d]of a.entries()){let a=b[c];void 0===a?b[c]=d:Array.isArray(a)?a.push(d):b[c]=[a,d]}return b}(g):void 0,search:h,hash:i,href:j.slice(k.length),slashes:null}}(d+e,void 0,!0)},"createValidationSampleTracking",0,function(){return{missingSampleErrors:[]}},"trackMissingSampleError",0,m,"trackMissingSampleErrorAndThrow",0,n],47395)},61737,a=>{"use strict";var b=a.i(56704),c=a.i(39684),d=a.i(19107),e=a.i(24970),f=a.i(32319),g=a.i(28535),h=a.i(92307),i=a.i(18366),j=a.i(69825),k=a.i(28734);a.i(24725);var l=a.i(66119);function m(a,d,e){let h=b.workAsyncStorage.getStore();if(!h)throw Object.defineProperty(new g.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let i=f.workUnitAsyncStorage.getStore();if(i)switch(i.type){case"prerender":case"prerender-client":case"prerender-ppr":case"prerender-legacy":return n(h,i);case"validation-client":throw Object.defineProperty(new g.InvariantError("createServerSearchParamsForServerPage should not be called in a client validation."),"__NEXT_ERROR_CODE",{value:"E1066",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new g.InvariantError("createServerSearchParamsForServerPage should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E747",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new g.InvariantError("createServerSearchParamsForServerPage should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1128",enumerable:!1,configurable:!0});case"prerender-runtime":return function(a,b,d,e){let f=r(null!==d?(0,c.createVaryingSearchParams)(d,a):a),{stagedRendering:g}=b;if(!g)return f;let h=e?l.RenderStage.EarlyRuntime:l.RenderStage.Runtime;return g.waitForStage(h).then(()=>f)}(a,i,d,e);case"request":return o(a,h,i,e)}(0,f.throwInvariantForMissingStore)()}function n(a,b){if(a.forceStatic)return Promise.resolve({});switch(b.type){case"prerender":case"prerender-client":var c=a,f=b;let g=p.get(f);if(g)return g;let i=(0,h.makeHangingPromise)(f.renderSignal,c.route,"`searchParams`"),j=new Proxy(i,{get(a,b,c){if(Object.hasOwn(i,b))return d.ReflectAdapter.get(a,b,c);switch(b){case"then":return(0,e.annotateDynamicAccess)("`await searchParams`, `searchParams.then`, or similar",f),d.ReflectAdapter.get(a,b,c);case"status":return(0,e.annotateDynamicAccess)("`use(searchParams)`, `searchParams.status`, or similar",f),d.ReflectAdapter.get(a,b,c);default:return d.ReflectAdapter.get(a,b,c)}}});return p.set(f,j),j;case"prerender-ppr":case"prerender-legacy":var l=a,m=b;let n=p.get(l);if(n)return n;let o=Promise.resolve({}),q=new Proxy(o,{get(a,b,c){if(Object.hasOwn(o,b))return d.ReflectAdapter.get(a,b,c);if("string"==typeof b&&"then"===b){let a="`await searchParams`, `searchParams.then`, or similar";if(l.dynamicShouldError){var f=l.route;throw Object.defineProperty(new k.StaticGenBailoutError(`Route ${f} with \`dynamic = "error"\` couldn't be rendered statically because it used ${a}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E543",enumerable:!1,configurable:!0})}"prerender-ppr"===m.type?(0,e.postponeWithTracking)(l.route,a,m.dynamicTracking):(0,e.throwToInterruptStaticGeneration)(a,l,m)}return d.ReflectAdapter.get(a,b,c)}});return p.set(l,q),q;default:return b}}function o(b,c,d,e){if(c.forceStatic)return Promise.resolve({});if(!d.asyncApiPromises)return r(b);if(d.validationSamples){let{createExhaustiveSearchParamsProxy:e}=a.r(47395),f=new Set(Object.keys(d.validationSamples.searchParams??{}));b=e(b,f,c.route)}return(e?d.asyncApiPromises.earlySharedSearchParamsParent:d.asyncApiPromises.sharedSearchParamsParent).then(()=>b)}let p=new WeakMap,q=new WeakMap;function r(a){let b=p.get(a);if(b)return b;let c=Promise.resolve(a);return p.set(a,c),c}(0,i.createDedupedByCallsiteServerErrorLoggerDev)(function(a,b){let c=a?`Route "${a}" `:"This route ";return Object.defineProperty(Error(`${c}used ${b}. \`searchParams\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`),"__NEXT_ERROR_CODE",{value:"E848",enumerable:!1,configurable:!0})}),a.s(["createPrerenderSearchParamsForClientPage",0,function(){let a=b.workAsyncStorage.getStore();if(!a)throw Object.defineProperty(new g.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});if(a.forceStatic)return Promise.resolve({});let c=f.workUnitAsyncStorage.getStore();if(c)switch(c.type){case"prerender":case"prerender-client":return(0,h.makeHangingPromise)(c.renderSignal,a.route,"`searchParams`");case"validation-client":throw Object.defineProperty(new g.InvariantError("createPrerenderSearchParamsForClientPage should not be called in a client validation."),"__NEXT_ERROR_CODE",{value:"E1061",enumerable:!1,configurable:!0});case"prerender-runtime":throw Object.defineProperty(new g.InvariantError("createPrerenderSearchParamsForClientPage should not be called in a runtime prerender."),"__NEXT_ERROR_CODE",{value:"E768",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new g.InvariantError("createPrerenderSearchParamsForClientPage should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E746",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new g.InvariantError("createPrerenderSearchParamsForClientPage should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1124",enumerable:!1,configurable:!0});case"prerender-ppr":case"prerender-legacy":case"request":return Promise.resolve({})}(0,f.throwInvariantForMissingStore)()},"createSearchParamsFromClient",0,function(c){let d=b.workAsyncStorage.getStore();if(!d)throw Object.defineProperty(new g.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let e=f.workUnitAsyncStorage.getStore();if(e)switch(e.type){case"prerender":case"prerender-client":case"prerender-ppr":case"prerender-legacy":return n(d,e);case"validation-client":return function(b,c,d){var e;let{createExhaustiveSearchParamsProxy:f}=a.r(47395);return Promise.resolve(b=f(b,new Set(Object.keys((null==(e=d.validationSamples)?void 0:e.searchParams)??{})),c.route))}(c,d,e);case"prerender-runtime":throw Object.defineProperty(new g.InvariantError("createSearchParamsFromClient should not be called in a runtime prerender."),"__NEXT_ERROR_CODE",{value:"E769",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new g.InvariantError("createSearchParamsFromClient should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E739",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new g.InvariantError("createSearchParamsFromClient should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1133",enumerable:!1,configurable:!0});case"request":return o(c,d,e,!1)}(0,f.throwInvariantForMissingStore)()},"createServerSearchParamsForMetadata",0,function(a,b){return m(a,(0,c.getMetadataVaryParamsAccumulator)(),b)},"createServerSearchParamsForServerPage",0,m,"makeErroringSearchParamsForUseCache",0,function(){let a=b.workAsyncStorage.getStore();if(!a)throw Object.defineProperty(new g.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let c=q.get(a);if(c)return c;let e=Promise.resolve({}),f=new Proxy(e,{get:function b(c,f,g){return Object.hasOwn(e,f)||"string"!=typeof f||"then"!==f&&j.wellKnownProperties.has(f)||function(a,b){let c=Object.defineProperty(Error(`Route ${a.route} used \`searchParams\` inside "use cache". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \`searchParams\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`),"__NEXT_ERROR_CODE",{value:"E842",enumerable:!1,configurable:!0});throw Error.captureStackTrace(c,b),a.invalidDynamicUsageError??=c,c}(a,b),d.ReflectAdapter.get(c,f,g)}});return q.set(a,f),f}],61737)},39340,a=>{"use strict";var b=a.i(56704),c=a.i(39684),d=a.i(19107),e=a.i(24970),f=a.i(32319),g=a.i(28535),h=a.i(69825),i=a.i(92307),j=a.i(18366),k=a.i(43285),l=a.i(66119);function m(c,d,e,h){let i=b.workAsyncStorage.getStore();if(!i)throw Object.defineProperty(new g.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let j=f.workUnitAsyncStorage.getStore();if(j)switch(j.type){case"prerender":case"prerender-client":case"prerender-ppr":case"prerender-legacy":return n(c,d,i,j,e);case"validation-client":throw Object.defineProperty(new g.InvariantError("createServerParamsForServerSegment should not be called in client contexts."),"__NEXT_ERROR_CODE",{value:"E1101",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new g.InvariantError("createServerParamsForServerSegment should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E743",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new g.InvariantError("createServerParamsForServerSegment should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1120",enumerable:!1,configurable:!0});case"prerender-runtime":return o(c,d,j,e,h);case"request":if(j.asyncApiPromises&&j.validationSamples)return function(b,c,d,e,f){let{createExhaustiveParamsProxy:g}=a.r(47395),h=g(b,new Set(Object.keys(d.params??{})),c.route);return(f?e.earlySharedParamsParent:e.sharedParamsParent).then(()=>h)}(c,i,j.validationSamples,j.asyncApiPromises,h);if(j.asyncApiPromises&&function(a,b){if(b){for(let c in a)if(b.has(c))return!0}return!1}(c,j.fallbackParams))return(h?j.asyncApiPromises.earlySharedParamsParent:j.asyncApiPromises.sharedParamsParent).then(()=>c);return s(c)}(0,f.throwInvariantForMissingStore)()}function n(a,b,d,f,g){let j=null!==g?(0,c.createVaryingParams)(g,a,b):a;switch(f.type){case"prerender":case"prerender-client":{let b=f.fallbackRouteParams;if(b){for(let c in a)if(b.has(c))return function(a,b,c){let d=q.get(a);if(d)return d;let e=new Proxy((0,i.makeHangingPromise)(c.renderSignal,b.route,"`params`"),r);return q.set(a,e),e}(j,d,f)}break}case"prerender-ppr":{let b=f.fallbackRouteParams;if(b){for(let c in a)if(b.has(c))return function(a,b,c,d){let f=q.get(a);if(f)return f;let g={...a},i=Promise.resolve(g);return q.set(a,i),Object.keys(a).forEach(a=>{h.wellKnownProperties.has(a)||b.has(a)&&Object.defineProperty(g,a,{get(){let b=(0,h.describeStringPropertyAccess)("params",a);"prerender-ppr"===d.type?(0,e.postponeWithTracking)(c.route,b,d.dynamicTracking):(0,e.throwToInterruptStaticGeneration)(b,c,d)},enumerable:!0})}),i}(j,b,d,f)}}}return s(j)}function o(a,b,d,e,f){let g=s(null!==e?(0,c.createVaryingParams)(e,a,b):a),{stagedRendering:h}=d;if(!h)return g;let i=f?l.RenderStage.EarlyRuntime:l.RenderStage.Runtime;return h.waitForStage(i).then(()=>g)}function p(b,c,d){let{createExhaustiveParamsProxy:e}=a.r(47395);return Promise.resolve(e(b,new Set(Object.keys((null==d?void 0:d.params)??{})),c.route))}let q=new WeakMap,r={get:function(a,b,c){if("then"===b||"catch"===b||"finally"===b){let e=d.ReflectAdapter.get(a,b,c);return({[b]:(...b)=>{let c=k.dynamicAccessAsyncStorage.getStore();return c&&c.abortController.abort(Object.defineProperty(Error("Accessed fallback `params` during prerendering."),"__NEXT_ERROR_CODE",{value:"E691",enumerable:!1,configurable:!0})),new Proxy(e.apply(a,b),r)}})[b]}return d.ReflectAdapter.get(a,b,c)}};function s(a){let b=q.get(a);if(b)return b;let c=Promise.resolve(a);return q.set(a,c),c}(0,j.createDedupedByCallsiteServerErrorLoggerDev)(function(a,b){let c=a?`Route "${a}" `:"This route ";return Object.defineProperty(Error(`${c}used ${b}. \`params\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`),"__NEXT_ERROR_CODE",{value:"E834",enumerable:!1,configurable:!0})}),a.s(["createParamsFromClient",0,function(a){let c=b.workAsyncStorage.getStore();if(!c)throw Object.defineProperty(new g.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let d=f.workUnitAsyncStorage.getStore();if(d)switch(d.type){case"prerender":case"prerender-client":case"prerender-ppr":case"prerender-legacy":return n(a,null,c,d,null);case"validation-client":return p(a,c,d.validationSamples);case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new g.InvariantError("createParamsFromClient should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E736",enumerable:!1,configurable:!0});case"prerender-runtime":throw Object.defineProperty(new g.InvariantError("createParamsFromClient should not be called in a runtime prerender."),"__NEXT_ERROR_CODE",{value:"E770",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new g.InvariantError("createParamsFromClient should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1122",enumerable:!1,configurable:!0});case"request":if(d.validationSamples)return p(a,c,d.validationSamples);return s(a)}(0,f.throwInvariantForMissingStore)()},"createPrerenderParamsForClientSegment",0,function(a){let c=b.workAsyncStorage.getStore();if(!c)throw Object.defineProperty(new g.InvariantError("Missing workStore in createPrerenderParamsForClientSegment"),"__NEXT_ERROR_CODE",{value:"E773",enumerable:!1,configurable:!0});let d=f.workUnitAsyncStorage.getStore();if(d)switch(d.type){case"prerender":case"prerender-client":let e=d.fallbackRouteParams;if(e){for(let b in a)if(e.has(b))return(0,i.makeHangingPromise)(d.renderSignal,c.route,"`params`")}break;case"validation-client":throw Object.defineProperty(new g.InvariantError("createPrerenderParamsForClientSegment should not be called in validation contexts."),"__NEXT_ERROR_CODE",{value:"E1099",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new g.InvariantError("createPrerenderParamsForClientSegment should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E734",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new g.InvariantError("createPrerenderParamsForClientSegment should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1126",enumerable:!1,configurable:!0})}return Promise.resolve(a)},"createServerParamsForMetadata",0,function(a,b,d){return m(a,b,(0,c.getMetadataVaryParamsAccumulator)(),d)},"createServerParamsForRoute",0,function(a,c=null){let d=b.workAsyncStorage.getStore();if(!d)throw Object.defineProperty(new g.InvariantError("Expected workStore to be initialized"),"__NEXT_ERROR_CODE",{value:"E1068",enumerable:!1,configurable:!0});let e=f.workUnitAsyncStorage.getStore();if(e)switch(e.type){case"prerender":case"prerender-ppr":case"prerender-legacy":return n(a,null,d,e,c);case"prerender-client":case"validation-client":throw Object.defineProperty(new g.InvariantError("createServerParamsForRoute should not be called in client contexts."),"__NEXT_ERROR_CODE",{value:"E1064",enumerable:!1,configurable:!0});case"cache":case"private-cache":case"unstable-cache":throw Object.defineProperty(new g.InvariantError("createServerParamsForRoute should not be called in cache contexts."),"__NEXT_ERROR_CODE",{value:"E738",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new g.InvariantError("createServerParamsForRoute should not be called inside generateStaticParams."),"__NEXT_ERROR_CODE",{value:"E1131",enumerable:!1,configurable:!0});case"prerender-runtime":return o(a,null,e,c,!1);case"request":return s(a)}(0,f.throwInvariantForMissingStore)()},"createServerParamsForServerSegment",0,m])},77682,a=>{"use strict";var b=a.i(87924),c=a.i(9270),d=a.i(72131),e=a.i(60805),f=a.i(36313);a.s(["ClientPageRoot",0,function({Component:g,serverProvidedParams:h}){let i,j;if(null!==h)i=h.searchParams,j=h.params;else{let a=(0,d.use)(c.LayoutRouterContext);j=null!==a?a.parentParams:{},i=(0,e.urlSearchParamsToParsedUrlQuery)((0,d.use)(f.SearchParamsContext))}{let c,d,{createSearchParamsFromClient:e}=a.r(61737);c=e(i);let{createParamsFromClient:f}=a.r(39340);return d=f(j),(0,b.jsx)(g,{params:d,searchParams:c})}}])},97296,a=>{"use strict";var b=a.i(87924),c=a.i(9270),d=a.i(72131);a.s(["ClientSegmentRoot",0,function({Component:e,slots:f,serverProvidedParams:g}){let h;if(null!==g)h=g.params;else{let a=(0,d.use)(c.LayoutRouterContext);h=null!==a?a.parentParams:{}}{let{createParamsFromClient:c}=a.r(39340),d=c(h);return(0,b.jsx)(e,{...f,params:d})}}])},90574,a=>{"use strict";var b=a.i(27325);let c={[b.METADATA_BOUNDARY_NAME]:function({children:a}){return a},[b.VIEWPORT_BOUNDARY_NAME]:function({children:a}){return a},[b.OUTLET_BOUNDARY_NAME]:function({children:a}){return a},[b.ROOT_LAYOUT_BOUNDARY_NAME]:function({children:a}){return a}},d=c[b.METADATA_BOUNDARY_NAME.slice(0)],e=c[b.VIEWPORT_BOUNDARY_NAME.slice(0)],f=c[b.OUTLET_BOUNDARY_NAME.slice(0)],g=c[b.ROOT_LAYOUT_BOUNDARY_NAME.slice(0)];a.s(["MetadataBoundary",0,d,"OutletBoundary",0,f,"RootLayoutBoundary",0,g,"ViewportBoundary",0,e])},60704,a=>{"use strict";var b=a.i(87924);a.s(["IconMark",0,()=>(0,b.jsx)("meta",{name:"«nxt-icon»"})])}]; + +//# sourceMappingURL=node_modules_next_dist_0h9llsw._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_0h9llsw._.js.map b/.next/server/chunks/ssr/node_modules_next_dist_0h9llsw._.js.map new file mode 100644 index 0000000..9eab61d --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_0h9llsw._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/client/components/http-access-fallback/http-access-fallback.ts","../../../../node_modules/next/dist/esm/client/components/is-next-router-error.js","../../../../node_modules/next/dist/esm/client/components/redirect-status-code.js","../../../../node_modules/next/dist/esm/client/components/redirect-error.js","../../../../node_modules/next/src/shared/lib/invariant-error.ts","../../../../node_modules/next/src/shared/lib/promise-with-resolvers.ts","../../../../node_modules/next/src/lib/framework/boundary-constants.tsx","../../../../node_modules/next/dist/esm/client/components/static-generation-bailout.js","../../../../node_modules/next/dist/esm/server/app-render/staged-rendering.js","../../../../node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../node_modules/next/dist/esm/client/components/hooks-server-context.js","../../../../node_modules/next/dist/esm/server/app-render/dynamic-rendering.js","../../../../node_modules/next/dist/esm/server/app-render/instant-validation/boundary-constants.js","../../../../node_modules/next/dist/esm/server/dynamic-rendering-utils.js","../../../../node_modules/next/dist/esm/lib/scheduler.js","../../../../node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js","../../../../node_modules/next/dist/esm/client/components/unstable-rethrow.server.js","../../../../node_modules/next/dist/esm/shared/lib/utils/warn-once.js","../../../../node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js","../../../../node_modules/next/dist/esm/client/components/navigation-untracked.js","../../../../node_modules/next/src/client/components/app-router-headers.ts","../../../../node_modules/next/dist/esm/shared/lib/segment.js","../../../../node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js","../../../../node_modules/next/dist/esm/client/route-params.js","../../../../node_modules/next/src/client/components/use-action-queue.ts","../../../../node_modules/next/src/client/components/segment-cache/navigation-testing-lock.ts","../../../../node_modules/next/dist/esm/client/components/layout-router.js","../../../../node_modules/next/dist/esm/client/components/error-boundary.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/disable-smooth-scroll.js","../../../../node_modules/next/dist/esm/client/components/readonly-url-search-params.js","../../../../node_modules/next/dist/esm/client/components/redirect-boundary.js","../../../../node_modules/next/dist/esm/client/components/router-reducer/create-router-cache-key.js","../../../../node_modules/next/dist/esm/client/app-find-source-map-url.js","../../../../node_modules/next/dist/esm/client/components/router-reducer/set-cache-busting-search-param.js","../../../../node_modules/next/dist/esm/shared/lib/deployment-id.js","../../../../node_modules/next/dist/esm/client/components/handle-isr-error.js","../../../../node_modules/next/dist/esm/client/navigation-build-id.js","../../../../node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js","../../../../node_modules/next/dist/esm/client/components/match-segments.js","../../../../node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js","../../../../node_modules/next/dist/esm/client/components/router-reducer/router-reducer-types.js","../../../../node_modules/next/dist/esm/lib/constants.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js","../../../../node_modules/next/dist/esm/client/components/bfcache-state-manager.js","../../../../node_modules/next/dist/esm/client/components/redirect.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js","../../../../node_modules/next/dist/esm/client/components/navigation.react-server.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/cache-key.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/cache-map.js","../../../../node_modules/next/dist/esm/client/app-call-server.js","../../../../node_modules/next/dist/esm/client/components/navigation.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/lru.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/vary-path.js","../../../../node_modules/next/dist/esm/client/components/nav-failure-handler.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/types.js","../../../../node_modules/next/dist/esm/client/components/unresolved-thenable.js","../../../../node_modules/next/dist/esm/client/components/links.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/bfcache.js","../../../../node_modules/next/dist/esm/client/components/router-reducer/reducers/navigate-reducer.js","../../../../node_modules/next/dist/esm/shared/lib/app-router-types.js","../../../../node_modules/next/dist/esm/client/components/unstable-rethrow.js","../../../../node_modules/next/dist/esm/shared/lib/hash.js","../../../../node_modules/next/dist/esm/client/flight-data-helpers.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/scheduler.js","../../../../node_modules/next/dist/esm/shared/lib/segment-cache/vary-params-decoding.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/cache.js","../../../../node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/navigation.js","../../../../node_modules/next/dist/esm/client/components/segment-cache/optimistic-routes.js","../../../../node_modules/next/src/client/components/render-from-template-context.tsx","../../../../node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js","../../../../node_modules/next/dist/esm/server/app-render/vary-params.js","../../../../node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js","../../../../node_modules/next/dist/compiled/%40edge-runtime/cookies/index.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/cookies.js","../../../../node_modules/next/dist/esm/server/app-render/instant-validation/instant-validation-error.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/querystring.js","../../../../node_modules/next/dist/esm/shared/lib/action-revalidation-kind.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/request-cookies.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/parse-relative-url.js","../../../../node_modules/next/dist/esm/shared/lib/router/utils/get-segment-param.js","../../../../node_modules/next/dist/esm/server/web/spec-extension/adapters/headers.js","../../../../node_modules/next/dist/esm/server/app-render/instant-validation/instant-samples.js","../../../../node_modules/next/dist/esm/server/request/utils.js","../../../../node_modules/next/dist/esm/server/request/search-params.js","../../../../node_modules/next/src/server/request/params.ts","../../../../node_modules/next/src/client/components/client-page.tsx","../../../../node_modules/next/src/client/components/client-segment.tsx","../../../../node_modules/next/src/lib/framework/boundary-components.tsx","../../../../node_modules/next/src/lib/metadata/generate/icon-mark.tsx"],"sourcesContent":["export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401,\n}\n\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus))\n\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'\n\nexport type HTTPAccessFallbackError = Error & {\n digest: `${typeof HTTP_ERROR_FALLBACK_ERROR_CODE};${string}`\n}\n\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */\nexport function isHTTPAccessFallbackError(\n error: unknown\n): error is HTTPAccessFallbackError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n const [prefix, httpStatus] = error.digest.split(';')\n\n return (\n prefix === HTTP_ERROR_FALLBACK_ERROR_CODE &&\n ALLOWED_CODES.has(Number(httpStatus))\n )\n}\n\nexport function getAccessFallbackHTTPStatus(\n error: HTTPAccessFallbackError\n): number {\n const httpStatus = error.digest.split(';')[1]\n return Number(httpStatus)\n}\n\nexport function getAccessFallbackErrorTypeByStatus(\n status: number\n): 'not-found' | 'forbidden' | 'unauthorized' | undefined {\n switch (status) {\n case 401:\n return 'unauthorized'\n case 403:\n return 'forbidden'\n case 404:\n return 'not-found'\n default:\n return\n }\n}\n","import { isHTTPAccessFallbackError } from './http-access-fallback/http-access-fallback';\nimport { isRedirectError } from './redirect-error';\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */ export function isNextRouterError(error) {\n return isRedirectError(error) || isHTTPAccessFallbackError(error);\n}\n\n//# sourceMappingURL=is-next-router-error.js.map","export var RedirectStatusCode = /*#__PURE__*/ function(RedirectStatusCode) {\n RedirectStatusCode[RedirectStatusCode[\"SeeOther\"] = 303] = \"SeeOther\";\n RedirectStatusCode[RedirectStatusCode[\"TemporaryRedirect\"] = 307] = \"TemporaryRedirect\";\n RedirectStatusCode[RedirectStatusCode[\"PermanentRedirect\"] = 308] = \"PermanentRedirect\";\n return RedirectStatusCode;\n}({});\n\n//# sourceMappingURL=redirect-status-code.js.map","import { RedirectStatusCode } from './redirect-status-code';\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT';\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */ export function isRedirectError(error) {\n if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') {\n return false;\n }\n const digest = error.digest.split(';');\n const [errorCode, type] = digest;\n const destination = digest.slice(2, -2).join(';');\n const status = digest.at(-2);\n const statusCode = Number(status);\n return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in RedirectStatusCode;\n}\n\n//# sourceMappingURL=redirect-error.js.map","export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n","export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n","export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n","const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT';\nexport class StaticGenBailoutError extends Error {\n constructor(...args){\n super(...args), this.code = NEXT_STATIC_GEN_BAILOUT;\n }\n}\nexport function isStaticGenBailoutError(error) {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false;\n }\n return error.code === NEXT_STATIC_GEN_BAILOUT;\n}\n\n//# sourceMappingURL=static-generation-bailout.js.map","import { InvariantError } from '../../shared/lib/invariant-error';\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers';\nexport var RenderStage = /*#__PURE__*/ function(RenderStage) {\n RenderStage[RenderStage[\"Before\"] = 1] = \"Before\";\n RenderStage[RenderStage[\"EarlyStatic\"] = 2] = \"EarlyStatic\";\n RenderStage[RenderStage[\"Static\"] = 3] = \"Static\";\n RenderStage[RenderStage[\"EarlyRuntime\"] = 4] = \"EarlyRuntime\";\n RenderStage[RenderStage[\"Runtime\"] = 5] = \"Runtime\";\n RenderStage[RenderStage[\"Dynamic\"] = 6] = \"Dynamic\";\n RenderStage[RenderStage[\"Abandoned\"] = 7] = \"Abandoned\";\n return RenderStage;\n}({});\nexport class StagedRenderingController {\n constructor(abortSignal, abandonController, shouldTrackSyncIO){\n this.abortSignal = abortSignal;\n this.abandonController = abandonController;\n this.shouldTrackSyncIO = shouldTrackSyncIO;\n this.currentStage = 1;\n this.syncInterruptReason = null;\n this.staticStageEndTime = Infinity;\n this.runtimeStageEndTime = Infinity;\n this.staticStageListeners = [];\n this.earlyRuntimeStageListeners = [];\n this.runtimeStageListeners = [];\n this.dynamicStageListeners = [];\n this.staticStagePromise = createPromiseWithResolvers();\n this.earlyRuntimeStagePromise = createPromiseWithResolvers();\n this.runtimeStagePromise = createPromiseWithResolvers();\n this.dynamicStagePromise = createPromiseWithResolvers();\n if (abortSignal) {\n abortSignal.addEventListener('abort', ()=>{\n // Reject all stage promises that haven't already been resolved.\n // If a promise was already resolved via advanceStage, the reject\n // is a no-op. The ignoreReject handler suppresses unhandled\n // rejection warnings for promises that no one is awaiting.\n const { reason } = abortSignal;\n this.staticStagePromise.promise.catch(ignoreReject);\n this.staticStagePromise.reject(reason);\n this.earlyRuntimeStagePromise.promise.catch(ignoreReject);\n this.earlyRuntimeStagePromise.reject(reason);\n this.runtimeStagePromise.promise.catch(ignoreReject);\n this.runtimeStagePromise.reject(reason);\n this.dynamicStagePromise.promise.catch(ignoreReject);\n this.dynamicStagePromise.reject(reason);\n }, {\n once: true\n });\n }\n if (abandonController) {\n abandonController.signal.addEventListener('abort', ()=>{\n this.abandonRender();\n }, {\n once: true\n });\n }\n }\n onStage(stage, callback) {\n if (this.currentStage >= stage) {\n callback();\n } else if (stage === 3) {\n this.staticStageListeners.push(callback);\n } else if (stage === 4) {\n this.earlyRuntimeStageListeners.push(callback);\n } else if (stage === 5) {\n this.runtimeStageListeners.push(callback);\n } else if (stage === 6) {\n this.dynamicStageListeners.push(callback);\n } else {\n // This should never happen\n throw Object.defineProperty(new InvariantError(`Invalid render stage: ${stage}`), \"__NEXT_ERROR_CODE\", {\n value: \"E881\",\n enumerable: false,\n configurable: true\n });\n }\n }\n shouldTrackSyncInterrupt() {\n if (!this.shouldTrackSyncIO) {\n return false;\n }\n switch(this.currentStage){\n case 1:\n // If we haven't started the render yet, it can't be interrupted.\n return false;\n case 2:\n case 3:\n return true;\n case 4:\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO\n // should error because it would abort a runtime prefetch.\n return true;\n case 5:\n // Runtime is for non-prefetchable segments. Sync IO is fine there\n // because in practice this segment will never be runtime prefetched\n return false;\n case 6:\n case 7:\n return false;\n default:\n return false;\n }\n }\n syncInterruptCurrentStageWithReason(reason) {\n if (this.currentStage === 1) {\n return;\n }\n // If the render has already been abandoned, there's nothing to interrupt.\n if (this.currentStage === 7) {\n return;\n }\n // If Sync IO occurs during an abandonable render, we trigger the abandon.\n // The abandon listener will call abandonRender which advances through\n // stages to let caches fill before marking as Abandoned.\n if (this.abandonController) {\n this.abandonController.abort();\n return;\n }\n if (this.abortSignal) {\n // If this is an abortable render, we capture the interruption reason and stop advancing.\n // We don't release any more promises.\n // The caller is expected to abort the signal.\n this.syncInterruptReason = reason;\n this.currentStage = 7;\n return;\n }\n // If we're in a non-abandonable & non-abortable render,\n // we need to advance to the Dynamic stage and capture the interruption reason.\n // (in dev, this will be the restarted render)\n switch(this.currentStage){\n case 2:\n case 3:\n case 4:\n {\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO here\n // means the prefetch would be aborted too early.\n this.syncInterruptReason = reason;\n this.advanceStage(6);\n return;\n }\n case 5:\n {\n // canSyncInterrupt returns false for Runtime, so we should\n // never get here. Defensive no-op.\n return;\n }\n case 6:\n default:\n }\n }\n getSyncInterruptReason() {\n return this.syncInterruptReason;\n }\n getStaticStageEndTime() {\n return this.staticStageEndTime;\n }\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime;\n }\n abandonRender() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the next stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this;\n switch(currentStage){\n case 2:\n {\n this.resolveStaticStage();\n }\n // intentional fallthrough\n case 3:\n {\n this.resolveEarlyRuntimeStage();\n }\n // intentional fallthrough\n case 4:\n {\n this.resolveRuntimeStage();\n }\n // intentional fallthrough\n case 5:\n {\n this.currentStage = 7;\n return;\n }\n case 6:\n case 1:\n case 7:\n break;\n default:\n {\n currentStage;\n }\n }\n }\n advanceStage(stage) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return;\n }\n let currentStage = this.currentStage;\n this.currentStage = stage;\n if (currentStage < 3 && stage >= 3) {\n this.resolveStaticStage();\n }\n if (currentStage < 4 && stage >= 4) {\n this.resolveEarlyRuntimeStage();\n }\n if (currentStage < 5 && stage >= 5) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin;\n this.resolveRuntimeStage();\n }\n if (currentStage < 6 && stage >= 6) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin;\n this.resolveDynamicStage();\n return;\n }\n }\n /** Fire the `onStage` listeners for the static stage and unblock any promises waiting for it. */ resolveStaticStage() {\n const staticListeners = this.staticStageListeners;\n for(let i = 0; i < staticListeners.length; i++){\n staticListeners[i]();\n }\n staticListeners.length = 0;\n this.staticStagePromise.resolve();\n }\n /** Fire the `onStage` listeners for the early runtime stage and unblock any promises waiting for it. */ resolveEarlyRuntimeStage() {\n const earlyRuntimeListeners = this.earlyRuntimeStageListeners;\n for(let i = 0; i < earlyRuntimeListeners.length; i++){\n earlyRuntimeListeners[i]();\n }\n earlyRuntimeListeners.length = 0;\n this.earlyRuntimeStagePromise.resolve();\n }\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */ resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners;\n for(let i = 0; i < runtimeListeners.length; i++){\n runtimeListeners[i]();\n }\n runtimeListeners.length = 0;\n this.runtimeStagePromise.resolve();\n }\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */ resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners;\n for(let i = 0; i < dynamicListeners.length; i++){\n dynamicListeners[i]();\n }\n dynamicListeners.length = 0;\n this.dynamicStagePromise.resolve();\n }\n getStagePromise(stage) {\n switch(stage){\n case 3:\n {\n return this.staticStagePromise.promise;\n }\n case 4:\n {\n return this.earlyRuntimeStagePromise.promise;\n }\n case 5:\n {\n return this.runtimeStagePromise.promise;\n }\n case 6:\n {\n return this.dynamicStagePromise.promise;\n }\n default:\n {\n stage;\n throw Object.defineProperty(new InvariantError(`Invalid render stage: ${stage}`), \"__NEXT_ERROR_CODE\", {\n value: \"E881\",\n enumerable: false,\n configurable: true\n });\n }\n }\n }\n waitForStage(stage) {\n return this.getStagePromise(stage);\n }\n delayUntilStage(stage, displayName, resolvedValue) {\n const ioTriggerPromise = this.getStagePromise(stage);\n const promise = makeDevtoolsIOPromiseFromIOTrigger(ioTriggerPromise, displayName, resolvedValue);\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject);\n }\n return promise;\n }\n}\nfunction ignoreReject() {}\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger(ioTrigger, displayName, resolvedValue) {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise((resolve, reject)=>{\n ioTrigger.then(resolve.bind(null, resolvedValue), reject);\n });\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName;\n }\n return promise;\n}\n\n//# sourceMappingURL=staged-rendering.js.map","// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING';\n/** An error that should be thrown when we want to bail out to client-side rendering. */ export class BailoutToCSRError extends Error {\n constructor(reason){\n super(`Bail out to client-side rendering: ${reason}`), this.reason = reason, this.digest = BAILOUT_TO_CSR;\n }\n}\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */ export function isBailoutToCSRError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false;\n }\n return err.digest === BAILOUT_TO_CSR;\n}\n\n//# sourceMappingURL=bailout-to-csr.js.map","const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE';\nexport class DynamicServerError extends Error {\n constructor(description){\n super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE;\n }\n}\nexport function isDynamicServerError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') {\n return false;\n }\n return err.digest === DYNAMIC_ERROR_CODE;\n}\n\n//# sourceMappingURL=hooks-server-context.js.map","/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */ // Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react';\nimport { DynamicServerError } from '../../client/components/hooks-server-context';\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout';\nimport { throwForMissingRequestStore, workUnitAsyncStorage } from './work-unit-async-storage.external';\nimport { workAsyncStorage } from '../app-render/work-async-storage.external';\nimport { makeHangingPromise, getRuntimeStage } from '../dynamic-rendering-utils';\nimport { METADATA_BOUNDARY_NAME, VIEWPORT_BOUNDARY_NAME, OUTLET_BOUNDARY_NAME, ROOT_LAYOUT_BOUNDARY_NAME } from '../../lib/framework/boundary-constants';\nimport { scheduleOnNextTick } from '../../lib/scheduler';\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nimport { INSTANT_VALIDATION_BOUNDARY_NAME } from './instant-validation/boundary-constants';\nconst hasPostpone = typeof React.unstable_postpone === 'function';\nexport function createDynamicTrackingState(isDebugDynamicAccesses) {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null\n };\n}\nexport function createDynamicValidationState() {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: []\n };\n}\nexport function getFirstDynamicReason(trackingState) {\n var _trackingState_dynamicAccesses_;\n return (_trackingState_dynamicAccesses_ = trackingState.dynamicAccesses[0]) == null ? void 0 : _trackingState_dynamicAccesses_.expression;\n}\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */ export function markCurrentScopeAsDynamic(store, workUnitStore, expression) {\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return;\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return;\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return;\n if (store.dynamicShouldError) {\n throw Object.defineProperty(new StaticGenBailoutError(`Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), \"__NEXT_ERROR_CODE\", {\n value: \"E553\",\n enumerable: false,\n configurable: true\n });\n }\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender-ppr':\n return postponeWithTracking(store.route, expression, workUnitStore.dynamicTracking);\n case 'prerender-legacy':\n workUnitStore.revalidate = 0;\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = Object.defineProperty(new DynamicServerError(`Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), \"__NEXT_ERROR_CODE\", {\n value: \"E550\",\n enumerable: false,\n configurable: true\n });\n store.dynamicUsageDescription = expression;\n store.dynamicUsageStack = err.stack;\n throw err;\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true;\n }\n break;\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n}\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */ export function throwToInterruptStaticGeneration(expression, store, prerenderStore) {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = Object.defineProperty(new DynamicServerError(`Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), \"__NEXT_ERROR_CODE\", {\n value: \"E558\",\n enumerable: false,\n configurable: true\n });\n prerenderStore.revalidate = 0;\n store.dynamicUsageDescription = expression;\n store.dynamicUsageStack = err.stack;\n throw err;\n}\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */ export function trackDynamicDataInDynamicRender(workUnitStore) {\n switch(workUnitStore.type){\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return;\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return;\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n case 'validation-client':\n case 'generate-static-params':\n break;\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true;\n }\n break;\n default:\n workUnitStore;\n }\n}\nfunction abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore) {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`;\n const error = createPrerenderInterruptedError(reason);\n prerenderStore.controller.abort(error);\n const dynamicTracking = prerenderStore.dynamicTracking;\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined,\n expression\n });\n }\n}\nexport function abortOnSynchronousPlatformIOAccess(route, expression, errorWithStack, prerenderStore) {\n const dynamicTracking = prerenderStore.dynamicTracking;\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore);\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack;\n }\n }\n}\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */ export function abortAndThrowOnSynchronousRequestDataAccess(route, expression, errorWithStack, prerenderStore) {\n const prerenderSignal = prerenderStore.controller.signal;\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore);\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking;\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack;\n }\n }\n }\n throw createPrerenderInterruptedError(`Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`);\n}\nexport function Postpone({ reason, route }) {\n const prerenderStore = workUnitAsyncStorage.getStore();\n const dynamicTracking = prerenderStore && prerenderStore.type === 'prerender-ppr' ? prerenderStore.dynamicTracking : null;\n postponeWithTracking(route, reason, dynamicTracking);\n}\nexport function postponeWithTracking(route, expression, dynamicTracking) {\n assertPostpone();\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined,\n expression\n });\n }\n React.unstable_postpone(createPostponeReason(route, expression));\n}\nfunction createPostponeReason(route, expression) {\n return `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` + `React throws this special object to indicate where. It should not be caught by ` + `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`;\n}\nexport function isDynamicPostpone(err) {\n if (typeof err === 'object' && err !== null && typeof err.message === 'string') {\n return isDynamicPostponeReason(err.message);\n }\n return false;\n}\nfunction isDynamicPostponeReason(reason) {\n return reason.includes('needs to bail out of prerendering at this point because it used') && reason.includes('Learn more: https://nextjs.org/docs/messages/ppr-caught-error');\n}\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw Object.defineProperty(new Error('Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'), \"__NEXT_ERROR_CODE\", {\n value: \"E296\",\n enumerable: false,\n configurable: true\n });\n}\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED';\nfunction createPrerenderInterruptedError(message) {\n const error = Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E394\",\n enumerable: false,\n configurable: true\n });\n error.digest = NEXT_PRERENDER_INTERRUPTED;\n return error;\n}\nexport function isPrerenderInterruptedError(error) {\n return typeof error === 'object' && error !== null && error.digest === NEXT_PRERENDER_INTERRUPTED && 'name' in error && 'message' in error && error instanceof Error;\n}\nexport function accessedDynamicData(dynamicAccesses) {\n return dynamicAccesses.length > 0;\n}\nexport function consumeDynamicAccess(serverDynamic, clientDynamic) {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses);\n return serverDynamic.dynamicAccesses;\n}\nexport function formatDynamicAPIAccesses(dynamicAccesses) {\n return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{\n stack = stack.split('\\n')// Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4).filter((line)=>{\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false;\n }\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' ()')) {\n return false;\n }\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false;\n }\n return true;\n }).join('\\n');\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`;\n });\n}\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), \"__NEXT_ERROR_CODE\", {\n value: \"E224\",\n enumerable: false,\n configurable: true\n });\n }\n}\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */ export function createRenderInBrowserAbortSignal() {\n const controller = new AbortController();\n controller.abort(Object.defineProperty(new BailoutToCSRError('Render in Browser'), \"__NEXT_ERROR_CODE\", {\n value: \"E721\",\n enumerable: false,\n configurable: true\n }));\n return controller.signal;\n}\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */ export function createHangingInputAbortSignal(workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController();\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(()=>{\n controller.abort();\n });\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n if (// eslint-disable-next-line no-restricted-syntax -- We are discriminating between two different refined types and don't need an addition exhaustive switch here\n workUnitStore.type === 'prerender-runtime' && workUnitStore.stagedRendering) {\n const { stagedRendering } = workUnitStore;\n stagedRendering.waitForStage(getRuntimeStage(stagedRendering)).then(()=>scheduleOnNextTick(()=>controller.abort()));\n } else {\n scheduleOnNextTick(()=>controller.abort());\n }\n }\n return controller.signal;\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n return undefined;\n default:\n workUnitStore;\n }\n}\nexport function annotateDynamicAccess(expression, prerenderStore) {\n const dynamicTracking = prerenderStore.dynamicTracking;\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined,\n expression\n });\n }\n}\nexport function useDynamicRouteParams(expression) {\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workStore && workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender-client':\n case 'prerender':\n {\n const fallbackParams = workUnitStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(makeHangingPromise(workUnitStore.renderSignal, workStore.route, expression));\n }\n break;\n }\n case 'prerender-ppr':\n {\n const fallbackParams = workUnitStore.fallbackRouteParams;\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking);\n }\n break;\n }\n case 'validation-client':\n {\n break;\n }\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E771\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E745\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1130\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break;\n default:\n workUnitStore;\n }\n }\n}\nexport function useDynamicSearchParams(expression) {\n const workStore = workAsyncStorage.getStore();\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (!workStore) {\n // We assume pages router context and just return\n return;\n }\n if (!workUnitStore) {\n throwForMissingRequestStore(expression);\n }\n switch(workUnitStore.type){\n case 'validation-client':\n // During instant validation we try to behave as close to client as possible,\n // so this shouldn't hang during SSR.\n return;\n case 'prerender-client':\n {\n React.use(makeHangingPromise(workUnitStore.renderSignal, workStore.route, expression));\n break;\n }\n case 'prerender-legacy':\n case 'prerender-ppr':\n {\n if (workStore.forceStatic) {\n return;\n }\n throw Object.defineProperty(new BailoutToCSRError(expression), \"__NEXT_ERROR_CODE\", {\n value: \"E394\",\n enumerable: false,\n configurable: true\n });\n }\n case 'prerender':\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E795\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E745\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError(`\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1130\",\n enumerable: false,\n configurable: true\n });\n case 'request':\n return;\n default:\n workUnitStore;\n }\n}\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(\\)/;\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6';\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense ()\n// at __next_root_layout_boundary__ ()\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense ()\n// at SomeComponent ()\n// at __next_root_layout_boundary__ ()\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\\\n\\\\s+at Suspense \\\\(\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`);\nconst hasMetadataRegex = new RegExp(`\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasViewportRegex = new RegExp(`\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`);\nconst hasInstantValidationBoundaryRegex = new RegExp(`\\\\n\\\\s+at ${INSTANT_VALIDATION_BOUNDARY_NAME}[\\\\n\\\\s]`);\nexport function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true;\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n } else {\n const message = `Route \"${workStore.route}\": Uncached data was accessed outside of ` + '. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route';\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1079\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n}\nexport var DynamicHoleKind = /*#__PURE__*/ function(DynamicHoleKind) {\n /** We know that this hole is caused by runtime data. */ DynamicHoleKind[DynamicHoleKind[\"Runtime\"] = 1] = \"Runtime\";\n /** We know that this hole is caused by dynamic data. */ DynamicHoleKind[DynamicHoleKind[\"Dynamic\"] = 2] = \"Dynamic\";\n return DynamicHoleKind;\n}({});\nexport function createInstantValidationState(createInstantStack) {\n return {\n hasDynamicMetadata: false,\n hasAllowedClientDynamicAboveBoundary: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n validationPreventingErrors: [],\n thrownErrorsOutsideBoundary: [],\n createInstantStack\n };\n}\nexport function trackDynamicHoleInNavigation(workStore, componentStack, dynamicValidation, clientDynamic, kind, boundaryState) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n }\n if (hasMetadataRegex.test(componentStack)) {\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments.` : `Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1076\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicMetadata = error;\n return;\n }\n if (hasViewportRegex.test(componentStack)) {\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`.` : `Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1086\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n const boundaryLocation = hasInstantValidationBoundaryRegex.exec(componentStack);\n if (!boundaryLocation) {\n // We don't see the validation boundary in the component stack,\n // so this hole must be coming from a shared parent.\n // Shared parents are fully resolved and don't have RSC holes,\n // but they can still suspend in a client component during SSR.\n // If we managed to render all the validation boundaries, that means\n // that the client holes aren't blocking validation and we can disregard them.\n // Note that we don't even care whether they have suspense or not.\n if (boundaryState.expectedIds.size === boundaryState.renderedIds.size) {\n dynamicValidation.hasAllowedClientDynamicAboveBoundary = true;\n dynamicValidation.hasAllowedDynamic = true // Holes outside the boundary contribute to allowing dynamic metadata\n ;\n return;\n } else {\n // TODO(instant-validation) TODO(NAR-787)\n // If shared parents blocked us from validating, we should only log\n // the errors from the innermost (segments), i.e. omit layouts whose\n // slots managed to render (because clearly they didn't block validation)\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because a Client Component in a parent segment prevented the page from rendering.`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1082\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.validationPreventingErrors.push(error);\n return;\n }\n } else {\n // The hole originates inside the validation boundary.\n //\n // Check if we have a Suspense above the hole, but below the validation boundary.\n // If we do, then this dynamic usage wouldn't block a navigation to this subtree.\n // Conversely, if the nearest suspense is above the validation boundary, then this subtree would block.\n //\n // Note that in the component stack, children come before parents.\n //\n // Valid:\n // ...\n // at Suspense\n // ...\n // at __next_prefetch_validation_boundary__\n //\n // Invalid:\n // ...\n // at __next_prefetch_validation_boundary__\n // ...\n // at Suspense\n //\n const suspenseLocation = hasSuspenseRegex.exec(componentStack);\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else {\n // invalid - fallthrough\n }\n }\n }\n if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n const syncError = clientDynamic.syncDynamicErrorWithStack;\n if (dynamicValidation.createInstantStack !== null && syncError.cause === undefined) {\n syncError.cause = dynamicValidation.createInstantStack();\n }\n dynamicValidation.dynamicErrors.push(syncError);\n return;\n }\n const usageDescription = kind === 1 ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`.` : `Uncached data or \\`connection()\\` was accessed outside of \\`\\`.`;\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1078\",\n enumerable: false,\n configurable: true\n }), componentStack, dynamicValidation.createInstantStack);\n dynamicValidation.dynamicErrors.push(error);\n return;\n}\nexport function trackThrownErrorInNavigation(workStore, dynamicValidation, thrownValue, componentStack) {\n const boundaryLocation = hasInstantValidationBoundaryRegex.exec(componentStack);\n if (!boundaryLocation) {\n // There's no validation boundary on the component stack.\n // This error may have blocked a boundary from rendering.\n // Wrap the error to provide component context.\n // This helps for errors from node_modules which would otherwise\n // have no useful stack information due to ignore-listing,\n // e.g. next/dynamic with `ssr: false`.\n const error = addErrorContext(Object.defineProperty(new Error('An error occurred while attempting to validate instant UI. This error may be preventing the validation from completing.', {\n cause: thrownValue\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E1118\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.thrownErrorsOutsideBoundary.push(error);\n } else {\n // There's validation boundary on the component stack,\n // so we know this error didn't block a validation boundary from rendering.\n // However, this error might be hiding be hiding dynamic content that would\n // cause validation to fail.\n const suspenseLocation = hasSuspenseRegex.exec(componentStack);\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n // There's a Suspense below the validation boundary but above this error's location.\n // This subtree can't fail instant validation because any potential\n // dynamic holes would be guarded by the Suspense anyway,\n // so we can allow this.\n return;\n } else {\n // invalid - fallthrough\n }\n }\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because an error prevented the target segment from rendering.`;\n const error = addErrorContext(Object.defineProperty(new Error(message, {\n cause: thrownValue\n }), \"__NEXT_ERROR_CODE\", {\n value: \"E1112\",\n enumerable: false,\n configurable: true\n }), componentStack, null // TODO(instant-validation-build): conflicting use of cause\n );\n dynamicValidation.validationPreventingErrors.push(error);\n }\n}\nexport function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1080\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicMetadata = error;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n // TODO(instant-validation): If the page only has holes caused by runtime data,\n // we won't find out if there's a suspense-above-body and error for dynamic viewport\n // even if there is in fact a suspense-above-body\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1077\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n }\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1084\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n}\nexport function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return;\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1085\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicMetadata = error;\n return;\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1081\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true;\n dynamicValidation.hasSuspenseAboveBody = true;\n return;\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true;\n return;\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack);\n return;\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`;\n const error = addErrorContext(Object.defineProperty(new Error(message), \"__NEXT_ERROR_CODE\", {\n value: \"E1083\",\n enumerable: false,\n configurable: true\n }), componentStack, null);\n dynamicValidation.dynamicErrors.push(error);\n return;\n }\n}\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n *\n * Accepts an already-created Error so the SWC error-code plugin can see the\n * `new Error(...)` call at each call site and auto-assign error codes.\n */ function addErrorContext(error, componentStack, createInstantStack) {\n const ownerStack = process.env.NODE_ENV !== 'production' && React.captureOwnerStack ? React.captureOwnerStack() : null;\n if (createInstantStack !== null) {\n error.cause = createInstantStack();\n }\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + error.message + (ownerStack || componentStack);\n return error;\n}\nexport var PreludeState = /*#__PURE__*/ function(PreludeState) {\n PreludeState[PreludeState[\"Full\"] = 0] = \"Full\";\n PreludeState[PreludeState[\"Empty\"] = 1] = \"Empty\";\n PreludeState[PreludeState[\"Errored\"] = 2] = \"Errored\";\n return PreludeState;\n}({});\nexport function logDisallowedDynamicError(workStore, error) {\n console.error(error);\n if (process.env.NODE_ENV !== 'development') {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`);\n } else if (!process.env.__NEXT_DEV_SERVER) {\n console.error(`To debug the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`);\n }\n}\nexport function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack);\n throw new StaticGenBailoutError();\n }\n if (prelude !== 0) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return;\n }\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n for(let i = 0; i < dynamicErrors.length; i++){\n logDisallowedDynamicError(workStore, dynamicErrors[i]);\n }\n throw new StaticGenBailoutError();\n }\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(`Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`);\n throw new StaticGenBailoutError();\n }\n if (prelude === 1) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(`Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`);\n throw new StaticGenBailoutError();\n }\n } else {\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) {\n console.error(`Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`);\n throw new StaticGenBailoutError();\n }\n }\n}\nexport function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation, configAllowsBlocking) {\n if (configAllowsBlocking || dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return [];\n }\n if (prelude !== 0) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (prelude === 1) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n Object.defineProperty(new InvariantError(`Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`), \"__NEXT_ERROR_CODE\", {\n value: \"E936\",\n enumerable: false,\n configurable: true\n })\n ];\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) {\n return [\n dynamicValidation.dynamicMetadata\n ];\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return [];\n}\nexport function getNavigationDisallowedDynamicReasons(workStore, prelude, dynamicValidation, validationSampleTracking, boundaryState) {\n // If we have errors related to missing samples, those should take precedence over everything else.\n if (validationSampleTracking) {\n const { missingSampleErrors } = validationSampleTracking;\n if (missingSampleErrors.length > 0) {\n return missingSampleErrors;\n }\n }\n const { validationPreventingErrors } = dynamicValidation;\n if (validationPreventingErrors.length > 0) {\n return validationPreventingErrors;\n }\n if (boundaryState.renderedIds.size < boundaryState.expectedIds.size) {\n const { thrownErrorsOutsideBoundary, createInstantStack } = dynamicValidation;\n if (thrownErrorsOutsideBoundary.length === 0) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering for an unknown reason.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error\n ];\n } else if (thrownErrorsOutsideBoundary.length === 1) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to the following error.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error,\n thrownErrorsOutsideBoundary[0]\n ];\n } else {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to one of the following errors.`;\n const error = createInstantStack !== null ? createInstantStack() : new Error();\n error.name = 'Error';\n error.message = message;\n return [\n error,\n ...thrownErrorsOutsideBoundary\n ];\n }\n }\n // NOTE: We don't care about Suspense above body here,\n // we're only concerned with the validation boundary\n if (prelude !== 0) {\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (prelude === 1) {\n // If a client component suspended prevented us from rendering a shell\n // but didn't block validation, we don't require a prelude.\n if (dynamicValidation.hasAllowedClientDynamicAboveBoundary) {\n return [];\n }\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n return [\n Object.defineProperty(new InvariantError(`Route \"${workStore.route}\" failed to render during instant validation and Next.js was unable to determine a reason.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1055\",\n enumerable: false,\n configurable: true\n })\n ];\n }\n } else {\n const dynamicErrors = dynamicValidation.dynamicErrors;\n if (dynamicErrors.length > 0) {\n return dynamicErrors;\n }\n if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicMetadata) {\n return [\n dynamicValidation.dynamicMetadata\n ];\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return [];\n}\n\n//# sourceMappingURL=dynamic-rendering.js.map","export const INSTANT_VALIDATION_BOUNDARY_NAME = '__next_instant_validation_boundary__';\n\n//# sourceMappingURL=boundary-constants.js.map","import { RenderStage } from './app-render/staged-rendering';\nexport function isHangingPromiseRejectionError(err) {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false;\n }\n return err.digest === HANGING_PROMISE_REJECTION;\n}\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION';\nclass HangingPromiseRejectionError extends Error {\n constructor(route, expression){\n super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION;\n }\n}\nconst abortListenersBySignal = new WeakMap();\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */ export function makeHangingPromise(signal, route, expression) {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression));\n } else {\n const hangingPromise = new Promise((_, reject)=>{\n const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression));\n let currentListeners = abortListenersBySignal.get(signal);\n if (currentListeners) {\n currentListeners.push(boundRejection);\n } else {\n const listeners = [\n boundRejection\n ];\n abortListenersBySignal.set(signal, listeners);\n signal.addEventListener('abort', ()=>{\n for(let i = 0; i < listeners.length; i++){\n listeners[i]();\n }\n }, {\n once: true\n });\n }\n });\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject);\n return hangingPromise;\n }\n}\nfunction ignoreReject() {}\nexport function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying);\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise((resolve)=>{\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(()=>{\n resolve(underlying);\n }, 0);\n });\n}\n/**\n * Returns the appropriate runtime stage for the current point in the render.\n * Runtime-prefetchable segments render in the early stages and should wait\n * for EarlyRuntime. Non-prefetchable segments render in the later stages\n * and should wait for Runtime.\n */ export function getRuntimeStage(stagedRendering) {\n if (stagedRendering.currentStage === RenderStage.EarlyStatic || stagedRendering.currentStage === RenderStage.EarlyRuntime) {\n return RenderStage.EarlyRuntime;\n }\n return RenderStage.Runtime;\n}\n/**\n * Delays until the appropriate runtime stage based on the current stage of\n * the rendering pipeline:\n *\n * - Early stages → wait for EarlyRuntime\n * (for runtime-prefetchable segments)\n * - Later stages → wait for Runtime\n * (for segments not using runtime prefetch)\n *\n * This ensures that cookies()/headers()/etc. resolve at the right time for\n * each segment type.\n */ export function delayUntilRuntimeStage(prerenderStore, result) {\n const { stagedRendering } = prerenderStore;\n if (!stagedRendering) {\n return result;\n }\n return stagedRendering.waitForStage(getRuntimeStage(stagedRendering)).then(()=>result);\n}\n\n//# sourceMappingURL=dynamic-rendering-utils.js.map","/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */ export const scheduleOnNextTick = (cb)=>{\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(()=>{\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0);\n } else {\n process.nextTick(cb);\n }\n });\n};\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */ export const scheduleImmediate = (cb)=>{\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0);\n } else {\n setImmediate(cb);\n }\n};\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */ export function atLeastOneTask() {\n return new Promise((resolve)=>scheduleImmediate(resolve));\n}\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */ export function waitAtLeastOneReactRenderTask() {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r)=>setTimeout(r, 0));\n } else {\n return new Promise((r)=>setImmediate(r));\n }\n}\n\n//# sourceMappingURL=scheduler.js.map","const REACT_POSTPONE_TYPE = Symbol.for('react.postpone');\nexport function isPostpone(error) {\n return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE;\n}\n\n//# sourceMappingURL=is-postpone.js.map","import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-utils';\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone';\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr';\nimport { isNextRouterError } from './is-next-router-error';\nimport { isDynamicPostpone, isPrerenderInterruptedError } from '../../server/app-render/dynamic-rendering';\nimport { isDynamicServerError } from './hooks-server-context';\nexport function unstable_rethrow(error) {\n if (isNextRouterError(error) || isBailoutToCSRError(error) || isDynamicServerError(error) || isDynamicPostpone(error) || isPostpone(error) || isHangingPromiseRejectionError(error) || isPrerenderInterruptedError(error)) {\n throw error;\n }\n if (error instanceof Error && 'cause' in error) {\n unstable_rethrow(error.cause);\n }\n}\n\n//# sourceMappingURL=unstable-rethrow.server.js.map","let warnOnce = (_)=>{};\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set();\n warnOnce = (msg)=>{\n if (!warnings.has(msg)) {\n console.warn(msg);\n }\n warnings.add(msg);\n };\n}\nexport { warnOnce };\n\n//# sourceMappingURL=warn-once.js.map","'use client';\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\n/**\n * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a\n * fallback component for HTTP errors.\n *\n * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.\n *\n * e.g. 404\n * 404 represents not found, and the fallback component pair contains the component and its styles.\n *\n */ import React, { useContext } from 'react';\nimport { useUntrackedPathname } from '../navigation-untracked';\nimport { HTTPAccessErrorStatus, getAccessFallbackHTTPStatus, getAccessFallbackErrorTypeByStatus, isHTTPAccessFallbackError } from './http-access-fallback';\nimport { warnOnce } from '../../../shared/lib/utils/warn-once';\nimport { MissingSlotContext } from '../../../shared/lib/app-router-context.shared-runtime';\nclass HTTPAccessFallbackErrorBoundary extends React.Component {\n constructor(props){\n super(props);\n this.state = {\n triggeredStatus: undefined,\n previousPathname: props.pathname\n };\n }\n componentDidCatch() {\n if (process.env.NODE_ENV === 'development' && this.props.missingSlots && this.props.missingSlots.size > 0 && // A missing children slot is the typical not-found case, so no need to warn\n !this.props.missingSlots.has('children')) {\n let warningMessage = 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\\n' + 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\\n\\n';\n const formattedSlots = Array.from(this.props.missingSlots).sort((a, b)=>a.localeCompare(b)).map((slot)=>`@${slot}`).join(', ');\n warningMessage += 'Missing slots: ' + formattedSlots;\n warnOnce(warningMessage);\n }\n }\n static getDerivedStateFromError(error) {\n if (isHTTPAccessFallbackError(error)) {\n const httpStatus = getAccessFallbackHTTPStatus(error);\n return {\n triggeredStatus: httpStatus\n };\n }\n // Re-throw if error is not for 404\n throw error;\n }\n static getDerivedStateFromProps(props, state) {\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */ if (props.pathname !== state.previousPathname && state.triggeredStatus) {\n return {\n triggeredStatus: undefined,\n previousPathname: props.pathname\n };\n }\n return {\n triggeredStatus: state.triggeredStatus,\n previousPathname: props.pathname\n };\n }\n render() {\n const { notFound, forbidden, unauthorized, children } = this.props;\n const { triggeredStatus } = this.state;\n const errorComponents = {\n [HTTPAccessErrorStatus.NOT_FOUND]: notFound,\n [HTTPAccessErrorStatus.FORBIDDEN]: forbidden,\n [HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized\n };\n if (triggeredStatus) {\n const isNotFound = triggeredStatus === HTTPAccessErrorStatus.NOT_FOUND && notFound;\n const isForbidden = triggeredStatus === HTTPAccessErrorStatus.FORBIDDEN && forbidden;\n const isUnauthorized = triggeredStatus === HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized;\n // If there's no matched boundary in this layer, keep throwing the error by rendering the children\n if (!(isNotFound || isForbidden || isUnauthorized)) {\n return children;\n }\n return /*#__PURE__*/ _jsxs(_Fragment, {\n children: [\n /*#__PURE__*/ _jsx(\"meta\", {\n name: \"robots\",\n content: \"noindex\"\n }),\n process.env.NODE_ENV === 'development' && /*#__PURE__*/ _jsx(\"meta\", {\n name: \"boundary-next-error\",\n content: getAccessFallbackErrorTypeByStatus(triggeredStatus)\n }),\n errorComponents[triggeredStatus]\n ]\n });\n }\n return children;\n }\n}\nexport function HTTPAccessFallbackBoundary({ notFound, forbidden, unauthorized, children }) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these error can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname();\n const missingSlots = useContext(MissingSlotContext);\n const hasErrorFallback = !!(notFound || forbidden || unauthorized);\n if (hasErrorFallback) {\n return /*#__PURE__*/ _jsx(HTTPAccessFallbackErrorBoundary, {\n pathname: pathname,\n notFound: notFound,\n forbidden: forbidden,\n unauthorized: unauthorized,\n missingSlots: missingSlots,\n children: children\n });\n }\n return /*#__PURE__*/ _jsx(_Fragment, {\n children: children\n });\n}\n\n//# sourceMappingURL=error-boundary.js.map","import { useContext } from 'react';\nimport { PathnameContext } from '../../shared/lib/hooks-client-context.shared-runtime';\n/**\n * This checks to see if the current render has any unknown route parameters that\n * would cause the pathname to be dynamic. It's used to trigger a different\n * render path in the error boundary.\n *\n * @returns true if there are any unknown route parameters, false otherwise\n */ function hasFallbackRouteParams() {\n if (typeof window === 'undefined') {\n // AsyncLocalStorage should not be included in the client bundle.\n const { workUnitAsyncStorage } = require('../../server/app-render/work-unit-async-storage.external');\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (!workUnitStore) return false;\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'validation-client':\n const fallbackParams = workUnitStore.fallbackRouteParams;\n return fallbackParams ? fallbackParams.size > 0 : false;\n case 'prerender-legacy':\n case 'request':\n case 'prerender-runtime':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n return false;\n }\n return false;\n}\n/**\n * This returns a `null` value if there are any unknown route parameters, and\n * otherwise returns the pathname from the context. This is an alternative to\n * `usePathname` that is used in the error boundary to avoid rendering the\n * error boundary when there are unknown route parameters. This doesn't throw\n * when accessed with unknown route parameters.\n *\n * @returns\n *\n * @internal\n */ export function useUntrackedPathname() {\n // If there are any unknown route parameters we would typically throw\n // an error, but this internal method allows us to return a null value instead\n // for components that do not propagate the pathname to the static shell (like\n // the error boundary).\n if (hasFallbackRouteParams()) {\n return null;\n }\n // This shouldn't cause any issues related to conditional rendering because\n // the environment will be consistent for the render.\n // eslint-disable-next-line react-hooks/rules-of-hooks\n return useContext(PathnameContext);\n}\n\n//# sourceMappingURL=navigation-untracked.js.map","export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\n// Header for the Instant Navigation Testing API. In development and testing\n// builds, static pre-renders normally don't happen. This header tells the\n// server to perform a static pre-render anyway, allowing tests to assert on\n// the prefetched UI. Not exposed in production builds by default.\nexport const NEXT_INSTANT_PREFETCH_HEADER =\n 'next-instant-navigation-testing-prefetch' as const\n\n// Cookie for the Instant Navigation Testing API. Used for MPA navigations\n// (page reload, full page load) where we can't set request headers. When set,\n// the server renders only the static shell. Not exposed in production builds\n// by default.\nexport const NEXT_INSTANT_TEST_COOKIE =\n 'next-instant-navigation-testing' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n","export function getSegmentValue(segment) {\n return Array.isArray(segment) ? segment[1] : segment;\n}\nexport function isGroupSegment(segment) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')');\n}\nexport function isParallelRouteSegment(segment) {\n return segment.startsWith('@') && segment !== '@children';\n}\nexport function addSearchParamsIfPageSegment(segment, searchParams) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY);\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams);\n return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY;\n }\n return segment;\n}\nexport function computeSelectedLayoutSegment(segments, parallelRouteKey) {\n if (!segments || segments.length === 0) {\n return null;\n }\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1];\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment;\n}\n/** Get the canonical parameters from the current level to the leaf node. */ export function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) {\n let node;\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey];\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1];\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0];\n }\n if (!node) return segmentPath;\n const segment = node[0];\n let segmentValue = getSegmentValue(segment);\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath;\n }\n segmentPath.push(segmentValue);\n return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath);\n}\nexport const PAGE_SEGMENT_KEY = '__PAGE__';\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__';\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found';\n\n//# sourceMappingURL=segment.js.map","import { PAGE_SEGMENT_KEY } from '../segment';\nexport const ROOT_SEGMENT_REQUEST_KEY = '';\nexport const HEAD_REQUEST_KEY = '/_head';\nexport function createSegmentRequestKeyPart(segment) {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY;\n }\n const safeName = // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found' ? '_not-found' : encodeToFilesystemAndURLSafeString(segment);\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName;\n }\n const name = segment[0];\n const paramType = segment[2];\n const safeName = encodeToFilesystemAndURLSafeString(name);\n const encodedName = '$' + paramType + '$' + safeName;\n return encodedName;\n}\nexport function appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, childRequestKeyPart) {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey = parallelRouteKey === 'children' ? childRequestKeyPart : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`;\n return parentRequestKey + '/' + slotKey;\n}\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/;\nfunction encodeToFilesystemAndURLSafeString(value) {\n if (simpleParamValueRegex.test(value)) {\n return value;\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value).replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n ;\n return '!' + base64url;\n}\nexport function convertSegmentPathToStaticExportFilename(segmentPath) {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`;\n}\n\n//# sourceMappingURL=segment-value-encoding.js.map","import { addSearchParamsIfPageSegment, DEFAULT_SEGMENT_KEY, PAGE_SEGMENT_KEY } from '../shared/lib/segment';\nimport { ROOT_SEGMENT_REQUEST_KEY } from '../shared/lib/segment-cache/segment-value-encoding';\nimport { NEXT_REWRITTEN_PATH_HEADER, NEXT_REWRITTEN_QUERY_HEADER, NEXT_RSC_UNION_QUERY } from './components/app-router-headers';\nexport function getRenderedSearch(response) {\n // If the server performed a rewrite, the search params used to render the\n // page will be different from the params in the request URL. In this case,\n // the response will include a header that gives the rewritten search query.\n const rewrittenQuery = response.headers.get(NEXT_REWRITTEN_QUERY_HEADER);\n if (rewrittenQuery !== null) {\n return rewrittenQuery === '' ? '' : '?' + rewrittenQuery;\n }\n // If the header is not present, there was no rewrite, so we use the search\n // query of the response URL.\n return urlToUrlWithoutFlightMarker(new URL(response.url)).search;\n}\nexport function getRenderedPathname(response) {\n // If the server performed a rewrite, the pathname used to render the\n // page will be different from the pathname in the request URL. In this case,\n // the response will include a header that gives the rewritten pathname.\n const rewrittenPath = response.headers.get(NEXT_REWRITTEN_PATH_HEADER);\n return rewrittenPath ?? urlToUrlWithoutFlightMarker(new URL(response.url)).pathname;\n}\n// Pathname parts come from `URL.pathname.split('/')`, so they are already\n// in the encoded form the URL parser produces. The server-side equivalent\n// (`get-dynamic-param.ts`) starts from a decoded param value and applies\n// `encodeURIComponent` once. The two encodings are not the same — for\n// example, the URL parser leaves `,` and `:` untouched while\n// `encodeURIComponent` percent-encodes them. To produce the same canonical\n// form on the client (and avoid double-encoding `%xx` sequences such as\n// `%2F` → `%252F`), we decode the URL part first and re-encode it.\nfunction canonicalizeURLPart(part) {\n try {\n return encodeURIComponent(decodeURIComponent(part));\n } catch {\n // `decodeURIComponent` throws on malformed sequences. Fall back to the\n // already-encoded form rather than failing the navigation.\n return part;\n }\n}\nexport function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) {\n // This needs to match the behavior in get-dynamic-param.ts.\n switch(paramType){\n // Catchalls\n case 'c':\n {\n // Catchalls receive all the remaining URL parts. If there are no\n // remaining pathname parts, return an empty array.\n return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>canonicalizeURLPart(s)) : [];\n }\n // Catchall intercepted\n case 'ci(..)(..)':\n case 'ci(.)':\n case 'ci(..)':\n case 'ci(...)':\n {\n const prefix = paramType.length - 2;\n return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s, i)=>{\n if (i === 0) {\n return canonicalizeURLPart(s.slice(prefix));\n }\n return canonicalizeURLPart(s);\n }) : [];\n }\n // Optional catchalls\n case 'oc':\n {\n // Optional catchalls receive all the remaining URL parts, unless this is\n // the end of the pathname, in which case they return null.\n return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>canonicalizeURLPart(s)) : null;\n }\n // Dynamic\n case 'd':\n {\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return '';\n }\n return canonicalizeURLPart(pathnameParts[partIndex]);\n }\n // Dynamic intercepted\n case 'di(..)(..)':\n case 'di(.)':\n case 'di(..)':\n case 'di(...)':\n {\n const prefix = paramType.length - 2;\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return '';\n }\n return canonicalizeURLPart(pathnameParts[partIndex].slice(prefix));\n }\n default:\n paramType;\n return '';\n }\n}\nexport function doesStaticSegmentAppearInURL(segment) {\n // This is not a parameterized segment; however, we need to determine\n // whether or not this segment appears in the URL. For example, this route\n // groups do not appear in the URL, so they should be skipped. Any other\n // special cases must be handled here.\n // TODO: Consider encoding this directly into the router tree instead of\n // inferring it on the client based on the segment type. Something like\n // a `doesAppearInURL` flag in FlightRouterState.\n if (segment === ROOT_SEGMENT_REQUEST_KEY || // For some reason, the loader tree sometimes includes extra __PAGE__\n // \"layouts\" when part of a parallel route. But it's not a leaf node.\n // Otherwise, we wouldn't need this special case because pages are\n // always leaf nodes.\n // TODO: Investigate why the loader produces these fake page segments.\n segment.startsWith(PAGE_SEGMENT_KEY) || // Route groups.\n segment[0] === '(' && segment.endsWith(')') || segment === DEFAULT_SEGMENT_KEY || segment === '/_not-found') {\n return false;\n } else {\n // All other segment types appear in the URL\n return true;\n }\n}\nexport function getCacheKeyForDynamicParam(paramValue, renderedSearch) {\n // This needs to match the logic in get-dynamic-param.ts, until we're able to\n // unify the various implementations so that these are always computed on\n // the client.\n if (typeof paramValue === 'string') {\n // TODO: Refactor or remove this helper function to accept a string rather\n // than the whole segment type. Also we can probably just append the\n // search string instead of turning it into JSON.\n const pageSegmentWithSearchParams = addSearchParamsIfPageSegment(paramValue, Object.fromEntries(new URLSearchParams(renderedSearch)));\n return pageSegmentWithSearchParams;\n } else if (paramValue === null) {\n return '';\n } else {\n return paramValue.join('/');\n }\n}\nexport function urlToUrlWithoutFlightMarker(url) {\n const urlWithoutFlightParameters = new URL(url);\n urlWithoutFlightParameters.searchParams.delete(NEXT_RSC_UNION_QUERY);\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export' && urlWithoutFlightParameters.pathname.endsWith('.txt')) {\n const { pathname } = urlWithoutFlightParameters;\n const length = pathname.endsWith('/index.txt') ? 10 : 4;\n // Slice off `/index.txt` or `.txt` from the end of the pathname\n urlWithoutFlightParameters.pathname = pathname.slice(0, -length);\n }\n }\n return urlWithoutFlightParameters;\n}\nexport function getParamValueFromCacheKey(paramCacheKey, paramType) {\n // Turn the cache key string sent by the server (as part of FlightRouterState)\n // into a value that can be passed to `useParams` and client components.\n const isCatchAll = paramType === 'c' || paramType === 'oc';\n if (isCatchAll) {\n // Catch-all param keys are a concatenation of the path segments.\n // See equivalent logic in `getSelectedParams`.\n // TODO: We should just pass the array directly, rather than concatenate\n // it to a string and then split it back to an array. It needs to be an\n // array in some places, like when passing a key React, but we can convert\n // it at runtime in those places.\n return paramCacheKey.split('/');\n }\n return paramCacheKey;\n}\nexport function urlSearchParamsToParsedUrlQuery(searchParams) {\n // Converts a URLSearchParams object to the same type used by the server when\n // creating search params props, i.e. the type returned by Node's\n // \"querystring\" module.\n const result = {};\n for (const [key, value] of searchParams.entries()){\n if (result[key] === undefined) {\n result[key] = value;\n } else if (Array.isArray(result[key])) {\n result[key].push(value);\n } else {\n result[key] = [\n result[key],\n value\n ];\n }\n }\n return result;\n}\n\n//# sourceMappingURL=route-params.js.map","import type { Dispatch } from 'react'\nimport React, { use, useMemo, useOptimistic } from 'react'\nimport { isThenable } from '../../shared/lib/is-thenable'\nimport type { AppRouterActionQueue } from './app-router-instance'\nimport {\n ACTION_REFRESH,\n type AppRouterState,\n type ReducerActions,\n type ReducerState,\n} from './router-reducer/router-reducer-types'\n\n// The app router state lives outside of React, so we can import the dispatch\n// method directly wherever we need it, rather than passing it around via props\n// or context.\nlet dispatch: Dispatch | null = null\n\n/**\n * Called when the instant navigation test lock is released. If the router\n * is initialized, dispatches a soft refresh to fetch dynamic data. If not\n * (e.g. the lock was released before hydration finished), falls back to a\n * hard reload.\n */\nexport function refreshOnInstantNavigationUnlock() {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n if (dispatch !== null) {\n dispatch({ type: ACTION_REFRESH, bypassCacheInvalidation: true })\n } else {\n window.location.reload()\n }\n }\n}\n\nexport function dispatchAppRouterAction(action: ReducerActions) {\n if (dispatch === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n dispatch(action)\n}\n\n// Optimistic state setter for experimental_gesturePush. Only should be used\n// during a gesture transition.\nlet setGestureRouterState: ((state: ReducerState) => void) | null = null\n\nexport function dispatchGestureState(state: ReducerState) {\n if (setGestureRouterState === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n setGestureRouterState(state)\n}\n\nconst __DEV__ = process.env.NODE_ENV !== 'production'\nconst promisesWithDebugInfo: WeakMap<\n Promise,\n Promise & { _debugInfo?: Array }\n> = __DEV__ ? new WeakMap() : (null as any)\n\nexport function useActionQueue(\n actionQueue: AppRouterActionQueue\n): AppRouterState {\n const [canonicalState, setState] = React.useState(\n actionQueue.state\n )\n\n // Wrap the canonical state in useOptimistic to support\n // experimental_gesturePush. During a gesture transition, this returns a fork\n // of the router state that represents the eventual target if/when the gesture\n // completes. Otherwise it returns the canonical state.\n const [state, setGesture] = useOptimistic(canonicalState)\n if (typeof window !== 'undefined') {\n setGestureRouterState = setGesture\n }\n\n // Because of a known issue that requires to decode Flight streams inside the\n // render phase, we have to be a bit clever and assign the dispatch method to\n // a module-level variable upon initialization. The useState hook in this\n // module only exists to synchronize state that lives outside of React.\n // Ideally, what we'd do instead is pass the state as a prop to root.render;\n // this is conceptually how we're modeling the app router state, despite the\n // weird implementation details.\n let nextDispatch: Dispatch\n\n if (process.env.NODE_ENV !== 'production') {\n const { useAppDevRenderingIndicator } =\n require('../../next-devtools/userspace/use-app-dev-rendering-indicator') as typeof import('../../next-devtools/userspace/use-app-dev-rendering-indicator')\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const appDevRenderingIndicator = useAppDevRenderingIndicator()\n\n nextDispatch = (action: ReducerActions) => {\n appDevRenderingIndicator(() => {\n actionQueue.dispatch(action, setState)\n })\n }\n } else {\n nextDispatch = (action: ReducerActions) =>\n actionQueue.dispatch(action, setState)\n }\n\n if (typeof window !== 'undefined') {\n dispatch = nextDispatch\n }\n\n // When navigating to a non-prefetched route, then App Router state will be\n // blocked until the server responds. We need to transfer the `_debugInfo`\n // from the underlying Flight response onto the top-level promise that is\n // passed to React (via `use`) so that the latency is accurately represented\n // in the React DevTools.\n const stateWithDebugInfo = useMemo(() => {\n if (!__DEV__) {\n return state\n }\n\n if (isThenable(state)) {\n // useMemo can't be used to cache a Promise since the memoized value is thrown\n // away when we suspend. So we use a WeakMap to cache the Promise with debug info.\n let promiseWithDebugInfo = promisesWithDebugInfo.get(state)\n if (promiseWithDebugInfo === undefined) {\n const debugInfo: Array = []\n promiseWithDebugInfo = Promise.resolve(state).then((asyncState) => {\n if (asyncState.debugInfo !== null) {\n debugInfo.push(...asyncState.debugInfo)\n }\n return asyncState\n }) as Promise & { _debugInfo?: Array }\n promiseWithDebugInfo._debugInfo = debugInfo\n\n promisesWithDebugInfo.set(state, promiseWithDebugInfo)\n }\n\n return promiseWithDebugInfo\n }\n return state\n }, [state])\n\n return isThenable(stateWithDebugInfo)\n ? use(stateWithDebugInfo)\n : stateWithDebugInfo\n}\n","/**\n * Navigation lock for the Instant Navigation Testing API.\n *\n * Manages the in-memory lock (a promise) that gates dynamic data writes\n * during instant navigation captures, and owns all cookie state\n * transitions (pending → captured-MPA, pending → captured-SPA).\n *\n * External actors (Playwright, devtools) set [0] to start a lock scope\n * and delete the cookie to end one. Next.js writes captured values.\n * The CookieStore handler distinguishes them by value: pending = external,\n * captured = self-write (ignored).\n */\n\nimport type { FlightRouterState } from '../../../shared/lib/app-router-types'\nimport { NEXT_INSTANT_TEST_COOKIE } from '../app-router-headers'\nimport { refreshOnInstantNavigationUnlock } from '../use-action-queue'\n\ntype InstantNavCookieState = 'pending' | 'mpa' | 'spa'\n\ntype InstantCookie =\n // pending (waiting to capture)\n | [captured: 0, id: string]\n // captured MPA page load\n | [captured: 1, id: string, state: null]\n // captured SPA navigation (from/to route trees)\n | [\n captured: 1,\n id: string,\n state: { from: FlightRouterState; to: FlightRouterState | null },\n ]\n\nfunction parseCookieValue(raw: string): InstantNavCookieState {\n try {\n const parsed = JSON.parse(raw)\n if (Array.isArray(parsed) && parsed.length >= 3) {\n const rawState = parsed[2]\n return rawState === null ? 'mpa' : 'spa'\n }\n } catch {}\n return 'pending'\n}\n\nfunction writeCookieValue(value: InstantCookie): void {\n if (typeof cookieStore === 'undefined') {\n return\n }\n // Read the existing cookie to preserve its attributes (domain, path),\n // then write back with the new value. This updates the same cookie\n // entry that the external actor created, regardless of how it was\n // scoped.\n cookieStore.get(NEXT_INSTANT_TEST_COOKIE).then((existing: any) => {\n if (existing) {\n const options: any = {\n name: NEXT_INSTANT_TEST_COOKIE,\n value: JSON.stringify(value),\n path: existing.path ?? '/',\n }\n if (existing.domain) {\n options.domain = existing.domain\n }\n cookieStore.set(options)\n }\n })\n}\n\ntype NavigationLockState = {\n promise: Promise\n resolve: () => void\n}\n\nlet lockState: NavigationLockState | null = null\n\nfunction acquireLock(): void {\n if (lockState !== null) {\n return\n }\n let resolve: () => void\n const promise = new Promise((r) => {\n resolve = r\n })\n lockState = { promise, resolve: resolve! }\n}\n\nfunction releaseLock(): void {\n if (lockState !== null) {\n lockState.resolve()\n lockState = null\n }\n}\n\n/**\n * Sets up the cookie-based lock. Handles the initial page load state and\n * registers a CookieStore listener for runtime changes.\n *\n * Called once during page initialization from app-globals.ts.\n */\nexport function startListeningForInstantNavigationCookie(): void {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n // If the server served a static shell, this is an MPA page load\n // while the lock is held. Transition to captured-MPA and acquire.\n if (self.__next_instant_test) {\n if (typeof cookieStore !== 'undefined') {\n // If the cookie was already cleared during the MPA page\n // transition, reload to get the full dynamic page.\n cookieStore.get(NEXT_INSTANT_TEST_COOKIE).then((cookie: any) => {\n if (!cookie) {\n window.location.reload()\n }\n })\n }\n\n writeCookieValue([1, `c${Math.random()}`, null])\n acquireLock()\n }\n\n if (typeof cookieStore === 'undefined') {\n return\n }\n\n cookieStore.addEventListener('change', (event: CookieChangeEvent) => {\n for (const cookie of event.changed) {\n if (cookie.name === NEXT_INSTANT_TEST_COOKIE) {\n const state = parseCookieValue(cookie.value ?? '')\n\n if (state !== 'pending') {\n // Captured value — our own transition. Ignore.\n return\n }\n\n // Pending value — external actor starting a new lock scope.\n if (lockState !== null) {\n releaseLock()\n }\n acquireLock()\n return\n }\n }\n\n for (const cookie of event.deleted) {\n if (cookie.name === NEXT_INSTANT_TEST_COOKIE) {\n releaseLock()\n refreshOnInstantNavigationUnlock()\n return\n }\n }\n })\n }\n}\n\n/**\n * Transitions the cookie from pending to captured-SPA. Called when a\n * client-side navigation is captured by the lock.\n *\n * @param fromTree - The flight router state of the from-route\n * @param toTree - The flight router state of the to-route (null if not yet known)\n */\nexport function transitionToCapturedSPA(\n fromTree: FlightRouterState,\n toTree: FlightRouterState | null\n): void {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n writeCookieValue([1, `c${Math.random()}`, { from: fromTree, to: toTree }])\n }\n}\n\n/**\n * Updates the captured-SPA cookie with the resolved route trees.\n * Called after the prefetch resolves and the target route tree is known.\n */\nexport function updateCapturedSPAToTree(\n fromTree: FlightRouterState,\n toTree: FlightRouterState\n): void {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n writeCookieValue([1, `c${Math.random()}`, { from: fromTree, to: toTree }])\n }\n}\n\n/**\n * Returns true if the navigation lock is currently active.\n */\nexport function isNavigationLocked(): boolean {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n return lockState !== null\n }\n return false\n}\n\n/**\n * Waits for the navigation lock to be released, if it's currently held.\n * No-op if the lock is not acquired.\n */\nexport async function waitForNavigationLockIfActive(): Promise {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n if (lockState !== null) {\n await lockState.promise\n }\n }\n}\n","'use client';\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport React, { Activity, Fragment, useContext, use, Suspense, useDeferredValue, useLayoutEffect } from 'react';\nimport ReactDOM from 'react-dom';\nimport { LayoutRouterContext, GlobalLayoutRouterContext, TemplateContext } from '../../shared/lib/app-router-context.shared-runtime';\nimport { unresolvedThenable } from './unresolved-thenable';\nimport { ErrorBoundary } from './error-boundary';\nimport { disableSmoothScrollDuringRouteTransition } from '../../shared/lib/router/utils/disable-smooth-scroll';\nimport { RedirectBoundary } from './redirect-boundary';\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary';\nimport { createRouterCacheKey } from './router-reducer/create-router-cache-key';\nimport { useRouterBFCache } from './bfcache-state-manager';\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths';\nimport { NavigationPromisesContext } from '../../shared/lib/hooks-client-context.shared-runtime';\nimport { getParamValueFromCacheKey } from '../route-params';\nimport { isDeferredRsc } from './router-reducer/ppr-navigations';\nconst enableNewScrollHandler = process.env.__NEXT_APP_NEW_SCROLL_HANDLER;\nconst __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;\n// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available\n/**\n * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning\n */ function findDOMNode(instance) {\n // Tree-shake for server bundle\n if (typeof window === 'undefined') return null;\n // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init.\n // We need to lazily reference it.\n const internal_reactDOMfindDOMNode = __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode;\n return internal_reactDOMfindDOMNode(instance);\n}\nconst rectProperties = [\n 'bottom',\n 'height',\n 'left',\n 'right',\n 'top',\n 'width',\n 'x',\n 'y'\n];\n/**\n * Check if a HTMLElement is hidden or fixed/sticky position\n */ function shouldSkipElement(element) {\n // we ignore fixed or sticky positioned elements since they'll likely pass the \"in-viewport\" check\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if ([\n 'sticky',\n 'fixed'\n ].includes(getComputedStyle(element).position)) {\n return true;\n }\n // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent`\n // because `offsetParent` doesn't consider document/body\n const rect = element.getBoundingClientRect();\n return rectProperties.every((item)=>rect[item] === 0);\n}\n/**\n * Check if the top corner of the HTMLElement is in the viewport.\n */ function topOfElementInViewport(instance, viewportHeight) {\n const rects = instance.getClientRects();\n if (rects.length === 0) {\n // Just to be explicit.\n return false;\n }\n let elementTop = Number.POSITIVE_INFINITY;\n for(let i = 0; i < rects.length; i++){\n const rect = rects[i];\n if (rect.top < elementTop) {\n elementTop = rect.top;\n }\n }\n return elementTop >= 0 && elementTop <= viewportHeight;\n}\n/**\n * Find the DOM node for a hash fragment.\n * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior.\n * If the hash fragment is an id, the page has to scroll to the element with that id.\n * If the hash fragment is a name, the page has to scroll to the first element with that name.\n */ function getHashFragmentDomNode(hashFragment) {\n // If the hash fragment is `top` the page has to scroll to the top of the page.\n if (hashFragment === 'top') {\n return document.body;\n }\n // If the hash fragment is an id, the page has to scroll to the element with that id.\n return document.getElementById(hashFragment) ?? // If the hash fragment is a name, the page has to scroll to the first element with that name.\n document.getElementsByName(hashFragment)[0];\n}\nclass InnerScrollAndFocusHandlerOld extends React.Component {\n componentDidMount() {\n this.handlePotentialScroll();\n }\n componentDidUpdate() {\n this.handlePotentialScroll();\n }\n render() {\n return this.props.children;\n }\n constructor(...args){\n super(...args), this.handlePotentialScroll = ()=>{\n // Handle scroll and focus, it's only applied once.\n const { focusAndScrollRef, cacheNode } = this.props;\n const scrollRef = focusAndScrollRef.forceScroll ? focusAndScrollRef.scrollRef : cacheNode.scrollRef;\n if (scrollRef === null || !scrollRef.current) return;\n let domNode = null;\n const hashFragment = focusAndScrollRef.hashFragment;\n if (hashFragment) {\n domNode = getHashFragmentDomNode(hashFragment);\n }\n // `findDOMNode` is tricky because it returns just the first child if the component is a fragment.\n // This already caused a bug where the first child was a in head.\n if (!domNode) {\n domNode = findDOMNode(this);\n }\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (!(domNode instanceof Element)) {\n return;\n }\n // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior.\n // If the element is skipped, try to select the next sibling and try again.\n while(!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)){\n if (process.env.NODE_ENV !== 'production') {\n if (domNode.parentElement?.localName === 'head') {\n // We enter this state when metadata was rendered as part of the page or via Next.js.\n // This is always a bug in Next.js and caused by React hoisting metadata.\n // Fixed with `experimental.appNewScrollHandler`\n }\n }\n // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead.\n if (domNode.nextElementSibling === null) {\n return;\n }\n domNode = domNode.nextElementSibling;\n }\n // Mark as scrolled so no other segment scrolls for this navigation.\n scrollRef.current = false;\n disableSmoothScrollDuringRouteTransition(()=>{\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n domNode.scrollIntoView();\n return;\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement;\n const viewportHeight = htmlElement.clientHeight;\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(domNode, viewportHeight)) {\n return;\n }\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0;\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(domNode, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n domNode.scrollIntoView();\n }\n }, {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange\n });\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false;\n focusAndScrollRef.hashFragment = null;\n // Set focus on the element\n domNode.focus();\n };\n }\n}\n/**\n * Fork of InnerScrollAndFocusHandlerOld using Fragment refs for scrolling.\n * No longer focuses the first host descendant.\n */ function InnerScrollHandlerNew(props) {\n const childrenRef = React.useRef(null);\n useLayoutEffect(()=>{\n const { focusAndScrollRef, cacheNode } = props;\n const scrollRef = focusAndScrollRef.forceScroll ? focusAndScrollRef.scrollRef : cacheNode.scrollRef;\n if (scrollRef === null || !scrollRef.current) return;\n let instance = null;\n const hashFragment = focusAndScrollRef.hashFragment;\n if (hashFragment) {\n instance = getHashFragmentDomNode(hashFragment);\n }\n if (!instance) {\n instance = childrenRef.current;\n }\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (instance === null) {\n return;\n }\n // Mark as scrolled so no other segment scrolls for this navigation.\n scrollRef.current = false;\n const activeElement = document.activeElement;\n if (activeElement !== null && 'blur' in activeElement && typeof activeElement.blur === 'function') {\n // Trying to match hard navigations.\n // Ideally we'd move the internal focus cursor either to the top\n // or at least before the segment. But there's no DOM API to do that,\n // so we just blur.\n // We could workaround this by moving focus to a temporary element in\n // the body. But adding elements might trigger layout or other effects\n // so it should be well motivated.\n activeElement.blur();\n }\n disableSmoothScrollDuringRouteTransition(()=>{\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n instance.scrollIntoView();\n return;\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement;\n const viewportHeight = htmlElement.clientHeight;\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(instance, viewportHeight)) {\n return;\n }\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0;\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(instance, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n instance.scrollIntoView();\n }\n }, {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange\n });\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false;\n focusAndScrollRef.hashFragment = null;\n }, // Used to run on every commit. We may be able to be smarter about this\n // but be prepared for lots of manual testing.\n undefined);\n return /*#__PURE__*/ _jsx(Fragment, {\n ref: childrenRef,\n children: props.children\n });\n}\nconst InnerScrollAndMaybeFocusHandler = enableNewScrollHandler ? InnerScrollHandlerNew : InnerScrollAndFocusHandlerOld;\nfunction ScrollAndMaybeFocusHandler({ children, cacheNode }) {\n const context = useContext(GlobalLayoutRouterContext);\n if (!context) {\n throw Object.defineProperty(new Error('invariant global layout router not mounted'), \"__NEXT_ERROR_CODE\", {\n value: \"E473\",\n enumerable: false,\n configurable: true\n });\n }\n return /*#__PURE__*/ _jsx(InnerScrollAndMaybeFocusHandler, {\n focusAndScrollRef: context.focusAndScrollRef,\n cacheNode: cacheNode,\n children: children\n });\n}\n/**\n * InnerLayoutRouter handles rendering the provided segment based on the cache.\n */ function InnerLayoutRouter({ tree, segmentPath, debugNameContext, cacheNode: maybeCacheNode, params, url, isActive }) {\n const context = useContext(GlobalLayoutRouterContext);\n const parentNavPromises = useContext(NavigationPromisesContext);\n if (!context) {\n throw Object.defineProperty(new Error('invariant global layout router not mounted'), \"__NEXT_ERROR_CODE\", {\n value: \"E473\",\n enumerable: false,\n configurable: true\n });\n }\n const cacheNode = maybeCacheNode !== null ? maybeCacheNode : //\n // This should only be reachable for inactive/hidden segments, during\n // prerendering The active segment should always be consistent with the\n // CacheNode tree. Regardless, if we don't have a matching CacheNode, we\n // must suspend rather than render nothing, to prevent showing an\n // inconsistent route.\n use(unresolvedThenable);\n // `rsc` represents the renderable node for this segment.\n // If this segment has a `prefetchRsc`, it's the statically prefetched data.\n // We should use that on initial render instead of `rsc`. Then we'll switch\n // to `rsc` when the dynamic response streams in.\n //\n // If no prefetch data is available, then we go straight to rendering `rsc`.\n const resolvedPrefetchRsc = cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc;\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n const rsc = useDeferredValue(cacheNode.rsc, resolvedPrefetchRsc);\n // `rsc` is either a React node or a promise for a React node, except we\n // special case `null` to represent that this segment's data is missing. If\n // it's a promise, we need to unwrap it so we can determine whether or not the\n // data is missing.\n let resolvedRsc;\n if (isDeferredRsc(rsc)) {\n const unwrappedRsc = use(rsc);\n if (unwrappedRsc === null) {\n // If the promise was resolved to `null`, it means the data for this\n // segment was not returned by the server. Suspend indefinitely. When this\n // happens, the router is responsible for triggering a new state update to\n // un-suspend this segment.\n use(unresolvedThenable);\n }\n resolvedRsc = unwrappedRsc;\n } else {\n // This is not a deferred RSC promise. Don't need to unwrap it.\n if (rsc === null) {\n use(unresolvedThenable);\n }\n resolvedRsc = rsc;\n }\n // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide\n // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`.\n // Promises are cached outside of render to survive suspense retries.\n let navigationPromises = null;\n if (process.env.NODE_ENV !== 'production') {\n const { createNestedLayoutNavigationPromises } = require('./navigation-devtools');\n navigationPromises = createNestedLayoutNavigationPromises(tree, parentNavPromises);\n }\n let children = resolvedRsc;\n if (navigationPromises) {\n children = /*#__PURE__*/ _jsx(NavigationPromisesContext.Provider, {\n value: navigationPromises,\n children: resolvedRsc\n });\n }\n children = // The layout router context narrows down tree and childNodes at each level.\n /*#__PURE__*/ _jsx(LayoutRouterContext.Provider, {\n value: {\n parentTree: tree,\n parentCacheNode: cacheNode,\n parentSegmentPath: segmentPath,\n parentParams: params,\n // This is always set to null as we enter a child segment. It's\n // populated by LoadingBoundaryProvider the next time we reach a\n // loading boundary.\n parentLoadingData: null,\n debugNameContext: debugNameContext,\n // TODO-APP: overriding of url for parallel routes\n url: url,\n isActive: isActive\n },\n children: children\n });\n return children;\n}\nexport function LoadingBoundaryProvider({ loading, children }) {\n // Provides the data needed to render a loading.tsx boundary, via context.\n //\n // loading.tsx creates a Suspense boundary around each of a layout's child\n // slots. (Might be bit confusing to think about the data flow, but: if\n // loading.tsx and layout.tsx are in the same directory, they are assigned\n // to the same CacheNode.)\n //\n // This provider component does not render the Suspense boundary directly;\n // that's handled by LoadingBoundary.\n //\n // TODO: For simplicity, we should combine this provider with LoadingBoundary\n // and render the Suspense boundary directly. The only real benefit of doing\n // it separately is so that when there are multiple parallel routes, we only\n // send the boundary data once, rather than once per child. But that's a\n // negligible benefit and can be achieved via caching instead.\n const parentContext = use(LayoutRouterContext);\n if (parentContext === null) {\n return children;\n }\n // All values except for parentLoadingData are the same as the parent context.\n return /*#__PURE__*/ _jsx(LayoutRouterContext.Provider, {\n value: {\n parentTree: parentContext.parentTree,\n parentCacheNode: parentContext.parentCacheNode,\n parentSegmentPath: parentContext.parentSegmentPath,\n parentParams: parentContext.parentParams,\n parentLoadingData: loading,\n debugNameContext: parentContext.debugNameContext,\n url: parentContext.url,\n isActive: parentContext.isActive\n },\n children: children\n });\n}\n/**\n * Renders suspense boundary with the provided \"loading\" property as the fallback.\n * If no loading property is provided it renders the children without a suspense boundary.\n */ function LoadingBoundary({ name, loading, children }) {\n // TODO: For LoadingBoundary, and the other built-in boundary types, don't\n // wrap in an extra function component if no user-defined boundary is\n // provided. In other words, inline this conditional wrapping logic into\n // the parent component. More efficient and keeps unnecessary junk out of\n // the component stack.\n if (loading !== null) {\n const loadingRsc = loading[0];\n const loadingStyles = loading[1];\n const loadingScripts = loading[2];\n return /*#__PURE__*/ _jsx(Suspense, {\n name: name,\n fallback: /*#__PURE__*/ _jsxs(_Fragment, {\n children: [\n loadingStyles,\n loadingScripts,\n loadingRsc\n ]\n }),\n children: children\n });\n }\n return /*#__PURE__*/ _jsx(_Fragment, {\n children: children\n });\n}\n/**\n * OuterLayoutRouter handles the current segment as well as rendering of other segments.\n * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.\n */ export default function OuterLayoutRouter({ parallelRouterKey, error, errorStyles, errorScripts, templateStyles, templateScripts, template, notFound, forbidden, unauthorized, segmentViewBoundaries }) {\n const context = useContext(LayoutRouterContext);\n if (!context) {\n throw Object.defineProperty(new Error('invariant expected layout router to be mounted'), \"__NEXT_ERROR_CODE\", {\n value: \"E56\",\n enumerable: false,\n configurable: true\n });\n }\n const { parentTree, parentCacheNode, parentSegmentPath, parentParams, parentLoadingData, url, isActive, debugNameContext } = context;\n // Get the CacheNode for this segment by reading it from the parent segment's\n // child map.\n const parentTreeSegment = parentTree[0];\n const segmentPath = parentSegmentPath === null ? // path. This has led to a bunch of special cases scattered throughout\n // the code. We should clean this up.\n [\n parallelRouterKey\n ] : parentSegmentPath.concat([\n parentTreeSegment,\n parallelRouterKey\n ]);\n // The \"state\" key of a segment is the one passed to React — it represents the\n // identity of the UI tree. Whenever the state key changes, the tree is\n // recreated and the state is reset. In the App Router model, search params do\n // not cause state to be lost, so two segments with the same segment path but\n // different search params should have the same state key.\n //\n // The \"cache\" key of a segment, however, *does* include the search params, if\n // it's possible that the segment accessed the search params on the server.\n // (This only applies to page segments; layout segments cannot access search\n // params on the server.)\n const activeTree = parentTree[1][parallelRouterKey];\n const maybeParentSlots = parentCacheNode.slots;\n if (activeTree === undefined || maybeParentSlots === null) {\n // Could not find a matching segment. The client tree is inconsistent with\n // the server tree. Suspend indefinitely; the router will have already\n // detected the inconsistency when handling the server response, and\n // triggered a refresh of the page to recover.\n use(unresolvedThenable);\n }\n let maybeValidationBoundaryId = null;\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS) {\n const { InstantValidationBoundaryContext } = require('./instant-validation/boundary');\n maybeValidationBoundaryId = use(InstantValidationBoundaryContext);\n }\n const activeSegment = activeTree[0];\n const activeCacheNode = maybeParentSlots[parallelRouterKey] ?? null;\n const activeStateKey = createRouterCacheKey(activeSegment, true) // no search params\n ;\n // At each level of the route tree, not only do we render the currently\n // active segment — we also render the last N segments that were active at\n // this level inside a hidden boundary, to preserve their state\n // if or when the user navigates to them again.\n //\n // bfcacheEntry is a linked list of FlightRouterStates.\n let bfcacheEntry = useRouterBFCache(activeTree, activeCacheNode, activeStateKey);\n let children = [];\n do {\n const tree = bfcacheEntry.tree;\n const cacheNode = bfcacheEntry.cacheNode;\n const stateKey = bfcacheEntry.stateKey;\n const segment = tree[0];\n /*\n - Error boundary\n - Only renders error boundary if error component is provided.\n - Rendered for each segment to ensure they have their own error state.\n - When gracefully degrade for bots, skip rendering error boundary.\n - Loading boundary\n - Only renders suspense boundary if loading components is provided.\n - Rendered for each segment to ensure they have their own loading state.\n - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch.\n */ let segmentBoundaryTriggerNode = null;\n let segmentViewStateNode = null;\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentBoundaryTriggerNode, SegmentViewStateNode } = require('../../next-devtools/userspace/app/segment-explorer-node');\n const pagePrefix = normalizeAppPath(url);\n segmentViewStateNode = /*#__PURE__*/ _jsx(SegmentViewStateNode, {\n page: pagePrefix\n }, pagePrefix);\n segmentBoundaryTriggerNode = /*#__PURE__*/ _jsx(_Fragment, {\n children: /*#__PURE__*/ _jsx(SegmentBoundaryTriggerNode, {})\n });\n }\n let params = parentParams;\n if (Array.isArray(segment)) {\n // This segment contains a route param. Accumulate these as we traverse\n // down the router tree. The result represents the set of params that\n // the layout/page components are permitted to access below this point.\n const paramName = segment[0];\n const paramCacheKey = segment[1];\n const paramType = segment[2];\n const paramValue = getParamValueFromCacheKey(paramCacheKey, paramType);\n if (paramValue !== null) {\n params = {\n ...parentParams,\n [paramName]: paramValue\n };\n }\n }\n const debugName = getBoundaryDebugNameFromSegment(segment);\n // `debugNameContext` represents the nearest non-\"virtual\" parent segment.\n // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments.\n // So if `debugName` is undefined, the context is passed through unchanged.\n const childDebugNameContext = debugName ?? debugNameContext;\n // In practical terms, clicking this name in the Suspense DevTools\n // should select the child slots of that layout.\n //\n // So the name we apply to the Activity boundary is actually based on\n // the nearest parent segments.\n //\n // We skip over \"virtual\" parents, i.e. ones inserted by Next.js that\n // don't correspond to application-defined code.\n const isVirtual = debugName === undefined;\n const debugNameToDisplay = isVirtual ? undefined : debugNameContext;\n let templateValue = /*#__PURE__*/ _jsxs(ScrollAndMaybeFocusHandler, {\n cacheNode: cacheNode,\n children: [\n /*#__PURE__*/ _jsx(ErrorBoundary, {\n errorComponent: error,\n errorStyles: errorStyles,\n errorScripts: errorScripts,\n children: /*#__PURE__*/ _jsx(LoadingBoundary, {\n name: debugNameToDisplay,\n // TODO: The loading module data for a segment is stored on the\n // parent, then applied to each of that parent segment's\n // parallel route slots. In the simple case where there's only\n // one parallel route (the `children` slot), this is no\n // different from if the loading module data were stored on the\n // child directly. But I'm not sure this actually makes sense\n // when there are multiple parallel routes. It's not a huge\n // issue because you always have the option to define a narrower\n // loading boundary for a particular slot. But this sort of\n // smells like an implementation accident to me.\n loading: parentLoadingData,\n children: /*#__PURE__*/ _jsx(HTTPAccessFallbackBoundary, {\n notFound: notFound,\n forbidden: forbidden,\n unauthorized: unauthorized,\n children: /*#__PURE__*/ _jsxs(RedirectBoundary, {\n children: [\n /*#__PURE__*/ _jsx(InnerLayoutRouter, {\n url: url,\n tree: tree,\n params: params,\n cacheNode: cacheNode,\n segmentPath: segmentPath,\n debugNameContext: childDebugNameContext,\n isActive: isActive && stateKey === activeStateKey\n }),\n segmentBoundaryTriggerNode\n ]\n })\n })\n })\n }),\n segmentViewStateNode\n ]\n });\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS && typeof maybeValidationBoundaryId === 'string') {\n const { RenderValidationBoundaryAtThisLevel } = require('./instant-validation/boundary');\n templateValue = /*#__PURE__*/ _jsx(RenderValidationBoundaryAtThisLevel, {\n id: maybeValidationBoundaryId,\n children: templateValue\n });\n }\n let child = /*#__PURE__*/ _jsxs(TemplateContext.Provider, {\n value: templateValue,\n children: [\n templateStyles,\n templateScripts,\n template\n ]\n }, stateKey);\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentStateProvider } = require('../../next-devtools/userspace/app/segment-explorer-node');\n child = /*#__PURE__*/ _jsxs(SegmentStateProvider, {\n children: [\n child,\n segmentViewBoundaries\n ]\n }, stateKey);\n }\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n child = /*#__PURE__*/ _jsx(Activity, {\n name: debugNameToDisplay,\n mode: stateKey === activeStateKey ? 'visible' : 'hidden',\n children: child\n }, stateKey);\n }\n children.push(child);\n bfcacheEntry = bfcacheEntry.next;\n }while (bfcacheEntry !== null);\n return children;\n}\nfunction getBoundaryDebugNameFromSegment(segment) {\n if (segment === '/') {\n // Reached the root\n return '/';\n }\n if (typeof segment === 'string') {\n if (isVirtualLayout(segment)) {\n return undefined;\n } else {\n return segment + '/';\n }\n }\n const paramCacheKey = segment[1];\n return paramCacheKey + '/';\n}\nfunction isVirtualLayout(segment) {\n return(// This is inserted by the loader. Uses double-underscore convention\n // (like __PAGE__ and __DEFAULT__) to avoid collisions with\n // user-defined route groups.\n segment === '(__SLOT__)');\n}\n\n//# sourceMappingURL=layout-router.js.map","'use client';\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport React, { startTransition } from 'react';\nimport { useUntrackedPathname } from './navigation-untracked';\nimport { isNextRouterError } from './is-next-router-error';\nimport { handleHardNavError } from './nav-failure-handler';\nimport { handleISRError } from './handle-isr-error';\nimport { isBot } from '../../shared/lib/router/utils/is-bot';\nimport { AppRouterContext } from '../../shared/lib/app-router-context.shared-runtime';\nconst isBotUserAgent = typeof window !== 'undefined' && isBot(window.navigator.userAgent);\nexport class ErrorBoundaryHandler extends React.Component {\n static{\n this.contextType = AppRouterContext;\n }\n constructor(props){\n super(props), this.reset = ()=>{\n this.setState({\n error: null\n });\n }, this.unstable_retry = ()=>{\n startTransition(()=>{\n this.context?.refresh();\n this.reset();\n });\n };\n this.state = {\n error: null,\n previousPathname: this.props.pathname\n };\n }\n static getDerivedStateFromError(error) {\n if (isNextRouterError(error)) {\n // Re-throw if an expected internal Next.js router error occurs\n // this means it should be handled by a different boundary (such as a NotFound boundary in a parent segment)\n throw error;\n }\n return {\n error\n };\n }\n static getDerivedStateFromProps(props, state) {\n const { error } = state;\n // if we encounter an error while\n // a navigation is pending we shouldn't render\n // the error boundary and instead should fallback\n // to a hard navigation to attempt recovering\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n if (error && handleHardNavError(error)) {\n // clear error so we don't render anything\n return {\n error: null,\n previousPathname: props.pathname\n };\n }\n }\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */ if (props.pathname !== state.previousPathname && state.error) {\n return {\n error: null,\n previousPathname: props.pathname\n };\n }\n return {\n error: state.error,\n previousPathname: props.pathname\n };\n }\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render() {\n //When it's bot request, segment level error boundary will keep rendering the children,\n // the final error will be caught by the root error boundary and determine wether need to apply graceful degrade.\n if (this.state.error && !isBotUserAgent) {\n handleISRError({\n error: this.state.error\n });\n return /*#__PURE__*/ _jsxs(_Fragment, {\n children: [\n this.props.errorStyles,\n this.props.errorScripts,\n /*#__PURE__*/ _jsx(this.props.errorComponent, {\n error: this.state.error,\n reset: this.reset,\n unstable_retry: this.unstable_retry\n })\n ]\n });\n }\n return this.props.children;\n }\n}\n/**\n * Handles errors through `getDerivedStateFromError`.\n * Renders the provided error component and provides a way to `reset` the error boundary state.\n */ /**\n * Renders error boundary with the provided \"errorComponent\" property as the fallback.\n * If no \"errorComponent\" property is provided it renders the children without an error boundary.\n */ export function ErrorBoundary({ errorComponent, errorStyles, errorScripts, children }) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these errors can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname();\n if (errorComponent) {\n return /*#__PURE__*/ _jsx(ErrorBoundaryHandler, {\n pathname: pathname,\n errorComponent: errorComponent,\n errorStyles: errorStyles,\n errorScripts: errorScripts,\n children: children\n });\n }\n return /*#__PURE__*/ _jsx(_Fragment, {\n children: children\n });\n}\n\n//# sourceMappingURL=error-boundary.js.map","import { warnOnce } from '../../utils/warn-once';\n/**\n * Run function with `scroll-behavior: auto` applied to ``.\n * This css change will be reverted after the function finishes.\n */ export function disableSmoothScrollDuringRouteTransition(fn, options = {}) {\n // if only the hash is changed, we don't need to disable smooth scrolling\n // we only care to prevent smooth scrolling when navigating to a new page to avoid jarring UX\n if (options.onlyHashChange) {\n fn();\n return;\n }\n const htmlElement = document.documentElement;\n const hasDataAttribute = htmlElement.dataset.scrollBehavior === 'smooth';\n if (!hasDataAttribute) {\n // Warn if smooth scrolling is detected but no data attribute is present\n if (process.env.NODE_ENV === 'development' && getComputedStyle(htmlElement).scrollBehavior === 'smooth') {\n warnOnce('Detected `scroll-behavior: smooth` on the `` element. To disable smooth scrolling during route transitions, ' + 'add `data-scroll-behavior=\"smooth\"` to your element. ' + 'Learn more: https://nextjs.org/docs/messages/missing-data-scroll-behavior');\n }\n // No smooth scrolling configured, run directly without style manipulation\n fn();\n return;\n }\n // Proceed with temporarily disabling smooth scrolling\n const existing = htmlElement.style.scrollBehavior;\n htmlElement.style.scrollBehavior = 'auto';\n if (!options.dontForceLayout) {\n // In Chrome-based browsers we need to force reflow before calling `scrollTo`.\n // Otherwise it will not pickup the change in scrollBehavior\n // More info here: https://github.com/vercel/next.js/issues/40719#issuecomment-1336248042\n htmlElement.getClientRects();\n }\n fn();\n htmlElement.style.scrollBehavior = existing;\n}\n\n//# sourceMappingURL=disable-smooth-scroll.js.map","/**\n * ReadonlyURLSearchParams implementation shared between client and server.\n * This file is intentionally not marked as 'use client' or 'use server'\n * so it can be imported by both environments.\n */ /** @internal */ class ReadonlyURLSearchParamsError extends Error {\n constructor(){\n super('Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams');\n }\n}\n/**\n * A read-only version of URLSearchParams that throws errors when mutation methods are called.\n * This ensures that the URLSearchParams returned by useSearchParams() cannot be mutated.\n */ export class ReadonlyURLSearchParams extends URLSearchParams {\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ append() {\n throw new ReadonlyURLSearchParamsError();\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ delete() {\n throw new ReadonlyURLSearchParamsError();\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ set() {\n throw new ReadonlyURLSearchParamsError();\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ sort() {\n throw new ReadonlyURLSearchParamsError();\n }\n}\n\n//# sourceMappingURL=readonly-url-search-params.js.map","'use client';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport React, { useEffect } from 'react';\nimport { useRouter } from './navigation';\nimport { getRedirectTypeFromError, getURLFromRedirectError } from './redirect';\nimport { isRedirectError } from './redirect-error';\nfunction HandleRedirect({ redirect, reset, redirectType }) {\n const router = useRouter();\n useEffect(()=>{\n React.startTransition(()=>{\n if (redirectType === 'push') {\n router.push(redirect, {});\n } else {\n router.replace(redirect, {});\n }\n reset();\n });\n }, [\n redirect,\n redirectType,\n reset,\n router\n ]);\n return null;\n}\nexport class RedirectErrorBoundary extends React.Component {\n constructor(props){\n super(props);\n this.state = {\n redirect: null,\n redirectType: null\n };\n }\n static getDerivedStateFromError(error) {\n if (isRedirectError(error)) {\n const url = getURLFromRedirectError(error);\n const redirectType = getRedirectTypeFromError(error);\n if ('handled' in error) {\n // The redirect was already handled. We'll still catch the redirect error\n // so that we can remount the subtree, but we don't actually need to trigger the\n // router.push.\n return {\n redirect: null,\n redirectType: null\n };\n }\n return {\n redirect: url,\n redirectType\n };\n }\n // Re-throw if error is not for redirect\n throw error;\n }\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render() {\n const { redirect, redirectType } = this.state;\n if (redirect !== null && redirectType !== null) {\n return /*#__PURE__*/ _jsx(HandleRedirect, {\n redirect: redirect,\n redirectType: redirectType,\n reset: ()=>this.setState({\n redirect: null\n })\n });\n }\n return this.props.children;\n }\n}\nexport function RedirectBoundary({ children }) {\n const router = useRouter();\n return /*#__PURE__*/ _jsx(RedirectErrorBoundary, {\n router: router,\n children: children\n });\n}\n\n//# sourceMappingURL=redirect-boundary.js.map","import { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment';\nexport function createRouterCacheKey(segment, withoutSearchParameters = false) {\n // if the segment is an array, it means it's a dynamic segment\n // for example, ['lang', 'en', 'd']. We need to convert it to a string to store it as a cache node key.\n if (Array.isArray(segment)) {\n return `${segment[0]}|${segment[1]}|${segment[2]}`;\n }\n // Page segments might have search parameters, ie __PAGE__?foo=bar\n // When `withoutSearchParameters` is true, we only want to return the page segment\n if (withoutSearchParameters && segment.startsWith(PAGE_SEGMENT_KEY)) {\n return PAGE_SEGMENT_KEY;\n }\n return segment;\n}\n\n//# sourceMappingURL=create-router-cache-key.js.map","const basePath = process.env.__NEXT_ROUTER_BASEPATH || '';\nconst pathname = `${basePath}/__nextjs_source-map`;\nexport const findSourceMapURL = // Source maps are only served by the dev server.\nprocess.env.__NEXT_DEV_SERVER ? function findSourceMapURL(filename) {\n if (filename === '') {\n return null;\n }\n if (filename.startsWith(document.location.origin) && filename.includes('/_next/static')) {\n // This is a request for a client chunk. This can only happen when\n // using Turbopack. In this case, since we control how those source\n // maps are generated, we can safely assume that the sourceMappingURL\n // is relative to the filename, with an added `.map` extension. The\n // browser can just request this file, and it gets served through the\n // normal dev server, without the need to route this through\n // the `/__nextjs_source-map` dev middleware.\n return `${filename}.map`;\n }\n const url = new URL(pathname, document.location.origin);\n url.searchParams.set('filename', filename);\n return url.href;\n} : undefined;\n\n//# sourceMappingURL=app-find-source-map-url.js.map","'use client';\nimport { computeCacheBustingSearchParam, computeLegacyCacheBustingSearchParam } from '../../../shared/lib/router/utils/cache-busting-search-param';\nimport { NEXT_ROUTER_PREFETCH_HEADER, NEXT_ROUTER_SEGMENT_PREFETCH_HEADER, NEXT_ROUTER_STATE_TREE_HEADER, NEXT_URL, NEXT_RSC_UNION_QUERY } from '../app-router-headers';\nasync function computeClientCacheBustingSearchParam(headers) {\n if (typeof globalThis.crypto?.subtle?.digest === 'function') {\n return computeCacheBustingSearchParam(headers[NEXT_ROUTER_PREFETCH_HEADER], headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER], headers[NEXT_ROUTER_STATE_TREE_HEADER], headers[NEXT_URL]);\n }\n return computeLegacyCacheBustingSearchParam(headers[NEXT_ROUTER_PREFETCH_HEADER], headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER], headers[NEXT_ROUTER_STATE_TREE_HEADER], headers[NEXT_URL]);\n}\n/**\n * Mutates the provided URL by adding a cache-busting search parameter for CDNs that don't\n * support custom headers. This helps avoid caching conflicts by making each request unique.\n *\n * Rather than relying on the Vary header which some CDNs ignore, we append a search param\n * to create a unique URL that forces a fresh request.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * Note: This function mutates the input URL directly and resolves once the\n * cache-busting value has been computed and applied.\n *\n * TODO: Since we need to use a search param anyway, we could simplify by removing the custom\n * headers approach entirely and just use search params.\n */ export const setCacheBustingSearchParam = async (url, headers)=>{\n const uniqueCacheKey = await computeClientCacheBustingSearchParam(headers);\n setCacheBustingSearchParamWithHash(url, uniqueCacheKey);\n};\n/**\n * Sets a cache-busting search parameter on a URL using a provided hash value.\n *\n * This function performs the same logic as `setCacheBustingSearchParam` but accepts\n * a pre-computed hash instead of computing it from headers.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * hash: \"abc123\"\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * If the hash is empty, we will set `_rsc` search param without a value.\n * Like this: https://example.com/path?query=1&_rsc\n *\n * Note: This function mutates the input URL directly and does not return anything.\n */ export const setCacheBustingSearchParamWithHash = (url, hash)=>{\n /**\n * Note that we intentionally do not use `url.searchParams.set` here:\n *\n * const url = new URL('https://example.com/search?q=custom%20spacing');\n * url.searchParams.set('_rsc', 'abc123');\n * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123\n * ^ <--- this is causing confusion\n * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but\n * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom\n * logic below.\n */ const existingSearch = url.search;\n const rawQuery = existingSearch.startsWith('?') ? existingSearch.slice(1) : existingSearch;\n // Always remove any existing cache busting param and add a fresh one to ensure\n // we have the correct value based on current request headers\n const pairs = rawQuery.split('&').filter((pair)=>pair && !pair.startsWith(`${NEXT_RSC_UNION_QUERY}=`));\n if (hash.length > 0) {\n pairs.push(`${NEXT_RSC_UNION_QUERY}=${hash}`);\n } else {\n pairs.push(`${NEXT_RSC_UNION_QUERY}`);\n }\n url.search = pairs.length ? `?${pairs.join('&')}` : '';\n};\n\n//# sourceMappingURL=set-cache-busting-search-param.js.map","let deploymentId;\nif (typeof window !== 'undefined') {\n deploymentId = document.documentElement.dataset.dplId;\n // Immediately remove the attribute to prevent hydration errors (the dplId was inserted into the\n // HTML only), React isn't aware of it at all.\n delete document.documentElement.dataset.dplId;\n} else {\n // Client side: replaced with globalThis.NEXT_DEPLOYMENT_ID\n // Server side: left as is or replaced with a string or replaced with false\n deploymentId = process.env.NEXT_DEPLOYMENT_ID || undefined;\n}\nexport function getDeploymentId() {\n return deploymentId;\n}\nexport function getDeploymentIdQuery(ampersand = false) {\n let id = getDeploymentId();\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`;\n }\n return '';\n}\nexport function getAssetToken() {\n return process.env.NEXT_IMMUTABLE_ASSET_TOKEN || process.env.NEXT_DEPLOYMENT_ID;\n}\nexport function getAssetTokenQuery(ampersand = false) {\n let id = getAssetToken();\n if (id) {\n return `${ampersand ? '&' : '?'}dpl=${id}`;\n }\n return '';\n}\n\n//# sourceMappingURL=deployment-id.js.map","const workAsyncStorage = typeof window === 'undefined' ? require('../../server/app-render/work-async-storage.external').workAsyncStorage : undefined;\n// if we are revalidating we want to re-throw the error so the\n// function crashes so we can maintain our previous cache\n// instead of caching the error page\nexport function handleISRError({ error }) {\n if (workAsyncStorage) {\n const store = workAsyncStorage.getStore();\n if (store?.isStaticGeneration) {\n if (error) {\n console.error(error);\n }\n throw error;\n }\n }\n}\n\n//# sourceMappingURL=handle-isr-error.js.map","// This gets assigned as a side-effect during app initialization. Because it\n// represents the build used to create the JS bundle, it should never change\n// after being set, so we store it in a global variable.\n//\n// When performing RSC requests, if the incoming data has a different build ID,\n// we perform an MPA navigation/refresh to load the updated build and ensure\n// that the client and server in sync.\n//\n// Starts as an empty string. In practice, because setNavigationBuildId is called during initialization\n// before hydration starts, this will always get reassigned to the actual ID before it's ever needed\n// by a navigation. If for some reasons it didn't, due to a bug or race condition, then on\n// navigation the build comparision would fail and trigger an MPA navigation.\n//\n// Note that this can also be initialized with the deployment id instead (if available). So it's not\n// the same as \"the build id\", but we are running out of alternative names for \"build id or\n// deployment id\".\nlet globalBuildId = '';\nexport function setNavigationBuildId(buildId) {\n globalBuildId = buildId;\n}\nexport function getNavigationBuildId() {\n return globalBuildId;\n}\n\n//# sourceMappingURL=navigation-build-id.js.map","'use client';\n// TODO: Explicitly import from client.browser\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { createFromReadableStream as createFromReadableStreamBrowser, createFromFetch as createFromFetchBrowser } from 'react-server-dom-webpack/client';\nimport { InvariantError } from '../../../shared/lib/invariant-error';\nimport { NEXT_ROUTER_STATE_TREE_HEADER, NEXT_RSC_UNION_QUERY, NEXT_URL, RSC_HEADER, RSC_CONTENT_TYPE_HEADER, NEXT_HMR_REFRESH_HEADER, NEXT_DID_POSTPONE_HEADER, NEXT_HTML_REQUEST_ID_HEADER, NEXT_REQUEST_ID_HEADER } from '../app-router-headers';\nimport { callServer } from '../../app-call-server';\nimport { findSourceMapURL } from '../../app-find-source-map-url';\nimport { normalizeFlightData, prepareFlightRouterStateForRequest } from '../../flight-data-helpers';\nimport { setCacheBustingSearchParam } from './set-cache-busting-search-param';\nimport { urlToUrlWithoutFlightMarker } from '../../route-params';\nimport { getDeploymentId } from '../../../shared/lib/deployment-id';\nimport { getNavigationBuildId } from '../../navigation-build-id';\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants';\nimport { stripIsPartialByte } from '../segment-cache/cache';\nimport { UnknownDynamicStaleTime } from '../segment-cache/bfcache';\nconst createFromReadableStream = createFromReadableStreamBrowser;\nconst createFromFetch = createFromFetchBrowser;\nlet createDebugChannel;\nif (process.env.__NEXT_DEV_SERVER && process.env.__NEXT_REACT_DEBUG_CHANNEL) {\n createDebugChannel = require('../../dev/debug-channel').createDebugChannel;\n}\nfunction doMpaNavigation(url) {\n return urlToUrlWithoutFlightMarker(new URL(url, location.origin)).toString();\n}\nlet isPageUnloading = false;\nif (typeof window !== 'undefined') {\n // Track when the page is unloading, e.g. due to reloading the page or\n // performing hard navigations. This allows us to suppress error logging when\n // the browser cancels in-flight requests during page unload.\n window.addEventListener('pagehide', ()=>{\n isPageUnloading = true;\n });\n // Reset the flag on pageshow, e.g. when navigating back and the JavaScript\n // execution context is restored by the browser.\n window.addEventListener('pageshow', ()=>{\n isPageUnloading = false;\n });\n}\n/**\n * Fetch the flight data for the provided url. Takes in the current router state\n * to decide what to render server-side.\n */ export async function fetchServerResponse(url, options) {\n const { flightRouterState, nextUrl } = options;\n const headers = {\n // Enable flight response\n [RSC_HEADER]: '1',\n // Provide the current router state\n [NEXT_ROUTER_STATE_TREE_HEADER]: prepareFlightRouterStateForRequest(flightRouterState, options.isHmrRefresh)\n };\n if (process.env.NODE_ENV === 'development' && options.isHmrRefresh) {\n headers[NEXT_HMR_REFRESH_HEADER] = '1';\n }\n if (nextUrl) {\n headers[NEXT_URL] = nextUrl;\n }\n // In static export mode, we need to modify the URL to request the .txt file,\n // but we should preserve the original URL for the canonical URL and error handling.\n const originalUrl = url;\n try {\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n // In \"output: export\" mode, we can't rely on headers to distinguish\n // between HTML and RSC requests. Instead, we append an extra prefix\n // to the request.\n url = new URL(url);\n if (url.pathname.endsWith('/')) {\n url.pathname += 'index.txt';\n } else {\n url.pathname += '.txt';\n }\n }\n }\n // Typically, during a navigation, we decode the response using Flight's\n // `createFromFetch` API, which accepts a `fetch` promise.\n // TODO: Remove this check once the old PPR flag is removed\n const isLegacyPPR = process.env.__NEXT_PPR && !process.env.__NEXT_CACHE_COMPONENTS;\n const shouldImmediatelyDecode = !isLegacyPPR;\n const res = await createFetch(url, headers, 'auto', shouldImmediatelyDecode);\n const responseUrl = urlToUrlWithoutFlightMarker(new URL(res.url));\n const canonicalUrl = res.redirected ? responseUrl : originalUrl;\n const contentType = res.headers.get('content-type') || '';\n const interception = !!res.headers.get('vary')?.includes(NEXT_URL);\n const postponed = !!res.headers.get(NEXT_DID_POSTPONE_HEADER);\n let isFlightResponse = contentType.startsWith(RSC_CONTENT_TYPE_HEADER);\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n if (!isFlightResponse) {\n isFlightResponse = contentType.startsWith('text/plain');\n }\n }\n }\n // If fetch returns something different than flight response handle it like a mpa navigation\n // If the fetch was not 200, we also handle it like a mpa navigation\n if (!isFlightResponse || !res.ok || !res.body) {\n // in case the original URL came with a hash, preserve it before redirecting to the new URL\n if (url.hash) {\n responseUrl.hash = url.hash;\n }\n return doMpaNavigation(responseUrl.toString());\n }\n // We may navigate to a page that requires a different Webpack runtime.\n // In prod, every page will have the same Webpack runtime.\n // In dev, the Webpack runtime is minimal for each page.\n // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page.\n // TODO: This needs to happen in the Flight Client.\n // Or Webpack needs to include the runtime update in the Flight response as\n // a blocking script.\n if (process.env.NODE_ENV !== 'production' && !process.env.TURBOPACK) {\n await require('../../dev/hot-reloader/app/hot-reloader-app').waitForWebpackRuntimeHotUpdate();\n }\n let flightResponsePromise = res.flightResponsePromise;\n if (flightResponsePromise === null) {\n // Typically, `createFetch` would have already started decoding the\n // Flight response. If it hasn't, though, we need to decode it now.\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once legacy PPR\n // is deleted.\n flightResponsePromise = createFromNextReadableStream(res.body, headers, {\n allowPartialStream: postponed\n });\n }\n const [flightResponse, cacheData] = await Promise.all([\n flightResponsePromise,\n res.cacheData\n ]);\n if ((res.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? flightResponse.b) !== getNavigationBuildId()) {\n // The server build does not match the client build.\n return doMpaNavigation(res.url);\n }\n const normalizedFlightData = normalizeFlightData(flightResponse.f);\n if (typeof normalizedFlightData === 'string') {\n return doMpaNavigation(normalizedFlightData);\n }\n const staticStageData = cacheData !== null ? await resolveStaticStageData(cacheData, flightResponse, headers) : null;\n return {\n flightData: normalizedFlightData,\n canonicalUrl: canonicalUrl,\n // TODO: We should be able to read this from the rewrite header, not the\n // Flight response. Theoretically they should always agree, but there are\n // currently some cases where it's incorrect for interception routes. We\n // can always trust the value in the response body. However, per-segment\n // prefetch responses don't embed the value in the body; they rely on the\n // header alone. So we need to investigate why the header is sometimes\n // wrong for interception routes.\n renderedSearch: flightResponse.q,\n couldBeIntercepted: interception,\n supportsPerSegmentPrefetching: flightResponse.S,\n postponed,\n // The dynamicStaleTime is only present in the response body when\n // a page exports unstable_dynamicStaleTime and this is a dynamic render.\n // When absent (UnknownDynamicStaleTime), the client falls back to the\n // global DYNAMIC_STALETIME_MS. The value is in seconds.\n dynamicStaleTime: flightResponse.d ?? UnknownDynamicStaleTime,\n staticStageData,\n runtimePrefetchStream: flightResponse.p ?? null,\n responseHeaders: res.headers,\n debugInfo: flightResponsePromise._debugInfo ?? null\n };\n } catch (err) {\n if (!isPageUnloading) {\n console.error(`Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`, err);\n }\n // If fetch fails handle it like a mpa navigation\n // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response.\n // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction.\n return originalUrl.toString();\n }\n}\n/**\n * Strips the leading isPartial byte from an RSC navigation response and\n * clones the body for segment cache extraction.\n *\n * When cache components is enabled, the server prepends a single byte:\n * '~' (0x7e) for partial, '#' (0x23) for complete. This must be stripped\n * before Flight decoding because it's not valid RSC data. The body is\n * cloned before Flight can consume it so the clone is available for later use.\n *\n * When cache components is disabled, returns the original response with\n * cacheData: null.\n */ export async function processFetch(response) {\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n if (!response.body) {\n throw Object.defineProperty(new InvariantError('Expected RSC navigation response to have a body'), \"__NEXT_ERROR_CODE\", {\n value: \"E1088\",\n enumerable: false,\n configurable: true\n });\n }\n const { stream, isPartial } = await stripIsPartialByte(response.body);\n let responseStream;\n let cacheData;\n if (process.env.__NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS) {\n const [stream1, stream2] = stream.tee();\n responseStream = stream1;\n cacheData = {\n isResponsePartial: isPartial,\n responseBodyClone: stream2\n };\n } else {\n responseStream = stream;\n cacheData = {\n isResponsePartial: isPartial\n };\n }\n const strippedResponse = new Response(responseStream, {\n headers: response.headers,\n status: response.status,\n statusText: response.statusText\n });\n // The Response constructor doesn't preserve `url` or `redirected` from\n // the original. We need both: `url` for React DevTools and `redirected`\n // for the redirect replay logic below.\n Object.defineProperty(strippedResponse, 'url', {\n value: response.url\n });\n Object.defineProperty(strippedResponse, 'redirected', {\n value: response.redirected\n });\n return {\n response: strippedResponse,\n cacheData\n };\n }\n return {\n response,\n cacheData: null\n };\n}\n/**\n * Resolves the static stage response from the raw `processFetch` outputs and\n * the decoded flight response, for writing into the segment cache.\n *\n * - Fully static: use the decoded flight response as-is, no truncation needed.\n * - Not fully static + `l` field: truncate the body clone at the static stage\n * byte boundary and decode.\n * - Otherwise: no cache-worthy data.\n */ export async function resolveStaticStageData(cacheData, flightResponse, headers) {\n const { isResponsePartial, responseBodyClone } = cacheData;\n if (responseBodyClone) {\n if (!isResponsePartial) {\n // Fully static — cache the entire decoded response as-is.\n responseBodyClone.cancel();\n return {\n response: flightResponse,\n isResponsePartial: false\n };\n }\n if (flightResponse.l !== undefined) {\n // Partially static — truncate the body clone at the byte boundary and\n // decode it.\n const response = await decodeStaticStage(responseBodyClone, flightResponse.l, headers);\n return {\n response,\n isResponsePartial: true\n };\n }\n // No caching — cancel the unused clone.\n responseBodyClone.cancel();\n }\n return null;\n}\n/**\n * Truncates a Flight stream clone at the given byte boundary and decodes the\n * static stage prefix. Used by both the navigation path and the initial HTML\n * hydration path.\n */ export async function decodeStaticStage(responseBodyClone, staticStageByteLengthPromise, headers) {\n const staticStageByteLength = await staticStageByteLengthPromise;\n const truncatedStream = truncateStream(responseBodyClone, staticStageByteLength);\n return createFromNextReadableStream(truncatedStream, headers, {\n allowPartialStream: true\n });\n}\nexport async function createFetch(url, headers, fetchPriority, shouldImmediatelyDecode, signal) {\n // TODO: In output: \"export\" mode, the headers do nothing. Omit them (and the\n // cache busting search param) from the request so they're\n // maximally cacheable.\n if (process.env.__NEXT_TEST_MODE && fetchPriority !== null) {\n headers['Next-Test-Fetch-Priority'] = fetchPriority;\n }\n const deploymentId = getDeploymentId();\n if (deploymentId) {\n headers['x-deployment-id'] = deploymentId;\n }\n if (process.env.__NEXT_DEV_SERVER) {\n if (self.__next_r) {\n headers[NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r;\n }\n // Create a new request ID for the server action request. The server uses\n // this to tag debug information sent via WebSocket to the client, which\n // then routes those chunks to the debug channel associated with this ID.\n headers[NEXT_REQUEST_ID_HEADER] = crypto.getRandomValues(new Uint32Array(1))[0].toString(16);\n }\n const fetchOptions = {\n // Backwards compat for older browsers. `same-origin` is the default in modern browsers.\n credentials: 'same-origin',\n headers,\n priority: fetchPriority || undefined,\n signal\n };\n // `fetchUrl` is slightly different from `url` because we add a cache-busting\n // search param to it. This should not leak outside of this function, so we\n // track them separately.\n let fetchUrl = new URL(url);\n await setCacheBustingSearchParam(fetchUrl, headers);\n let processed = fetch(fetchUrl, fetchOptions).then(processFetch);\n let fetchPromise = processed.then(({ response })=>response);\n // Immediately pass the fetch promise to the Flight client so that the debug\n // info includes the latency from the client to the server. The internal timer\n // in React starts as soon as `createFromFetch` is called.\n //\n // The only case where we don't do this is during a prefetch, because a\n // top-level prefetch response never blocks a navigation; if it hasn't already\n // been written into the cache by the time the navigation happens, the router\n // will go straight to a dynamic request.\n let flightResponsePromise = shouldImmediatelyDecode ? createFromNextFetch(fetchPromise, headers) : null;\n let browserResponse = await fetchPromise;\n // If the server responds with a redirect (e.g. 307), and the redirected\n // location does not contain the cache busting search param set in the\n // original request, the response is likely invalid — when following the\n // redirect, the browser forwards the request headers, but since the cache\n // busting search param is missing, the server will reject the request due to\n // a mismatch.\n //\n // Ideally, we would be able to intercept the redirect response and perform it\n // manually, instead of letting the browser automatically follow it, but this\n // is not allowed by the fetch API.\n //\n // So instead, we must \"replay\" the redirect by fetching the new location\n // again, but this time we'll append the cache busting search param to prevent\n // a mismatch.\n //\n // TODO: We can optimize Next.js's built-in middleware APIs by returning a\n // custom status code, to prevent the browser from automatically following it.\n //\n // This does not affect Server Action-based redirects; those are encoded\n // differently, as part of the Flight body. It only affects redirects that\n // occur in a middleware or a third-party proxy.\n let redirected = browserResponse.redirected;\n if (process.env.__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS) {\n // This is to prevent a redirect loop. Same limit used by Chrome.\n const MAX_REDIRECTS = 20;\n for(let n = 0; n < MAX_REDIRECTS; n++){\n if (!browserResponse.redirected) {\n break;\n }\n const responseUrl = new URL(browserResponse.url, fetchUrl);\n if (responseUrl.origin !== fetchUrl.origin) {\n break;\n }\n if (responseUrl.searchParams.get(NEXT_RSC_UNION_QUERY) === fetchUrl.searchParams.get(NEXT_RSC_UNION_QUERY)) {\n break;\n }\n // The RSC request was redirected. Assume the response is invalid.\n //\n // Append the cache busting search param to the redirected URL and\n // fetch again.\n // TODO: We should abort the previous request.\n fetchUrl = new URL(responseUrl);\n await setCacheBustingSearchParam(fetchUrl, headers);\n processed = fetch(fetchUrl, fetchOptions).then(processFetch);\n fetchPromise = processed.then(({ response })=>response);\n flightResponsePromise = shouldImmediatelyDecode ? createFromNextFetch(fetchPromise, headers) : null;\n browserResponse = await fetchPromise;\n // We just performed a manual redirect, so this is now true.\n redirected = true;\n }\n }\n // Remove the cache busting search param from the response URL, to prevent it\n // from leaking outside of this function.\n const responseUrl = new URL(browserResponse.url, fetchUrl);\n responseUrl.searchParams.delete(NEXT_RSC_UNION_QUERY);\n const rscResponse = {\n url: responseUrl.href,\n // This is true if any redirects occurred, either automatically by the\n // browser, or manually by us. So it's different from\n // `browserResponse.redirected`, which only tells us whether the browser\n // followed a redirect, and only for the last response in the chain.\n redirected,\n // These can be copied from the last browser response we received. We\n // intentionally only expose the subset of fields that are actually used\n // elsewhere in the codebase.\n ok: browserResponse.ok,\n headers: browserResponse.headers,\n body: browserResponse.body,\n status: browserResponse.status,\n // This is the exact promise returned by `createFromFetch`. It contains\n // debug information that we need to transfer to any derived promises that\n // are later rendered by React.\n flightResponsePromise: flightResponsePromise,\n cacheData: processed.then(({ cacheData })=>cacheData)\n };\n return rscResponse;\n}\nexport function createFromNextReadableStream(flightStream, requestHeaders, options) {\n return createFromReadableStream(flightStream, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n unstable_allowPartialStream: options?.allowPartialStream\n });\n}\nfunction createFromNextFetch(promiseForResponse, requestHeaders) {\n return createFromFetch(promiseForResponse, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders)\n });\n}\nfunction truncateStream(stream, byteLength) {\n const reader = stream.getReader();\n let remaining = byteLength;\n return new ReadableStream({\n async pull (controller) {\n if (remaining <= 0) {\n reader.cancel();\n controller.close();\n return;\n }\n const { done, value } = await reader.read();\n if (done) {\n controller.close();\n return;\n }\n if (value.byteLength <= remaining) {\n controller.enqueue(value);\n remaining -= value.byteLength;\n } else {\n controller.enqueue(value.subarray(0, remaining));\n remaining = 0;\n reader.cancel();\n controller.close();\n }\n },\n cancel () {\n reader.cancel();\n }\n });\n}\n\n//# sourceMappingURL=fetch-server-response.js.map","export const matchSegment = (existingSegment, segment)=>{\n // segment is either Array or string\n if (typeof existingSegment === 'string') {\n if (typeof segment === 'string') {\n // Common case: segment is just a string\n return existingSegment === segment;\n }\n return false;\n }\n if (typeof segment === 'string') {\n return false;\n }\n return existingSegment[0] === segment[0] && existingSegment[1] === segment[1];\n};\n\n//# sourceMappingURL=match-segments.js.map","export function createHrefFromUrl(url, includeHash = true) {\n return url.pathname + url.search + (includeHash ? url.hash : '');\n}\n\n//# sourceMappingURL=create-href-from-url.js.map","export const ACTION_REFRESH = 'refresh';\nexport const ACTION_NAVIGATE = 'navigate';\nexport const ACTION_RESTORE = 'restore';\nexport const ACTION_SERVER_PATCH = 'server-patch';\nexport const ACTION_HMR_REFRESH = 'hmr-refresh';\nexport const ACTION_SERVER_ACTION = 'server-action';\n/**\n * PrefetchKind defines the type of prefetching that should be done.\n * - `auto` - if the page is dynamic, prefetch the page data partially, if static prefetch the page data fully.\n * - `full` - prefetch the page data fully.\n */ export var PrefetchKind = /*#__PURE__*/ function(PrefetchKind) {\n PrefetchKind[\"AUTO\"] = \"auto\";\n PrefetchKind[\"FULL\"] = \"full\";\n return PrefetchKind;\n}({});\n/**\n * Controls the scroll behavior for a navigation.\n */ export var ScrollBehavior = /*#__PURE__*/ function(ScrollBehavior) {\n /** Use per-node ScrollRef to decide whether to scroll. */ ScrollBehavior[ScrollBehavior[\"Default\"] = 0] = \"Default\";\n /** Suppress scroll entirely (e.g. scroll={false} on Link or router.push). */ ScrollBehavior[ScrollBehavior[\"NoScroll\"] = 1] = \"NoScroll\";\n return ScrollBehavior;\n}({});\n\n//# sourceMappingURL=router-reducer-types.js.map","export const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain';\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8';\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8';\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP';\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI';\nexport const MATCHED_PATH_HEADER = 'x-matched-path';\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate';\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER = 'x-prerender-revalidate-if-generated';\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments';\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc';\nexport const RSC_SUFFIX = '.rsc';\nexport const ACTION_SUFFIX = '.action';\nexport const NEXT_DATA_SUFFIX = '.json';\nexport const NEXT_META_SUFFIX = '.meta';\nexport const NEXT_BODY_SUFFIX = '.body';\nexport const NEXT_NAV_DEPLOYMENT_ID_HEADER = 'x-nextjs-deployment-id';\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags';\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags';\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER = 'x-next-revalidate-tag-token';\nexport const NEXT_RESUME_HEADER = 'next-resume';\nexport const NEXT_RESUME_STATE_LENGTH_HEADER = 'x-next-resume-state-length';\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128;\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256;\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024;\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_';\nexport const NEXT_CACHE_ROOT_PARAM_TAG_ID = '_N_RP_';\n// in seconds\nexport const CACHE_ONE_YEAR_SECONDS = 31536000;\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe;\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware';\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`;\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy';\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`;\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation';\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages';\nexport const DOT_NEXT_ALIAS = 'private-dot-next';\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir';\nexport const APP_DIR_ALIAS = 'private-next-app-dir';\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy';\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate';\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference';\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper';\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS = 'private-next-rsc-track-dynamic-import';\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption';\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS = 'private-next-rsc-action-client-wrapper';\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`;\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`;\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`;\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`;\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`;\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`;\nexport const GSP_NO_RETURNED_VALUE = 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?';\nexport const GSSP_NO_RETURNED_VALUE = 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?';\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR = 'The `unstable_revalidate` property is available for general use.\\n' + 'Please use `revalidate` instead.';\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`;\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`;\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`;\nexport const ESLINT_DEFAULT_DIRS = [\n 'app',\n 'pages',\n 'components',\n 'lib',\n 'src'\n];\nexport const SERVER_RUNTIME = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs'\n};\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12;\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */ const WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */ shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */ reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */ serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */ actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */ apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */ apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */ middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */ instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */ edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */ appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */ pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */ pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */ pagesDirNode: 'pages-dir-node'\n};\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser\n ]\n }\n};\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__'\n};\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES };\n\n//# sourceMappingURL=constants.js.map","import { hexHash } from '../../hash';\nconst CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES = 12;\nconst textEncoder = new TextEncoder();\nfunction encodeCacheBustingSearchParam(bytes) {\n let binary = '';\n for(let i = 0; i < bytes.length; i++){\n binary += String.fromCharCode(bytes[i]);\n }\n return btoa(binary).replace(/\\+/g, '-').replace(/\\//g, '_').replace(/=+$/, '');\n}\nfunction normalizeCacheBustingInput(value) {\n if (value === undefined) {\n return '0';\n }\n return Array.isArray(value) ? value.join(',') : value;\n}\nfunction createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) {\n return null;\n }\n return [\n prefetchHeader ?? '0',\n normalizeCacheBustingInput(segmentPrefetchHeader),\n normalizeCacheBustingInput(stateTreeHeader),\n normalizeCacheBustingInput(nextUrlHeader)\n ].join(',');\n}\nasync function computeCacheBustingSearchParamFromInput(input) {\n // Truncate SHA-256 to 96 bits to keep `_rsc` compact\n const digest = await globalThis.crypto.subtle.digest('SHA-256', textEncoder.encode(input));\n return encodeCacheBustingSearchParam(new Uint8Array(digest).subarray(0, CACHE_BUSTING_SEARCH_PARAM_DIGEST_BYTES));\n}\nexport async function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n const input = createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader);\n if (input === null) {\n return '';\n }\n return computeCacheBustingSearchParamFromInput(input);\n}\nexport function computeLegacyCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {\n const input = createCacheBustingSearchParamInput(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader);\n if (input === null) {\n return '';\n }\n return hexHash(input);\n}\n\n//# sourceMappingURL=cache-busting-search-param.js.map","import { useState } from 'react';\n// When the flag is disabled, only track the currently active tree\nconst MAX_BF_CACHE_ENTRIES = process.env.__NEXT_CACHE_COMPONENTS ? 3 : 1;\n/**\n * Keeps track of the most recent N trees (FlightRouterStates) that were active\n * at a certain segment level. E.g. for a segment \"/a/b/[param]\", this hook\n * tracks the last N param values that the router rendered for N.\n *\n * The result of this hook precisely determines the number and order of\n * trees that are rendered in parallel at their segment level.\n *\n * The purpose of this cache is to we can preserve the React and DOM state of\n * some number of inactive trees, by rendering them in an boundary.\n * That means it would not make sense for the the lifetime of the cache to be\n * any longer than the lifetime of the React tree; e.g. if the hook were\n * unmounted, then the React tree would be, too. So, we use React state to\n * manage it.\n *\n * Note that we don't store the RSC data for the cache entries in this hook —\n * the data for inactive segments is stored in the parent CacheNode, which\n * *does* have a longer lifetime than the React tree. This hook only determines\n * which of those trees should have their *state* preserved, by .\n */ export function useRouterBFCache(activeTree, activeCacheNode, activeStateKey) {\n // The currently active entry. The entries form a linked list, sorted in\n // order of most recently active. This allows us to reuse parts of the list\n // without cloning, unless there's a reordering or removal.\n // TODO: Once we start tracking back/forward history at each route level,\n // we should use the history order instead. In other words, when traversing\n // to an existing entry as a result of a popstate event, we should maintain\n // the existing order instead of moving it to the front of the list. I think\n // an initial implementation of this could be to pass an incrementing id\n // to history.pushState/replaceState, then use that here for ordering.\n const [prevActiveEntry, setPrevActiveEntry] = useState(()=>{\n const initialEntry = {\n tree: activeTree,\n cacheNode: activeCacheNode,\n stateKey: activeStateKey,\n next: null\n };\n return initialEntry;\n });\n if (prevActiveEntry.tree === activeTree) {\n // Fast path. The active tree hasn't changed, so we can reuse the\n // existing state.\n return prevActiveEntry;\n }\n // The route tree changed. Note that this doesn't mean that the tree changed\n // *at this level* — the change may be due to a child route. Either way, we\n // need to either add or update the router tree in the bfcache.\n //\n // The rest of the code looks more complicated than it actually is because we\n // can't mutate the state in place; we have to copy-on-write.\n // Create a new entry for the active cache key. This is the head of the new\n // linked list.\n const newActiveEntry = {\n tree: activeTree,\n cacheNode: activeCacheNode,\n stateKey: activeStateKey,\n next: null\n };\n // We need to append the old list onto the new list. If the head of the new\n // list was already present in the cache, then we'll need to clone everything\n // that came before it. Then we can reuse the rest.\n let n = 1;\n let oldEntry = prevActiveEntry;\n let clonedEntry = newActiveEntry;\n while(oldEntry !== null && n < MAX_BF_CACHE_ENTRIES){\n if (oldEntry.stateKey === activeStateKey) {\n // Fast path. This entry in the old list that corresponds to the key that\n // is now active. We've already placed a clone of this entry at the front\n // of the new list. We can reuse the rest of the old list without cloning.\n // NOTE: We don't need to worry about eviction in this case because we\n // haven't increased the size of the cache, and we assume the max size\n // is constant across renders. If we were to change it to a dynamic limit,\n // then the implementation would need to account for that.\n clonedEntry.next = oldEntry.next;\n break;\n } else {\n // Clone the entry and append it to the list.\n n++;\n const entry = {\n tree: oldEntry.tree,\n cacheNode: oldEntry.cacheNode,\n stateKey: oldEntry.stateKey,\n next: null\n };\n clonedEntry.next = entry;\n clonedEntry = entry;\n }\n oldEntry = oldEntry.next;\n }\n setPrevActiveEntry(newActiveEntry);\n return newActiveEntry;\n}\n\n//# sourceMappingURL=bfcache-state-manager.js.map","import { RedirectStatusCode } from './redirect-status-code';\nimport { isRedirectError, REDIRECT_ERROR_CODE } from './redirect-error';\nconst actionAsyncStorage = typeof window === 'undefined' ? require('../../server/app-render/action-async-storage.external').actionAsyncStorage : undefined;\nexport function getRedirectError(url, type, statusCode = RedirectStatusCode.TemporaryRedirect) {\n const error = Object.defineProperty(new Error(REDIRECT_ERROR_CODE), \"__NEXT_ERROR_CODE\", {\n value: \"E394\",\n enumerable: false,\n configurable: true\n });\n error.digest = `${REDIRECT_ERROR_CODE};${type};${url};${statusCode};`;\n return error;\n}\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 307/303 to the caller.\n * - In a Server Action, type defaults to 'push' and 'replace' elsewhere.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */ export function redirect(/** The URL to redirect to */ url, type) {\n type ??= actionAsyncStorage?.getStore()?.isAction ? 'push' : 'replace';\n throw getRedirectError(url, type, RedirectStatusCode.TemporaryRedirect);\n}\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 308/303 to the caller.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */ export function permanentRedirect(/** The URL to redirect to */ url, type = 'replace') {\n throw getRedirectError(url, type, RedirectStatusCode.PermanentRedirect);\n}\nexport function getURLFromRedirectError(error) {\n if (!isRedirectError(error)) return null;\n // Slices off the beginning of the digest that contains the code and the\n // separating ';'.\n return error.digest.split(';').slice(2, -2).join(';');\n}\nexport function getRedirectTypeFromError(error) {\n if (!isRedirectError(error)) {\n throw Object.defineProperty(new Error('Not a redirect error'), \"__NEXT_ERROR_CODE\", {\n value: \"E260\",\n enumerable: false,\n configurable: true\n });\n }\n return error.digest.split(';', 2)[1];\n}\nexport function getRedirectStatusCodeFromError(error) {\n if (!isRedirectError(error)) {\n throw Object.defineProperty(new Error('Not a redirect error'), \"__NEXT_ERROR_CODE\", {\n value: \"E260\",\n enumerable: false,\n configurable: true\n });\n }\n return Number(error.digest.split(';').at(-2));\n}\n\n//# sourceMappingURL=redirect.js.map","import { HTML_LIMITED_BOT_UA_RE } from './html-bots';\n// Bot crawler that will spin up a headless browser and execute JS.\n// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers.\n// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers\n// This regex specifically matches \"Googlebot\" but NOT \"Mediapartners-Google\", \"AdsBot-Google\", etc.\nconst HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i;\nexport const HTML_LIMITED_BOT_UA_RE_STRING = HTML_LIMITED_BOT_UA_RE.source;\nexport { HTML_LIMITED_BOT_UA_RE };\nfunction isDomBotUA(userAgent) {\n return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent);\n}\nfunction isHtmlLimitedBotUA(userAgent) {\n return HTML_LIMITED_BOT_UA_RE.test(userAgent);\n}\nexport function isBot(userAgent) {\n return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent);\n}\nexport function getBotType(userAgent) {\n if (isDomBotUA(userAgent)) {\n return 'dom';\n }\n if (isHtmlLimitedBotUA(userAgent)) {\n return 'html';\n }\n return undefined;\n}\n\n//# sourceMappingURL=is-bot.js.map","import { ReadonlyURLSearchParams } from './readonly-url-search-params';\nexport function unstable_isUnrecognizedActionError() {\n throw Object.defineProperty(new Error('`unstable_isUnrecognizedActionError` can only be used on the client.'), \"__NEXT_ERROR_CODE\", {\n value: \"E776\",\n enumerable: false,\n configurable: true\n });\n}\nexport { redirect, permanentRedirect } from './redirect';\nexport { notFound } from './not-found';\nexport { forbidden } from './forbidden';\nexport { unauthorized } from './unauthorized';\nexport { unstable_rethrow } from './unstable-rethrow';\nexport { ReadonlyURLSearchParams };\nexport const RedirectType = {\n push: 'push',\n replace: 'replace'\n};\n\n//# sourceMappingURL=navigation.react-server.js.map","// TypeScript trick to simulate opaque types, like in Flow.\nexport function createCacheKey(originalHref, nextUrl) {\n const originalUrl = new URL(originalHref);\n const cacheKey = {\n pathname: originalUrl.pathname,\n search: originalUrl.search,\n nextUrl: nextUrl\n };\n return cacheKey;\n}\n\n//# sourceMappingURL=cache-key.js.map","import { lruPut, updateLruSize, deleteFromLru } from './lru';\nexport const Fallback = {};\n// This is a special internal key that is used for \"revalidation\" entries. It's\n// an implementation detail that shouldn't leak outside of this module.\nconst Revalidation = {};\nexport function createCacheMap() {\n const cacheMap = {\n parent: null,\n key: null,\n value: null,\n map: null,\n // LRU-related fields\n prev: null,\n next: null,\n size: 0\n };\n return cacheMap;\n}\nfunction getOrInitialize(cacheMap, keys, isRevalidation) {\n // Go through each level of keys until we find the entry that matches, or\n // create a new entry if one doesn't exist.\n //\n // This function will only return entries that match the keypath _exactly_.\n // Unlike getWithFallback, it will not access fallback entries unless it's\n // explicitly part of the keypath.\n let entry = cacheMap;\n let remainingKeys = keys;\n let key = null;\n while(true){\n const previousKey = key;\n if (remainingKeys !== null) {\n key = remainingKeys.value;\n remainingKeys = remainingKeys.parent;\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath. The \"normal\" entry is its parent.\n // However, if the parent entry is currently empty, we don't need to store\n // this as a revalidation entry. Just insert the revalidation into the\n // normal slot.\n if (entry.value === null) {\n return entry;\n }\n // Otheriwse, create a child entry.\n key = Revalidation;\n } else {\n break;\n }\n let map = entry.map;\n if (map !== null) {\n const existingEntry = map.get(key);\n if (existingEntry !== undefined) {\n // Found a match. Keep going.\n entry = existingEntry;\n continue;\n }\n } else {\n map = new Map();\n entry.map = map;\n }\n // No entry exists yet at this level. Create a new one.\n const newEntry = {\n parent: entry,\n key,\n value: null,\n map: null,\n // LRU-related fields\n prev: null,\n next: null,\n size: 0\n };\n map.set(key, newEntry);\n entry = newEntry;\n }\n return entry;\n}\nexport function getFromCacheMap(now, currentCacheVersion, rootEntry, keys, isRevalidation) {\n const entry = getEntryWithFallbackImpl(now, currentCacheVersion, rootEntry, keys, isRevalidation, 0);\n if (entry === null || entry.value === null) {\n return null;\n }\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry);\n return entry.value;\n}\nexport function isValueExpired(now, currentCacheVersion, value) {\n return value.staleAt <= now || value.version < currentCacheVersion;\n}\nfunction lazilyEvictIfNeeded(now, currentCacheVersion, entry) {\n // We have a matching entry, but before we can return it, we need to check if\n // it's still fresh. Otherwise it should be treated the same as a cache miss.\n if (entry.value === null) {\n // This entry has no value, so there's nothing to evict.\n return entry;\n }\n const value = entry.value;\n if (isValueExpired(now, currentCacheVersion, value)) {\n // The value expired. Lazily evict it from the cache, and return null. This\n // is conceptually the same as a cache miss.\n deleteMapEntry(entry);\n return null;\n }\n // The matched entry has not expired. Return it.\n return entry;\n}\nfunction getEntryWithFallbackImpl(now, currentCacheVersion, entry, keys, isRevalidation, previousKey) {\n // This is similar to getExactEntry, but if an exact match is not found for\n // a key, it will return the fallback entry instead. This is recursive at\n // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is\n // valid match for [a, b, c, d].\n //\n // It will return the most specific match available.\n let key;\n let remainingKeys;\n if (keys !== null) {\n key = keys.value;\n remainingKeys = keys.parent;\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath.\n key = Revalidation;\n remainingKeys = null;\n } else {\n // There are no more keys. This is the terminal entry.\n // TODO: When performing a lookup during a navigation, as opposed to a\n // prefetch, we may want to skip entries that are Pending if there's also\n // a Fulfilled fallback entry. Tricky to say, though, since if it's\n // already pending, it's likely to stream in soon. Maybe we could do this\n // just on slow connections and offline mode.\n return lazilyEvictIfNeeded(now, currentCacheVersion, entry);\n }\n const map = entry.map;\n if (map !== null) {\n const existingEntry = map.get(key);\n if (existingEntry !== undefined) {\n // Found an exact match for this key. Keep searching.\n const result = getEntryWithFallbackImpl(now, currentCacheVersion, existingEntry, remainingKeys, isRevalidation, key);\n if (result !== null) {\n return result;\n }\n }\n // No match found for this key. Check if there's a fallback.\n const fallbackEntry = map.get(Fallback);\n if (fallbackEntry !== undefined) {\n // Found a fallback for this key. Keep searching.\n return getEntryWithFallbackImpl(now, currentCacheVersion, fallbackEntry, remainingKeys, isRevalidation, key);\n }\n }\n return null;\n}\nexport function setInCacheMap(cacheMap, keys, value, isRevalidation) {\n // Add a value to the map at the given keypath. If the value is already\n // part of the map, it's removed from its previous keypath. (NOTE: This is\n // unlike a regular JS map, but the behavior is intentional.)\n const entry = getOrInitialize(cacheMap, keys, isRevalidation);\n setMapEntryValue(entry, value);\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry);\n updateLruSize(entry, value.size);\n}\nfunction setMapEntryValue(entry, value) {\n if (entry.value !== null) {\n // There's already a value at the given keypath. Disconnect the old value\n // from the map. We're not calling `deleteMapEntry` here because the\n // entry itself is still in the map. We just want to overwrite its value.\n dropRef(entry.value);\n entry.value = null;\n }\n // This value may already be in the map at a different keypath.\n // Grab a reference before we overwrite it.\n const oldEntry = value.ref;\n entry.value = value;\n value.ref = entry;\n updateLruSize(entry, value.size);\n if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) {\n // This value is already in the map at a different keypath in the map.\n // Values only exist at a single keypath at a time. Remove it from the\n // previous keypath.\n //\n // Note that only the internal map entry is garbage collected; we don't\n // call `dropRef` here because it's still in the map, just\n // at a new keypath (the one we just set, above).\n deleteMapEntry(oldEntry);\n }\n}\nexport function deleteFromCacheMap(value) {\n const entry = value.ref;\n if (entry === null) {\n // This value is not a member of any map.\n return;\n }\n dropRef(value);\n deleteMapEntry(entry);\n}\nfunction dropRef(value) {\n // Drop the value from the map by setting its `ref` backpointer to\n // null. This is a separate operation from `deleteMapEntry` because when\n // re-keying a value we need to be able to delete the old, internal map\n // entry without garbage collecting the value itself.\n value.ref = null;\n}\nexport function deleteMapEntry(entry) {\n // Delete the entry from the cache.\n entry.value = null;\n deleteFromLru(entry);\n // Check if we can garbage collect the entry.\n const map = entry.map;\n if (map === null) {\n // Since this entry has no value, and also no child entries, we can\n // garbage collect it. Remove it from its parent, and keep garbage\n // collecting the parents until we reach a non-empty entry.\n let parent = entry.parent;\n let key = entry.key;\n while(parent !== null){\n const parentMap = parent.map;\n if (parentMap !== null) {\n parentMap.delete(key);\n if (parentMap.size === 0) {\n // We just removed the last entry in the parent map.\n parent.map = null;\n if (parent.value === null) {\n // The parent node has no child entries, nor does it have a value\n // on itself. It can be garbage collected. Keep going.\n key = parent.key;\n parent = parent.parent;\n continue;\n }\n }\n }\n break;\n }\n } else {\n // Check if there's a revalidating entry. If so, promote it to a\n // \"normal\" entry, since the normal one was just deleted.\n const revalidatingEntry = map.get(Revalidation);\n if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) {\n setMapEntryValue(entry, revalidatingEntry.value);\n }\n }\n}\nexport function setSizeInCacheMap(value, size) {\n const entry = value.ref;\n if (entry === null) {\n // This value is not a member of any map.\n return;\n }\n // Except during initialization (when the size is set to 0), this is the only\n // place the `size` field should be updated, to ensure it's in sync with the\n // the LRU.\n value.size = size;\n updateLruSize(entry, size);\n}\n\n//# sourceMappingURL=cache-map.js.map","import { startTransition } from 'react';\nimport { ACTION_SERVER_ACTION } from './components/router-reducer/router-reducer-types';\nimport { dispatchAppRouterAction } from './components/use-action-queue';\nexport async function callServer(actionId, actionArgs) {\n return new Promise((resolve, reject)=>{\n startTransition(()=>{\n dispatchAppRouterAction({\n type: ACTION_SERVER_ACTION,\n actionId,\n actionArgs,\n resolve,\n reject\n });\n });\n });\n}\n\n//# sourceMappingURL=app-call-server.js.map","import React, { useContext, useMemo, use } from 'react';\nimport { AppRouterContext, LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime';\nimport { SearchParamsContext, PathnameContext, PathParamsContext, NavigationPromisesContext, ReadonlyURLSearchParams } from '../../shared/lib/hooks-client-context.shared-runtime';\nimport { computeSelectedLayoutSegment, getSelectedLayoutSegmentPath } from '../../shared/lib/segment';\nconst useDynamicRouteParams = typeof window === 'undefined' ? require('../../server/app-render/dynamic-rendering').useDynamicRouteParams : undefined;\nconst useDynamicSearchParams = typeof window === 'undefined' ? require('../../server/app-render/dynamic-rendering').useDynamicSearchParams : undefined;\nconst { instrumentParamsForClientValidation, instrumentSearchParamsForClientValidation, expectCompleteParamsInClientValidation } = typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS ? require('../../server/app-render/instant-validation/instant-samples-client') : {};\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you *read* the current URL's search parameters.\n *\n * Learn more about [`URLSearchParams` on MDN](https://developer.mozilla.org/docs/Web/API/URLSearchParams)\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useSearchParams } from 'next/navigation'\n *\n * export default function Page() {\n * const searchParams = useSearchParams()\n * searchParams.get('foo') // returns 'bar' when ?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSearchParams`](https://nextjs.org/docs/app/api-reference/functions/use-search-params)\n */ // Client components API\nexport function useSearchParams() {\n useDynamicSearchParams?.('useSearchParams()');\n const searchParams = useContext(SearchParamsContext);\n // In the case where this is `null`, the compat types added in\n // `next-env.d.ts` will add a new overload that changes the return type to\n // include `null`.\n const readonlySearchParams = useMemo(()=>{\n if (!searchParams) {\n // When the router is not ready in pages, we won't have the search params\n // available.\n return null;\n }\n return new ReadonlyURLSearchParams(searchParams);\n }, [\n searchParams\n ]);\n // During build-time instant validation, wrap with an proxy\n // so that accessing undeclared search params throws an error.\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS && readonlySearchParams) {\n return instrumentSearchParamsForClientValidation(readonlySearchParams);\n }\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext);\n if (navigationPromises) {\n return use(navigationPromises.searchParams);\n }\n }\n return readonlySearchParams;\n}\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the current URL's pathname.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { usePathname } from 'next/navigation'\n *\n * export default function Page() {\n * const pathname = usePathname() // returns \"/dashboard\" on /dashboard?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `usePathname`](https://nextjs.org/docs/app/api-reference/functions/use-pathname)\n */ // Client components API\nexport function usePathname() {\n useDynamicRouteParams?.('usePathname()');\n // In the case where this is `null`, the compat types added in `next-env.d.ts`\n // will add a new overload that changes the return type to include `null`.\n const pathname = useContext(PathnameContext);\n // During build-time instant validation, error if fallback params exist\n // because usePathname() can't return a sensible value without all params.\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS && pathname) {\n expectCompleteParamsInClientValidation('usePathname()');\n return pathname;\n }\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext);\n if (navigationPromises) {\n return use(navigationPromises.pathname);\n }\n }\n return pathname;\n}\n// Client components API\nexport { ServerInsertedHTMLContext, useServerInsertedHTML } from '../../shared/lib/server-inserted-html.shared-runtime';\n/**\n *\n * This hook allows you to programmatically change routes inside [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components).\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useRouter } from 'next/navigation'\n *\n * export default function Page() {\n * const router = useRouter()\n * // ...\n * router.push('/dashboard') // Navigate to /dashboard\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useRouter`](https://nextjs.org/docs/app/api-reference/functions/use-router)\n */ // Client components API\nexport function useRouter() {\n const router = useContext(AppRouterContext);\n if (router === null) {\n throw Object.defineProperty(new Error('invariant expected app router to be mounted'), \"__NEXT_ERROR_CODE\", {\n value: \"E238\",\n enumerable: false,\n configurable: true\n });\n }\n return router;\n}\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read a route's dynamic params filled in by the current URL.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useParams } from 'next/navigation'\n *\n * export default function Page() {\n * // on /dashboard/[team] where pathname is /dashboard/nextjs\n * const { team } = useParams() // team === \"nextjs\"\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useParams`](https://nextjs.org/docs/app/api-reference/functions/use-params)\n */ // Client components API\nexport function useParams() {\n useDynamicRouteParams?.('useParams()');\n const params = useContext(PathParamsContext);\n // During build-time instant validation, wrap with a proxy\n // so that accessing undeclared params throws an error.\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS && params) {\n return instrumentParamsForClientValidation(params);\n }\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext);\n if (navigationPromises) {\n return use(navigationPromises.params);\n }\n }\n return params;\n}\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segments **below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n *\n * import { useSelectedLayoutSegments } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segments = useSelectedLayoutSegments()\n *\n * return (\n *

    \n * {segments.map((segment, index) => (\n *
  • {segment}
  • \n * ))}\n *
\n * )\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegments`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segments)\n */ // Client components API\nexport function useSelectedLayoutSegments(parallelRouteKey = 'children') {\n useDynamicRouteParams?.('useSelectedLayoutSegments()');\n const context = useContext(LayoutRouterContext);\n // @ts-expect-error This only happens in `pages`. Type is overwritten in navigation.d.ts\n if (!context) return null;\n // During build-time instant validation, error if fallback params exist\n // because useSelectedLayoutSegments() can't return a sensible value without all params.\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS && context) {\n expectCompleteParamsInClientValidation('useSelectedLayoutSegments()');\n }\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext);\n if (navigationPromises) {\n const promise = navigationPromises.selectedLayoutSegmentsPromises?.get(parallelRouteKey);\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise);\n }\n }\n }\n return getSelectedLayoutSegmentPath(context.parentTree, parallelRouteKey);\n}\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segment **one level below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n * import { useSelectedLayoutSegment } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segment = useSelectedLayoutSegment()\n *\n * return

Active segment: {segment}

\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegment`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segment)\n */ // Client components API\nexport function useSelectedLayoutSegment(parallelRouteKey = 'children') {\n useDynamicRouteParams?.('useSelectedLayoutSegment()');\n const navigationPromises = useContext(NavigationPromisesContext);\n const selectedLayoutSegments = useSelectedLayoutSegments(parallelRouteKey);\n // During build-time instant validation, error if fallback params exist\n // because useSelectedLayoutSegment() can't return a sensible value without all params.\n if (typeof window === 'undefined' && process.env.__NEXT_CACHE_COMPONENTS) {\n expectCompleteParamsInClientValidation('useSelectedLayoutSegment()');\n }\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && navigationPromises && 'use' in React) {\n const promise = navigationPromises.selectedLayoutSegmentPromises?.get(parallelRouteKey);\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise);\n }\n }\n return computeSelectedLayoutSegment(selectedLayoutSegments, parallelRouteKey);\n}\nexport { unstable_isUnrecognizedActionError } from './unrecognized-action-error';\n// Shared components APIs\nexport { // We need the same class that was used to instantiate the context value\n// Otherwise instanceof checks will fail in usercode\nReadonlyURLSearchParams, };\nexport { notFound, forbidden, unauthorized, redirect, permanentRedirect, RedirectType, unstable_rethrow } from './navigation.react-server';\n\n//# sourceMappingURL=navigation.js.map","import { deleteMapEntry } from './cache-map';\nimport { pingPrefetchScheduler } from './scheduler';\n// We use an LRU for memory management. We must update this whenever we add or\n// remove a new cache entry, or when an entry changes size.\nlet head = null;\nlet lruSize = 0;\n// TODO: I chose the max size somewhat arbitrarily. Consider setting this based\n// on navigator.deviceMemory, or some other heuristic. We should make this\n// customizable via the Next.js config, too.\nconst maxLruSize = 50 * 1024 * 1024 // 50 MB\n;\nexport function lruPut(node) {\n if (head === node) {\n // Already at the head\n return;\n }\n const prev = node.prev;\n const next = node.next;\n if (next === null || prev === null) {\n // This is an insertion\n lruSize += node.size;\n // Whenever we add an entry, we need to check if we've exceeded the\n // max size. We don't evict entries immediately; they're evicted later in\n // an asynchronous task.\n ensureCleanupIsScheduled();\n } else {\n // This is a move. Remove from its current position.\n prev.next = next;\n next.prev = prev;\n }\n // Move to the front of the list\n if (head === null) {\n // This is the first entry\n node.prev = node;\n node.next = node;\n } else {\n // Add to the front of the list\n const tail = head.prev;\n node.prev = tail;\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n tail.next = node;\n }\n node.next = head;\n head.prev = node;\n }\n head = node;\n}\nexport function updateLruSize(node, newNodeSize) {\n // This is a separate function from `put` so that we can resize the entry\n // regardless of whether it's currently being tracked by the LRU.\n const prevNodeSize = node.size;\n node.size = newNodeSize;\n if (node.next === null) {\n // This entry is not currently being tracked by the LRU.\n return;\n }\n // Update the total LRU size\n lruSize = lruSize - prevNodeSize + newNodeSize;\n ensureCleanupIsScheduled();\n}\nexport function deleteFromLru(deleted) {\n const next = deleted.next;\n const prev = deleted.prev;\n if (next !== null && prev !== null) {\n lruSize -= deleted.size;\n deleted.next = null;\n deleted.prev = null;\n // Remove from the list\n if (head === deleted) {\n // Update the head\n if (next === head) {\n // This was the last entry\n head = null;\n } else {\n head = next;\n prev.next = next;\n next.prev = prev;\n }\n } else {\n prev.next = next;\n next.prev = prev;\n }\n } else {\n // Already deleted\n }\n}\nfunction ensureCleanupIsScheduled() {\n if (lruSize <= maxLruSize) {\n return;\n }\n // To schedule cleanup, ping the prefetch scheduler. At the end of its work\n // loop, once there are no queued tasks and no in-progress requests, it will\n // call cleanup().\n pingPrefetchScheduler();\n}\nexport function cleanup() {\n if (lruSize <= maxLruSize) {\n return;\n }\n // Evict entries until we're at 90% capacity. We can assume this won't\n // infinite loop because even if `maxLruSize` were 0, eventually\n // `deleteFromLru` sets `head` to `null` when we run out entries.\n const ninetyPercentMax = maxLruSize * 0.9;\n while(lruSize > ninetyPercentMax && head !== null){\n const tail = head.prev;\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n // Delete the entry from the map. In turn, this will remove it from\n // the LRU.\n deleteMapEntry(tail);\n }\n }\n}\n\n//# sourceMappingURL=lru.js.map","import { FetchStrategy } from './types';\nimport { Fallback } from './cache-map';\nimport { HEAD_REQUEST_KEY } from '../../../shared/lib/segment-cache/segment-value-encoding';\nexport function getRouteVaryPath(pathname, search, nextUrl) {\n // requestKey -> searchParams -> nextUrl\n const varyPath = {\n id: null,\n value: pathname,\n parent: {\n id: '?',\n value: search,\n parent: {\n id: null,\n value: nextUrl,\n parent: null\n }\n }\n };\n return varyPath;\n}\nexport function getFulfilledRouteVaryPath(pathname, search, nextUrl, couldBeIntercepted) {\n // This is called when a route's data is fulfilled. The cache entry will be\n // re-keyed based on which inputs the response varies by.\n // requestKey -> searchParams -> nextUrl\n const varyPath = {\n id: null,\n value: pathname,\n parent: {\n id: '?',\n value: search,\n parent: {\n id: null,\n value: couldBeIntercepted ? nextUrl : Fallback,\n parent: null\n }\n }\n };\n return varyPath;\n}\nexport function appendLayoutVaryPath(parentPath, cacheKey, paramName) {\n const varyPathPart = {\n id: paramName,\n value: cacheKey,\n parent: parentPath\n };\n return varyPathPart;\n}\nexport function finalizeLayoutVaryPath(requestKey, varyPath) {\n const layoutVaryPath = {\n id: null,\n value: requestKey,\n parent: varyPath\n };\n return layoutVaryPath;\n}\nexport function getPartialLayoutVaryPath(finalizedVaryPath) {\n // This is the inverse of finalizeLayoutVaryPath.\n return finalizedVaryPath.parent;\n}\nexport function finalizePageVaryPath(requestKey, renderedSearch, varyPath) {\n // Unlike layouts, a page segment's vary path also includes the search string.\n // requestKey -> searchParams -> pathParams\n const pageVaryPath = {\n id: null,\n value: requestKey,\n parent: {\n id: '?',\n value: renderedSearch,\n parent: varyPath\n }\n };\n return pageVaryPath;\n}\nexport function getPartialPageVaryPath(finalizedVaryPath) {\n // This is the inverse of finalizePageVaryPath.\n return finalizedVaryPath.parent.parent;\n}\nexport function finalizeMetadataVaryPath(pageRequestKey, renderedSearch, varyPath) {\n // The metadata \"segment\" is not a real segment because it doesn't exist in\n // the normal structure of the route tree, but in terms of caching, it\n // behaves like a page segment because it varies by all the same params as\n // a page.\n //\n // To keep the protocol for querying the server simple, the request key for\n // the metadata does not include any path information. It's unnecessary from\n // the server's perspective, because unlike page segments, there's only one\n // metadata response per URL, i.e. there's no need to distinguish multiple\n // parallel pages.\n //\n // However, this means the metadata request key is insufficient for\n // caching the the metadata in the client cache, because on the client we\n // use the request key to distinguish the metadata entry from all other\n // page's metadata entries.\n //\n // So instead we create a simulated request key based on the page segment.\n // Conceptually this is equivalent to the request key the server would have\n // assigned the metadata segment if it treated it as part of the actual\n // route structure.\n // If there are multiple parallel pages, we use whichever is the first one.\n // This is fine because the only difference between request keys for\n // different parallel pages are things like route groups and parallel\n // route slots. As long as it's always the same one, it doesn't matter.\n const pageVaryPath = {\n id: null,\n // Append the actual metadata request key to the page request key. Note\n // that we're not using a separate vary path part; it's unnecessary because\n // these are not conceptually separate inputs.\n value: pageRequestKey + HEAD_REQUEST_KEY,\n parent: {\n id: '?',\n value: renderedSearch,\n parent: varyPath\n }\n };\n return pageVaryPath;\n}\nexport function getSegmentVaryPathForRequest(fetchStrategy, tree) {\n // This is used for storing pending requests in the cache. We want to choose\n // the most generic vary path based on the strategy used to fetch it, i.e.\n // static/PPR versus runtime prefetching, so that it can be reused as much\n // as possible.\n //\n // We may be able to re-key the response to something even more generic once\n // we receive it — for example, if the server tells us that the response\n // doesn't vary on a particular param — but even before we send the request,\n // we know some params are reusable based on the fetch strategy alone. For\n // example, a static prefetch will never vary on search params.\n //\n // The original vary path with all the params filled in is stored on the\n // route tree object. We will clone this one to create a new vary path\n // where certain params are replaced with Fallback.\n //\n // This result of this function is not stored anywhere. It's only used to\n // access the cache a single time.\n //\n // TODO: Rather than create a new list object just to access the cache, the\n // plan is to add the concept of a \"vary mask\". This will represent all the\n // params that can be treated as Fallback. (Or perhaps the inverse.)\n const originalVaryPath = tree.varyPath;\n // Only page segments (and the special \"metadata\" segment, which is treated\n // like a page segment for the purposes of caching) may contain search\n // params. There's no reason to include them in the vary path otherwise.\n if (tree.isPage) {\n // Only a runtime prefetch will include search params in the vary path.\n // Static prefetches never include search params, so they can be reused\n // across all possible search param values.\n const doesVaryOnSearchParams = fetchStrategy === FetchStrategy.Full || fetchStrategy === FetchStrategy.PPRRuntime;\n if (!doesVaryOnSearchParams) {\n // The response from the the server will not vary on search params. Clone\n // the end of the original vary path to replace the search params\n // with Fallback.\n //\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with Fallback\n const searchParamsVaryPath = originalVaryPath.parent;\n const pathParamsVaryPath = searchParamsVaryPath.parent;\n const patchedVaryPath = {\n id: null,\n value: originalVaryPath.value,\n parent: {\n id: '?',\n value: Fallback,\n parent: pathParamsVaryPath\n }\n };\n return patchedVaryPath;\n }\n }\n // The request does vary on search params. We don't need to modify anything.\n return originalVaryPath;\n}\nexport function clonePageVaryPathWithNewSearchParams(originalVaryPath, newSearch) {\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with newSearch\n const searchParamsVaryPath = originalVaryPath.parent;\n const clonedVaryPath = {\n id: null,\n value: originalVaryPath.value,\n parent: {\n id: '?',\n value: newSearch,\n parent: searchParamsVaryPath.parent\n }\n };\n return clonedVaryPath;\n}\nexport function getRenderedSearchFromVaryPath(varyPath) {\n const searchParams = varyPath.parent.value;\n return typeof searchParams === 'string' ? searchParams : null;\n}\nexport function getFulfilledSegmentVaryPath(original, varyParams) {\n // Re-keys a segment's vary path based on which params the segment actually\n // depends on. Params that are NOT in the varyParams set are replaced with\n // Fallback, allowing the cache entry to be reused across different values of\n // those params.\n // This is called when a segment is fulfilled with data from the server. The\n // varyParams set comes from the server and indicates which params were\n // accessed during rendering.\n const clone = {\n id: original.id,\n // If the id is null, this node is not a param (e.g., it's a request key).\n // If the id is in the varyParams set, keep the original value.\n // Otherwise, replace with Fallback to make it reusable.\n value: original.id === null || varyParams.has(original.id) ? original.value : Fallback,\n parent: original.parent === null ? null : getFulfilledSegmentVaryPath(original.parent, varyParams)\n };\n return clone;\n}\n\n//# sourceMappingURL=vary-path.js.map","import { useEffect } from 'react';\nimport { createHrefFromUrl } from './router-reducer/create-href-from-url';\nexport function handleHardNavError(error) {\n if (error && typeof window !== 'undefined' && window.next.__pendingUrl && createHrefFromUrl(new URL(window.location.href)) !== createHrefFromUrl(window.next.__pendingUrl)) {\n console.error(`Error occurred during navigation, falling back to hard navigation`, error);\n window.location.href = window.next.__pendingUrl.toString();\n return true;\n }\n return false;\n}\nexport function useNavFailureHandler() {\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n // this if is only for DCE of the feature flag not conditional\n // eslint-disable-next-line react-hooks/rules-of-hooks\n useEffect(()=>{\n const uncaughtExceptionHandler = (evt)=>{\n const error = 'reason' in evt ? evt.reason : evt.error;\n // if we have an unhandled exception/rejection during\n // a navigation we fall back to a hard navigation to\n // attempt recovering to a good state\n handleHardNavError(error);\n };\n window.addEventListener('unhandledrejection', uncaughtExceptionHandler);\n window.addEventListener('error', uncaughtExceptionHandler);\n return ()=>{\n window.removeEventListener('error', uncaughtExceptionHandler);\n window.removeEventListener('unhandledrejection', uncaughtExceptionHandler);\n };\n }, []);\n }\n}\n\n//# sourceMappingURL=nav-failure-handler.js.map","/**\n * Shared types and constants for the Segment Cache.\n */ export var NavigationResultTag = /*#__PURE__*/ function(NavigationResultTag) {\n NavigationResultTag[NavigationResultTag[\"MPA\"] = 0] = \"MPA\";\n NavigationResultTag[NavigationResultTag[\"Success\"] = 1] = \"Success\";\n NavigationResultTag[NavigationResultTag[\"NoOp\"] = 2] = \"NoOp\";\n NavigationResultTag[NavigationResultTag[\"Async\"] = 3] = \"Async\";\n return NavigationResultTag;\n}({});\n/**\n * The priority of the prefetch task. Higher numbers are higher priority.\n */ export var PrefetchPriority = /*#__PURE__*/ function(PrefetchPriority) {\n /**\n * Assigned to the most recently hovered/touched link. Special network\n * bandwidth is reserved for this task only. There's only ever one Intent-\n * priority task at a time; when a new Intent task is scheduled, the previous\n * one is bumped down to Default.\n */ PrefetchPriority[PrefetchPriority[\"Intent\"] = 2] = \"Intent\";\n /**\n * The default priority for prefetch tasks.\n */ PrefetchPriority[PrefetchPriority[\"Default\"] = 1] = \"Default\";\n /**\n * Assigned to tasks when they spawn non-blocking background work, like\n * revalidating a partially cached entry to see if more data is available.\n */ PrefetchPriority[PrefetchPriority[\"Background\"] = 0] = \"Background\";\n return PrefetchPriority;\n}({});\nexport var FetchStrategy = /*#__PURE__*/ function(FetchStrategy) {\n // Deliberately ordered so we can easily compare two segments\n // and determine if one segment is \"more specific\" than another\n // (i.e. if it's likely that it contains more data)\n FetchStrategy[FetchStrategy[\"LoadingBoundary\"] = 0] = \"LoadingBoundary\";\n FetchStrategy[FetchStrategy[\"PPR\"] = 1] = \"PPR\";\n FetchStrategy[FetchStrategy[\"PPRRuntime\"] = 2] = \"PPRRuntime\";\n FetchStrategy[FetchStrategy[\"Full\"] = 3] = \"Full\";\n return FetchStrategy;\n}({});\n\n//# sourceMappingURL=types.js.map","/**\n * Create a \"Thenable\" that does not resolve. This is used to suspend indefinitely when data is not available yet.\n */ export const unresolvedThenable = {\n then: ()=>{}\n};\n\n//# sourceMappingURL=unresolved-thenable.js.map","import { FetchStrategy, PrefetchPriority } from './segment-cache/types';\nimport { createCacheKey } from './segment-cache/cache-key';\nimport { schedulePrefetchTask as scheduleSegmentPrefetchTask, cancelPrefetchTask, reschedulePrefetchTask, isPrefetchTaskDirty } from './segment-cache/scheduler';\nimport { startTransition } from 'react';\n// Tracks the most recently navigated link instance. When null, indicates\n// the current navigation was not initiated by a link click.\nlet linkForMostRecentNavigation = null;\n// Status object indicating link is pending\nexport const PENDING_LINK_STATUS = {\n pending: true\n};\n// Status object indicating link is idle\nexport const IDLE_LINK_STATUS = {\n pending: false\n};\n// Updates the loading state when navigating between links\n// - Resets the previous link's loading state\n// - Sets the new link's loading state\n// - Updates tracking of current navigation\nexport function setLinkForCurrentNavigation(link) {\n startTransition(()=>{\n linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS);\n link?.setOptimisticLinkStatus(PENDING_LINK_STATUS);\n linkForMostRecentNavigation = link;\n });\n}\n// Unmounts the current link instance from navigation tracking\nexport function unmountLinkForCurrentNavigation(link) {\n if (linkForMostRecentNavigation === link) {\n linkForMostRecentNavigation = null;\n }\n}\n/**\n * Returns the link instance that initiated the most recent navigation.\n * Returns null if the navigation was not initiated by a link click.\n *\n * Used by the Instant Navigation Testing API in dev mode to match the\n * fetch strategy of the link during cache-miss navigations.\n */ export function getLinkForCurrentNavigation() {\n return linkForMostRecentNavigation;\n}\n// Use a WeakMap to associate a Link instance with its DOM element. This is\n// used by the IntersectionObserver to track the link's visibility.\nconst prefetchable = typeof WeakMap === 'function' ? new WeakMap() : new Map();\n// A Set of the currently visible links. We re-prefetch visible links after a\n// cache invalidation, or when the current URL changes. It's a separate data\n// structure from the WeakMap above because only the visible links need to\n// be enumerated.\nconst prefetchableAndVisible = new Set();\n// A single IntersectionObserver instance shared by all components.\nconst observer = typeof IntersectionObserver === 'function' ? new IntersectionObserver(handleIntersect, {\n rootMargin: '200px'\n}) : null;\nfunction observeVisibility(element, instance) {\n const existingInstance = prefetchable.get(element);\n if (existingInstance !== undefined) {\n // This shouldn't happen because each component should have its own\n // anchor tag instance, but it's defensive coding to avoid a memory leak in\n // case there's a logical error somewhere else.\n unmountPrefetchableInstance(element);\n }\n // Only track prefetchable links that have a valid prefetch URL\n prefetchable.set(element, instance);\n if (observer !== null) {\n observer.observe(element);\n }\n}\nfunction coercePrefetchableUrl(href) {\n if (typeof window !== 'undefined') {\n const { createPrefetchURL } = require('./app-router-utils');\n try {\n return createPrefetchURL(href);\n } catch {\n // createPrefetchURL sometimes throws an error if an invalid URL is\n // provided, though I'm not sure if it's actually necessary.\n // TODO: Consider removing the throw from the inner function, or change it\n // to reportError. Or maybe the error isn't even necessary for automatic\n // prefetches, just navigations.\n const reportErrorFn = typeof reportError === 'function' ? reportError : console.error;\n reportErrorFn(`Cannot prefetch '${href}' because it cannot be converted to a URL.`);\n return null;\n }\n } else {\n return null;\n }\n}\nexport function mountLinkInstance(element, href, router, fetchStrategy, prefetchEnabled, setOptimisticLinkStatus) {\n if (prefetchEnabled) {\n const prefetchURL = coercePrefetchableUrl(href);\n if (prefetchURL !== null) {\n const instance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus\n };\n // We only observe the link's visibility if it's prefetchable. For\n // example, this excludes links to external URLs.\n observeVisibility(element, instance);\n return instance;\n }\n }\n // If the link is not prefetchable, we still create an instance so we can\n // track its optimistic state (i.e. useLinkStatus).\n const instance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: null,\n setOptimisticLinkStatus\n };\n return instance;\n}\nexport function mountFormInstance(element, href, router, fetchStrategy) {\n const prefetchURL = coercePrefetchableUrl(href);\n if (prefetchURL === null) {\n // This href is not prefetchable, so we don't track it.\n // TODO: We currently observe/unobserve a form every time its href changes.\n // For Links, this isn't a big deal because the href doesn't usually change,\n // but for forms it's extremely common. We should optimize this.\n return;\n }\n const instance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus: null\n };\n observeVisibility(element, instance);\n}\nexport function unmountPrefetchableInstance(element) {\n const instance = prefetchable.get(element);\n if (instance !== undefined) {\n prefetchable.delete(element);\n prefetchableAndVisible.delete(instance);\n const prefetchTask = instance.prefetchTask;\n if (prefetchTask !== null) {\n cancelPrefetchTask(prefetchTask);\n }\n }\n if (observer !== null) {\n observer.unobserve(element);\n }\n}\nfunction handleIntersect(entries) {\n for (const entry of entries){\n // Some extremely old browsers or polyfills don't reliably support\n // isIntersecting so we check intersectionRatio instead. (Do we care? Not\n // really. But whatever this is fine.)\n const isVisible = entry.intersectionRatio > 0;\n onLinkVisibilityChanged(entry.target, isVisible);\n }\n}\nexport function onLinkVisibilityChanged(element, isVisible) {\n if (process.env.NODE_ENV !== 'production') {\n // Prefetching on viewport is disabled in development for performance\n // reasons, because it requires compiling the target page.\n // TODO: Investigate re-enabling this.\n return;\n }\n const instance = prefetchable.get(element);\n if (instance === undefined) {\n return;\n }\n instance.isVisible = isVisible;\n if (isVisible) {\n prefetchableAndVisible.add(instance);\n } else {\n prefetchableAndVisible.delete(instance);\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Default);\n}\nexport function onNavigationIntent(element, unstable_upgradeToDynamicPrefetch) {\n const instance = prefetchable.get(element);\n if (instance === undefined) {\n return;\n }\n // Prefetch the link on hover/touchstart.\n if (instance !== undefined) {\n if (process.env.__NEXT_DYNAMIC_ON_HOVER && unstable_upgradeToDynamicPrefetch) {\n // Switch to a full prefetch\n instance.fetchStrategy = FetchStrategy.Full;\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Intent);\n }\n}\nfunction rescheduleLinkPrefetch(instance, priority) {\n // Ensures that app-router-instance is not compiled in the server bundle\n if (typeof window !== 'undefined') {\n const existingPrefetchTask = instance.prefetchTask;\n if (!instance.isVisible) {\n // Cancel any in-progress prefetch task. (If it already finished then this\n // is a no-op.)\n if (existingPrefetchTask !== null) {\n cancelPrefetchTask(existingPrefetchTask);\n }\n // We don't need to reset the prefetchTask to null upon cancellation; an\n // old task object can be rescheduled with reschedulePrefetchTask. This is a\n // micro-optimization but also makes the code simpler (don't need to\n // worry about whether an old task object is stale).\n return;\n }\n const { getCurrentAppRouterState } = require('./app-router-instance');\n const appRouterState = getCurrentAppRouterState();\n if (appRouterState !== null) {\n const treeAtTimeOfPrefetch = appRouterState.tree;\n if (existingPrefetchTask === null) {\n // Initiate a prefetch task.\n const nextUrl = appRouterState.nextUrl;\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl);\n instance.prefetchTask = scheduleSegmentPrefetchTask(cacheKey, treeAtTimeOfPrefetch, instance.fetchStrategy, priority, null);\n } else {\n // We already have an old task object that we can reschedule. This is\n // effectively the same as canceling the old task and creating a new one.\n reschedulePrefetchTask(existingPrefetchTask, treeAtTimeOfPrefetch, instance.fetchStrategy, priority);\n }\n }\n }\n}\nexport function pingVisibleLinks(nextUrl, tree) {\n // For each currently visible link, cancel the existing prefetch task (if it\n // exists) and schedule a new one. This is effectively the same as if all the\n // visible links left and then re-entered the viewport.\n //\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n for (const instance of prefetchableAndVisible){\n const task = instance.prefetchTask;\n if (task !== null && !isPrefetchTaskDirty(task, nextUrl, tree)) {\n continue;\n }\n // Something changed. Cancel the existing prefetch task and schedule a\n // new one.\n if (task !== null) {\n cancelPrefetchTask(task);\n }\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl);\n instance.prefetchTask = scheduleSegmentPrefetchTask(cacheKey, tree, instance.fetchStrategy, PrefetchPriority.Default, null);\n }\n}\n\n//# sourceMappingURL=links.js.map","// This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent.\n// Note: The pattern [\\w-]+-Google captures all Google crawlers with \"-Google\" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google)\n// as well as crawlers starting with \"Google-\" (e.g., Google-PageRenderer, Google-InspectionTool)\nexport const HTML_LIMITED_BOT_UA_RE = /[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i;\n\n//# sourceMappingURL=html-bots.js.map","import { DYNAMIC_STALETIME_MS } from '../router-reducer/reducers/navigate-reducer';\n/**\n * Sentinel value indicating that no per-page dynamic stale time was provided.\n * When this is the dynamicStaleTime, the default DYNAMIC_STALETIME_MS is used.\n */ export const UnknownDynamicStaleTime = -1;\n/**\n * Converts a dynamic stale time (in seconds, as sent by the server in the `d`\n * field of the Flight response) to an absolute staleAt timestamp. When the\n * value is unknown, falls back to the global DYNAMIC_STALETIME_MS.\n */ export function computeDynamicStaleAt(now, dynamicStaleTimeSeconds) {\n return dynamicStaleTimeSeconds !== UnknownDynamicStaleTime ? now + dynamicStaleTimeSeconds * 1000 : now + DYNAMIC_STALETIME_MS;\n}\nimport { setInCacheMap, getFromCacheMap, createCacheMap } from './cache-map';\nconst bfcacheMap = createCacheMap();\nlet currentBfCacheVersion = 0;\nexport function invalidateBfCache() {\n if (typeof window === 'undefined') {\n return;\n }\n currentBfCacheVersion++;\n}\nexport function writeToBFCache(now, varyPath, rsc, prefetchRsc, head, prefetchHead, dynamicStaleAt) {\n if (typeof window === 'undefined') {\n return;\n }\n const entry = {\n rsc,\n prefetchRsc,\n // TODO: These fields will be removed from both BFCacheEntry and\n // SegmentCacheEntry. The head has its own separate cache entry.\n head,\n prefetchHead,\n ref: null,\n // TODO: This is just a heuristic. Getting the actual size of the segment\n // isn't feasible because it's part of a larger streaming response. The\n // LRU will still evict it, we just won't have a fully accurate total\n // LRU size. However, we'll probably remove the size tracking from the LRU\n // entirely and use memory pressure events instead.\n size: 100,\n navigatedAt: now,\n // A back/forward navigation will disregard the stale time. This field is\n // only relevant when staleTimes.dynamic is enabled or unstable_dynamicStaleTime\n // is exported by a page.\n staleAt: dynamicStaleAt,\n version: currentBfCacheVersion\n };\n const isRevalidation = false;\n setInCacheMap(bfcacheMap, varyPath, entry, isRevalidation);\n}\nexport function writeHeadToBFCache(now, varyPath, head, prefetchHead, dynamicStaleAt) {\n // Read the special \"segment\" that represents the head data.\n writeToBFCache(now, varyPath, head, prefetchHead, null, null, dynamicStaleAt);\n}\n/**\n * Update the staleAt of an existing BFCache entry. Used after a dynamic\n * response arrives with a per-page stale time from `unstable_dynamicStaleTime`.\n * The per-page value is authoritative — it overrides whatever staleAt was set\n * by the default DYNAMIC_STALETIME_MS.\n */ export function updateBFCacheEntryStaleAt(varyPath, newStaleAt) {\n if (typeof window === 'undefined') {\n return;\n }\n const isRevalidation = false;\n // Read with staleness bypass (-1) so we can update even stale entries\n const entry = getFromCacheMap(-1, currentBfCacheVersion, bfcacheMap, varyPath, isRevalidation);\n if (entry !== null) {\n entry.staleAt = newStaleAt;\n }\n}\nexport function readFromBFCache(varyPath) {\n if (typeof window === 'undefined') {\n return null;\n }\n const isRevalidation = false;\n return getFromCacheMap(// During a back/forward navigation, it doesn't matter how stale the data\n // might be. Pass -1 instead of the actual current time to bypass\n // staleness checks.\n -1, currentBfCacheVersion, bfcacheMap, varyPath, isRevalidation);\n}\nexport function readFromBFCacheDuringRegularNavigation(now, varyPath) {\n if (typeof window === 'undefined') {\n return null;\n }\n const isRevalidation = false;\n return getFromCacheMap(now, currentBfCacheVersion, bfcacheMap, varyPath, isRevalidation);\n}\n\n//# sourceMappingURL=bfcache.js.map","import { completeHardNavigation, navigate as navigateUsingSegmentCache } from '../../segment-cache/navigation';\nimport { getStaleTimeMs } from '../../segment-cache/cache';\nimport { FreshnessPolicy } from '../ppr-navigations';\n// These values are set by `define-env-plugin` (based on `nextConfig.experimental.staleTimes`)\n// and default to 5 minutes (static) / 0 seconds (dynamic)\nexport const DYNAMIC_STALETIME_MS = Number(process.env.__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME) * 1000;\nexport const STATIC_STALETIME_MS = getStaleTimeMs(Number(process.env.__NEXT_CLIENT_ROUTER_STATIC_STALETIME));\nexport function navigateReducer(state, action) {\n const { url, isExternalUrl, navigateType, scrollBehavior } = action;\n if (isExternalUrl) {\n return completeHardNavigation(state, url, navigateType);\n }\n // Handles case where `` tag is present,\n // which will trigger an MPA navigation.\n if (document.getElementById('__next-page-redirect')) {\n return completeHardNavigation(state, url, navigateType);\n }\n // Temporary glue code between the router reducer and the new navigation\n // implementation. Eventually we'll rewrite the router reducer to a\n // state machine.\n const currentUrl = new URL(state.canonicalUrl, location.origin);\n const currentRenderedSearch = state.renderedSearch;\n return navigateUsingSegmentCache(state, url, currentUrl, currentRenderedSearch, state.cache, state.tree, state.nextUrl, FreshnessPolicy.Default, scrollBehavior, navigateType);\n}\n\n//# sourceMappingURL=navigate-reducer.js.map","/**\n * App Router types - Client-safe types for the Next.js App Router\n *\n * This file contains type definitions that can be safely imported\n * by both client-side and server-side code without circular dependencies.\n */ export var PrefetchHint = /*#__PURE__*/ function(PrefetchHint) {\n // This segment has a runtime prefetch enabled (via unstable_instant with\n // prefetch: 'runtime'). Per-segment only, does not propagate to ancestors.\n PrefetchHint[PrefetchHint[\"HasRuntimePrefetch\"] = 1] = \"HasRuntimePrefetch\";\n // This segment or one of its descendants has an instant config defined\n // (any truthy unstable_instant, regardless of prefetch mode). Propagates\n // upward so the root segment reflects the entire subtree.\n PrefetchHint[PrefetchHint[\"SubtreeHasInstant\"] = 2] = \"SubtreeHasInstant\";\n // This segment itself has a loading.tsx boundary.\n PrefetchHint[PrefetchHint[\"SegmentHasLoadingBoundary\"] = 4] = \"SegmentHasLoadingBoundary\";\n // A descendant segment (but not this one) has a loading.tsx boundary.\n // Propagates upward so the root reflects the entire subtree.\n PrefetchHint[PrefetchHint[\"SubtreeHasLoadingBoundary\"] = 8] = \"SubtreeHasLoadingBoundary\";\n // This segment is the root layout of the application.\n PrefetchHint[PrefetchHint[\"IsRootLayout\"] = 16] = \"IsRootLayout\";\n // This segment's response includes its parent's data inlined into it.\n // Set at build time by the segment size measurement pass.\n PrefetchHint[PrefetchHint[\"ParentInlinedIntoSelf\"] = 32] = \"ParentInlinedIntoSelf\";\n // This segment's data is inlined into one of its children — don't fetch\n // it separately. Set at build time by the segment size measurement pass.\n PrefetchHint[PrefetchHint[\"InlinedIntoChild\"] = 64] = \"InlinedIntoChild\";\n // On a __PAGE__: this page's response includes the head (metadata/viewport)\n // at the end of its SegmentPrefetch[] array.\n PrefetchHint[PrefetchHint[\"HeadInlinedIntoSelf\"] = 128] = \"HeadInlinedIntoSelf\";\n // On the root hint node: the head was NOT inlined into any page — fetch\n // it separately. Absence of this bit means the head is bundled into a page.\n PrefetchHint[PrefetchHint[\"HeadOutlined\"] = 256] = \"HeadOutlined\";\n return PrefetchHint;\n}({});\n\n//# sourceMappingURL=app-router-types.js.map","/**\n * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework.\n * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling.\n * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing.\n *\n * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow)\n */ export const unstable_rethrow = typeof window === 'undefined' ? require('./unstable-rethrow.server').unstable_rethrow : require('./unstable-rethrow.browser').unstable_rethrow;\n\n//# sourceMappingURL=unstable-rethrow.js.map","// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str) {\n let hash = 5381;\n for(let i = 0; i < str.length; i++){\n const char = str.charCodeAt(i);\n hash = (hash << 5) + hash + char & 0xffffffff;\n }\n return hash >>> 0;\n}\nexport function hexHash(str) {\n return djb2Hash(str).toString(36).slice(0, 5);\n}\n\n//# sourceMappingURL=hash.js.map","import { PAGE_SEGMENT_KEY } from '../shared/lib/segment';\nimport { getCacheKeyForDynamicParam, parseDynamicParamFromURLPart, doesStaticSegmentAppearInURL, getRenderedPathname, getRenderedSearch } from './route-params';\nimport { createHrefFromUrl } from './components/router-reducer/create-href-from-url';\n// TODO: We should only have to export `normalizeFlightData`, however because the initial flight data\n// that gets passed to `createInitialRouterState` doesn't conform to the `FlightDataPath` type (it's missing the root segment)\n// we're currently exporting it so we can use it directly. This should be fixed as part of the unification of\n// the different ways we express `FlightSegmentPath`.\nexport function getFlightDataPartsFromPath(flightDataPath) {\n // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial].\n const flightDataPathLength = 4;\n // tree, seedData, and head are *always* the last three items in the `FlightDataPath`.\n const [tree, seedData, head, isHeadPartial] = flightDataPath.slice(-flightDataPathLength);\n // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present.\n const segmentPath = flightDataPath.slice(0, -flightDataPathLength);\n return {\n // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment (\"\")\n // to the start of the segment path in some places which makes it hard to use solely the segment path.\n // Look for \"// TODO-APP: remove ''\" in the codebase.\n pathToSegment: segmentPath.slice(0, -1),\n segmentPath,\n // if the `FlightDataPath` corresponds with the root, there'll be no segment path,\n // in which case we default to ''.\n segment: segmentPath[segmentPath.length - 1] ?? '',\n tree,\n seedData,\n head,\n isHeadPartial,\n isRootRender: flightDataPath.length === flightDataPathLength\n };\n}\nexport function createInitialRSCPayloadFromFallbackPrerender(response, fallbackInitialRSCPayload) {\n // This is a static fallback page. In order to hydrate the page, we need to\n // parse the client params from the URL, but to account for the possibility\n // that the page was rewritten, we need to check the response headers\n // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since\n // we can't access the headers of the initial document response, the client\n // performs a fetch request to the current location. Since it's possible that\n // the fetch request will be dynamically rewritten to a different path than\n // the initial document, this fetch request delivers _all_ the hydration data\n // for the page; it was not inlined into the document, like it normally\n // would be.\n //\n // TODO: Consider treating the case where fetch is rewritten to a different\n // path from the document as a special deopt case. We should optimistically\n // assume this won't happen, inline the data into the document, and perform\n // a minimal request (like a HEAD or range request) to verify that the\n // response matches. Tricky to get right because we need to account for\n // all the different deployment environments we support, like output:\n // \"export\" mode, where we currently don't assume that custom response\n // headers are present.\n // Patch the Flight data sent by the server with the correct params parsed\n // from the URL + response object.\n const renderedPathname = getRenderedPathname(response);\n const renderedSearch = getRenderedSearch(response);\n const canonicalUrl = createHrefFromUrl(new URL(location.href));\n const originalFlightDataPath = fallbackInitialRSCPayload.f[0];\n const originalFlightRouterState = originalFlightDataPath[0];\n const payload = {\n c: canonicalUrl.split('/'),\n q: renderedSearch,\n i: fallbackInitialRSCPayload.i,\n f: [\n [\n fillInFallbackFlightRouterState(originalFlightRouterState, renderedPathname, renderedSearch),\n originalFlightDataPath[1],\n originalFlightDataPath[2],\n originalFlightDataPath[2]\n ]\n ],\n m: fallbackInitialRSCPayload.m,\n G: fallbackInitialRSCPayload.G,\n S: fallbackInitialRSCPayload.S,\n h: fallbackInitialRSCPayload.h\n };\n if (fallbackInitialRSCPayload.b) {\n payload.b = fallbackInitialRSCPayload.b;\n }\n return payload;\n}\nfunction fillInFallbackFlightRouterState(flightRouterState, renderedPathname, renderedSearch) {\n const pathnameParts = renderedPathname.split('/').filter((p)=>p !== '');\n const index = 0;\n return fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, index);\n}\nfunction fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, pathnamePartsIndex) {\n const originalSegment = flightRouterState[0];\n let newSegment;\n let doesAppearInURL;\n if (typeof originalSegment === 'string') {\n newSegment = originalSegment;\n doesAppearInURL = doesStaticSegmentAppearInURL(originalSegment);\n } else {\n const paramName = originalSegment[0];\n const paramType = originalSegment[2];\n const staticSiblings = originalSegment[3];\n const paramValue = parseDynamicParamFromURLPart(paramType, pathnameParts, pathnamePartsIndex);\n const cacheKey = getCacheKeyForDynamicParam(paramValue, renderedSearch);\n newSegment = [\n paramName,\n cacheKey,\n paramType,\n staticSiblings\n ];\n doesAppearInURL = true;\n }\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = doesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex;\n const children = flightRouterState[1];\n const newChildren = {};\n for(let key in children){\n const childFlightRouterState = children[key];\n newChildren[key] = fillInFallbackFlightRouterStateImpl(childFlightRouterState, renderedSearch, pathnameParts, childPathnamePartsIndex);\n }\n const newState = [\n newSegment,\n newChildren,\n null,\n flightRouterState[3],\n flightRouterState[4]\n ];\n return newState;\n}\nexport function getNextFlightSegmentPath(flightSegmentPath) {\n // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items\n // to get the next segment path.\n return flightSegmentPath.slice(2);\n}\nexport function normalizeFlightData(flightData) {\n // FlightData can be a string when the server didn't respond with a proper flight response,\n // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation.\n if (typeof flightData === 'string') {\n return flightData;\n }\n return flightData.map((flightDataPath)=>getFlightDataPartsFromPath(flightDataPath));\n}\n/**\n * This function is used to prepare the flight router state for the request.\n * It removes markers that are not needed by the server, and are purely used\n * for stashing state on the client.\n * @param flightRouterState - The flight router state to prepare.\n * @param isHmrRefresh - Whether this is an HMR refresh request.\n * @returns The prepared flight router state.\n */ export function prepareFlightRouterStateForRequest(flightRouterState, isHmrRefresh) {\n // HMR requests need the complete, unmodified state for proper functionality\n if (isHmrRefresh) {\n return encodeURIComponent(JSON.stringify(flightRouterState));\n }\n return encodeURIComponent(JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState)));\n}\n/**\n * Recursively strips client-only data from FlightRouterState while preserving\n * server-needed information for proper rendering decisions.\n */ function stripClientOnlyDataFromFlightRouterState(flightRouterState) {\n const [segment, parallelRoutes, _refreshState, refreshMarker, prefetchHints] = flightRouterState;\n // Strip client-only data from the segment\n const cleanedSegment = stripClientOnlyDataFromSegment(segment);\n // Recursively process parallel routes\n const cleanedParallelRoutes = {};\n for (const [key, childState] of Object.entries(parallelRoutes)){\n cleanedParallelRoutes[key] = stripClientOnlyDataFromFlightRouterState(childState);\n }\n const result = [\n cleanedSegment,\n cleanedParallelRoutes\n ];\n if (refreshMarker) {\n result[2] = null // null slightly more compact than undefined\n ;\n result[3] = refreshMarker;\n }\n // Append optional fields if present\n if (prefetchHints !== undefined) {\n result[4] = prefetchHints;\n }\n // Everything else is used only by the client and is not needed for requests.\n return result;\n}\n/**\n * Strips client-only data from segments:\n * - Search parameters from __PAGE__ segments\n * - staticSiblings from dynamic segment tuples (only needed for client-side\n * prefetch reuse decisions)\n */ function stripClientOnlyDataFromSegment(segment) {\n if (typeof segment === 'string') {\n // Strip search params from __PAGE__ segments\n if (segment.startsWith(PAGE_SEGMENT_KEY + '?')) {\n return PAGE_SEGMENT_KEY;\n }\n return segment;\n }\n // Dynamic segment tuple: [paramName, paramCacheKey, paramType, staticSiblings]\n // Strip staticSiblings (4th element) since server doesn't need it\n const [paramName, paramCacheKey, paramType] = segment;\n return [\n paramName,\n paramCacheKey,\n paramType,\n null\n ];\n}\n\n//# sourceMappingURL=flight-data-helpers.js.map","import { PrefetchHint } from '../../../shared/lib/app-router-types';\nimport { matchSegment } from '../match-segments';\nimport { readOrCreateRouteCacheEntry, readOrCreateSegmentCacheEntry, fetchRouteOnCacheMiss, fetchSegmentOnCacheMiss, fetchInlinedSegmentsOnCacheMiss, EntryStatus, fetchSegmentPrefetchesUsingDynamicRequest, convertRouteTreeToFlightRouterState, readOrCreateRevalidatingSegmentEntry, upgradeToPendingSegment, overwriteRevalidatingSegmentCacheEntry, canNewFetchStrategyProvideMoreContent, attemptToFulfillDynamicSegmentFromBFCache, attemptToUpgradeSegmentFromBFCache } from './cache';\nimport { createCacheKey } from './cache-key';\nimport { FetchStrategy, PrefetchPriority } from './types';\nimport { getCurrentRouteCacheVersion, getCurrentSegmentCacheVersion } from './cache';\nimport { addSearchParamsIfPageSegment, PAGE_SEGMENT_KEY } from '../../../shared/lib/segment';\nimport { cleanup } from './lru';\nconst scheduleMicrotask = typeof queueMicrotask === 'function' ? queueMicrotask : (fn)=>Promise.resolve().then(fn).catch((error)=>setTimeout(()=>{\n throw error;\n }));\nconst taskHeap = [];\nlet inProgressRequests = 0;\nlet sortIdCounter = 0;\nlet didScheduleMicrotask = false;\n// The most recently hovered (or touched, etc) link, i.e. the most recent task\n// scheduled at Intent priority. There's only ever a single task at Intent\n// priority at a time. We reserve special network bandwidth for this task only.\nlet mostRecentlyHoveredLink = null;\n// CDN cache propagation delay after revalidation (in milliseconds)\nconst REVALIDATION_COOLDOWN_MS = 300;\n// Timeout handle for the revalidation cooldown. When non-null, prefetch\n// requests are blocked to allow CDN cache propagation.\nlet revalidationCooldownTimeoutHandle = null;\n/**\n * Called by the cache when revalidation occurs. Starts a cooldown period\n * during which prefetch requests are blocked to allow CDN cache propagation.\n */ export function startRevalidationCooldown() {\n // Clear any existing timeout in case multiple revalidations happen\n // in quick succession.\n if (revalidationCooldownTimeoutHandle !== null) {\n clearTimeout(revalidationCooldownTimeoutHandle);\n }\n // Schedule the cooldown to expire after the delay.\n revalidationCooldownTimeoutHandle = setTimeout(()=>{\n revalidationCooldownTimeoutHandle = null;\n // Retry the prefetch queue now that the cooldown has expired.\n pingPrefetchScheduler();\n }, REVALIDATION_COOLDOWN_MS);\n}\n/**\n * Initiates a prefetch task for the given URL. If a prefetch for the same URL\n * is already in progress, this will bump it to the top of the queue.\n *\n * This is not a user-facing function. By the time this is called, the href is\n * expected to be validated and normalized.\n *\n * @param key The RouteCacheKey to prefetch.\n * @param treeAtTimeOfPrefetch The app's current FlightRouterState\n * @param fetchStrategy Whether to prefetch dynamic data, in addition to\n * static data. This is used by ``.\n * @param _onComplete Called when the prefetch task finishes. Testing API only.\n */ export function schedulePrefetchTask(key, treeAtTimeOfPrefetch, fetchStrategy, priority, onInvalidate, _onComplete) {\n // Spawn a new prefetch task\n const task = {\n key,\n treeAtTimeOfPrefetch,\n routeCacheVersion: getCurrentRouteCacheVersion(),\n segmentCacheVersion: getCurrentSegmentCacheVersion(),\n priority,\n phase: 1,\n hasBackgroundWork: false,\n spawnedRuntimePrefetches: null,\n fetchStrategy,\n sortId: sortIdCounter++,\n isCanceled: false,\n onInvalidate,\n _heapIndex: -1\n };\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n task._onComplete = _onComplete;\n }\n trackMostRecentlyHoveredLink(task);\n heapPush(taskHeap, task);\n // Schedule an async task to process the queue.\n //\n // The main reason we process the queue in an async task is for batching.\n // It's common for a single JS task/event to trigger multiple prefetches.\n // By deferring to a microtask, we only process the queue once per JS task.\n // If they have different priorities, it also ensures they are processed in\n // the optimal order.\n pingPrefetchScheduler();\n return task;\n}\nexport function cancelPrefetchTask(task) {\n // Remove the prefetch task from the queue. If the task already completed,\n // then this is a no-op.\n //\n // We must also explicitly mark the task as canceled so that a blocked task\n // does not get added back to the queue when it's pinged by the network.\n task.isCanceled = true;\n heapDelete(taskHeap, task);\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n // Call completion callback. In practice this shouldn't be reached for\n // test-initiated prefetches since cancellation is only used by the Link\n // component when elements scroll out of viewport.\n const onComplete = task._onComplete;\n task._onComplete = undefined;\n onComplete?.();\n }\n}\nexport function reschedulePrefetchTask(task, treeAtTimeOfPrefetch, fetchStrategy, priority) {\n // Bump the prefetch task to the top of the queue, as if it were a fresh\n // task. This is essentially the same as canceling the task and scheduling\n // a new one, except it reuses the original object.\n //\n // The primary use case is to increase the priority of a Link-initated\n // prefetch on hover.\n //\n // Note: _onComplete is not reset here because it's preserved on the same\n // task object. When the rescheduled task completes, the original callback\n // will still be invoked.\n // Un-cancel the task, in case it was previously canceled.\n task.isCanceled = false;\n task.phase = 1;\n // Assign a new sort ID to move it ahead of all other tasks at the same\n // priority level. (Higher sort IDs are processed first.)\n task.sortId = sortIdCounter++;\n task.priority = // If this task is the most recently hovered link, maintain its\n // Intent priority, even if the rescheduled priority is lower.\n task === mostRecentlyHoveredLink ? PrefetchPriority.Intent : priority;\n task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch;\n task.fetchStrategy = fetchStrategy;\n trackMostRecentlyHoveredLink(task);\n if (task._heapIndex !== -1) {\n // The task is already in the queue.\n heapResift(taskHeap, task);\n } else {\n heapPush(taskHeap, task);\n }\n pingPrefetchScheduler();\n}\nexport function isPrefetchTaskDirty(task, nextUrl, tree) {\n // This is used to quickly bail out of a prefetch task if the result is\n // guaranteed to not have changed since the task was initiated. This is\n // strictly an optimization — theoretically, if it always returned true, no\n // behavior should change because a full prefetch task will effectively\n // perform the same checks.\n return task.routeCacheVersion !== getCurrentRouteCacheVersion() || task.segmentCacheVersion !== getCurrentSegmentCacheVersion() || task.treeAtTimeOfPrefetch !== tree || task.key.nextUrl !== nextUrl;\n}\nfunction trackMostRecentlyHoveredLink(task) {\n // Track the mostly recently hovered link, i.e. the most recently scheduled\n // task at Intent priority. There must only be one such task at a time.\n if (task.priority === PrefetchPriority.Intent && task !== mostRecentlyHoveredLink) {\n if (mostRecentlyHoveredLink !== null) {\n // Bump the previously hovered link's priority down to Default.\n if (mostRecentlyHoveredLink.priority !== PrefetchPriority.Background) {\n mostRecentlyHoveredLink.priority = PrefetchPriority.Default;\n heapResift(taskHeap, mostRecentlyHoveredLink);\n }\n }\n mostRecentlyHoveredLink = task;\n }\n}\nexport function pingPrefetchScheduler() {\n if (didScheduleMicrotask) {\n // Already scheduled a task to process the queue\n return;\n }\n didScheduleMicrotask = true;\n scheduleMicrotask(processQueueInMicrotask);\n}\n/**\n * Checks if we've exceeded the maximum number of concurrent prefetch requests,\n * to avoid saturating the browser's internal network queue. This is a\n * cooperative limit — prefetch tasks should check this before issuing\n * new requests.\n *\n * Also checks if we're within the revalidation cooldown window, during which\n * prefetch requests are delayed to allow CDN cache propagation.\n */ function hasNetworkBandwidth(task) {\n // Check if we're within the revalidation cooldown window\n if (revalidationCooldownTimeoutHandle !== null) {\n // We're within the cooldown window. Return false to prevent prefetching.\n // When the cooldown expires, the timeout will call ensureWorkIsScheduled()\n // to retry the queue.\n return false;\n }\n // TODO: Also check if there's an in-progress navigation. We should never\n // add prefetch requests to the network queue if an actual navigation is\n // taking place, to ensure there's sufficient bandwidth for render-blocking\n // data and resources.\n // TODO: Consider reserving some amount of bandwidth for static prefetches.\n if (task.priority === PrefetchPriority.Intent) {\n // The most recently hovered link is allowed to exceed the default limit.\n //\n // The goal is to always have enough bandwidth to start a new prefetch\n // request when hovering over a link.\n //\n // However, because we don't abort in-progress requests, it's still possible\n // we'll run out of bandwidth. When links are hovered in quick succession,\n // there could be multiple hover requests running simultaneously.\n return inProgressRequests < 12;\n }\n // The default limit is lower than the limit for a hovered link.\n return inProgressRequests < 4;\n}\nfunction spawnPrefetchSubtask(prefetchSubtask) {\n // When the scheduler spawns an async task, we don't await its result.\n // Instead, the async task writes its result directly into the cache, then\n // pings the scheduler to continue.\n //\n // We process server responses streamingly, so the prefetch subtask will\n // likely resolve before we're finished receiving all the data. The subtask\n // result includes a promise that resolves once the network connection is\n // closed. The scheduler uses this to control network bandwidth by tracking\n // and limiting the number of concurrent requests.\n inProgressRequests++;\n return prefetchSubtask.then((result)=>{\n if (result === null) {\n // The prefetch task errored before it could start processing the\n // network stream. Assume the connection is closed.\n onPrefetchConnectionClosed();\n return null;\n }\n // Wait for the connection to close before freeing up more bandwidth.\n result.closed.then(onPrefetchConnectionClosed);\n return result.value;\n });\n}\nfunction onPrefetchConnectionClosed() {\n inProgressRequests--;\n // Notify the scheduler that we have more bandwidth, and can continue\n // processing tasks.\n pingPrefetchScheduler();\n}\n/**\n * Notify the scheduler that we've received new data for an in-progress\n * prefetch. The corresponding task will be added back to the queue (unless the\n * task has been canceled in the meantime).\n */ export function pingPrefetchTask(task) {\n // \"Ping\" a prefetch that's already in progress to notify it of new data.\n if (// Check if prefetch was canceled.\n task.isCanceled || // Check if prefetch is already queued.\n task._heapIndex !== -1) {\n return;\n }\n // Add the task back to the queue.\n heapPush(taskHeap, task);\n pingPrefetchScheduler();\n}\nfunction processQueueInMicrotask() {\n didScheduleMicrotask = false;\n // We aim to minimize how often we read the current time. Since nearly all\n // functions in the prefetch scheduler are synchronous, we can read the time\n // once and pass it as an argument wherever it's needed.\n const now = Date.now();\n // Process the task queue until we run out of network bandwidth.\n let task = heapPeek(taskHeap);\n while(task !== null && hasNetworkBandwidth(task)){\n task.routeCacheVersion = getCurrentRouteCacheVersion();\n task.segmentCacheVersion = getCurrentSegmentCacheVersion();\n const exitStatus = pingRoute(now, task);\n // These fields are only valid for a single attempt. Reset them after each\n // iteration of the task queue.\n const hasBackgroundWork = task.hasBackgroundWork;\n task.hasBackgroundWork = false;\n task.spawnedRuntimePrefetches = null;\n switch(exitStatus){\n case 0:\n // The task yielded because there are too many requests in progress.\n // Stop processing tasks until we have more bandwidth.\n return;\n case 1:\n // The task is blocked. It needs more data before it can proceed.\n // Keep the task out of the queue until the server responds.\n heapPop(taskHeap);\n // Continue to the next task\n task = heapPeek(taskHeap);\n continue;\n case 2:\n if (task.phase === 1) {\n // Finished prefetching the route tree. Proceed to prefetching\n // the segments.\n task.phase = 0;\n heapResift(taskHeap, task);\n } else if (hasBackgroundWork) {\n // The task spawned additional background work. Reschedule the task\n // at background priority.\n task.priority = PrefetchPriority.Background;\n heapResift(taskHeap, task);\n } else {\n // The prefetch is complete. Continue to the next task.\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n // Notify the Instant Navigation Testing API that the prefetch has\n // completed, so it can proceed with navigation.\n const onComplete = task._onComplete;\n task._onComplete = undefined;\n onComplete?.();\n }\n heapPop(taskHeap);\n }\n task = heapPeek(taskHeap);\n continue;\n default:\n exitStatus;\n }\n }\n // Run LRU cleanup only when the scheduler is fully idle: no queued tasks and\n // no in-progress requests. At that point, all active prefetch tasks have\n // finished reading from the cache (moving recently used entries to the front\n // of the list), so only genuinely stale data gets evicted.\n if (task === null && inProgressRequests === 0) {\n cleanup();\n }\n}\n/**\n * Check this during a prefetch task to determine if background work can be\n * performed. If so, it evaluates to `true`. Otherwise, it returns `false`,\n * while also scheduling a background task to run later. Usage:\n *\n * @example\n * if (background(task)) {\n * // Perform background-pri work\n * }\n */ function background(task) {\n if (task.priority === PrefetchPriority.Background) {\n return true;\n }\n task.hasBackgroundWork = true;\n return false;\n}\nfunction pingRoute(now, task) {\n const key = task.key;\n const route = readOrCreateRouteCacheEntry(now, task, key);\n const exitStatus = pingRootRouteTree(now, task, route);\n if (exitStatus !== 0 && key.search !== '') {\n // If the URL has a non-empty search string, also prefetch the pathname\n // without the search string. We use the searchless route tree as a base for\n // optimistic routing; see requestOptimisticRouteCacheEntry for details.\n //\n // Note that we don't need to prefetch any of the segment data. Just the\n // route tree.\n //\n // TODO: This is a temporary solution; the plan is to replace this by adding\n // a wildcard lookup method to the TupleMap implementation. This is\n // non-trivial to implement because it needs to account for things like\n // fallback route entries, hence this temporary workaround.\n const url = new URL(key.pathname, location.origin);\n const keyWithoutSearch = createCacheKey(url.href, key.nextUrl);\n const routeWithoutSearch = readOrCreateRouteCacheEntry(now, task, keyWithoutSearch);\n switch(routeWithoutSearch.status){\n case EntryStatus.Empty:\n {\n if (background(task)) {\n routeWithoutSearch.status = EntryStatus.Pending;\n spawnPrefetchSubtask(fetchRouteOnCacheMiss(routeWithoutSearch, keyWithoutSearch));\n }\n break;\n }\n case EntryStatus.Pending:\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n {\n break;\n }\n default:\n routeWithoutSearch;\n }\n }\n return exitStatus;\n}\nfunction pingRootRouteTree(now, task, route) {\n switch(route.status){\n case EntryStatus.Empty:\n {\n // Route is not yet cached, and there's no request already in progress.\n // Spawn a task to request the route, load it into the cache, and ping\n // the task to continue.\n // TODO: There are multiple strategies in the API for prefetching\n // a route. Currently we've only implemented the main one: per-segment,\n // static-data only.\n //\n // There's also ``\n // which prefetch both static *and* dynamic data.\n // Similarly, we need to fallback to the old, per-page\n // behavior if PPR is disabled for a route (via the incremental opt-in).\n //\n // Those cases will be handled here.\n spawnPrefetchSubtask(fetchRouteOnCacheMiss(route, task.key));\n // If the request takes longer than a minute, a subsequent request should\n // retry instead of waiting for this one. When the response is received,\n // this value will be replaced by a new value based on the stale time sent\n // from the server.\n // TODO: We should probably also manually abort the fetch task, to reclaim\n // server bandwidth.\n route.staleAt = now + 60 * 1000;\n // Upgrade to Pending so we know there's already a request in progress\n route.status = EntryStatus.Pending;\n // Intentional fallthrough to the Pending branch\n }\n case EntryStatus.Pending:\n {\n // Still pending. We can't start prefetching the segments until the route\n // tree has loaded. Add the task to the set of blocked tasks so that it\n // is notified when the route tree is ready.\n const blockedTasks = route.blockedTasks;\n if (blockedTasks === null) {\n route.blockedTasks = new Set([\n task\n ]);\n } else {\n blockedTasks.add(task);\n }\n return 1;\n }\n case EntryStatus.Rejected:\n {\n // Route tree failed to load. Treat as a 404.\n return 2;\n }\n case EntryStatus.Fulfilled:\n {\n if (task.phase !== 0) {\n // Do not prefetch segment data until we've entered the segment phase.\n return 2;\n }\n // Recursively fill in the segment tree.\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return 0;\n }\n const tree = route.tree;\n // A task's fetch strategy gets set to `PPR` for any \"auto\" prefetch.\n // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead.\n // We don't need to do this for runtime prefetches, because those are only available in\n // `cacheComponents`, where every route is PPR.\n let fetchStrategy;\n if (tree.prefetchHints & PrefetchHint.SubtreeHasInstant) {\n // If `instant` is defined anywhere on the target route, ignore the\n // fetch strategy and switch to unified strategy used by Cache\n // Components (called `PPR` for now, will likely be renamed).\n //\n // In practice, this just means that a \"full\" prefetch () has no effect. You're meant to use Runtime\n // Prefetching instead — that's the new pattern that replaces\n // prefetch={true}.\n //\n // The reason we check for `instant` rather than the `cacheComponents`\n // flag is to support incremental adoption. `prefetch={true}` will\n // continue to work until you opt into `instant`.\n fetchStrategy = FetchStrategy.PPR;\n } else if (task.fetchStrategy === FetchStrategy.PPR) {\n fetchStrategy = route.supportsPerSegmentPrefetching ? FetchStrategy.PPR : FetchStrategy.LoadingBoundary;\n } else {\n fetchStrategy = task.fetchStrategy;\n }\n switch(fetchStrategy){\n case FetchStrategy.PPR:\n {\n // For Cache Components pages, each segment may be prefetched\n // statically or using a runtime request, based on various\n // configurations and heuristics. We'll do this in two passes: first\n // traverse the tree and perform all the static prefetches.\n //\n // Then, if there are any segments that need a runtime request,\n // do another pass to perform a runtime prefetch.\n pingStaticHead(now, task, route);\n const exitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, task.treeAtTimeOfPrefetch, tree);\n if (exitStatus === 0) {\n // Child yielded without finishing.\n return 0;\n }\n const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches;\n if (spawnedRuntimePrefetches !== null) {\n // During the first pass, we discovered segments that require a\n // runtime prefetch. Do a second pass to construct a request tree.\n const spawnedEntries = new Map();\n pingRuntimeHead(now, task, route, spawnedEntries, FetchStrategy.PPRRuntime);\n const requestTree = pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries);\n let needsDynamicRequest = spawnedEntries.size > 0;\n if (needsDynamicRequest) {\n // Perform a dynamic prefetch request and populate the cache with\n // the result.\n spawnPrefetchSubtask(fetchSegmentPrefetchesUsingDynamicRequest(task, route, FetchStrategy.PPRRuntime, requestTree, spawnedEntries));\n }\n }\n return 2;\n }\n case FetchStrategy.Full:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.LoadingBoundary:\n {\n // Prefetch multiple segments using a single dynamic request.\n // TODO: We can consolidate this branch with previous one by modeling\n // it as if the first segment in the new tree has runtime prefetching\n // enabled. Will do this as a follow-up refactor. Might want to remove\n // the special metatdata case below first. In the meantime, it's not\n // really that much duplication, just would be nice to remove one of\n // these codepaths.\n const spawnedEntries = new Map();\n pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy);\n const dynamicRequestTree = diffRouteTreeAgainstCurrent(now, task, route, task.treeAtTimeOfPrefetch, tree, spawnedEntries, fetchStrategy);\n let needsDynamicRequest = spawnedEntries.size > 0;\n if (needsDynamicRequest) {\n spawnPrefetchSubtask(fetchSegmentPrefetchesUsingDynamicRequest(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries));\n }\n return 2;\n }\n default:\n fetchStrategy;\n }\n break;\n }\n default:\n {\n route;\n }\n }\n return 2;\n}\nfunction pingStaticHead(now, task, route) {\n // The Head data for a page (metadata, viewport) is not really a route\n // segment, in the sense that it doesn't appear in the route tree. But we\n // store it in the cache as if it were, using a special key.\n pingStaticSegmentData(now, task, route, readOrCreateSegmentCacheEntry(now, FetchStrategy.PPR, route.metadata), task.key, route.metadata);\n}\nfunction pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy) {\n pingRouteTreeAndIncludeDynamicData(now, task, route, route.metadata, false, spawnedEntries, // When prefetching the head, there's no difference between Full\n // and LoadingBoundary\n fetchStrategy === FetchStrategy.LoadingBoundary ? FetchStrategy.Full : fetchStrategy);\n}\n// TODO: Rename dynamic -> runtime throughout this module\nfunction pingSharedPartOfCacheComponentsTree(now, task, route, oldTree, newTree) {\n // When Cache Components is enabled (or PPR, or a fully static route when PPR\n // is disabled; those cases are treated equivalently to Cache Components), we\n // start by prefetching each segment individually. Once we reach the \"new\"\n // part of the tree — the part that doesn't exist on the current page — we\n // may choose to switch to a runtime prefetch instead, based on the\n // information sent by the server in the route tree.\n //\n // The traversal starts in the \"shared\" part of the tree. Once we reach the\n // \"new\" part of the tree, we switch to a different traversal,\n // pingNewPartOfCacheComponentsTree.\n // Prefetch this segment's static data.\n const segment = readOrCreateSegmentCacheEntry(now, task.fetchStrategy, newTree);\n pingStaticSegmentData(now, task, route, segment, task.key, newTree);\n // Recursively ping the children.\n const oldTreeChildren = oldTree[1];\n const newTreeChildren = newTree.slots;\n if (newTreeChildren !== null) {\n for(const parallelRouteKey in newTreeChildren){\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return 0;\n }\n const newTreeChild = newTreeChildren[parallelRouteKey];\n const newTreeChildSegment = newTreeChild.segment;\n const oldTreeChild = oldTreeChildren[parallelRouteKey];\n const oldTreeChildSegment = oldTreeChild?.[0];\n let childExitStatus;\n if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) {\n // We're still in the \"shared\" part of the tree.\n childExitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, oldTreeChild, newTreeChild);\n } else {\n // We've entered the \"new\" part of the tree. Switch\n // traversal functions.\n childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, newTreeChild);\n }\n if (childExitStatus === 0) {\n // Child yielded without finishing.\n return 0;\n }\n }\n }\n return 2;\n}\nfunction pingNewPartOfCacheComponentsTree(now, task, route, tree) {\n // We're now prefetching in the \"new\" part of the tree, the part that doesn't\n // exist on the current page. (In other words, we're deeper than the\n // shared layouts.) Segments in here default to being prefetched statically.\n // However, if the server instructs us to, we may switch to a runtime\n // prefetch instead. Traverse the tree and check at each segment.\n if (tree.prefetchHints & PrefetchHint.HasRuntimePrefetch) {\n // This route has a runtime prefetch response. Since we're below the shared\n // layout, everything from this point should be prefetched using a single,\n // combined runtime request, rather than using per-segment static requests.\n // This is true even if some of the child segments are known to be fully\n // static — once we've decided to perform a runtime prefetch, we might as\n // well respond with the static segments in the same roundtrip. (That's how\n // regular navigations work, too.) We'll still skip over segments that are\n // already cached, though.\n //\n // It's the server's responsibility to set a reasonable value of\n // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the\n // server may send a value of `false` even if the user opts in, if it\n // determines during build that the route is always fully static. There are\n // more optimizations we can do once we implement fallback param\n // tracking, too.\n //\n // Use the task object to collect the segments that need a runtime prefetch.\n // This will signal to the outer task queue that a second traversal is\n // required to construct a request tree.\n if (task.spawnedRuntimePrefetches === null) {\n task.spawnedRuntimePrefetches = new Set([\n tree.requestKey\n ]);\n } else {\n task.spawnedRuntimePrefetches.add(tree.requestKey);\n }\n // Then exit the traversal without prefetching anything further.\n return 2;\n }\n // This segment should not be runtime prefetched. Prefetch its static data.\n const segment = readOrCreateSegmentCacheEntry(now, task.fetchStrategy, tree);\n pingStaticSegmentData(now, task, route, segment, task.key, tree);\n if (tree.slots !== null) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return 0;\n }\n // Recursively ping the children.\n for(const parallelRouteKey in tree.slots){\n const childTree = tree.slots[parallelRouteKey];\n const childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, childTree);\n if (childExitStatus === 0) {\n // Child yielded without finishing.\n return 0;\n }\n }\n }\n // This segment and all its children have finished prefetching.\n return 2;\n}\nfunction diffRouteTreeAgainstCurrent(now, task, route, oldTree, newTree, spawnedEntries, fetchStrategy) {\n // This is a single recursive traversal that does multiple things:\n // - Finds the parts of the target route (newTree) that are not part of\n // of the current page (oldTree) by diffing them, using the same algorithm\n // as a real navigation.\n // - Constructs a request tree (FlightRouterState) that describes which\n // segments need to be prefetched and which ones are already cached.\n // - Creates a set of pending cache entries for the segments that need to\n // be prefetched, so that a subsequent prefetch task does not request the\n // same segments again.\n const oldTreeChildren = oldTree[1];\n const newTreeChildren = newTree.slots;\n let requestTreeChildren = {};\n if (newTreeChildren !== null) {\n for(const parallelRouteKey in newTreeChildren){\n const newTreeChild = newTreeChildren[parallelRouteKey];\n const newTreeChildSegment = newTreeChild.segment;\n const oldTreeChild = oldTreeChildren[parallelRouteKey];\n const oldTreeChildSegment = oldTreeChild?.[0];\n if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) {\n // This segment is already part of the current route. Keep traversing.\n const requestTreeChild = diffRouteTreeAgainstCurrent(now, task, route, oldTreeChild, newTreeChild, spawnedEntries, fetchStrategy);\n requestTreeChildren[parallelRouteKey] = requestTreeChild;\n } else {\n // This segment is not part of the current route. We're entering a\n // part of the tree that we need to prefetch (unless everything is\n // already cached).\n switch(fetchStrategy){\n case FetchStrategy.LoadingBoundary:\n {\n // When PPR is disabled, we can't prefetch per segment. We must\n // fallback to the old prefetch behavior and send a dynamic request.\n // Only routes that include a loading boundary can be prefetched in\n // this way.\n //\n // This is simlar to a \"full\" prefetch, but we're much more\n // conservative about which segments to include in the request.\n //\n // The server will only render up to the first loading boundary\n // inside new part of the tree. If there's no loading boundary\n // anywhere in the tree, the server will never return any data, so\n // we can skip the request.\n const subtreeHasLoadingBoundary = (newTreeChild.prefetchHints & (PrefetchHint.SegmentHasLoadingBoundary | PrefetchHint.SubtreeHasLoadingBoundary)) !== 0;\n const requestTreeChild = subtreeHasLoadingBoundary ? pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, newTreeChild, null, spawnedEntries) : convertRouteTreeToFlightRouterState(newTreeChild);\n requestTreeChildren[parallelRouteKey] = requestTreeChild;\n break;\n }\n case FetchStrategy.PPRRuntime:\n {\n // This is a runtime prefetch. Fetch all cacheable data in the tree,\n // not just the static PPR shell.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy);\n requestTreeChildren[parallelRouteKey] = requestTreeChild;\n break;\n }\n case FetchStrategy.Full:\n {\n // This is a \"full\" prefetch. Fetch all the data in the tree, both\n // static and dynamic. We issue roughly the same request that we\n // would during a real navigation. The goal is that once the\n // navigation occurs, the router should not have to fetch any\n // additional data.\n //\n // Although the response will include dynamic data, opting into a\n // Full prefetch — via — implicitly\n // instructs the cache to treat the response as \"static\", or non-\n // dynamic, since the whole point is to cache it for\n // future navigations.\n //\n // Construct a tree (currently a FlightRouterState) that represents\n // which segments need to be prefetched and which ones are already\n // cached. If the tree is empty, then we can exit. Otherwise, we'll\n // send the request tree to the server and use the response to\n // populate the segment cache.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy);\n requestTreeChildren[parallelRouteKey] = requestTreeChild;\n break;\n }\n default:\n fetchStrategy;\n }\n }\n }\n }\n const requestTree = [\n newTree.segment,\n requestTreeChildren,\n null,\n null\n ];\n return requestTree;\n}\nfunction pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, tree, refetchMarkerContext, spawnedEntries) {\n // This function is similar to pingRouteTreeAndIncludeDynamicData, except the\n // server is only going to return a minimal loading state — it will stop\n // rendering at the first loading boundary. Whereas a Full prefetch is\n // intentionally aggressive and tries to pretfetch all the data that will be\n // needed for a navigation, a LoadingBoundary prefetch is much more\n // conservative. For example, it will omit from the request tree any segment\n // that is already cached, regardles of whether it's partial or full. By\n // contrast, a Full prefetch will refetch partial segments.\n // \"inside-shared-layout\" tells the server where to start looking for a\n // loading boundary.\n let refetchMarker = refetchMarkerContext === null ? 'inside-shared-layout' : null;\n const segment = readOrCreateSegmentCacheEntry(now, task.fetchStrategy, tree);\n switch(segment.status){\n case EntryStatus.Empty:\n {\n // This segment is not cached. Add a refetch marker so the server knows\n // to start rendering here.\n // TODO: Instead of a \"refetch\" marker, we could just omit this subtree's\n // FlightRouterState from the request tree. I think this would probably\n // already work even without any updates to the server. For consistency,\n // though, I'll send the full tree and we'll look into this later as part\n // of a larger redesign of the request protocol.\n // Add the pending cache entry to the result map.\n spawnedEntries.set(tree.requestKey, upgradeToPendingSegment(segment, // Set the fetch strategy to LoadingBoundary to indicate that the server\n // might not include it in the pending response. If another route is able\n // to issue a per-segment request, we'll do that in the background.\n FetchStrategy.LoadingBoundary));\n if (refetchMarkerContext !== 'refetch') {\n refetchMarker = refetchMarkerContext = 'refetch';\n } else {\n // There's already a parent with a refetch marker, so we don't need\n // to add another one.\n }\n break;\n }\n case EntryStatus.Fulfilled:\n {\n // The segment is already cached.\n const segmentHasLoadingBoundary = (tree.prefetchHints & PrefetchHint.SegmentHasLoadingBoundary) !== 0;\n if (segmentHasLoadingBoundary) {\n // This segment has a loading boundary, which means the server won't\n // render its children. So there's nothing left to prefetch along this\n // path. We can bail out.\n return convertRouteTreeToFlightRouterState(tree);\n }\n break;\n }\n case EntryStatus.Pending:\n {\n break;\n }\n case EntryStatus.Rejected:\n {\n break;\n }\n default:\n segment;\n }\n const requestTreeChildren = {};\n if (tree.slots !== null) {\n for(const parallelRouteKey in tree.slots){\n const childTree = tree.slots[parallelRouteKey];\n requestTreeChildren[parallelRouteKey] = pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, childTree, refetchMarkerContext, spawnedEntries);\n }\n }\n const requestTree = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker\n ];\n return requestTree;\n}\nfunction pingRouteTreeAndIncludeDynamicData(now, task, route, tree, isInsideRefetchingParent, spawnedEntries, fetchStrategy) {\n // The tree we're constructing is the same shape as the tree we're navigating\n // to. But even though this is a \"new\" tree, some of the individual segments\n // may be cached as a result of other route prefetches.\n //\n // So we need to find the first uncached segment along each path add an\n // explicit \"refetch\" marker so the server knows where to start rendering.\n // Once the server starts rendering along a path, it keeps rendering the\n // entire subtree.\n const segment = readOrCreateSegmentCacheEntry(now, // Note that `fetchStrategy` might be different from `task.fetchStrategy`,\n // and we have to use the former here.\n // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to\n // always use runtime prefetching (via `export const prefetch`), and those should check for\n // entries that include search params.\n fetchStrategy, tree);\n let spawnedSegment = null;\n switch(segment.status){\n case EntryStatus.Empty:\n {\n // This segment is not cached.\n if (fetchStrategy === FetchStrategy.Full) {\n // Check if there's a matching entry in the bfcache. If so, fulfill the\n // segment using the bfcache entry instead of issuing a new request.\n const fulfilled = attemptToFulfillDynamicSegmentFromBFCache(now, segment, tree);\n if (fulfilled !== null) {\n break;\n }\n }\n // Include it in the request.\n spawnedSegment = upgradeToPendingSegment(segment, fetchStrategy);\n break;\n }\n case EntryStatus.Fulfilled:\n {\n // The segment is already cached.\n if (segment.isPartial && canNewFetchStrategyProvideMoreContent(segment.fetchStrategy, fetchStrategy)) {\n // The cached segment contains dynamic holes, and was prefetched using a\n // less specific strategy than the current one. This means we're in one\n // of these cases:\n // - we have a static prefetch, and we're doing a runtime prefetch\n // - we have a static or runtime prefetch, and we're doing a Full\n // prefetch (or a navigation).\n // In either case, we need to include it in the request to get a more\n // specific (or full) version. However, if there's a non-stale bfcache\n // entry from a previous navigation, prefer that over making a new\n // request.\n if (fetchStrategy === FetchStrategy.Full) {\n const fulfilled = attemptToUpgradeSegmentFromBFCache(now, tree);\n if (fulfilled !== null) {\n break;\n }\n }\n spawnedSegment = pingFullSegmentRevalidation(now, tree, fetchStrategy);\n }\n break;\n }\n case EntryStatus.Pending:\n case EntryStatus.Rejected:\n {\n // There's either another prefetch currently in progress, or the previous\n // attempt failed. If the new strategy can provide more content, fetch it again.\n if (canNewFetchStrategyProvideMoreContent(segment.fetchStrategy, fetchStrategy)) {\n spawnedSegment = pingFullSegmentRevalidation(now, tree, fetchStrategy);\n }\n break;\n }\n default:\n segment;\n }\n const requestTreeChildren = {};\n if (tree.slots !== null) {\n for(const parallelRouteKey in tree.slots){\n const childTree = tree.slots[parallelRouteKey];\n requestTreeChildren[parallelRouteKey] = pingRouteTreeAndIncludeDynamicData(now, task, route, childTree, isInsideRefetchingParent || spawnedSegment !== null, spawnedEntries, fetchStrategy);\n }\n }\n if (spawnedSegment !== null) {\n // Add the pending entry to the result map.\n spawnedEntries.set(tree.requestKey, spawnedSegment);\n }\n // Don't bother to add a refetch marker if one is already present in a parent.\n const refetchMarker = !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null;\n const requestTree = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker\n ];\n return requestTree;\n}\nfunction pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries) {\n // Construct a request tree (FlightRouterState) for a runtime prefetch. If\n // a segment is part of the runtime prefetch, the tree is constructed by\n // diffing against what's already in the prefetch cache. Otherwise, we send\n // a regular FlightRouterState with no special markers.\n //\n // See pingRouteTreeAndIncludeDynamicData for details.\n if (spawnedRuntimePrefetches.has(tree.requestKey)) {\n // This segment needs a runtime prefetch.\n return pingRouteTreeAndIncludeDynamicData(now, task, route, tree, false, spawnedEntries, FetchStrategy.PPRRuntime);\n }\n let requestTreeChildren = {};\n const slots = tree.slots;\n if (slots !== null) {\n for(const parallelRouteKey in slots){\n const childTree = slots[parallelRouteKey];\n requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(now, task, route, childTree, spawnedRuntimePrefetches, spawnedEntries);\n }\n }\n // This segment is not part of the runtime prefetch. Clone the base tree.\n const requestTree = [\n tree.segment,\n requestTreeChildren,\n null,\n null\n ];\n return requestTree;\n}\nfunction pingStaticSegmentData(now, task, route, segment, routeKey, tree) {\n switch(segment.status){\n case EntryStatus.Empty:\n if (process.env.__NEXT_PREFETCH_INLINING) {\n // All segment data for this route is bundled into a single\n // /_inlined response. Walk the full route tree to collect all\n // Empty segments, upgrade them to Pending, and spawn one\n // bundled request. Subsequent calls for other segments in the\n // same tree will see them as Pending and skip.\n const inlinedEntries = collectInlinedEntries(now, route);\n if (inlinedEntries.size > 0) {\n spawnPrefetchSubtask(fetchInlinedSegmentsOnCacheMiss(route, routeKey, route.tree, inlinedEntries));\n }\n break;\n }\n // Upgrade to Pending so we know there's already a request in progress\n spawnPrefetchSubtask(fetchSegmentOnCacheMiss(route, upgradeToPendingSegment(segment, FetchStrategy.PPR), routeKey, tree));\n break;\n case EntryStatus.Pending:\n {\n // There's already a request in progress. Depending on what kind of\n // request it is, we may want to revalidate it.\n switch(segment.fetchStrategy){\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n break;\n case FetchStrategy.LoadingBoundary:\n // There's a pending request, but because it's using the old\n // prefetching strategy, we can't be sure if it will be fulfilled by\n // the response — it might be inside the loading boundary. Perform\n // a revalidation, but because it's speculative, wait to do it at\n // background priority.\n if (background(task)) {\n // TODO: Instead of speculatively revalidating, consider including\n // `hasLoading` in the route tree prefetch response.\n pingPPRSegmentRevalidation(now, route, routeKey, tree);\n }\n break;\n default:\n segment.fetchStrategy;\n }\n break;\n }\n case EntryStatus.Rejected:\n {\n // The existing entry in the cache was rejected. Depending on how it\n // was originally fetched, we may or may not want to revalidate it.\n switch(segment.fetchStrategy){\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n break;\n case FetchStrategy.LoadingBoundary:\n // There's a rejected entry, but it was fetched using the loading\n // boundary strategy. So the reason it wasn't returned by the server\n // might just be because it was inside a loading boundary. Or because\n // there was a dynamic rewrite. Revalidate it using the per-\n // segment strategy.\n //\n // Because a rejected segment will definitely prevent the segment (and\n // all of its children) from rendering, we perform this revalidation\n // immediately instead of deferring it to a background task.\n pingPPRSegmentRevalidation(now, route, routeKey, tree);\n break;\n default:\n segment.fetchStrategy;\n }\n break;\n }\n case EntryStatus.Fulfilled:\n break;\n default:\n segment;\n }\n// Segments do not have dependent tasks, so once the prefetch is initiated,\n// there's nothing else for us to do (except write the server data into the\n// entry, which is handled by `fetchSegmentOnCacheMiss`).\n}\n/**\n * Walks the RouteTree (including the head metadata) and collects any segments\n * that are still Empty into a Map, upgrading them to Pending. These entries\n * will be fulfilled by the inlined prefetch response.\n */ function collectInlinedEntries(now, route) {\n const entries = new Map();\n collectInlinedEntriesImpl(now, route.tree, entries);\n // Also collect the head/metadata entry.\n const headEntry = readOrCreateSegmentCacheEntry(now, FetchStrategy.PPR, route.metadata);\n if (headEntry.status === EntryStatus.Empty) {\n entries.set(route.metadata.requestKey, upgradeToPendingSegment(headEntry, FetchStrategy.PPR));\n }\n return entries;\n}\nfunction collectInlinedEntriesImpl(now, tree, entries) {\n const entry = readOrCreateSegmentCacheEntry(now, FetchStrategy.PPR, tree);\n if (entry.status === EntryStatus.Empty) {\n entries.set(tree.requestKey, upgradeToPendingSegment(entry, FetchStrategy.PPR));\n }\n if (tree.slots !== null) {\n for(const parallelRouteKey in tree.slots){\n collectInlinedEntriesImpl(now, tree.slots[parallelRouteKey], entries);\n }\n }\n}\nfunction pingPPRSegmentRevalidation(now, route, routeKey, tree) {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(now, FetchStrategy.PPR, tree);\n switch(revalidatingSegment.status){\n case EntryStatus.Empty:\n // Spawn a prefetch request. The fetch function handles upserting\n // the entry at the correct fulfilled vary path upon completion.\n spawnPrefetchSubtask(fetchSegmentOnCacheMiss(route, upgradeToPendingSegment(revalidatingSegment, FetchStrategy.PPR), routeKey, tree));\n break;\n case EntryStatus.Pending:\n break;\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n break;\n default:\n revalidatingSegment;\n }\n}\nfunction pingFullSegmentRevalidation(now, tree, fetchStrategy) {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(now, fetchStrategy, tree);\n if (revalidatingSegment.status === EntryStatus.Empty) {\n // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the\n // segments that we need. So we don't initiate a request here directly. By\n // returning a pending entry from this function, it signals to the caller\n // that this segment should be included in the request that's sent to\n // the server.\n const pendingSegment = upgradeToPendingSegment(revalidatingSegment, fetchStrategy);\n // The upsert is handled by fulfillEntrySpawnedByRuntimePrefetch\n // when the dynamic prefetch response is written into the cache.\n return pendingSegment;\n } else {\n // There's already a revalidation in progress.\n const nonEmptyRevalidatingSegment = revalidatingSegment;\n if (canNewFetchStrategyProvideMoreContent(nonEmptyRevalidatingSegment.fetchStrategy, fetchStrategy)) {\n // The existing revalidation was fetched using a less specific strategy.\n // Reset it and start a new revalidation.\n const emptySegment = overwriteRevalidatingSegmentCacheEntry(now, fetchStrategy, tree);\n const pendingSegment = upgradeToPendingSegment(emptySegment, fetchStrategy);\n // The upsert is handled by fulfillEntrySpawnedByRuntimePrefetch\n // when the dynamic prefetch response is written into the cache.\n return pendingSegment;\n }\n switch(nonEmptyRevalidatingSegment.status){\n case EntryStatus.Pending:\n // There's already an in-progress prefetch that includes this segment.\n return null;\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n return null;\n default:\n nonEmptyRevalidatingSegment;\n return null;\n }\n }\n}\nfunction doesCurrentSegmentMatchCachedSegment(route, currentSegment, cachedSegment) {\n if (cachedSegment === PAGE_SEGMENT_KEY) {\n // In the FlightRouterState stored by the router, the page segment has the\n // rendered search params appended to the name of the segment. In the\n // prefetch cache, however, this is stored separately. So, when comparing\n // the router's current FlightRouterState to the cached FlightRouterState,\n // we need to make sure we compare both parts of the segment.\n // TODO: This is not modeled clearly. We use the same type,\n // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache\n // _and_ the server response format, when conceptually those are three\n // different things and treated in different ways. We should encode more of\n // this information into the type design so mistakes are less likely.\n return currentSegment === addSearchParamsIfPageSegment(PAGE_SEGMENT_KEY, Object.fromEntries(new URLSearchParams(route.renderedSearch)));\n }\n // Non-page segments are compared using the same function as the server\n return matchSegment(cachedSegment, currentSegment);\n}\n// -----------------------------------------------------------------------------\n// The remainder of the module is a MinHeap implementation. Try not to put any\n// logic below here unless it's related to the heap algorithm. We can extract\n// this to a separate module if/when we need multiple kinds of heaps.\n// -----------------------------------------------------------------------------\nfunction compareQueuePriority(a, b) {\n // Since the queue is a MinHeap, this should return a positive number if b is\n // higher priority than a, and a negative number if a is higher priority\n // than b.\n // `priority` is an integer, where higher numbers are higher priority.\n const priorityDiff = b.priority - a.priority;\n if (priorityDiff !== 0) {\n return priorityDiff;\n }\n // If the priority is the same, check which phase the prefetch is in — is it\n // prefetching the route tree, or the segments? Route trees are prioritized.\n const phaseDiff = b.phase - a.phase;\n if (phaseDiff !== 0) {\n return phaseDiff;\n }\n // Finally, check the insertion order. `sortId` is an incrementing counter\n // assigned to prefetches. We want to process the newest prefetches first.\n return b.sortId - a.sortId;\n}\nfunction heapPush(heap, node) {\n const index = heap.length;\n heap.push(node);\n node._heapIndex = index;\n heapSiftUp(heap, node, index);\n}\nfunction heapPeek(heap) {\n return heap.length === 0 ? null : heap[0];\n}\nfunction heapPop(heap) {\n if (heap.length === 0) {\n return null;\n }\n const first = heap[0];\n first._heapIndex = -1;\n const last = heap.pop();\n if (last !== first) {\n heap[0] = last;\n last._heapIndex = 0;\n heapSiftDown(heap, last, 0);\n }\n return first;\n}\nfunction heapDelete(heap, node) {\n const index = node._heapIndex;\n if (index !== -1) {\n node._heapIndex = -1;\n if (heap.length !== 0) {\n const last = heap.pop();\n if (last !== node) {\n heap[index] = last;\n last._heapIndex = index;\n heapSiftDown(heap, last, index);\n }\n }\n }\n}\nfunction heapResift(heap, node) {\n const index = node._heapIndex;\n if (index !== -1) {\n if (index === 0) {\n heapSiftDown(heap, node, 0);\n } else {\n const parentIndex = index - 1 >>> 1;\n const parent = heap[parentIndex];\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Sift up.\n heapSiftUp(heap, node, index);\n } else {\n // The parent is smaller (or equal). Sift down.\n heapSiftDown(heap, node, index);\n }\n }\n }\n}\nfunction heapSiftUp(heap, node, i) {\n let index = i;\n while(index > 0){\n const parentIndex = index - 1 >>> 1;\n const parent = heap[parentIndex];\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Swap positions.\n heap[parentIndex] = node;\n node._heapIndex = parentIndex;\n heap[index] = parent;\n parent._heapIndex = index;\n index = parentIndex;\n } else {\n // The parent is smaller. Exit.\n return;\n }\n }\n}\nfunction heapSiftDown(heap, node, i) {\n let index = i;\n const length = heap.length;\n const halfLength = length >>> 1;\n while(index < halfLength){\n const leftIndex = (index + 1) * 2 - 1;\n const left = heap[leftIndex];\n const rightIndex = leftIndex + 1;\n const right = heap[rightIndex];\n // If the left or right node is smaller, swap with the smaller of those.\n if (compareQueuePriority(left, node) < 0) {\n if (rightIndex < length && compareQueuePriority(right, left) < 0) {\n heap[index] = right;\n right._heapIndex = index;\n heap[rightIndex] = node;\n node._heapIndex = rightIndex;\n index = rightIndex;\n } else {\n heap[index] = left;\n left._heapIndex = index;\n heap[leftIndex] = node;\n node._heapIndex = leftIndex;\n index = leftIndex;\n }\n } else if (rightIndex < length && compareQueuePriority(right, node) < 0) {\n heap[index] = right;\n right._heapIndex = index;\n heap[rightIndex] = node;\n node._heapIndex = rightIndex;\n index = rightIndex;\n } else {\n // Neither child is smaller. Exit.\n return;\n }\n }\n}\n\n//# sourceMappingURL=scheduler.js.map","/**\n * Vary Params Decoding\n *\n * This module is shared between server and client.\n */ /**\n * Synchronously reads vary params from a thenable.\n *\n * By the time this is called (client-side or in collectSegmentData), the\n * thenable should already be fulfilled because the Flight stream has been\n * fully received. We check the status synchronously to avoid unnecessary\n * microtasks.\n *\n * Returns null if the thenable is still pending (which shouldn't happen in\n * normal operation - it indicates the server failed to track vary params).\n */ export function readVaryParams(thenable) {\n // Attach a no-op listener to force Flight to synchronously resolve the\n // thenable. When a thenable arrives from the Flight stream, it may be in an\n // intermediate 'resolved_model' state (data received but not unwrapped).\n // Calling .then() triggers Flight to transition it to 'fulfilled', making\n // the value available synchronously. React uses this same optimization\n // internally to avoid unnecessary microtasks.\n thenable.then(noop);\n // If the thenable is still not 'fulfilled' after calling .then(), the server\n // failed to resolve it before the stream ended. Treat as unknown.\n if (thenable.status !== 'fulfilled') {\n return null;\n }\n return thenable.value;\n}\nconst noop = ()=>{};\n\n//# sourceMappingURL=vary-params-decoding.js.map","import { readVaryParams } from '../../../shared/lib/segment-cache/vary-params-decoding';\nimport { NEXT_DID_POSTPONE_HEADER, NEXT_INSTANT_PREFETCH_HEADER, NEXT_ROUTER_PREFETCH_HEADER, NEXT_ROUTER_SEGMENT_PREFETCH_HEADER, NEXT_ROUTER_STALE_TIME_HEADER, NEXT_ROUTER_STATE_TREE_HEADER, NEXT_URL, RSC_CONTENT_TYPE_HEADER, RSC_HEADER } from '../app-router-headers';\nimport { createFetch, createFromNextReadableStream } from '../router-reducer/fetch-server-response';\nimport { pingPrefetchTask, isPrefetchTaskDirty } from './scheduler';\nimport { getRouteVaryPath, getFulfilledRouteVaryPath, getFulfilledSegmentVaryPath, getSegmentVaryPathForRequest, appendLayoutVaryPath, finalizeLayoutVaryPath, finalizePageVaryPath, clonePageVaryPathWithNewSearchParams, finalizeMetadataVaryPath, getPartialPageVaryPath, getPartialLayoutVaryPath, getRenderedSearchFromVaryPath } from './vary-path';\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url';\nimport { createCacheKey as createPrefetchRequestKey } from './cache-key';\nimport { doesStaticSegmentAppearInURL, getCacheKeyForDynamicParam, getRenderedPathname, getRenderedSearch, parseDynamicParamFromURLPart } from '../../route-params';\nimport { createCacheMap, getFromCacheMap, setInCacheMap, setSizeInCacheMap, deleteFromCacheMap, isValueExpired } from './cache-map';\nimport { appendSegmentRequestKeyPart, convertSegmentPathToStaticExportFilename, createSegmentRequestKeyPart, HEAD_REQUEST_KEY, ROOT_SEGMENT_REQUEST_KEY } from '../../../shared/lib/segment-cache/segment-value-encoding';\nimport { normalizeFlightData, prepareFlightRouterStateForRequest } from '../../flight-data-helpers';\nimport { STATIC_STALETIME_MS } from '../router-reducer/reducers/navigate-reducer';\nimport { pingVisibleLinks } from '../links';\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment';\nimport { FetchStrategy } from './types';\nimport { createPromiseWithResolvers } from '../../../shared/lib/promise-with-resolvers';\nimport { readFromBFCache, UnknownDynamicStaleTime } from './bfcache';\nimport { discoverKnownRoute, matchKnownRoute } from './optimistic-routes';\nimport { convertServerPatchToFullTree } from './navigation';\nimport { getNavigationBuildId } from '../../navigation-build-id';\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants';\n/**\n * Ensures a minimum stale time of 30s to avoid issues where the server sends a too\n * short-lived stale time, which would prevent anything from being prefetched.\n */ export function getStaleTimeMs(staleTimeSeconds) {\n return Math.max(staleTimeSeconds, 30) * 1000;\n}\n/**\n * Tracks the status of a cache entry as it progresses from no data (Empty),\n * waiting for server data (Pending), and finished (either Fulfilled or\n * Rejected depending on the response from the server.\n */ export var EntryStatus = /*#__PURE__*/ function(EntryStatus) {\n EntryStatus[EntryStatus[\"Empty\"] = 0] = \"Empty\";\n EntryStatus[EntryStatus[\"Pending\"] = 1] = \"Pending\";\n EntryStatus[EntryStatus[\"Fulfilled\"] = 2] = \"Fulfilled\";\n EntryStatus[EntryStatus[\"Rejected\"] = 3] = \"Rejected\";\n return EntryStatus;\n}({});\nconst isOutputExportMode = process.env.NODE_ENV === 'production' && process.env.__NEXT_CONFIG_OUTPUT === 'export';\nconst MetadataOnlyRequestTree = [\n '',\n {},\n null,\n 'metadata-only'\n];\nlet routeCacheMap = createCacheMap();\nlet segmentCacheMap = createCacheMap();\n// All invalidation listeners for the whole cache are tracked in single set.\n// Since we don't yet support tag or path-based invalidation, there's no point\n// tracking them any more granularly than this. Once we add granular\n// invalidation, that may change, though generally the model is to just notify\n// the listeners and allow the caller to poll the prefetch cache with a new\n// prefetch task if desired.\nlet invalidationListeners = null;\n// Incrementing counters used to track cache invalidations. Route and segment\n// caches have separate versions so they can be invalidated independently.\n// Invalidation does not eagerly evict anything from the cache; entries are\n// lazily evicted when read.\nlet currentRouteCacheVersion = 0;\nlet currentSegmentCacheVersion = 0;\nexport function getCurrentRouteCacheVersion() {\n return currentRouteCacheVersion;\n}\nexport function getCurrentSegmentCacheVersion() {\n return currentSegmentCacheVersion;\n}\n/**\n * Invalidates all prefetch cache entries (both route and segment caches).\n *\n * After invalidation, triggers re-prefetching of visible links and notifies\n * invalidation listeners.\n */ export function invalidateEntirePrefetchCache(nextUrl, tree) {\n currentRouteCacheVersion++;\n currentSegmentCacheVersion++;\n pingVisibleLinks(nextUrl, tree);\n pingInvalidationListeners(nextUrl, tree);\n}\n/**\n * Invalidates all route cache entries. Route entries contain the tree structure\n * (which segments exist at a given URL) but not the segment data itself.\n *\n * After invalidation, triggers re-prefetching of visible links and notifies\n * invalidation listeners.\n */ export function invalidateRouteCacheEntries(nextUrl, tree) {\n currentRouteCacheVersion++;\n pingVisibleLinks(nextUrl, tree);\n pingInvalidationListeners(nextUrl, tree);\n}\n/**\n * Invalidates all segment cache entries. Segment entries contain the actual\n * RSC data for each segment.\n *\n * After invalidation, triggers re-prefetching of visible links and notifies\n * invalidation listeners.\n */ export function invalidateSegmentCacheEntries(nextUrl, tree) {\n currentSegmentCacheVersion++;\n pingVisibleLinks(nextUrl, tree);\n pingInvalidationListeners(nextUrl, tree);\n}\nfunction attachInvalidationListener(task) {\n // This function is called whenever a prefetch task reads a cache entry. If\n // the task has an onInvalidate function associated with it — i.e. the one\n // optionally passed to router.prefetch(onInvalidate) — then we attach that\n // listener to the every cache entry that the task reads. Then, if an entry\n // is invalidated, we call the function.\n if (task.onInvalidate !== null) {\n if (invalidationListeners === null) {\n invalidationListeners = new Set([\n task\n ]);\n } else {\n invalidationListeners.add(task);\n }\n }\n}\nfunction notifyInvalidationListener(task) {\n const onInvalidate = task.onInvalidate;\n if (onInvalidate !== null) {\n // Clear the callback from the task object to guarantee it's not called more\n // than once.\n task.onInvalidate = null;\n // This is a user-space function, so we must wrap in try/catch.\n try {\n onInvalidate();\n } catch (error) {\n if (typeof reportError === 'function') {\n reportError(error);\n } else {\n console.error(error);\n }\n }\n }\n}\nexport function pingInvalidationListeners(nextUrl, tree) {\n // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks.\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n if (invalidationListeners !== null) {\n const tasks = invalidationListeners;\n invalidationListeners = null;\n for (const task of tasks){\n if (isPrefetchTaskDirty(task, nextUrl, tree)) {\n notifyInvalidationListener(task);\n }\n }\n }\n}\nexport function readRouteCacheEntry(now, key) {\n const varyPath = getRouteVaryPath(key.pathname, key.search, key.nextUrl);\n const isRevalidation = false;\n const existingEntry = getFromCacheMap(now, getCurrentRouteCacheVersion(), routeCacheMap, varyPath, isRevalidation);\n if (existingEntry !== null) {\n return existingEntry;\n }\n // No cache hit. Attempt to construct from template using the new\n // optimistic routing mechanism (pattern-based matching).\n if (process.env.__NEXT_OPTIMISTIC_ROUTING) {\n return matchKnownRoute(key.pathname, key.search);\n }\n return null;\n}\nexport function readSegmentCacheEntry(now, varyPath) {\n const isRevalidation = false;\n return getFromCacheMap(now, getCurrentSegmentCacheVersion(), segmentCacheMap, varyPath, isRevalidation);\n}\nfunction readRevalidatingSegmentCacheEntry(now, varyPath) {\n const isRevalidation = true;\n return getFromCacheMap(now, getCurrentSegmentCacheVersion(), segmentCacheMap, varyPath, isRevalidation);\n}\nexport function waitForSegmentCacheEntry(pendingEntry) {\n // Because the entry is pending, there's already a in-progress request.\n // Attach a promise to the entry that will resolve when the server responds.\n let promiseWithResolvers = pendingEntry.promise;\n if (promiseWithResolvers === null) {\n promiseWithResolvers = pendingEntry.promise = createPromiseWithResolvers();\n } else {\n // There's already a promise we can use\n }\n return promiseWithResolvers.promise;\n}\nfunction createDetachedRouteCacheEntry() {\n return {\n canonicalUrl: null,\n status: 0,\n blockedTasks: null,\n tree: null,\n metadata: null,\n // This is initialized to true because we don't know yet whether the route\n // could be intercepted. It's only set to false once we receive a response\n // from the server.\n couldBeIntercepted: true,\n // Similarly, we don't yet know if the route supports PPR.\n supportsPerSegmentPrefetching: false,\n renderedSearch: null,\n // Map-related fields\n ref: null,\n size: 0,\n // Since this is an empty entry, there's no reason to ever evict it. It will\n // be updated when the data is populated.\n staleAt: Infinity,\n version: getCurrentRouteCacheVersion()\n };\n}\n/**\n * Checks if an entry for a route exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */ export function readOrCreateRouteCacheEntry(now, task, key) {\n attachInvalidationListener(task);\n const existingEntry = readRouteCacheEntry(now, key);\n if (existingEntry !== null) {\n return existingEntry;\n }\n // Create a pending entry and add it to the cache.\n const pendingEntry = createDetachedRouteCacheEntry();\n const varyPath = getRouteVaryPath(key.pathname, key.search, key.nextUrl);\n const isRevalidation = false;\n setInCacheMap(routeCacheMap, varyPath, pendingEntry, isRevalidation);\n return pendingEntry;\n}\n// TODO: This function predates the new optimisticRouting feature and will be\n// removed once optimisticRouting is stable. The new mechanism (matchKnownRoute)\n// handles search param variations more robustly as part of the general route\n// prediction system. This fallback remains for when optimisticRouting is\n// disabled (staticChildren is null).\nexport function deprecated_requestOptimisticRouteCacheEntry(now, requestedUrl, nextUrl) {\n // This function is called during a navigation when there was no matching\n // route tree in the prefetch cache. Before de-opting to a blocking,\n // unprefetched navigation, we will first attempt to construct an \"optimistic\"\n // route tree by checking the cache for similar routes.\n //\n // Check if there's a route with the same pathname, but with different\n // search params. We can then base our optimistic route tree on this entry.\n //\n // Conceptually, we are simulating what would happen if we did perform a\n // prefetch the requested URL, under the assumption that the server will\n // not redirect or rewrite the request in a different manner than the\n // base route tree. This assumption might not hold, in which case we'll have\n // to recover when we perform the dynamic navigation request. However, this\n // is what would happen if a route were dynamically rewritten/redirected\n // in between the prefetch and the navigation. So the logic needs to exist\n // to handle this case regardless.\n // Look for a route with the same pathname, but with an empty search string.\n // TODO: There's nothing inherently special about the empty search string;\n // it's chosen somewhat arbitrarily, with the rationale that it's the most\n // likely one to exist. But we should update this to match _any_ search\n // string. The plan is to generalize this logic alongside other improvements\n // related to \"fallback\" cache entries.\n const requestedSearch = requestedUrl.search;\n if (requestedSearch === '') {\n // The caller would have already checked if a route with an empty search\n // string is in the cache. So we can bail out here.\n return null;\n }\n const urlWithoutSearchParams = new URL(requestedUrl);\n urlWithoutSearchParams.search = '';\n const routeWithNoSearchParams = readRouteCacheEntry(now, createPrefetchRequestKey(urlWithoutSearchParams.href, nextUrl));\n if (routeWithNoSearchParams === null || routeWithNoSearchParams.status !== 2) {\n // Bail out of constructing an optimistic route tree. This will result in\n // a blocking, unprefetched navigation.\n return null;\n }\n // Now we have a base route tree we can \"patch\" with our optimistic values.\n // Optimistically assume that redirects for the requested pathname do\n // not vary on the search string. Therefore, if the base route was\n // redirected to a different search string, then the optimistic route\n // should be redirected to the same search string. Otherwise, we use\n // the requested search string.\n const canonicalUrlForRouteWithNoSearchParams = new URL(routeWithNoSearchParams.canonicalUrl, requestedUrl.origin);\n const optimisticCanonicalSearch = canonicalUrlForRouteWithNoSearchParams.search !== '' ? canonicalUrlForRouteWithNoSearchParams.search : requestedSearch;\n // Similarly, optimistically assume that rewrites for the requested\n // pathname do not vary on the search string. Therefore, if the base\n // route was rewritten to a different search string, then the optimistic\n // route should be rewritten to the same search string. Otherwise, we use\n // the requested search string.\n const optimisticRenderedSearch = routeWithNoSearchParams.renderedSearch !== '' ? routeWithNoSearchParams.renderedSearch : requestedSearch;\n const optimisticUrl = new URL(routeWithNoSearchParams.canonicalUrl, location.origin);\n optimisticUrl.search = optimisticCanonicalSearch;\n const optimisticCanonicalUrl = createHrefFromUrl(optimisticUrl);\n const optimisticRouteTree = deprecated_createOptimisticRouteTree(routeWithNoSearchParams.tree, optimisticRenderedSearch);\n const optimisticMetadataTree = deprecated_createOptimisticRouteTree(routeWithNoSearchParams.metadata, optimisticRenderedSearch);\n // Clone the base route tree, and override the relevant fields with our\n // optimistic values.\n const optimisticEntry = {\n canonicalUrl: optimisticCanonicalUrl,\n status: 2,\n // This isn't cloned because it's instance-specific\n blockedTasks: null,\n tree: optimisticRouteTree,\n metadata: optimisticMetadataTree,\n couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted,\n supportsPerSegmentPrefetching: routeWithNoSearchParams.supportsPerSegmentPrefetching,\n hasDynamicRewrite: routeWithNoSearchParams.hasDynamicRewrite,\n // Override the rendered search with the optimistic value.\n renderedSearch: optimisticRenderedSearch,\n // Map-related fields\n ref: null,\n size: 0,\n staleAt: routeWithNoSearchParams.staleAt,\n version: routeWithNoSearchParams.version\n };\n // Do not insert this entry into the cache. It only exists so we can\n // perform the current navigation. Just return it to the caller.\n return optimisticEntry;\n}\nfunction deprecated_createOptimisticRouteTree(tree, newRenderedSearch) {\n // Create a new route tree that identical to the original one except for\n // the rendered search string, which is contained in the vary path.\n let clonedSlots = null;\n const originalSlots = tree.slots;\n if (originalSlots !== null) {\n clonedSlots = {};\n for(const parallelRouteKey in originalSlots){\n const childTree = originalSlots[parallelRouteKey];\n clonedSlots[parallelRouteKey] = deprecated_createOptimisticRouteTree(childTree, newRenderedSearch);\n }\n }\n // We only need to clone the vary path if the route is a page.\n if (tree.isPage) {\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n refreshState: tree.refreshState,\n varyPath: clonePageVaryPathWithNewSearchParams(tree.varyPath, newRenderedSearch),\n isPage: true,\n slots: clonedSlots,\n prefetchHints: tree.prefetchHints\n };\n }\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n refreshState: tree.refreshState,\n varyPath: tree.varyPath,\n isPage: false,\n slots: clonedSlots,\n prefetchHints: tree.prefetchHints\n };\n}\n/**\n * Checks if an entry for a segment exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */ export function readOrCreateSegmentCacheEntry(now, fetchStrategy, tree) {\n const existingEntry = readSegmentCacheEntry(now, tree.varyPath);\n if (existingEntry !== null) {\n return existingEntry;\n }\n // Create a pending entry and add it to the cache. The stale time is set to a\n // default value; the actual stale time will be set when the entry is\n // fulfilled with data from the server response.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree);\n const pendingEntry = createDetachedSegmentCacheEntry(now);\n const isRevalidation = false;\n setInCacheMap(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation);\n return pendingEntry;\n}\nexport function readOrCreateRevalidatingSegmentEntry(now, fetchStrategy, tree) {\n // This function is called when we've already confirmed that a particular\n // segment is cached, but we want to perform another request anyway in case it\n // returns more complete and/or fresher data than we already have. The logic\n // for deciding whether to replace the existing entry is handled elsewhere;\n // this function just handles retrieving a cache entry that we can use to\n // track the revalidation.\n //\n // The reason revalidations are stored in the cache is because we need to be\n // able to dedupe multiple revalidation requests. The reason they have to be\n // handled specially is because we shouldn't overwrite a \"normal\" entry if\n // one exists at the same keypath. So, for each internal cache location, there\n // is a special \"revalidation\" slot that is used solely for this purpose.\n //\n // You can think of it as if all the revalidation entries were stored in a\n // separate cache map from the canonical entries, and then transfered to the\n // canonical cache map once the request is complete — this isn't how it's\n // actually implemented, since it's more efficient to store them in the same\n // data structure as the normal entries, but that's how it's modeled\n // conceptually.\n // TODO: Once we implement Fallback behavior for params, where an entry is\n // re-keyed based on response information, we'll need to account for the\n // possibility that the keypath of the previous entry is more generic than\n // the keypath of the revalidating entry. In other words, the server could\n // return a less generic entry upon revalidation. For now, though, this isn't\n // a concern because the keypath is based solely on the prefetch strategy,\n // not on data contained in the response.\n const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath);\n if (existingEntry !== null) {\n return existingEntry;\n }\n // Create a pending entry and add it to the cache. The stale time is set to a\n // default value; the actual stale time will be set when the entry is\n // fulfilled with data from the server response.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree);\n const pendingEntry = createDetachedSegmentCacheEntry(now);\n const isRevalidation = true;\n setInCacheMap(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation);\n return pendingEntry;\n}\nexport function overwriteRevalidatingSegmentCacheEntry(now, fetchStrategy, tree) {\n // This function is called when we've already decided to replace an existing\n // revalidation entry. Create a new entry and write it into the cache,\n // overwriting the previous value. The stale time is set to a default value;\n // the actual stale time will be set when the entry is fulfilled with data\n // from the server response.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree);\n const pendingEntry = createDetachedSegmentCacheEntry(now);\n const isRevalidation = true;\n setInCacheMap(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation);\n return pendingEntry;\n}\nexport function upsertSegmentEntry(now, varyPath, candidateEntry) {\n // We have a new entry that has not yet been inserted into the cache. Before\n // we do so, we need to confirm whether it takes precedence over the existing\n // entry (if one exists).\n // TODO: We should not upsert an entry if its key was invalidated in the time\n // since the request was made. We can do that by passing the \"owner\" entry to\n // this function and confirming it's the same as `existingEntry`.\n if (isValueExpired(now, getCurrentSegmentCacheVersion(), candidateEntry)) {\n // The entry is expired. We cannot upsert it.\n return null;\n }\n const existingEntry = readSegmentCacheEntry(now, varyPath);\n if (existingEntry !== null) {\n // Don't replace a more specific segment with a less-specific one. A case where this\n // might happen is if the existing segment was fetched via\n // ``.\n if (// We fetched the new segment using a different, less specific fetch strategy\n // than the segment we already have in the cache, so it can't have more content.\n candidateEntry.fetchStrategy !== existingEntry.fetchStrategy && !canNewFetchStrategyProvideMoreContent(existingEntry.fetchStrategy, candidateEntry.fetchStrategy) || // The existing entry isn't partial, but the new one is.\n // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?)\n !existingEntry.isPartial && candidateEntry.isPartial) {\n // We're going to leave revalidating entry in the cache so that it doesn't\n // get revalidated again unnecessarily. Downgrade the Fulfilled entry to\n // Rejected and null out the data so it can be garbage collected. We leave\n // `staleAt` intact to prevent subsequent revalidation attempts only until\n // the entry expires.\n const rejectedEntry = candidateEntry;\n rejectedEntry.status = 3;\n rejectedEntry.rsc = null;\n return null;\n }\n // Evict the existing entry from the cache.\n deleteFromCacheMap(existingEntry);\n }\n const isRevalidation = false;\n setInCacheMap(segmentCacheMap, varyPath, candidateEntry, isRevalidation);\n return candidateEntry;\n}\nexport function createDetachedSegmentCacheEntry(now) {\n // Default stale time for pending segment cache entries. The actual stale time\n // is set when the entry is fulfilled with data from the server response.\n const staleAt = now + 30 * 1000;\n const emptyEntry = {\n status: 0,\n // Default to assuming the fetch strategy will be PPR. This will be updated\n // when a fetch is actually initiated.\n fetchStrategy: FetchStrategy.PPR,\n rsc: null,\n isPartial: true,\n promise: null,\n // Map-related fields\n ref: null,\n size: 0,\n staleAt,\n version: 0\n };\n return emptyEntry;\n}\nexport function upgradeToPendingSegment(emptyEntry, fetchStrategy) {\n const pendingEntry = emptyEntry;\n pendingEntry.status = 1;\n pendingEntry.fetchStrategy = fetchStrategy;\n if (fetchStrategy === FetchStrategy.Full) {\n // We can assume the response will contain the full segment data. Set this\n // to false so we know it's OK to omit this segment from any navigation\n // requests that may happen while the data is still pending.\n pendingEntry.isPartial = false;\n }\n // Set the version here, since this is right before the request is initiated.\n // The next time the segment cache version is incremented, the entry will\n // effectively be evicted. This happens before initiating the request, rather\n // than when receiving the response, because it's guaranteed to happen\n // before the data is read on the server.\n pendingEntry.version = getCurrentSegmentCacheVersion();\n return pendingEntry;\n}\nexport function attemptToFulfillDynamicSegmentFromBFCache(now, segment, tree) {\n // Attempts to fulfill an empty segment cache entry using data from the\n // bfcache. This is only valid during a Full prefetch (i.e. one that includes\n // dynamic data), because the bfcache stores data from navigations which\n // always include dynamic data.\n // We always use the canonical vary path when checking the bfcache. This is\n // the same operation we'd use to access the cache during a\n // regular navigation.\n const varyPath = tree.varyPath;\n // Read from the BFCache without expiring it (pass -1). We check freshness\n // ourselves using navigatedAt, because the BFCache's staleAt may have been\n // overridden by a per-page unstable_dynamicStaleTime and can't be used to\n // derive the original request time.\n const bfcacheEntry = readFromBFCache(varyPath);\n if (bfcacheEntry !== null) {\n // The stale time for dynamic prefetches (default: 5 mins) is different\n // from the stale time for regular navigations (default: 0 secs). Use\n // navigatedAt to compute the correct expiry for prefetch purposes.\n const dynamicPrefetchStaleAt = bfcacheEntry.navigatedAt + STATIC_STALETIME_MS;\n if (now > dynamicPrefetchStaleAt) {\n return null;\n }\n const pendingSegment = upgradeToPendingSegment(segment, FetchStrategy.Full);\n const isPartial = false;\n return fulfillSegmentCacheEntry(pendingSegment, bfcacheEntry.rsc, dynamicPrefetchStaleAt, isPartial);\n }\n return null;\n}\n/**\n * Attempts to replace an existing segment cache entry with data from the\n * bfcache. Unlike `attemptToFulfillDynamicSegmentFromBFCache` (which fills an\n * empty entry), this creates a new entry and upserts it, so it works even when\n * the segment is already fulfilled.\n */ export function attemptToUpgradeSegmentFromBFCache(now, tree) {\n const varyPath = tree.varyPath;\n const bfcacheEntry = readFromBFCache(varyPath);\n if (bfcacheEntry !== null) {\n const dynamicPrefetchStaleAt = bfcacheEntry.navigatedAt + STATIC_STALETIME_MS;\n if (now > dynamicPrefetchStaleAt) {\n return null;\n }\n const pendingSegment = upgradeToPendingSegment(createDetachedSegmentCacheEntry(now), FetchStrategy.Full);\n const isPartial = false;\n const newEntry = fulfillSegmentCacheEntry(pendingSegment, bfcacheEntry.rsc, dynamicPrefetchStaleAt, isPartial);\n const segmentVaryPath = getSegmentVaryPathForRequest(FetchStrategy.Full, tree);\n const upserted = upsertSegmentEntry(now, segmentVaryPath, newEntry);\n if (upserted !== null && upserted.status === 2) {\n return upserted;\n }\n }\n return null;\n}\nfunction pingBlockedTasks(entry) {\n const blockedTasks = entry.blockedTasks;\n if (blockedTasks !== null) {\n for (const task of blockedTasks){\n pingPrefetchTask(task);\n }\n entry.blockedTasks = null;\n }\n}\nexport function createMetadataRouteTree(metadataVaryPath) {\n // The Head is not actually part of the route tree, but other than that, it's\n // fetched and cached like a segment. Some functions expect a RouteTree\n // object, so rather than fork the logic in all those places, we use this\n // \"fake\" one.\n const metadata = {\n requestKey: HEAD_REQUEST_KEY,\n segment: HEAD_REQUEST_KEY,\n refreshState: null,\n varyPath: metadataVaryPath,\n // The metadata isn't really a \"page\" (though it isn't really a \"segment\"\n // either) but for the purposes of how this field is used, it behaves like\n // one. If this logic ever gets more complex we can change this to an enum.\n isPage: true,\n slots: null,\n prefetchHints: 0\n };\n return metadata;\n}\nexport function fulfillRouteCacheEntry(now, entry, tree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching) {\n // Get the rendered search from the vary path\n const renderedSearch = getRenderedSearchFromVaryPath(metadataVaryPath) ?? '';\n const fulfilledEntry = entry;\n fulfilledEntry.status = 2;\n fulfilledEntry.tree = tree;\n fulfilledEntry.metadata = createMetadataRouteTree(metadataVaryPath);\n // Route structure is essentially static — it only changes on deploy.\n // Always use the static stale time.\n // NOTE: An exception is rewrites/redirects in middleware or proxy, which can\n // change routes dynamically. We have other strategies for handling those.\n fulfilledEntry.staleAt = now + STATIC_STALETIME_MS;\n fulfilledEntry.couldBeIntercepted = couldBeIntercepted;\n fulfilledEntry.canonicalUrl = canonicalUrl;\n fulfilledEntry.renderedSearch = renderedSearch;\n fulfilledEntry.supportsPerSegmentPrefetching = supportsPerSegmentPrefetching;\n fulfilledEntry.hasDynamicRewrite = false;\n pingBlockedTasks(entry);\n return fulfilledEntry;\n}\nexport function writeRouteIntoCache(now, pathname, nextUrl, tree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching) {\n const pendingEntry = createDetachedRouteCacheEntry();\n const fulfilledEntry = fulfillRouteCacheEntry(now, pendingEntry, tree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching);\n const renderedSearch = fulfilledEntry.renderedSearch;\n const varyPath = getFulfilledRouteVaryPath(pathname, renderedSearch, nextUrl, couldBeIntercepted);\n const isRevalidation = false;\n setInCacheMap(routeCacheMap, varyPath, fulfilledEntry, isRevalidation);\n return fulfilledEntry;\n}\n/**\n * Marks a route cache entry as having a dynamic rewrite. Called when we\n * discover that a route pattern has dynamic rewrite behavior - i.e., we used\n * an optimistic route tree for prediction, but the server responded with a\n * different rendered pathname.\n *\n * Once marked, attempts to use this entry as a template for prediction will\n * bail out to server resolution.\n */ export function markRouteEntryAsDynamicRewrite(entry) {\n entry.hasDynamicRewrite = true;\n// Note: The caller is responsible for also calling invalidateRouteCacheEntries\n// to invalidate other entries that may have been derived from this template\n// before we knew it had a dynamic rewrite.\n}\nfunction fulfillSegmentCacheEntry(segmentCacheEntry, rsc, staleAt, isPartial) {\n const fulfilledEntry = segmentCacheEntry;\n fulfilledEntry.status = 2;\n fulfilledEntry.rsc = rsc;\n fulfilledEntry.staleAt = staleAt;\n fulfilledEntry.isPartial = isPartial;\n // Resolve any listeners that were waiting for this data.\n if (segmentCacheEntry.promise !== null) {\n segmentCacheEntry.promise.resolve(fulfilledEntry);\n // Free the promise for garbage collection.\n fulfilledEntry.promise = null;\n }\n return fulfilledEntry;\n}\nfunction rejectRouteCacheEntry(entry, staleAt) {\n const rejectedEntry = entry;\n rejectedEntry.status = 3;\n rejectedEntry.staleAt = staleAt;\n pingBlockedTasks(entry);\n}\nfunction rejectSegmentCacheEntry(entry, staleAt) {\n const rejectedEntry = entry;\n rejectedEntry.status = 3;\n rejectedEntry.staleAt = staleAt;\n if (entry.promise !== null) {\n // NOTE: We don't currently propagate the reason the prefetch was canceled\n // but we could by accepting a `reason` argument.\n entry.promise.resolve(null);\n entry.promise = null;\n }\n}\nfunction convertRootTreePrefetchToRouteTree(rootTree, renderedPathname, renderedSearch, acc) {\n // Remove trailing and leading slashes\n const pathnameParts = renderedPathname.split('/').filter((p)=>p !== '');\n const index = 0;\n const rootSegment = ROOT_SEGMENT_REQUEST_KEY;\n return convertTreePrefetchToRouteTree(rootTree.tree, rootSegment, null, ROOT_SEGMENT_REQUEST_KEY, pathnameParts, index, renderedSearch, acc);\n}\nfunction convertTreePrefetchToRouteTree(prefetch, segment, partialVaryPath, requestKey, pathnameParts, pathnamePartsIndex, renderedSearch, acc) {\n // Converts the route tree sent by the server into the format used by the\n // cache. The cached version of the tree includes additional fields, such as a\n // cache key for each segment. Since this is frequently accessed, we compute\n // it once instead of on every access. This same cache key is also used to\n // request the segment from the server.\n let slots = null;\n let isPage;\n let varyPath;\n const prefetchSlots = prefetch.slots;\n if (prefetchSlots !== null) {\n isPage = false;\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath);\n slots = {};\n for(let parallelRouteKey in prefetchSlots){\n const childPrefetch = prefetchSlots[parallelRouteKey];\n const childSegmentName = childPrefetch.name;\n const childParam = childPrefetch.param;\n let childDoesAppearInURL;\n let childSegment;\n let childPartialVaryPath;\n if (childParam !== null) {\n // This segment is parameterized. Get the param from the pathname.\n const childParamValue = parseDynamicParamFromURLPart(childParam.type, pathnameParts, pathnamePartsIndex);\n // Assign a cache key to the segment, based on the param value. In the\n // pre-Segment Cache implementation, the server computes this and sends\n // it in the body of the response. In the Segment Cache implementation,\n // the server sends an empty string and we fill it in here.\n // TODO: We're intentionally not adding the search param to page\n // segments here; it's tracked separately and added back during a read.\n // This would clearer if we waited to construct the segment until it's\n // read from the cache, since that's effectively what we're\n // doing anyway.\n const childParamKey = // The server omits this field from the prefetch response when\n // cacheComponents is enabled.\n childParam.key !== null ? childParam.key : getCacheKeyForDynamicParam(childParamValue, '');\n childPartialVaryPath = appendLayoutVaryPath(partialVaryPath, childParamKey, childSegmentName);\n childSegment = [\n childSegmentName,\n childParamKey,\n childParam.type,\n childParam.siblings\n ];\n childDoesAppearInURL = true;\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n childPartialVaryPath = partialVaryPath;\n childSegment = childSegmentName;\n childDoesAppearInURL = doesStaticSegmentAppearInURL(childSegmentName);\n }\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = childDoesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex;\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment);\n const childRequestKey = appendSegmentRequestKeyPart(requestKey, parallelRouteKey, childRequestKeyPart);\n slots[parallelRouteKey] = convertTreePrefetchToRouteTree(childPrefetch, childSegment, childPartialVaryPath, childRequestKey, pathnameParts, childPathnamePartsIndex, renderedSearch, acc);\n }\n } else {\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true;\n varyPath = finalizePageVaryPath(requestKey, renderedSearch, partialVaryPath);\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(requestKey, renderedSearch, partialVaryPath);\n }\n } else {\n // This is a layout segment.\n isPage = false;\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath);\n }\n }\n return {\n requestKey,\n segment,\n refreshState: null,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n varyPath: varyPath,\n isPage: isPage,\n slots,\n prefetchHints: prefetch.prefetchHints\n };\n}\nexport function convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc) {\n return convertFlightRouterStateToRouteTree(flightRouterState, ROOT_SEGMENT_REQUEST_KEY, null, renderedSearch, acc);\n}\nexport function convertReusedFlightRouterStateToRouteTree(parentRouteTree, parallelRouteKey, flightRouterState, renderedSearch, acc) {\n // Create a RouteTree for a FlightRouterState that was reused from an older\n // route. This happens during a navigation when a parallel route slot does not\n // match the target route; we reuse whatever slot was already active.\n // Unlike a FlightRouterState, the RouteTree type contains backreferences to\n // the parent segments. Append the vary path to the parent's vary path.\n const parentPartialVaryPath = parentRouteTree.isPage ? getPartialPageVaryPath(parentRouteTree.varyPath) : getPartialLayoutVaryPath(parentRouteTree.varyPath);\n const segment = flightRouterState[0];\n // And the request key.\n const parentRequestKey = parentRouteTree.requestKey;\n const requestKeyPart = createSegmentRequestKeyPart(segment);\n const requestKey = appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, requestKeyPart);\n return convertFlightRouterStateToRouteTree(flightRouterState, requestKey, parentPartialVaryPath, renderedSearch, acc);\n}\nfunction convertFlightRouterStateToRouteTree(flightRouterState, requestKey, parentPartialVaryPath, parentRenderedSearch, acc) {\n const originalSegment = flightRouterState[0];\n // If the FlightRouterState has a refresh state, then this segment is part of\n // an inactive parallel route. It has a different rendered search query than\n // the outer parent route. In order to construct the inactive route correctly,\n // we must restore the query that was originally used to render it.\n const compressedRefreshState = flightRouterState[2] ?? null;\n const refreshState = compressedRefreshState !== null ? {\n canonicalUrl: compressedRefreshState[0],\n renderedSearch: compressedRefreshState[1]\n } : null;\n const renderedSearch = refreshState !== null ? refreshState.renderedSearch : parentRenderedSearch;\n let segment;\n let partialVaryPath;\n let isPage;\n let varyPath;\n if (Array.isArray(originalSegment)) {\n isPage = false;\n const paramCacheKey = originalSegment[1];\n const paramName = originalSegment[0];\n partialVaryPath = appendLayoutVaryPath(parentPartialVaryPath, paramCacheKey, paramName);\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath);\n segment = originalSegment;\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n partialVaryPath = parentPartialVaryPath;\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true;\n // The navigation implementation expects the search params to be included\n // in the segment. However, in the case of a static response, the search\n // params are omitted. So the client needs to add them back in when reading\n // from the Segment Cache.\n //\n // For consistency, we'll do this for dynamic responses, too.\n //\n // TODO: We should move search params out of FlightRouterState and handle\n // them entirely on the client, similar to our plan for dynamic params.\n segment = PAGE_SEGMENT_KEY;\n varyPath = finalizePageVaryPath(requestKey, renderedSearch, partialVaryPath);\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(requestKey, renderedSearch, partialVaryPath);\n }\n } else {\n // This is a layout segment.\n isPage = false;\n segment = originalSegment;\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath);\n }\n }\n let slots = null;\n const parallelRoutes = flightRouterState[1];\n for(let parallelRouteKey in parallelRoutes){\n const childRouterState = parallelRoutes[parallelRouteKey];\n const childSegment = childRouterState[0];\n // TODO: Eventually, the param values will not be included in the response\n // from the server. We'll instead fill them in on the client by parsing\n // the URL. This is where we'll do that.\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment);\n const childRequestKey = appendSegmentRequestKeyPart(requestKey, parallelRouteKey, childRequestKeyPart);\n const childTree = convertFlightRouterStateToRouteTree(childRouterState, childRequestKey, partialVaryPath, renderedSearch, acc);\n if (slots === null) {\n slots = {\n [parallelRouteKey]: childTree\n };\n } else {\n slots[parallelRouteKey] = childTree;\n }\n }\n return {\n requestKey,\n segment,\n refreshState,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n varyPath: varyPath,\n isPage: isPage,\n slots,\n prefetchHints: flightRouterState[4] ?? 0\n };\n}\nexport function convertRouteTreeToFlightRouterState(routeTree) {\n const parallelRoutes = {};\n if (routeTree.slots !== null) {\n for(const parallelRouteKey in routeTree.slots){\n parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(routeTree.slots[parallelRouteKey]);\n }\n }\n const flightRouterState = [\n routeTree.segment,\n parallelRoutes,\n null,\n null\n ];\n return flightRouterState;\n}\nexport async function fetchRouteOnCacheMiss(entry, key) {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n const pathname = key.pathname;\n const search = key.search;\n const nextUrl = key.nextUrl;\n const segmentPath = '/_tree';\n const headers = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: segmentPath\n };\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl;\n }\n // Tell the server to perform a static pre-render for the Instant Navigation\n // Testing API. Static pre-renders don't normally happen during development.\n addInstantPrefetchHeaderIfLocked(headers);\n try {\n const url = new URL(pathname + search, location.origin);\n let response;\n let urlAfterRedirects;\n if (isOutputExportMode) {\n // In output: \"export\" mode, we can't use headers to request a particular\n // segment. Instead, we encode the extra request information into the URL.\n // This is not part of the \"public\" interface of the app; it's an internal\n // Next.js implementation detail that the app developer should not need to\n // concern themselves with.\n //\n // For example, to request a segment:\n //\n // Path passed to : /path/to/page\n // Path passed to fetch: /path/to/page/__next-segments/_tree\n //\n // (This is not the exact protocol, just an illustration.)\n //\n // Before we do that, though, we need to account for redirects. Even in\n // output: \"export\" mode, a proxy might redirect the page to a different\n // location, but we shouldn't assume or expect that they also redirect all\n // the segment files, too.\n //\n // To check whether the page is redirected, previously we perform a range\n // request of 64 bytes of the HTML document to check if the target page\n // is part of this app (by checking if build id matches). Only if the target\n // page is part of this app do we determine the final canonical URL.\n //\n // However, as mentioned in https://github.com/vercel/next.js/pull/85903,\n // some popular static hosting providers (like Cloudflare Pages or Render.com)\n // do not support range requests, in the worst case, the entire HTML instead\n // of 64 bytes could be returned, which is wasteful.\n //\n // So instead, we drops the check for build id here, and simply perform\n // a HEAD request to rejects 1xx/4xx/5xx responses, and then determine the\n // final URL after redirects.\n //\n // NOTE: We could embed the route tree into the HTML document, to avoid\n // a second request. We're not doing that currently because it would make\n // the HTML document larger and affect normal page loads.\n const headResponse = await fetch(url, {\n method: 'HEAD'\n });\n if (headResponse.status < 200 || headResponse.status >= 400) {\n // The target page responded w/o a successful status code\n // Could be a WAF serving a 403, or a 5xx from a backend\n //\n // Note that we can't use headResponse.ok here, because\n // Response#ok returns `false` with 3xx responses.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000);\n return null;\n }\n urlAfterRedirects = headResponse.redirected ? new URL(headResponse.url) : url;\n response = await fetchPrefetchResponse(addSegmentPathToUrlInOutputExportMode(urlAfterRedirects, segmentPath), headers);\n } else {\n // \"Server\" mode. We can use request headers instead of the pathname.\n // TODO: The eventual plan is to get rid of our custom request headers and\n // encode everything into the URL, using a similar strategy to the\n // \"output: export\" block above.\n response = await fetchPrefetchResponse(url, headers);\n urlAfterRedirects = response !== null && response.redirected ? new URL(response.url) : url;\n }\n if (!response || !response.ok || // 204 is a Cache miss. Though theoretically this shouldn't happen when\n // PPR is enabled, because we always respond to route tree requests, even\n // if it needs to be blockingly generated on demand.\n response.status === 204 || !response.body) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000);\n return null;\n }\n // TODO: The canonical URL is the href without the origin. I think\n // historically the reason for this is because the initial canonical URL\n // gets passed as a prop to the top-level React component, which means it\n // needs to be computed during SSR. If it were to include the origin, it\n // would need to always be same as location.origin on the client, to prevent\n // a hydration mismatch. To sidestep this complexity, we omit the origin.\n //\n // However, since this is neither a native URL object nor a fully qualified\n // URL string, we need to be careful about how we use it. To prevent subtle\n // mistakes, we should create a special type for it, instead of just string.\n // Or, we should just use a (readonly) URL object instead. The type of the\n // prop that we pass to seed the initial state does not need to be the same\n // type as the state itself.\n const canonicalUrl = createHrefFromUrl(urlAfterRedirects);\n // Check whether the response varies based on the Next-Url header.\n const varyHeader = response.headers.get('vary');\n const couldBeIntercepted = varyHeader !== null && varyHeader.includes(NEXT_URL);\n // TODO: The `closed` promise was originally used to track when a streaming\n // network connection closes, so the scheduler could limit concurrent\n // connections. Now that prefetch responses are buffered, `closed` is\n // resolved immediately after buffering — before the outer function even\n // returns. This mechanism is only still meaningful for dynamic (Full)\n // prefetches, which use incremental streaming. Consider removing the\n // `closed` plumbing for buffered prefetch paths.\n const closed = createPromiseWithResolvers();\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route.\n const routeIsPPREnabled = response.headers.get(NEXT_DID_POSTPONE_HEADER) === '2' || // In output: \"export\" mode, we can't rely on response headers. But if we\n // receive a well-formed response, we can assume it's a static response,\n // because all data is static in this mode.\n isOutputExportMode;\n if (routeIsPPREnabled) {\n const { stream: prefetchStream, size: responseSize } = await createNonTaskyPrefetchResponseStream(response.body);\n closed.resolve();\n setSizeInCacheMap(entry, responseSize);\n const serverData = await createFromNextReadableStream(prefetchStream, headers, {\n allowPartialStream: true\n });\n if ((response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.buildId) !== getNavigationBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000);\n return null;\n }\n // Get the params that were used to render the target page. These may\n // be different from the params in the request URL, if the page\n // was rewritten.\n const renderedPathname = getRenderedPathname(response);\n const renderedSearch = getRenderedSearch(response);\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc = {\n metadataVaryPath: null\n };\n const routeTree = convertRootTreePrefetchToRouteTree(serverData, renderedPathname, renderedSearch, acc);\n const metadataVaryPath = acc.metadataVaryPath;\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000);\n return null;\n }\n discoverKnownRoute(Date.now(), pathname, nextUrl, entry, routeTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, routeIsPPREnabled, false // hasDynamicRewrite\n );\n } else {\n // PPR is not enabled for this route. The server responds with a\n // different format (FlightRouterState) that we need to convert.\n // TODO: We will unify the responses eventually. I'm keeping the types\n // separate for now because FlightRouterState has so many\n // overloaded concerns.\n const { stream: prefetchStream, size: responseSize } = await createNonTaskyPrefetchResponseStream(response.body);\n closed.resolve();\n setSizeInCacheMap(entry, responseSize);\n const serverData = await createFromNextReadableStream(prefetchStream, headers, {\n allowPartialStream: true\n });\n if ((response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.b) !== getNavigationBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000);\n return null;\n }\n // Read head vary params synchronously. Individual segments carry their\n // own thenables in CacheNodeSeedData.\n const headVaryParamsThenable = serverData.h;\n const headVaryParams = headVaryParamsThenable !== null ? readVaryParams(headVaryParamsThenable) : null;\n writeDynamicTreeResponseIntoCache(Date.now(), // The non-PPR response format is what we'd get if we prefetched these segments\n // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly.\n FetchStrategy.LoadingBoundary, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled, headVaryParams, pathname, nextUrl);\n }\n if (!couldBeIntercepted) {\n // This route will never be intercepted. So we can use this entry for all\n // requests to this route, regardless of the Next-Url header. This works\n // because when reading the cache we always check for a valid\n // non-intercepted entry first.\n // Re-key the entry. The `set` implementation handles removing it from\n // its previous position in the cache. We don't need to do anything to\n // update the LRU, because the entry is already in it.\n // TODO: Treat this as an upsert — should check if an entry already\n // exists at the new keypath, and if so, whether we should keep that\n // one instead.\n const fulfilledVaryPath = getFulfilledRouteVaryPath(pathname, search, nextUrl, couldBeIntercepted);\n const isRevalidation = false;\n setInCacheMap(routeCacheMap, fulfilledVaryPath, entry, isRevalidation);\n }\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return {\n value: null,\n closed: closed.promise\n };\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000);\n return null;\n }\n}\nexport async function fetchSegmentOnCacheMiss(route, segmentCacheEntry, routeKey, tree) {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n //\n // Segment fetches are non-blocking so we don't need to ping the scheduler\n // on completion.\n // Use the canonical URL to request the segment, not the original URL. These\n // are usually the same, but the canonical URL will be different if the route\n // tree response was redirected. To avoid an extra waterfall on every segment\n // request, we pass the redirected URL instead of the original one.\n const url = new URL(route.canonicalUrl, location.origin);\n const nextUrl = routeKey.nextUrl;\n const requestKey = tree.requestKey;\n const normalizedRequestKey = requestKey === ROOT_SEGMENT_REQUEST_KEY ? // handling of these requests, we encode the root segment path as\n // `_index` instead of as an empty string. This should be treated as\n // an implementation detail and not as a stable part of the protocol.\n // It just needs to match the equivalent logic that happens when\n // prerendering the responses. It should not leak outside of Next.js.\n '/_index' : requestKey;\n const headers = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: normalizedRequestKey\n };\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl;\n }\n // Tell the server to perform a static pre-render for the Instant Navigation\n // Testing API. Static pre-renders don't normally happen during development.\n addInstantPrefetchHeaderIfLocked(headers);\n const requestUrl = isOutputExportMode ? addSegmentPathToUrlInOutputExportMode(url, normalizedRequestKey) : url;\n try {\n const response = await fetchPrefetchResponse(requestUrl, headers);\n if (!response || !response.ok || response.status === 204 || // Cache miss\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route. Theoretically this should never happen\n // because we only issue requests for segments once we've verified that\n // the route supports PPR.\n response.headers.get(NEXT_DID_POSTPONE_HEADER) !== '2' && // In output: \"export\" mode, we can't rely on response headers. But if\n // we receive a well-formed response, we can assume it's a static\n // response, because all data is static in this mode.\n !isOutputExportMode || !response.body) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000);\n return null;\n }\n // See TODO in fetchRouteOnCacheMiss about removing `closed` for\n // buffered prefetch paths.\n const closed = createPromiseWithResolvers();\n const { stream: prefetchStream, size: responseSize } = await createNonTaskyPrefetchResponseStream(response.body);\n closed.resolve();\n setSizeInCacheMap(segmentCacheEntry, responseSize);\n const serverData = await createFromNextReadableStream(prefetchStream, headers, {\n allowPartialStream: true\n });\n if ((response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.buildId) !== getNavigationBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000);\n return null;\n }\n const now = Date.now();\n const staleAt = now + getStaleTimeMs(serverData.staleTime);\n const fulfilledEntry = fulfillSegmentCacheEntry(segmentCacheEntry, serverData.rsc, staleAt, serverData.isPartial);\n // If the server tells us which params the segment varies by, we can re-key\n // the entry to a more generic vary path. This allows the entry to be reused\n // across different param values for params that the segment doesn't\n // actually depend on.\n const varyParams = serverData.varyParams;\n const fulfilledVaryPath = process.env.__NEXT_VARY_PARAMS && varyParams !== null ? getFulfilledSegmentVaryPath(tree.varyPath, varyParams) : getSegmentVaryPathForRequest(segmentCacheEntry.fetchStrategy, tree);\n // Re-key and upsert the entry at the fulfilled vary path. This ensures\n // the entry is stored at the most generic path possible based on which\n // params the segment actually depends on.\n upsertSegmentEntry(now, fulfilledVaryPath, fulfilledEntry);\n return {\n value: fulfilledEntry,\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n closed: closed.promise\n };\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000);\n return null;\n }\n}\n// TODO: The inlined prefetch flow below is temporary. Eventually, inlining\n// will be the default behavior controlled by a size heuristic rather than a\n// boolean flag. At that point, the per-segment and inlined fetch paths will\n// merge, and these separate functions will be removed.\n//\n// The call site in the scheduler is guarded by\n// process.env.__NEXT_PREFETCH_INLINING, so these functions are\n// dead-code-eliminated from the client bundle when the feature is disabled.\nexport async function fetchInlinedSegmentsOnCacheMiss(route, routeKey, tree, spawnedEntries) {\n // When prefetch inlining is enabled, all segment data for a route is bundled\n // into a single /_inlined response instead of individual per-segment\n // requests. This function fetches that response and walks the tree to fill\n // all segment cache entries at once.\n const url = new URL(route.canonicalUrl, location.origin);\n const nextUrl = routeKey.nextUrl;\n const headers = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: '/' + PAGE_SEGMENT_KEY\n };\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl;\n }\n addInstantPrefetchHeaderIfLocked(headers);\n try {\n const response = await fetchPrefetchResponse(url, headers);\n if (!response || !response.ok || response.status === 204 || response.headers.get(NEXT_DID_POSTPONE_HEADER) !== '2' && !isOutputExportMode || !response.body) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return null;\n }\n // See TODO in fetchRouteOnCacheMiss about removing `closed` for\n // buffered prefetch paths.\n const closed = createPromiseWithResolvers();\n const { stream: prefetchStream } = await createNonTaskyPrefetchResponseStream(response.body);\n closed.resolve();\n const serverData = await createFromNextReadableStream(prefetchStream, headers, {\n allowPartialStream: true\n });\n if ((response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.tree.segment.buildId) !== getNavigationBuildId()) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return null;\n }\n const now = Date.now();\n // Walk the inlined tree in parallel with the RouteTree and fill\n // segment cache entries.\n fillInlinedSegmentEntries(now, route, tree, serverData.tree, spawnedEntries);\n // Fill the head entry.\n const headStaleAt = now + getStaleTimeMs(serverData.head.staleTime);\n const headKey = route.metadata.requestKey;\n const ownedHeadEntry = spawnedEntries.get(headKey);\n if (ownedHeadEntry !== undefined) {\n fulfillSegmentCacheEntry(ownedHeadEntry, serverData.head.rsc, headStaleAt, serverData.head.isPartial);\n } else {\n // The head was already cached. Try to upsert if the entry is empty.\n const existingEntry = readOrCreateSegmentCacheEntry(now, FetchStrategy.PPR, route.metadata);\n if (existingEntry.status === 0) {\n fulfillSegmentCacheEntry(upgradeToPendingSegment(existingEntry, FetchStrategy.PPR), serverData.head.rsc, headStaleAt, serverData.head.isPartial);\n }\n }\n // Reject any remaining entries that were not fulfilled by the response.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return {\n value: null,\n closed: closed.promise\n };\n } catch (error) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return null;\n }\n}\nfunction fillInlinedSegmentEntries(now, route, tree, inlinedNode, spawnedEntries) {\n // Check if the spawned entries map has an entry for this segment's key.\n const segment = inlinedNode.segment;\n const staleAt = now + getStaleTimeMs(segment.staleTime);\n const ownedEntry = spawnedEntries.get(tree.requestKey);\n if (ownedEntry !== undefined) {\n // We own this entry. Fulfill it directly.\n fulfillSegmentCacheEntry(ownedEntry, segment.rsc, staleAt, segment.isPartial);\n } else {\n // Not owned by us — this is extra data from the inlined response for a\n // segment that was already cached. Try to upsert if the entry is empty.\n const existingEntry = readOrCreateSegmentCacheEntry(now, FetchStrategy.PPR, tree);\n if (existingEntry.status === 0) {\n fulfillSegmentCacheEntry(upgradeToPendingSegment(existingEntry, FetchStrategy.PPR), segment.rsc, staleAt, segment.isPartial);\n }\n }\n // Recurse into children.\n if (tree.slots !== null && inlinedNode.slots !== null) {\n for(const parallelRouteKey in tree.slots){\n const childTree = tree.slots[parallelRouteKey];\n const childInlinedNode = inlinedNode.slots[parallelRouteKey];\n if (childInlinedNode !== undefined) {\n fillInlinedSegmentEntries(now, route, childTree, childInlinedNode, spawnedEntries);\n }\n }\n }\n}\nexport async function fetchSegmentPrefetchesUsingDynamicRequest(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries) {\n const key = task.key;\n const url = new URL(route.canonicalUrl, location.origin);\n const nextUrl = key.nextUrl;\n if (spawnedEntries.size === 1 && spawnedEntries.has(route.metadata.requestKey)) {\n // The only thing pending is the head. Instruct the server to\n // skip over everything else.\n dynamicRequestTree = MetadataOnlyRequestTree;\n }\n const headers = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_STATE_TREE_HEADER]: prepareFlightRouterStateForRequest(dynamicRequestTree)\n };\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl;\n }\n switch(fetchStrategy){\n case FetchStrategy.Full:\n {\n break;\n }\n case FetchStrategy.PPRRuntime:\n {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '2';\n break;\n }\n case FetchStrategy.LoadingBoundary:\n {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '1';\n break;\n }\n default:\n {\n fetchStrategy;\n }\n }\n try {\n const response = await fetchPrefetchResponse(url, headers);\n if (!response || !response.ok || !response.body) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return null;\n }\n const renderedSearch = getRenderedSearch(response);\n if (renderedSearch !== route.renderedSearch) {\n // The search params that were used to render the target page are\n // different from the search params in the request URL. This only happens\n // when there's a dynamic rewrite in between the tree prefetch and the\n // data prefetch.\n // TODO: For now, since this is an edge case, we reject the prefetch, but\n // the proper way to handle this is to evict the stale route tree entry\n // then fill the cache with the new response.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return null;\n }\n // Track when the network connection closes. Only meaningful for Full\n // (dynamic) prefetches which use incremental streaming. For buffered\n // paths, this is resolved immediately — see TODO in fetchRouteOnCacheMiss.\n const closed = createPromiseWithResolvers();\n let fulfilledEntries = null;\n let prefetchStream;\n let bufferedResponseSize = null;\n if (fetchStrategy === FetchStrategy.Full) {\n // Full prefetches are dynamic responses stored in the prefetch cache.\n // They don't carry vary params or other cache metadata, so there's no\n // need to buffer them. Use the incremental version to allow data to be\n // processed as it arrives.\n prefetchStream = createIncrementalPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(totalBytesReceivedSoFar) {\n // When processing a dynamic response, we don't know how large each\n // individual segment is, so approximate by assigning each segment\n // the average of the total response size.\n if (fulfilledEntries === null) {\n // Haven't received enough data yet to know which segments\n // were included.\n return;\n }\n const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length;\n for (const entry of fulfilledEntries){\n setSizeInCacheMap(entry, averageSize);\n }\n });\n } else {\n const { stream, size } = await createNonTaskyPrefetchResponseStream(response.body);\n closed.resolve();\n prefetchStream = stream;\n bufferedResponseSize = size;\n }\n const [serverData, cacheData] = await Promise.all([\n createFromNextReadableStream(prefetchStream, headers, {\n allowPartialStream: true\n }),\n response.cacheData\n ]);\n // Read head vary params synchronously. Individual segments carry their\n // own thenables in CacheNodeSeedData.\n const headVaryParamsThenable = serverData.h;\n const headVaryParams = headVaryParamsThenable !== null ? readVaryParams(headVaryParamsThenable) : null;\n const now = Date.now();\n const staleAt = await getStaleAt(now, serverData.s, response);\n // PPRRuntime prefetches are partial when the server marks the response\n // as '~' (Partial). Full/LoadingBoundary prefetches are always complete.\n const isResponsePartial = fetchStrategy === FetchStrategy.PPRRuntime && (cacheData?.isResponsePartial ?? false);\n // Aside from writing the data into the cache, this function also returns\n // the entries that were fulfilled, so we can streamingly update their sizes\n // in the LRU as more data comes in.\n const buildId = response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.b;\n const flightDatas = normalizeFlightData(serverData.f);\n if (typeof flightDatas === 'string') {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return null;\n }\n const navigationSeed = convertServerPatchToFullTree(now, dynamicRequestTree, flightDatas, renderedSearch, // Not needed for prefetch responses; pass unknown to use the default.\n UnknownDynamicStaleTime);\n fulfilledEntries = writeDynamicRenderResponseIntoCache(now, fetchStrategy, flightDatas, buildId, isResponsePartial, headVaryParams, staleAt, navigationSeed, spawnedEntries);\n // For buffered responses, update LRU sizes now that we know which\n // entries were fulfilled.\n if (bufferedResponseSize !== null && fulfilledEntries !== null && fulfilledEntries.length > 0) {\n const averageSize = bufferedResponseSize / fulfilledEntries.length;\n for (const entry of fulfilledEntries){\n setSizeInCacheMap(entry, averageSize);\n }\n }\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return {\n value: null,\n closed: closed.promise\n };\n } catch (error) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000);\n return null;\n }\n}\nfunction writeDynamicTreeResponseIntoCache(now, fetchStrategy, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled, headVaryParams, originalPathname, nextUrl) {\n const renderedSearch = getRenderedSearch(response);\n const normalizedFlightDataResult = normalizeFlightData(serverData.f);\n if (// A string result means navigating to this route will result in an\n // MPA navigation.\n typeof normalizedFlightDataResult === 'string' || normalizedFlightDataResult.length !== 1) {\n rejectRouteCacheEntry(entry, now + 10 * 1000);\n return;\n }\n const flightData = normalizedFlightDataResult[0];\n if (!flightData.isRootRender) {\n // Unexpected response format.\n rejectRouteCacheEntry(entry, now + 10 * 1000);\n return;\n }\n const flightRouterState = flightData.tree;\n // If the response was postponed, segments may contain dynamic holes.\n // The head has its own partiality flag (flightDataEntry.isHeadPartial)\n // which is handled separately in writeDynamicRenderResponseIntoCache.\n const isResponsePartial = response.headers.get(NEXT_DID_POSTPONE_HEADER) === '1';\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc = {\n metadataVaryPath: null\n };\n const routeTree = convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc);\n const metadataVaryPath = acc.metadataVaryPath;\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, now + 10 * 1000);\n return;\n }\n discoverKnownRoute(now, originalPathname, nextUrl, entry, routeTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, routeIsPPREnabled, false // hasDynamicRewrite\n );\n // If the server sent segment data as part of the response, we should write\n // it into the cache to prevent a second, redundant prefetch request.\n // TODO: This is a leftover branch from before Client Segment Cache was\n // enabled everywhere. Tree prefetches should never include segment data. We\n // can delete it. Leaving for a subsequent PR.\n const navigationSeed = convertServerPatchToFullTree(now, flightRouterState, normalizedFlightDataResult, renderedSearch, UnknownDynamicStaleTime);\n const buildId = response.headers.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? serverData.b;\n writeDynamicRenderResponseIntoCache(now, fetchStrategy, normalizedFlightDataResult, buildId, isResponsePartial, headVaryParams, getStaleAtFromHeader(now, response), navigationSeed, null);\n}\nfunction rejectSegmentEntriesIfStillPending(entries, staleAt) {\n const fulfilledEntries = [];\n for (const entry of entries.values()){\n if (entry.status === 1) {\n rejectSegmentCacheEntry(entry, staleAt);\n } else if (entry.status === 2) {\n fulfilledEntries.push(entry);\n }\n }\n return fulfilledEntries;\n}\nexport function writeDynamicRenderResponseIntoCache(now, fetchStrategy, flightDatas, buildId, isResponsePartial, headVaryParams, staleAt, navigationSeed, spawnedEntries) {\n if (buildId && buildId !== getNavigationBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000);\n }\n return null;\n }\n const routeTree = navigationSeed.routeTree;\n const metadataTree = navigationSeed.metadataVaryPath !== null ? createMetadataRouteTree(navigationSeed.metadataVaryPath) : null;\n for (const flightDataEntry of flightDatas){\n const seedData = flightDataEntry.seedData;\n if (seedData !== null) {\n // The data sent by the server represents only a subtree of the app. We\n // need to find the part of the task tree that matches the response.\n //\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n const segmentPath = flightDataEntry.segmentPath;\n let tree = routeTree;\n for(let i = 0; i < segmentPath.length; i += 2){\n const parallelRouteKey = segmentPath[i];\n if (tree?.slots?.[parallelRouteKey] !== undefined) {\n tree = tree.slots[parallelRouteKey];\n } else {\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000);\n }\n return null;\n }\n }\n writeSeedDataIntoCache(now, fetchStrategy, tree, staleAt, seedData, isResponsePartial, spawnedEntries);\n }\n const head = flightDataEntry.head;\n if (head !== null && metadataTree !== null) {\n // When Cache Components is enabled, the server conservatively marks\n // the head as partial during static generation (isPossiblyPartialHead\n // in app-render.tsx), even for fully static pages where the head is\n // actually complete. When the response is non-partial, we override\n // this since the server confirmed no dynamic content exists.\n //\n // Without Cache Components, the server always sends the correct\n // isHeadPartial value, so no override is needed.\n const isHeadPartial = !isResponsePartial && process.env.__NEXT_CACHE_COMPONENTS ? false : flightDataEntry.isHeadPartial;\n fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, head, isHeadPartial, staleAt, // For head entries, use the head-specific vary params passed as\n // parameter.\n headVaryParams, metadataTree, spawnedEntries);\n }\n }\n // Any entry that's still pending was intentionally not rendered by the\n // server, because it was inside the loading boundary. Mark them as rejected\n // so we know not to fetch them again.\n // TODO: If PPR is enabled on some routes but not others, then it's possible\n // that a different page is able to do a per-segment prefetch of one of the\n // segments we're marking as rejected here. We should mark on the segment\n // somehow that the reason for the rejection is because of a non-PPR prefetch.\n // That way a per-segment prefetch knows to disregard the rejection.\n if (spawnedEntries !== null) {\n const fulfilledEntries = rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000);\n return fulfilledEntries;\n }\n return null;\n}\nfunction writeSeedDataIntoCache(now, fetchStrategy, tree, staleAt, seedData, isResponsePartial, entriesOwnedByCurrentTask) {\n // This function is used to write the result of a runtime server request\n // (CacheNodeSeedData) into the prefetch cache.\n const rsc = seedData[0];\n const isPartial = rsc === null || isResponsePartial;\n const varyParamsThenable = seedData[4];\n // Each segment carries its own vary params thenable in the seed data. The\n // thenable resolves to the set of params the segment accessed during render.\n // A null thenable means tracking was not enabled (not a prerender).\n const varyParams = varyParamsThenable !== null ? readVaryParams(varyParamsThenable) : null;\n fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, rsc, isPartial, staleAt, varyParams, tree, entriesOwnedByCurrentTask);\n // Recursively write the child data into the cache.\n const slots = tree.slots;\n if (slots !== null) {\n const seedDataChildren = seedData[1];\n for(const parallelRouteKey in slots){\n const childTree = slots[parallelRouteKey];\n const childSeedData = seedDataChildren[parallelRouteKey];\n if (childSeedData !== null && childSeedData !== undefined) {\n writeSeedDataIntoCache(now, fetchStrategy, childTree, staleAt, childSeedData, isResponsePartial, entriesOwnedByCurrentTask);\n }\n }\n }\n}\nfunction fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, rsc, isPartial, staleAt, segmentVaryParams, tree, entriesOwnedByCurrentTask) {\n // We should only write into cache entries that are owned by us. Or create\n // a new one and write into that. We must never write over an entry that was\n // created by a different task, because that causes data races.\n const ownedEntry = entriesOwnedByCurrentTask !== null ? entriesOwnedByCurrentTask.get(tree.requestKey) : undefined;\n if (ownedEntry !== undefined) {\n const fulfilledEntry = fulfillSegmentCacheEntry(ownedEntry, rsc, staleAt, isPartial);\n // Re-key the entry based on which params the segment actually depends on.\n if (process.env.__NEXT_VARY_PARAMS && segmentVaryParams !== null) {\n const fulfilledVaryPath = getFulfilledSegmentVaryPath(tree.varyPath, segmentVaryParams);\n const isRevalidation = false;\n setInCacheMap(segmentCacheMap, fulfilledVaryPath, fulfilledEntry, isRevalidation);\n }\n } else {\n // There's no matching entry. Attempt to create a new one.\n const possiblyNewEntry = readOrCreateSegmentCacheEntry(now, fetchStrategy, tree);\n if (possiblyNewEntry.status === 0) {\n // Confirmed this is a new entry. We can fulfill it.\n const newEntry = possiblyNewEntry;\n const fulfilledEntry = fulfillSegmentCacheEntry(upgradeToPendingSegment(newEntry, fetchStrategy), rsc, staleAt, isPartial);\n // Re-key the entry based on which params the segment actually depends on.\n if (process.env.__NEXT_VARY_PARAMS && segmentVaryParams !== null) {\n const fulfilledVaryPath = getFulfilledSegmentVaryPath(tree.varyPath, segmentVaryParams);\n const isRevalidation = false;\n setInCacheMap(segmentCacheMap, fulfilledVaryPath, fulfilledEntry, isRevalidation);\n }\n } else {\n // There was already an entry in the cache. But we may be able to\n // replace it with the new one from the server.\n const newEntry = fulfillSegmentCacheEntry(upgradeToPendingSegment(createDetachedSegmentCacheEntry(now), fetchStrategy), rsc, staleAt, isPartial);\n // Use the fulfilled vary path if available, otherwise fall back to\n // the request vary path.\n const varyPath = process.env.__NEXT_VARY_PARAMS && segmentVaryParams !== null ? getFulfilledSegmentVaryPath(tree.varyPath, segmentVaryParams) : getSegmentVaryPathForRequest(fetchStrategy, tree);\n upsertSegmentEntry(now, varyPath, newEntry);\n }\n }\n}\nasync function fetchPrefetchResponse(url, headers) {\n const fetchPriority = 'low';\n // When issuing a prefetch request, don't immediately decode the response; we\n // use the lower level `createFromResponse` API instead because we need to do\n // some extra processing of the response stream. See\n // `createNonTaskyPrefetchResponseStream` for more details.\n const shouldImmediatelyDecode = false;\n const response = await createFetch(url, headers, fetchPriority, shouldImmediatelyDecode);\n if (!response.ok) {\n return null;\n }\n // Check the content type\n if (isOutputExportMode) {\n // In output: \"export\" mode, we relaxed about the content type, since it's\n // not Next.js that's serving the response. If the status is OK, assume the\n // response is valid. If it's not a valid response, the Flight client won't\n // be able to decode it, and we'll treat it as a miss.\n } else {\n const contentType = response.headers.get('content-type');\n const isFlightResponse = contentType && contentType.startsWith(RSC_CONTENT_TYPE_HEADER);\n if (!isFlightResponse) {\n return null;\n }\n }\n return response;\n}\nasync function createNonTaskyPrefetchResponseStream(body) {\n // Buffer the entire response before passing it to the Flight client. This\n // ensures that when Flight processes the stream, all model data is available\n // synchronously. This is important for readVaryParams, which synchronously\n // checks the thenable status — if data arrived in multiple network chunks,\n // the thenables might not yet be fulfilled.\n //\n // TODO: There are too many intermediate stream transformations in the\n // prefetch response pipeline (e.g. stripIsPartialByte, this function).\n // These could all be consolidated into a single transformation. Refactor\n // once the cached navigations experiment lands.\n //\n // Read the entire response from the network.\n const reader = body.getReader();\n const chunks = [];\n let size = 0;\n while(true){\n const { done, value } = await reader.read();\n if (done) break;\n chunks.push(value);\n size += value.byteLength;\n }\n // Concatenate into a single chunk so that Flight's processBinaryChunk\n // processes all rows synchronously in one call. Multiple chunks would not\n // be sufficient: even though reader.read() resolves as a microtask for\n // already-enqueued data, the `await` continuation from\n // createFromReadableStream can interleave between chunks. If the root\n // model row isn't the first row (e.g. outlined values come first), the\n // PromiseResolveThenableJob from `await` can cause the root to initialize\n // eagerly, scheduling the continuation before remaining chunks (including\n // promise value rows) are processed. A single chunk avoids this.\n let buffer;\n if (chunks.length === 1) {\n buffer = chunks[0];\n } else if (chunks.length > 1) {\n buffer = new Uint8Array(size);\n let offset = 0;\n for (const chunk of chunks){\n buffer.set(chunk, offset);\n offset += chunk.byteLength;\n }\n } else {\n buffer = new Uint8Array(0);\n }\n const stream = new ReadableStream({\n start (controller) {\n controller.enqueue(buffer);\n controller.close();\n }\n });\n return {\n stream,\n size\n };\n}\n/**\n * Creates a streaming (non-buffered) prefetch response stream for dynamic/Full\n * prefetches. These are essentially dynamic responses that get stored in the\n * prefetch cache — they don't carry vary params or other cache metadata that\n * requires synchronous thenable resolution, so there's no need to buffer them.\n * They should continue to stream so consumers can process data as it arrives.\n */ function createIncrementalPrefetchResponseStream(originalFlightStream, onStreamClose, onResponseSizeUpdate) {\n // While processing the original stream, we incrementally update the size\n // of the cache entry in the LRU.\n let totalByteLength = 0;\n const reader = originalFlightStream.getReader();\n return new ReadableStream({\n async pull (controller) {\n while(true){\n const { done, value } = await reader.read();\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value);\n // Incrementally update the size of the cache entry in the LRU.\n totalByteLength += value.byteLength;\n onResponseSizeUpdate(totalByteLength);\n continue;\n }\n controller.close();\n onStreamClose();\n return;\n }\n }\n });\n}\nfunction addSegmentPathToUrlInOutputExportMode(url, segmentPath) {\n if (isOutputExportMode) {\n // In output: \"export\" mode, we cannot use a header to encode the segment\n // path. Instead, we append it to the end of the pathname.\n const staticUrl = new URL(url);\n const routeDir = staticUrl.pathname.endsWith('/') ? staticUrl.pathname.slice(0, -1) : staticUrl.pathname;\n const staticExportFilename = convertSegmentPathToStaticExportFilename(segmentPath);\n staticUrl.pathname = `${routeDir}/${staticExportFilename}`;\n return staticUrl;\n }\n return url;\n}\n/**\n * Checks whether the new fetch strategy is likely to provide more content than the old one.\n *\n * Generally, when an app uses dynamic data, a \"more specific\" fetch strategy is expected to provide more content:\n * - `LoadingBoundary` only provides static layouts\n * - `PPR` can provide shells for each segment (even for segments that use dynamic data)\n * - `PPRRuntime` can additionally include content that uses searchParams, params, or cookies\n * - `Full` includes all the content, even if it uses dynamic data\n *\n * However, it's possible that a more specific fetch strategy *won't* give us more content if:\n * - a segment is fully static\n * (then, `PPR`/`PPRRuntime`/`Full` will all yield equivalent results)\n * - providing searchParams/params/cookies doesn't reveal any more content, e.g. because of an `await connection()`\n * (then, `PPR` and `PPRRuntime` will yield equivalent results, only `Full` will give us more)\n * Because of this, when comparing two segments, we should also check if the existing segment is partial.\n * If it's not partial, then there's no need to prefetch it again, even using a \"more specific\" strategy.\n * There's currently no way to know if `PPRRuntime` will yield more data that `PPR`, so we have to assume it will.\n *\n * Also note that, in practice, we don't expect to be comparing `LoadingBoundary` to `PPR`/`PPRRuntime`,\n * because a non-PPR-enabled route wouldn't ever use the latter strategies. It might however use `Full`.\n */ export function canNewFetchStrategyProvideMoreContent(currentStrategy, newStrategy) {\n return currentStrategy < newStrategy;\n}\n/**\n * Adds the instant prefetch header if the navigation lock is active.\n * Uses a lazy require to ensure dead code elimination.\n */ function addInstantPrefetchHeaderIfLocked(headers) {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n const { isNavigationLocked } = require('./navigation-testing-lock');\n if (isNavigationLocked()) {\n headers[NEXT_INSTANT_PREFETCH_HEADER] = '1';\n }\n }\n}\nfunction getStaleAtFromHeader(now, response) {\n const staleTimeSeconds = parseInt(response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10);\n const staleTimeMs = !isNaN(staleTimeSeconds) ? getStaleTimeMs(staleTimeSeconds) : STATIC_STALETIME_MS;\n return now + staleTimeMs;\n}\n/**\n * Reads the stale time from an async iterable or a response header and\n * returns a staleAt timestamp.\n *\n * TODO: Buffer the response and then read the iterable values\n * synchronously, similar to readVaryParams. This would avoid the need to\n * make this async, and we could also use it in\n * writeDynamicTreeResponseIntoCache. This will also be needed when React\n * starts leaving async iterables hanging when the outer RSC stream is\n * aborted e.g. due to sync I/O (with unstable_allowPartialStream).\n */ export async function getStaleAt(now, staleTimeIterable, response) {\n if (staleTimeIterable !== undefined) {\n // Iterate the async iterable and take the last yielded value. The server\n // yields updated staleTime values during the render; the last one is the\n // final staleTime.\n let staleTimeSeconds;\n for await (const value of staleTimeIterable){\n staleTimeSeconds = value;\n }\n if (staleTimeSeconds !== undefined) {\n const staleTimeMs = isNaN(staleTimeSeconds) ? STATIC_STALETIME_MS : getStaleTimeMs(staleTimeSeconds);\n return now + staleTimeMs;\n }\n }\n if (response !== undefined) {\n return getStaleAtFromHeader(now, response);\n }\n return now + STATIC_STALETIME_MS;\n}\n/**\n * Writes the static stage of a navigation response into the segment cache.\n * When `isResponsePartial` is false, segments are written as non-partial with\n * `FetchStrategy.Full` so no dynamic follow-up is needed. Default segments\n * are skipped (by `writeSeedDataIntoCache`) to avoid caching fallback content\n * that would block refreshes from overwriting with dynamic data.\n */ export function writeStaticStageResponseIntoCache(now, flightData, buildId, headVaryParamsThenable, staleAt, baseTree, renderedSearch, isResponsePartial) {\n const fetchStrategy = isResponsePartial ? FetchStrategy.PPR : FetchStrategy.Full;\n const headVaryParams = headVaryParamsThenable !== null ? readVaryParams(headVaryParamsThenable) : null;\n const flightDatas = normalizeFlightData(flightData);\n if (typeof flightDatas === 'string') {\n return;\n }\n const navigationSeed = convertServerPatchToFullTree(now, baseTree, flightDatas, renderedSearch, UnknownDynamicStaleTime);\n writeDynamicRenderResponseIntoCache(now, fetchStrategy, flightDatas, buildId, isResponsePartial, headVaryParams, staleAt, navigationSeed, null // spawnedEntries — no pre-created entries; will create or upsert\n );\n}\n/**\n * Decodes an embedded runtime prefetch Flight stream, normalizes the flight\n * data, and derives a `NavigationSeed` from the base tree.\n *\n * Returns `null` if the response triggers an MPA navigation.\n */ export async function processRuntimePrefetchStream(now, runtimePrefetchStream, baseTree, renderedSearch) {\n const { stream, isPartial } = await stripIsPartialByte(runtimePrefetchStream);\n const serverData = await createFromNextReadableStream(stream, undefined, {\n allowPartialStream: true\n });\n const headVaryParamsThenable = serverData.h;\n const headVaryParams = headVaryParamsThenable !== null ? readVaryParams(headVaryParamsThenable) : null;\n const staleAt = await getStaleAt(now, serverData.s);\n const flightDatas = normalizeFlightData(serverData.f);\n if (typeof flightDatas === 'string') {\n return null;\n }\n const navigationSeed = convertServerPatchToFullTree(now, baseTree, flightDatas, renderedSearch, UnknownDynamicStaleTime);\n return {\n flightDatas,\n navigationSeed,\n buildId: serverData.b,\n isResponsePartial: isPartial,\n headVaryParams,\n staleAt\n };\n}\n/**\n * Strips the leading isPartial byte from an RSC response stream.\n *\n * The server prepends a single byte: '~' (0x7e) for partial, '#' (0x23) for\n * complete. These bytes cannot appear as the first byte of a valid RSC Flight\n * response (Flight rows start with a hex digit or ':').\n *\n * If the first byte is not a recognized marker, the stream is returned intact\n * and `isPartial` is determined by the cachedNavigations experimental flag.\n */ export async function stripIsPartialByte(stream) {\n // When there is no recognized marker byte, the fallback depends on whether\n // Cached Navigations is enabled. When enabled, dynamic navigation responses\n // don't have a marker but may contain dynamic holes, so they are treated as\n // partial. When disabled, unmarked responses are treated as non-partial.\n const defaultIsPartial = !!process.env.__NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS;\n const reader = stream.getReader();\n const { done, value } = await reader.read();\n if (done || !value || value.byteLength === 0) {\n return {\n stream: new ReadableStream({\n start: (c)=>c.close()\n }),\n isPartial: defaultIsPartial\n };\n }\n const firstByte = value[0];\n const hasMarker = firstByte === 0x23 || firstByte === 0x7e;\n const isPartial = hasMarker ? firstByte === 0x7e : defaultIsPartial;\n const remainder = hasMarker ? value.byteLength > 1 ? value.subarray(1) : null : value;\n return {\n isPartial,\n stream: new ReadableStream({\n start (controller) {\n if (remainder) {\n controller.enqueue(remainder);\n }\n },\n async pull (controller) {\n const result = await reader.read();\n if (result.done) {\n controller.close();\n } else {\n controller.enqueue(result.value);\n }\n }\n })\n };\n}\n\n//# sourceMappingURL=cache.js.map","import { PrefetchHint } from '../../../shared/lib/app-router-types';\nimport { PAGE_SEGMENT_KEY, DEFAULT_SEGMENT_KEY, NOT_FOUND_SEGMENT_KEY } from '../../../shared/lib/segment';\nimport { matchSegment } from '../match-segments';\nimport { createHrefFromUrl } from './create-href-from-url';\nimport { fetchServerResponse } from './fetch-server-response';\nimport { dispatchAppRouterAction } from '../use-action-queue';\nimport { ACTION_SERVER_PATCH } from './router-reducer-types';\nimport { isNavigatingToNewRootLayout } from './is-navigating-to-new-root-layout';\nimport { getLastCommittedTree } from './reducers/committed-state';\nimport { convertServerPatchToFullTree } from '../segment-cache/navigation';\nimport { convertReusedFlightRouterStateToRouteTree, readSegmentCacheEntry, waitForSegmentCacheEntry, markRouteEntryAsDynamicRewrite, invalidateRouteCacheEntries, getStaleAt, writeStaticStageResponseIntoCache, processRuntimePrefetchStream, writeDynamicRenderResponseIntoCache, EntryStatus } from '../segment-cache/cache';\nimport { FetchStrategy } from '../segment-cache/types';\nimport { discoverKnownRoute } from '../segment-cache/optimistic-routes';\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants';\nimport { getRenderedSearchFromVaryPath } from '../segment-cache/vary-path';\nimport { readFromBFCache, readFromBFCacheDuringRegularNavigation, writeToBFCache, writeHeadToBFCache, updateBFCacheEntryStaleAt, computeDynamicStaleAt } from '../segment-cache/bfcache';\nexport var FreshnessPolicy = /*#__PURE__*/ function(FreshnessPolicy) {\n FreshnessPolicy[FreshnessPolicy[\"Default\"] = 0] = \"Default\";\n FreshnessPolicy[FreshnessPolicy[\"Hydration\"] = 1] = \"Hydration\";\n FreshnessPolicy[FreshnessPolicy[\"HistoryTraversal\"] = 2] = \"HistoryTraversal\";\n FreshnessPolicy[FreshnessPolicy[\"RefreshAll\"] = 3] = \"RefreshAll\";\n FreshnessPolicy[FreshnessPolicy[\"HMRRefresh\"] = 4] = \"HMRRefresh\";\n FreshnessPolicy[FreshnessPolicy[\"Gesture\"] = 5] = \"Gesture\";\n return FreshnessPolicy;\n}({});\nconst noop = ()=>{};\nexport function createInitialCacheNodeForHydration(navigatedAt, initialTree, seedData, seedHead, seedDynamicStaleAt) {\n // Create the initial cache node tree, using the data embedded into the\n // HTML document.\n const accumulation = {\n separateRefreshUrls: null,\n scrollRef: null\n };\n const task = createCacheNodeOnNavigation(navigatedAt, initialTree, null, 1, seedData, seedHead, seedDynamicStaleAt, false, accumulation);\n return task;\n}\n// Creates a new Cache Node tree (i.e. copy-on-write) that represents the\n// optimistic result of a navigation, using both the current Cache Node tree and\n// data that was prefetched prior to navigation.\n//\n// At the moment we call this function, we haven't yet received the navigation\n// response from the server. It could send back something completely different\n// from the tree that was prefetched — due to rewrites, default routes, parallel\n// routes, etc.\n//\n// But in most cases, it will return the same tree that we prefetched, just with\n// the dynamic holes filled in. So we optimistically assume this will happen,\n// and accept that the real result could be arbitrarily different.\n//\n// We'll reuse anything that was already in the previous tree, since that's what\n// the server does.\n//\n// New segments (ones that don't appear in the old tree) are assigned an\n// unresolved promise. The data for these promises will be fulfilled later, when\n// the navigation response is received.\n//\n// The tree can be rendered immediately after it is created (that's why this is\n// a synchronous function). Any new trees that do not have prefetch data will\n// suspend during rendering, until the dynamic data streams in.\n//\n// Returns a Task object, which contains both the updated Cache Node and a path\n// to the pending subtrees that need to be resolved by the navigation response.\n//\n// A return value of `null` means there were no changes, and the previous tree\n// can be reused without initiating a server request.\nexport function startPPRNavigation(navigatedAt, oldUrl, oldRenderedSearch, oldCacheNode, oldRouterState, newRouteTree, newMetadataVaryPath, freshness, seedData, seedHead, seedDynamicStaleAt, isSamePageNavigation, accumulation) {\n const didFindRootLayout = false;\n const parentNeedsDynamicRequest = false;\n const parentRefreshState = null;\n const oldRootRefreshState = {\n canonicalUrl: createHrefFromUrl(oldUrl),\n renderedSearch: oldRenderedSearch\n };\n return updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode !== null ? oldCacheNode : undefined, oldRouterState, newRouteTree, newMetadataVaryPath, freshness, didFindRootLayout, seedData, seedHead, seedDynamicStaleAt, isSamePageNavigation, parentNeedsDynamicRequest, oldRootRefreshState, parentRefreshState, accumulation);\n}\nfunction updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode, oldRouterState, newRouteTree, newMetadataVaryPath, freshness, didFindRootLayout, seedData, seedHead, seedDynamicStaleAt, isSamePageNavigation, parentNeedsDynamicRequest, oldRootRefreshState, parentRefreshState, accumulation) {\n // Check if this segment matches the one in the previous route.\n const oldSegment = oldRouterState[0];\n const newSegment = createSegmentFromRouteTree(newRouteTree);\n if (!matchSegment(newSegment, oldSegment)) {\n // This segment does not match the previous route. We're now entering the\n // new part of the target route. Switch to the \"create\" path.\n if (// Check if the route tree changed before we reached a layout. (The\n // highest-level layout in a route tree is referred to as the \"root\"\n // layout.) This could mean that we're navigating between two different\n // root layouts. When this happens, we perform a full-page (MPA-style)\n // navigation.\n //\n // However, the algorithm for deciding where to start rendering a route\n // (i.e. the one performed in order to reach this function) is stricter\n // than the one used to detect a change in the root layout. So just\n // because we're re-rendering a segment outside of the root layout does\n // not mean we should trigger a full-page navigation.\n //\n // Specifically, we handle dynamic parameters differently: two segments\n // are considered the same even if their parameter values are different.\n //\n // Refer to isNavigatingToNewRootLayout for details.\n //\n // Note that we only have to perform this extra traversal if we didn't\n // already discover a root layout in the part of the tree that is\n // unchanged. We also only need to compare the subtree that is not\n // shared. In the common case, this branch is skipped completely.\n !didFindRootLayout && isNavigatingToNewRootLayout(oldRouterState, newRouteTree) || // The global Not Found route (app/global-not-found.tsx) is a special\n // case, because it acts like a root layout, but in the router tree, it\n // is rendered in the same position as app/layout.tsx.\n //\n // Any navigation to the global Not Found route should trigger a\n // full-page navigation.\n //\n // TODO: We should probably model this by changing the key of the root\n // segment when this happens. Then the root layout check would work\n // as expected, without a special case.\n newSegment === NOT_FOUND_SEGMENT_KEY) {\n return null;\n }\n return createCacheNodeOnNavigation(navigatedAt, newRouteTree, newMetadataVaryPath, freshness, seedData, seedHead, seedDynamicStaleAt, parentNeedsDynamicRequest, accumulation);\n }\n const newSlots = newRouteTree.slots;\n const oldRouterStateChildren = oldRouterState[1];\n const seedDataChildren = seedData !== null ? seedData[1] : null;\n // We're currently traversing the part of the tree that was also part of\n // the previous route. If we discover a root layout, then we don't need to\n // trigger an MPA navigation.\n const childDidFindRootLayout = didFindRootLayout || (newRouteTree.prefetchHints & PrefetchHint.IsRootLayout) !== 0;\n let shouldRefreshDynamicData = false;\n switch(freshness){\n case 0:\n case 2:\n case 1:\n case 5:\n shouldRefreshDynamicData = false;\n break;\n case 3:\n case 4:\n shouldRefreshDynamicData = true;\n break;\n default:\n freshness;\n break;\n }\n // TODO: We're not consistent about how we do this check. Some places\n // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to\n // check if there any any children, which is why I'm doing it here. We\n // should probably encode an empty children set as `null` though. Either\n // way, we should update all the checks to be consistent.\n const isLeafSegment = newSlots === null;\n // Get the data for this segment. Since it was part of the previous route,\n // usually we just clone the data from the old CacheNode. However, during a\n // refresh or a revalidation, there won't be any existing CacheNode. So we\n // may need to consult the prefetch cache, like we would for a new segment.\n let newCacheNode;\n let needsDynamicRequest;\n if (oldCacheNode !== undefined && !shouldRefreshDynamicData && // During a same-page navigation, we always refetch the page segments\n !(isLeafSegment && isSamePageNavigation)) {\n // Reuse the existing CacheNode\n const dropPrefetchRsc = false;\n newCacheNode = reuseSharedCacheNode(dropPrefetchRsc, oldCacheNode);\n needsDynamicRequest = false;\n } else {\n // If this is part of a refresh, ignore the existing CacheNode and create a\n // new one.\n const seedRsc = seedData !== null ? seedData[0] : null;\n const result = createCacheNodeForSegment(navigatedAt, newRouteTree, seedRsc, newMetadataVaryPath, seedHead, freshness, seedDynamicStaleAt);\n newCacheNode = result.cacheNode;\n needsDynamicRequest = result.needsDynamicRequest;\n // Carry forward the old node's scrollRef. This preserves scroll\n // intent when a prior navigation's cache node is replaced by a\n // refresh before the scroll handler has had a chance to fire —\n // e.g. when router.push() and router.refresh() are called in the\n // same startTransition batch.\n if (oldCacheNode !== undefined) {\n newCacheNode.scrollRef = oldCacheNode.scrollRef;\n }\n }\n // During a refresh navigation, there's a special case that happens when\n // entering a \"default\" slot. The default slot may not be part of the\n // current route; it may have been reused from an older route. If so,\n // we need to fetch its data from the old route's URL rather than current\n // route's URL. Keep track of this as we traverse the tree.\n const maybeRefreshState = newRouteTree.refreshState;\n const refreshState = maybeRefreshState !== undefined && maybeRefreshState !== null ? // refresh URL as we continue traversing the tree.\n maybeRefreshState : parentRefreshState;\n // If this segment itself needs to fetch new data from the server, then by\n // definition it is being refreshed. Track its refresh URL so we know which\n // URL to request the data from.\n if (needsDynamicRequest && refreshState !== null) {\n accumulateRefreshUrl(accumulation, refreshState);\n }\n // As we diff the trees, we may sometimes modify (copy-on-write, not mutate)\n // the Route Tree that was returned by the server — for example, in the case\n // of default parallel routes, we preserve the currently active segment. To\n // avoid mutating the original tree, we clone the router state children along\n // the return path.\n let patchedRouterStateChildren = {};\n let taskChildren = null;\n // Most navigations require a request to fetch additional data from the\n // server, either because the data was not already prefetched, or because the\n // target route contains dynamic data that cannot be prefetched.\n //\n // However, if the target route is fully static, and it's already completely\n // loaded into the segment cache, then we can skip the server request.\n //\n // This starts off as `false`, and is set to `true` if any of the child\n // routes requires a dynamic request.\n let childNeedsDynamicRequest = false;\n // As we traverse the children, we'll construct a FlightRouterState that can\n // be sent to the server to request the dynamic data. If it turns out that\n // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false\n // at the end), then this will be discarded.\n // TODO: We can probably optimize the format of this data structure to only\n // include paths that are dynamic. Instead of reusing the\n // FlightRouterState type.\n let dynamicRequestTreeChildren = {};\n let newCacheNodeSlots = null;\n if (newSlots !== null) {\n const oldCacheNodeSlots = oldCacheNode !== undefined ? oldCacheNode.slots : null;\n newCacheNode.slots = newCacheNodeSlots = {};\n taskChildren = new Map();\n for(let parallelRouteKey in newSlots){\n let newRouteTreeChild = newSlots[parallelRouteKey];\n const oldRouterStateChild = oldRouterStateChildren[parallelRouteKey];\n if (oldRouterStateChild === undefined) {\n // This should never happen, but if it does, it suggests a malformed\n // server response. Trigger a full-page navigation.\n return null;\n }\n let seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null;\n const oldSegmentChild = oldRouterStateChild[0];\n let newSegmentChild = createSegmentFromRouteTree(newRouteTreeChild);\n let seedHeadChild = seedHead;\n if (// Skip this branch during a history traversal. We restore the tree that\n // was stashed in the history entry as-is.\n freshness !== 2 && newSegmentChild === DEFAULT_SEGMENT_KEY && oldSegmentChild !== DEFAULT_SEGMENT_KEY) {\n // This is a \"default\" segment. These are never sent by the server during\n // a soft navigation; instead, the client reuses whatever segment was\n // already active in that slot on the previous route.\n newRouteTreeChild = reuseActiveSegmentInDefaultSlot(newRouteTree, parallelRouteKey, oldRootRefreshState, oldRouterStateChild);\n newSegmentChild = createSegmentFromRouteTree(newRouteTreeChild);\n // Since we're switching to a different route tree, these are no\n // longer valid, because they correspond to the outer tree.\n seedDataChild = null;\n seedHeadChild = null;\n }\n const oldCacheNodeChild = oldCacheNodeSlots !== null ? oldCacheNodeSlots[parallelRouteKey] : undefined;\n const taskChild = updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNodeChild, oldRouterStateChild, newRouteTreeChild, newMetadataVaryPath, freshness, childDidFindRootLayout, seedDataChild ?? null, seedHeadChild, seedDynamicStaleAt, isSamePageNavigation, parentNeedsDynamicRequest || needsDynamicRequest, oldRootRefreshState, refreshState, accumulation);\n if (taskChild === null) {\n // One of the child tasks discovered a change to the root layout.\n // Immediately unwind from this recursive traversal. This will trigger a\n // full-page navigation.\n return null;\n }\n // Recursively propagate up the child tasks.\n taskChildren.set(parallelRouteKey, taskChild);\n newCacheNodeSlots[parallelRouteKey] = taskChild.node;\n // The child tree's route state may be different from the prefetched\n // route sent by the server. We need to clone it as we traverse back up\n // the tree.\n const taskChildRoute = taskChild.route;\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute;\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree;\n if (dynamicRequestTreeChild !== null) {\n // Something in the child tree is dynamic.\n childNeedsDynamicRequest = true;\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild;\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute;\n }\n }\n }\n const newFlightRouterState = [\n createSegmentFromRouteTree(newRouteTree),\n patchedRouterStateChildren,\n refreshState !== null ? [\n refreshState.canonicalUrl,\n refreshState.renderedSearch\n ] : null,\n null,\n newRouteTree.prefetchHints\n ];\n return {\n status: needsDynamicRequest ? 0 : 1,\n route: newFlightRouterState,\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(newFlightRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest),\n refreshState,\n children: taskChildren\n };\n}\n/**\n * Assigns a ScrollRef to a new leaf CacheNode so the scroll handler\n * knows to scroll to it after navigation. All leaves in the same\n * navigation share the same ScrollRef — the first segment to scroll\n * consumes it, preventing others from also scrolling.\n *\n * This is only called inside `createCacheNodeOnNavigation`, which only\n * runs when segments diverge from the previous route. So for a refresh\n * where the route structure stays the same, segments match, the update\n * path is taken, and this function is never called — no scroll ref is\n * assigned. A scroll ref is only assigned when the route actually\n * changed (e.g. a redirect, or a dynamic condition on the server that\n * produces a different route).\n *\n * Skipped during hydration (initial render should not scroll) and\n * history traversal (scroll restoration is handled separately).\n */ function accumulateScrollRef(freshness, cacheNode, accumulation) {\n switch(freshness){\n case 0:\n case 5:\n case 3:\n case 4:\n if (accumulation.scrollRef === null) {\n accumulation.scrollRef = {\n current: true\n };\n }\n cacheNode.scrollRef = accumulation.scrollRef;\n break;\n case 1:\n break;\n case 2:\n break;\n default:\n freshness;\n break;\n }\n}\nfunction createCacheNodeOnNavigation(navigatedAt, newRouteTree, newMetadataVaryPath, freshness, seedData, seedHead, seedDynamicStaleAt, parentNeedsDynamicRequest, accumulation) {\n // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this\n // path once we reach the part of the tree that was not in the previous route.\n // We don't need to diff against the old tree, we just need to create a new\n // one. We also don't need to worry about any refresh-related logic.\n //\n // For the most part, this is a subset of updateCacheNodeOnNavigation, so any\n // change that happens in this function likely needs to be applied to that\n // one, too. However there are some places where the behavior intentionally\n // diverges, which is why we keep them separate.\n const newSegment = createSegmentFromRouteTree(newRouteTree);\n const newSlots = newRouteTree.slots;\n const seedDataChildren = seedData !== null ? seedData[1] : null;\n const seedRsc = seedData !== null ? seedData[0] : null;\n const result = createCacheNodeForSegment(navigatedAt, newRouteTree, seedRsc, newMetadataVaryPath, seedHead, freshness, seedDynamicStaleAt);\n const newCacheNode = result.cacheNode;\n const needsDynamicRequest = result.needsDynamicRequest;\n const isLeafSegment = newSlots === null;\n if (isLeafSegment) {\n accumulateScrollRef(freshness, newCacheNode, accumulation);\n }\n let patchedRouterStateChildren = {};\n let taskChildren = null;\n let childNeedsDynamicRequest = false;\n let dynamicRequestTreeChildren = {};\n let newCacheNodeSlots = null;\n if (newSlots !== null) {\n newCacheNode.slots = newCacheNodeSlots = {};\n taskChildren = new Map();\n for(let parallelRouteKey in newSlots){\n const newRouteTreeChild = newSlots[parallelRouteKey];\n const seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null;\n const taskChild = createCacheNodeOnNavigation(navigatedAt, newRouteTreeChild, newMetadataVaryPath, freshness, seedDataChild ?? null, seedHead, seedDynamicStaleAt, parentNeedsDynamicRequest || needsDynamicRequest, accumulation);\n taskChildren.set(parallelRouteKey, taskChild);\n newCacheNodeSlots[parallelRouteKey] = taskChild.node;\n const taskChildRoute = taskChild.route;\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute;\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree;\n if (dynamicRequestTreeChild !== null) {\n childNeedsDynamicRequest = true;\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild;\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute;\n }\n }\n }\n const newFlightRouterState = [\n newSegment,\n patchedRouterStateChildren,\n null,\n null,\n newRouteTree.prefetchHints\n ];\n return {\n status: needsDynamicRequest ? 0 : 1,\n route: newFlightRouterState,\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(newFlightRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest),\n // This route is not part of the current tree, so there's no reason to\n // track the refresh URL.\n refreshState: null,\n children: taskChildren\n };\n}\nfunction createSegmentFromRouteTree(newRouteTree) {\n if (newRouteTree.isPage) {\n // In a dynamic server response, the server embeds the search params into\n // the segment key, but in a static one it's omitted. The client handles\n // this inconsistency by adding the search params back right at the end.\n //\n // TODO: The only thing this is used for is to create a cache key for\n // ChildSegmentMap. But we already track the `renderedSearch` everywhere as\n // part of the varyPath. The plan is get rid of ChildSegmentMap and\n // store the page data in a CacheMap using the varyPath, like we do\n // for prefetches. Then we can remove it from the segment key.\n //\n // As an incremental step, we can grab the search params from the varyPath.\n const renderedSearch = getRenderedSearchFromVaryPath(newRouteTree.varyPath);\n if (renderedSearch === null) {\n return PAGE_SEGMENT_KEY;\n }\n // This is based on equivalent logic in addSearchParamsIfPageSegment, used\n // on the server.\n const stringifiedQuery = JSON.stringify(Object.fromEntries(new URLSearchParams(renderedSearch)));\n return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY;\n }\n return newRouteTree.segment;\n}\nfunction patchRouterStateWithNewChildren(baseRouterState, newChildren) {\n const clone = [\n baseRouterState[0],\n newChildren\n ];\n // Based on equivalent logic in apply-router-state-patch-to-tree, but should\n // confirm whether we need to copy all of these fields. Not sure the server\n // ever sends, e.g. the refetch marker.\n if (2 in baseRouterState) {\n clone[2] = baseRouterState[2];\n }\n if (3 in baseRouterState) {\n clone[3] = baseRouterState[3];\n }\n if (4 in baseRouterState) {\n clone[4] = baseRouterState[4];\n }\n return clone;\n}\nfunction createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest) {\n // Create a FlightRouterState that instructs the server how to render the\n // requested segment.\n //\n // Or, if neither this segment nor any of the children require a new data,\n // then we return `null` to skip the request.\n let dynamicRequestTree = null;\n if (needsDynamicRequest) {\n dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren);\n // The \"refetch\" marker is set on the top-most segment that requires new\n // data. We can omit it if a parent was already marked.\n if (!parentNeedsDynamicRequest) {\n dynamicRequestTree[3] = 'refetch';\n }\n } else if (childNeedsDynamicRequest) {\n // This segment does not request new data, but at least one of its\n // children does.\n dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren);\n } else {\n dynamicRequestTree = null;\n }\n return dynamicRequestTree;\n}\nfunction accumulateRefreshUrl(accumulation, refreshState) {\n // This is a refresh navigation, and we're inside a \"default\" slot that's\n // not part of the current route; it was reused from an older route. In\n // order to get fresh data for this reused route, we need to issue a\n // separate request using the old route's URL.\n //\n // Track these extra URLs in the accumulated result. Later, we'll construct\n // an appropriate request for each unique URL in the final set. The reason\n // we don't do it immediately here is so we can deduplicate multiple\n // instances of the same URL into a single request. See\n // listenForDynamicRequest for more details.\n const refreshUrl = refreshState.canonicalUrl;\n const separateRefreshUrls = accumulation.separateRefreshUrls;\n if (separateRefreshUrls === null) {\n accumulation.separateRefreshUrls = new Set([\n refreshUrl\n ]);\n } else {\n separateRefreshUrls.add(refreshUrl);\n }\n}\nfunction reuseActiveSegmentInDefaultSlot(parentRouteTree, parallelRouteKey, oldRootRefreshState, oldRouterState) {\n // This is a \"default\" segment. These are never sent by the server during a\n // soft navigation; instead, the client reuses whatever segment was already\n // active in that slot on the previous route. This means if we later need to\n // refresh the segment, it will have to be refetched from the previous route's\n // URL. We store it in the Flight Router State.\n let reusedUrl;\n let reusedRenderedSearch;\n const oldRefreshState = oldRouterState[2];\n if (oldRefreshState !== undefined && oldRefreshState !== null) {\n // This segment was already reused from an even older route. Keep its\n // existing URL and refresh state.\n reusedUrl = oldRefreshState[0];\n reusedRenderedSearch = oldRefreshState[1];\n } else {\n // Since this route didn't already have a refresh state, it must have been\n // reachable from the root of the old route. So we use the refresh state\n // that represents the old route.\n reusedUrl = oldRootRefreshState.canonicalUrl;\n reusedRenderedSearch = oldRootRefreshState.renderedSearch;\n }\n const acc = {\n metadataVaryPath: null\n };\n const reusedRouteTree = convertReusedFlightRouterStateToRouteTree(parentRouteTree, parallelRouteKey, oldRouterState, reusedRenderedSearch, acc);\n reusedRouteTree.refreshState = {\n canonicalUrl: reusedUrl,\n renderedSearch: reusedRenderedSearch\n };\n return reusedRouteTree;\n}\nfunction reuseSharedCacheNode(dropPrefetchRsc, existingCacheNode) {\n // Clone the CacheNode that was already present in the previous tree.\n // Carry forward the scrollRef so scroll intent from a prior navigation\n // survives tree rebuilds (e.g. push + refresh in the same batch).\n return createCacheNode(existingCacheNode.rsc, dropPrefetchRsc ? null : existingCacheNode.prefetchRsc, existingCacheNode.head, dropPrefetchRsc ? null : existingCacheNode.prefetchHead, existingCacheNode.scrollRef);\n}\nfunction createCacheNodeForSegment(now, tree, seedRsc, metadataVaryPath, seedHead, freshness, dynamicStaleAt) {\n // Construct a new CacheNode using data from the BFCache, the client's\n // Segment Cache, or seeded from a server response.\n //\n // If there's a cache miss, or if we only have a partial hit, we'll render\n // the partial state immediately, and spawn a request to the server to fill\n // in the missing data.\n //\n // If the segment is fully cached on the client already, we can omit this\n // segment from the server request.\n //\n // If we already have a dynamic data response associated with this navigation,\n // as in the case of a Server Action-initiated redirect or refresh, we may\n // also be able to use that data without spawning a new request. (This is\n // referred to as the \"seed\" data.)\n const isPage = tree.isPage;\n // During certain kinds of navigations, we may be able to render from\n // the BFCache.\n switch(freshness){\n case 0:\n {\n // Check BFCache during regular navigations. The entry's staleAt\n // determines whether it's still fresh. This is used when\n // staleTimes.dynamic is configured globally or when a page exports\n // unstable_dynamicStaleTime for per-page control.\n const bfcacheEntry = readFromBFCacheDuringRegularNavigation(now, tree.varyPath);\n if (bfcacheEntry !== null) {\n return {\n cacheNode: createCacheNode(bfcacheEntry.rsc, bfcacheEntry.prefetchRsc, bfcacheEntry.head, bfcacheEntry.prefetchHead),\n needsDynamicRequest: false\n };\n }\n break;\n }\n case 1:\n {\n // This is not related to the BFCache but it is a special case.\n //\n // We should never spawn network requests during hydration. We must treat\n // the initial payload as authoritative, because the initial page load is\n // used as a last-ditch mechanism for recovering the app.\n //\n // This is also an important safety check because if this leaks into the\n // server rendering path (which theoretically it never should because the\n // server payload should be consistent), the server would hang because these\n // promises would never resolve.\n //\n // TODO: There is an existing case where the global \"not found\" boundary\n // triggers this path. But it does render correctly despite that. That's an\n // unusual render path so it's not surprising, but we should look into\n // modeling it in a more consistent way. See also the /_notFound special\n // case in updateCacheNodeOnNavigation.\n const rsc = seedRsc;\n const prefetchRsc = null;\n const head = isPage ? seedHead : null;\n const prefetchHead = null;\n writeToBFCache(now, tree.varyPath, rsc, prefetchRsc, head, prefetchHead, dynamicStaleAt);\n if (isPage && metadataVaryPath !== null) {\n writeHeadToBFCache(now, metadataVaryPath, head, prefetchHead, dynamicStaleAt);\n }\n return {\n cacheNode: createCacheNode(rsc, prefetchRsc, head, prefetchHead),\n needsDynamicRequest: false\n };\n }\n case 2:\n const bfcacheEntry = readFromBFCache(tree.varyPath);\n if (bfcacheEntry !== null) {\n // Only show prefetched data if the dynamic data is still pending. This\n // avoids a flash back to the prefetch state in a case where it's highly\n // likely to have already streamed in.\n //\n // Tehnically, what we're actually checking is whether the dynamic\n // network response was received. But since it's a streaming response,\n // this does not mean that all the dynamic data has fully streamed in.\n // It just means that _some_ of the dynamic data was received. But as a\n // heuristic, we assume that the rest dynamic data will stream in\n // quickly, so it's still better to skip the prefetch state.\n const oldRsc = bfcacheEntry.rsc;\n const oldRscDidResolve = !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending';\n const dropPrefetchRsc = oldRscDidResolve;\n return {\n cacheNode: createCacheNode(bfcacheEntry.rsc, dropPrefetchRsc ? null : bfcacheEntry.prefetchRsc, bfcacheEntry.head, dropPrefetchRsc ? null : bfcacheEntry.prefetchHead),\n needsDynamicRequest: false\n };\n }\n break;\n case 3:\n case 4:\n case 5:\n break;\n default:\n freshness;\n break;\n }\n let cachedRsc = null;\n let isCachedRscPartial = true;\n const segmentEntry = readSegmentCacheEntry(now, tree.varyPath);\n if (segmentEntry !== null) {\n switch(segmentEntry.status){\n case EntryStatus.Fulfilled:\n {\n // Happy path: a cache hit\n cachedRsc = segmentEntry.rsc;\n isCachedRscPartial = segmentEntry.isPartial;\n break;\n }\n case EntryStatus.Pending:\n {\n // We haven't received data for this segment yet, but there's already\n // an in-progress request. Since it's extremely likely to arrive\n // before the dynamic data response, we might as well use it.\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry);\n cachedRsc = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.rsc : null);\n // Because the request is still pending, we typically don't know yet\n // whether the response will be partial. We shouldn't skip this segment\n // during the dynamic navigation request. Otherwise, we might need to\n // do yet another request to fill in the remaining data, creating\n // a waterfall.\n //\n // The one exception is if this segment is being fetched with via\n // prefetch={true} (i.e. the \"force stale\" or \"full\" strategy). If so,\n // we can assume the response will be full. This field is set to `false`\n // for such segments.\n isCachedRscPartial = segmentEntry.isPartial;\n break;\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n {\n break;\n }\n default:\n {\n segmentEntry;\n break;\n }\n }\n }\n // Now combine the cached data with the seed data to determine what we can\n // render immediately, versus what needs to stream in later.\n // A partial state to show immediately while we wait for the final data to\n // arrive. If `rsc` is already a complete value (not partial), or if we\n // don't have any useful partial state, this will be `null`.\n let prefetchRsc;\n // The final, resolved segment data. If the data is missing, this will be a\n // promise that resolves to the eventual data. A resolved value of `null`\n // means the data failed to load; the LayoutRouter will suspend indefinitely\n // until the router updates again (refer to finishNavigationTask).\n let rsc;\n let doesSegmentNeedDynamicRequest;\n if (seedRsc !== null) {\n // We already have a dynamic server response for this segment.\n if (isCachedRscPartial) {\n // The seed data may still be streaming in, so it's worth showing the\n // partial cached state in the meantime.\n prefetchRsc = cachedRsc;\n rsc = seedRsc;\n } else {\n // We already have a completely cached segment. Ignore the seed data,\n // which may still be streaming in. This shouldn't happen in the normal\n // case because the client will inform the server which segments are\n // already fully cached, and the server will skip rendering them.\n prefetchRsc = null;\n rsc = cachedRsc;\n }\n doesSegmentNeedDynamicRequest = false;\n } else {\n if (isCachedRscPartial) {\n // The cached data contains dynamic holes, or it's missing entirely. We'll\n // show the partial state immediately (if available), and stream in the\n // final data.\n //\n // Create a pending promise that we can later write to when the\n // data arrives from the server.\n prefetchRsc = cachedRsc;\n rsc = createDeferredRsc();\n } else {\n // The data is fully cached.\n prefetchRsc = null;\n rsc = cachedRsc;\n }\n doesSegmentNeedDynamicRequest = isCachedRscPartial;\n }\n // If this is a page segment, we need to do the same for the head. This\n // follows analogous logic to the segment data above.\n // TODO: We don't need to store the head on the page segment's CacheNode; we\n // can lift it to the main state object. Then we can also delete\n // findHeadCache.\n let prefetchHead = null;\n let head = null;\n let doesHeadNeedDynamicRequest = isPage;\n if (isPage) {\n let cachedHead = null;\n let isCachedHeadPartial = true;\n if (metadataVaryPath !== null) {\n const metadataEntry = readSegmentCacheEntry(now, metadataVaryPath);\n if (metadataEntry !== null) {\n switch(metadataEntry.status){\n case EntryStatus.Fulfilled:\n {\n cachedHead = metadataEntry.rsc;\n isCachedHeadPartial = metadataEntry.isPartial;\n break;\n }\n case EntryStatus.Pending:\n {\n cachedHead = waitForSegmentCacheEntry(metadataEntry).then((entry)=>entry !== null ? entry.rsc : null);\n isCachedHeadPartial = metadataEntry.isPartial;\n break;\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n {\n break;\n }\n default:\n {\n metadataEntry;\n break;\n }\n }\n }\n }\n if (process.env.__NEXT_OPTIMISTIC_ROUTING && isCachedHeadPartial) {\n // TODO: When optimistic routing is enabled, don't block on waiting for\n // the viewport to resolve. This is a temporary workaround until Vary\n // Params are tracked when rendering the metadata. We'll fix it before\n // this feature is stable. However, it's not a critical issue because 1)\n // it will stream in eventually anyway 2) metadata is wrapped in an\n // internal Suspense boundary, so is always non-blocking; this only\n // affects the viewport node, which is meant to blocking, however... 3)\n // before Segment Cache landed this wasn't always the case, anyway, so\n // it's unlikely that many people are relying on this behavior. Still,\n // will be fixed before stable. It's the very next step in the sequence of\n // work on this project.\n //\n // This line of code works because the App Router treats `null` as\n // \"no renderable head available\", rather than an empty head. React treats\n // an empty string as empty.\n cachedHead = '';\n }\n if (seedHead !== null) {\n if (isCachedHeadPartial) {\n prefetchHead = cachedHead;\n head = seedHead;\n } else {\n prefetchHead = null;\n head = cachedHead;\n }\n doesHeadNeedDynamicRequest = false;\n } else {\n if (isCachedHeadPartial) {\n prefetchHead = cachedHead;\n head = createDeferredRsc();\n } else {\n prefetchHead = null;\n head = cachedHead;\n }\n doesHeadNeedDynamicRequest = isCachedHeadPartial;\n }\n }\n // Now that we're creating a new segment, write its data to the BFCache. A\n // subsequent back/forward navigation will reuse this same data, until or\n // unless it's cleared by a refresh/revalidation.\n //\n // Skip BFCache writes for optimistic navigations since they are transient\n // and will be replaced by the canonical navigation.\n if (freshness !== 5) {\n writeToBFCache(now, tree.varyPath, rsc, prefetchRsc, head, prefetchHead, dynamicStaleAt);\n if (isPage && metadataVaryPath !== null) {\n writeHeadToBFCache(now, metadataVaryPath, head, prefetchHead, dynamicStaleAt);\n }\n }\n return {\n cacheNode: createCacheNode(rsc, prefetchRsc, head, prefetchHead),\n // TODO: We should store this field on the CacheNode itself. I think we can\n // probably unify NavigationTask, CacheNode, and DeferredRsc into a\n // single type. Or at least CacheNode and DeferredRsc.\n needsDynamicRequest: doesSegmentNeedDynamicRequest || doesHeadNeedDynamicRequest\n };\n}\nfunction createCacheNode(rsc, prefetchRsc, head, prefetchHead, scrollRef = null) {\n return {\n rsc,\n prefetchRsc,\n head,\n prefetchHead,\n slots: null,\n scrollRef\n };\n}\n// Represents whether the previuos navigation resulted in a route tree mismatch.\n// A mismatch results in a refresh of the page. If there are two successive\n// mismatches, we will fall back to an MPA navigation, to prevent a retry loop.\nlet previousNavigationDidMismatch = false;\n// Writes a dynamic server response into the tree created by\n// updateCacheNodeOnNavigation. All pending promises that were spawned by the\n// navigation will be resolved, either with dynamic data from the server, or\n// `null` to indicate that the data is missing.\n//\n// A `null` value will trigger a lazy fetch during render, which will then patch\n// up the tree using the same mechanism as the non-PPR implementation\n// (serverPatchReducer).\n//\n// Usually, the server will respond with exactly the subset of data that we're\n// waiting for — everything below the nearest shared layout. But technically,\n// the server can return anything it wants.\n//\n// This does _not_ create a new tree; it modifies the existing one in place.\n// Which means it must follow the Suspense rules of cache safety.\nexport function spawnDynamicRequests(task, primaryUrl, nextUrl, freshnessPolicy, accumulation, // The route cache entry used for this navigation, if it came from route\n// prediction. Passed through so it can be marked as having a dynamic rewrite\n// if the server returns a different pathname than expected (indicating\n// dynamic rewrite behavior that varies by param value).\nrouteCacheEntry, // The original navigation's push/replace intent. Threaded through to the\n// server-patch retry logic so it can inherit the intent if the original\n// transition hasn't committed yet.\nnavigateType) {\n const dynamicRequestTree = task.dynamicRequestTree;\n if (dynamicRequestTree === null) {\n // This navigation was fully cached. There are no dynamic requests to spawn.\n previousNavigationDidMismatch = false;\n return;\n }\n // This is intentionally not an async function to discourage the caller from\n // awaiting the result. Any subsequent async operations spawned by this\n // function should result in a separate navigation task, rather than\n // block the original one.\n //\n // In this function we spawn (but do not await) all the network requests that\n // block the navigation, and collect the promises. The next function,\n // `finishNavigationTask`, can await the promises in any order without\n // accidentally introducing a network waterfall.\n const primaryRequestPromise = fetchMissingDynamicData(task, dynamicRequestTree, primaryUrl, nextUrl, freshnessPolicy, routeCacheEntry);\n const separateRefreshUrls = accumulation.separateRefreshUrls;\n let refreshRequestPromises = null;\n if (separateRefreshUrls !== null) {\n // There are multiple URLs that we need to request the data from. This\n // happens when a \"default\" parallel route slot is present in the tree, and\n // its data cannot be fetched from the current route. We need to split the\n // combined dynamic request tree into separate requests per URL.\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n // Construct a request tree for each additional refresh URL. This will\n // prune away everything except the parts of the tree that match the\n // given refresh URL.\n refreshRequestPromises = [];\n const canonicalUrl = createHrefFromUrl(primaryUrl);\n for (const refreshUrl of separateRefreshUrls){\n if (refreshUrl === canonicalUrl) {\n continue;\n }\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl)\n const scopedDynamicRequestTree = dynamicRequestTree;\n if (scopedDynamicRequestTree !== null) {\n refreshRequestPromises.push(fetchMissingDynamicData(task, scopedDynamicRequestTree, new URL(refreshUrl, location.origin), // TODO: Just noticed that this should actually the Next-Url at the\n // time the refresh URL was set, not the current Next-Url. Need to\n // start tracking this alongside the refresh URL. In the meantime,\n // if a refresh fails due to a mismatch, it will trigger a\n // hard refresh.\n nextUrl, freshnessPolicy, routeCacheEntry));\n }\n }\n }\n // Further async operations are moved into this separate function to\n // discourage sequential network requests.\n const voidPromise = finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises, routeCacheEntry, navigateType);\n // `finishNavigationTask` is responsible for error handling, so we can attach\n // noop callbacks to this promise.\n voidPromise.then(noop, noop);\n}\nasync function finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises, routeCacheEntry, navigateType) {\n // Wait for all the requests to finish, or for the first one to fail.\n let exitStatus = await waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises);\n // Once the all the requests have finished, check the tree for any remaining\n // pending tasks. If anything is still pending, it means the server response\n // does not match the client, and we must refresh to get back to a consistent\n // state. We can skip this step if we already detected a mismatch during the\n // first phase; it doesn't matter in that case because we're going to refresh\n // the whole tree regardless.\n if (exitStatus === 0) {\n exitStatus = abortRemainingPendingTasks(task, null, null);\n }\n switch(exitStatus){\n case 0:\n {\n // The task has completely finished. There's no missing data. Exit.\n previousNavigationDidMismatch = false;\n return;\n }\n case 1:\n {\n // Some data failed to finish loading. Trigger a soft retry.\n // TODO: As an extra precaution against soft retry loops, consider\n // tracking whether a navigation was itself triggered by a retry. If two\n // happen in a row, fall back to a hard retry.\n const isHardRetry = false;\n const primaryRequestResult = await primaryRequestPromise;\n dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route, routeCacheEntry, navigateType);\n return;\n }\n case 2:\n {\n // Some data failed to finish loading in a non-recoverable way, such as a\n // network error. Trigger an MPA navigation.\n //\n // Hard navigating/refreshing is how we prevent an infinite retry loop\n // caused by a network error — when the network fails, we fall back to the\n // browser behavior for offline navigations. In the future, Next.js may\n // introduce its own custom handling of offline navigations, but that\n // doesn't exist yet.\n const isHardRetry = true;\n const primaryRequestResult = await primaryRequestPromise;\n dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route, routeCacheEntry, navigateType);\n return;\n }\n default:\n {\n return exitStatus;\n }\n }\n}\nfunction waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises) {\n // Custom async combinator logic. This could be replaced by Promise.any but\n // we don't assume that's available.\n //\n // Each promise resolves once the server responsds and the data is written\n // into the CacheNode tree. Resolve the combined promise once all the\n // requests finish.\n //\n // Or, resolve as soon as one of the requests fails, without waiting for the\n // others to finish.\n return new Promise((resolve)=>{\n const onFulfill = (result)=>{\n if (result.exitStatus === 0) {\n remainingCount--;\n if (remainingCount === 0) {\n // All the requests finished successfully.\n resolve(0);\n }\n } else {\n // One of the requests failed. Exit with a failing status.\n // NOTE: It's possible for one of the requests to fail with SoftRetry\n // and a later one to fail with HardRetry. In this case, we choose to\n // retry immediately, rather than delay the retry until all the requests\n // finish. If it fails again, we will hard retry on the next\n // attempt, anyway.\n resolve(result.exitStatus);\n }\n };\n // onReject shouldn't ever be called because fetchMissingDynamicData's\n // entire body is wrapped in a try/catch. This is just defensive.\n const onReject = ()=>resolve(2);\n // Attach the listeners to the promises.\n let remainingCount = 1;\n primaryRequestPromise.then(onFulfill, onReject);\n if (refreshRequestPromises !== null) {\n remainingCount += refreshRequestPromises.length;\n refreshRequestPromises.forEach((refreshRequestPromise)=>refreshRequestPromise.then(onFulfill, onReject));\n }\n });\n}\nfunction dispatchRetryDueToTreeMismatch(isHardRetry, retryUrl, retryNextUrl, seed, baseTree, // The route cache entry used for this navigation, if it came from route\n// prediction. If the navigation results in a mismatch, we mark it as having\n// a dynamic rewrite so future predictions bail out.\nrouteCacheEntry, // The original navigation's push/replace intent.\noriginalNavigateType) {\n // If the navigation used a route prediction, mark it as having a dynamic\n // rewrite since it resulted in a mismatch.\n if (routeCacheEntry !== null) {\n markRouteEntryAsDynamicRewrite(routeCacheEntry);\n } else if (seed !== null) {\n // Even without a direct reference to the route cache entry, we can still\n // mark the route as having a dynamic rewrite by traversing the known route\n // tree. This handles cases where the navigation didn't originate from a\n // route prediction, but still needs to mark the pattern.\n const metadataVaryPath = seed.metadataVaryPath;\n if (metadataVaryPath !== null) {\n const now = Date.now();\n discoverKnownRoute(now, retryUrl.pathname, retryNextUrl, null, seed.routeTree, metadataVaryPath, false, createHrefFromUrl(retryUrl), false, true // hasDynamicRewrite\n );\n }\n }\n // Invalidate all route cache entries. Other entries may have been derived\n // from the template before we knew it had a dynamic rewrite. This also\n // triggers re-prefetching of visible links.\n invalidateRouteCacheEntries(retryNextUrl, baseTree);\n // If this is the second time in a row that a navigation resulted in a\n // mismatch, fall back to a hard (MPA) refresh.\n isHardRetry = isHardRetry || previousNavigationDidMismatch;\n previousNavigationDidMismatch = true;\n // If the original navigation hasn't committed to the browser history yet\n // (the transition suspended before React committed), inherit its push/replace\n // intent. Otherwise, the pushState already ran, so use 'replace' to avoid\n // creating a duplicate history entry.\n //\n // This works because React entangles the retry's state update with the\n // original pending transition — they commit together as a single batch,\n // so the navigate type from the retry is what HistoryUpdater ultimately sees.\n //\n // TODO: Ideally this check would happen right before we schedule the React\n // update (i.e., closer to where the action is dispatched into the queue),\n // not here where the action is constructed. But the current action queue\n // doesn't provide a natural place for that. Revisit when we refactor the\n // action queue into a more reactive navigation model.\n const lastCommitted = getLastCommittedTree();\n const retryNavigateType = lastCommitted !== null && baseTree !== lastCommitted ? originalNavigateType : 'replace';\n const retryAction = {\n type: ACTION_SERVER_PATCH,\n previousTree: baseTree,\n url: retryUrl,\n nextUrl: retryNextUrl,\n seed,\n mpa: isHardRetry,\n navigateType: retryNavigateType\n };\n dispatchAppRouterAction(retryAction);\n}\nasync function fetchMissingDynamicData(task, dynamicRequestTree, url, nextUrl, freshnessPolicy, routeCacheEntry) {\n try {\n const result = await fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n isHmrRefresh: freshnessPolicy === 4\n });\n if (typeof result === 'string') {\n // fetchServerResponse will return an href to indicate that the SPA\n // navigation failed. For example, if the server triggered a hard\n // redirect, or the fetch request errored. Initiate an MPA navigation\n // to the given href.\n return {\n exitStatus: 2,\n url: new URL(result, location.origin),\n seed: null\n };\n }\n const now = Date.now();\n const seed = convertServerPatchToFullTree(now, task.route, result.flightData, result.renderedSearch, result.dynamicStaleTime);\n // If the navigation lock is active, wait for it to be released before\n // writing the dynamic data. This allows tests to assert on the prefetched\n // UI state.\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n await waitForNavigationLock();\n }\n if (routeCacheEntry !== null && result.staticStageData !== null) {\n const { response: staticStageResponse, isResponsePartial } = result.staticStageData;\n getStaleAt(now, staticStageResponse.s).then((staleAt)=>{\n const buildId = result.responseHeaders.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? staticStageResponse.b;\n writeStaticStageResponseIntoCache(now, staticStageResponse.f, buildId, staticStageResponse.h, staleAt, dynamicRequestTree, result.renderedSearch, isResponsePartial);\n }).catch(()=>{\n // The static stage processing failed. Not fatal — the navigation\n // completed normally, we just won't write into the cache.\n });\n }\n if (routeCacheEntry !== null && result.runtimePrefetchStream !== null) {\n processRuntimePrefetchStream(now, result.runtimePrefetchStream, dynamicRequestTree, result.renderedSearch).then((processed)=>{\n if (processed !== null) {\n writeDynamicRenderResponseIntoCache(now, FetchStrategy.PPRRuntime, processed.flightDatas, processed.buildId, processed.isResponsePartial, processed.headVaryParams, processed.staleAt, processed.navigationSeed, null);\n }\n }).catch(()=>{\n // The runtime prefetch cache write failed. Not fatal — the\n // navigation completed normally, we just won't cache runtime data.\n });\n }\n // result.dynamicStaleTime is in seconds (from the server's `d` field).\n // Convert to an absolute timestamp using the centralized helper.\n const dynamicStaleAt = computeDynamicStaleAt(now, result.dynamicStaleTime);\n const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(task, seed.routeTree, seed.data, seed.head, dynamicStaleAt, result.debugInfo);\n return {\n exitStatus: didReceiveUnknownParallelRoute ? 1 : 0,\n url: new URL(result.canonicalUrl, location.origin),\n seed\n };\n } catch {\n // This shouldn't happen because fetchServerResponse's entire body is\n // wrapped in a try/catch. If it does, though, it implies the server failed\n // to respond with any tree at all. So we must fall back to a hard retry.\n return {\n exitStatus: 2,\n url: url,\n seed: null\n };\n }\n}\nfunction writeDynamicDataIntoNavigationTask(task, serverRouteTree, dynamicData, dynamicHead, dynamicStaleAt, debugInfo) {\n if (task.status === 0 && dynamicData !== null) {\n task.status = 1;\n finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo);\n // Update the BFCache entry's staleAt for this segment with the value\n // from the dynamic response. This applies the per-page\n // unstable_dynamicStaleTime if set, or the default DYNAMIC_STALETIME_MS.\n // We only update segments that received dynamic data — static segments\n // are unaffected.\n updateBFCacheEntryStaleAt(serverRouteTree.varyPath, dynamicStaleAt);\n }\n const taskChildren = task.children;\n const serverChildren = serverRouteTree.slots;\n const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null;\n // Detect whether the server sends a parallel route slot that the client\n // doesn't know about.\n let didReceiveUnknownParallelRoute = false;\n if (taskChildren !== null) {\n if (serverChildren !== null) {\n for(const parallelRouteKey in serverChildren){\n const serverRouteTreeChild = serverChildren[parallelRouteKey];\n const dynamicDataChild = dynamicDataChildren !== null ? dynamicDataChildren[parallelRouteKey] : null;\n const taskChild = taskChildren.get(parallelRouteKey);\n if (taskChild === undefined) {\n // The server sent a child segment that the client doesn't know about.\n //\n // When we receive an unknown parallel route, we must consider it a\n // mismatch. This is unlike the case where the segment itself\n // mismatches, because multiple routes can be active simultaneously.\n // But a given layout should never have a mismatching set of\n // child slots.\n //\n // Theoretically, this should only happen in development during an HMR\n // refresh, because the set of parallel routes for a layout does not\n // change over the lifetime of a build/deployment. In production, we\n // should have already mismatched on either the build id or the segment\n // path. But as an extra precaution, we validate in prod, too.\n didReceiveUnknownParallelRoute = true;\n } else {\n const taskSegment = taskChild.route[0];\n const serverSegment = createSegmentFromRouteTree(serverRouteTreeChild);\n if (matchSegment(serverSegment, taskSegment) && dynamicDataChild !== null && dynamicDataChild !== undefined) {\n // Found a match for this task. Keep traversing down the task tree.\n const childDidReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(taskChild, serverRouteTreeChild, dynamicDataChild, dynamicHead, dynamicStaleAt, debugInfo);\n if (childDidReceiveUnknownParallelRoute) {\n didReceiveUnknownParallelRoute = true;\n }\n }\n }\n }\n } else {\n if (serverChildren !== null) {\n // The server sent a child segment that the client doesn't know about.\n didReceiveUnknownParallelRoute = true;\n }\n }\n }\n return didReceiveUnknownParallelRoute;\n}\nfunction finishPendingCacheNode(cacheNode, dynamicData, dynamicHead, debugInfo) {\n // Writes a dynamic response into an existing Cache Node tree. This does _not_\n // create a new tree, it updates the existing tree in-place. So it must follow\n // the Suspense rules of cache safety — it can resolve pending promises, but\n // it cannot overwrite existing data. It can add segments to the tree (because\n // a missing segment will cause the layout router to suspend).\n // but it cannot delete them.\n //\n // We must resolve every promise in the tree, or else it will suspend\n // indefinitely. If we did not receive data for a segment, we will resolve its\n // data promise to `null` to trigger a lazy fetch during render.\n // Use the dynamic data from the server to fulfill the deferred RSC promise\n // on the Cache Node.\n const rsc = cacheNode.rsc;\n const dynamicSegmentData = dynamicData[0];\n if (dynamicSegmentData === null) {\n // This is an empty CacheNode; this particular server request did not\n // render this segment. There may be a separate pending request that will,\n // though, so we won't abort the task until all pending requests finish.\n return;\n }\n if (rsc === null) {\n // This is a lazy cache node. We can overwrite it. This is only safe\n // because we know that the LayoutRouter suspends if `rsc` is `null`.\n cacheNode.rsc = dynamicSegmentData;\n } else if (isDeferredRsc(rsc)) {\n // This is a deferred RSC promise. We can fulfill it with the data we just\n // received from the server. If it was already resolved by a different\n // navigation, then this does nothing because we can't overwrite data.\n rsc.resolve(dynamicSegmentData, debugInfo);\n } else {\n // This is not a deferred RSC promise, nor is it empty, so it must have\n // been populated by a different navigation. We must not overwrite it.\n }\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved with the dynamic head from\n // the server.\n const head = cacheNode.head;\n if (isDeferredRsc(head)) {\n head.resolve(dynamicHead, debugInfo);\n }\n}\nfunction abortRemainingPendingTasks(task, error, debugInfo) {\n let exitStatus;\n if (task.status === 0) {\n // The data for this segment is still missing.\n task.status = 2;\n abortPendingCacheNode(task.node, error, debugInfo);\n // If the server failed to fulfill the data for this segment, it implies\n // that the route tree received from the server mismatched the tree that\n // was previously prefetched.\n //\n // In an app with fully static routes and no proxy-driven redirects or\n // rewrites, this should never happen, because the route for a URL would\n // always be the same across multiple requests. So, this implies that some\n // runtime routing condition changed, likely in a proxy, without being\n // pushed to the client.\n //\n // When this happens, we treat this the same as a refresh(). The entire\n // tree will be re-rendered from the root.\n if (task.refreshState === null) {\n // Trigger a \"soft\" refresh. Essentially the same as calling `refresh()`\n // in a Server Action.\n exitStatus = 1;\n } else {\n // The mismatch was discovered inside an inactive parallel route. This\n // implies the inactive parallel route is no longer reachable at the URL\n // that originally rendered it. Fall back to an MPA refresh.\n // TODO: An alternative could be to trigger a soft refresh but to _not_\n // re-use the inactive parallel routes this time. Similar to what would\n // happen if were to do a hard refrehs, but without the HTML page.\n exitStatus = 2;\n }\n } else {\n // This segment finished. (An error here is treated as Done because they are\n // surfaced to the application during render.)\n exitStatus = 0;\n }\n const taskChildren = task.children;\n if (taskChildren !== null) {\n for (const [, taskChild] of taskChildren){\n const childExitStatus = abortRemainingPendingTasks(taskChild, error, debugInfo);\n // Propagate the exit status up the tree. The statuses are ordered by\n // their precedence.\n if (childExitStatus > exitStatus) {\n exitStatus = childExitStatus;\n }\n }\n }\n return exitStatus;\n}\nfunction abortPendingCacheNode(cacheNode, error, debugInfo) {\n const rsc = cacheNode.rsc;\n if (isDeferredRsc(rsc)) {\n if (error === null) {\n // This will trigger a lazy fetch during render.\n rsc.resolve(null, debugInfo);\n } else {\n // This will trigger an error during rendering.\n rsc.reject(error, debugInfo);\n }\n }\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved. If an error was provided, we\n // will not resolve it with an error, since this is rendered at the root of\n // the app. We want the segment to error, not the entire app.\n const head = cacheNode.head;\n if (isDeferredRsc(head)) {\n head.resolve(null, debugInfo);\n }\n}\nconst DEFERRED = Symbol();\n// This type exists to distinguish a DeferredRsc from a Flight promise. It's a\n// compromise to avoid adding an extra field on every Cache Node, which would be\n// awkward because the pre-PPR parts of codebase would need to account for it,\n// too. We can remove it once type Cache Node type is more settled.\nexport function isDeferredRsc(value) {\n return value && typeof value === 'object' && value.tag === DEFERRED;\n}\nfunction createDeferredRsc() {\n // Create an unresolved promise that represents data derived from a Flight\n // response. The promise will be resolved later as soon as we start receiving\n // data from the server, i.e. as soon as the Flight client decodes and returns\n // the top-level response object.\n // The `_debugInfo` field contains profiling information. Promises that are\n // created by Flight already have this info added by React; for any derived\n // promise created by the router, we need to transfer the Flight debug info\n // onto the derived promise.\n //\n // The debug info represents the latency between the start of the navigation\n // and the start of rendering. (It does not represent the time it takes for\n // whole stream to finish.)\n const debugInfo = [];\n let resolve;\n let reject;\n const pendingRsc = new Promise((res, rej)=>{\n resolve = res;\n reject = rej;\n });\n pendingRsc.status = 'pending';\n pendingRsc.resolve = (value, responseDebugInfo)=>{\n if (pendingRsc.status === 'pending') {\n const fulfilledRsc = pendingRsc;\n fulfilledRsc.status = 'fulfilled';\n fulfilledRsc.value = value;\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo);\n }\n resolve(value);\n }\n };\n pendingRsc.reject = (error, responseDebugInfo)=>{\n if (pendingRsc.status === 'pending') {\n const rejectedRsc = pendingRsc;\n rejectedRsc.status = 'rejected';\n rejectedRsc.reason = error;\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo);\n }\n reject(error);\n }\n };\n pendingRsc.tag = DEFERRED;\n pendingRsc._debugInfo = debugInfo;\n return pendingRsc;\n}\n/**\n * Helper for the Instant Navigation Testing API. Waits for the navigation lock\n * to be released before returning. The network request has already completed by\n * the time this is called, so this only delays writing the dynamic data.\n *\n * Not exposed in production builds by default.\n */ async function waitForNavigationLock() {\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n const { waitForNavigationLockIfActive } = require('../segment-cache/navigation-testing-lock');\n await waitForNavigationLockIfActive();\n }\n}\n\n//# sourceMappingURL=ppr-navigations.js.map","import { fetchServerResponse } from '../router-reducer/fetch-server-response';\nimport { startPPRNavigation, spawnDynamicRequests, FreshnessPolicy } from '../router-reducer/ppr-navigations';\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url';\nimport { NEXT_NAV_DEPLOYMENT_ID_HEADER } from '../../../lib/constants';\nimport { EntryStatus, readRouteCacheEntry, deprecated_requestOptimisticRouteCacheEntry, convertRootFlightRouterStateToRouteTree, getStaleAt, writeStaticStageResponseIntoCache, processRuntimePrefetchStream, writeDynamicRenderResponseIntoCache } from './cache';\nimport { discoverKnownRoute } from './optimistic-routes';\nimport { createCacheKey } from './cache-key';\nimport { schedulePrefetchTask } from './scheduler';\nimport { PrefetchPriority, FetchStrategy } from './types';\nimport { getLinkForCurrentNavigation } from '../links';\nimport { ScrollBehavior } from '../router-reducer/router-reducer-types';\nimport { computeChangedPath } from '../router-reducer/compute-changed-path';\nimport { isJavaScriptURLString } from '../../lib/javascript-url';\nimport { UnknownDynamicStaleTime, computeDynamicStaleAt } from './bfcache';\n/**\n * Navigate to a new URL, using the Segment Cache to construct a response.\n *\n * To allow for synchronous navigations whenever possible, this is not an async\n * function. It returns a promise only if there's no matching prefetch in\n * the cache. Otherwise it returns an immediate result and uses Suspense/RSC to\n * stream in any missing data.\n */ export function navigate(state, url, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, scrollBehavior, navigateType) {\n // Instant Navigation Testing API: when the lock is active, ensure a\n // prefetch task has been initiated before proceeding with the navigation.\n // This guarantees that segment data requests are at least pending, even\n // for routes that already have a cached route tree. Without this, the\n // static shell might be incomplete because some segments were never\n // requested.\n if (process.env.__NEXT_EXPOSE_TESTING_API) {\n const { isNavigationLocked } = require('./navigation-testing-lock');\n if (isNavigationLocked()) {\n return ensurePrefetchThenNavigate(state, url, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, scrollBehavior, navigateType);\n }\n }\n return navigateImpl(state, url, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, scrollBehavior, navigateType);\n}\nfunction navigateImpl(state, url, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, scrollBehavior, navigateType) {\n const now = Date.now();\n const href = url.href;\n const cacheKey = createCacheKey(href, nextUrl);\n const route = readRouteCacheEntry(now, cacheKey);\n if (route !== null && route.status === EntryStatus.Fulfilled) {\n // We have a matching prefetch.\n return navigateUsingPrefetchedRouteTree(now, state, url, currentUrl, currentRenderedSearch, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, scrollBehavior, navigateType, route);\n }\n // There was no matching route tree in the cache. Let's see if we can\n // construct an \"optimistic\" route tree using the deprecated search-params\n // based matching. This is only used when the new optimisticRouting flag is\n // disabled.\n //\n // Do not construct an optimistic route tree if there was a cache hit, but\n // the entry has a rejected status, since it may have been rejected due to a\n // rewrite or redirect based on the search params.\n //\n // TODO: There are multiple reasons a prefetch might be rejected; we should\n // track them explicitly and choose what to do here based on that.\n if (!process.env.__NEXT_OPTIMISTIC_ROUTING) {\n if (route === null || route.status !== EntryStatus.Rejected) {\n const optimisticRoute = deprecated_requestOptimisticRouteCacheEntry(now, url, nextUrl);\n if (optimisticRoute !== null) {\n // We have an optimistic route tree. Proceed with the normal flow.\n return navigateUsingPrefetchedRouteTree(now, state, url, currentUrl, currentRenderedSearch, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, scrollBehavior, navigateType, optimisticRoute);\n }\n }\n }\n // There's no matching prefetch for this route in the cache. We must lazily\n // fetch it from the server before we can perform the navigation.\n //\n // TODO: If this is a gesture navigation, instead of performing a\n // dynamic request, we should do a runtime prefetch.\n return navigateToUnknownRoute(now, state, url, currentUrl, currentRenderedSearch, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, scrollBehavior, navigateType).catch(()=>{\n // If the navigation fails, return the current state\n return state;\n });\n}\nexport function navigateToKnownRoute(now, state, url, canonicalUrl, navigationSeed, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, scrollBehavior, navigateType, debugInfo, // The route cache entry used for this navigation, if it came from route\n// prediction. Passed through so it can be marked as having a dynamic rewrite\n// if the server returns a different pathname (indicating dynamic rewrite\n// behavior).\n//\n// When null, the navigation did not use route prediction - either because\n// the route was already fully cached, or it's a navigation that doesn't\n// involve prediction (refresh, history traversal, server action, etc.).\n// In these cases, if a mismatch occurs, we still mark the route as having a\n// dynamic rewrite by traversing the known route tree (see\n// dispatchRetryDueToTreeMismatch).\nrouteCacheEntry) {\n // A version of navigate() that accepts the target route tree as an argument\n // rather than reading it from the prefetch cache.\n const accumulation = {\n separateRefreshUrls: null,\n scrollRef: null\n };\n // We special case navigations to the exact same URL as the current location.\n // It's a common UI pattern for apps to refresh when you click a link to the\n // current page. So when this happens, we refresh the dynamic data in the page\n // segments.\n //\n // Note that this does not apply if the any part of the hash or search query\n // has changed. This might feel a bit weird but it makes more sense when you\n // consider that the way to trigger this behavior is to click the same link\n // multiple times.\n //\n // TODO: We should probably refresh the *entire* route when this case occurs,\n // not just the page segments. Essentially treating it the same as a refresh()\n // triggered by an action, which is the more explicit way of modeling the UI\n // pattern described above.\n //\n // Also note that this only refreshes the dynamic data, not static/ cached\n // data. If the page segment is fully static and prefetched, the request is\n // skipped. (This is also how refresh() works.)\n const isSamePageNavigation = url.href === currentUrl.href;\n const task = startPPRNavigation(now, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, navigationSeed.routeTree, navigationSeed.metadataVaryPath, freshnessPolicy, navigationSeed.data, navigationSeed.head, navigationSeed.dynamicStaleAt, isSamePageNavigation, accumulation);\n if (task !== null) {\n if (freshnessPolicy !== FreshnessPolicy.Gesture) {\n spawnDynamicRequests(task, url, nextUrl, freshnessPolicy, accumulation, routeCacheEntry, navigateType);\n }\n return completeSoftNavigation(state, url, nextUrl, task.route, task.node, navigationSeed.renderedSearch, canonicalUrl, navigateType, scrollBehavior, accumulation.scrollRef, debugInfo);\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return completeHardNavigation(state, url, navigateType);\n}\nfunction navigateUsingPrefetchedRouteTree(now, state, url, currentUrl, currentRenderedSearch, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, scrollBehavior, navigateType, route) {\n const routeTree = route.tree;\n const canonicalUrl = route.canonicalUrl + url.hash;\n const renderedSearch = route.renderedSearch;\n const prefetchSeed = {\n renderedSearch,\n routeTree,\n metadataVaryPath: route.metadata.varyPath,\n data: null,\n head: null,\n dynamicStaleAt: computeDynamicStaleAt(now, UnknownDynamicStaleTime)\n };\n return navigateToKnownRoute(now, state, url, canonicalUrl, prefetchSeed, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, scrollBehavior, navigateType, null, route);\n}\n// Used to request all the dynamic data for a route, rather than just a subset,\n// e.g. during a refresh or a revalidation. Typically this gets constructed\n// during the normal flow when diffing the route tree, but for an unprefetched\n// navigation, where we don't know the structure of the target route, we use\n// this instead.\nconst DynamicRequestTreeForEntireRoute = [\n '',\n {},\n null,\n 'refetch'\n];\nasync function navigateToUnknownRoute(now, state, url, currentUrl, currentRenderedSearch, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, scrollBehavior, navigateType) {\n // Runs when a navigation happens but there's no cached prefetch we can use.\n // Don't bother to wait for a prefetch response; go straight to a full\n // navigation that contains both static and dynamic data in a single stream.\n // (This is unlike the old navigation implementation, which instead blocks\n // the dynamic request until a prefetch request is received.)\n //\n // To avoid duplication of logic, we're going to pretend that the tree\n // returned by the dynamic request is, in fact, a prefetch tree. Then we can\n // use the same server response to write the actual data into the CacheNode\n // tree. So it's the same flow as the \"happy path\" (prefetch, then\n // navigation), except we use a single server response for both stages.\n let dynamicRequestTree;\n switch(freshnessPolicy){\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n case FreshnessPolicy.Gesture:\n dynamicRequestTree = currentFlightRouterState;\n break;\n case FreshnessPolicy.Hydration:\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n dynamicRequestTree = DynamicRequestTreeForEntireRoute;\n break;\n default:\n freshnessPolicy;\n dynamicRequestTree = currentFlightRouterState;\n break;\n }\n const promiseForDynamicServerResponse = fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl\n });\n const result = await promiseForDynamicServerResponse;\n if (typeof result === 'string') {\n // This is an MPA navigation.\n const redirectUrl = new URL(result, location.origin);\n return completeHardNavigation(state, redirectUrl, navigateType);\n }\n const { flightData, canonicalUrl, renderedSearch, couldBeIntercepted, supportsPerSegmentPrefetching, dynamicStaleTime, staticStageData, runtimePrefetchStream, responseHeaders, debugInfo } = result;\n // Since the response format of dynamic requests and prefetches is slightly\n // different, we'll need to massage the data a bit. Create FlightRouterState\n // tree that simulates what we'd receive as the result of a prefetch.\n const navigationSeed = convertServerPatchToFullTree(now, currentFlightRouterState, flightData, renderedSearch, dynamicStaleTime);\n // Learn the route pattern so we can predict it for future navigations.\n // hasDynamicRewrite is false because this is a fresh navigation to an\n // unknown route - any rewrite detection happens during the traversal inside\n // discoverKnownRoute. The hasDynamicRewrite param is only set to true when\n // retrying after a tree mismatch (see dispatchRetryDueToTreeMismatch).\n const metadataVaryPath = navigationSeed.metadataVaryPath;\n if (metadataVaryPath !== null) {\n discoverKnownRoute(now, url.pathname, nextUrl, null, navigationSeed.routeTree, metadataVaryPath, couldBeIntercepted, createHrefFromUrl(canonicalUrl), supportsPerSegmentPrefetching, false // hasDynamicRewrite - not a retry, rewrite detection happens during traversal\n );\n if (staticStageData !== null) {\n const { response: staticStageResponse, isResponsePartial } = staticStageData;\n // Write the static stage of the response into the segment cache so that\n // subsequent navigations can serve cached static segments instantly.\n getStaleAt(now, staticStageResponse.s).then((staleAt)=>{\n const buildId = responseHeaders.get(NEXT_NAV_DEPLOYMENT_ID_HEADER) ?? staticStageResponse.b;\n writeStaticStageResponseIntoCache(now, staticStageResponse.f, buildId, staticStageResponse.h, staleAt, currentFlightRouterState, renderedSearch, isResponsePartial);\n }).catch(()=>{\n // The static stage processing failed. Not fatal — the navigation\n // completed normally, we just won't write into the cache.\n });\n }\n if (runtimePrefetchStream !== null) {\n processRuntimePrefetchStream(now, runtimePrefetchStream, currentFlightRouterState, renderedSearch).then((processed)=>{\n if (processed !== null) {\n writeDynamicRenderResponseIntoCache(now, FetchStrategy.PPRRuntime, processed.flightDatas, processed.buildId, processed.isResponsePartial, processed.headVaryParams, processed.staleAt, processed.navigationSeed, null);\n }\n }).catch(()=>{\n // The runtime prefetch cache write failed. Not fatal — the\n // navigation completed normally, we just won't cache runtime data.\n });\n }\n }\n return navigateToKnownRoute(now, state, url, createHrefFromUrl(canonicalUrl), navigationSeed, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, scrollBehavior, navigateType, debugInfo, // Unknown route navigations don't use route prediction - the route tree\n // came directly from the server. If a mismatch occurs during dynamic data\n // fetch, the retry handler will traverse the known route tree to mark the\n // entry as having a dynamic rewrite.\n null);\n}\nexport function completeHardNavigation(state, url, navigateType) {\n if (isJavaScriptURLString(url.href)) {\n console.error('Next.js has blocked a javascript: URL as a security precaution.');\n return state;\n }\n const newState = {\n canonicalUrl: url.origin === location.origin ? createHrefFromUrl(url) : url.href,\n pushRef: {\n pendingPush: navigateType === 'push',\n mpaNavigation: true,\n preserveCustomHistoryState: false\n },\n // TODO: None of the rest of these values are consistent with the incoming\n // navigation. We rely on the fact that AppRouter will suspend and trigger\n // a hard navigation before it accesses any of these values. But instead\n // we should trigger the hard navigation and blocking any subsequent\n // router updates without updating React.\n renderedSearch: state.renderedSearch,\n focusAndScrollRef: state.focusAndScrollRef,\n cache: state.cache,\n tree: state.tree,\n nextUrl: state.nextUrl,\n previousNextUrl: state.previousNextUrl,\n debugInfo: null\n };\n return newState;\n}\nexport function completeSoftNavigation(oldState, url, referringNextUrl, tree, cache, renderedSearch, canonicalUrl, navigateType, scrollBehavior, scrollRef, collectedDebugInfo) {\n // The \"Next-Url\" is a special representation of the URL that Next.js\n // uses to implement interception routes.\n // TODO: Get rid of this extra traversal by computing this during the\n // same traversal that computes the tree itself. We should also figure out\n // what is the minimum information needed for the server to correctly\n // intercept the route.\n const changedPath = computeChangedPath(oldState.tree, tree);\n const nextUrlForNewRoute = changedPath ? changedPath : oldState.nextUrl;\n // This value is stored on the state as `previousNextUrl`; the naming is\n // confusing. What it represents is the \"Next-Url\" header that was used to\n // fetch the incoming route. It's essentially the refererer URL, but in a\n // Next.js specific format. During refreshes, this is sent back to the server\n // instead of the current route's \"Next-Url\" so that the same interception\n // logic is applied as during the original navigation.\n const previousNextUrl = referringNextUrl;\n // Check if the only thing that changed was the hash fragment.\n const oldUrl = new URL(oldState.canonicalUrl, url);\n const onlyHashChange = // We don't need to compare the origins, because client-driven\n // navigations are always same-origin.\n url.pathname === oldUrl.pathname && url.search === oldUrl.search && url.hash !== oldUrl.hash;\n // Determine whether and how the page should scroll after this\n // navigation.\n //\n // By default, we scroll to the segments that were navigated to — i.e.\n // segments in the new part of the route, as opposed to shared segments\n // that were already part of the previous route. All newly navigated\n // segments share a single ScrollRef. When they mount, the first one\n // to mount initiates the scroll. They share a ref so that only one\n // scroll happens per navigation.\n //\n // If a subsequent navigation produces new segments, those supersede\n // any pending scroll from the previous navigation by invalidating its\n // ScrollRef. If a navigation doesn't produce any new segments (e.g.\n // a refresh where the route structure didn't change), any pending\n // scrolls from previous navigations are unaffected.\n //\n // The branches below handle special cases layered on top of this\n // default model.\n let activeScrollRef;\n let forceScroll;\n if (scrollBehavior === ScrollBehavior.NoScroll) {\n // The user explicitly opted out of scrolling (e.g. scroll={false}\n // on a Link or router.push).\n //\n // If this navigation created new scroll targets (scrollRef !== null),\n // neutralize them. If it didn't, any prior scroll targets carried\n // forward on the cache nodes via reuseSharedCacheNode remain active.\n if (scrollRef !== null) {\n scrollRef.current = false;\n }\n activeScrollRef = oldState.focusAndScrollRef.scrollRef;\n forceScroll = false;\n } else if (onlyHashChange) {\n // Hash-only navigations should scroll regardless of per-node state.\n // Create a fresh ref so the first segment to scroll consumes it.\n //\n // Invalidate any scroll ref from a prior navigation that hasn't\n // been consumed yet.\n const oldScrollRef = oldState.focusAndScrollRef.scrollRef;\n if (oldScrollRef !== null) {\n oldScrollRef.current = false;\n }\n // Also invalidate any per-node refs that were accumulated during\n // this navigation's tree construction — the hash-only ref\n // supersedes them.\n if (scrollRef !== null) {\n scrollRef.current = false;\n }\n activeScrollRef = {\n current: true\n };\n forceScroll = true;\n } else {\n // Default case. Use the accumulated scrollRef (may be null if no\n // new segments were created). The handler checks per-node refs, so\n // unchanged parallel route slots won't scroll.\n activeScrollRef = scrollRef;\n // If this navigation created new scroll targets, invalidate any\n // pending scroll from a previous navigation.\n if (scrollRef !== null) {\n const oldScrollRef = oldState.focusAndScrollRef.scrollRef;\n if (oldScrollRef !== null) {\n oldScrollRef.current = false;\n }\n }\n forceScroll = false;\n }\n const newState = {\n canonicalUrl,\n renderedSearch,\n pushRef: {\n pendingPush: navigateType === 'push',\n mpaNavigation: false,\n preserveCustomHistoryState: false\n },\n focusAndScrollRef: {\n scrollRef: activeScrollRef,\n forceScroll,\n onlyHashChange,\n hashFragment: // Remove leading # and decode hash to make non-latin hashes work.\n //\n // Empty hash should trigger default behavior of scrolling layout into\n // view. #top is handled in layout-router.\n //\n // Refer to `ScrollAndFocusHandler` for details on how this is used.\n scrollBehavior !== ScrollBehavior.NoScroll && url.hash !== '' ? decodeURIComponent(url.hash.slice(1)) : oldState.focusAndScrollRef.hashFragment\n },\n cache,\n tree,\n nextUrl: nextUrlForNewRoute,\n previousNextUrl,\n debugInfo: collectedDebugInfo\n };\n return newState;\n}\nexport function completeTraverseNavigation(state, url, renderedSearch, cache, tree, nextUrl) {\n return {\n // Set canonical url\n canonicalUrl: createHrefFromUrl(url),\n renderedSearch,\n pushRef: {\n pendingPush: false,\n mpaNavigation: false,\n // Ensures that the custom history state that was set is preserved when applying this update.\n preserveCustomHistoryState: true\n },\n focusAndScrollRef: state.focusAndScrollRef,\n cache,\n // Restore provided tree\n tree,\n nextUrl,\n // TODO: We need to restore previousNextUrl, too, which represents the\n // Next-Url that was used to fetch the data. Anywhere we fetch using the\n // canonical URL, there should be a corresponding Next-Url.\n previousNextUrl: null,\n debugInfo: null\n };\n}\nexport function convertServerPatchToFullTree(now, currentTree, flightData, renderedSearch, dynamicStaleTimeSeconds) {\n // During a client navigation or prefetch, the server sends back only a patch\n // for the parts of the tree that have changed.\n //\n // This applies the patch to the base tree to create a full representation of\n // the resulting tree.\n //\n // The return type includes a full FlightRouterState tree and a full\n // CacheNodeSeedData tree. (Conceptually these are the same tree, and should\n // eventually be unified, but there's still lots of existing code that\n // operates on FlightRouterState trees alone without the CacheNodeSeedData.)\n //\n // TODO: This similar to what apply-router-state-patch-to-tree does. It\n // will eventually fully replace it. We should get rid of all the remaining\n // places where we iterate over the server patch format. This should also\n // eventually replace normalizeFlightData.\n let baseTree = currentTree;\n let baseData = null;\n let head = null;\n if (flightData !== null) {\n for (const { segmentPath, tree: treePatch, seedData: dataPatch, head: headPatch } of flightData){\n const result = convertServerPatchToFullTreeImpl(baseTree, baseData, treePatch, dataPatch, segmentPath, renderedSearch, 0);\n baseTree = result.tree;\n baseData = result.data;\n // This is the same for all patches per response, so just pick an\n // arbitrary one\n head = headPatch;\n }\n }\n const finalFlightRouterState = baseTree;\n // Convert the final FlightRouterState into a RouteTree type.\n //\n // TODO: Eventually, FlightRouterState will evolve to being a transport format\n // only. The RouteTree type will become the main type used for dealing with\n // routes on the client, and we'll store it in the state directly.\n const acc = {\n metadataVaryPath: null\n };\n const routeTree = convertRootFlightRouterStateToRouteTree(finalFlightRouterState, renderedSearch, acc);\n return {\n routeTree,\n metadataVaryPath: acc.metadataVaryPath,\n data: baseData,\n renderedSearch,\n head,\n dynamicStaleAt: computeDynamicStaleAt(now, dynamicStaleTimeSeconds)\n };\n}\nfunction convertServerPatchToFullTreeImpl(baseRouterState, baseData, treePatch, dataPatch, segmentPath, renderedSearch, index) {\n if (index === segmentPath.length) {\n // We reached the part of the tree that we need to patch.\n return {\n tree: treePatch,\n data: dataPatch\n };\n }\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n //\n // This path tells us which part of the base tree to apply the tree patch.\n //\n // NOTE: We receive the FlightRouterState patch in the same request as the\n // seed data patch. Therefore we don't need to worry about diffing the segment\n // values; we can assume the server sent us a correct result.\n const updatedParallelRouteKey = segmentPath[index];\n // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above\n const baseTreeChildren = baseRouterState[1];\n const baseSeedDataChildren = baseData !== null ? baseData[1] : null;\n const newTreeChildren = {};\n const newSeedDataChildren = {};\n for(const parallelRouteKey in baseTreeChildren){\n const childBaseRouterState = baseTreeChildren[parallelRouteKey];\n const childBaseSeedData = baseSeedDataChildren !== null ? baseSeedDataChildren[parallelRouteKey] ?? null : null;\n if (parallelRouteKey === updatedParallelRouteKey) {\n const result = convertServerPatchToFullTreeImpl(childBaseRouterState, childBaseSeedData, treePatch, dataPatch, segmentPath, renderedSearch, // Advance the index by two and keep cloning until we reach\n // the end of the segment path.\n index + 2);\n newTreeChildren[parallelRouteKey] = result.tree;\n newSeedDataChildren[parallelRouteKey] = result.data;\n } else {\n // This child is not being patched. Copy it over as-is.\n newTreeChildren[parallelRouteKey] = childBaseRouterState;\n newSeedDataChildren[parallelRouteKey] = childBaseSeedData;\n }\n }\n let clonedTree;\n let clonedSeedData;\n // Clone all the fields except the children.\n // Clone the FlightRouterState tree. Based on equivalent logic in\n // apply-router-state-patch-to-tree, but should confirm whether we need to\n // copy all of these fields. Not sure the server ever sends, e.g. the\n // refetch marker.\n clonedTree = [\n baseRouterState[0],\n newTreeChildren\n ];\n if (2 in baseRouterState) {\n const compressedRefreshState = baseRouterState[2];\n if (compressedRefreshState !== undefined && compressedRefreshState !== null) {\n // Since this part of the tree was patched with new data, any parent\n // refresh states should be updated to reflect the new rendered search\n // value. (The refresh state acts like a \"context provider\".) All pages\n // within the same server response share the same renderedSearch value,\n // but the same RouteTree could be composed from multiple different\n // routes, and multiple responses.\n clonedTree[2] = [\n compressedRefreshState[0],\n renderedSearch\n ];\n }\n }\n if (3 in baseRouterState) {\n clonedTree[3] = baseRouterState[3];\n }\n if (4 in baseRouterState) {\n clonedTree[4] = baseRouterState[4];\n }\n // Clone the CacheNodeSeedData tree.\n const isEmptySeedDataPartial = true;\n clonedSeedData = [\n null,\n newSeedDataChildren,\n null,\n isEmptySeedDataPartial,\n null\n ];\n return {\n tree: clonedTree,\n data: clonedSeedData\n };\n}\n/**\n * Instant Navigation Testing API: ensures a prefetch task has been initiated\n * and completed before proceeding with the navigation. This guarantees that\n * segment data requests are at least pending, even for routes whose route\n * tree is already cached.\n *\n * After the prefetch completes, delegates to the normal navigation flow.\n */ async function ensurePrefetchThenNavigate(state, url, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, scrollBehavior, navigateType) {\n const link = getLinkForCurrentNavigation();\n const fetchStrategy = link !== null ? link.fetchStrategy : FetchStrategy.PPR;\n // Transition the cookie to captured-SPA immediately, before waiting\n // for the prefetch. This ensures the devtools panel can update its UI\n // right away, even if the prefetch takes time (e.g. dev compilation).\n // The \"to\" tree starts as null and is filled in after the prefetch\n // resolves and the navigation produces a new router state.\n const { transitionToCapturedSPA, updateCapturedSPAToTree } = require('./navigation-testing-lock');\n transitionToCapturedSPA(currentFlightRouterState, null);\n const cacheKey = createCacheKey(url.href, nextUrl);\n await new Promise((resolve)=>{\n schedulePrefetchTask(cacheKey, currentFlightRouterState, fetchStrategy, PrefetchPriority.Default, null, resolve // _onComplete callback\n );\n });\n // Prefetch is complete. Proceed with the normal navigation flow, which\n // will now find the route in the cache.\n const result = await navigateImpl(state, url, currentUrl, currentRenderedSearch, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, scrollBehavior, navigateType);\n // Update the cookie with the resolved \"to\" tree so the devtools\n // panel can display both routes immediately.\n updateCapturedSPAToTree(currentFlightRouterState, result.tree);\n return result;\n}\n\n//# sourceMappingURL=navigation.js.map","/**\n * Optimistic Routing (Known Routes)\n *\n * This module enables the client to predict route structure for URLs that\n * haven't been prefetched yet, based on previously learned route patterns.\n * When successful, this allows skipping the route tree prefetch request\n * entirely.\n *\n * The core idea is that many URLs map to the same route structure. For example,\n * /blog/post-1 and /blog/post-2 both resolve to /blog/[slug]. Once we've\n * prefetched one, we can predict the structure of the other.\n *\n * However, we can't always make this prediction. Static siblings (like\n * /blog/featured alongside /blog/[slug]) have different route structures.\n * When we learn a dynamic route, we also learn its static siblings so we\n * know when NOT to apply the prediction.\n *\n * Main entry points:\n *\n * 1. discoverKnownRoute: Called after receiving a route tree from the server.\n * Traverses the route tree, compares URL parts to segments, and populates\n * the known route tree if they match. Routes are always inserted into the\n * cache.\n *\n * 2. matchKnownRoute: Called when looking up a route with no cache entry.\n * Matches the candidate URL against learned patterns. Returns a synthetic\n * cache entry if successful, or null to fall back to server resolution.\n *\n * Rewrite detection happens during traversal: if a URL path part doesn't match\n * the corresponding route segment, we stop populating the known route tree\n * (since the mapping is incorrect) but still insert the route into the cache.\n *\n * The known route tree is append-only with no eviction. Route patterns are\n * derived from the filesystem, so they don't become stale within a session.\n * Cache invalidation on deploy clears everything anyway.\n *\n * Current limitations (deopt to server resolution):\n * - Rewrites: Detected during traversal (tree not populated, but route cached)\n * - Intercepted routes: The route tree varies by referrer (Next-Url header),\n * so we can't predict the correct structure from the URL alone. Patterns are\n * still stored during discovery (so the trie stays populated for non-\n * intercepted siblings), but matching bails out when the pattern is marked\n * as interceptable.\n */ import { EntryStatus, writeRouteIntoCache, fulfillRouteCacheEntry, createMetadataRouteTree } from './cache';\nimport { doesStaticSegmentAppearInURL } from '../../route-params';\nimport { appendLayoutVaryPath, finalizeLayoutVaryPath, finalizePageVaryPath, finalizeMetadataVaryPath } from './vary-path';\nfunction createEmptyPart() {\n return {\n staticChildren: null,\n dynamicChild: null,\n dynamicChildParamName: null,\n dynamicChildParamType: null,\n pattern: null\n };\n}\n// The root of the known route tree.\nlet knownRouteTreeRoot = createEmptyPart();\n/**\n * Learns a route pattern from a server response and inserts it into the cache.\n *\n * Called after receiving a route tree from the server (initial load, navigation,\n * or prefetch). Traverses the route tree, compares URL parts to segments, and\n * populates the known route tree if they match. Routes are always inserted into\n * the cache regardless of whether the URL matches the route structure.\n *\n * When pendingEntry is provided, it's fulfilled and used. When null, an entry\n * is created and inserted into the route cache map.\n *\n * When hasDynamicRewrite is true, the route entry is marked as having a\n * dynamic rewrite, which prevents it from being used as a template for future\n * predictions. This is set when we detect a mismatch between what we predicted\n * and what the server returned.\n *\n * Returns the fulfilled route cache entry.\n */ export function discoverKnownRoute(now, pathname, nextUrl, pendingEntry, routeTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching, hasDynamicRewrite) {\n const tree = routeTree;\n const pathnameParts = pathname.split('/').filter((p)=>p !== '');\n const firstPart = pathnameParts.length > 0 ? pathnameParts[0] : null;\n const remainingParts = pathnameParts.length > 0 ? pathnameParts.slice(1) : [];\n if (pendingEntry !== null) {\n // Fulfill the pending entry first\n const fulfilledEntry = fulfillRouteCacheEntry(now, pendingEntry, tree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching);\n if (hasDynamicRewrite) {\n fulfilledEntry.hasDynamicRewrite = true;\n }\n // Populate the known route tree (handles rewrite detection internally).\n // The entry is already in the cache; this just stores it as a pattern\n // if the URL matches the route structure.\n discoverKnownRoutePart(knownRouteTreeRoot, tree, firstPart, remainingParts, fulfilledEntry, now, pathname, nextUrl, tree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching, hasDynamicRewrite);\n return fulfilledEntry;\n }\n // No pending entry - discoverKnownRoutePart will create one and insert it\n // into the cache, or return an existing pattern if one exists.\n return discoverKnownRoutePart(knownRouteTreeRoot, tree, firstPart, remainingParts, null, now, pathname, nextUrl, tree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching, hasDynamicRewrite);\n}\n/**\n * Gets or creates the dynamic child node for a KnownRoutePart.\n * A node can have at most one dynamic child (you can't have both [slug] and\n * [id] at the same route level), so we either return existing or create new.\n */ function discoverDynamicChild(part, paramName, paramType) {\n if (part.dynamicChild !== null) {\n return part.dynamicChild;\n }\n const newChild = createEmptyPart();\n // Type assertion needed because we're converting from \"without\" to \"with\"\n // dynamic child variant.\n const mutablePart = part;\n mutablePart.dynamicChild = newChild;\n mutablePart.dynamicChildParamName = paramName;\n mutablePart.dynamicChildParamType = paramType;\n return newChild;\n}\n/**\n * Recursive workhorse for discoverKnownRoute.\n *\n * Walks the route tree and URL parts in parallel, building out the known\n * route tree as it goes. At each step:\n * 1. Determines if the current segment appears in the URL (dynamic/static)\n * 2. Validates URL matches route structure (detects rewrites)\n * 3. Creates/updates the corresponding KnownRoutePart node\n * 4. Records static siblings for future matching\n * 5. Recurses into child slots (parallel routes)\n *\n * If a URL/route mismatch is detected (rewrite), we stop building the known\n * route tree but still cache the route entry for direct lookup.\n */ function discoverKnownRoutePart(parentKnownRoutePart, routeTree, urlPart, remainingParts, existingEntry, // These are passed through unchanged for entry creation at the leaf\nnow, pathname, nextUrl, fullTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching, hasDynamicRewrite) {\n const segment = routeTree.segment;\n let segmentAppearsInURL;\n let paramName = null;\n let paramType = null;\n let staticSiblings = null;\n if (typeof segment === 'string') {\n segmentAppearsInURL = doesStaticSegmentAppearInURL(segment);\n } else {\n // Dynamic segment tuple: [paramName, paramCacheKey, paramType, staticSiblings]\n paramName = segment[0];\n paramType = segment[2];\n staticSiblings = segment[3];\n segmentAppearsInURL = true;\n }\n let knownRoutePart = parentKnownRoutePart;\n let nextUrlPart = urlPart;\n let nextRemainingParts = remainingParts;\n if (segmentAppearsInURL) {\n // Check for mismatch: if this is a static segment, the URL part must match\n if (paramName === null && urlPart !== segment) {\n // URL doesn't match route structure (likely a rewrite).\n // Don't populate the known route tree, just write the route into the\n // cache and return immediately.\n if (existingEntry !== null) {\n return existingEntry;\n }\n return writeRouteIntoCache(now, pathname, nextUrl, fullTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching);\n }\n // URL matches route structure. Build the known route tree.\n if (paramName !== null && paramType !== null) {\n // Dynamic segment\n knownRoutePart = discoverDynamicChild(parentKnownRoutePart, paramName, paramType);\n // Record static siblings as placeholder parts.\n // IMPORTANT: We use the null vs Map distinction to track whether\n // siblings are known at this level:\n // - staticChildren: null = siblings unknown (can't safely match dynamic)\n // - staticChildren: Map = siblings known (even if empty)\n // This matters in dev mode where webpack may not know all siblings yet.\n if (staticSiblings !== null) {\n // Siblings are known - ensure we have a Map (even if empty)\n if (parentKnownRoutePart.staticChildren === null) {\n parentKnownRoutePart.staticChildren = new Map();\n }\n for (const sibling of staticSiblings){\n if (!parentKnownRoutePart.staticChildren.has(sibling)) {\n parentKnownRoutePart.staticChildren.set(sibling, createEmptyPart());\n }\n }\n }\n } else {\n // Static segment\n if (parentKnownRoutePart.staticChildren === null) {\n parentKnownRoutePart.staticChildren = new Map();\n }\n let existingChild = parentKnownRoutePart.staticChildren.get(urlPart);\n if (existingChild === undefined) {\n existingChild = createEmptyPart();\n parentKnownRoutePart.staticChildren.set(urlPart, existingChild);\n }\n knownRoutePart = existingChild;\n }\n // Advance to next URL part\n nextUrlPart = remainingParts.length > 0 ? remainingParts[0] : null;\n nextRemainingParts = remainingParts.length > 0 ? remainingParts.slice(1) : [];\n }\n // else: Transparent segment (route group, __PAGE__, etc.)\n // Stay at the same known route part, don't advance URL parts\n // Recurse into child routes. A route tree can have multiple parallel routes\n // (e.g., @modal alongside children). Each parallel route is a separate\n // branch, but they all share the same URL - we just need to traverse all\n // branches to build out the known route tree.\n const slots = routeTree.slots;\n let resultFromChildren = null;\n if (slots !== null) {\n for(const parallelRouteKey in slots){\n const childRouteTree = slots[parallelRouteKey];\n // Skip branches with refreshState set - these were reused from a\n // different route (e.g., a \"default\" parallel slot) and don't represent\n // the actual route structure for this URL.\n if (childRouteTree.refreshState !== null) {\n continue;\n }\n const result = discoverKnownRoutePart(knownRoutePart, childRouteTree, nextUrlPart, nextRemainingParts, existingEntry, now, pathname, nextUrl, fullTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching, hasDynamicRewrite);\n // All parallel route branches share the same URL, so they should all\n // reach compatible leaf nodes. We capture any result.\n resultFromChildren = result;\n }\n if (resultFromChildren !== null) {\n return resultFromChildren;\n }\n // Defensive fallback: no children returned a result. This shouldn't happen\n // for valid route trees, but handle it gracefully.\n if (existingEntry !== null) {\n return existingEntry;\n }\n return writeRouteIntoCache(now, pathname, nextUrl, fullTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching);\n }\n // Reached a page node. Create/get the route cache entry and store as a\n // pattern. First, check if there's already a pattern for this route.\n if (knownRoutePart.pattern !== null) {\n // If this route has a dynamic rewrite, mark the existing pattern.\n if (hasDynamicRewrite) {\n knownRoutePart.pattern.hasDynamicRewrite = true;\n }\n return knownRoutePart.pattern;\n }\n // Get or create the entry\n let entry;\n if (existingEntry !== null) {\n // Already have a fulfilled entry, use it directly. It's already in the\n // route cache map.\n entry = existingEntry;\n } else {\n // Create the entry and insert it into the route cache map.\n entry = writeRouteIntoCache(now, pathname, nextUrl, fullTree, metadataVaryPath, couldBeIntercepted, canonicalUrl, supportsPerSegmentPrefetching);\n }\n if (hasDynamicRewrite) {\n entry.hasDynamicRewrite = true;\n }\n // Store as pattern\n knownRoutePart.pattern = entry;\n return entry;\n}\n/**\n * Attempts to match a URL against learned route patterns.\n *\n * Returns a synthetic FulfilledRouteCacheEntry if the URL matches a known\n * pattern, or null if no match is found (fall back to server resolution).\n */ export function matchKnownRoute(pathname, search) {\n const pathnameParts = pathname.split('/').filter((p)=>p !== '');\n const resolvedParams = new Map();\n const match = matchKnownRoutePart(knownRouteTreeRoot, pathnameParts, 0, resolvedParams);\n if (match === null) {\n return null;\n }\n const matchedPart = match.part;\n const pattern = match.pattern;\n // If the pattern could be intercepted, we can't safely use it for prediction.\n // Interception routes resolve to different route trees depending on the\n // referrer (the Next-Url header), which means the same URL can map to\n // different page components depending on where the navigation originated.\n // Since the known route tree only stores a single pattern per URL shape, we\n // can't distinguish between the intercepted and non-intercepted cases, so we\n // bail out to server resolution.\n //\n // TODO: We could store interception behavior in the known route tree itself\n // (e.g., which segments use interception markers and what they resolve to).\n // With enough information embedded in the trie, we could match interception\n // routes entirely on the client without a server round-trip.\n if (pattern.couldBeIntercepted) {\n return null;\n }\n // \"Reify\" the pattern: clone the template tree with concrete param values.\n // This substitutes resolved params (e.g., slug: \"hello\") into dynamic\n // segments and recomputes vary paths for correct segment cache keying.\n const acc = {\n metadataVaryPath: null\n };\n const reifiedTree = reifyRouteTree(pattern.tree, resolvedParams, search, null, acc);\n // The metadata tree is a flat page node without the intermediate layout\n // structure. Clone it with the updated metadata vary path collected during\n // the main tree traversal.\n const metadataVaryPath = acc.metadataVaryPath;\n if (metadataVaryPath === null) {\n // This shouldn't be reachable for a valid route tree.\n return null;\n }\n const reifiedMetadata = createMetadataRouteTree(metadataVaryPath);\n // Create a synthetic (predicted) entry and store it as the new pattern.\n //\n // Why replace the pattern? We intentionally update the pattern with this\n // synthetic entry so that if our prediction was wrong (server returns a\n // different pathname due to dynamic rewrite), the entry gets marked with\n // hasDynamicRewrite. Future predictions for this route will see the flag\n // and bail out to server resolution instead of making the same mistake.\n const syntheticEntry = {\n canonicalUrl: pathname + search,\n status: EntryStatus.Fulfilled,\n blockedTasks: null,\n tree: reifiedTree,\n metadata: reifiedMetadata,\n couldBeIntercepted: pattern.couldBeIntercepted,\n supportsPerSegmentPrefetching: pattern.supportsPerSegmentPrefetching,\n hasDynamicRewrite: false,\n renderedSearch: search,\n ref: null,\n size: pattern.size,\n staleAt: pattern.staleAt,\n version: pattern.version\n };\n matchedPart.pattern = syntheticEntry;\n return syntheticEntry;\n}\n/**\n * Recursively matches a URL against the known route tree.\n *\n * Matching priority (most specific first):\n * 1. Static children - exact path segment match\n * 2. Dynamic child - [param], [...param], [[...param]]\n * 3. Direct pattern - when no more URL parts remain\n *\n * Collects resolved param values in resolvedParams as it traverses.\n * Returns null if no match found (caller should fall back to server).\n */ function matchKnownRoutePart(part, pathnameParts, partIndex, resolvedParams) {\n const urlPart = partIndex < pathnameParts.length ? pathnameParts[partIndex] : null;\n // If staticChildren is null, we don't know what static routes exist at this\n // level. This happens in webpack dev mode where routes are compiled\n // on-demand. We can't safely match a dynamicChild because the URL part might\n // be a static sibling we haven't discovered yet. Example: We know\n // /blog/[slug] exists, but haven't compiled /blog/featured. A request for\n // /blog/featured would incorrectly match /blog/[slug].\n if (part.staticChildren === null) {\n // The only safe match is a direct pattern when no URL parts remain.\n if (urlPart === null) {\n const pattern = part.pattern;\n if (pattern !== null && !pattern.hasDynamicRewrite) {\n return {\n part,\n pattern\n };\n }\n }\n return null;\n }\n // Static children take priority over dynamic. This ensures /blog/featured\n // matches its own route rather than /blog/[slug].\n if (urlPart !== null) {\n const staticChild = part.staticChildren.get(urlPart);\n if (staticChild !== undefined) {\n // Check if this is an \"unknown\" placeholder part. These are created when\n // we learn about static siblings (from the route tree's staticSiblings\n // field) but haven't prefetched them yet. We know the path exists but\n // don't know its structure, so we can't predict it.\n if (staticChild.pattern === null && staticChild.dynamicChild === null && staticChild.staticChildren === null) {\n // Bail out - server must resolve this route.\n return null;\n }\n const match = matchKnownRoutePart(staticChild, pathnameParts, partIndex + 1, resolvedParams);\n if (match !== null) {\n return match;\n }\n // Static child is a real node (not a placeholder) but its subtree\n // didn't match the remaining URL parts. This means the route exists\n // in the static subtree but hasn't been fully discovered yet. Do not\n // fall through to try the dynamic child — the static match is\n // authoritative. Bail out to server resolution.\n return null;\n }\n }\n // Try dynamic child\n if (part.dynamicChild !== null) {\n const dynamicPart = part.dynamicChild;\n const paramName = part.dynamicChildParamName;\n const paramType = part.dynamicChildParamType;\n const dynamicPattern = dynamicPart.pattern;\n switch(paramType){\n case 'c':\n // Required catch-all [...param]: consumes 1+ URL parts\n if (dynamicPattern !== null && !dynamicPattern.hasDynamicRewrite && urlPart !== null) {\n resolvedParams.set(paramName, pathnameParts.slice(partIndex));\n return {\n part: dynamicPart,\n pattern: dynamicPattern\n };\n }\n break;\n case 'oc':\n // Optional catch-all [[...param]]: consumes 0+ URL parts\n if (dynamicPattern !== null && !dynamicPattern.hasDynamicRewrite) {\n if (urlPart !== null) {\n resolvedParams.set(paramName, pathnameParts.slice(partIndex));\n return {\n part: dynamicPart,\n pattern: dynamicPattern\n };\n }\n // urlPart is null - can match with zero parts, but a direct pattern\n // (e.g., page.tsx alongside [[...param]]) takes precedence.\n if (part.pattern === null || part.pattern.hasDynamicRewrite) {\n resolvedParams.set(paramName, []);\n return {\n part: dynamicPart,\n pattern: dynamicPattern\n };\n }\n }\n break;\n case 'd':\n // Regular dynamic [param]: consumes exactly 1 URL part.\n // Unlike catch-all which terminates here, regular dynamic must\n // continue recursing to find the leaf pattern.\n if (urlPart !== null) {\n resolvedParams.set(paramName, urlPart);\n return matchKnownRoutePart(dynamicPart, pathnameParts, partIndex + 1, resolvedParams);\n }\n break;\n // Intercepted routes use relative path markers like (.), (..), (...)\n // Their behavior depends on navigation context (soft vs hard nav),\n // so we can't predict them client-side. Defer to server.\n case 'ci(..)(..)':\n case 'ci(.)':\n case 'ci(..)':\n case 'ci(...)':\n case 'di(..)(..)':\n case 'di(.)':\n case 'di(..)':\n case 'di(...)':\n return null;\n default:\n paramType;\n }\n }\n // No children matched. If we've consumed all URL parts, check for a direct\n // pattern at this node (the route terminates here).\n if (urlPart === null) {\n const pattern = part.pattern;\n if (pattern !== null && !pattern.hasDynamicRewrite) {\n return {\n part,\n pattern\n };\n }\n }\n return null;\n}\n/**\n * \"Reify\" means to make concrete - we take an abstract pattern (the template\n * route tree) and produce a concrete instance with actual param values.\n *\n * This function clones a RouteTree, substituting dynamic segment values from\n * resolvedParams and computing new vary paths. The vary path encodes param\n * values so segment cache entries can be correctly keyed.\n *\n * Example: Pattern for /blog/[slug] with resolvedParams { slug: \"hello\" }\n * produces a tree where segment [slug] has cacheKey \"hello\".\n */ function reifyRouteTree(pattern, resolvedParams, search, parentPartialVaryPath, acc) {\n const originalSegment = pattern.segment;\n let newSegment = originalSegment;\n let partialVaryPath;\n if (typeof originalSegment !== 'string') {\n // Dynamic segment: compute new cache key and append to partial vary path\n const paramName = originalSegment[0];\n const paramType = originalSegment[2];\n const staticSiblings = originalSegment[3];\n const newValue = resolvedParams.get(paramName);\n if (newValue !== undefined) {\n const newCacheKey = Array.isArray(newValue) ? newValue.join('/') : newValue;\n newSegment = [\n paramName,\n newCacheKey,\n paramType,\n staticSiblings\n ];\n partialVaryPath = appendLayoutVaryPath(parentPartialVaryPath, newCacheKey, paramName);\n } else {\n // Param not found in resolvedParams - keep original and inherit partial\n // TODO: This should never happen. Bail out with null.\n partialVaryPath = parentPartialVaryPath;\n }\n } else {\n // Static segment: inherit partial vary path from parent\n partialVaryPath = parentPartialVaryPath;\n }\n // Recurse into children with the (possibly updated) partial vary path\n let newSlots = null;\n if (pattern.slots !== null) {\n newSlots = {};\n for(const key in pattern.slots){\n newSlots[key] = reifyRouteTree(pattern.slots[key], resolvedParams, search, partialVaryPath, acc);\n }\n }\n if (pattern.isPage) {\n // Page segment: finalize with search params\n const newVaryPath = finalizePageVaryPath(pattern.requestKey, search, partialVaryPath);\n // Collect metadata vary path (first page wins, same as original algorithm)\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(pattern.requestKey, search, partialVaryPath);\n }\n return {\n requestKey: pattern.requestKey,\n segment: newSegment,\n refreshState: pattern.refreshState,\n slots: newSlots,\n prefetchHints: pattern.prefetchHints,\n isPage: true,\n varyPath: newVaryPath\n };\n } else {\n // Layout segment: finalize without search params\n const newVaryPath = finalizeLayoutVaryPath(pattern.requestKey, partialVaryPath);\n return {\n requestKey: pattern.requestKey,\n segment: newSegment,\n refreshState: pattern.refreshState,\n slots: newSlots,\n prefetchHints: pattern.prefetchHints,\n isPage: false,\n varyPath: newVaryPath\n };\n }\n}\n/**\n * Resets the known route tree. Called during development when routes may\n * change due to hot reloading.\n */ export function resetKnownRoutes() {\n knownRouteTreeRoot = createEmptyPart();\n}\n\n//# sourceMappingURL=optimistic-routes.js.map","'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport { TemplateContext } from '../../shared/lib/app-router-context.shared-runtime'\n\nexport default function RenderFromTemplateContext(): JSX.Element {\n const children = useContext(TemplateContext)\n return <>{children}\n}\n","import * as React from 'react';\nconst errorRef = {\n current: null\n};\n// React.cache is currently only available in canary/experimental React channels.\nconst cache = typeof React.cache === 'function' ? React.cache : (fn)=>fn;\n// When Cache Components is enabled, we record these as errors so that they\n// are captured by the dev overlay as it's more critical to fix these\n// when enabled.\nconst logErrorOrWarn = process.env.__NEXT_CACHE_COMPONENTS ? console.error : console.warn;\n// We don't want to dedupe across requests.\n// The developer might've just attempted to fix the warning so we should warn again if it still happens.\nconst flushCurrentErrorIfNew = cache(// eslint-disable-next-line @typescript-eslint/no-unused-vars -- cache key\n(key)=>{\n try {\n logErrorOrWarn(errorRef.current);\n } finally{\n errorRef.current = null;\n }\n});\n/**\n * Creates a function that logs an error message that is deduped by the userland\n * callsite.\n * This requires no indirection between the call of this function and the userland\n * callsite i.e. there's only a single library frame above this.\n * Do not use on the Client where sourcemaps and ignore listing might be enabled.\n * Only use that for warnings need a fix independent of the callstack.\n *\n * @param getMessage\n * @returns\n */ export function createDedupedByCallsiteServerErrorLoggerDev(getMessage) {\n return function logDedupedError(...args) {\n const message = getMessage(...args);\n if (process.env.NODE_ENV !== 'production') {\n var _stack;\n const callStackFrames = (_stack = new Error().stack) == null ? void 0 : _stack.split('\\n');\n if (callStackFrames === undefined || callStackFrames.length < 4) {\n logErrorOrWarn(message);\n } else {\n // Error:\n // logDedupedError\n // asyncApiBeingAccessedSynchronously\n // \n // TODO: This breaks if sourcemaps with ignore lists are enabled.\n const key = callStackFrames[4];\n errorRef.current = message;\n flushCurrentErrorIfNew(key);\n }\n } else {\n logErrorOrWarn(message);\n }\n };\n}\n\n//# sourceMappingURL=create-deduped-by-callsite-server-error-logger.js.map","import { workUnitAsyncStorage } from './work-unit-async-storage.external';\nfunction createSegmentVaryParamsAccumulator() {\n const accumulator = {\n varyParams: new Set(),\n status: 'pending',\n value: new Set(),\n then (onfulfilled) {\n if (onfulfilled) {\n if (accumulator.status === 'pending') {\n accumulator.resolvers.push(onfulfilled);\n } else {\n onfulfilled(accumulator.value);\n }\n }\n },\n resolvers: []\n };\n return accumulator;\n}\n/**\n * A singleton accumulator that's already resolved to an empty Set. Use this for\n * segments where we know upfront that no params will be accessed, such as\n * client components or segments without user code.\n *\n * Benefits:\n * - No need to accumulate or resolve later\n * - Resilient: resolves correctly even if other tracking fails\n * - Memory efficient: reuses the same object\n */ const emptySet = new Set();\nexport const emptyVaryParamsAccumulator = {\n varyParams: emptySet,\n status: 'fulfilled',\n value: emptySet,\n then (onfulfilled) {\n if (onfulfilled) {\n onfulfilled(emptySet);\n }\n },\n resolvers: []\n};\nexport function createResponseVaryParamsAccumulator() {\n // Create the head and rootParams accumulators as top-level fields.\n // Segment accumulators are added to the segments set as they are created.\n const head = createSegmentVaryParamsAccumulator();\n const rootParams = createSegmentVaryParamsAccumulator();\n const segments = new Set();\n return {\n head,\n rootParams,\n segments\n };\n}\n/**\n * Allocates a new VaryParamsAccumulator and adds it to the response accumulator\n * associated with the current WorkUnitStore.\n *\n * Returns a thenable that resolves to the segment's vary params once rendering\n * is complete. The thenable can be passed directly to React Flight for\n * serialization.\n */ export function createVaryParamsAccumulator() {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n {\n const responseAccumulator = workUnitStore.varyParamsAccumulator;\n if (responseAccumulator !== null) {\n const accumulator = createSegmentVaryParamsAccumulator();\n responseAccumulator.segments.add(accumulator);\n return accumulator;\n }\n return null;\n }\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'prerender-client':\n case 'validation-client':\n case 'unstable-cache':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n return null;\n}\nexport function getMetadataVaryParamsAccumulator() {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n {\n const responseAccumulator = workUnitStore.varyParamsAccumulator;\n if (responseAccumulator !== null) {\n return responseAccumulator.head;\n }\n return null;\n }\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'prerender-client':\n case 'validation-client':\n case 'unstable-cache':\n case 'generate-static-params':\n return null;\n default:\n workUnitStore;\n }\n }\n return null;\n}\nexport function getVaryParamsThenable(accumulator) {\n return accumulator;\n}\nexport function getMetadataVaryParamsThenable() {\n const accumulator = getMetadataVaryParamsAccumulator();\n if (accumulator !== null) {\n return getVaryParamsThenable(accumulator);\n }\n return null;\n}\n// The metadata and viewport are always delivered in a single payload, so they\n// don't need to be tracked separately. This may change in the future, but for\n// now this is just an alias.\nexport const getViewportVaryParamsAccumulator = getMetadataVaryParamsAccumulator;\nexport function getRootParamsVaryParamsAccumulator() {\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-runtime':\n {\n const responseAccumulator = workUnitStore.varyParamsAccumulator;\n if (responseAccumulator !== null) {\n return responseAccumulator.rootParams;\n }\n return null;\n }\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'prerender-client':\n case 'validation-client':\n case 'unstable-cache':\n case 'generate-static-params':\n return null;\n default:\n workUnitStore;\n }\n }\n return null;\n}\n/**\n * Records that a param was accessed. Adds the param name to the accumulator's\n * varyParams set.\n */ export function accumulateVaryParam(accumulator, paramName) {\n accumulator.varyParams.add(paramName);\n}\n/**\n * Records a root param access.\n */ export function accumulateRootVaryParam(paramName) {\n const rootParamsAccumulator = getRootParamsVaryParamsAccumulator();\n if (rootParamsAccumulator !== null) {\n accumulateVaryParam(rootParamsAccumulator, paramName);\n }\n}\nexport function createVaryingParams(accumulator, originalParamsObject, optionalCatchAllParamName) {\n if (optionalCatchAllParamName !== null) {\n // When there's an optional catch-all param with no value (e.g.,\n // [[...slug]] at /), the param doesn't exist as a property on the params\n // object. Use a Proxy to track all param access — both existing params\n // and the missing optional param — including enumeration patterns like\n // Object.keys(), spread, for...in, and `in` checks.\n return new Proxy(originalParamsObject, {\n get (target, prop, receiver) {\n if (typeof prop === 'string') {\n if (prop === optionalCatchAllParamName || Object.prototype.hasOwnProperty.call(target, prop)) {\n accumulateVaryParam(accumulator, prop);\n }\n }\n return Reflect.get(target, prop, receiver);\n },\n has (target, prop) {\n if (prop === optionalCatchAllParamName) {\n accumulateVaryParam(accumulator, optionalCatchAllParamName);\n }\n return Reflect.has(target, prop);\n },\n ownKeys (target) {\n // Enumerating the params object means the user's code may depend on\n // which params are present, so conservatively track the optional\n // param as accessed.\n accumulateVaryParam(accumulator, optionalCatchAllParamName);\n return Reflect.ownKeys(target);\n }\n });\n }\n // When there's no optional catch-all, all params exist as properties on the\n // object, so we can use defineProperty getters instead of a Proxy. This is\n // faster because the engine can optimize property access on regular objects\n // more aggressively than Proxy trap calls.\n const underlyingParamsWithVarying = {};\n for(const paramName in originalParamsObject){\n Object.defineProperty(underlyingParamsWithVarying, paramName, {\n get () {\n accumulateVaryParam(accumulator, paramName);\n return originalParamsObject[paramName];\n },\n enumerable: true\n });\n }\n return underlyingParamsWithVarying;\n}\nexport function createVaryingSearchParams(accumulator, originalSearchParamsObject) {\n const underlyingSearchParamsWithVarying = {};\n for(const searchParamName in originalSearchParamsObject){\n Object.defineProperty(underlyingSearchParamsWithVarying, searchParamName, {\n get () {\n // TODO: Unlike path params, we don't vary track each search param\n // individually. The entire search string is treated as a single param.\n // This may change in the future.\n accumulateVaryParam(accumulator, '?');\n return originalSearchParamsObject[searchParamName];\n },\n enumerable: true\n });\n }\n return underlyingSearchParamsWithVarying;\n}\n/**\n * Resolves all segment accumulators in a ResponseVaryParamsAccumulator with\n * their final vary params. Call this after rendering is complete.\n *\n * Each segment's thenable is resolved with its vary params merged with the\n * root params. If we can't track vary params (e.g., legacy prerender), simply\n * don't call this function - the client treats unresolved thenables as\n * \"unknown\" vary params.\n */ export async function finishAccumulatingVaryParams(responseAccumulator) {\n const rootVaryParams = responseAccumulator.rootParams.varyParams;\n // Resolve head\n finishSegmentAccumulator(responseAccumulator.head, rootVaryParams);\n // Resolve each segment\n for (const segmentAccumulator of responseAccumulator.segments){\n finishSegmentAccumulator(segmentAccumulator, rootVaryParams);\n }\n // Now that the thenables are resolved, Flight should be able to flush the\n // vary params into the response stream. This work gets scheduled internally\n // by Flight using a microtask as soon as we notify the thenable listeners.\n //\n // We need to ensure that Flight's pending queues are emptied before this\n // function returns; the caller will abort the prerender immediately after.\n // We can't use a macrotask, because that would allow dynamic IO to sneak\n // into the response. So we use microtasks instead.\n //\n // The exact number of awaits here isn't important (indeed, one seems to be\n // sufficient, at the time of writing), as long as we wait enough ticks for\n // Flight to finish writing the response.\n //\n // Anything that remains in Flight's internal queue after these awaits must\n // be actual dynamic IO, not caused by pending vary params tasks. In other\n // words, failing to do this would cause us to treat a fully static prerender\n // as if it were partially dynamic.\n await Promise.resolve();\n await Promise.resolve();\n await Promise.resolve();\n}\nfunction finishSegmentAccumulator(accumulator, rootVaryParams) {\n if (accumulator.status !== 'pending') {\n return;\n }\n const merged = new Set(accumulator.varyParams);\n for (const param of rootVaryParams){\n merged.add(param);\n }\n accumulator.value = merged;\n accumulator.status = 'fulfilled';\n for (const resolver of accumulator.resolvers){\n resolver(merged);\n }\n accumulator.resolvers = [];\n}\n\n//# sourceMappingURL=vary-params.js.map","// This regex will have fast negatives meaning valid identifiers may not pass\n// this test. However this is only used during static generation to provide hints\n// about why a page bailed out of some or all prerendering and we can use bracket notation\n// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']`\n// even if this would have been fine too `searchParams.ಠ_ಠ`\nconst isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/;\nexport function describeStringPropertyAccess(target, prop) {\n if (isDefinitelyAValidIdentifier.test(prop)) {\n return `\\`${target}.${prop}\\``;\n }\n return `\\`${target}[${JSON.stringify(prop)}]\\``;\n}\nexport function describeHasCheckingStringProperty(target, prop) {\n const stringifiedProp = JSON.stringify(prop);\n return `\\`Reflect.has(${target}, ${stringifiedProp})\\`, \\`${stringifiedProp} in ${target}\\`, or similar`;\n}\nexport const wellKnownProperties = new Set([\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toString',\n 'valueOf',\n 'toLocaleString',\n // Promise prototype\n 'then',\n 'catch',\n 'finally',\n // React Promise extension\n 'status',\n // 'value',\n // 'error',\n // React introspection\n 'displayName',\n '_debugInfo',\n // Common tested properties\n 'toJSON',\n '$$typeof',\n '__esModule',\n // Tested by flight when checking for iterables\n '@@iterator'\n]);\n\n//# sourceMappingURL=reflect-utils.js.map","export class ReflectAdapter {\n static get(target, prop, receiver) {\n const value = Reflect.get(target, prop, receiver);\n if (typeof value === 'function') {\n return value.bind(target);\n }\n return value;\n }\n static set(target, prop, value, receiver) {\n return Reflect.set(target, prop, value, receiver);\n }\n static has(target, prop) {\n return Reflect.has(target, prop);\n }\n static deleteProperty(target, prop) {\n return Reflect.deleteProperty(target, prop);\n }\n}\n\n//# sourceMappingURL=reflect.js.map","\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n// src/index.ts\nvar src_exports = {};\n__export(src_exports, {\n RequestCookies: () => RequestCookies,\n ResponseCookies: () => ResponseCookies,\n parseCookie: () => parseCookie,\n parseSetCookie: () => parseSetCookie,\n stringifyCookie: () => stringifyCookie\n});\nmodule.exports = __toCommonJS(src_exports);\n\n// src/serialize.ts\nfunction stringifyCookie(c) {\n var _a;\n const attrs = [\n \"path\" in c && c.path && `Path=${c.path}`,\n \"expires\" in c && (c.expires || c.expires === 0) && `Expires=${(typeof c.expires === \"number\" ? new Date(c.expires) : c.expires).toUTCString()}`,\n \"maxAge\" in c && typeof c.maxAge === \"number\" && `Max-Age=${c.maxAge}`,\n \"domain\" in c && c.domain && `Domain=${c.domain}`,\n \"secure\" in c && c.secure && \"Secure\",\n \"httpOnly\" in c && c.httpOnly && \"HttpOnly\",\n \"sameSite\" in c && c.sameSite && `SameSite=${c.sameSite}`,\n \"partitioned\" in c && c.partitioned && \"Partitioned\",\n \"priority\" in c && c.priority && `Priority=${c.priority}`\n ].filter(Boolean);\n const stringified = `${c.name}=${encodeURIComponent((_a = c.value) != null ? _a : \"\")}`;\n return attrs.length === 0 ? stringified : `${stringified}; ${attrs.join(\"; \")}`;\n}\nfunction parseCookie(cookie) {\n const map = /* @__PURE__ */ new Map();\n for (const pair of cookie.split(/; */)) {\n if (!pair)\n continue;\n const splitAt = pair.indexOf(\"=\");\n if (splitAt === -1) {\n map.set(pair, \"true\");\n continue;\n }\n const [key, value] = [pair.slice(0, splitAt), pair.slice(splitAt + 1)];\n try {\n map.set(key, decodeURIComponent(value != null ? value : \"true\"));\n } catch {\n }\n }\n return map;\n}\nfunction parseSetCookie(setCookie) {\n if (!setCookie) {\n return void 0;\n }\n const [[name, value], ...attributes] = parseCookie(setCookie);\n const {\n domain,\n expires,\n httponly,\n maxage,\n path,\n samesite,\n secure,\n partitioned,\n priority\n } = Object.fromEntries(\n attributes.map(([key, value2]) => [\n key.toLowerCase().replace(/-/g, \"\"),\n value2\n ])\n );\n const cookie = {\n name,\n value: decodeURIComponent(value),\n domain,\n ...expires && { expires: new Date(expires) },\n ...httponly && { httpOnly: true },\n ...typeof maxage === \"string\" && { maxAge: Number(maxage) },\n path,\n ...samesite && { sameSite: parseSameSite(samesite) },\n ...secure && { secure: true },\n ...priority && { priority: parsePriority(priority) },\n ...partitioned && { partitioned: true }\n };\n return compact(cookie);\n}\nfunction compact(t) {\n const newT = {};\n for (const key in t) {\n if (t[key]) {\n newT[key] = t[key];\n }\n }\n return newT;\n}\nvar SAME_SITE = [\"strict\", \"lax\", \"none\"];\nfunction parseSameSite(string) {\n string = string.toLowerCase();\n return SAME_SITE.includes(string) ? string : void 0;\n}\nvar PRIORITY = [\"low\", \"medium\", \"high\"];\nfunction parsePriority(string) {\n string = string.toLowerCase();\n return PRIORITY.includes(string) ? string : void 0;\n}\nfunction splitCookiesString(cookiesString) {\n if (!cookiesString)\n return [];\n var cookiesStrings = [];\n var pos = 0;\n var start;\n var ch;\n var lastComma;\n var nextStart;\n var cookiesSeparatorFound;\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1;\n }\n return pos < cookiesString.length;\n }\n function notSpecialChar() {\n ch = cookiesString.charAt(pos);\n return ch !== \"=\" && ch !== \";\" && ch !== \",\";\n }\n while (pos < cookiesString.length) {\n start = pos;\n cookiesSeparatorFound = false;\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos);\n if (ch === \",\") {\n lastComma = pos;\n pos += 1;\n skipWhitespace();\n nextStart = pos;\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1;\n }\n if (pos < cookiesString.length && cookiesString.charAt(pos) === \"=\") {\n cookiesSeparatorFound = true;\n pos = nextStart;\n cookiesStrings.push(cookiesString.substring(start, lastComma));\n start = pos;\n } else {\n pos = lastComma + 1;\n }\n } else {\n pos += 1;\n }\n }\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length));\n }\n }\n return cookiesStrings;\n}\n\n// src/request-cookies.ts\nvar RequestCookies = class {\n constructor(requestHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n this._headers = requestHeaders;\n const header = requestHeaders.get(\"cookie\");\n if (header) {\n const parsed = parseCookie(header);\n for (const [name, value] of parsed) {\n this._parsed.set(name, { name, value });\n }\n }\n }\n [Symbol.iterator]() {\n return this._parsed[Symbol.iterator]();\n }\n /**\n * The amount of cookies received from the client\n */\n get size() {\n return this._parsed.size;\n }\n get(...args) {\n const name = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(name);\n }\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed);\n if (!args.length) {\n return all.map(([_, value]) => value);\n }\n const name = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter(([n]) => n === name).map(([_, value]) => value);\n }\n has(name) {\n return this._parsed.has(name);\n }\n set(...args) {\n const [name, value] = args.length === 1 ? [args[0].name, args[0].value] : args;\n const map = this._parsed;\n map.set(name, { name, value });\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value2]) => stringifyCookie(value2)).join(\"; \")\n );\n return this;\n }\n /**\n * Delete the cookies matching the passed name or names in the request.\n */\n delete(names) {\n const map = this._parsed;\n const result = !Array.isArray(names) ? map.delete(names) : names.map((name) => map.delete(name));\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value]) => stringifyCookie(value)).join(\"; \")\n );\n return result;\n }\n /**\n * Delete all the cookies in the cookies in the request.\n */\n clear() {\n this.delete(Array.from(this._parsed.keys()));\n return this;\n }\n /**\n * Format the cookies in the request as a string for logging\n */\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map((v) => `${v.name}=${encodeURIComponent(v.value)}`).join(\"; \");\n }\n};\n\n// src/response-cookies.ts\nvar ResponseCookies = class {\n constructor(responseHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n var _a, _b, _c;\n this._headers = responseHeaders;\n const setCookie = (_c = (_b = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders)) != null ? _b : responseHeaders.get(\"set-cookie\")) != null ? _c : [];\n const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie);\n for (const cookieString of cookieStrings) {\n const parsed = parseSetCookie(cookieString);\n if (parsed)\n this._parsed.set(parsed.name, parsed);\n }\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-get CookieStore#get} without the Promise.\n */\n get(...args) {\n const key = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(key);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-getAll CookieStore#getAll} without the Promise.\n */\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed.values());\n if (!args.length) {\n return all;\n }\n const key = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter((c) => c.name === key);\n }\n has(name) {\n return this._parsed.has(name);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-set CookieStore#set} without the Promise.\n */\n set(...args) {\n const [name, value, cookie] = args.length === 1 ? [args[0].name, args[0].value, args[0]] : args;\n const map = this._parsed;\n map.set(name, normalizeCookie({ name, value, ...cookie }));\n replace(map, this._headers);\n return this;\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-delete CookieStore#delete} without the Promise.\n */\n delete(...args) {\n const [name, options] = typeof args[0] === \"string\" ? [args[0]] : [args[0].name, args[0]];\n return this.set({ ...options, name, value: \"\", expires: /* @__PURE__ */ new Date(0) });\n }\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map(stringifyCookie).join(\"; \");\n }\n};\nfunction replace(bag, headers) {\n headers.delete(\"set-cookie\");\n for (const [, value] of bag) {\n const serialized = stringifyCookie(value);\n headers.append(\"set-cookie\", serialized);\n }\n}\nfunction normalizeCookie(cookie = { name: \"\", value: \"\" }) {\n if (typeof cookie.expires === \"number\") {\n cookie.expires = new Date(cookie.expires);\n }\n if (cookie.maxAge) {\n cookie.expires = new Date(Date.now() + cookie.maxAge * 1e3);\n }\n if (cookie.path === null || cookie.path === void 0) {\n cookie.path = \"/\";\n }\n return cookie;\n}\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n RequestCookies,\n ResponseCookies,\n parseCookie,\n parseSetCookie,\n stringifyCookie\n});\n","export { RequestCookies, ResponseCookies, stringifyCookie } from 'next/dist/compiled/@edge-runtime/cookies';\n\n//# sourceMappingURL=cookies.js.map","const INSTANT_VALIDATION_ERROR_DIGEST = 'INSTANT_VALIDATION_ERROR';\n/** Check if an error is an exhaustive samples validation error (by digest). */ export function isInstantValidationError(err) {\n return !!(err && typeof err === 'object' && err instanceof Error && err.digest === INSTANT_VALIDATION_ERROR_DIGEST);\n}\nexport class InstantValidationError extends Error {\n constructor(...args){\n super(...args), this.digest = INSTANT_VALIDATION_ERROR_DIGEST;\n }\n}\n\n//# sourceMappingURL=instant-validation-error.js.map","export function searchParamsToUrlQuery(searchParams) {\n const query = {};\n for (const [key, value] of searchParams.entries()){\n const existing = query[key];\n if (typeof existing === 'undefined') {\n query[key] = value;\n } else if (Array.isArray(existing)) {\n existing.push(value);\n } else {\n query[key] = [\n existing,\n value\n ];\n }\n }\n return query;\n}\nfunction stringifyUrlQueryParam(param) {\n if (typeof param === 'string') {\n return param;\n }\n if (typeof param === 'number' && !isNaN(param) || typeof param === 'boolean') {\n return String(param);\n } else {\n return '';\n }\n}\nexport function urlQueryToSearchParams(query) {\n const searchParams = new URLSearchParams();\n for (const [key, value] of Object.entries(query)){\n if (Array.isArray(value)) {\n for (const item of value){\n searchParams.append(key, stringifyUrlQueryParam(item));\n }\n } else {\n searchParams.set(key, stringifyUrlQueryParam(value));\n }\n }\n return searchParams;\n}\nexport function assign(target, ...searchParamsList) {\n for (const searchParams of searchParamsList){\n for (const key of searchParams.keys()){\n target.delete(key);\n }\n for (const [key, value] of searchParams.entries()){\n target.append(key, value);\n }\n }\n return target;\n}\n\n//# sourceMappingURL=querystring.js.map","export const ActionDidNotRevalidate = 0;\nexport const ActionDidRevalidateStaticAndDynamic = 1;\nexport const ActionDidRevalidateDynamicOnly = 2;\n\n//# sourceMappingURL=action-revalidation-kind.js.map","import { RequestCookies } from '../cookies';\nimport { ResponseCookies } from '../cookies';\nimport { ReflectAdapter } from './reflect';\nimport { workAsyncStorage } from '../../../app-render/work-async-storage.external';\nimport { ActionDidRevalidateStaticAndDynamic } from '../../../../shared/lib/action-revalidation-kind';\n/**\n * @internal\n */ export class ReadonlyRequestCookiesError extends Error {\n constructor(){\n super('Cookies can only be modified in a Server Action or Route Handler. Read more: https://nextjs.org/docs/app/api-reference/functions/cookies#options');\n }\n static callable() {\n throw new ReadonlyRequestCookiesError();\n }\n}\nexport class RequestCookiesAdapter {\n static seal(cookies) {\n return new Proxy(cookies, {\n get (target, prop, receiver) {\n switch(prop){\n case 'clear':\n case 'delete':\n case 'set':\n return ReadonlyRequestCookiesError.callable;\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n }\n}\nconst SYMBOL_MODIFY_COOKIE_VALUES = Symbol.for('next.mutated.cookies');\nexport function getModifiedCookieValues(cookies) {\n const modified = cookies[SYMBOL_MODIFY_COOKIE_VALUES];\n if (!modified || !Array.isArray(modified) || modified.length === 0) {\n return [];\n }\n return modified;\n}\nexport function appendMutableCookies(headers, mutableCookies) {\n const modifiedCookieValues = getModifiedCookieValues(mutableCookies);\n if (modifiedCookieValues.length === 0) {\n return false;\n }\n // Return a new response that extends the response with\n // the modified cookies as fallbacks. `res` cookies\n // will still take precedence.\n const resCookies = new ResponseCookies(headers);\n const returnedCookies = resCookies.getAll();\n // Set the modified cookies as fallbacks.\n for (const cookie of modifiedCookieValues){\n resCookies.set(cookie);\n }\n // Set the original cookies as the final values.\n for (const cookie of returnedCookies){\n resCookies.set(cookie);\n }\n return true;\n}\nexport class MutableRequestCookiesAdapter {\n static wrap(cookies, onUpdateCookies) {\n const responseCookies = new ResponseCookies(new Headers());\n for (const cookie of cookies.getAll()){\n responseCookies.set(cookie);\n }\n let modifiedValues = [];\n const modifiedCookies = new Set();\n const updateResponseCookies = ()=>{\n // TODO-APP: change method of getting workStore\n const workStore = workAsyncStorage.getStore();\n if (workStore) {\n workStore.pathWasRevalidated = ActionDidRevalidateStaticAndDynamic;\n }\n const allCookies = responseCookies.getAll();\n modifiedValues = allCookies.filter((c)=>modifiedCookies.has(c.name));\n if (onUpdateCookies) {\n const serializedCookies = [];\n for (const cookie of modifiedValues){\n const tempCookies = new ResponseCookies(new Headers());\n tempCookies.set(cookie);\n serializedCookies.push(tempCookies.toString());\n }\n onUpdateCookies(serializedCookies);\n }\n };\n const wrappedCookies = new Proxy(responseCookies, {\n get (target, prop, receiver) {\n switch(prop){\n // A special symbol to get the modified cookie values\n case SYMBOL_MODIFY_COOKIE_VALUES:\n return modifiedValues;\n // TODO: Throw error if trying to set a cookie after the response\n // headers have been set.\n case 'delete':\n return function(...args) {\n modifiedCookies.add(typeof args[0] === 'string' ? args[0] : args[0].name);\n try {\n target.delete(...args);\n return wrappedCookies;\n } finally{\n updateResponseCookies();\n }\n };\n case 'set':\n return function(...args) {\n modifiedCookies.add(typeof args[0] === 'string' ? args[0] : args[0].name);\n try {\n target.set(...args);\n return wrappedCookies;\n } finally{\n updateResponseCookies();\n }\n };\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n return wrappedCookies;\n }\n}\nexport function createCookiesWithMutableAccessCheck(requestStore) {\n const wrappedCookies = new Proxy(requestStore.mutableCookies, {\n get (target, prop, receiver) {\n switch(prop){\n case 'delete':\n return function(...args) {\n ensureCookiesAreStillMutable(requestStore, 'cookies().delete');\n target.delete(...args);\n return wrappedCookies;\n };\n case 'set':\n return function(...args) {\n ensureCookiesAreStillMutable(requestStore, 'cookies().set');\n target.set(...args);\n return wrappedCookies;\n };\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n return wrappedCookies;\n}\nexport function areCookiesMutableInCurrentPhase(requestStore) {\n return requestStore.phase === 'action';\n}\n/** Ensure that cookies() starts throwing on mutation\n * if we changed phases and can no longer mutate.\n *\n * This can happen when going:\n * 'render' -> 'after'\n * 'action' -> 'render'\n * */ function ensureCookiesAreStillMutable(requestStore, _callingExpression) {\n if (!areCookiesMutableInCurrentPhase(requestStore)) {\n // TODO: maybe we can give a more precise error message based on callingExpression?\n throw new ReadonlyRequestCookiesError();\n }\n}\nexport function responseCookiesToRequestCookies(responseCookies) {\n const requestCookies = new RequestCookies(new Headers());\n for (const cookie of responseCookies.getAll()){\n requestCookies.set(cookie);\n }\n return requestCookies;\n}\n\n//# sourceMappingURL=request-cookies.js.map","import { normalizeAppPath } from './app-paths';\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)'\n];\nexport function isInterceptionRouteAppPath(path) {\n // TODO-APP: add more serious validation\n return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined;\n}\nexport function extractInterceptionRouteInformation(path) {\n let interceptingRoute;\n let marker;\n let interceptedRoute;\n for (const segment of path.split('/')){\n marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m));\n if (marker) {\n ;\n [interceptingRoute, interceptedRoute] = path.split(marker, 2);\n break;\n }\n }\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`), \"__NEXT_ERROR_CODE\", {\n value: \"E269\",\n enumerable: false,\n configurable: true\n });\n }\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n ;\n switch(marker){\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`;\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute;\n }\n break;\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), \"__NEXT_ERROR_CODE\", {\n value: \"E207\",\n enumerable: false,\n configurable: true\n });\n }\n interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/');\n break;\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute;\n break;\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n const splitInterceptingRoute = interceptingRoute.split('/');\n if (splitInterceptingRoute.length <= 2) {\n throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), \"__NEXT_ERROR_CODE\", {\n value: \"E486\",\n enumerable: false,\n configurable: true\n });\n }\n interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/');\n break;\n default:\n throw Object.defineProperty(new Error('Invariant: unexpected marker'), \"__NEXT_ERROR_CODE\", {\n value: \"E112\",\n enumerable: false,\n configurable: true\n });\n }\n return {\n interceptingRoute,\n interceptedRoute\n };\n}\n\n//# sourceMappingURL=interception-routes.js.map","import { getLocationOrigin } from '../../utils';\nimport { searchParamsToUrlQuery } from './querystring';\nexport function parseRelativeUrl(url, base, parseQuery = true) {\n const globalBase = new URL(typeof window === 'undefined' ? 'http://n' : getLocationOrigin());\n const resolvedBase = base ? new URL(base, globalBase) : url.startsWith('.') ? new URL(typeof window === 'undefined' ? 'http://n' : window.location.href) : globalBase;\n const { pathname, searchParams, search, hash, href, origin } = url.startsWith('/') ? // See https://nodejs.org/api/http.html#messageurl\n // Not using `origin` to support other protocols\n new URL(`${resolvedBase.protocol}//${resolvedBase.host}${url}`) : new URL(url, resolvedBase);\n if (origin !== globalBase.origin) {\n throw Object.defineProperty(new Error(`invariant: invalid relative URL, router received ${url}`), \"__NEXT_ERROR_CODE\", {\n value: \"E159\",\n enumerable: false,\n configurable: true\n });\n }\n return {\n auth: null,\n host: null,\n hostname: null,\n pathname,\n port: null,\n protocol: null,\n query: parseQuery ? searchParamsToUrlQuery(searchParams) : undefined,\n search,\n hash,\n href: href.slice(origin.length),\n // We don't know for relative URLs at this point since we set a custom, internal\n // base that isn't surfaced to users.\n slashes: null\n };\n}\n\n//# sourceMappingURL=parse-relative-url.js.map","import { INTERCEPTION_ROUTE_MARKERS } from './interception-routes';\n/**\n * Parse dynamic route segment to type of parameter\n */ export function getSegmentParam(segment) {\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker)=>segment.startsWith(marker));\n // if an interception marker is part of the path segment, we need to jump ahead\n // to the relevant portion for param parsing\n if (interceptionMarker) {\n segment = segment.slice(interceptionMarker.length);\n }\n if (segment.startsWith('[[...') && segment.endsWith(']]')) {\n return {\n // TODO-APP: Optional catchall does not currently work with parallel routes,\n // so for now aren't handling a potential interception marker.\n paramType: 'optional-catchall',\n paramName: segment.slice(5, -2)\n };\n }\n if (segment.startsWith('[...') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker ? `catchall-intercepted-${interceptionMarker}` : 'catchall',\n paramName: segment.slice(4, -1)\n };\n }\n if (segment.startsWith('[') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker ? `dynamic-intercepted-${interceptionMarker}` : 'dynamic',\n paramName: segment.slice(1, -1)\n };\n }\n return null;\n}\nexport function isCatchAll(type) {\n return type === 'catchall' || type === 'catchall-intercepted-(..)(..)' || type === 'catchall-intercepted-(.)' || type === 'catchall-intercepted-(..)' || type === 'catchall-intercepted-(...)' || type === 'optional-catchall';\n}\nexport function getParamProperties(paramType) {\n let repeat = false;\n let optional = false;\n switch(paramType){\n case 'catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n repeat = true;\n break;\n case 'optional-catchall':\n repeat = true;\n optional = true;\n break;\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n break;\n default:\n paramType;\n }\n return {\n repeat,\n optional\n };\n}\n\n//# sourceMappingURL=get-segment-param.js.map","import { ReflectAdapter } from './reflect';\n/**\n * @internal\n */ export class ReadonlyHeadersError extends Error {\n constructor(){\n super('Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers');\n }\n static callable() {\n throw new ReadonlyHeadersError();\n }\n}\nexport class HeadersAdapter extends Headers {\n constructor(headers){\n // We've already overridden the methods that would be called, so we're just\n // calling the super constructor to ensure that the instanceof check works.\n super();\n this.headers = new Proxy(headers, {\n get (target, prop, receiver) {\n // Because this is just an object, we expect that all \"get\" operations\n // are for properties. If it's a \"get\" for a symbol, we'll just return\n // the symbol.\n if (typeof prop === 'symbol') {\n return ReflectAdapter.get(target, prop, receiver);\n }\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, return undefined.\n if (typeof original === 'undefined') return;\n // If the original casing exists, return the value.\n return ReflectAdapter.get(target, original, receiver);\n },\n set (target, prop, value, receiver) {\n if (typeof prop === 'symbol') {\n return ReflectAdapter.set(target, prop, value, receiver);\n }\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, use the prop as the key.\n return ReflectAdapter.set(target, original ?? prop, value, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'symbol') return ReflectAdapter.has(target, prop);\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, return false.\n if (typeof original === 'undefined') return false;\n // If the original casing exists, return true.\n return ReflectAdapter.has(target, original);\n },\n deleteProperty (target, prop) {\n if (typeof prop === 'symbol') return ReflectAdapter.deleteProperty(target, prop);\n const lowercased = prop.toLowerCase();\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased);\n // If the original casing doesn't exist, return true.\n if (typeof original === 'undefined') return true;\n // If the original casing exists, delete the property.\n return ReflectAdapter.deleteProperty(target, original);\n }\n });\n }\n /**\n * Seals a Headers instance to prevent modification by throwing an error when\n * any mutating method is called.\n */ static seal(headers) {\n return new Proxy(headers, {\n get (target, prop, receiver) {\n switch(prop){\n case 'append':\n case 'delete':\n case 'set':\n return ReadonlyHeadersError.callable;\n default:\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n });\n }\n /**\n * Merges a header value into a string. This stores multiple values as an\n * array, so we need to merge them into a string.\n *\n * @param value a header value\n * @returns a merged header value (a string)\n */ merge(value) {\n if (Array.isArray(value)) return value.join(', ');\n return value;\n }\n /**\n * Creates a Headers instance from a plain object or a Headers instance.\n *\n * @param headers a plain object or a Headers instance\n * @returns a headers instance\n */ static from(headers) {\n if (headers instanceof Headers) return headers;\n return new HeadersAdapter(headers);\n }\n append(name, value) {\n const existing = this.headers[name];\n if (typeof existing === 'string') {\n this.headers[name] = [\n existing,\n value\n ];\n } else if (Array.isArray(existing)) {\n existing.push(value);\n } else {\n this.headers[name] = value;\n }\n }\n delete(name) {\n delete this.headers[name];\n }\n get(name) {\n const value = this.headers[name];\n if (typeof value !== 'undefined') return this.merge(value);\n return null;\n }\n has(name) {\n return typeof this.headers[name] !== 'undefined';\n }\n set(name, value) {\n this.headers[name] = value;\n }\n forEach(callbackfn, thisArg) {\n for (const [name, value] of this.entries()){\n callbackfn.call(thisArg, value, name, this);\n }\n }\n *entries() {\n for (const key of Object.keys(this.headers)){\n const name = key.toLowerCase();\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(name);\n yield [\n name,\n value\n ];\n }\n }\n *keys() {\n for (const key of Object.keys(this.headers)){\n const name = key.toLowerCase();\n yield name;\n }\n }\n *values() {\n for (const key of Object.keys(this.headers)){\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(key);\n yield value;\n }\n }\n [Symbol.iterator]() {\n return this.entries();\n }\n}\n\n//# sourceMappingURL=headers.js.map","import { RequestCookies } from '../../web/spec-extension/cookies';\nimport { RequestCookiesAdapter } from '../../web/spec-extension/adapters/request-cookies';\nimport { HeadersAdapter } from '../../web/spec-extension/adapters/headers';\nimport { getSegmentParam } from '../../../shared/lib/router/utils/get-segment-param';\nimport { parseRelativeUrl } from '../../../shared/lib/router/utils/parse-relative-url';\nimport { InvariantError } from '../../../shared/lib/invariant-error';\nimport { InstantValidationError } from './instant-validation-error';\nimport { workUnitAsyncStorage } from '../work-unit-async-storage.external';\nimport { wellKnownProperties } from '../../../shared/lib/utils/reflect-utils';\nexport function createValidationSampleTracking() {\n return {\n missingSampleErrors: []\n };\n}\nfunction getExpectedSampleTracking() {\n let validationSampleTracking = null;\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'request':\n case 'validation-client':\n // TODO(instant-validation-build): do we need any special handling for caches?\n validationSampleTracking = workUnitStore.validationSampleTracking ?? null;\n break;\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n case 'prerender':\n case 'prerender-runtime':\n case 'generate-static-params':\n break;\n default:\n workUnitStore;\n }\n }\n if (!validationSampleTracking) {\n throw Object.defineProperty(new InvariantError('Expected to have a workUnitStore that provides validationSampleTracking'), \"__NEXT_ERROR_CODE\", {\n value: \"E1110\",\n enumerable: false,\n configurable: true\n });\n }\n return validationSampleTracking;\n}\nexport function trackMissingSampleError(error) {\n const validationSampleTracking = getExpectedSampleTracking();\n validationSampleTracking.missingSampleErrors.push(error);\n}\nexport function trackMissingSampleErrorAndThrow(error) {\n // TODO(instant-validation-build): this should abort the render\n trackMissingSampleError(error);\n throw error;\n}\n/**\n * Creates ReadonlyRequestCookies from sample cookie data.\n * Accessing a cookie not declared in the sample will throw an error.\n * Cookies with `value: null` are declared (allowed to access) but return no value.\n */ export function createCookiesFromSample(sampleCookies, route) {\n const declaredNames = new Set();\n const cookies = new RequestCookies(new Headers());\n if (sampleCookies) {\n for (const cookie of sampleCookies){\n declaredNames.add(cookie.name);\n if (cookie.value !== null) {\n cookies.set(cookie.name, cookie.value);\n }\n }\n }\n const sealed = RequestCookiesAdapter.seal(cookies);\n return new Proxy(sealed, {\n get (target, prop, receiver) {\n if (prop === 'has') {\n const originalMethod = Reflect.get(target, prop, receiver);\n const wrappedMethod = function(name) {\n if (!declaredNames.has(name)) {\n trackMissingSampleErrorAndThrow(createMissingCookieSampleError(route, name));\n }\n return originalMethod.call(target, name);\n };\n return wrappedMethod;\n }\n if (prop === 'get') {\n const originalMethod = Reflect.get(target, prop, receiver);\n const wrappedMethod = function(nameOrCookie) {\n let name;\n if (typeof nameOrCookie === 'string') {\n name = nameOrCookie;\n } else if (nameOrCookie && typeof nameOrCookie === 'object' && typeof nameOrCookie.name === 'string') {\n name = nameOrCookie.name;\n } else {\n // This is an invalid input. Pass it through to the original method so it can error.\n return originalMethod.call(target, nameOrCookie);\n }\n if (!declaredNames.has(name)) {\n trackMissingSampleErrorAndThrow(createMissingCookieSampleError(route, name));\n }\n return originalMethod.call(target, name);\n };\n return wrappedMethod;\n }\n // TODO(instant-validation-build): what should getAll do?\n // Maybe we should only allow it if there's an array (possibly empty?)\n return Reflect.get(target, prop, receiver);\n }\n });\n}\nfunction createMissingCookieSampleError(route, name) {\n return Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed cookie \"${name}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`cookies\\` array, ` + `or \\`{ name: \"${name}\", value: null }\\` if it should be absent.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1115\",\n enumerable: false,\n configurable: true\n });\n}\n/**\n * Creates ReadonlyHeaders from sample header data.\n * Accessing a header not declared in the sample will throw an error.\n * Headers with `value: null` are declared (allowed to access) but return null.\n */ export function createHeadersFromSample(rawSampleHeaders, sampleCookies, route) {\n // If we have cookie samples, add a `cookie` header to match.\n // Accessing it will be implicitly allowed by the proxy --\n // if the user defined some cookies, accessing the \"cookie\" header is also fine.\n const sampleHeaders = rawSampleHeaders ? [\n ...rawSampleHeaders\n ] : [];\n if (sampleHeaders.find(([name])=>name.toLowerCase() === 'cookie')) {\n throw Object.defineProperty(new InstantValidationError('Invalid sample: Defining cookies via a \"cookie\" header is not supported. Use `cookies: [{ name: ..., value: ... }]` instead.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1111\",\n enumerable: false,\n configurable: true\n });\n }\n if (sampleCookies) {\n const cookieHeaderValue = sampleCookies.toString();\n sampleHeaders.push([\n 'cookie',\n // if the `cookies` samples were empty, or they were all `null`, then we have no cookies,\n // and the header isn't present, but should remains readable, so we set it to null.\n cookieHeaderValue !== '' ? cookieHeaderValue : null\n ]);\n }\n const declaredNames = new Set();\n const headersInit = {};\n for (const [name, value] of sampleHeaders){\n declaredNames.add(name.toLowerCase());\n if (value !== null) {\n headersInit[name.toLowerCase()] = value;\n }\n }\n const sealed = HeadersAdapter.seal(HeadersAdapter.from(headersInit));\n return new Proxy(sealed, {\n get (target, prop, receiver) {\n if (prop === 'get' || prop === 'has') {\n const originalMethod = Reflect.get(target, prop, receiver);\n const patchedMethod = function(rawName) {\n const name = rawName.toLowerCase();\n if (!declaredNames.has(name)) {\n trackMissingSampleErrorAndThrow(Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed header \"${name}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`headers\\` array, ` + `or \\`[\"${name}\", null]\\` if it should be absent.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1116\",\n enumerable: false,\n configurable: true\n }));\n }\n // typescript can't reconcile a union of functions with a union of return types,\n // so we have to cast the original return type away\n return originalMethod.call(target, name);\n };\n return patchedMethod;\n }\n return Reflect.get(target, prop, receiver);\n }\n });\n}\n/**\n * Creates a DraftModeProvider that always returns isEnabled: false.\n */ export function createDraftModeForValidation() {\n // Create a minimal DraftModeProvider-compatible object\n // that always reports draft mode as disabled.\n //\n // private properties that can't be set from outside the class.\n return {\n get isEnabled () {\n return false;\n },\n enable () {\n throw Object.defineProperty(new Error('Draft mode cannot be enabled during build-time instant validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1092\",\n enumerable: false,\n configurable: true\n });\n },\n disable () {\n throw Object.defineProperty(new Error('Draft mode cannot be disabled during build-time instant validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1094\",\n enumerable: false,\n configurable: true\n });\n }\n };\n}\n/**\n * Creates params wrapped with an exhaustive proxy.\n * Accessing a param not declared in the sample will throw an error.\n */ export function createExhaustiveParamsProxy(underlyingParams, declaredParamNames, route) {\n return new Proxy(underlyingParams, {\n get (target, prop, receiver) {\n if (typeof prop === 'string' && !wellKnownProperties.has(prop) && // Only error when accessing a param that is part of the route but wasn't provided.\n // accessing properties that aren't expected to be a valid param value is fine.\n prop in underlyingParams && !declaredParamNames.has(prop)) {\n trackMissingSampleErrorAndThrow(Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed param \"${prop}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`params\\` object.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1095\",\n enumerable: false,\n configurable: true\n }));\n }\n return Reflect.get(target, prop, receiver);\n }\n });\n}\n/**\n * Creates searchParams wrapped with an exhaustive proxy.\n * Accessing a searchParam not declared in the sample will throw an error.\n * A searchParam with `value: undefined` means \"declared but absent\" (allowed to access, returns undefined).\n */ export function createExhaustiveSearchParamsProxy(searchParams, declaredSearchParamNames, route) {\n return new Proxy(searchParams, {\n get (target, prop, receiver) {\n if (typeof prop === 'string' && !wellKnownProperties.has(prop) && !declaredSearchParamNames.has(prop)) {\n trackMissingSampleErrorAndThrow(createMissingSearchParamSampleError(route, prop));\n }\n return Reflect.get(target, prop, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'string' && !wellKnownProperties.has(prop) && !declaredSearchParamNames.has(prop)) {\n trackMissingSampleErrorAndThrow(createMissingSearchParamSampleError(route, prop));\n }\n return Reflect.has(target, prop);\n }\n });\n}\n/**\n * Wraps a URLSearchParams (or subclass like ReadonlyURLSearchParams) with an\n * exhaustive proxy. Accessing a search param not declared in the sample via\n * get/getAll/has will throw an error.\n */ export function createExhaustiveURLSearchParamsProxy(searchParams, declaredSearchParamNames, route) {\n return new Proxy(searchParams, {\n get (target, prop, receiver) {\n // Intercept method calls that access specific param names\n if (prop === 'get' || prop === 'getAll' || prop === 'has') {\n const originalMathod = Reflect.get(target, prop, receiver);\n return (name)=>{\n if (typeof name === 'string' && !declaredSearchParamNames.has(name)) {\n trackMissingSampleErrorAndThrow(createMissingSearchParamSampleError(route, name));\n }\n return originalMathod.call(target, name);\n };\n }\n const value = Reflect.get(target, prop, receiver);\n // Prevent `TypeError: Value of \"this\" must be of type URLSearchParams` for methods\n if (typeof value === 'function' && !Object.hasOwn(target, prop)) {\n return value.bind(target);\n }\n return value;\n }\n });\n}\nfunction createMissingSearchParamSampleError(route, name) {\n return Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed searchParam \"${name}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`searchParams\\` object, ` + `or \\`{ \"${name}\": null }\\` if it should be absent.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1098\",\n enumerable: false,\n configurable: true\n });\n}\nexport function createRelativeURLFromSamples(route, sampleParams, sampleSearchParams) {\n // Build searchParams query object and URL search string from sample\n const pathname = createPathnameFromRouteAndSampleParams(route, sampleParams ?? {});\n let search = '';\n if (sampleSearchParams) {\n const qs = createURLSearchParamsFromSample(sampleSearchParams).toString();\n if (qs) {\n search = '?' + qs;\n }\n }\n return parseRelativeUrl(pathname + search, undefined, true);\n}\nfunction createURLSearchParamsFromSample(sampleSearchParams) {\n const result = new URLSearchParams();\n if (sampleSearchParams) {\n for (const [key, value] of Object.entries(sampleSearchParams)){\n if (value === null || value === undefined) continue;\n if (Array.isArray(value)) {\n for (const v of value){\n result.append(key, v);\n }\n } else {\n result.set(key, value);\n }\n }\n }\n return result;\n}\n/**\n * Substitute sample params into `workStore.route` to create a plausible pathname.\n * TODO(instant-validation-build): this logic is somewhat hacky and likely incomplete,\n * but it should be good enough for some initial testing.\n */ function createPathnameFromRouteAndSampleParams(route, params) {\n let interpolatedSegments = [];\n const rawSegments = route.split('/');\n for (const rawSegment of rawSegments){\n const param = getSegmentParam(rawSegment);\n if (param) {\n switch(param.paramType){\n case 'catchall':\n case 'optional-catchall':\n {\n let paramValue = params[param.paramName];\n if (paramValue === undefined) {\n // The value for the param was not provided. `usePathname` will detect this and throw\n // before this can surface to userspace. Use `[...NAME]` as a placeholder for the param value\n // in case it pops up somewhere unexpectedly.\n paramValue = [\n rawSegment\n ];\n } else if (!Array.isArray(paramValue)) {\n // NOTE: this happens outside of render, so we don't need `trackMissingSampleErrorAndThrow`\n throw Object.defineProperty(new InstantValidationError(`Expected sample param value for segment '${rawSegment}' to be an array of strings, got ${typeof paramValue}`), \"__NEXT_ERROR_CODE\", {\n value: \"E1104\",\n enumerable: false,\n configurable: true\n });\n }\n interpolatedSegments.push(...paramValue.map((v)=>encodeURIComponent(v)));\n break;\n }\n case 'dynamic':\n {\n let paramValue = params[param.paramName];\n if (paramValue === undefined) {\n // The value for the param was not provided. `usePathname` will detect this and throw\n // before this can surface to userspace. Use `[NAME]` as a placeholder for the param value\n // in case it pops up somewhere unexpectedly.\n paramValue = rawSegment;\n } else if (typeof paramValue !== 'string') {\n // NOTE: this happens outside of render, so we don't need `trackMissingSampleErrorAndThrow`\n throw Object.defineProperty(new InstantValidationError(`Expected sample param value for segment '${rawSegment}' to be a string, got ${typeof paramValue}`), \"__NEXT_ERROR_CODE\", {\n value: \"E1108\",\n enumerable: false,\n configurable: true\n });\n }\n interpolatedSegments.push(encodeURIComponent(paramValue));\n break;\n }\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n {\n // TODO(instant-validation-build): i don't know how these are supposed to work, or if we can even get them here\n throw Object.defineProperty(new InvariantError('Not implemented: Validation of interception routes'), \"__NEXT_ERROR_CODE\", {\n value: \"E1106\",\n enumerable: false,\n configurable: true\n });\n }\n default:\n {\n param.paramType;\n }\n }\n } else {\n interpolatedSegments.push(rawSegment);\n }\n }\n return interpolatedSegments.join('/');\n}\nexport function assertRootParamInSamples(workStore, sampleParams, paramName) {\n if (sampleParams && paramName in sampleParams) {\n // The param is defined in the samples.\n } else {\n const route = workStore.route;\n trackMissingSampleErrorAndThrow(Object.defineProperty(new InstantValidationError(`Route \"${route}\" accessed root param \"${paramName}\" which is not defined in the \\`samples\\` ` + `of \\`unstable_instant\\`. Add it to the sample's \\`params\\` object.`), \"__NEXT_ERROR_CODE\", {\n value: \"E1114\",\n enumerable: false,\n configurable: true\n }));\n }\n}\n\n//# sourceMappingURL=instant-samples.js.map","import { StaticGenBailoutError } from '../../client/components/static-generation-bailout';\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external';\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(route, expression) {\n throw Object.defineProperty(new StaticGenBailoutError(`Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), \"__NEXT_ERROR_CODE\", {\n value: \"E543\",\n enumerable: false,\n configurable: true\n });\n}\nexport function throwForSearchParamsAccessInUseCache(workStore, constructorOpt) {\n const error = Object.defineProperty(new Error(`Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`), \"__NEXT_ERROR_CODE\", {\n value: \"E842\",\n enumerable: false,\n configurable: true\n });\n Error.captureStackTrace(error, constructorOpt);\n workStore.invalidDynamicUsageError ??= error;\n throw error;\n}\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore();\n return (afterTaskStore == null ? void 0 : afterTaskStore.rootTaskSpawnPhase) === 'action';\n}\n\n//# sourceMappingURL=utils.js.map","import { workAsyncStorage } from '../app-render/work-async-storage.external';\nimport { createVaryingSearchParams, getMetadataVaryParamsAccumulator } from '../app-render/vary-params';\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect';\nimport { throwToInterruptStaticGeneration, postponeWithTracking, annotateDynamicAccess } from '../app-render/dynamic-rendering';\nimport { workUnitAsyncStorage, throwInvariantForMissingStore } from '../app-render/work-unit-async-storage.external';\nimport { InvariantError } from '../../shared/lib/invariant-error';\nimport { makeDevtoolsIOAwarePromise, makeHangingPromise } from '../dynamic-rendering-utils';\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger';\nimport { describeStringPropertyAccess, describeHasCheckingStringProperty, wellKnownProperties } from '../../shared/lib/utils/reflect-utils';\nimport { throwWithStaticGenerationBailoutErrorWithDynamicError, throwForSearchParamsAccessInUseCache } from './utils';\nimport { RenderStage } from '../app-render/staged-rendering';\nexport function createSearchParamsFromClient(underlyingSearchParams) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore);\n case 'validation-client':\n {\n return createClientSearchParamsInValidation(underlyingSearchParams, workStore, workUnitStore);\n }\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError('createSearchParamsFromClient should not be called in a runtime prerender.'), \"__NEXT_ERROR_CODE\", {\n value: \"E769\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createSearchParamsFromClient should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E739\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createSearchParamsFromClient should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1133\",\n enumerable: false,\n configurable: true\n });\n case 'request':\n // Client searchParams are not runtime prefetchable\n const isRuntimePrefetchable = false;\n return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore, isRuntimePrefetchable);\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerSearchParamsForMetadata(underlyingSearchParams, isRuntimePrefetchable) {\n const metadataVaryParamsAccumulator = getMetadataVaryParamsAccumulator();\n return createServerSearchParamsForServerPage(underlyingSearchParams, metadataVaryParamsAccumulator, isRuntimePrefetchable);\n}\nexport function createServerSearchParamsForServerPage(underlyingSearchParams, varyParamsAccumulator, isRuntimePrefetchable) {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore);\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createServerSearchParamsForServerPage should not be called in a client validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1066\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createServerSearchParamsForServerPage should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E747\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createServerSearchParamsForServerPage should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1128\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n return createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore, varyParamsAccumulator, isRuntimePrefetchable);\n case 'request':\n return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore, isRuntimePrefetchable);\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nexport function createPrerenderSearchParamsForClientPage() {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({});\n }\n const workUnitStore = workUnitAsyncStorage.getStore();\n if (workUnitStore) {\n switch(workUnitStore.type){\n case 'prerender':\n case 'prerender-client':\n // We're prerendering in a mode that aborts (cacheComponents) and should stall\n // the promise to ensure the RSC side is considered dynamic\n return makeHangingPromise(workUnitStore.renderSignal, workStore.route, '`searchParams`');\n case 'validation-client':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called in a client validation.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1061\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-runtime':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'), \"__NEXT_ERROR_CODE\", {\n value: \"E768\",\n enumerable: false,\n configurable: true\n });\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called in cache contexts.'), \"__NEXT_ERROR_CODE\", {\n value: \"E746\",\n enumerable: false,\n configurable: true\n });\n case 'generate-static-params':\n throw Object.defineProperty(new InvariantError('createPrerenderSearchParamsForClientPage should not be called inside generateStaticParams.'), \"__NEXT_ERROR_CODE\", {\n value: \"E1124\",\n enumerable: false,\n configurable: true\n });\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n return Promise.resolve({});\n default:\n workUnitStore;\n }\n }\n throwInvariantForMissingStore();\n}\nfunction createStaticPrerenderSearchParams(workStore, prerenderStore) {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({});\n }\n switch(prerenderStore.type){\n case 'prerender':\n case 'prerender-client':\n // We are in a cacheComponents (PPR or otherwise) prerender\n return makeHangingSearchParams(workStore, prerenderStore);\n case 'prerender-ppr':\n case 'prerender-legacy':\n // We are in a legacy static generation and need to interrupt the\n // prerender when search params are accessed.\n return makeErroringSearchParams(workStore, prerenderStore);\n default:\n return prerenderStore;\n }\n}\nfunction createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore, varyParamsAccumulator, isRuntimePrefetchable) {\n const underlyingSearchParamsWithVarying = varyParamsAccumulator !== null ? createVaryingSearchParams(varyParamsAccumulator, underlyingSearchParams) : underlyingSearchParams;\n const result = makeUntrackedSearchParams(underlyingSearchParamsWithVarying);\n const { stagedRendering } = workUnitStore;\n if (!stagedRendering) {\n return result;\n }\n const stage = isRuntimePrefetchable ? RenderStage.EarlyRuntime : RenderStage.Runtime;\n return stagedRendering.waitForStage(stage).then(()=>result);\n}\nfunction createRenderSearchParams(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable) {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({});\n } else {\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable);\n } else if (requestStore.asyncApiPromises) {\n if (requestStore.validationSamples) {\n const { createExhaustiveSearchParamsProxy } = require('../app-render/instant-validation/instant-samples');\n const declaredKeys = new Set(Object.keys(requestStore.validationSamples.searchParams ?? {}));\n underlyingSearchParams = createExhaustiveSearchParamsProxy(underlyingSearchParams, declaredKeys, workStore.route);\n }\n return (isRuntimePrefetchable ? requestStore.asyncApiPromises.earlySharedSearchParamsParent : requestStore.asyncApiPromises.sharedSearchParamsParent).then(()=>underlyingSearchParams);\n } else {\n return makeUntrackedSearchParams(underlyingSearchParams);\n }\n }\n}\nconst CachedSearchParams = new WeakMap();\nconst CachedSearchParamsForUseCache = new WeakMap();\nfunction makeHangingSearchParams(workStore, prerenderStore) {\n const cachedSearchParams = CachedSearchParams.get(prerenderStore);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = makeHangingPromise(prerenderStore.renderSignal, workStore.route, '`searchParams`');\n const proxiedPromise = new Proxy(promise, {\n get (target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver);\n }\n switch(prop){\n case 'then':\n {\n const expression = '`await searchParams`, `searchParams.then`, or similar';\n annotateDynamicAccess(expression, prerenderStore);\n return ReflectAdapter.get(target, prop, receiver);\n }\n case 'status':\n {\n const expression = '`use(searchParams)`, `searchParams.status`, or similar';\n annotateDynamicAccess(expression, prerenderStore);\n return ReflectAdapter.get(target, prop, receiver);\n }\n default:\n {\n return ReflectAdapter.get(target, prop, receiver);\n }\n }\n }\n });\n CachedSearchParams.set(prerenderStore, proxiedPromise);\n return proxiedPromise;\n}\nfunction makeErroringSearchParams(workStore, prerenderStore) {\n const cachedSearchParams = CachedSearchParams.get(workStore);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const underlyingSearchParams = {};\n // For search params we don't construct a ReactPromise because we want to interrupt\n // rendering on any property access that was not set from outside and so we only want\n // to have properties like value and status if React sets them.\n const promise = Promise.resolve(underlyingSearchParams);\n const proxiedPromise = new Proxy(promise, {\n get (target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver);\n }\n if (typeof prop === 'string' && prop === 'then') {\n const expression = '`await searchParams`, `searchParams.then`, or similar';\n if (workStore.dynamicShouldError) {\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n } else if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(workStore.route, expression, prerenderStore.dynamicTracking);\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(expression, workStore, prerenderStore);\n }\n }\n return ReflectAdapter.get(target, prop, receiver);\n }\n });\n CachedSearchParams.set(workStore, proxiedPromise);\n return proxiedPromise;\n}\n/**\n * This is a variation of `makeErroringSearchParams` that always throws an\n * error on access, because accessing searchParams inside of `\"use cache\"` is\n * not allowed.\n */ export function makeErroringSearchParamsForUseCache() {\n const workStore = workAsyncStorage.getStore();\n if (!workStore) {\n throw Object.defineProperty(new InvariantError('Expected workStore to be initialized'), \"__NEXT_ERROR_CODE\", {\n value: \"E1068\",\n enumerable: false,\n configurable: true\n });\n }\n const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = Promise.resolve({});\n const proxiedPromise = new Proxy(promise, {\n get: function get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it. We know it\n // isn't a dynamic access because it can only be something that was\n // previously written to the promise and thus not an underlying\n // searchParam value\n return ReflectAdapter.get(target, prop, receiver);\n }\n if (typeof prop === 'string' && (prop === 'then' || !wellKnownProperties.has(prop))) {\n throwForSearchParamsAccessInUseCache(workStore, get);\n }\n return ReflectAdapter.get(target, prop, receiver);\n }\n });\n CachedSearchParamsForUseCache.set(workStore, proxiedPromise);\n return proxiedPromise;\n}\nfunction makeUntrackedSearchParams(underlyingSearchParams) {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = Promise.resolve(underlyingSearchParams);\n CachedSearchParams.set(underlyingSearchParams, promise);\n return promise;\n}\nfunction makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable) {\n if (requestStore.asyncApiPromises) {\n // Do not cache the resulting promise. If we do, we'll only show the first \"awaited at\"\n // across all segments that receive searchParams.\n return makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable);\n } else {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams);\n if (cachedSearchParams) {\n return cachedSearchParams;\n }\n const promise = makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable);\n CachedSearchParams.set(requestStore, promise);\n return promise;\n }\n}\nfunction makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore, isRuntimePrefetchable) {\n const promiseInitialized = {\n current: false\n };\n const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized);\n let promise;\n if (requestStore.asyncApiPromises) {\n // We wrap each instance of searchParams in a `new Promise()`.\n // This is important when all awaits are in third party which would otherwise\n // track all the way to the internal params.\n const sharedSearchParamsParent = isRuntimePrefetchable ? requestStore.asyncApiPromises.earlySharedSearchParamsParent : requestStore.asyncApiPromises.sharedSearchParamsParent;\n promise = new Promise((resolve, reject)=>{\n sharedSearchParamsParent.then(()=>resolve(proxiedUnderlying), reject);\n });\n // @ts-expect-error\n promise.displayName = 'searchParams';\n } else {\n promise = makeDevtoolsIOAwarePromise(proxiedUnderlying, requestStore, RenderStage.Runtime);\n }\n promise.then(()=>{\n promiseInitialized.current = true;\n }, // If we're in staged rendering, this promise will reject if the render\n // is aborted before it can reach the runtime stage.\n // In that case, we have to prevent an unhandled rejection from the promise\n // created by this `.then()` call.\n // This does not affect the `promiseInitialized` logic above,\n // because `proxiedUnderlying` will not be used to resolve the promise,\n // so there's no risk of any of its properties being accessed and triggering\n // an undesireable warning.\n ignoreReject);\n return instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore);\n}\nfunction ignoreReject() {}\nfunction instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized) {\n // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying\n // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender\n // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking\n // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger\n // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce\n // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise.\n return new Proxy(underlyingSearchParams, {\n get (target, prop, receiver) {\n if (typeof prop === 'string' && promiseInitialized.current) {\n if (workStore.dynamicShouldError) {\n const expression = describeStringPropertyAccess('searchParams', prop);\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n }\n return ReflectAdapter.get(target, prop, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'string') {\n if (workStore.dynamicShouldError) {\n const expression = describeHasCheckingStringProperty('searchParams', prop);\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n }\n return Reflect.has(target, prop);\n },\n ownKeys (target) {\n if (workStore.dynamicShouldError) {\n const expression = '`{...searchParams}`, `Object.keys(searchParams)`, or similar';\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n return Reflect.ownKeys(target);\n }\n });\n}\nfunction instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set();\n Object.keys(underlyingSearchParams).forEach((prop)=>{\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop);\n }\n });\n return new Proxy(promise, {\n get (target, prop, receiver) {\n if (prop === 'then' && workStore.dynamicShouldError) {\n const expression = '`searchParams.then`';\n throwWithStaticGenerationBailoutErrorWithDynamicError(workStore.route, expression);\n }\n if (typeof prop === 'string') {\n if (!wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)) {\n const expression = describeStringPropertyAccess('searchParams', prop);\n warnForSyncAccess(workStore.route, expression);\n }\n }\n return ReflectAdapter.get(target, prop, receiver);\n },\n set (target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop);\n }\n return Reflect.set(target, prop, value, receiver);\n },\n has (target, prop) {\n if (typeof prop === 'string') {\n if (!wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)) {\n const expression = describeHasCheckingStringProperty('searchParams', prop);\n warnForSyncAccess(workStore.route, expression);\n }\n }\n return Reflect.has(target, prop);\n },\n ownKeys (target) {\n const expression = '`Object.keys(searchParams)` or similar';\n warnForSyncAccess(workStore.route, expression);\n return Reflect.ownKeys(target);\n }\n });\n}\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(createSearchAccessError);\nfunction createSearchAccessError(route, expression) {\n const prefix = route ? `Route \"${route}\" ` : 'This route ';\n return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\\`searchParams\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), \"__NEXT_ERROR_CODE\", {\n value: \"E848\",\n enumerable: false,\n configurable: true\n });\n}\nfunction createClientSearchParamsInValidation(underlyingSearchParams, workStore, workUnitStore) {\n var _workUnitStore_validationSamples;\n const { createExhaustiveSearchParamsProxy } = require('../app-render/instant-validation/instant-samples');\n const declaredKeys = new Set(Object.keys(((_workUnitStore_validationSamples = workUnitStore.validationSamples) == null ? void 0 : _workUnitStore_validationSamples.searchParams) ?? {}));\n underlyingSearchParams = createExhaustiveSearchParamsProxy(underlyingSearchParams, declaredKeys, workStore.route);\n return Promise.resolve(underlyingSearchParams);\n}\n\n//# sourceMappingURL=search-params.js.map","import {\n workAsyncStorage,\n type WorkStore,\n} from '../app-render/work-async-storage.external'\nimport type { OpaqueFallbackRouteParams } from './fallback-params'\nimport type { VaryParamsAccumulator } from '../app-render/vary-params'\nimport {\n createVaryingParams,\n getMetadataVaryParamsAccumulator,\n} from '../app-render/vary-params'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStorePPR,\n type PrerenderStoreLegacy,\n type StaticPrerenderStoreModern,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type PrerenderStoreModernRuntime,\n type RequestStore,\n type ValidationStoreClient,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n describeStringPropertyAccess,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport { dynamicAccessAsyncStorage } from '../app-render/dynamic-access-async-storage.external'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type ParamValue = string | Array | undefined\nexport type Params = Record\n\nexport function createParamsFromClient(\n underlyingParams: Params\n): Promise {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError('Expected workStore to be initialized')\n }\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n // Client params don't need additional vary tracking because by the\n // time they reach the client, the access would have already been\n // tracked by the server.\n const varyParamsAccumulator = null\n return createStaticPrerenderParams(\n underlyingParams,\n null,\n workStore,\n workUnitStore,\n varyParamsAccumulator\n )\n case 'validation-client':\n return createClientParamsInInstantValidation(\n underlyingParams,\n workStore,\n workUnitStore.validationSamples\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createParamsFromClient should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createParamsFromClient should not be called in a runtime prerender.'\n )\n case 'generate-static-params':\n throw new InvariantError(\n 'createParamsFromClient should not be called inside generateStaticParams.'\n )\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const fallbackParams = workUnitStore.fallbackParams\n // Client params are not runtime prefetchable\n const isRuntimePrefetchable = false\n return createRenderParamsInDev(\n underlyingParams,\n fallbackParams,\n workStore,\n workUnitStore,\n isRuntimePrefetchable\n )\n } else if (workUnitStore.validationSamples) {\n return createClientParamsInInstantValidation(\n underlyingParams,\n workStore,\n workUnitStore.validationSamples\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport type CreateServerParamsForMetadata = typeof createServerParamsForMetadata\nexport function createServerParamsForMetadata(\n underlyingParams: Params,\n optionalCatchAllParamName: string | null,\n isRuntimePrefetchable: boolean\n): Promise {\n const metadataVaryParamsAccumulator = getMetadataVaryParamsAccumulator()\n return createServerParamsForServerSegment(\n underlyingParams,\n optionalCatchAllParamName,\n metadataVaryParamsAccumulator,\n isRuntimePrefetchable\n )\n}\n\n// routes always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerParamsForRoute(\n underlyingParams: Params,\n varyParamsAccumulator: VaryParamsAccumulator | null = null\n): Promise {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError('Expected workStore to be initialized')\n }\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n null,\n workStore,\n workUnitStore,\n varyParamsAccumulator\n )\n case 'prerender-client':\n case 'validation-client':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called in client contexts.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called in cache contexts.'\n )\n case 'generate-static-params':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called inside generateStaticParams.'\n )\n case 'prerender-runtime': {\n // Route params are not runtime prefetchable\n const isRuntimePrefetchable = false\n return createRuntimePrerenderParams(\n underlyingParams,\n null,\n workUnitStore,\n varyParamsAccumulator,\n isRuntimePrefetchable\n )\n }\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const fallbackParams = workUnitStore.fallbackParams\n // Route params are not runtime prefetchable\n const isRuntimePrefetchable = false\n return createRenderParamsInDev(\n underlyingParams,\n fallbackParams,\n workStore,\n workUnitStore,\n isRuntimePrefetchable\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createServerParamsForServerSegment(\n underlyingParams: Params,\n optionalCatchAllParamName: string | null,\n varyParamsAccumulator: VaryParamsAccumulator | null,\n isRuntimePrefetchable: boolean\n): Promise {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError('Expected workStore to be initialized')\n }\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n optionalCatchAllParamName,\n workStore,\n workUnitStore,\n varyParamsAccumulator\n )\n case 'validation-client':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called in client contexts.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called in cache contexts.'\n )\n case 'generate-static-params':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called inside generateStaticParams.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(\n underlyingParams,\n optionalCatchAllParamName,\n workUnitStore,\n varyParamsAccumulator,\n isRuntimePrefetchable\n )\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const fallbackParams = workUnitStore.fallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n fallbackParams,\n workStore,\n workUnitStore,\n isRuntimePrefetchable\n )\n } else if (\n workUnitStore.asyncApiPromises &&\n workUnitStore.validationSamples\n ) {\n return createServerParamsInInstantValidation(\n underlyingParams,\n workStore,\n workUnitStore.validationSamples,\n workUnitStore.asyncApiPromises,\n isRuntimePrefetchable\n )\n } else if (\n workUnitStore.asyncApiPromises &&\n hasFallbackRouteParams(underlyingParams, workUnitStore.fallbackParams)\n ) {\n return (\n isRuntimePrefetchable\n ? workUnitStore.asyncApiPromises.earlySharedParamsParent\n : workUnitStore.asyncApiPromises.sharedParamsParent\n ).then(() => underlyingParams)\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderParamsForClientSegment(\n underlyingParams: Params\n): Promise {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError(\n 'Missing workStore in createPrerenderParamsForClientSegment'\n )\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams) {\n for (let key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`params`'\n )\n }\n }\n }\n break\n case 'validation-client':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called in validation contexts.'\n )\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called in cache contexts.'\n )\n case 'generate-static-params':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called inside generateStaticParams.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'prerender-runtime':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n // We're prerendering in a mode that does not abort. We resolve the promise without\n // any tracking because we're just transporting a value from server to client where the tracking\n // will be applied.\n return Promise.resolve(underlyingParams)\n}\n\nfunction createStaticPrerenderParams(\n underlyingParams: Params,\n optionalCatchAllParamName: string | null,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore,\n varyParamsAccumulator: VaryParamsAccumulator | null\n): Promise {\n const underlyingParamsWithVarying =\n varyParamsAccumulator !== null\n ? createVaryingParams(\n varyParamsAccumulator,\n underlyingParams,\n optionalCatchAllParamName\n )\n : underlyingParams\n\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingParams(\n underlyingParamsWithVarying,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n return makeErroringParams(\n underlyingParamsWithVarying,\n fallbackParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n return makeUntrackedParams(underlyingParamsWithVarying)\n}\n\nfunction createRuntimePrerenderParams(\n underlyingParams: Params,\n optionalCatchAllParamName: string | null,\n workUnitStore: PrerenderStoreModernRuntime,\n varyParamsAccumulator: VaryParamsAccumulator | null,\n isRuntimePrefetchable: boolean\n): Promise {\n const underlyingParamsWithVarying =\n varyParamsAccumulator !== null\n ? createVaryingParams(\n varyParamsAccumulator,\n underlyingParams,\n optionalCatchAllParamName\n )\n : underlyingParams\n\n const result = makeUntrackedParams(underlyingParamsWithVarying)\n const { stagedRendering } = workUnitStore\n if (!stagedRendering) {\n return result\n }\n const stage = isRuntimePrefetchable\n ? RenderStage.EarlyRuntime\n : RenderStage.Runtime\n return stagedRendering.waitForStage(stage).then(() => result)\n}\n\nfunction hasFallbackRouteParams(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams | null | undefined\n): boolean {\n if (fallbackParams) {\n for (let key in underlyingParams) {\n if (fallbackParams.has(key)) {\n return true\n }\n }\n }\n return false\n}\n\nfunction createServerParamsInInstantValidation(\n underlyingParams: Params,\n workStore: WorkStore,\n validationSamples: NonNullable,\n asyncApiPromises: NonNullable,\n isRuntimePrefetchable: boolean\n): Promise {\n const { createExhaustiveParamsProxy } =\n require('../app-render/instant-validation/instant-samples') as typeof import('../app-render/instant-validation/instant-samples')\n const declaredParams = new Set(Object.keys(validationSamples.params ?? {}))\n const proxiedUnderlying = createExhaustiveParamsProxy(\n underlyingParams,\n declaredParams,\n workStore.route\n )\n return (\n isRuntimePrefetchable\n ? asyncApiPromises.earlySharedParamsParent\n : asyncApiPromises.sharedParamsParent\n ).then(() => proxiedUnderlying)\n}\n\nfunction createClientParamsInInstantValidation(\n underlyingParams: Params,\n workStore: WorkStore,\n validationSamples: ValidationStoreClient['validationSamples']\n): Promise {\n const { createExhaustiveParamsProxy } =\n require('../app-render/instant-validation/instant-samples') as typeof import('../app-render/instant-validation/instant-samples')\n const declaredParams = new Set(Object.keys(validationSamples?.params ?? {}))\n const proxiedUnderlying = createExhaustiveParamsProxy(\n underlyingParams,\n declaredParams,\n workStore.route\n )\n return Promise.resolve(proxiedUnderlying)\n}\n\nfunction createRenderParamsInProd(underlyingParams: Params): Promise {\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRenderParamsInDev(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams | null | undefined,\n workStore: WorkStore,\n requestStore: RequestStore,\n isRuntimePrefetchable: boolean\n): Promise {\n return makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams,\n hasFallbackRouteParams(underlyingParams, fallbackParams),\n workStore,\n requestStore,\n isRuntimePrefetchable\n )\n}\n\ninterface CacheLifetime {}\nconst CachedParams = new WeakMap>()\n\nconst fallbackParamsProxyHandler: ProxyHandler> = {\n get: function get(target, prop, receiver) {\n if (prop === 'then' || prop === 'catch' || prop === 'finally') {\n const originalMethod = ReflectAdapter.get(target, prop, receiver)\n\n return {\n [prop]: (...args: unknown[]) => {\n const store = dynamicAccessAsyncStorage.getStore()\n\n if (store) {\n store.abortController.abort(\n new Error(`Accessed fallback \\`params\\` during prerendering.`)\n )\n }\n\n return new Proxy(\n originalMethod.apply(target, args),\n fallbackParamsProxyHandler\n )\n },\n }[prop]\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n}\n\nfunction makeHangingParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStoreModern\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = new Proxy(\n makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`params`'\n ),\n fallbackParamsProxyHandler\n )\n\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeErroringParams(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams,\n workStore: WorkStore,\n prerenderStore: PrerenderStorePPR | PrerenderStoreLegacy\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const augmentedUnderlying = { ...underlyingParams }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(augmentedUnderlying)\n CachedParams.set(underlyingParams, promise)\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n if (fallbackParams.has(prop)) {\n Object.defineProperty(augmentedUnderlying, prop, {\n get() {\n const expression = describeStringPropertyAccess('params', prop)\n // In most dynamic APIs we also throw if `dynamic = \"error\"` however\n // for params is only dynamic when we're generating a fallback shell\n // and even when `dynamic = \"error\"` we still support generating dynamic\n // fallback shells\n // TODO remove this comment when cacheComponents is the default since there\n // will be no `dynamic = \"error\"`\n if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n },\n enumerable: true,\n })\n }\n }\n })\n\n return promise\n}\n\nfunction makeUntrackedParams(underlyingParams: Params): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = Promise.resolve(underlyingParams)\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams: Params,\n hasFallbackParams: boolean,\n workStore: WorkStore,\n requestStore: RequestStore,\n isRuntimePrefetchable: boolean\n): Promise {\n if (requestStore.asyncApiPromises && hasFallbackParams) {\n // We wrap each instance of params in a `new Promise()`, because deduping\n // them across requests doesn't work anyway and this let us show each\n // await a different set of values. This is important when all awaits\n // are in third party which would otherwise track all the way to the\n // internal params.\n const sharedParamsParent = isRuntimePrefetchable\n ? requestStore.asyncApiPromises.earlySharedParamsParent\n : requestStore.asyncApiPromises.sharedParamsParent\n const promise: Promise = new Promise((resolve, reject) => {\n sharedParamsParent.then(() => resolve(underlyingParams), reject)\n })\n // @ts-expect-error\n promise.displayName = 'params'\n return instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n }\n\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = hasFallbackParams\n ? makeDevtoolsIOAwarePromise(\n underlyingParams,\n requestStore,\n RenderStage.Runtime\n )\n : // We don't want to force an environment transition when this params is not part of the fallback params set\n Promise.resolve(underlyingParams)\n\n const proxiedPromise = instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n CachedParams.set(underlyingParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction instrumentParamsPromiseWithDevWarnings(\n underlyingParams: Params,\n promise: Promise,\n workStore: WorkStore\n): Promise {\n // Track which properties we should warn for.\n const proxiedProperties = new Set()\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n // We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)\n ) {\n const expression = describeStringPropertyAccess('params', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return ReflectAdapter.set(target, prop, value, receiver)\n },\n ownKeys(target) {\n const expression = '`...params` or similar expression'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createParamsAccessError\n)\n\nfunction createParamsAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n","'use client'\n\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\nimport { urlSearchParamsToParsedUrlQuery } from '../route-params'\nimport { SearchParamsContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * When the Page is a client component we send the params and searchParams to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Page component.\n *\n * additionally we may send promises representing the params and searchParams. We don't ever use these passed\n * values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.\n * It is up to the caller to decide if the promises are needed.\n */\nexport function ClientPageRoot({\n Component,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n serverProvidedParams: null | {\n searchParams: ParsedUrlQuery\n params: Params\n promises: Array> | null\n }\n}) {\n let searchParams: ParsedUrlQuery\n let params: Params\n if (serverProvidedParams !== null) {\n searchParams = serverProvidedParams.searchParams\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params as\n // props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n\n // This is an intentional behavior change: when Cache Components is enabled,\n // client segments receive the \"canonical\" search params, not the\n // rewritten ones. Users should either call useSearchParams directly or pass\n // the rewritten ones in from a Server Component.\n // TODO: Log a deprecation error when this object is accessed\n searchParams = urlSearchParamsToParsedUrlQuery(use(SearchParamsContext)!)\n }\n\n if (typeof window === 'undefined') {\n let clientSearchParams: Promise\n let clientParams: Promise\n\n const { createSearchParamsFromClient } =\n require('../../server/request/search-params') as typeof import('../../server/request/search-params')\n clientSearchParams = createSearchParamsFromClient(searchParams)\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params)\n\n return \n } else {\n const { createRenderSearchParamsFromClient } =\n require('../request/search-params.browser') as typeof import('../request/search-params.browser')\n const clientSearchParams = createRenderSearchParamsFromClient(searchParams)\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n\n return \n }\n}\n","'use client'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\n\n/**\n * When the Page is a client component we send the params to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Segment component.\n *\n * additionally we may send a promise representing params. We don't ever use this passed\n * value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations\n * such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.\n */\nexport function ClientSegmentRoot({\n Component,\n slots,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n slots: { [key: string]: React.ReactNode }\n serverProvidedParams: null | {\n params: Params\n promises: Array> | null\n }\n}) {\n let params: Params\n if (serverProvidedParams !== null) {\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params\n // as props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n }\n\n if (typeof window === 'undefined') {\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n const clientParams: Promise = createParamsFromClient(params)\n\n return \n } else {\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n return \n }\n}\n","'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from './boundary-constants'\n\n// We use a namespace object to allow us to recover the name of the function\n// at runtime even when production bundling/minification is used.\nconst NameSpace = {\n [METADATA_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [VIEWPORT_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [OUTLET_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [ROOT_LAYOUT_BOUNDARY_NAME]: function ({\n children,\n }: {\n children: ReactNode\n }) {\n return children\n },\n}\n\nexport const MetadataBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[METADATA_BOUNDARY_NAME.slice(0) as typeof METADATA_BOUNDARY_NAME]\n\nexport const ViewportBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[VIEWPORT_BOUNDARY_NAME.slice(0) as typeof VIEWPORT_BOUNDARY_NAME]\n\nexport const OutletBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[OUTLET_BOUNDARY_NAME.slice(0) as typeof OUTLET_BOUNDARY_NAME]\n\nexport const RootLayoutBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[\n ROOT_LAYOUT_BOUNDARY_NAME.slice(0) as typeof ROOT_LAYOUT_BOUNDARY_NAME\n ]\n","'use client'\n\n// This is a client component that only renders during SSR,\n// but will be replaced during streaming with an icon insertion script tag.\n// We don't want it to be presented anywhere so it's only visible during streaming,\n// right after the icon meta tags so that browser can pick it up as soon as it's rendered.\n// Note: we don't just emit the script here because we only need the script if it's not in the head,\n// and we need it to be hoistable alongside the other metadata but sync scripts are not hoistable.\nexport const IconMark = () => {\n if (typeof window !== 'undefined') {\n return null\n }\n return \n}\n"],"names":["HTTPAccessErrorStatus","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","HTTP_ERROR_FALLBACK_ERROR_CODE","isHTTPAccessFallbackError","error","digest","prefix","httpStatus","split","has","Number","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","status","RedirectStatusCode","InvariantError","Error","constructor","message","options","endsWith","name","createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej","METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","DYNAMIC_ERROR_CODE","DynamicServerError","description","err","isDynamicServerError","REACT_POSTPONE_TYPE","Symbol","for","isPostpone","$$typeof","hasFallbackRouteParams","workUnitAsyncStorage","workUnitStore","getStore","type","fallbackParams","fallbackRouteParams","size","useUntrackedPathname","RSC_HEADER","ACTION_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_URL","RSC_CONTENT_TYPE_HEADER","NEXT_INSTANT_PREFETCH_HEADER","NEXT_INSTANT_TEST_COOKIE","FLIGHT_HEADERS","NEXT_RSC_UNION_QUERY","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_ACTION_REVALIDATED_HEADER","getSegmentValue","segment","Array","isArray","isGroupSegment","isParallelRouteSegment","startsWith","computeSelectedLayoutSegment","addSearchParamsIfPageSegment","searchParams","isPageSegment","includes","PAGE_SEGMENT_KEY","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","DEFAULT_SEGMENT_KEY","node","getSelectedLayoutSegmentPath","tree","first","segmentPath","children","parallelRoutes","segmentValue","push","NOT_FOUND_SEGMENT_KEY","React","use","useMemo","useOptimistic","isThenable","ACTION_REFRESH","dispatch","refreshOnInstantNavigationUnlock","process","env","__NEXT_EXPOSE_TESTING_API","bypassCacheInvalidation","window","location","reload","dispatchAppRouterAction","action","setGestureRouterState","dispatchGestureState","state","__DEV__","NODE_ENV","promisesWithDebugInfo","WeakMap","useActionQueue","actionQueue","canonicalState","setState","useState","setGesture","nextDispatch","useAppDevRenderingIndicator","require","appDevRenderingIndicator","stateWithDebugInfo","promiseWithDebugInfo","get","undefined","debugInfo","then","asyncState","_debugInfo","set","parseCookieValue","raw","parsed","parse","rawState","writeCookieValue","value","cookieStore","existing","path","domain","lockState","acquireLock","r","releaseLock","startListeningForInstantNavigationCookie","self","__next_instant_test","cookie","Math","random","addEventListener","event","changed","deleted","transitionToCapturedSPA","fromTree","toTree","from","to","updateCapturedSPAToTree","isNavigationLocked","waitForNavigationLockIfActive","unresolvedThenable","useContext","TemplateContext","RenderFromTemplateContext","createSegmentVaryParamsAccumulator","accumulator","varyParams","onfulfilled","resolvers","emptySet","emptyVaryParamsAccumulator","createResponseVaryParamsAccumulator","head","rootParams","createVaryParamsAccumulator","responseAccumulator","varyParamsAccumulator","add","getMetadataVaryParamsAccumulator","getVaryParamsThenable","getMetadataVaryParamsThenable","getViewportVaryParamsAccumulator","getRootParamsVaryParamsAccumulator","accumulateVaryParam","paramName","accumulateRootVaryParam","rootParamsAccumulator","createVaryingParams","originalParamsObject","optionalCatchAllParamName","Proxy","target","prop","receiver","prototype","hasOwnProperty","call","Reflect","ownKeys","underlyingParamsWithVarying","defineProperty","enumerable","createVaryingSearchParams","originalSearchParamsObject","underlyingSearchParamsWithVarying","searchParamName","finishAccumulatingVaryParams","rootVaryParams","finishSegmentAccumulator","segmentAccumulator","merged","param","resolver","ReflectAdapter","bind","deleteProperty","__defProp","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","__export","all","__copyProps","except","desc","key","__toCommonJS","mod","src_exports","RequestCookies","ResponseCookies","parseCookie","parseSetCookie","stringifyCookie","module","exports","c","_a","attrs","expires","Date","toUTCString","maxAge","secure","httpOnly","sameSite","partitioned","priority","filter","Boolean","stringified","encodeURIComponent","join","map","Map","pair","splitAt","indexOf","slice","decodeURIComponent","setCookie","attributes","httponly","maxage","samesite","fromEntries","value2","toLowerCase","replace","parseSameSite","parsePriority","compact","t","newT","SAME_SITE","string","PRIORITY","splitCookiesString","cookiesString","cookiesStrings","pos","start","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","test","charAt","notSpecialChar","substring","requestHeaders","_parsed","_headers","header","iterator","args","getAll","_","n","delete","names","result","clear","keys","toString","v","responseHeaders","_b","_c","getSetCookie","cookieStrings","cookieString","normalizeCookie","bag","headers","serialized","append","now","throwWithStaticGenerationBailoutErrorWithDynamicError","route","expression","configurable","throwForSearchParamsAccessInUseCache","workStore","constructorOpt","captureStackTrace","invalidDynamicUsageError","isRequestAPICallableInsideAfter","afterTaskStore","rootTaskSpawnPhase","workAsyncStorage","throwToInterruptStaticGeneration","postponeWithTracking","throwInvariantForMissingStore","describeStringPropertyAccess","wellKnownProperties","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","dynamicAccessAsyncStorage","RenderStage","createParamsFromClient","underlyingParams","createStaticPrerenderParams","createClientParamsInInstantValidation","validationSamples","isRuntimePrefetchable","createRenderParamsInDev","createRenderParamsInProd","createServerParamsForMetadata","metadataVaryParamsAccumulator","createServerParamsForServerSegment","createServerParamsForRoute","createRuntimePrerenderParams","asyncApiPromises","createServerParamsInInstantValidation","earlySharedParamsParent","sharedParamsParent","createPrerenderParamsForClientSegment","renderSignal","prerenderStore","makeHangingParams","makeErroringParams","makeUntrackedParams","stagedRendering","stage","EarlyRuntime","Runtime","waitForStage","createExhaustiveParamsProxy","declaredParams","params","proxiedUnderlying","requestStore","makeDynamicallyTrackedParamsWithDevWarnings","CachedParams","fallbackParamsProxyHandler","originalMethod","store","abortController","abort","apply","cachedParams","augmentedUnderlying","forEach","dynamicTracking","hasFallbackParams","displayName","instrumentParamsPromiseWithDevWarnings","proxiedPromise","proxiedProperties","warnForSyncAccess","createParamsAccessError","LayoutRouterContext","urlSearchParamsToParsedUrlQuery","SearchParamsContext","ClientPageRoot","Component","serverProvidedParams","layoutRouterContext","parentParams","clientSearchParams","clientParams","createSearchParamsFromClient","createRenderSearchParamsFromClient","createRenderParamsFromClient","ClientSegmentRoot","slots","NameSpace","MetadataBoundary","ViewportBoundary","OutletBoundary","RootLayoutBoundary","IconMark","meta"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_11bk~bs._.js b/.next/server/chunks/ssr/node_modules_next_dist_11bk~bs._.js new file mode 100644 index 0000000..ac0e044 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_11bk~bs._.js @@ -0,0 +1,5 @@ +module.exports=[4987,(a,b,c)=>{"use strict";function d({widthInt:a,heightInt:b,blurWidth:c,blurHeight:e,blurDataURL:f,objectFit:g}){let h=c?40*c:a,i=e?40*e:b,j=h&&i?`viewBox='0 0 ${h} ${i}'`:"";return`%3Csvg xmlns='http://www.w3.org/2000/svg' ${j}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${j?"none":"contain"===g?"xMidYMid":"cover"===g?"xMidYMid slice":"none"}' style='filter: url(%23b);' href='${f}'/%3E%3C/svg%3E`}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"getImageBlurSvg",{enumerable:!0,get:function(){return d}})},345,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={VALID_LOADERS:function(){return f},imageConfigDefault:function(){return g}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=["default","imgix","cloudinary","akamai","custom"],g={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumDiskCacheSize:void 0,maximumRedirects:3,maximumResponseBody:5e7,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1,customCacheHandler:!1}},94915,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"getImgProps",{enumerable:!0,get:function(){return j}}),a.r(92434);let d=a.r(68063),e=a.r(4987),f=a.r(345),g=["-moz-initial","fill","none","scale-down",void 0];function h(a){return void 0!==a.default}function i(a){return void 0===a?a:"number"==typeof a?Number.isFinite(a)?a:NaN:"string"==typeof a&&/^[0-9]+$/.test(a)?parseInt(a,10):NaN}function j({src:a,sizes:b,unoptimized:c=!1,priority:k=!1,preload:l=!1,loading:m,className:n,quality:o,width:p,height:q,fill:r=!1,style:s,overrideSrc:t,onLoad:u,onLoadingComplete:v,placeholder:w="empty",blurDataURL:x,fetchPriority:y,decoding:z="async",layout:A,objectFit:B,objectPosition:C,lazyBoundary:D,lazyRoot:E,...F},G){var H;let I,J,K,{imgConf:L,showAltText:M,blurComplete:N,defaultLoader:O}=G,P=L||f.imageConfigDefault;if("allSizes"in P)I=P;else{let a=[...P.deviceSizes,...P.imageSizes].sort((a,b)=>a-b),b=P.deviceSizes.sort((a,b)=>a-b),c=P.qualities?.sort((a,b)=>a-b);I={...P,allSizes:a,deviceSizes:b,qualities:c}}if(void 0===O)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let Q=F.loader||O;delete F.loader,delete F.srcSet;let R="__next_img_default"in Q;if(R){if("custom"===I.loader)throw Object.defineProperty(Error(`Image with src "${a}" is missing "loader" prop. +Read more: https://nextjs.org/docs/messages/next-image-missing-loader`),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let a=Q;Q=b=>{let{config:c,...d}=b;return a(d)}}if(A){"fill"===A&&(r=!0);let a={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[A];a&&(s={...s,...a});let c={responsive:"100vw",fill:"100vw"}[A];c&&!b&&(b=c)}let S="",T=i(p),U=i(q);if((H=a)&&"object"==typeof H&&(h(H)||void 0!==H.src)){let b=h(a)?a.default:a;if(!b.src)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(b)}`),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!b.height||!b.width)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(b)}`),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if(J=b.blurWidth,K=b.blurHeight,x=x||b.blurDataURL,S=b.src,!r)if(T||U){if(T&&!U){let a=T/b.width;U=Math.round(b.height*a)}else if(!T&&U){let a=U/b.height;T=Math.round(b.width*a)}}else T=b.width,U=b.height}let V=!k&&!l&&("lazy"===m||void 0===m);(!(a="string"==typeof a?a:S)||a.startsWith("data:")||a.startsWith("blob:"))&&(c=!0,V=!1),I.unoptimized&&(c=!0),R&&!I.dangerouslyAllowSVG&&a.split("?",1)[0].endsWith(".svg")&&(c=!0);let W=i(o),X=Object.assign(r?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:B,objectPosition:C}:{},M?{}:{color:"transparent"},s),Y=N||"empty"===w?null:"blur"===w?`url("data:image/svg+xml;charset=utf-8,${(0,e.getImageBlurSvg)({widthInt:T,heightInt:U,blurWidth:J,blurHeight:K,blurDataURL:x||"",objectFit:X.objectFit})}")`:`url("${w}")`,Z=g.includes(X.objectFit)?"fill"===X.objectFit?"100% 100%":"cover":X.objectFit,$=Y?{backgroundSize:Z,backgroundPosition:X.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:Y}:{},_=function({config:a,src:b,unoptimized:c,width:e,quality:f,sizes:g,loader:h}){if(c){if(b.startsWith("/")&&!b.startsWith("//")){let a=(0,d.getDeploymentId)();if(a){let c=b.indexOf("?");if(-1!==c){let d=new URLSearchParams(b.slice(c+1));d.get("dpl")||(d.append("dpl",a),b=b.slice(0,c)+"?"+d.toString())}else b+=`?dpl=${a}`}}return{src:b,srcSet:void 0,sizes:void 0}}let{widths:i,kind:j}=function({deviceSizes:a,allSizes:b},c,d){if(d){let c=/(^|\s)(1?\d?\d)vw/g,e=[];for(let a;a=c.exec(d);)e.push(parseInt(a[2]));if(e.length){let c=.01*Math.min(...e);return{widths:b.filter(b=>b>=a[0]*c),kind:"w"}}return{widths:b,kind:"w"}}return"number"!=typeof c?{widths:a,kind:"w"}:{widths:[...new Set([c,2*c].map(a=>b.find(b=>b>=a)||b[b.length-1]))],kind:"x"}}(a,e,g),k=i.length-1;return{sizes:g||"w"!==j?g:"100vw",srcSet:i.map((c,d)=>`${h({config:a,src:b,quality:f,width:c})} ${"w"===j?c:d+1}${j}`).join(", "),src:h({config:a,src:b,quality:f,width:i[k]})}}({config:I,src:a,unoptimized:c,width:T,quality:W,sizes:b,loader:Q}),aa=V?"lazy":m;return{props:{...F,loading:aa,fetchPriority:y,width:T,height:U,decoding:z,className:n,style:{...X,...$},sizes:_.sizes,srcSet:_.srcSet,src:t||_.src},meta:{unoptimized:c,preload:l||k,placeholder:w,fill:r}}}},94613,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return f}});let d=a.r(72131),e=()=>{};function f(a){let{headManager:b,reduceComponentsToState:c}=a;function f(){if(b&&b.mountedInstances){let a=d.Children.toArray(Array.from(b.mountedInstances).filter(Boolean));b.updateHead(c(a))}}return b?.mountedInstances?.add(a.children),f(),e(()=>(b?.mountedInstances?.add(a.children),()=>{b?.mountedInstances?.delete(a.children)})),e(()=>(b&&(b._pendingUpdate=f),()=>{b&&(b._pendingUpdate=f)})),null}},92966,(a,b,c)=>{"use strict";b.exports=a.r(42602).vendored.contexts.HeadManagerContext},58018,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={default:function(){return p},defaultHead:function(){return l}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(33354),g=a.r(46058),h=a.r(87924),i=g._(a.r(72131)),j=f._(a.r(94613)),k=a.r(92966);function l(){return[(0,h.jsx)("meta",{charSet:"utf-8"},"charset"),(0,h.jsx)("meta",{name:"viewport",content:"width=device-width"},"viewport")]}function m(a,b){return"string"==typeof b||"number"==typeof b?a:b.type===i.default.Fragment?a.concat(i.default.Children.toArray(b.props.children).reduce((a,b)=>"string"==typeof b||"number"==typeof b?a:a.concat(b),[])):a.concat(b)}a.r(92434);let n=["name","httpEquiv","charSet","itemProp"];function o(a){let b,c,d,e;return a.reduce(m,[]).reverse().concat(l().reverse()).filter((b=new Set,c=new Set,d=new Set,e={},a=>{let f=!0,g=!1;if(a.key&&"number"!=typeof a.key&&a.key.indexOf("$")>0){g=!0;let c=a.key.slice(a.key.indexOf("$")+1);b.has(c)?f=!1:b.add(c)}switch(a.type){case"title":case"base":c.has(a.type)?f=!1:c.add(a.type);break;case"meta":for(let b=0,c=n.length;b{let c=a.key||b;return i.default.cloneElement(a,{key:c})})}let p=function({children:a}){let b=(0,i.useContext)(k.HeadManagerContext);return(0,h.jsx)(j.default,{reduceComponentsToState:o,headManager:b,children:a})};("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},4486,(a,b,c)=>{"use strict";b.exports=a.r(42602).vendored.contexts.ImageConfigContext},53773,(a,b,c)=>{"use strict";b.exports=a.r(42602).vendored.contexts.RouterContext},35444,(a,b,c)=>{"use strict";function d(a,b){let c=a||75;return b?.qualities?.length?b.qualities.reduce((a,b)=>Math.abs(b-c){"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return g}});let d=a.r(35444),e=a.r(68063);function f({config:a,src:b,width:c,quality:g}){let h=(0,e.getDeploymentId)();if(b.startsWith("/")&&!b.startsWith("//")){let a=b.indexOf("?");if(-1!==a){let c=new URLSearchParams(b.slice(a+1)),d=c.get("dpl");if(d){h=d,c.delete("dpl");let e=c.toString();b=b.slice(0,a)+(e?"?"+e:"")}}}if(b.startsWith("/")&&b.includes("?")&&a.localPatterns?.length===1&&"**"===a.localPatterns[0].pathname&&""===a.localPatterns[0].search)throw Object.defineProperty(Error(`Image with src "${b}" is using a query string which is not configured in images.localPatterns. +Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let i=(0,d.findClosestQuality)(g,a);return`${a.path}?url=${encodeURIComponent(b)}&w=${c}&q=${i}${b.startsWith("/")&&h?`&dpl=${h}`:""}`}f.__next_img_default=!0;let g=f},67161,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"Image",{enumerable:!0,get:function(){return u}});let d=a.r(33354),e=a.r(46058),f=a.r(87924),g=e._(a.r(72131)),h=d._(a.r(35112)),i=d._(a.r(58018)),j=a.r(94915),k=a.r(345),l=a.r(4486);a.r(92434);let m=a.r(53773),n=d._(a.r(2305)),o=a.r(8591),p={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1};function q(a,b,c,d,e,f,g){let h=a?.src;a&&a["data-loaded-src"]!==h&&(a["data-loaded-src"]=h,("decode"in a?a.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(a.parentElement&&a.isConnected){if("empty"!==b&&e(!0),c?.current){let b=new Event("load");Object.defineProperty(b,"target",{writable:!1,value:a});let d=!1,e=!1;c.current({...b,nativeEvent:b,currentTarget:a,target:a,isDefaultPrevented:()=>d,isPropagationStopped:()=>e,persist:()=>{},preventDefault:()=>{d=!0,b.preventDefault()},stopPropagation:()=>{e=!0,b.stopPropagation()}})}d?.current&&d.current(a)}}))}function r(a){return g.use?{fetchPriority:a}:{fetchpriority:a}}globalThis.__NEXT_IMAGE_IMPORTED=!0;let s=(0,g.forwardRef)(({src:a,srcSet:b,sizes:c,height:d,width:e,decoding:h,className:i,style:j,fetchPriority:k,placeholder:l,loading:m,unoptimized:n,fill:p,onLoadRef:s,onLoadingCompleteRef:t,setBlurComplete:u,setShowAltText:v,sizesInput:w,onLoad:x,onError:y,...z},A)=>{let B=(0,g.useCallback)(a=>{a&&(y&&(a.src=a.src),a.complete&&q(a,l,s,t,u,n,w))},[a,l,s,t,u,y,n,w]),C=(0,o.useMergedRef)(A,B);return(0,f.jsx)("img",{...z,...r(k),loading:m,width:e,height:d,decoding:h,"data-nimg":p?"fill":"1",className:i,style:j,sizes:c,srcSet:b,src:a,ref:C,onLoad:a=>{q(a.currentTarget,l,s,t,u,n,w)},onError:a=>{v(!0),"empty"!==l&&u(!0),y&&y(a)}})});function t({isAppRouter:a,imgAttributes:b}){let c={as:"image",imageSrcSet:b.srcSet,imageSizes:b.sizes,crossOrigin:b.crossOrigin,referrerPolicy:b.referrerPolicy,...r(b.fetchPriority)};return a&&h.default.preload?(h.default.preload(b.src,c),null):(0,f.jsx)(i.default,{children:(0,f.jsx)("link",{rel:"preload",href:b.srcSet?void 0:b.src,...c},"__nimg-"+b.src+b.srcSet+b.sizes)})}let u=(0,g.forwardRef)((a,b)=>{let c=(0,g.useContext)(m.RouterContext),d=(0,g.useContext)(l.ImageConfigContext),e=(0,g.useMemo)(()=>{let a=p||d||k.imageConfigDefault,b=[...a.deviceSizes,...a.imageSizes].sort((a,b)=>a-b),c=a.deviceSizes.sort((a,b)=>a-b),e=a.qualities?.sort((a,b)=>a-b);return{...a,allSizes:b,deviceSizes:c,qualities:e,localPatterns:d?.localPatterns}},[d]),{onLoad:h,onLoadingComplete:i}=a,o=(0,g.useRef)(h);(0,g.useEffect)(()=>{o.current=h},[h]);let q=(0,g.useRef)(i);(0,g.useEffect)(()=>{q.current=i},[i]);let[r,u]=(0,g.useState)(!1),[v,w]=(0,g.useState)(!1),{props:x,meta:y}=(0,j.getImgProps)(a,{defaultLoader:n.default,imgConf:e,blurComplete:r,showAltText:v});return(0,f.jsxs)(f.Fragment,{children:[(0,f.jsx)(s,{...x,unoptimized:y.unoptimized,placeholder:y.placeholder,fill:y.fill,onLoadRef:o,onLoadingCompleteRef:q,setBlurComplete:u,setShowAltText:w,sizesInput:a.sizes,ref:b}),y.preload?(0,f.jsx)(t,{isAppRouter:!c,imgAttributes:x}):null]})});("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)}]; + +//# sourceMappingURL=node_modules_next_dist_11bk~bs._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_11bk~bs._.js.map b/.next/server/chunks/ssr/node_modules_next_dist_11bk~bs._.js.map new file mode 100644 index 0000000..c6190a6 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_11bk~bs._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/shared/lib/image-blur-svg.ts","../../../../node_modules/next/src/shared/lib/image-config.ts","../../../../node_modules/next/src/shared/lib/get-img-props.ts","../../../../node_modules/next/src/shared/lib/side-effect.tsx","../../../../node_modules/next/src/server/route-modules/app-page/vendored/contexts/head-manager-context.ts","../../../../node_modules/next/src/shared/lib/head.tsx","../../../../node_modules/next/src/server/route-modules/app-page/vendored/contexts/image-config-context.ts","../../../../node_modules/next/src/server/route-modules/app-page/vendored/contexts/router-context.ts","../../../../node_modules/next/src/shared/lib/find-closest-quality.ts","../../../../node_modules/next/src/shared/lib/image-loader.ts","../../../../node_modules/next/src/client/image-component.tsx"],"sourcesContent":["/**\n * A shared function, used on both client and server, to generate a SVG blur placeholder.\n */\nexport function getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL,\n objectFit,\n}: {\n widthInt?: number\n heightInt?: number\n blurWidth?: number\n blurHeight?: number\n blurDataURL: string\n objectFit?: string\n}): string {\n const std = 20\n const svgWidth = blurWidth ? blurWidth * 40 : widthInt\n const svgHeight = blurHeight ? blurHeight * 40 : heightInt\n\n const viewBox =\n svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''\n const preserveAspectRatio = viewBox\n ? 'none'\n : objectFit === 'contain'\n ? 'xMidYMid'\n : objectFit === 'cover'\n ? 'xMidYMid slice'\n : 'none'\n\n return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`\n}\n","export const VALID_LOADERS = [\n 'default',\n 'imgix',\n 'cloudinary',\n 'akamai',\n 'custom',\n] as const\n\nexport type LoaderValue = (typeof VALID_LOADERS)[number]\n\nexport type ImageLoaderProps = {\n src: string\n width: number\n quality?: number\n}\n\nexport type ImageLoaderPropsWithConfig = ImageLoaderProps & {\n config: Readonly\n}\n\nexport type LocalPattern = {\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\nexport type RemotePattern = {\n /**\n * Must be `http` or `https`.\n */\n protocol?: 'http' | 'https'\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single subdomain.\n * Double `**` matches any number of subdomains.\n */\n hostname: string\n\n /**\n * Can be literal port such as `8080` or empty string\n * meaning no port.\n */\n port?: string\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\ntype ImageFormat = 'image/avif' | 'image/webp'\n\n/**\n * Image configurations\n *\n * @see [Image configuration options](https://nextjs.org/docs/api-reference/next/image#configuration-options)\n */\nexport type ImageConfigComplete = {\n /** @see [Device sizes documentation](https://nextjs.org/docs/api-reference/next/image#device-sizes) */\n deviceSizes: number[]\n\n /** @see [Image sizing documentation](https://nextjs.org/docs/app/building-your-application/optimizing/images#image-sizing) */\n imageSizes: number[]\n\n /** @see [Image loaders configuration](https://nextjs.org/docs/api-reference/next/legacy/image#loader) */\n loader: LoaderValue\n\n /** @see [Image loader configuration](https://nextjs.org/docs/app/api-reference/components/image#path) */\n path: string\n\n /** @see [Image loader configuration](https://nextjs.org/docs/api-reference/next/image#loader-configuration) */\n loaderFile: string\n\n /**\n * @deprecated Use `remotePatterns` instead.\n */\n domains: string[]\n\n /** @see [Disable static image import configuration](https://nextjs.org/docs/api-reference/next/image#disable-static-imports) */\n disableStaticImages: boolean\n\n /** @see [Cache behavior](https://nextjs.org/docs/api-reference/next/image#caching-behavior) */\n minimumCacheTTL: number\n\n /** @see [Acceptable formats](https://nextjs.org/docs/api-reference/next/image#acceptable-formats) */\n formats: ImageFormat[]\n\n /** @see [Maximum Disk Cache Size (in bytes)](https://nextjs.org/docs/api-reference/next/image#maximumdiskcachesize) */\n maximumDiskCacheSize: number | undefined\n\n /** @see [Maximum Redirects](https://nextjs.org/docs/api-reference/next/image#maximumredirects) */\n maximumRedirects: number\n\n /** @see [Maximum Response Body](https://nextjs.org/docs/api-reference/next/image#maximumresponsebody) */\n maximumResponseBody: number\n\n /** @see [Dangerously Allow Local IP](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-local-ip) */\n dangerouslyAllowLocalIP: boolean\n\n /** @see [Dangerously Allow SVG](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-svg) */\n dangerouslyAllowSVG: boolean\n\n /** @see [Content Security Policy](https://nextjs.org/docs/api-reference/next/image#contentsecuritypolicy) */\n contentSecurityPolicy: string\n\n /** @see [Content Disposition Type](https://nextjs.org/docs/api-reference/next/image#contentdispositiontype) */\n contentDispositionType: 'inline' | 'attachment'\n\n /** @see [Remote Patterns](https://nextjs.org/docs/api-reference/next/image#remotepatterns) */\n remotePatterns: Array\n\n /** @see [Local Patterns](https://nextjs.org/docs/api-reference/next/image#localPatterns) */\n localPatterns: LocalPattern[] | undefined\n\n /** @see [Qualities](https://nextjs.org/docs/api-reference/next/image#qualities) */\n qualities: number[] | undefined\n\n /** @see [Unoptimized](https://nextjs.org/docs/api-reference/next/image#unoptimized) */\n unoptimized: boolean\n\n /**\n * When true, the `cacheHandler` configured in next.config.js will also be used\n * for caching optimized images. When false, images use the default filesystem cache.\n * @see [Image Optimization Caching](https://nextjs.org/docs/app/api-reference/config/next-config-js/cacheHandler#image-optimization-caching)\n */\n customCacheHandler: boolean\n}\n\nexport type ImageConfig = Partial\n\nexport const imageConfigDefault: ImageConfigComplete = {\n deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],\n imageSizes: [32, 48, 64, 96, 128, 256, 384],\n path: '/_next/image',\n loader: 'default',\n loaderFile: '',\n /**\n * @deprecated Use `remotePatterns` instead to protect your application from malicious users.\n */\n domains: [],\n disableStaticImages: false,\n minimumCacheTTL: 14400, // 4 hours\n formats: ['image/webp'],\n maximumDiskCacheSize: undefined, // auto-detect by default\n maximumRedirects: 3,\n maximumResponseBody: 50_000_000, // 50 MB\n dangerouslyAllowLocalIP: false,\n dangerouslyAllowSVG: false,\n contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,\n contentDispositionType: 'attachment',\n localPatterns: undefined, // default: allow all local images\n remotePatterns: [], // default: allow no remote images\n qualities: [75],\n unoptimized: false,\n customCacheHandler: false,\n}\n","import { warnOnce } from './utils/warn-once'\nimport { getDeploymentId } from './deployment-id'\nimport { getImageBlurSvg } from './image-blur-svg'\nimport { imageConfigDefault } from './image-config'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n ImageLoaderPropsWithConfig,\n} from './image-config'\n\nimport type { CSSProperties, JSX } from 'react'\n\nexport interface StaticImageData {\n src: string\n height: number\n width: number\n blurDataURL?: string\n blurWidth?: number\n blurHeight?: number\n}\n\nexport interface StaticRequire {\n default: StaticImageData\n}\n\nexport type StaticImport = StaticRequire | StaticImageData\n\nexport type ImageProps = Omit<\n JSX.IntrinsicElements['img'],\n 'src' | 'srcSet' | 'ref' | 'alt' | 'width' | 'height' | 'loading'\n> & {\n src: string | StaticImport\n alt: string\n width?: number | `${number}`\n height?: number | `${number}`\n fill?: boolean\n loader?: ImageLoader\n quality?: number | `${number}`\n preload?: boolean\n /**\n * @deprecated Use `preload` prop instead.\n * See https://nextjs.org/docs/app/api-reference/components/image#preload\n */\n priority?: boolean\n loading?: LoadingValue\n placeholder?: PlaceholderValue\n blurDataURL?: string\n unoptimized?: boolean\n overrideSrc?: string\n /**\n * @deprecated Use `onLoad` instead.\n * @see https://nextjs.org/docs/app/api-reference/components/image#onload\n */\n onLoadingComplete?: OnLoadingComplete\n /**\n * @deprecated Use `fill` prop instead of `layout=\"fill\"` or change import to `next/legacy/image`.\n * @see https://nextjs.org/docs/api-reference/next/legacy/image\n */\n layout?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectFit?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectPosition?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyBoundary?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyRoot?: string\n}\n\nexport type ImgProps = Omit & {\n loading: LoadingValue\n width: number | undefined\n height: number | undefined\n style: NonNullable\n sizes: string | undefined\n srcSet: string | undefined\n src: string\n}\n\nconst VALID_LOADING_VALUES = ['lazy', 'eager', undefined] as const\n\n// Object-fit values that are not valid background-size values\nconst INVALID_BACKGROUND_SIZE_VALUES = [\n '-moz-initial',\n 'fill',\n 'none',\n 'scale-down',\n undefined,\n]\ntype LoadingValue = (typeof VALID_LOADING_VALUES)[number]\ntype ImageConfig = ImageConfigComplete & {\n allSizes: number[]\n output?: 'standalone' | 'export'\n}\n\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\n// Do not export - this is an internal type only\n// because `next.config.js` is only meant for the\n// built-in loaders, not for a custom loader() prop.\ntype ImageLoaderWithConfig = (p: ImageLoaderPropsWithConfig) => string\n\nexport type PlaceholderValue = 'blur' | 'empty' | `data:image/${string}`\nexport type OnLoad = React.ReactEventHandler | undefined\nexport type OnLoadingComplete = (img: HTMLImageElement) => void\n\nexport type PlaceholderStyle = Partial<\n Pick<\n CSSProperties,\n | 'backgroundSize'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundImage'\n >\n>\n\nfunction isStaticRequire(\n src: StaticRequire | StaticImageData\n): src is StaticRequire {\n return (src as StaticRequire).default !== undefined\n}\n\nfunction isStaticImageData(\n src: StaticRequire | StaticImageData\n): src is StaticImageData {\n return (src as StaticImageData).src !== undefined\n}\n\nfunction isStaticImport(src: string | StaticImport): src is StaticImport {\n return (\n !!src &&\n typeof src === 'object' &&\n (isStaticRequire(src as StaticImport) ||\n isStaticImageData(src as StaticImport))\n )\n}\n\nconst allImgs = new Map<\n string,\n { src: string; loading: LoadingValue; placeholder: PlaceholderValue }\n>()\nlet perfObserver: PerformanceObserver | undefined\n\nfunction getInt(x: unknown): number | undefined {\n if (typeof x === 'undefined') {\n return x\n }\n if (typeof x === 'number') {\n return Number.isFinite(x) ? x : NaN\n }\n if (typeof x === 'string' && /^[0-9]+$/.test(x)) {\n return parseInt(x, 10)\n }\n return NaN\n}\n\nfunction getWidths(\n { deviceSizes, allSizes }: ImageConfig,\n width: number | undefined,\n sizes: string | undefined\n): { widths: number[]; kind: 'w' | 'x' } {\n if (sizes) {\n // Find all the \"vw\" percent sizes used in the sizes prop\n const viewportWidthRe = /(^|\\s)(1?\\d?\\d)vw/g\n const percentSizes = []\n for (let match; (match = viewportWidthRe.exec(sizes)); match) {\n percentSizes.push(parseInt(match[2]))\n }\n if (percentSizes.length) {\n const smallestRatio = Math.min(...percentSizes) * 0.01\n return {\n widths: allSizes.filter((s) => s >= deviceSizes[0] * smallestRatio),\n kind: 'w',\n }\n }\n return { widths: allSizes, kind: 'w' }\n }\n if (typeof width !== 'number') {\n return { widths: deviceSizes, kind: 'w' }\n }\n\n const widths = [\n ...new Set(\n // > This means that most OLED screens that say they are 3x resolution,\n // > are actually 3x in the green color, but only 1.5x in the red and\n // > blue colors. Showing a 3x resolution image in the app vs a 2x\n // > resolution image will be visually the same, though the 3x image\n // > takes significantly more data. Even true 3x resolution screens are\n // > wasteful as the human eye cannot see that level of detail without\n // > something like a magnifying glass.\n // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html\n [width, width * 2 /*, width * 3*/].map(\n (w) => allSizes.find((p) => p >= w) || allSizes[allSizes.length - 1]\n )\n ),\n ]\n return { widths, kind: 'x' }\n}\n\ntype GenImgAttrsData = {\n config: ImageConfig\n src: string\n unoptimized: boolean\n loader: ImageLoaderWithConfig\n width?: number\n quality?: number\n sizes?: string\n}\n\ntype GenImgAttrsResult = {\n src: string\n srcSet: string | undefined\n sizes: string | undefined\n}\n\nfunction generateImgAttrs({\n config,\n src,\n unoptimized,\n width,\n quality,\n sizes,\n loader,\n}: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n if (src.startsWith('/') && !src.startsWith('//')) {\n let deploymentId = getDeploymentId()\n if (deploymentId) {\n // We unfortunately can't easily use `new URL()` here, because it normalizes the URL which causes\n // double-encoding with the `encodeURIComponent(src)` below\n const qIndex = src.indexOf('?')\n if (qIndex !== -1) {\n const params = new URLSearchParams(src.slice(qIndex + 1))\n const srcDpl = params.get('dpl')\n if (!srcDpl) {\n // src is missing the dpl parameter, but we have a deploymentId, so add it to the src URL\n params.append('dpl', deploymentId)\n src = src.slice(0, qIndex) + '?' + params.toString()\n }\n } else {\n // src is missing the dpl parameter, but we have a deploymentId, so add it to the src URL\n src = src + `?dpl=${deploymentId}`\n }\n }\n }\n return { src, srcSet: undefined, sizes: undefined }\n }\n\n const { widths, kind } = getWidths(config, width, sizes)\n const last = widths.length - 1\n\n return {\n sizes: !sizes && kind === 'w' ? '100vw' : sizes,\n srcSet: widths\n .map(\n (w, i) =>\n `${loader({ config, src, quality, width: w })} ${\n kind === 'w' ? w : i + 1\n }${kind}`\n )\n .join(', '),\n\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n src: loader({ config, src, quality, width: widths[last] }),\n }\n}\n\n/**\n * A shared function, used on both client and server, to generate the props for .\n */\nexport function getImgProps(\n {\n src,\n sizes,\n unoptimized = false,\n priority = false,\n preload = false,\n loading,\n className,\n quality,\n width,\n height,\n fill = false,\n style,\n overrideSrc,\n onLoad,\n onLoadingComplete,\n placeholder = 'empty',\n blurDataURL,\n fetchPriority,\n decoding = 'async',\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n ...rest\n }: ImageProps,\n _state: {\n defaultLoader: ImageLoaderWithConfig\n imgConf: ImageConfigComplete\n showAltText?: boolean\n blurComplete?: boolean\n }\n): {\n props: ImgProps\n meta: {\n unoptimized: boolean\n preload: boolean\n placeholder: NonNullable\n fill: boolean\n }\n} {\n const { imgConf, showAltText, blurComplete, defaultLoader } = _state\n let config: ImageConfig\n let c = imgConf || imageConfigDefault\n if ('allSizes' in c) {\n config = c as ImageConfig\n } else {\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n config = { ...c, allSizes, deviceSizes, qualities }\n }\n\n if (typeof defaultLoader === 'undefined') {\n throw new Error(\n 'images.loaderFile detected but the file is missing default export.\\nRead more: https://nextjs.org/docs/messages/invalid-images-config'\n )\n }\n let loader: ImageLoaderWithConfig = rest.loader || defaultLoader\n\n // Remove property so it's not spread on element\n delete rest.loader\n delete (rest as any).srcSet\n\n // This special value indicates that the user\n // didn't define a \"loader\" prop or \"loader\" config.\n const isDefaultLoader = '__next_img_default' in loader\n\n if (isDefaultLoader) {\n if (config.loader === 'custom') {\n throw new Error(\n `Image with src \"${src}\" is missing \"loader\" prop.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`\n )\n }\n } else {\n // The user defined a \"loader\" prop or config.\n // Since the config object is internal only, we\n // must not pass it to the user-defined \"loader\".\n const customImageLoader = loader as ImageLoader\n loader = (obj) => {\n const { config: _, ...opts } = obj\n return customImageLoader(opts)\n }\n }\n\n if (layout) {\n if (layout === 'fill') {\n fill = true\n }\n const layoutToStyle: Record | undefined> = {\n intrinsic: { maxWidth: '100%', height: 'auto' },\n responsive: { width: '100%', height: 'auto' },\n }\n const layoutToSizes: Record = {\n responsive: '100vw',\n fill: '100vw',\n }\n const layoutStyle = layoutToStyle[layout]\n if (layoutStyle) {\n style = { ...style, ...layoutStyle }\n }\n const layoutSizes = layoutToSizes[layout]\n if (layoutSizes && !sizes) {\n sizes = layoutSizes\n }\n }\n\n let staticSrc = ''\n let widthInt = getInt(width)\n let heightInt = getInt(height)\n let blurWidth: number | undefined\n let blurHeight: number | undefined\n if (isStaticImport(src)) {\n const staticImageData = isStaticRequire(src) ? src.default : src\n\n if (!staticImageData.src) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n if (!staticImageData.height || !staticImageData.width) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n\n blurWidth = staticImageData.blurWidth\n blurHeight = staticImageData.blurHeight\n blurDataURL = blurDataURL || staticImageData.blurDataURL\n staticSrc = staticImageData.src\n\n if (!fill) {\n if (!widthInt && !heightInt) {\n widthInt = staticImageData.width\n heightInt = staticImageData.height\n } else if (widthInt && !heightInt) {\n const ratio = widthInt / staticImageData.width\n heightInt = Math.round(staticImageData.height * ratio)\n } else if (!widthInt && heightInt) {\n const ratio = heightInt / staticImageData.height\n widthInt = Math.round(staticImageData.width * ratio)\n }\n }\n }\n src = typeof src === 'string' ? src : staticSrc\n\n let isLazy =\n !priority &&\n !preload &&\n (loading === 'lazy' || typeof loading === 'undefined')\n if (!src || src.startsWith('data:') || src.startsWith('blob:')) {\n // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs\n unoptimized = true\n isLazy = false\n }\n if (config.unoptimized) {\n unoptimized = true\n }\n if (\n isDefaultLoader &&\n !config.dangerouslyAllowSVG &&\n src.split('?', 1)[0].endsWith('.svg')\n ) {\n // Special case to make svg serve as-is to avoid proxying\n // through the built-in Image Optimization API.\n unoptimized = true\n }\n\n const qualityInt = getInt(quality)\n\n if (process.env.NODE_ENV !== 'production') {\n if (config.output === 'export' && isDefaultLoader && !unoptimized) {\n throw new Error(\n `Image Optimization using the default loader is not compatible with \\`{ output: 'export' }\\`.\n Possible solutions:\n - Remove \\`{ output: 'export' }\\` and run \"next start\" to run server mode including the Image Optimization API.\n - Configure \\`{ images: { unoptimized: true } }\\` in \\`next.config.js\\` to disable the Image Optimization API.\n Read more: https://nextjs.org/docs/messages/export-image-api`\n )\n }\n if (!src) {\n // React doesn't show the stack trace and there's\n // no `src` to help identify which image, so we\n // instead console.error(ref) during mount.\n unoptimized = true\n } else {\n if (fill) {\n if (width) {\n throw new Error(\n `Image with src \"${src}\" has both \"width\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (height) {\n throw new Error(\n `Image with src \"${src}\" has both \"height\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (style?.position && style.position !== 'absolute') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.position\" properties. Images with \"fill\" always use position absolute - it cannot be modified.`\n )\n }\n if (style?.width && style.width !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.width\" properties. Images with \"fill\" always use width 100% - it cannot be modified.`\n )\n }\n if (style?.height && style.height !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.height\" properties. Images with \"fill\" always use height 100% - it cannot be modified.`\n )\n }\n } else {\n if (typeof widthInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"width\" property.`\n )\n } else if (isNaN(widthInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"width\" property. Expected a numeric value in pixels but received \"${width}\".`\n )\n }\n if (typeof heightInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"height\" property.`\n )\n } else if (isNaN(heightInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"height\" property. Expected a numeric value in pixels but received \"${height}\".`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/^[\\x00-\\x20]/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/[\\x00-\\x20]$/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n }\n }\n if (!VALID_LOADING_VALUES.includes(loading)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"loading\" property. Provided \"${loading}\" should be one of ${VALID_LOADING_VALUES.map(\n String\n ).join(',')}.`\n )\n }\n if (priority && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"priority\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && priority) {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"priority\" properties. Only \"preload\" should be used.`\n )\n }\n if (\n placeholder !== 'empty' &&\n placeholder !== 'blur' &&\n !placeholder.startsWith('data:image/')\n ) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"placeholder\" property \"${placeholder}\".`\n )\n }\n if (placeholder !== 'empty') {\n if (widthInt && heightInt && widthInt * heightInt < 1600) {\n warnOnce(\n `Image with src \"${src}\" is smaller than 40x40. Consider removing the \"placeholder\" property to improve performance.`\n )\n }\n }\n if (\n qualityInt &&\n config.qualities &&\n !config.qualities.includes(qualityInt)\n ) {\n warnOnce(\n `Image with src \"${src}\" is using quality \"${qualityInt}\" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[...config.qualities, qualityInt].sort().join(', ')}].` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`\n )\n }\n if (placeholder === 'blur' && !blurDataURL) {\n const VALID_BLUR_EXT = ['jpeg', 'png', 'webp', 'avif'] // should match next-image-loader\n\n throw new Error(\n `Image with src \"${src}\" has \"placeholder='blur'\" property but is missing the \"blurDataURL\" property.\n Possible solutions:\n - Add a \"blurDataURL\" property, the contents should be a small Data URL to represent the image\n - Change the \"src\" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(\n ','\n )} (animated images not supported)\n - Remove the \"placeholder\" property, effectively no blur effect\n Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`\n )\n }\n if ('ref' in rest) {\n warnOnce(\n `Image with src \"${src}\" is using unsupported \"ref\" property. Consider using the \"onLoad\" property instead.`\n )\n }\n\n if (!unoptimized && !isDefaultLoader) {\n const urlStr = loader({\n config,\n src,\n width: widthInt || 400,\n quality: qualityInt || 75,\n })\n let url: URL | undefined\n try {\n url = new URL(urlStr)\n } catch (err) {}\n if (urlStr === src || (url && url.pathname === src && !url.search)) {\n warnOnce(\n `Image with src \"${src}\" has a \"loader\" property that does not implement width. Please implement it or use the \"unoptimized\" property instead.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`\n )\n }\n }\n\n if (onLoadingComplete) {\n warnOnce(\n `Image with src \"${src}\" is using deprecated \"onLoadingComplete\" property. Please use the \"onLoad\" property instead.`\n )\n }\n\n for (const [legacyKey, legacyValue] of Object.entries({\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n })) {\n if (legacyValue) {\n warnOnce(\n `Image with src \"${src}\" has legacy prop \"${legacyKey}\". Did you forget to run the codemod?` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`\n )\n }\n }\n\n if (\n typeof window !== 'undefined' &&\n !perfObserver &&\n window.PerformanceObserver\n ) {\n perfObserver = new PerformanceObserver((entryList) => {\n for (const entry of entryList.getEntries()) {\n // @ts-ignore - missing \"LargestContentfulPaint\" class with \"element\" prop\n const imgSrc = entry?.element?.src || ''\n const lcpImage = allImgs.get(imgSrc)\n if (\n lcpImage &&\n lcpImage.loading === 'lazy' &&\n lcpImage.placeholder === 'empty' &&\n !lcpImage.src.startsWith('data:') &&\n !lcpImage.src.startsWith('blob:')\n ) {\n // https://web.dev/lcp/#measure-lcp-in-javascript\n warnOnce(\n `Image with src \"${lcpImage.src}\" was detected as the Largest Contentful Paint (LCP). Please add the \\`loading=\"eager\"\\` property if this image is above the fold.` +\n `\\nRead more: https://nextjs.org/docs/app/api-reference/components/image#loading`\n )\n }\n }\n })\n try {\n perfObserver.observe({\n type: 'largest-contentful-paint',\n buffered: true,\n })\n } catch (err) {\n // Log error but don't crash the app\n console.error(err)\n }\n }\n }\n const imgStyle = Object.assign(\n fill\n ? {\n position: 'absolute',\n height: '100%',\n width: '100%',\n left: 0,\n top: 0,\n right: 0,\n bottom: 0,\n objectFit,\n objectPosition,\n }\n : {},\n showAltText ? {} : { color: 'transparent' },\n style\n )\n\n const backgroundImage =\n !blurComplete && placeholder !== 'empty'\n ? placeholder === 'blur'\n ? `url(\"data:image/svg+xml;charset=utf-8,${getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL: blurDataURL || '', // assume not undefined\n objectFit: imgStyle.objectFit,\n })}\")`\n : `url(\"${placeholder}\")` // assume `data:image/`\n : null\n\n const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(\n imgStyle.objectFit\n )\n ? imgStyle.objectFit\n : imgStyle.objectFit === 'fill'\n ? '100% 100%' // the background-size equivalent of `fill`\n : 'cover'\n\n let placeholderStyle: PlaceholderStyle = backgroundImage\n ? {\n backgroundSize,\n backgroundPosition: imgStyle.objectPosition || '50% 50%',\n backgroundRepeat: 'no-repeat',\n backgroundImage,\n }\n : {}\n\n if (process.env.NODE_ENV === 'development') {\n if (\n placeholderStyle.backgroundImage &&\n placeholder === 'blur' &&\n blurDataURL?.startsWith('/')\n ) {\n // During `next dev`, we don't want to generate blur placeholders with webpack\n // because it can delay starting the dev server. Instead, `next-image-loader.js`\n // will inline a special url to lazily generate the blur placeholder at request time.\n placeholderStyle.backgroundImage = `url(\"${blurDataURL}\")`\n }\n }\n\n const imgAttributes = generateImgAttrs({\n config,\n src,\n unoptimized,\n width: widthInt,\n quality: qualityInt,\n sizes,\n loader,\n })\n\n const loadingFinal = isLazy ? 'lazy' : loading\n\n if (process.env.NODE_ENV !== 'production') {\n if (typeof window !== 'undefined') {\n let fullUrl: URL\n try {\n fullUrl = new URL(imgAttributes.src)\n } catch (e) {\n fullUrl = new URL(imgAttributes.src, window.location.href)\n }\n allImgs.set(fullUrl.href, { src, loading: loadingFinal, placeholder })\n }\n }\n\n const props: ImgProps = {\n ...rest,\n loading: loadingFinal,\n fetchPriority,\n width: widthInt,\n height: heightInt,\n decoding,\n className,\n style: { ...imgStyle, ...placeholderStyle },\n sizes: imgAttributes.sizes,\n srcSet: imgAttributes.srcSet,\n src: overrideSrc || imgAttributes.src,\n }\n const meta = { unoptimized, preload: preload || priority, placeholder, fill }\n return { props, meta }\n}\n","import type React from 'react'\nimport { Children, useEffect, useLayoutEffect, type JSX } from 'react'\n\ntype State = JSX.Element[] | undefined\n\nexport type SideEffectProps = {\n reduceComponentsToState: (components: Array>) => State\n handleStateChange?: (state: State) => void\n headManager: any\n children: React.ReactNode\n}\n\nconst isServer = typeof window === 'undefined'\nconst useClientOnlyLayoutEffect = isServer ? () => {} : useLayoutEffect\nconst useClientOnlyEffect = isServer ? () => {} : useEffect\n\nexport default function SideEffect(props: SideEffectProps) {\n const { headManager, reduceComponentsToState } = props\n\n function emitChange() {\n if (headManager && headManager.mountedInstances) {\n const headElements = Children.toArray(\n Array.from(headManager.mountedInstances as Set).filter(\n Boolean\n )\n ) as React.ReactElement[]\n headManager.updateHead(reduceComponentsToState(headElements))\n }\n }\n\n if (isServer) {\n headManager?.mountedInstances?.add(props.children)\n emitChange()\n }\n\n useClientOnlyLayoutEffect(() => {\n headManager?.mountedInstances?.add(props.children)\n return () => {\n headManager?.mountedInstances?.delete(props.children)\n }\n })\n\n // We need to call `updateHead` method whenever the `SideEffect` is trigger in all\n // life-cycles: mount, update, unmount. However, if there are multiple `SideEffect`s\n // being rendered, we only trigger the method from the last one.\n // This is ensured by keeping the last unflushed `updateHead` in the `_pendingUpdate`\n // singleton in the layout effect pass, and actually trigger it in the effect pass.\n useClientOnlyLayoutEffect(() => {\n if (headManager) {\n headManager._pendingUpdate = emitChange\n }\n return () => {\n if (headManager) {\n headManager._pendingUpdate = emitChange\n }\n }\n })\n\n useClientOnlyEffect(() => {\n if (headManager && headManager._pendingUpdate) {\n headManager._pendingUpdate()\n headManager._pendingUpdate = null\n }\n return () => {\n if (headManager && headManager._pendingUpdate) {\n headManager._pendingUpdate()\n headManager._pendingUpdate = null\n }\n }\n })\n\n return null\n}\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].HeadManagerContext\n","'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport Effect from './side-effect'\nimport { HeadManagerContext } from './head-manager-context.shared-runtime'\nimport { warnOnce } from './utils/warn-once'\n\nexport function defaultHead(): JSX.Element[] {\n const head = [\n ,\n ,\n ]\n return head\n}\n\nfunction onlyReactElement(\n list: Array>,\n child: React.ReactElement | number | string\n): Array> {\n // React children can be \"string\" or \"number\" in this case we ignore them for backwards compat\n if (typeof child === 'string' || typeof child === 'number') {\n return list\n }\n // Adds support for React.Fragment\n if (child.type === React.Fragment) {\n return list.concat(\n // @ts-expect-error @types/react does not remove fragments but this could also return ReactPortal[]\n React.Children.toArray(child.props.children).reduce(\n // @ts-expect-error @types/react does not remove fragments but this could also return ReactPortal[]\n (\n fragmentList: Array>,\n fragmentChild: React.ReactElement | number | string\n ): Array> => {\n if (\n typeof fragmentChild === 'string' ||\n typeof fragmentChild === 'number'\n ) {\n return fragmentList\n }\n return fragmentList.concat(fragmentChild)\n },\n []\n )\n )\n }\n return list.concat(child)\n}\n\nconst METATYPES = ['name', 'httpEquiv', 'charSet', 'itemProp']\n\n/*\n returns a function for filtering head child elements\n which shouldn't be duplicated, like \n Also adds support for deduplicated `key` properties\n*/\nfunction unique() {\n const keys = new Set()\n const tags = new Set()\n const metaTypes = new Set()\n const metaCategories: { [metatype: string]: Set<string> } = {}\n\n return (h: React.ReactElement<any>) => {\n let isUnique = true\n let hasKey = false\n\n if (h.key && typeof h.key !== 'number' && h.key.indexOf('$') > 0) {\n hasKey = true\n const key = h.key.slice(h.key.indexOf('$') + 1)\n if (keys.has(key)) {\n isUnique = false\n } else {\n keys.add(key)\n }\n }\n\n // eslint-disable-next-line default-case\n switch (h.type) {\n case 'title':\n case 'base':\n if (tags.has(h.type)) {\n isUnique = false\n } else {\n tags.add(h.type)\n }\n break\n case 'meta':\n for (let i = 0, len = METATYPES.length; i < len; i++) {\n const metatype = METATYPES[i]\n if (!h.props.hasOwnProperty(metatype)) continue\n\n if (metatype === 'charSet') {\n if (metaTypes.has(metatype)) {\n isUnique = false\n } else {\n metaTypes.add(metatype)\n }\n } else {\n const category = h.props[metatype]\n const categories = metaCategories[metatype] || new Set()\n if ((metatype !== 'name' || !hasKey) && categories.has(category)) {\n isUnique = false\n } else {\n categories.add(category)\n metaCategories[metatype] = categories\n }\n }\n }\n break\n }\n\n return isUnique\n }\n}\n\n/**\n *\n * @param headChildrenElements List of children of <Head>\n */\nfunction reduceComponents(\n headChildrenElements: Array<React.ReactElement<any>>\n) {\n return headChildrenElements\n .reduce(onlyReactElement, [])\n .reverse()\n .concat(defaultHead().reverse())\n .filter(unique())\n .reverse()\n .map((c: React.ReactElement<any>, i: number) => {\n const key = c.key || i\n if (process.env.NODE_ENV === 'development') {\n // omit JSON-LD structured data snippets from the warning\n if (c.type === 'script' && c.props['type'] !== 'application/ld+json') {\n const srcMessage = c.props['src']\n ? `<script> tag with src=\"${c.props['src']}\"`\n : `inline <script>`\n warnOnce(\n `Do not add <script> tags using next/head (see ${srcMessage}). Use next/script instead. \\nSee more info here: https://nextjs.org/docs/messages/no-script-tags-in-head-component`\n )\n } else if (c.type === 'link' && c.props['rel'] === 'stylesheet') {\n warnOnce(\n `Do not add stylesheets using next/head (see <link rel=\"stylesheet\"> tag with href=\"${c.props['href']}\"). Use Document instead. \\nSee more info here: https://nextjs.org/docs/messages/no-stylesheets-in-head-component`\n )\n }\n }\n return React.cloneElement(c, { key })\n })\n}\n\n/**\n * This component injects elements to `<head>` of your page.\n * To avoid duplicated `tags` in `<head>` you can use the `key` property, which will make sure every tag is only rendered once.\n */\nfunction Head({ children }: { children: React.ReactNode }) {\n const headManager = useContext(HeadManagerContext)\n return (\n <Effect\n reduceComponentsToState={reduceComponents}\n headManager={headManager}\n >\n {children}\n </Effect>\n )\n}\n\nexport default Head\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].ImageConfigContext\n","module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].RouterContext\n","import type { NextConfig } from '../../server/config-shared'\n\n/**\n * Find the closest matching `quality` in the list of `config.qualities`\n * @param quality the quality prop passed to the image component\n * @param config the \"images\" configuration from next.config.js\n * @returns the closest matching quality value\n */\nexport function findClosestQuality(\n quality: number | undefined,\n config: NextConfig['images'] | undefined\n): number {\n const q = quality || 75\n if (!config?.qualities?.length) {\n return q\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n config.qualities[0]\n )\n}\n","import type { ImageLoaderPropsWithConfig } from './image-config'\nimport { findClosestQuality } from './find-closest-quality'\nimport { getDeploymentId } from './deployment-id'\n\nfunction defaultLoader({\n config,\n src,\n width,\n quality,\n}: ImageLoaderPropsWithConfig): string {\n if (process.env.NODE_ENV !== 'production') {\n const missingValues = []\n\n // these should always be provided but make sure they are\n if (!src) missingValues.push('src')\n if (!width) missingValues.push('width')\n\n if (missingValues.length > 0) {\n throw new Error(\n `Next Image Optimization requires ${missingValues.join(\n ', '\n )} to be provided. Make sure you pass them as props to the \\`next/image\\` component. Received: ${JSON.stringify(\n { src, width, quality }\n )}`\n )\n }\n }\n\n // Extract dpl parameter early so validation uses the clean URL.\n // If a immutable asset token should be used, it was already added as a query parameter and will\n // be extracted and reused here.\n let deploymentId = getDeploymentId()\n if (src.startsWith('/') && !src.startsWith('//')) {\n // We unfortunately can't easily use `new URL()` here, because it normalizes the URL which causes\n // double-encoding with the `encodeURIComponent(src)` below\n const qIndex = src.indexOf('?')\n if (qIndex !== -1) {\n const params = new URLSearchParams(src.slice(qIndex + 1))\n const srcDpl = params.get('dpl')\n if (srcDpl) {\n deploymentId = srcDpl\n params.delete('dpl')\n const remaining = params.toString()\n src = src.slice(0, qIndex) + (remaining ? '?' + remaining : '')\n }\n }\n }\n\n if (\n src.startsWith('/') &&\n src.includes('?') &&\n config.localPatterns?.length === 1 &&\n config.localPatterns[0].pathname === '**' &&\n config.localPatterns[0].search === ''\n ) {\n throw new Error(\n `Image with src \"${src}\" is using a query string which is not configured in images.localPatterns.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (src.startsWith('//')) {\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`\n )\n }\n\n if (src.startsWith('/') && config.localPatterns) {\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasLocalMatch } =\n require('./match-local-pattern') as typeof import('./match-local-pattern')\n if (!hasLocalMatch(config.localPatterns, src)) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\` does not match \\`images.localPatterns\\` configured in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n }\n }\n\n if (!src.startsWith('/') && (config.domains || config.remotePatterns)) {\n let parsedSrc: URL\n try {\n parsedSrc = new URL(src)\n } catch (err) {\n console.error(err)\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, if using relative image it must start with a leading slash \"/\" or be an absolute URL (http:// or https://)`\n )\n }\n\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasRemoteMatch } =\n require('./match-remote-pattern') as typeof import('./match-remote-pattern')\n if (\n !hasRemoteMatch(config.domains!, config.remotePatterns!, parsedSrc)\n ) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\`, hostname \"${parsedSrc.hostname}\" is not configured under images in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`\n )\n }\n }\n }\n }\n\n const q = findClosestQuality(quality, config)\n\n return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${\n src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''\n }`\n}\n\n// We use this to determine if the import is the default loader\n// or a custom loader defined by the user in next.config.js\ndefaultLoader.__next_img_default = true\n\nexport default defaultLoader\n","'use client'\n\nimport React, {\n useRef,\n useEffect,\n useCallback,\n useContext,\n useMemo,\n useState,\n forwardRef,\n use,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport Head from '../shared/lib/head'\nimport { getImgProps } from '../shared/lib/get-img-props'\nimport type {\n ImageProps,\n ImgProps,\n OnLoad,\n OnLoadingComplete,\n PlaceholderValue,\n} from '../shared/lib/get-img-props'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n} from '../shared/lib/image-config'\nimport { imageConfigDefault } from '../shared/lib/image-config'\nimport { ImageConfigContext } from '../shared/lib/image-config-context.shared-runtime'\nimport { warnOnce } from '../shared/lib/utils/warn-once'\nimport { RouterContext } from '../shared/lib/router-context.shared-runtime'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\nimport { useMergedRef } from './use-merged-ref'\n\n// This is replaced by webpack define plugin\nconst configEnv = process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete\n\nif (typeof window === 'undefined') {\n ;(globalThis as any).__NEXT_IMAGE_IMPORTED = true\n}\n\nexport type { ImageLoaderProps }\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\ntype ImgElementWithDataProp = HTMLImageElement & {\n 'data-loaded-src': string | undefined\n}\n\ntype ImageElementProps = ImgProps & {\n unoptimized: boolean\n placeholder: PlaceholderValue\n onLoadRef: React.MutableRefObject<OnLoad | undefined>\n onLoadingCompleteRef: React.MutableRefObject<OnLoadingComplete | undefined>\n setBlurComplete: (b: boolean) => void\n setShowAltText: (b: boolean) => void\n sizesInput: string | undefined\n}\n\n// See https://stackoverflow.com/q/39777833/266535 for why we use this ref\n// handler instead of the img's onLoad attribute.\nfunction handleLoading(\n img: ImgElementWithDataProp,\n placeholder: PlaceholderValue,\n onLoadRef: React.MutableRefObject<OnLoad | undefined>,\n onLoadingCompleteRef: React.MutableRefObject<OnLoadingComplete | undefined>,\n setBlurComplete: (b: boolean) => void,\n unoptimized: boolean,\n sizesInput: string | undefined\n) {\n const src = img?.src\n if (!img || img['data-loaded-src'] === src) {\n return\n }\n img['data-loaded-src'] = src\n const p = 'decode' in img ? img.decode() : Promise.resolve()\n p.catch(() => {}).then(() => {\n if (!img.parentElement || !img.isConnected) {\n // Exit early in case of race condition:\n // - onload() is called\n // - decode() is called but incomplete\n // - unmount is called\n // - decode() completes\n return\n }\n if (placeholder !== 'empty') {\n setBlurComplete(true)\n }\n if (onLoadRef?.current) {\n // Since we don't have the SyntheticEvent here,\n // we must create one with the same shape.\n // See https://reactjs.org/docs/events.html\n const event = new Event('load')\n Object.defineProperty(event, 'target', { writable: false, value: img })\n let prevented = false\n let stopped = false\n onLoadRef.current({\n ...event,\n nativeEvent: event,\n currentTarget: img,\n target: img,\n isDefaultPrevented: () => prevented,\n isPropagationStopped: () => stopped,\n persist: () => {},\n preventDefault: () => {\n prevented = true\n event.preventDefault()\n },\n stopPropagation: () => {\n stopped = true\n event.stopPropagation()\n },\n })\n }\n if (onLoadingCompleteRef?.current) {\n onLoadingCompleteRef.current(img)\n }\n if (process.env.NODE_ENV !== 'production') {\n const origSrc = new URL(src, 'http://n').searchParams.get('url') || src\n if (img.getAttribute('data-nimg') === 'fill') {\n if (!unoptimized && (!sizesInput || sizesInput === '100vw')) {\n let widthViewportRatio =\n img.getBoundingClientRect().width / window.innerWidth\n if (widthViewportRatio < 0.6) {\n if (sizesInput === '100vw') {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" prop and \"sizes\" prop of \"100vw\", but image is not rendered at full viewport width. Please adjust \"sizes\" to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n } else {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" but is missing \"sizes\" prop. Please add it to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n }\n }\n }\n if (img.parentElement) {\n const { position } = window.getComputedStyle(img.parentElement)\n const valid = ['absolute', 'fixed', 'relative']\n if (!valid.includes(position)) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and parent element with invalid \"position\". Provided \"${position}\" should be one of ${valid\n .map(String)\n .join(',')}.`\n )\n }\n }\n if (img.height === 0) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and a height value of 0. This is likely because the parent element of the image has not been styled to have a set height.`\n )\n }\n }\n\n const heightModified =\n img.height.toString() !== img.getAttribute('height')\n const widthModified = img.width.toString() !== img.getAttribute('width')\n if (\n (heightModified && !widthModified) ||\n (!heightModified && widthModified)\n ) {\n warnOnce(\n `Image with src \"${origSrc}\" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: \"auto\"' or 'height: \"auto\"' to maintain the aspect ratio.`\n )\n }\n }\n })\n}\n\nfunction getDynamicProps(\n fetchPriority?: string\n): Record<string, string | undefined> {\n if (Boolean(use)) {\n // In React 19.0.0 or newer, we must use camelCase\n // prop to avoid \"Warning: Invalid DOM property\".\n // See https://github.com/facebook/react/pull/25927\n return { fetchPriority }\n }\n // In React 18.2.0 or older, we must use lowercase prop\n // to avoid \"Warning: Invalid DOM property\".\n return { fetchpriority: fetchPriority }\n}\n\nconst ImageElement = forwardRef<HTMLImageElement | null, ImageElementProps>(\n (\n {\n src,\n srcSet,\n sizes,\n height,\n width,\n decoding,\n className,\n style,\n fetchPriority,\n placeholder,\n loading,\n unoptimized,\n fill,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n setShowAltText,\n sizesInput,\n onLoad,\n onError,\n ...rest\n },\n forwardedRef\n ) => {\n const ownRef = useCallback(\n (img: ImgElementWithDataProp | null) => {\n if (!img) {\n return\n }\n if (onError) {\n // If the image has an error before react hydrates, then the error is lost.\n // The workaround is to wait until the image is mounted which is after hydration,\n // then we set the src again to trigger the error handler (if there was an error).\n // eslint-disable-next-line no-self-assign\n img.src = img.src\n }\n if (process.env.NODE_ENV !== 'production') {\n if (!src) {\n console.error(`Image is missing required \"src\" property:`, img)\n }\n if (img.getAttribute('alt') === null) {\n console.error(\n `Image is missing required \"alt\" property. Please add Alternative Text to describe the image for screen readers and search engines.`\n )\n }\n }\n if (img.complete) {\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }\n },\n [\n src,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n onError,\n unoptimized,\n sizesInput,\n ]\n )\n\n const ref = useMergedRef(forwardedRef, ownRef)\n\n return (\n <img\n {...rest}\n {...getDynamicProps(fetchPriority)}\n // It's intended to keep `loading` before `src` because React updates\n // props in order which causes Safari/Firefox to not lazy load properly.\n // See https://github.com/facebook/react/issues/25883\n loading={loading}\n width={width}\n height={height}\n decoding={decoding}\n data-nimg={fill ? 'fill' : '1'}\n className={className}\n style={style}\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n sizes={sizes}\n srcSet={srcSet}\n src={src}\n ref={ref}\n onLoad={(event) => {\n const img = event.currentTarget as ImgElementWithDataProp\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }}\n onError={(event) => {\n // if the real image fails to load, this will ensure \"alt\" is visible\n setShowAltText(true)\n if (placeholder !== 'empty') {\n // If the real image fails to load, this will still remove the placeholder.\n setBlurComplete(true)\n }\n if (onError) {\n onError(event)\n }\n }}\n />\n )\n }\n)\n\nfunction ImagePreload({\n isAppRouter,\n imgAttributes,\n}: {\n isAppRouter: boolean\n imgAttributes: ImgProps\n}) {\n const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSizes: imgAttributes.sizes,\n crossOrigin: imgAttributes.crossOrigin,\n referrerPolicy: imgAttributes.referrerPolicy,\n ...getDynamicProps(imgAttributes.fetchPriority),\n }\n\n if (isAppRouter && ReactDOM.preload) {\n ReactDOM.preload(imgAttributes.src, opts)\n return null\n }\n\n return (\n <Head>\n <link\n key={\n '__nimg-' +\n imgAttributes.src +\n imgAttributes.srcSet +\n imgAttributes.sizes\n }\n rel=\"preload\"\n // Note how we omit the `href` attribute, as it would only be relevant\n // for browsers that do not support `imagesrcset`, and in those cases\n // it would cause the incorrect image to be preloaded.\n //\n // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-imagesrcset\n href={imgAttributes.srcSet ? undefined : imgAttributes.src}\n {...opts}\n />\n </Head>\n )\n}\n\n/**\n * The `Image` component is used to optimize images.\n *\n * Read more: [Next.js docs: `Image`](https://nextjs.org/docs/app/api-reference/components/image)\n */\nexport const Image = forwardRef<HTMLImageElement | null, ImageProps>(\n (props, forwardedRef) => {\n const pagesRouter = useContext(RouterContext)\n // We're in the app directory if there is no pages router.\n const isAppRouter = !pagesRouter\n\n const configContext = useContext(ImageConfigContext)\n const config = useMemo(() => {\n const c = configEnv || configContext || imageConfigDefault\n\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n return {\n ...c,\n allSizes,\n deviceSizes,\n qualities,\n // During the SSR, configEnv (__NEXT_IMAGE_OPTS) does not include\n // security sensitive configs like `localPatterns`, which is needed\n // during the server render to ensure it's validated. Therefore use\n // configContext, which holds the config from the server for validation.\n localPatterns:\n typeof window === 'undefined'\n ? configContext?.localPatterns\n : c.localPatterns,\n }\n }, [configContext])\n\n const { onLoad, onLoadingComplete } = props\n const onLoadRef = useRef(onLoad)\n\n useEffect(() => {\n onLoadRef.current = onLoad\n }, [onLoad])\n\n const onLoadingCompleteRef = useRef(onLoadingComplete)\n\n useEffect(() => {\n onLoadingCompleteRef.current = onLoadingComplete\n }, [onLoadingComplete])\n\n const [blurComplete, setBlurComplete] = useState(false)\n const [showAltText, setShowAltText] = useState(false)\n const { props: imgAttributes, meta: imgMeta } = getImgProps(props, {\n defaultLoader,\n imgConf: config,\n blurComplete,\n showAltText,\n })\n\n return (\n <>\n {\n <ImageElement\n {...imgAttributes}\n unoptimized={imgMeta.unoptimized}\n placeholder={imgMeta.placeholder}\n fill={imgMeta.fill}\n onLoadRef={onLoadRef}\n onLoadingCompleteRef={onLoadingCompleteRef}\n setBlurComplete={setBlurComplete}\n setShowAltText={setShowAltText}\n sizesInput={props.sizes}\n ref={forwardedRef}\n />\n }\n {imgMeta.preload ? (\n <ImagePreload\n isAppRouter={isAppRouter}\n imgAttributes={imgAttributes}\n />\n ) : null}\n </>\n )\n }\n)\n"],"names":["getImageBlurSvg","widthInt","heightInt","blurWidth","blurHeight","blurDataURL","objectFit","std","svgWidth","svgHeight","viewBox","preserveAspectRatio","VALID_LOADERS","imageConfigDefault","deviceSizes","imageSizes","path","loader","loaderFile","domains","disableStaticImages","minimumCacheTTL","formats","maximumDiskCacheSize","undefined","maximumRedirects","maximumResponseBody","dangerouslyAllowLocalIP","dangerouslyAllowSVG","contentSecurityPolicy","contentDispositionType","localPatterns","remotePatterns","qualities","unoptimized","customCacheHandler","getImgProps","VALID_LOADING_VALUES","INVALID_BACKGROUND_SIZE_VALUES","isStaticRequire","src","default","isStaticImageData","isStaticImport","allImgs","Map","perfObserver","getInt","x","Number","isFinite","NaN","test","parseInt","getWidths","allSizes","width","sizes","viewportWidthRe","percentSizes","match","exec","push","length","smallestRatio","Math","min","widths","filter","s","kind","Set","map","w","find","p","generateImgAttrs","config","quality","startsWith","deploymentId","getDeploymentId","qIndex","indexOf","params","URLSearchParams","slice","srcDpl","get","append","toString","srcSet","last","i","join","priority","preload","loading","className","height","fill","style","overrideSrc","onLoad","onLoadingComplete","placeholder","fetchPriority","decoding","layout","objectPosition","lazyBoundary","lazyRoot","rest","_state","imgConf","showAltText","blurComplete","defaultLoader","c","sort","a","b","Error","isDefaultLoader","customImageLoader","obj","_","opts","layoutToStyle","intrinsic","maxWidth","responsive","layoutToSizes","layoutStyle","layoutSizes","staticSrc","staticImageData","JSON","stringify","ratio","round","isLazy","split","endsWith","qualityInt","process","env","NODE_ENV","output","position","isNaN","includes","String","warnOnce","VALID_BLUR_EXT","urlStr","url","URL","err","pathname","search","legacyKey","legacyValue","Object","entries","window","PerformanceObserver","entryList","entry","getEntries","imgSrc","element","lcpImage","observe","type","buffered","console","error","imgStyle","assign","left","top","right","bottom","color","backgroundImage","backgroundSize","placeholderStyle","backgroundPosition","backgroundRepeat","imgAttributes","loadingFinal","fullUrl","e","location","href","set","props","meta","SideEffect","isServer","useClientOnlyLayoutEffect","useLayoutEffect","useClientOnlyEffect","useEffect","headManager","reduceComponentsToState","emitChange","mountedInstances","headElements","Children","toArray","Array","from","Boolean","updateHead","add","children","delete","_pendingUpdate","module","exports","require","vendored","HeadManagerContext","defaultHead","head","charSet","name","content","onlyReactElement","list","child","React","Fragment","concat","reduce","fragmentList","fragmentChild","METATYPES","unique","keys","tags","metaTypes","metaCategories","h","isUnique","hasKey","key","has","len","metatype","hasOwnProperty","category","categories","reduceComponents","headChildrenElements","reverse","srcMessage","cloneElement","Head","useContext","Effect","ImageConfigContext","RouterContext","findClosestQuality","q","prev","cur","abs","missingValues","remaining","NEXT_RUNTIME","hasLocalMatch","parsedSrc","hasRemoteMatch","hostname","encodeURIComponent","__next_img_default","Image","configEnv","__NEXT_IMAGE_OPTS","globalThis","__NEXT_IMAGE_IMPORTED","handleLoading","img","onLoadRef","onLoadingCompleteRef","setBlurComplete","sizesInput","decode","Promise","resolve","catch","then","parentElement","isConnected","current","event","Event","defineProperty","writable","value","prevented","stopped","nativeEvent","currentTarget","target","isDefaultPrevented","isPropagationStopped","persist","preventDefault","stopPropagation","origSrc","searchParams","getAttribute","widthViewportRatio","getBoundingClientRect","innerWidth","getComputedStyle","valid","heightModified","widthModified","getDynamicProps","use","fetchpriority","ImageElement","forwardRef","setShowAltText","onError","forwardedRef","ownRef","useCallback","complete","ref","useMergedRef","data-nimg","ImagePreload","isAppRouter","as","imageSrcSet","crossOrigin","referrerPolicy","ReactDOM","link","rel","pagesRouter","configContext","useMemo","useRef","useState","imgMeta"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_11dij6w._.js b/.next/server/chunks/ssr/node_modules_next_dist_11dij6w._.js new file mode 100644 index 0000000..cf3e967 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_11dij6w._.js @@ -0,0 +1,6 @@ +module.exports=[20916,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"ReadonlyURLSearchParams",{enumerable:!0,get:function(){return e}});class d extends Error{constructor(){super("Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams")}}class e extends URLSearchParams{append(){throw new d}delete(){throw new d}set(){throw new d}sort(){throw new d}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},21170,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"RedirectStatusCode",{enumerable:!0,get:function(){return e}});var d,e=((d={})[d.SeeOther=303]="SeeOther",d[d.TemporaryRedirect=307]="TemporaryRedirect",d[d.PermanentRedirect=308]="PermanentRedirect",d);("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},28859,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={REDIRECT_ERROR_CODE:function(){return g},isRedirectError:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(21170),g="NEXT_REDIRECT";function h(a){if("object"!=typeof a||null===a||!("digest"in a)||"string"!=typeof a.digest)return!1;let b=a.digest.split(";"),[c,d]=b,e=b.slice(2,-2).join(";"),h=Number(b.at(-2));return c===g&&("replace"===d||"push"===d)&&"string"==typeof e&&!isNaN(h)&&h in f.RedirectStatusCode}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},44868,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={getRedirectError:function(){return i},getRedirectStatusCodeFromError:function(){return n},getRedirectTypeFromError:function(){return m},getURLFromRedirectError:function(){return l},permanentRedirect:function(){return k},redirect:function(){return j}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(21170),g=a.r(28859),h=a.r(20635).actionAsyncStorage;function i(a,b,c=f.RedirectStatusCode.TemporaryRedirect){let d=Object.defineProperty(Error(g.REDIRECT_ERROR_CODE),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});return d.digest=`${g.REDIRECT_ERROR_CODE};${b};${a};${c};`,d}function j(a,b){throw i(a,b??=h?.getStore()?.isAction?"push":"replace",f.RedirectStatusCode.TemporaryRedirect)}function k(a,b="replace"){throw i(a,b,f.RedirectStatusCode.PermanentRedirect)}function l(a){return(0,g.isRedirectError)(a)?a.digest.split(";").slice(2,-2).join(";"):null}function m(a){if(!(0,g.isRedirectError)(a))throw Object.defineProperty(Error("Not a redirect error"),"__NEXT_ERROR_CODE",{value:"E260",enumerable:!1,configurable:!0});return a.digest.split(";",2)[1]}function n(a){if(!(0,g.isRedirectError)(a))throw Object.defineProperty(Error("Not a redirect error"),"__NEXT_ERROR_CODE",{value:"E260",enumerable:!1,configurable:!0});return Number(a.digest.split(";").at(-2))}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},89798,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={HTTPAccessErrorStatus:function(){return f},HTTP_ERROR_FALLBACK_ERROR_CODE:function(){return h},getAccessFallbackErrorTypeByStatus:function(){return k},getAccessFallbackHTTPStatus:function(){return j},isHTTPAccessFallbackError:function(){return i}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f={NOT_FOUND:404,FORBIDDEN:403,UNAUTHORIZED:401},g=new Set(Object.values(f)),h="NEXT_HTTP_ERROR_FALLBACK";function i(a){if("object"!=typeof a||null===a||!("digest"in a)||"string"!=typeof a.digest)return!1;let[b,c]=a.digest.split(";");return b===h&&g.has(Number(c))}function j(a){return Number(a.digest.split(";")[1])}function k(a){switch(a){case 401:return"unauthorized";case 403:return"forbidden";case 404:return"not-found";default:return}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},16155,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"notFound",{enumerable:!0,get:function(){return f}});let d=a.r(89798),e=`${d.HTTP_ERROR_FALLBACK_ERROR_CODE};404`;function f(){let a=Object.defineProperty(Error(e),"__NEXT_ERROR_CODE",{value:"E1041",enumerable:!1,configurable:!0});throw a.digest=e,a}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},34557,(a,b,c)=>{"use strict";function d(){throw Object.defineProperty(Error("`forbidden()` is experimental and only allowed to be enabled when `experimental.authInterrupts` is enabled."),"__NEXT_ERROR_CODE",{value:"E488",enumerable:!1,configurable:!0})}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"forbidden",{enumerable:!0,get:function(){return d}}),a.r(89798).HTTP_ERROR_FALLBACK_ERROR_CODE,("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},93845,(a,b,c)=>{"use strict";function d(){throw Object.defineProperty(Error("`unauthorized()` is experimental and only allowed to be used when `experimental.authInterrupts` is enabled."),"__NEXT_ERROR_CODE",{value:"E411",enumerable:!1,configurable:!0})}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"unauthorized",{enumerable:!0,get:function(){return d}}),a.r(89798).HTTP_ERROR_FALLBACK_ERROR_CODE,("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},28340,(a,b,c)=>{"use strict";function d(){let a,b,c=new Promise((c,d)=>{a=c,b=d});return{resolve:a,reject:b,promise:c}}Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"createPromiseWithResolvers",{enumerable:!0,get:function(){return d}})},31382,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d,e={RenderStage:function(){return i},StagedRenderingController:function(){return j}};for(var f in e)Object.defineProperty(c,f,{enumerable:!0,get:e[f]});let g=a.r(50640),h=a.r(28340);var i=((d={})[d.Before=1]="Before",d[d.EarlyStatic=2]="EarlyStatic",d[d.Static=3]="Static",d[d.EarlyRuntime=4]="EarlyRuntime",d[d.Runtime=5]="Runtime",d[d.Dynamic=6]="Dynamic",d[d.Abandoned=7]="Abandoned",d);class j{constructor(a,b,c){this.abortSignal=a,this.abandonController=b,this.shouldTrackSyncIO=c,this.currentStage=1,this.syncInterruptReason=null,this.staticStageEndTime=1/0,this.runtimeStageEndTime=1/0,this.staticStageListeners=[],this.earlyRuntimeStageListeners=[],this.runtimeStageListeners=[],this.dynamicStageListeners=[],this.staticStagePromise=(0,h.createPromiseWithResolvers)(),this.earlyRuntimeStagePromise=(0,h.createPromiseWithResolvers)(),this.runtimeStagePromise=(0,h.createPromiseWithResolvers)(),this.dynamicStagePromise=(0,h.createPromiseWithResolvers)(),a&&a.addEventListener("abort",()=>{let{reason:b}=a;this.staticStagePromise.promise.catch(k),this.staticStagePromise.reject(b),this.earlyRuntimeStagePromise.promise.catch(k),this.earlyRuntimeStagePromise.reject(b),this.runtimeStagePromise.promise.catch(k),this.runtimeStagePromise.reject(b),this.dynamicStagePromise.promise.catch(k),this.dynamicStagePromise.reject(b)},{once:!0}),b&&b.signal.addEventListener("abort",()=>{this.abandonRender()},{once:!0})}onStage(a,b){if(this.currentStage>=a)b();else if(3===a)this.staticStageListeners.push(b);else if(4===a)this.earlyRuntimeStageListeners.push(b);else if(5===a)this.runtimeStageListeners.push(b);else if(6===a)this.dynamicStageListeners.push(b);else throw Object.defineProperty(new g.InvariantError(`Invalid render stage: ${a}`),"__NEXT_ERROR_CODE",{value:"E881",enumerable:!1,configurable:!0})}shouldTrackSyncInterrupt(){if(!this.shouldTrackSyncIO)return!1;switch(this.currentStage){case 1:case 5:case 6:case 7:default:return!1;case 2:case 3:case 4:return!0}}syncInterruptCurrentStageWithReason(a){if(1!==this.currentStage&&7!==this.currentStage){if(this.abandonController)return void this.abandonController.abort();if(this.abortSignal){this.syncInterruptReason=a,this.currentStage=7;return}switch(this.currentStage){case 2:case 3:case 4:this.syncInterruptReason=a,this.advanceStage(6);return;case 5:return}}}getSyncInterruptReason(){return this.syncInterruptReason}getStaticStageEndTime(){return this.staticStageEndTime}getRuntimeStageEndTime(){return this.runtimeStageEndTime}abandonRender(){let{currentStage:a}=this;switch(a){case 2:this.resolveStaticStage();case 3:this.resolveEarlyRuntimeStage();case 4:this.resolveRuntimeStage();case 5:this.currentStage=7;return}}advanceStage(a){if(a<=this.currentStage)return;let b=this.currentStage;if(this.currentStage=a,b<3&&a>=3&&this.resolveStaticStage(),b<4&&a>=4&&this.resolveEarlyRuntimeStage(),b<5&&a>=5&&(this.staticStageEndTime=performance.now()+performance.timeOrigin,this.resolveRuntimeStage()),b<6&&a>=6){this.runtimeStageEndTime=performance.now()+performance.timeOrigin,this.resolveDynamicStage();return}}resolveStaticStage(){let a=this.staticStageListeners;for(let b=0;b<a.length;b++)a[b]();a.length=0,this.staticStagePromise.resolve()}resolveEarlyRuntimeStage(){let a=this.earlyRuntimeStageListeners;for(let b=0;b<a.length;b++)a[b]();a.length=0,this.earlyRuntimeStagePromise.resolve()}resolveRuntimeStage(){let a=this.runtimeStageListeners;for(let b=0;b<a.length;b++)a[b]();a.length=0,this.runtimeStagePromise.resolve()}resolveDynamicStage(){let a=this.dynamicStageListeners;for(let b=0;b<a.length;b++)a[b]();a.length=0,this.dynamicStagePromise.resolve()}getStagePromise(a){switch(a){case 3:return this.staticStagePromise.promise;case 4:return this.earlyRuntimeStagePromise.promise;case 5:return this.runtimeStagePromise.promise;case 6:return this.dynamicStagePromise.promise;default:throw Object.defineProperty(new g.InvariantError(`Invalid render stage: ${a}`),"__NEXT_ERROR_CODE",{value:"E881",enumerable:!1,configurable:!0})}}waitForStage(a){return this.getStagePromise(a)}delayUntilStage(a,b,c){var d,e,f;let g,h=(d=this.getStagePromise(a),e=b,f=c,g=new Promise((a,b)=>{d.then(a.bind(null,f),b)}),void 0!==e&&(g.displayName=e),g);return this.abortSignal&&h.catch(k),h}}function k(){}},13091,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={delayUntilRuntimeStage:function(){return o},getRuntimeStage:function(){return n},isHangingPromiseRejectionError:function(){return g},makeDevtoolsIOAwarePromise:function(){return m},makeHangingPromise:function(){return k}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(31382);function g(a){return"object"==typeof a&&null!==a&&"digest"in a&&a.digest===h}let h="HANGING_PROMISE_REJECTION";class i extends Error{constructor(a,b){super(`During prerendering, ${b} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${b} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${a}".`),this.route=a,this.expression=b,this.digest=h}}let j=new WeakMap;function k(a,b,c){if(a.aborted)return Promise.reject(new i(b,c));{let d=new Promise((d,e)=>{let f=e.bind(null,new i(b,c)),g=j.get(a);if(g)g.push(f);else{let b=[f];j.set(a,b),a.addEventListener("abort",()=>{for(let a=0;a<b.length;a++)b[a]()},{once:!0})}});return d.catch(l),d}}function l(){}function m(a,b,c){return b.stagedRendering?b.stagedRendering.delayUntilStage(c,void 0,a):new Promise(b=>{setTimeout(()=>{b(a)},0)})}function n(a){return a.currentStage===f.RenderStage.EarlyStatic||a.currentStage===f.RenderStage.EarlyRuntime?f.RenderStage.EarlyRuntime:f.RenderStage.Runtime}function o(a,b){let{stagedRendering:c}=a;return c?c.waitForStage(n(c)).then(()=>b):b}},73808,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"isPostpone",{enumerable:!0,get:function(){return e}});let d=Symbol.for("react.postpone");function e(a){return"object"==typeof a&&null!==a&&a.$$typeof===d}},49640,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={BailoutToCSRError:function(){return g},isBailoutToCSRError:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="BAILOUT_TO_CLIENT_SIDE_RENDERING";class g extends Error{constructor(a){super(`Bail out to client-side rendering: ${a}`),this.reason=a,this.digest=f}}function h(a){return"object"==typeof a&&null!==a&&"digest"in a&&a.digest===f}},1567,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"isNextRouterError",{enumerable:!0,get:function(){return f}});let d=a.r(89798),e=a.r(28859);function f(a){return(0,e.isRedirectError)(a)||(0,d.isHTTPAccessFallbackError)(a)}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},96556,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={DynamicServerError:function(){return g},isDynamicServerError:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="DYNAMIC_SERVER_USAGE";class g extends Error{constructor(a){super(`Dynamic server usage: ${a}`),this.description=a,this.digest=f}}function h(a){return"object"==typeof a&&null!==a&&"digest"in a&&"string"==typeof a.digest&&a.digest===f}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},60312,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={StaticGenBailoutError:function(){return g},isStaticGenBailoutError:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="NEXT_STATIC_GEN_BAILOUT";class g extends Error{constructor(...a){super(...a),this.code=f}}function h(a){return"object"==typeof a&&null!==a&&"code"in a&&a.code===f}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},17491,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={METADATA_BOUNDARY_NAME:function(){return f},OUTLET_BOUNDARY_NAME:function(){return h},ROOT_LAYOUT_BOUNDARY_NAME:function(){return i},VIEWPORT_BOUNDARY_NAME:function(){return g}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f="__next_metadata_boundary__",g="__next_viewport_boundary__",h="__next_outlet_boundary__",i="__next_root_layout_boundary__"},61933,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={atLeastOneTask:function(){return h},scheduleImmediate:function(){return g},scheduleOnNextTick:function(){return f},waitAtLeastOneReactRenderTask:function(){return i}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a=>{Promise.resolve().then(()=>{process.nextTick(a)})},g=a=>{setImmediate(a)};function h(){return new Promise(a=>g(a))}function i(){return new Promise(a=>setImmediate(a))}},99195,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"INSTANT_VALIDATION_BOUNDARY_NAME",{enumerable:!0,get:function(){return d}});let d="__next_instant_validation_boundary__"},60384,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d,e,f,g={DynamicHoleKind:function(){return $},Postpone:function(){return D},PreludeState:function(){return af},abortAndThrowOnSynchronousRequestDataAccess:function(){return C},abortOnSynchronousPlatformIOAccess:function(){return B},accessedDynamicData:function(){return L},annotateDynamicAccess:function(){return Q},consumeDynamicAccess:function(){return M},createDynamicTrackingState:function(){return u},createDynamicValidationState:function(){return v},createHangingInputAbortSignal:function(){return P},createInstantValidationState:function(){return _},createRenderInBrowserAbortSignal:function(){return O},formatDynamicAPIAccesses:function(){return N},getFirstDynamicReason:function(){return w},getNavigationDisallowedDynamicReasons:function(){return aj},getStaticShellDisallowedDynamicReasons:function(){return ai},isDynamicPostpone:function(){return G},isPrerenderInterruptedError:function(){return K},logDisallowedDynamicError:function(){return ag},markCurrentScopeAsDynamic:function(){return x},postponeWithTracking:function(){return E},throwIfDisallowedDynamic:function(){return ah},throwToInterruptStaticGeneration:function(){return y},trackAllowedDynamicAccess:function(){return Z},trackDynamicDataInDynamicRender:function(){return z},trackDynamicHoleInNavigation:function(){return aa},trackDynamicHoleInRuntimeShell:function(){return ac},trackDynamicHoleInStaticShell:function(){return ad},trackThrownErrorInNavigation:function(){return ab},useDynamicRouteParams:function(){return R},useDynamicSearchParams:function(){return S}};for(var h in g)Object.defineProperty(c,h,{enumerable:!0,get:g[h]});let i=(d=a.r(717))&&d.__esModule?d:{default:d},j=a.r(96556),k=a.r(60312),l=a.r(32319),m=a.r(56704),n=a.r(13091),o=a.r(17491),p=a.r(61933),q=a.r(49640),r=a.r(50640),s=a.r(99195),t="function"==typeof i.default.unstable_postpone;function u(a){return{isDebugDynamicAccesses:a,dynamicAccesses:[],syncDynamicErrorWithStack:null}}function v(){return{hasSuspenseAboveBody:!1,hasDynamicMetadata:!1,dynamicMetadata:null,hasDynamicViewport:!1,hasAllowedDynamic:!1,dynamicErrors:[]}}function w(a){var b;return null==(b=a.dynamicAccesses[0])?void 0:b.expression}function x(a,b,c){if(b)switch(b.type){case"cache":case"unstable-cache":case"private-cache":return}if(!a.forceDynamic&&!a.forceStatic){if(a.dynamicShouldError)throw Object.defineProperty(new k.StaticGenBailoutError(`Route ${a.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${c}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`),"__NEXT_ERROR_CODE",{value:"E553",enumerable:!1,configurable:!0});if(b)switch(b.type){case"prerender-ppr":return E(a.route,c,b.dynamicTracking);case"prerender-legacy":b.revalidate=0;let d=Object.defineProperty(new j.DynamicServerError(`Route ${a.route} couldn't be rendered statically because it used ${c}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E550",enumerable:!1,configurable:!0});throw a.dynamicUsageDescription=c,a.dynamicUsageStack=d.stack,d}}}function y(a,b,c){let d=Object.defineProperty(new j.DynamicServerError(`Route ${b.route} couldn't be rendered statically because it used \`${a}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`),"__NEXT_ERROR_CODE",{value:"E558",enumerable:!1,configurable:!0});throw c.revalidate=0,b.dynamicUsageDescription=a,b.dynamicUsageStack=d.stack,d}function z(a){switch(a.type){case"cache":case"unstable-cache":case"private-cache":return}}function A(a,b,c){let d=J(`Route ${a} needs to bail out of prerendering at this point because it used ${b}.`);c.controller.abort(d);let e=c.dynamicTracking;e&&e.dynamicAccesses.push({stack:e.isDebugDynamicAccesses?Error().stack:void 0,expression:b})}function B(a,b,c,d){let e=d.dynamicTracking;A(a,b,d),e&&null===e.syncDynamicErrorWithStack&&(e.syncDynamicErrorWithStack=c)}function C(a,b,c,d){if(!1===d.controller.signal.aborted){A(a,b,d);let e=d.dynamicTracking;e&&null===e.syncDynamicErrorWithStack&&(e.syncDynamicErrorWithStack=c)}throw J(`Route ${a} needs to bail out of prerendering at this point because it used ${b}.`)}function D({reason:a,route:b}){let c=l.workUnitAsyncStorage.getStore();E(b,a,c&&"prerender-ppr"===c.type?c.dynamicTracking:null)}function E(a,b,c){(function(){if(!t)throw Object.defineProperty(Error("Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E224",enumerable:!1,configurable:!0})})(),c&&c.dynamicAccesses.push({stack:c.isDebugDynamicAccesses?Error().stack:void 0,expression:b}),i.default.unstable_postpone(F(a,b))}function F(a,b){return`Route ${a} needs to bail out of prerendering at this point because it used ${b}. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`}function G(a){return"object"==typeof a&&null!==a&&"string"==typeof a.message&&H(a.message)}function H(a){return a.includes("needs to bail out of prerendering at this point because it used")&&a.includes("Learn more: https://nextjs.org/docs/messages/ppr-caught-error")}if(!1===H(F("%%%","^^^")))throw Object.defineProperty(Error("Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E296",enumerable:!1,configurable:!0});let I="NEXT_PRERENDER_INTERRUPTED";function J(a){let b=Object.defineProperty(Error(a),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});return b.digest=I,b}function K(a){return"object"==typeof a&&null!==a&&a.digest===I&&"name"in a&&"message"in a&&a instanceof Error}function L(a){return a.length>0}function M(a,b){return a.dynamicAccesses.push(...b.dynamicAccesses),a.dynamicAccesses}function N(a){return a.filter(a=>"string"==typeof a.stack&&a.stack.length>0).map(({expression:a,stack:b})=>(b=b.split("\n").slice(4).filter(a=>!(a.includes("node_modules/next/")||a.includes(" (<anonymous>)")||a.includes(" (node:"))).join("\n"),`Dynamic API Usage Debug - ${a}: +${b}`))}function O(){let a=new AbortController;return a.abort(Object.defineProperty(new q.BailoutToCSRError("Render in Browser"),"__NEXT_ERROR_CODE",{value:"E721",enumerable:!1,configurable:!0})),a.signal}function P(a){switch(a.type){case"prerender":case"prerender-runtime":let b=new AbortController;if(a.cacheSignal)a.cacheSignal.inputReady().then(()=>{b.abort()});else if("prerender-runtime"===a.type&&a.stagedRendering){let{stagedRendering:c}=a;c.waitForStage((0,n.getRuntimeStage)(c)).then(()=>(0,p.scheduleOnNextTick)(()=>b.abort()))}else(0,p.scheduleOnNextTick)(()=>b.abort());return b.signal;case"prerender-client":case"validation-client":case"prerender-ppr":case"prerender-legacy":case"request":case"cache":case"private-cache":case"unstable-cache":case"generate-static-params":return}}function Q(a,b){let c=b.dynamicTracking;c&&c.dynamicAccesses.push({stack:c.isDebugDynamicAccesses?Error().stack:void 0,expression:a})}function R(a){let b=m.workAsyncStorage.getStore(),c=l.workUnitAsyncStorage.getStore();if(b&&c)switch(c.type){case"prerender-client":case"prerender":{let d=c.fallbackRouteParams;d&&d.size>0&&i.default.use((0,n.makeHangingPromise)(c.renderSignal,b.route,a));break}case"prerender-ppr":{let d=c.fallbackRouteParams;if(d&&d.size>0)return E(b.route,a,c.dynamicTracking);break}case"validation-client":case"prerender-legacy":case"request":case"unstable-cache":break;case"prerender-runtime":throw Object.defineProperty(new r.InvariantError(`\`${a}\` was called during a runtime prerender. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E771",enumerable:!1,configurable:!0});case"cache":case"private-cache":throw Object.defineProperty(new r.InvariantError(`\`${a}\` was called inside a cache scope. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E745",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new r.InvariantError(`\`${a}\` was called in \`generateStaticParams\`. Next.js should be preventing ${a} from being included in server component files statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E1130",enumerable:!1,configurable:!0})}}function S(a){let b=m.workAsyncStorage.getStore(),c=l.workUnitAsyncStorage.getStore();if(b)switch(!c&&(0,l.throwForMissingRequestStore)(a),c.type){case"validation-client":case"request":return;case"prerender-client":i.default.use((0,n.makeHangingPromise)(c.renderSignal,b.route,a));break;case"prerender-legacy":case"prerender-ppr":if(b.forceStatic)return;throw Object.defineProperty(new q.BailoutToCSRError(a),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});case"prerender":case"prerender-runtime":throw Object.defineProperty(new r.InvariantError(`\`${a}\` was called from a Server Component. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E795",enumerable:!1,configurable:!0});case"cache":case"unstable-cache":case"private-cache":throw Object.defineProperty(new r.InvariantError(`\`${a}\` was called inside a cache scope. Next.js should be preventing ${a} from being included in server components statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E745",enumerable:!1,configurable:!0});case"generate-static-params":throw Object.defineProperty(new r.InvariantError(`\`${a}\` was called in \`generateStaticParams\`. Next.js should be preventing ${a} from being included in server component files statically, but did not in this case.`),"__NEXT_ERROR_CODE",{value:"E1130",enumerable:!1,configurable:!0})}}let T=/\n\s+at Suspense \(<anonymous>\)/,U=RegExp(`\\n\\s+at Suspense \\(<anonymous>\\)(?:(?!\\n\\s+at (?:body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6) \\(<anonymous>\\))[\\s\\S])*?\\n\\s+at ${o.ROOT_LAYOUT_BOUNDARY_NAME} \\([^\\n]*\\)`),V=RegExp(`\\n\\s+at ${o.METADATA_BOUNDARY_NAME}[\\n\\s]`),W=RegExp(`\\n\\s+at ${o.VIEWPORT_BOUNDARY_NAME}[\\n\\s]`),X=RegExp(`\\n\\s+at ${o.OUTLET_BOUNDARY_NAME}[\\n\\s]`),Y=RegExp(`\\n\\s+at ${s.INSTANT_VALIDATION_BOUNDARY_NAME}[\\n\\s]`);function Z(a,b,c,d){if(!X.test(b)){if(V.test(b)){c.hasDynamicMetadata=!0;return}if(W.test(b)){c.hasDynamicViewport=!0;return}if(U.test(b)){c.hasAllowedDynamic=!0,c.hasSuspenseAboveBody=!0;return}else if(T.test(b)){c.hasAllowedDynamic=!0;return}else{if(d.syncDynamicErrorWithStack)return void c.dynamicErrors.push(d.syncDynamicErrorWithStack);let e=ae(Object.defineProperty(Error(`Route "${a.route}": Uncached data was accessed outside of <Suspense>. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1079",enumerable:!1,configurable:!0}),b,null);return void c.dynamicErrors.push(e)}}}var $=((e={})[e.Runtime=1]="Runtime",e[e.Dynamic=2]="Dynamic",e);function _(a){return{hasDynamicMetadata:!1,hasAllowedClientDynamicAboveBoundary:!1,dynamicMetadata:null,hasDynamicViewport:!1,hasAllowedDynamic:!1,dynamicErrors:[],validationPreventingErrors:[],thrownErrorsOutsideBoundary:[],createInstantStack:a}}function aa(a,b,c,d,e,f){if(X.test(b))return;if(V.test(b)){let d=ae(Object.defineProperty(Error(`Route "${a.route}": ${1===e?"Runtime data such as `cookies()`, `headers()`, `params`, or `searchParams` was accessed inside `generateMetadata` or you have file-based metadata such as icons that depend on dynamic params segments.":"Uncached data or `connection()` was accessed inside `generateMetadata`."} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1076",enumerable:!1,configurable:!0}),b,c.createInstantStack);c.dynamicMetadata=d;return}if(W.test(b)){let d=ae(Object.defineProperty(Error(`Route "${a.route}": ${1===e?"Runtime data such as `cookies()`, `headers()`, `params`, or `searchParams` was accessed inside `generateViewport`.":"Uncached data or `connection()` was accessed inside `generateViewport`."} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1086",enumerable:!1,configurable:!0}),b,c.createInstantStack);c.dynamicErrors.push(d);return}let g=Y.exec(b);if(g){let a=T.exec(b);if(a&&a.index<g.index){c.hasAllowedDynamic=!0;return}}else if(f.expectedIds.size===f.renderedIds.size){c.hasAllowedClientDynamicAboveBoundary=!0,c.hasAllowedDynamic=!0;return}else{let d=ae(Object.defineProperty(Error(`Route "${a.route}": Could not validate \`unstable_instant\` because a Client Component in a parent segment prevented the page from rendering.`),"__NEXT_ERROR_CODE",{value:"E1082",enumerable:!1,configurable:!0}),b,c.createInstantStack);c.validationPreventingErrors.push(d);return}if(d.syncDynamicErrorWithStack){let a=d.syncDynamicErrorWithStack;null!==c.createInstantStack&&void 0===a.cause&&(a.cause=c.createInstantStack()),c.dynamicErrors.push(a);return}let h=ae(Object.defineProperty(Error(`Route "${a.route}": ${1===e?"Runtime data such as `cookies()`, `headers()`, `params`, or `searchParams` was accessed outside of `<Suspense>`.":"Uncached data or `connection()` was accessed outside of `<Suspense>`."} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1078",enumerable:!1,configurable:!0}),b,c.createInstantStack);c.dynamicErrors.push(h)}function ab(a,b,c,d){let e=Y.exec(d);if(e){let f=T.exec(d);if(f&&f.index<e.index)return;let g=ae(Object.defineProperty(Error(`Route "${a.route}": Could not validate \`unstable_instant\` because an error prevented the target segment from rendering.`,{cause:c}),"__NEXT_ERROR_CODE",{value:"E1112",enumerable:!1,configurable:!0}),d,null);b.validationPreventingErrors.push(g)}else{let a=ae(Object.defineProperty(Error("An error occurred while attempting to validate instant UI. This error may be preventing the validation from completing.",{cause:c}),"__NEXT_ERROR_CODE",{value:"E1118",enumerable:!1,configurable:!0}),d,null);b.thrownErrorsOutsideBoundary.push(a)}}function ac(a,b,c,d){if(X.test(b))return;if(V.test(b)){c.dynamicMetadata=ae(Object.defineProperty(Error(`Route "${a.route}": Uncached data or \`connection()\` was accessed inside \`generateMetadata\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1080",enumerable:!1,configurable:!0}),b,null);return}if(W.test(b)){let d=ae(Object.defineProperty(Error(`Route "${a.route}": Uncached data or \`connection()\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1077",enumerable:!1,configurable:!0}),b,null);c.dynamicErrors.push(d);return}if(U.test(b)){c.hasAllowedDynamic=!0,c.hasSuspenseAboveBody=!0;return}if(T.test(b)){c.hasAllowedDynamic=!0;return}else if(d.syncDynamicErrorWithStack)return void c.dynamicErrors.push(d.syncDynamicErrorWithStack);let e=ae(Object.defineProperty(Error(`Route "${a.route}": Uncached data or \`connection()\` was accessed outside of \`<Suspense>\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1084",enumerable:!1,configurable:!0}),b,null);c.dynamicErrors.push(e)}function ad(a,b,c,d){if(!X.test(b)){if(V.test(b)){c.dynamicMetadata=ae(Object.defineProperty(Error(`Route "${a.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),"__NEXT_ERROR_CODE",{value:"E1085",enumerable:!1,configurable:!0}),b,null);return}if(W.test(b)){let d=ae(Object.defineProperty(Error(`Route "${a.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),"__NEXT_ERROR_CODE",{value:"E1081",enumerable:!1,configurable:!0}),b,null);c.dynamicErrors.push(d);return}if(U.test(b)){c.hasAllowedDynamic=!0,c.hasSuspenseAboveBody=!0;return}else if(T.test(b)){c.hasAllowedDynamic=!0;return}else{if(d.syncDynamicErrorWithStack)return void c.dynamicErrors.push(d.syncDynamicErrorWithStack);let e=ae(Object.defineProperty(Error(`Route "${a.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`<Suspense>\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`),"__NEXT_ERROR_CODE",{value:"E1083",enumerable:!1,configurable:!0}),b,null);return void c.dynamicErrors.push(e)}}}function ae(a,b,c){return null!==c&&(a.cause=c()),a.stack=a.name+": "+a.message+b,a}var af=((f={})[f.Full=0]="Full",f[f.Empty=1]="Empty",f[f.Errored=2]="Errored",f);function ag(a,b){console.error(b),console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: + - Start the app in development mode by running \`next dev\`, then open "${a.route}" in your browser to investigate the error. + - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`)}function ah(a,b,c,d){if(d.syncDynamicErrorWithStack)throw ag(a,d.syncDynamicErrorWithStack),new k.StaticGenBailoutError;if(0!==b){if(c.hasSuspenseAboveBody)return;let d=c.dynamicErrors;if(d.length>0){for(let b=0;b<d.length;b++)ag(a,d[b]);throw new k.StaticGenBailoutError}if(c.hasDynamicViewport)throw console.error(`Route "${a.route}" has a \`generateViewport\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`),new k.StaticGenBailoutError;if(1===b)throw console.error(`Route "${a.route}" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`),new k.StaticGenBailoutError}else if(!1===c.hasAllowedDynamic&&c.hasDynamicMetadata)throw console.error(`Route "${a.route}" has a \`generateMetadata\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`),new k.StaticGenBailoutError}function ai(a,b,c,d){if(d||c.hasSuspenseAboveBody)return[];if(0!==b){let d=c.dynamicErrors;if(d.length>0)return d;if(1===b)return[Object.defineProperty(new r.InvariantError(`Route "${a.route}" did not produce a static shell and Next.js was unable to determine a reason.`),"__NEXT_ERROR_CODE",{value:"E936",enumerable:!1,configurable:!0})]}else if(!1===c.hasAllowedDynamic&&0===c.dynamicErrors.length&&c.dynamicMetadata)return[c.dynamicMetadata];return[]}function aj(a,b,c,d,e){if(d){let{missingSampleErrors:a}=d;if(a.length>0)return a}let{validationPreventingErrors:f}=c;if(f.length>0)return f;if(e.renderedIds.size<e.expectedIds.size){let{thrownErrorsOutsideBoundary:b,createInstantStack:d}=c;if(0===b.length){let b=`Route "${a.route}": Could not validate \`unstable_instant\` because the target segment was prevented from rendering for an unknown reason.`,c=null!==d?d():Error();return c.name="Error",c.message=b,[c]}if(1===b.length){let c=`Route "${a.route}": Could not validate \`unstable_instant\` because the target segment was prevented from rendering, likely due to the following error.`,e=null!==d?d():Error();return e.name="Error",e.message=c,[e,b[0]]}{let c=`Route "${a.route}": Could not validate \`unstable_instant\` because the target segment was prevented from rendering, likely due to one of the following errors.`,e=null!==d?d():Error();return e.name="Error",e.message=c,[e,...b]}}if(0!==b){let d=c.dynamicErrors;if(d.length>0)return d;if(1===b)return c.hasAllowedClientDynamicAboveBoundary?[]:[Object.defineProperty(new r.InvariantError(`Route "${a.route}" failed to render during instant validation and Next.js was unable to determine a reason.`),"__NEXT_ERROR_CODE",{value:"E1055",enumerable:!1,configurable:!0})]}else{let a=c.dynamicErrors;if(a.length>0)return a;if(!1===c.hasAllowedDynamic&&c.dynamicMetadata)return[c.dynamicMetadata]}return[]}},94783,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"unstable_rethrow",{enumerable:!0,get:function(){return function a(b){if((0,g.isNextRouterError)(b)||(0,f.isBailoutToCSRError)(b)||(0,i.isDynamicServerError)(b)||(0,h.isDynamicPostpone)(b)||(0,e.isPostpone)(b)||(0,d.isHangingPromiseRejectionError)(b)||(0,h.isPrerenderInterruptedError)(b))throw b;b instanceof Error&&"cause"in b&&a(b.cause)}}});let d=a.r(13091),e=a.r(73808),f=a.r(49640),g=a.r(1567),h=a.r(60384),i=a.r(96556);("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},60968,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"unstable_rethrow",{enumerable:!0,get:function(){return d}});let d=a.r(94783).unstable_rethrow;("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},73727,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={ReadonlyURLSearchParams:function(){return f.ReadonlyURLSearchParams},RedirectType:function(){return m},forbidden:function(){return i.forbidden},notFound:function(){return h.notFound},permanentRedirect:function(){return g.permanentRedirect},redirect:function(){return g.redirect},unauthorized:function(){return j.unauthorized},unstable_isUnrecognizedActionError:function(){return l},unstable_rethrow:function(){return k.unstable_rethrow}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});let f=a.r(20916),g=a.r(44868),h=a.r(16155),i=a.r(34557),j=a.r(93845),k=a.r(60968);function l(){throw Object.defineProperty(Error("`unstable_isUnrecognizedActionError` can only be used on the client."),"__NEXT_ERROR_CODE",{value:"E776",enumerable:!1,configurable:!0})}let m={push:"push",replace:"replace"};("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},70396,a=>{"use strict";a.i(73727),a.s([])}]; + +//# sourceMappingURL=node_modules_next_dist_11dij6w._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_11dij6w._.js.map b/.next/server/chunks/ssr/node_modules_next_dist_11dij6w._.js.map new file mode 100644 index 0000000..77ac93d --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_11dij6w._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/client/components/readonly-url-search-params.ts","../../../../node_modules/next/src/client/components/redirect-status-code.ts","../../../../node_modules/next/src/client/components/redirect-error.ts","../../../../node_modules/next/src/client/components/redirect.ts","../../../../node_modules/next/src/client/components/http-access-fallback/http-access-fallback.ts","../../../../node_modules/next/src/client/components/not-found.ts","../../../../node_modules/next/src/client/components/forbidden.ts","../../../../node_modules/next/src/client/components/unauthorized.ts","../../../../node_modules/next/src/shared/lib/promise-with-resolvers.ts","../../../../node_modules/next/src/server/app-render/staged-rendering.ts","../../../../node_modules/next/src/server/dynamic-rendering-utils.ts","../../../../node_modules/next/src/server/lib/router-utils/is-postpone.ts","../../../../node_modules/next/src/shared/lib/lazy-dynamic/bailout-to-csr.ts","../../../../node_modules/next/src/client/components/is-next-router-error.ts","../../../../node_modules/next/src/client/components/hooks-server-context.ts","../../../../node_modules/next/src/client/components/static-generation-bailout.ts","../../../../node_modules/next/src/lib/framework/boundary-constants.tsx","../../../../node_modules/next/src/lib/scheduler.ts","../../../../node_modules/next/src/server/app-render/instant-validation/boundary-constants.ts","../../../../node_modules/next/src/server/app-render/dynamic-rendering.ts","../../../../node_modules/next/src/client/components/unstable-rethrow.server.ts","../../../../node_modules/next/src/client/components/unstable-rethrow.ts","../../../../node_modules/next/src/client/components/navigation.react-server.ts","../../../../node_modules/src/api/navigation.react-server.ts"],"sourcesContent":["/**\n * ReadonlyURLSearchParams implementation shared between client and server.\n * This file is intentionally not marked as 'use client' or 'use server'\n * so it can be imported by both environments.\n */\n\n/** @internal */\nclass ReadonlyURLSearchParamsError extends Error {\n constructor() {\n super(\n 'Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams'\n )\n }\n}\n\n/**\n * A read-only version of URLSearchParams that throws errors when mutation methods are called.\n * This ensures that the URLSearchParams returned by useSearchParams() cannot be mutated.\n */\nexport class ReadonlyURLSearchParams extends URLSearchParams {\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n append() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n delete() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n set() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n sort() {\n throw new ReadonlyURLSearchParamsError()\n }\n}\n","export enum RedirectStatusCode {\n SeeOther = 303,\n TemporaryRedirect = 307,\n PermanentRedirect = 308,\n}\n","import { RedirectStatusCode } from './redirect-status-code'\n\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'\n\nexport type RedirectType = 'push' | 'replace'\n\nexport type RedirectError = Error & {\n digest: `${typeof REDIRECT_ERROR_CODE};${RedirectType};${string};${RedirectStatusCode};`\n}\n\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */\nexport function isRedirectError(error: unknown): error is RedirectError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n\n const digest = error.digest.split(';')\n const [errorCode, type] = digest\n const destination = digest.slice(2, -2).join(';')\n const status = digest.at(-2)\n\n const statusCode = Number(status)\n\n return (\n errorCode === REDIRECT_ERROR_CODE &&\n (type === 'replace' || type === 'push') &&\n typeof destination === 'string' &&\n !isNaN(statusCode) &&\n statusCode in RedirectStatusCode\n )\n}\n","import { RedirectStatusCode } from './redirect-status-code'\nimport {\n type RedirectType,\n type RedirectError,\n isRedirectError,\n REDIRECT_ERROR_CODE,\n} from './redirect-error'\n\nconst actionAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/action-async-storage.external') as typeof import('../../server/app-render/action-async-storage.external')\n ).actionAsyncStorage\n : undefined\n\nexport function getRedirectError(\n url: string,\n type: RedirectType,\n statusCode: RedirectStatusCode = RedirectStatusCode.TemporaryRedirect\n): RedirectError {\n const error = new Error(REDIRECT_ERROR_CODE) as RedirectError\n error.digest = `${REDIRECT_ERROR_CODE};${type};${url};${statusCode};`\n return error\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 307/303 to the caller.\n * - In a Server Action, type defaults to 'push' and 'replace' elsewhere.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function redirect(\n /** The URL to redirect to */\n url: string,\n type?: RedirectType\n): never {\n type ??= actionAsyncStorage?.getStore()?.isAction ? 'push' : 'replace'\n\n throw getRedirectError(url, type, RedirectStatusCode.TemporaryRedirect)\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 308/303 to the caller.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function permanentRedirect(\n /** The URL to redirect to */\n url: string,\n type: RedirectType = 'replace'\n): never {\n throw getRedirectError(url, type, RedirectStatusCode.PermanentRedirect)\n}\n\n/**\n * Returns the encoded URL from the error if it's a RedirectError, null\n * otherwise. Note that this does not validate the URL returned.\n *\n * @param error the error that may be a redirect error\n * @return the url if the error was a redirect error\n */\nexport function getURLFromRedirectError(error: RedirectError): string\nexport function getURLFromRedirectError(error: unknown): string | null {\n if (!isRedirectError(error)) return null\n\n // Slices off the beginning of the digest that contains the code and the\n // separating ';'.\n return error.digest.split(';').slice(2, -2).join(';')\n}\n\nexport function getRedirectTypeFromError(error: RedirectError): RedirectType {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return error.digest.split(';', 2)[1] as RedirectType\n}\n\nexport function getRedirectStatusCodeFromError(error: RedirectError): number {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return Number(error.digest.split(';').at(-2))\n}\n","export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401,\n}\n\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus))\n\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'\n\nexport type HTTPAccessFallbackError = Error & {\n digest: `${typeof HTTP_ERROR_FALLBACK_ERROR_CODE};${string}`\n}\n\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */\nexport function isHTTPAccessFallbackError(\n error: unknown\n): error is HTTPAccessFallbackError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n const [prefix, httpStatus] = error.digest.split(';')\n\n return (\n prefix === HTTP_ERROR_FALLBACK_ERROR_CODE &&\n ALLOWED_CODES.has(Number(httpStatus))\n )\n}\n\nexport function getAccessFallbackHTTPStatus(\n error: HTTPAccessFallbackError\n): number {\n const httpStatus = error.digest.split(';')[1]\n return Number(httpStatus)\n}\n\nexport function getAccessFallbackErrorTypeByStatus(\n status: number\n): 'not-found' | 'forbidden' | 'unauthorized' | undefined {\n switch (status) {\n case 401:\n return 'unauthorized'\n case 403:\n return 'forbidden'\n case 404:\n return 'not-found'\n default:\n return\n }\n}\n","import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n/**\n * This function allows you to render the [not-found.js file](https://nextjs.org/docs/app/api-reference/file-conventions/not-found)\n * within a route segment as well as inject a tag.\n *\n * `notFound()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a `<meta name=\"robots\" content=\"noindex\" />` meta tag and set the status code to 404.\n * - In a Route Handler or Server Action, it will serve a 404 to the caller.\n *\n * Read more: [Next.js Docs: `notFound`](https://nextjs.org/docs/app/api-reference/functions/not-found)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};404`\n\nexport function notFound(): never {\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n\n throw error\n}\n","import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `forbidden` docs\n/**\n * @experimental\n * This function allows you to render the [forbidden.js file](https://nextjs.org/docs/app/api-reference/file-conventions/forbidden)\n * within a route segment as well as inject a tag.\n *\n * `forbidden()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * Read more: [Next.js Docs: `forbidden`](https://nextjs.org/docs/app/api-reference/functions/forbidden)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};403`\n\nexport function forbidden(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`forbidden()\\` is experimental and only allowed to be enabled when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n","import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `unauthorized` docs\n/**\n * @experimental\n * This function allows you to render the [unauthorized.js file](https://nextjs.org/docs/app/api-reference/file-conventions/unauthorized)\n * within a route segment as well as inject a tag.\n *\n * `unauthorized()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n *\n * Read more: [Next.js Docs: `unauthorized`](https://nextjs.org/docs/app/api-reference/functions/unauthorized)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};401`\n\nexport function unauthorized(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`unauthorized()\\` is experimental and only allowed to be used when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n","export function createPromiseWithResolvers<T>(): PromiseWithResolvers<T> {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike<T>) => void\n let reject: (reason: any) => void\n const promise = new Promise<T>((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n","import { InvariantError } from '../../shared/lib/invariant-error'\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers'\n\nexport enum RenderStage {\n Before = 1,\n EarlyStatic = 2,\n Static = 3,\n EarlyRuntime = 4,\n Runtime = 5,\n Dynamic = 6,\n Abandoned = 7,\n}\n\nexport type AdvanceableRenderStage =\n | RenderStage.Static\n | RenderStage.EarlyRuntime\n | RenderStage.Runtime\n | RenderStage.Dynamic\n\nexport class StagedRenderingController {\n currentStage: RenderStage = RenderStage.Before\n\n syncInterruptReason: Error | null = null\n staticStageEndTime: number = Infinity\n runtimeStageEndTime: number = Infinity\n\n private staticStageListeners: Array<() => void> = []\n private earlyRuntimeStageListeners: Array<() => void> = []\n private runtimeStageListeners: Array<() => void> = []\n private dynamicStageListeners: Array<() => void> = []\n\n private staticStagePromise = createPromiseWithResolvers<void>()\n private earlyRuntimeStagePromise = createPromiseWithResolvers<void>()\n private runtimeStagePromise = createPromiseWithResolvers<void>()\n private dynamicStagePromise = createPromiseWithResolvers<void>()\n\n constructor(\n private abortSignal: AbortSignal | null,\n private abandonController: AbortController | null,\n private shouldTrackSyncIO: boolean\n ) {\n if (abortSignal) {\n abortSignal.addEventListener(\n 'abort',\n () => {\n // Reject all stage promises that haven't already been resolved.\n // If a promise was already resolved via advanceStage, the reject\n // is a no-op. The ignoreReject handler suppresses unhandled\n // rejection warnings for promises that no one is awaiting.\n const { reason } = abortSignal\n this.staticStagePromise.promise.catch(ignoreReject)\n this.staticStagePromise.reject(reason)\n this.earlyRuntimeStagePromise.promise.catch(ignoreReject)\n this.earlyRuntimeStagePromise.reject(reason)\n this.runtimeStagePromise.promise.catch(ignoreReject)\n this.runtimeStagePromise.reject(reason)\n this.dynamicStagePromise.promise.catch(ignoreReject)\n this.dynamicStagePromise.reject(reason)\n },\n { once: true }\n )\n }\n\n if (abandonController) {\n abandonController.signal.addEventListener(\n 'abort',\n () => {\n this.abandonRender()\n },\n { once: true }\n )\n }\n }\n\n onStage(stage: AdvanceableRenderStage, callback: () => void) {\n if (this.currentStage >= stage) {\n callback()\n } else if (stage === RenderStage.Static) {\n this.staticStageListeners.push(callback)\n } else if (stage === RenderStage.EarlyRuntime) {\n this.earlyRuntimeStageListeners.push(callback)\n } else if (stage === RenderStage.Runtime) {\n this.runtimeStageListeners.push(callback)\n } else if (stage === RenderStage.Dynamic) {\n this.dynamicStageListeners.push(callback)\n } else {\n // This should never happen\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n\n shouldTrackSyncInterrupt(): boolean {\n if (!this.shouldTrackSyncIO) {\n return false\n }\n\n switch (this.currentStage) {\n case RenderStage.Before:\n // If we haven't started the render yet, it can't be interrupted.\n return false\n case RenderStage.EarlyStatic:\n case RenderStage.Static:\n return true\n case RenderStage.EarlyRuntime:\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO\n // should error because it would abort a runtime prefetch.\n return true\n case RenderStage.Runtime:\n // Runtime is for non-prefetchable segments. Sync IO is fine there\n // because in practice this segment will never be runtime prefetched\n return false\n case RenderStage.Dynamic:\n case RenderStage.Abandoned:\n return false\n default:\n return false\n }\n }\n\n syncInterruptCurrentStageWithReason(reason: Error) {\n if (this.currentStage === RenderStage.Before) {\n return\n }\n\n // If the render has already been abandoned, there's nothing to interrupt.\n if (this.currentStage === RenderStage.Abandoned) {\n return\n }\n\n // If Sync IO occurs during an abandonable render, we trigger the abandon.\n // The abandon listener will call abandonRender which advances through\n // stages to let caches fill before marking as Abandoned.\n if (this.abandonController) {\n this.abandonController.abort()\n return\n }\n\n if (this.abortSignal) {\n // If this is an abortable render, we capture the interruption reason and stop advancing.\n // We don't release any more promises.\n // The caller is expected to abort the signal.\n this.syncInterruptReason = reason\n this.currentStage = RenderStage.Abandoned\n return\n }\n\n // If we're in a non-abandonable & non-abortable render,\n // we need to advance to the Dynamic stage and capture the interruption reason.\n // (in dev, this will be the restarted render)\n switch (this.currentStage) {\n case RenderStage.EarlyStatic:\n case RenderStage.Static:\n case RenderStage.EarlyRuntime: {\n // EarlyRuntime is for runtime-prefetchable segments. Sync IO here\n // means the prefetch would be aborted too early.\n this.syncInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n return\n }\n case RenderStage.Runtime: {\n // canSyncInterrupt returns false for Runtime, so we should\n // never get here. Defensive no-op.\n return\n }\n case RenderStage.Dynamic:\n default:\n }\n }\n\n getSyncInterruptReason() {\n return this.syncInterruptReason\n }\n\n getStaticStageEndTime() {\n return this.staticStageEndTime\n }\n\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime\n }\n\n private abandonRender() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the next stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this\n switch (currentStage) {\n case RenderStage.EarlyStatic: {\n this.resolveStaticStage()\n }\n // intentional fallthrough\n case RenderStage.Static: {\n this.resolveEarlyRuntimeStage()\n }\n // intentional fallthrough\n case RenderStage.EarlyRuntime: {\n this.resolveRuntimeStage()\n }\n // intentional fallthrough\n case RenderStage.Runtime: {\n this.currentStage = RenderStage.Abandoned\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Before:\n case RenderStage.Abandoned:\n break\n default: {\n currentStage satisfies never\n }\n }\n }\n\n advanceStage(\n stage:\n | RenderStage.EarlyStatic\n | RenderStage.Static\n | RenderStage.EarlyRuntime\n | RenderStage.Runtime\n | RenderStage.Dynamic\n ) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return\n }\n\n let currentStage = this.currentStage\n this.currentStage = stage\n\n if (currentStage < RenderStage.Static && stage >= RenderStage.Static) {\n this.resolveStaticStage()\n }\n if (\n currentStage < RenderStage.EarlyRuntime &&\n stage >= RenderStage.EarlyRuntime\n ) {\n this.resolveEarlyRuntimeStage()\n }\n if (currentStage < RenderStage.Runtime && stage >= RenderStage.Runtime) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin\n this.resolveRuntimeStage()\n }\n if (currentStage < RenderStage.Dynamic && stage >= RenderStage.Dynamic) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin\n this.resolveDynamicStage()\n return\n }\n }\n\n /** Fire the `onStage` listeners for the static stage and unblock any promises waiting for it. */\n private resolveStaticStage() {\n const staticListeners = this.staticStageListeners\n for (let i = 0; i < staticListeners.length; i++) {\n staticListeners[i]()\n }\n staticListeners.length = 0\n this.staticStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the early runtime stage and unblock any promises waiting for it. */\n private resolveEarlyRuntimeStage() {\n const earlyRuntimeListeners = this.earlyRuntimeStageListeners\n for (let i = 0; i < earlyRuntimeListeners.length; i++) {\n earlyRuntimeListeners[i]()\n }\n earlyRuntimeListeners.length = 0\n this.earlyRuntimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */\n private resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners\n for (let i = 0; i < runtimeListeners.length; i++) {\n runtimeListeners[i]()\n }\n runtimeListeners.length = 0\n this.runtimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */\n private resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners\n for (let i = 0; i < dynamicListeners.length; i++) {\n dynamicListeners[i]()\n }\n dynamicListeners.length = 0\n this.dynamicStagePromise.resolve()\n }\n\n private getStagePromise(stage: AdvanceableRenderStage): Promise<void> {\n switch (stage) {\n case RenderStage.Static: {\n return this.staticStagePromise.promise\n }\n case RenderStage.EarlyRuntime: {\n return this.earlyRuntimeStagePromise.promise\n }\n case RenderStage.Runtime: {\n return this.runtimeStagePromise.promise\n }\n case RenderStage.Dynamic: {\n return this.dynamicStagePromise.promise\n }\n default: {\n stage satisfies never\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n }\n\n waitForStage(stage: AdvanceableRenderStage) {\n return this.getStagePromise(stage)\n }\n\n delayUntilStage<T>(\n stage: AdvanceableRenderStage,\n displayName: string | undefined,\n resolvedValue: T\n ) {\n const ioTriggerPromise = this.getStagePromise(stage)\n\n const promise = makeDevtoolsIOPromiseFromIOTrigger(\n ioTriggerPromise,\n displayName,\n resolvedValue\n )\n\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject)\n }\n return promise\n }\n}\n\nfunction ignoreReject() {}\n\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger<T>(\n ioTrigger: Promise<any>,\n displayName: string | undefined,\n resolvedValue: T\n): Promise<T> {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise<T>((resolve, reject) => {\n ioTrigger.then(resolve.bind(null, resolvedValue), reject)\n })\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName\n }\n return promise\n}\n","import {\n RenderStage,\n type AdvanceableRenderStage,\n type StagedRenderingController,\n} from './app-render/staged-rendering'\nimport type {\n PrerenderStoreModernRuntime,\n RequestStore,\n} from './app-render/work-unit-async-storage.external'\n\nexport function isHangingPromiseRejectionError(\n err: unknown\n): err is HangingPromiseRejectionError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === HANGING_PROMISE_REJECTION\n}\n\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'\n\nclass HangingPromiseRejectionError extends Error {\n public readonly digest = HANGING_PROMISE_REJECTION\n\n constructor(\n public readonly route: string,\n public readonly expression: string\n ) {\n super(\n `During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`\n )\n }\n}\n\ntype AbortListeners = Array<(err: unknown) => void>\nconst abortListenersBySignal = new WeakMap<AbortSignal, AbortListeners>()\n\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */\nexport function makeHangingPromise<T>(\n signal: AbortSignal,\n route: string,\n expression: string\n): Promise<T> {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression))\n } else {\n const hangingPromise = new Promise<T>((_, reject) => {\n const boundRejection = reject.bind(\n null,\n new HangingPromiseRejectionError(route, expression)\n )\n let currentListeners = abortListenersBySignal.get(signal)\n if (currentListeners) {\n currentListeners.push(boundRejection)\n } else {\n const listeners = [boundRejection]\n abortListenersBySignal.set(signal, listeners)\n signal.addEventListener(\n 'abort',\n () => {\n for (let i = 0; i < listeners.length; i++) {\n listeners[i]()\n }\n },\n { once: true }\n )\n }\n })\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject)\n return hangingPromise\n }\n}\n\nfunction ignoreReject() {}\n\nexport function makeDevtoolsIOAwarePromise<T>(\n underlying: T,\n requestStore: RequestStore,\n stage: AdvanceableRenderStage\n): Promise<T> {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(\n stage,\n undefined,\n underlying\n )\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise<T>((resolve) => {\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(() => {\n resolve(underlying)\n }, 0)\n })\n}\n\n/**\n * Returns the appropriate runtime stage for the current point in the render.\n * Runtime-prefetchable segments render in the early stages and should wait\n * for EarlyRuntime. Non-prefetchable segments render in the later stages\n * and should wait for Runtime.\n */\nexport function getRuntimeStage(\n stagedRendering: StagedRenderingController\n): RenderStage.EarlyRuntime | RenderStage.Runtime {\n if (\n stagedRendering.currentStage === RenderStage.EarlyStatic ||\n stagedRendering.currentStage === RenderStage.EarlyRuntime\n ) {\n return RenderStage.EarlyRuntime\n }\n return RenderStage.Runtime\n}\n\n/**\n * Delays until the appropriate runtime stage based on the current stage of\n * the rendering pipeline:\n *\n * - Early stages → wait for EarlyRuntime\n * (for runtime-prefetchable segments)\n * - Later stages → wait for Runtime\n * (for segments not using runtime prefetch)\n *\n * This ensures that cookies()/headers()/etc. resolve at the right time for\n * each segment type.\n */\nexport function delayUntilRuntimeStage<T>(\n prerenderStore: PrerenderStoreModernRuntime,\n result: Promise<T>\n): Promise<T> {\n const { stagedRendering } = prerenderStore\n if (!stagedRendering) {\n return result\n }\n return stagedRendering\n .waitForStage(getRuntimeStage(stagedRendering))\n .then(() => result)\n}\n","const REACT_POSTPONE_TYPE: symbol = Symbol.for('react.postpone')\n\nexport function isPostpone(error: any): boolean {\n return (\n typeof error === 'object' &&\n error !== null &&\n error.$$typeof === REACT_POSTPONE_TYPE\n )\n}\n","// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'\n\n/** An error that should be thrown when we want to bail out to client-side rendering. */\nexport class BailoutToCSRError extends Error {\n public readonly digest = BAILOUT_TO_CSR\n\n constructor(public readonly reason: string) {\n super(`Bail out to client-side rendering: ${reason}`)\n }\n}\n\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */\nexport function isBailoutToCSRError(err: unknown): err is BailoutToCSRError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === BAILOUT_TO_CSR\n}\n","import {\n isHTTPAccessFallbackError,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\nimport { isRedirectError, type RedirectError } from './redirect-error'\n\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */\nexport function isNextRouterError(\n error: unknown\n): error is RedirectError | HTTPAccessFallbackError {\n return isRedirectError(error) || isHTTPAccessFallbackError(error)\n}\n","const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'\n\nexport class DynamicServerError extends Error {\n digest: typeof DYNAMIC_ERROR_CODE = DYNAMIC_ERROR_CODE\n\n constructor(public readonly description: string) {\n super(`Dynamic server usage: ${description}`)\n }\n}\n\nexport function isDynamicServerError(err: unknown): err is DynamicServerError {\n if (\n typeof err !== 'object' ||\n err === null ||\n !('digest' in err) ||\n typeof err.digest !== 'string'\n ) {\n return false\n }\n\n return err.digest === DYNAMIC_ERROR_CODE\n}\n","const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'\n\nexport class StaticGenBailoutError extends Error {\n public readonly code = NEXT_STATIC_GEN_BAILOUT\n}\n\nexport function isStaticGenBailoutError(\n error: unknown\n): error is StaticGenBailoutError {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false\n }\n\n return error.code === NEXT_STATIC_GEN_BAILOUT\n}\n","export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n","export type ScheduledFn<T = void> = () => T | PromiseLike<T>\nexport type SchedulerFn<T = void> = (cb: ScheduledFn<T>) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn<void>) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn<void>): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise<void>((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise<void> {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n","export const INSTANT_VALIDATION_BOUNDARY_NAME =\n '__next_instant_validation_boundary__'\n","/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */\n\nimport type { WorkStore } from '../app-render/work-async-storage.external'\nimport type {\n WorkUnitStore,\n PrerenderStoreLegacy,\n PrerenderStoreModern,\n ValidationStoreClient,\n} from '../app-render/work-unit-async-storage.external'\n\n// Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react'\n\nimport { DynamicServerError } from '../../client/components/hooks-server-context'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from './work-unit-async-storage.external'\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { makeHangingPromise, getRuntimeStage } from '../dynamic-rendering-utils'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from '../../lib/framework/boundary-constants'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport { INSTANT_VALIDATION_BOUNDARY_NAME } from './instant-validation/boundary-constants'\nimport type { ValidationBoundaryTracking } from './instant-validation/boundary-tracking'\nimport type { InstantValidationSampleTracking } from './instant-validation/instant-samples'\n\nconst hasPostpone = typeof React.unstable_postpone === 'function'\n\nexport type DynamicAccess = {\n /**\n * If debugging, this will contain the stack trace of where the dynamic access\n * occurred. This is used to provide more information to the user about why\n * their page is being rendered dynamically.\n */\n stack?: string\n\n /**\n * The expression that was accessed dynamically.\n */\n expression: string\n}\n\n// Stores dynamic reasons used during an RSC render.\nexport type DynamicTrackingState = {\n /**\n * When true, stack information will also be tracked during dynamic access.\n */\n readonly isDebugDynamicAccesses: boolean | undefined\n\n /**\n * The dynamic accesses that occurred during the render.\n */\n readonly dynamicAccesses: Array<DynamicAccess>\n\n syncDynamicErrorWithStack: null | Error\n}\n\n// Stores dynamic reasons used during an SSR render.\nexport type DynamicValidationState = {\n hasSuspenseAboveBody: boolean\n hasDynamicMetadata: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array<Error>\n}\n\nexport function createDynamicTrackingState(\n isDebugDynamicAccesses: boolean | undefined\n): DynamicTrackingState {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null,\n }\n}\n\nexport function createDynamicValidationState(): DynamicValidationState {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n }\n}\n\nexport function getFirstDynamicReason(\n trackingState: DynamicTrackingState\n): undefined | string {\n return trackingState.dynamicAccesses[0]?.expression\n}\n\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */\nexport function markCurrentScopeAsDynamic(\n store: WorkStore,\n workUnitStore: undefined | Exclude<WorkUnitStore, PrerenderStoreModern>,\n expression: string\n): void {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n case 'generate-static-params':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return\n\n if (store.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-ppr':\n return postponeWithTracking(\n store.route,\n expression,\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n workUnitStore.revalidate = 0\n\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n case 'generate-static-params':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */\nexport function throwToInterruptStaticGeneration(\n expression: string,\n store: WorkStore,\n prerenderStore: PrerenderStoreLegacy\n): never {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n\n prerenderStore.revalidate = 0\n\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n}\n\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */\nexport function trackDynamicDataInDynamicRender(workUnitStore: WorkUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n case 'validation-client':\n case 'generate-static-params':\n break\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n}\n\nfunction abortOnSynchronousDynamicDataAccess(\n route: string,\n expression: string,\n prerenderStore: PrerenderStoreModern\n): void {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n\n const error = createPrerenderInterruptedError(reason)\n\n prerenderStore.controller.abort(error)\n\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function abortOnSynchronousPlatformIOAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): void {\n const dynamicTracking = prerenderStore.dynamicTracking\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n}\n\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */\nexport function abortAndThrowOnSynchronousRequestDataAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): never {\n const prerenderSignal = prerenderStore.controller.signal\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n }\n throw createPrerenderInterruptedError(\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n )\n}\n\n/**\n * This component will call `React.postpone` that throws the postponed error.\n */\ntype PostponeProps = {\n reason: string\n route: string\n}\nexport function Postpone({ reason, route }: PostponeProps): never {\n const prerenderStore = workUnitAsyncStorage.getStore()\n const dynamicTracking =\n prerenderStore && prerenderStore.type === 'prerender-ppr'\n ? prerenderStore.dynamicTracking\n : null\n postponeWithTracking(route, reason, dynamicTracking)\n}\n\nexport function postponeWithTracking(\n route: string,\n expression: string,\n dynamicTracking: null | DynamicTrackingState\n): never {\n assertPostpone()\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n\n React.unstable_postpone(createPostponeReason(route, expression))\n}\n\nfunction createPostponeReason(route: string, expression: string) {\n return (\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` +\n `React throws this special object to indicate where. It should not be caught by ` +\n `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`\n )\n}\n\nexport function isDynamicPostpone(err: unknown) {\n if (\n typeof err === 'object' &&\n err !== null &&\n typeof (err as any).message === 'string'\n ) {\n return isDynamicPostponeReason((err as any).message)\n }\n return false\n}\n\nfunction isDynamicPostponeReason(reason: string) {\n return (\n reason.includes(\n 'needs to bail out of prerendering at this point because it used'\n ) &&\n reason.includes(\n 'Learn more: https://nextjs.org/docs/messages/ppr-caught-error'\n )\n )\n}\n\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw new Error(\n 'Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'\n )\n}\n\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'\n\nfunction createPrerenderInterruptedError(message: string): Error {\n const error = new Error(message)\n ;(error as any).digest = NEXT_PRERENDER_INTERRUPTED\n return error\n}\n\ntype DigestError = Error & {\n digest: string\n}\n\nexport function isPrerenderInterruptedError(\n error: unknown\n): error is DigestError {\n return (\n typeof error === 'object' &&\n error !== null &&\n (error as any).digest === NEXT_PRERENDER_INTERRUPTED &&\n 'name' in error &&\n 'message' in error &&\n error instanceof Error\n )\n}\n\nexport function accessedDynamicData(\n dynamicAccesses: Array<DynamicAccess>\n): boolean {\n return dynamicAccesses.length > 0\n}\n\nexport function consumeDynamicAccess(\n serverDynamic: DynamicTrackingState,\n clientDynamic: DynamicTrackingState\n): DynamicTrackingState['dynamicAccesses'] {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses)\n return serverDynamic.dynamicAccesses\n}\n\nexport function formatDynamicAPIAccesses(\n dynamicAccesses: Array<DynamicAccess>\n): string[] {\n return dynamicAccesses\n .filter(\n (access): access is Required<DynamicAccess> =>\n typeof access.stack === 'string' && access.stack.length > 0\n )\n .map(({ expression, stack }) => {\n stack = stack\n .split('\\n')\n // Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4)\n .filter((line) => {\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false\n }\n\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' (<anonymous>)')) {\n return false\n }\n\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false\n }\n\n return true\n })\n .join('\\n')\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`\n })\n}\n\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw new Error(\n `Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`\n )\n }\n}\n\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */\nexport function createRenderInBrowserAbortSignal(): AbortSignal {\n const controller = new AbortController()\n controller.abort(new BailoutToCSRError('Render in Browser'))\n return controller.signal\n}\n\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */\nexport function createHangingInputAbortSignal(\n workUnitStore: WorkUnitStore\n): AbortSignal | undefined {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController()\n\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(() => {\n controller.abort()\n })\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n if (\n // eslint-disable-next-line no-restricted-syntax -- We are discriminating between two different refined types and don't need an addition exhaustive switch here\n workUnitStore.type === 'prerender-runtime' &&\n workUnitStore.stagedRendering\n ) {\n const { stagedRendering } = workUnitStore\n stagedRendering\n .waitForStage(getRuntimeStage(stagedRendering))\n .then(() => scheduleOnNextTick(() => controller.abort()))\n } else {\n scheduleOnNextTick(() => controller.abort())\n }\n }\n\n return controller.signal\n case 'prerender-client':\n case 'validation-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'generate-static-params':\n return undefined\n default:\n workUnitStore satisfies never\n }\n}\n\nexport function annotateDynamicAccess(\n expression: string,\n prerenderStore: PrerenderStoreModern | ValidationStoreClient\n) {\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function useDynamicRouteParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workStore && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-client':\n case 'prerender': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(\n workStore.route,\n expression,\n workUnitStore.dynamicTracking\n )\n }\n break\n }\n case 'validation-client': {\n // Don't check fallbackRouteParams here. We handle params that weren't\n // provided in the samples using a proxy that throws when accessed.\n break\n }\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'generate-static-params':\n throw new InvariantError(\n `\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`\n )\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\nexport function useDynamicSearchParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (!workStore) {\n // We assume pages router context and just return\n return\n }\n\n if (!workUnitStore) {\n throwForMissingRequestStore(expression)\n }\n\n switch (workUnitStore.type) {\n case 'validation-client':\n // During instant validation we try to behave as close to client as possible,\n // so this shouldn't hang during SSR.\n return\n case 'prerender-client': {\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n break\n }\n case 'prerender-legacy':\n case 'prerender-ppr': {\n if (workStore.forceStatic) {\n return\n }\n throw new BailoutToCSRError(expression)\n }\n case 'prerender':\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'generate-static-params':\n throw new InvariantError(\n `\\`${expression}\\` was called in \\`generateStaticParams\\`. Next.js should be preventing ${expression} from being included in server component files statically, but did not in this case.`\n )\n case 'request':\n return\n default:\n workUnitStore satisfies never\n }\n}\n\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(<anonymous>\\)/\n\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags =\n 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'\n\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense (<anonymous>)\n// at __next_root_layout_boundary__ (<anonymous>)\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense (<anonymous>)\n// at SomeComponent (<anonymous>)\n// at __next_root_layout_boundary__ (<anonymous>)\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(\n `\\\\n\\\\s+at Suspense \\\\(<anonymous>\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(<anonymous>\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`\n)\n\nconst hasMetadataRegex = new RegExp(\n `\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasViewportRegex = new RegExp(\n `\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`)\n\nconst hasInstantValidationBoundaryRegex = new RegExp(\n `\\\\n\\\\s+at ${INSTANT_VALIDATION_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\n\nexport function trackAllowedDynamicAccess(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true\n return\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message =\n `Route \"${workStore.route}\": Uncached data was accessed outside of ` +\n '<Suspense>. This delays the entire page from rendering, resulting in a ' +\n 'slow user experience. Learn more: ' +\n 'https://nextjs.org/docs/messages/blocking-route'\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport enum DynamicHoleKind {\n /** We know that this hole is caused by runtime data. */\n Runtime = 1,\n /** We know that this hole is caused by dynamic data. */\n Dynamic = 2,\n}\n\n/** Stores dynamic reasons used during an SSR render in instant validation. */\nexport type InstantValidationState = {\n hasDynamicMetadata: boolean\n hasAllowedClientDynamicAboveBoundary: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array<Error>\n validationPreventingErrors: Array<Error>\n thrownErrorsOutsideBoundary: Array<unknown>\n createInstantStack: (() => Error) | null\n}\n\nexport function createInstantValidationState(\n createInstantStack: (() => Error) | null\n): InstantValidationState {\n return {\n hasDynamicMetadata: false,\n hasAllowedClientDynamicAboveBoundary: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n validationPreventingErrors: [],\n thrownErrorsOutsideBoundary: [],\n createInstantStack,\n }\n}\n\nexport function trackDynamicHoleInNavigation(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: InstantValidationState,\n clientDynamic: DynamicTrackingState,\n kind: DynamicHoleKind,\n boundaryState: ValidationBoundaryTracking\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n }\n if (hasMetadataRegex.test(componentStack)) {\n const usageDescription =\n kind === DynamicHoleKind.Runtime\n ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments.`\n : `Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`.`\n const message = `Route \"${workStore.route}\": ${usageDescription} Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.dynamicMetadata = error\n return\n }\n if (hasViewportRegex.test(componentStack)) {\n const usageDescription =\n kind === DynamicHoleKind.Runtime\n ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`.`\n : `Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`.`\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n\n const boundaryLocation =\n hasInstantValidationBoundaryRegex.exec(componentStack)\n if (!boundaryLocation) {\n // We don't see the validation boundary in the component stack,\n // so this hole must be coming from a shared parent.\n // Shared parents are fully resolved and don't have RSC holes,\n // but they can still suspend in a client component during SSR.\n\n // If we managed to render all the validation boundaries, that means\n // that the client holes aren't blocking validation and we can disregard them.\n // Note that we don't even care whether they have suspense or not.\n if (boundaryState.expectedIds.size === boundaryState.renderedIds.size) {\n dynamicValidation.hasAllowedClientDynamicAboveBoundary = true\n dynamicValidation.hasAllowedDynamic = true // Holes outside the boundary contribute to allowing dynamic metadata\n return\n } else {\n // TODO(instant-validation) TODO(NAR-787)\n // If shared parents blocked us from validating, we should only log\n // the errors from the innermost (segments), i.e. omit layouts whose\n // slots managed to render (because clearly they didn't block validation)\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because a Client Component in a parent segment prevented the page from rendering.`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.validationPreventingErrors.push(error)\n return\n }\n } else {\n // The hole originates inside the validation boundary.\n //\n // Check if we have a Suspense above the hole, but below the validation boundary.\n // If we do, then this dynamic usage wouldn't block a navigation to this subtree.\n // Conversely, if the nearest suspense is above the validation boundary, then this subtree would block.\n //\n // Note that in the component stack, children come before parents.\n //\n // Valid:\n // ...\n // at Suspense\n // ...\n // at __next_prefetch_validation_boundary__\n //\n // Invalid:\n // ...\n // at __next_prefetch_validation_boundary__\n // ...\n // at Suspense\n //\n const suspenseLocation = hasSuspenseRegex.exec(componentStack)\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n dynamicValidation.hasAllowedDynamic = true\n return\n } else {\n // invalid - fallthrough\n }\n }\n }\n\n if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n const syncError = clientDynamic.syncDynamicErrorWithStack\n if (\n dynamicValidation.createInstantStack !== null &&\n syncError.cause === undefined\n ) {\n syncError.cause = dynamicValidation.createInstantStack()\n }\n dynamicValidation.dynamicErrors.push(syncError)\n return\n }\n\n const usageDescription =\n kind === DynamicHoleKind.Runtime\n ? `Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`<Suspense>\\`.`\n : `Uncached data or \\`connection()\\` was accessed outside of \\`<Suspense>\\`.`\n const message = `Route \"${workStore.route}\": ${usageDescription} This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = addErrorContext(\n new Error(message),\n componentStack,\n dynamicValidation.createInstantStack\n )\n dynamicValidation.dynamicErrors.push(error)\n return\n}\n\nexport function trackThrownErrorInNavigation(\n workStore: WorkStore,\n dynamicValidation: InstantValidationState,\n thrownValue: unknown,\n componentStack: string\n) {\n const boundaryLocation =\n hasInstantValidationBoundaryRegex.exec(componentStack)\n if (!boundaryLocation) {\n // There's no validation boundary on the component stack.\n // This error may have blocked a boundary from rendering.\n\n // Wrap the error to provide component context.\n // This helps for errors from node_modules which would otherwise\n // have no useful stack information due to ignore-listing,\n // e.g. next/dynamic with `ssr: false`.\n const error = addErrorContext(\n new Error(\n 'An error occurred while attempting to validate instant UI. This error may be preventing the validation from completing.',\n { cause: thrownValue }\n ),\n componentStack,\n null\n )\n dynamicValidation.thrownErrorsOutsideBoundary.push(error)\n } else {\n // There's validation boundary on the component stack,\n // so we know this error didn't block a validation boundary from rendering.\n // However, this error might be hiding be hiding dynamic content that would\n // cause validation to fail.\n const suspenseLocation = hasSuspenseRegex.exec(componentStack)\n if (suspenseLocation) {\n if (suspenseLocation.index < boundaryLocation.index) {\n // There's a Suspense below the validation boundary but above this error's location.\n // This subtree can't fail instant validation because any potential\n // dynamic holes would be guarded by the Suspense anyway,\n // so we can allow this.\n return\n } else {\n // invalid - fallthrough\n }\n }\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because an error prevented the target segment from rendering.`\n const error = addErrorContext(\n new Error(message, { cause: thrownValue }),\n componentStack,\n null // TODO(instant-validation-build): conflicting use of cause\n )\n dynamicValidation.validationPreventingErrors.push(error)\n }\n}\n\nexport function trackDynamicHoleInRuntimeShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n // TODO(instant-validation): If the page only has holes caused by runtime data,\n // we won't find out if there's a suspense-above-body and error for dynamic viewport\n // even if there is in fact a suspense-above-body\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n }\n\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`<Suspense>\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n}\n\nexport function trackDynamicHoleInStaticShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`<Suspense>\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = addErrorContext(new Error(message), componentStack, null)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n *\n * Accepts an already-created Error so the SWC error-code plugin can see the\n * `new Error(...)` call at each call site and auto-assign error codes.\n */\nfunction addErrorContext(\n error: Error,\n componentStack: string,\n createInstantStack: (() => Error) | null\n) {\n const ownerStack =\n process.env.NODE_ENV !== 'production' && React.captureOwnerStack\n ? React.captureOwnerStack()\n : null\n\n if (createInstantStack !== null) {\n error.cause = createInstantStack()\n }\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack =\n error.name + ': ' + error.message + (ownerStack || componentStack)\n return error\n}\n\nexport enum PreludeState {\n Full = 0,\n Empty = 1,\n Errored = 2,\n}\n\nexport function logDisallowedDynamicError(\n workStore: WorkStore,\n error: Error\n): void {\n console.error(error)\n\n if (process.env.NODE_ENV !== 'development') {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`)\n } else if (!process.env.__NEXT_DEV_SERVER) {\n console.error(\n `To debug the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`\n )\n }\n}\n\nexport function throwIfDisallowedDynamic(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n serverDynamic: DynamicTrackingState\n): void {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(\n workStore,\n serverDynamic.syncDynamicErrorWithStack\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude !== PreludeState.Full) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return\n }\n\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n for (let i = 0; i < dynamicErrors.length; i++) {\n logDisallowedDynamicError(workStore, dynamicErrors[i])\n }\n\n throw new StaticGenBailoutError()\n }\n\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`\n )\n throw new StaticGenBailoutError()\n }\n } else {\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.hasDynamicMetadata\n ) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n )\n throw new StaticGenBailoutError()\n }\n }\n}\n\nexport function getStaticShellDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n configAllowsBlocking: boolean\n): Array<Error> {\n if (configAllowsBlocking || dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return []\n }\n\n if (prelude !== PreludeState.Full) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicErrors.length === 0 &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n\nexport function getNavigationDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: InstantValidationState,\n validationSampleTracking: InstantValidationSampleTracking | null,\n boundaryState: ValidationBoundaryTracking\n): Array<Error> {\n // If we have errors related to missing samples, those should take precedence over everything else.\n if (validationSampleTracking) {\n const { missingSampleErrors } = validationSampleTracking\n if (missingSampleErrors.length > 0) {\n return missingSampleErrors\n }\n }\n\n const { validationPreventingErrors } = dynamicValidation\n if (validationPreventingErrors.length > 0) {\n return validationPreventingErrors\n }\n\n if (boundaryState.renderedIds.size < boundaryState.expectedIds.size) {\n const { thrownErrorsOutsideBoundary, createInstantStack } =\n dynamicValidation\n if (thrownErrorsOutsideBoundary.length === 0) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering for an unknown reason.`\n const error =\n createInstantStack !== null ? createInstantStack() : new Error()\n error.name = 'Error'\n error.message = message\n return [error]\n } else if (thrownErrorsOutsideBoundary.length === 1) {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to the following error.`\n const error =\n createInstantStack !== null ? createInstantStack() : new Error()\n error.name = 'Error'\n error.message = message\n return [error, thrownErrorsOutsideBoundary[0] as Error]\n } else {\n const message = `Route \"${workStore.route}\": Could not validate \\`unstable_instant\\` because the target segment was prevented from rendering, likely due to one of the following errors.`\n const error =\n createInstantStack !== null ? createInstantStack() : new Error()\n error.name = 'Error'\n error.message = message\n return [error, ...(thrownErrorsOutsideBoundary as Error[])]\n }\n }\n\n // NOTE: We don't care about Suspense above body here,\n // we're only concerned with the validation boundary\n if (prelude !== PreludeState.Full) {\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If a client component suspended prevented us from rendering a shell\n // but didn't block validation, we don't require a prelude.\n if (dynamicValidation.hasAllowedClientDynamicAboveBoundary) {\n return []\n }\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" failed to render during instant validation and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n","import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-utils'\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { isNextRouterError } from './is-next-router-error'\nimport {\n isDynamicPostpone,\n isPrerenderInterruptedError,\n} from '../../server/app-render/dynamic-rendering'\nimport { isDynamicServerError } from './hooks-server-context'\n\nexport function unstable_rethrow(error: unknown): void {\n if (\n isNextRouterError(error) ||\n isBailoutToCSRError(error) ||\n isDynamicServerError(error) ||\n isDynamicPostpone(error) ||\n isPostpone(error) ||\n isHangingPromiseRejectionError(error) ||\n isPrerenderInterruptedError(error)\n ) {\n throw error\n }\n\n if (error instanceof Error && 'cause' in error) {\n unstable_rethrow(error.cause)\n }\n}\n","/**\n * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework.\n * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling.\n * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing.\n *\n * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow)\n */\nexport const unstable_rethrow =\n typeof window === 'undefined'\n ? (\n require('./unstable-rethrow.server') as typeof import('./unstable-rethrow.server')\n ).unstable_rethrow\n : (\n require('./unstable-rethrow.browser') as typeof import('./unstable-rethrow.browser')\n ).unstable_rethrow\n","import { ReadonlyURLSearchParams } from './readonly-url-search-params'\n\nexport function unstable_isUnrecognizedActionError(): boolean {\n throw new Error(\n '`unstable_isUnrecognizedActionError` can only be used on the client.'\n )\n}\n\nexport { redirect, permanentRedirect } from './redirect'\nexport { notFound } from './not-found'\nexport { forbidden } from './forbidden'\nexport { unauthorized } from './unauthorized'\nexport { unstable_rethrow } from './unstable-rethrow'\nexport { ReadonlyURLSearchParams }\n\nexport const RedirectType = {\n push: 'push',\n replace: 'replace',\n} as const\n","export * from '../client/components/navigation.react-server'\n"],"names":["ReadonlyURLSearchParams","ReadonlyURLSearchParamsError","Error","constructor","URLSearchParams","append","delete","set","sort","RedirectStatusCode","REDIRECT_ERROR_CODE","isRedirectError","error","digest","split","errorCode","type","destination","slice","join","status","at","statusCode","Number","isNaN","getRedirectError","getRedirectStatusCodeFromError","getRedirectTypeFromError","getURLFromRedirectError","permanentRedirect","redirect","actionAsyncStorage","window","require","undefined","url","TemporaryRedirect","getStore","isAction","PermanentRedirect","HTTPAccessErrorStatus","HTTP_ERROR_FALLBACK_ERROR_CODE","getAccessFallbackErrorTypeByStatus","getAccessFallbackHTTPStatus","isHTTPAccessFallbackError","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","prefix","httpStatus","has","notFound","DIGEST","forbidden","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","unauthorized","createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej","RenderStage","StagedRenderingController","abortSignal","abandonController","shouldTrackSyncIO","currentStage","syncInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","staticStageListeners","earlyRuntimeStageListeners","runtimeStageListeners","dynamicStageListeners","staticStagePromise","earlyRuntimeStagePromise","runtimeStagePromise","dynamicStagePromise","addEventListener","reason","catch","ignoreReject","once","signal","abandonRender","onStage","stage","callback","push","InvariantError","shouldTrackSyncInterrupt","syncInterruptCurrentStageWithReason","abort","advanceStage","getSyncInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","resolveStaticStage","resolveEarlyRuntimeStage","resolveRuntimeStage","performance","now","timeOrigin","resolveDynamicStage","staticListeners","i","length","earlyRuntimeListeners","runtimeListeners","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","then","bind","delayUntilRuntimeStage","getRuntimeStage","isHangingPromiseRejectionError","makeDevtoolsIOAwarePromise","makeHangingPromise","err","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","route","expression","abortListenersBySignal","WeakMap","aborted","hangingPromise","_","boundRejection","currentListeners","get","listeners","underlying","requestStore","stagedRendering","setTimeout","EarlyStatic","EarlyRuntime","Runtime","prerenderStore","result","isPostpone","REACT_POSTPONE_TYPE","Symbol","for","$$typeof","BailoutToCSRError","isBailoutToCSRError","BAILOUT_TO_CSR","isNextRouterError","DynamicServerError","isDynamicServerError","DYNAMIC_ERROR_CODE","description","StaticGenBailoutError","isStaticGenBailoutError","NEXT_STATIC_GEN_BAILOUT","code","METADATA_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","atLeastOneTask","scheduleImmediate","scheduleOnNextTick","waitAtLeastOneReactRenderTask","cb","NEXT_RUNTIME","nextTick","setImmediate","r","INSTANT_VALIDATION_BOUNDARY_NAME","DynamicHoleKind","Postpone","PreludeState","abortAndThrowOnSynchronousRequestDataAccess","abortOnSynchronousPlatformIOAccess","accessedDynamicData","annotateDynamicAccess","consumeDynamicAccess","createDynamicTrackingState","createDynamicValidationState","createHangingInputAbortSignal","createInstantValidationState","createRenderInBrowserAbortSignal","formatDynamicAPIAccesses","getFirstDynamicReason","getNavigationDisallowedDynamicReasons","getStaticShellDisallowedDynamicReasons","isDynamicPostpone","isPrerenderInterruptedError","logDisallowedDynamicError","markCurrentScopeAsDynamic","postponeWithTracking","throwIfDisallowedDynamic","throwToInterruptStaticGeneration","trackAllowedDynamicAccess","trackDynamicDataInDynamicRender","trackDynamicHoleInNavigation","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","trackThrownErrorInNavigation","useDynamicRouteParams","useDynamicSearchParams","hasPostpone","React","unstable_postpone","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","trackingState","store","workUnitStore","forceDynamic","forceStatic","dynamicShouldError","dynamicTracking","revalidate","dynamicUsageDescription","dynamicUsageStack","stack","NODE_ENV","usedDynamic","abortOnSynchronousDynamicDataAccess","createPrerenderInterruptedError","controller","errorWithStack","prerenderSignal","workUnitAsyncStorage","assertPostpone","createPostponeReason","message","isDynamicPostponeReason","includes","NEXT_PRERENDER_INTERRUPTED","serverDynamic","clientDynamic","filter","access","map","line","AbortController","cacheSignal","inputReady","workStore","workAsyncStorage","fallbackParams","fallbackRouteParams","size","use","renderSignal","throwForMissingRequestStore","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","RegExp","hasMetadataRegex","hasViewportRegex","hasOutletRegex","hasInstantValidationBoundaryRegex","componentStack","dynamicValidation","test","addErrorContext","createInstantStack","hasAllowedClientDynamicAboveBoundary","validationPreventingErrors","thrownErrorsOutsideBoundary","kind","boundaryState","usageDescription","boundaryLocation","exec","expectedIds","renderedIds","suspenseLocation","index","syncError","cause","thrownValue","ownerStack","captureOwnerStack","name","console","__NEXT_DEV_SERVER","prelude","configAllowsBlocking","validationSampleTracking","missingSampleErrors","unstable_rethrow","RedirectType","unstable_isUnrecognizedActionError","replace"],"mappings":"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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js b/.next/server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js new file mode 100644 index 0000000..0b65c0c --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js @@ -0,0 +1,33 @@ +module.exports=[51234,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"handleISRError",{enumerable:!0,get:function(){return e}});let d=a.r(56704).workAsyncStorage;function e({error:a}){if(d){let b=d.getStore();if(b?.isStaticGeneration)throw a&&console.error(a),a}}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},57068,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0});var d={WarningIcon:function(){return i},errorStyles:function(){return g},errorThemeCss:function(){return h}};for(var e in d)Object.defineProperty(c,e,{enumerable:!0,get:d[e]});a.r(33354);let f=a.r(87924);a.r(72131);let g={container:{fontFamily:'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',height:"100vh",display:"flex",alignItems:"center",justifyContent:"center"},card:{marginTop:"-32px",maxWidth:"325px",padding:"32px 28px",textAlign:"left"},icon:{marginBottom:"24px"},title:{fontSize:"24px",fontWeight:500,letterSpacing:"-0.02em",lineHeight:"32px",margin:"0 0 12px 0",color:"var(--next-error-title)"},message:{fontSize:"14px",fontWeight:400,lineHeight:"21px",margin:"0 0 20px 0",color:"var(--next-error-message)"},form:{margin:0},buttonGroup:{display:"flex",gap:"8px",alignItems:"center"},button:{display:"inline-flex",alignItems:"center",justifyContent:"center",height:"32px",padding:"0 12px",fontSize:"14px",fontWeight:500,lineHeight:"20px",borderRadius:"6px",cursor:"pointer",color:"var(--next-error-btn-text)",background:"var(--next-error-btn-bg)",border:"var(--next-error-btn-border)"},buttonSecondary:{display:"inline-flex",alignItems:"center",justifyContent:"center",height:"32px",padding:"0 12px",fontSize:"14px",fontWeight:500,lineHeight:"20px",borderRadius:"6px",cursor:"pointer",color:"var(--next-error-btn-secondary-text)",background:"var(--next-error-btn-secondary-bg)",border:"var(--next-error-btn-secondary-border)"},digestFooter:{position:"fixed",bottom:"32px",left:"0",right:"0",textAlign:"center",fontFamily:'ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace',fontSize:"12px",lineHeight:"18px",fontWeight:400,margin:"0",color:"var(--next-error-digest)"}},h=` +:root { + --next-error-bg: #fff; + --next-error-text: #171717; + --next-error-title: #171717; + --next-error-message: #171717; + --next-error-digest: #666666; + --next-error-btn-text: #fff; + --next-error-btn-bg: #171717; + --next-error-btn-border: none; + --next-error-btn-secondary-text: #171717; + --next-error-btn-secondary-bg: transparent; + --next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08); +} +@media (prefers-color-scheme: dark) { + :root { + --next-error-bg: #0a0a0a; + --next-error-text: #ededed; + --next-error-title: #ededed; + --next-error-message: #ededed; + --next-error-digest: #a0a0a0; + --next-error-btn-text: #0a0a0a; + --next-error-btn-bg: #ededed; + --next-error-btn-border: none; + --next-error-btn-secondary-text: #ededed; + --next-error-btn-secondary-bg: transparent; + --next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14); + } +} +body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); } +`.replace(/\n\s*/g,"");function i(){return(0,f.jsx)("svg",{width:"32",height:"32",viewBox:"-0.2 -1.5 32 32",fill:"none",style:g.icon,children:(0,f.jsx)("path",{d:"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z",fill:"var(--next-error-title)"})})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},40622,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return g}}),a.r(33354);let d=a.r(87924);a.r(72131);let e=a.r(51234),f=a.r(57068),g=function({error:a}){let b=a?.digest,c=!!b;return(0,e.handleISRError)({error:a}),(0,d.jsxs)("html",{id:"__next_error__",children:[(0,d.jsx)("head",{children:(0,d.jsx)("style",{dangerouslySetInnerHTML:{__html:f.errorThemeCss}})}),(0,d.jsxs)("body",{children:[(0,d.jsx)("div",{style:f.errorStyles.container,children:(0,d.jsxs)("div",{style:f.errorStyles.card,children:[(0,d.jsx)(f.WarningIcon,{}),(0,d.jsx)("h1",{style:f.errorStyles.title,children:"This page couldn’t load"}),(0,d.jsx)("p",{style:f.errorStyles.message,children:c?"A server error occurred. Reload to try again.":"Reload to try again, or go back."}),(0,d.jsxs)("div",{style:f.errorStyles.buttonGroup,children:[(0,d.jsx)("form",{style:f.errorStyles.form,children:(0,d.jsx)("button",{type:"submit",style:f.errorStyles.button,children:"Reload"})}),!c&&(0,d.jsx)("button",{type:"button",style:f.errorStyles.buttonSecondary,onClick:()=>{window.history.length>1?window.history.back():window.location.href="/"},children:"Back"})]})]})}),b&&(0,d.jsxs)("p",{style:f.errorStyles.digestFooter,children:["ERROR ",b]})]})]})};("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)}]; + +//# sourceMappingURL=node_modules_next_dist_client_components_06j6hww._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js.map b/.next/server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js.map new file mode 100644 index 0000000..52c8725 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_06j6hww._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/client/components/handle-isr-error.tsx","../../../../node_modules/next/src/client/components/builtin/error-styles.tsx","../../../../node_modules/next/src/client/components/builtin/global-error.tsx"],"sourcesContent":["const workAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n ).workAsyncStorage\n : undefined\n\n// if we are revalidating we want to re-throw the error so the\n// function crashes so we can maintain our previous cache\n// instead of caching the error page\nexport function handleISRError({ error }: { error: any }) {\n if (workAsyncStorage) {\n const store = workAsyncStorage.getStore()\n if (store?.isStaticGeneration) {\n if (error) {\n console.error(error)\n }\n throw error\n }\n }\n}\n","import React from 'react'\n\nexport const errorStyles = {\n container: {\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n },\n card: {\n marginTop: '-32px',\n maxWidth: '325px',\n padding: '32px 28px',\n textAlign: 'left' as const,\n },\n icon: {\n marginBottom: '24px',\n },\n title: {\n fontSize: '24px',\n fontWeight: 500,\n letterSpacing: '-0.02em',\n lineHeight: '32px',\n margin: '0 0 12px 0',\n color: 'var(--next-error-title)',\n },\n message: {\n fontSize: '14px',\n fontWeight: 400,\n lineHeight: '21px',\n margin: '0 0 20px 0',\n color: 'var(--next-error-message)',\n },\n form: {\n margin: 0,\n },\n buttonGroup: {\n display: 'flex',\n gap: '8px',\n alignItems: 'center',\n },\n button: {\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n height: '32px',\n padding: '0 12px',\n fontSize: '14px',\n fontWeight: 500,\n lineHeight: '20px',\n borderRadius: '6px',\n cursor: 'pointer',\n color: 'var(--next-error-btn-text)',\n background: 'var(--next-error-btn-bg)',\n border: 'var(--next-error-btn-border)',\n },\n buttonSecondary: {\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n height: '32px',\n padding: '0 12px',\n fontSize: '14px',\n fontWeight: 500,\n lineHeight: '20px',\n borderRadius: '6px',\n cursor: 'pointer',\n color: 'var(--next-error-btn-secondary-text)',\n background: 'var(--next-error-btn-secondary-bg)',\n border: 'var(--next-error-btn-secondary-border)',\n },\n digestFooter: {\n position: 'fixed' as const,\n bottom: '32px',\n left: '0',\n right: '0',\n textAlign: 'center' as const,\n fontFamily:\n 'ui-monospace,SFMono-Regular,\"SF Mono\",Menlo,Consolas,monospace',\n fontSize: '12px',\n lineHeight: '18px',\n fontWeight: 400,\n margin: '0',\n color: 'var(--next-error-digest)',\n },\n} as const\n\nexport const errorThemeCss = `\n:root {\n --next-error-bg: #fff;\n --next-error-text: #171717;\n --next-error-title: #171717;\n --next-error-message: #171717;\n --next-error-digest: #666666;\n --next-error-btn-text: #fff;\n --next-error-btn-bg: #171717;\n --next-error-btn-border: none;\n --next-error-btn-secondary-text: #171717;\n --next-error-btn-secondary-bg: transparent;\n --next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);\n}\n@media (prefers-color-scheme: dark) {\n :root {\n --next-error-bg: #0a0a0a;\n --next-error-text: #ededed;\n --next-error-title: #ededed;\n --next-error-message: #ededed;\n --next-error-digest: #a0a0a0;\n --next-error-btn-text: #0a0a0a;\n --next-error-btn-bg: #ededed;\n --next-error-btn-border: none;\n --next-error-btn-secondary-text: #ededed;\n --next-error-btn-secondary-bg: transparent;\n --next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);\n }\n}\nbody { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\n`.replace(/\\n\\s*/g, '')\n\nexport function WarningIcon() {\n return (\n <svg\n width=\"32\"\n height=\"32\"\n viewBox=\"-0.2 -1.5 32 32\"\n fill=\"none\"\n style={errorStyles.icon}\n >\n <path\n d=\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\"\n fill=\"var(--next-error-title)\"\n />\n </svg>\n )\n}\n","'use client'\n\nimport React from 'react'\nimport { handleISRError } from '../handle-isr-error'\nimport { errorStyles, errorThemeCss, WarningIcon } from './error-styles'\n\nexport type GlobalErrorComponent = React.ComponentType<{\n error: any\n reset: () => void\n unstable_retry: () => void\n}>\n\nfunction DefaultGlobalError({ error }: { error: any }) {\n const digest: string | undefined = error?.digest\n const isServerError = !!digest\n\n const message = isServerError\n ? 'A server error occurred. Reload to try again.'\n : 'Reload to try again, or go back.'\n\n handleISRError({ error })\n\n return (\n <html id=\"__next_error__\">\n <head>\n <style dangerouslySetInnerHTML={{ __html: errorThemeCss }} />\n </head>\n <body>\n <div style={errorStyles.container}>\n <div style={errorStyles.card}>\n <WarningIcon />\n <h1 style={errorStyles.title}>This page couldn’t load</h1>\n <p style={errorStyles.message}>{message}</p>\n <div style={errorStyles.buttonGroup}>\n <form style={errorStyles.form}>\n <button type=\"submit\" style={errorStyles.button}>\n Reload\n </button>\n </form>\n {!isServerError && (\n <button\n type=\"button\"\n style={errorStyles.buttonSecondary}\n onClick={() => {\n if (window.history.length > 1) {\n window.history.back()\n } else {\n window.location.href = '/'\n }\n }}\n >\n Back\n </button>\n )}\n </div>\n </div>\n </div>\n {digest && <p style={errorStyles.digestFooter}>ERROR {digest}</p>}\n </body>\n </html>\n )\n}\n\n// Exported so that the import signature in the loaders can be identical to user\n// supplied custom global error signatures.\nexport default DefaultGlobalError\n"],"names":["handleISRError","workAsyncStorage","window","require","undefined","error","store","getStore","isStaticGeneration","console","WarningIcon","errorStyles","errorThemeCss","container","fontFamily","height","display","alignItems","justifyContent","card","marginTop","maxWidth","padding","textAlign","icon","marginBottom","title","fontSize","fontWeight","letterSpacing","lineHeight","margin","color","message","form","buttonGroup","gap","button","borderRadius","cursor","background","border","buttonSecondary","digestFooter","position","bottom","left","right","replace","svg","width","viewBox","fill","style","path","d","DefaultGlobalError","digest","isServerError","html","id","head","dangerouslySetInnerHTML","__html","body","div","h1","p","type","onClick","history","length","back","location","href"],"mappings":"sHAUgBA,iBAAAA,qCAAAA,KAVhB,IAAMC,EAGEE,EAAQ,CAAA,CAAA,IAAA,GACRF,MAHN,OAAOC,GAGe,CAMjB,EALDE,KAJc,EASJJ,EAAe,OAAEK,CAAK,CAAkB,EACtD,GAAIJ,EAAkB,CACpB,IAAMK,EAAQL,EAAiBM,QAAQ,GACvC,GAAID,GAAOE,mBAIT,CAJ6B,KACzBH,GACFI,IADS,IACDJ,KAAK,CAACA,GAEVA,CAEV,CACF,8SCqGgBK,WAAW,CAAA,kBAAXA,GAvHHC,WAAW,CAAA,kBAAXA,GAuFAC,aAAa,CAAA,kBAAbA,qGAzFK,CAAA,CAAA,IAAA,GAEX,IAAMD,EAAc,CACzBE,UAAW,CACTC,WACE,8FACFC,OAAQ,QACRC,QAAS,OACTC,WAAY,SACZC,eAAgB,QAClB,EACAC,KAAM,CACJC,UAAW,QACXC,SAAU,QACVC,QAAS,YACTC,UAAW,MACb,EACAC,KAAM,CACJC,aAAc,MAChB,EACAC,MAAO,CACLC,SAAU,OACVC,WAAY,IACZC,cAAe,UACfC,WAAY,OACZC,OAAQ,aACRC,MAAO,yBACT,EACAC,QAAS,CACPN,SAAU,OACVC,WAAY,IACZE,WAAY,OACZC,OAAQ,aACRC,MAAO,2BACT,EACAE,KAAM,CACJH,OAAQ,CACV,EACAI,YAAa,CACXnB,QAAS,OACToB,IAAK,MACLnB,WAAY,QACd,EACAoB,OAAQ,CACNrB,QAAS,cACTC,WAAY,SACZC,eAAgB,SAChBH,OAAQ,OACRO,QAAS,SACTK,SAAU,OACVC,WAAY,IACZE,WAAY,OACZQ,aAAc,MACdC,OAAQ,UACRP,MAAO,6BACPQ,WAAY,2BACZC,OAAQ,8BACV,EACAC,gBAAiB,CACf1B,QAAS,cACTC,WAAY,SACZC,eAAgB,SAChBH,OAAQ,OACRO,QAAS,SACTK,SAAU,OACVC,WAAY,IACZE,WAAY,OACZQ,aAAc,MACdC,OAAQ,UACRP,MAAO,uCACPQ,WAAY,qCACZC,OAAQ,wCACV,EACAE,aAAc,CACZC,SAAU,QACVC,OAAQ,OACRC,KAAM,IACNC,MAAO,IACPxB,UAAW,SACXT,WACE,iEACFa,SAAU,OACVG,WAAY,OACZF,WAAY,IACZG,OAAQ,IACRC,MAAO,0BACT,CACF,EAEapB,EAAgB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8B9B,CAAC,CAACoC,OAAO,CAAC,SAAU,IAEb,SAAStC,IACd,MACE,CADF,AACE,EAAA,EAAA,GAAA,EAACuC,EADH,IACGA,CACCC,MAAM,KACNnC,OAAO,KACPoC,QAAQ,kBACRC,KAAK,OACLC,MAAO1C,EAAYa,IAAI,UAEvB,CAAA,EAAA,EAAA,GAAA,EAAC8B,EAAD,KAACA,CACCC,EAAE,igBACFH,KAAK,6BAIb,+TCvEA,OADA,AADA,GAEA,qCAAA,GAD2C,gCA9DzB,CAAA,CAAA,GA6D8D,CA7D9D,WACa,CAAA,CAAA,IAAA,OACyB,CAAA,CAAA,IAAA,GA6DxD,EArDA,SAASI,AAAmB,AAqDbA,CArDenD,OAAK,CAAkB,EACnD,IAAMoD,EAA6BpD,GAAOoD,OACpCC,EAAgB,CAAC,CAACD,EAQxB,MAFAzD,CAAAA,AAEA,EAFAA,EAAAA,OAEA,OAFAA,AAAc,EAAC,OAAEK,CAAM,GAGrB,CAAA,EAAA,EAAA,IAAA,EAACsD,OAAAA,CAAKC,GAAG,2BACP,CAAA,EAAA,EAAA,GAAA,EAACC,OAAAA,UACC,CAAA,EAAA,EAAA,GAAA,EAACR,EAAD,MAACA,CAAMS,wBAAyB,CAAEC,OAAQnD,EAAAA,aAAa,AAAC,MAE1D,CAAA,EAAA,EAAA,IAAA,EAACoD,OAAAA,WACC,CAAA,EAAA,EAAA,GAAA,EAACC,MAAAA,CAAIZ,MAAO1C,EAAAA,WAAW,CAACE,SAAS,UAC/B,CAAA,EAAA,EAAA,IAAA,EAACoD,CAAD,KAACA,CAAIZ,MAAO1C,EAAAA,WAAW,CAACQ,IAAI,WAC1B,GAAA,EAAA,GAAA,EAACT,EAAAA,WAAW,CAAA,CAAA,GACZ,CAAA,EAAA,EAAA,GAAA,EAACwD,KAAAA,CAAGb,MAAO1C,EAAAA,WAAW,CAACe,KAAK,UAAE,4BAC9B,CAAA,EAAA,EAAA,GAAA,EAACyC,IAAAA,CAAEd,MAAO1C,EAAAA,WAAW,CAACsB,OAAO,UAhBvByB,CAgB0BzB,CAftC,gDACA,qCAeM,CAAA,EAAA,EAAA,IAAA,EAACgC,MAAAA,CAAIZ,MAAO1C,EAAAA,WAAW,CAACwB,WAAW,WACjC,CAAA,EAAA,EAAA,GAAA,EAACD,OAAAA,CAAKmB,MAAO1C,EAAAA,WAAW,CAACuB,IAAI,UAC3B,CAAA,EAAA,EAAA,GAAA,EAACG,EAAD,OAACA,CAAO+B,KAAK,SAASf,MAAO1C,EAAAA,WAAW,CAAC0B,MAAM,UAAE,aAIlD,CAACqB,GACA,CAAA,EAAA,EAAA,GAAA,EAACrB,IADDqB,KACCrB,CACC+B,KAFFV,AAEO,SACLL,MAAO1C,EAAAA,WAAW,CAAC+B,eAAe,CAClC2B,QAAS,KACHnE,OAAOoE,OAAO,CAACC,MAAM,CAAG,EAC1BrE,CAD6B,MACtBoE,OAAO,CAACE,IAAI,GAEnBtE,OAAOuE,QAAQ,CAACC,IAAI,CAAG,GAE3B,WACD,iBAORjB,GAAU,CAAA,EAAA,EAAA,EAAVA,EAAU,EAACU,IAAAA,CAAEd,EAAbI,IAAoB9C,EAAAA,WAAW,CAACgC,YAAY,WAAE,SAAOc,UAI9D","ignoreList":[0,1,2]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js b/.next/server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js new file mode 100644 index 0000000..6ce9c21 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js @@ -0,0 +1,3 @@ +module.exports=[53686,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"styles",{enumerable:!0,get:function(){return d}});let d={error:{fontFamily:'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',height:"100vh",textAlign:"center",display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center"},desc:{display:"inline-block"},h1:{display:"inline-block",margin:"0 20px 0 0",padding:"0 23px 0 0",fontSize:24,fontWeight:500,verticalAlign:"top",lineHeight:"49px"},h2:{fontSize:14,fontWeight:400,lineHeight:"49px",margin:0}};("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},72421,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"HTTPAccessErrorFallback",{enumerable:!0,get:function(){return f}});let d=a.r(7997),e=a.r(53686);function f({status:a,message:b}){return(0,d.jsxs)(d.Fragment,{children:[(0,d.jsx)("title",{children:`${a}: ${b}`}),(0,d.jsx)("div",{style:e.styles.error,children:(0,d.jsxs)("div",{children:[(0,d.jsx)("style",{dangerouslySetInnerHTML:{__html:"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}),(0,d.jsx)("h1",{className:"next-error-h1",style:e.styles.h1,children:a}),(0,d.jsx)("div",{style:e.styles.desc,children:(0,d.jsx)("h2",{style:e.styles.h2,children:b})})]})})]})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},79962,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return f}});let d=a.r(7997),e=a.r(72421);function f(){return(0,d.jsx)(e.HTTPAccessErrorFallback,{status:404,message:"This page could not be found."})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},43619,a=>{a.n(a.i(79962))}]; + +//# sourceMappingURL=node_modules_next_dist_client_components_0inhx6q._.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js.map b/.next/server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js.map new file mode 100644 index 0000000..a6ac20c --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/client/components/styles/access-error-styles.ts","../../../../node_modules/next/src/client/components/http-access-fallback/error-fallback.tsx","../../../../node_modules/next/src/client/components/builtin/not-found.tsx"],"sourcesContent":["export const styles: Record<string, React.CSSProperties> = {\n error: {\n // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n textAlign: 'center',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n\n desc: {\n display: 'inline-block',\n },\n\n h1: {\n display: 'inline-block',\n margin: '0 20px 0 0',\n padding: '0 23px 0 0',\n fontSize: 24,\n fontWeight: 500,\n verticalAlign: 'top',\n lineHeight: '49px',\n },\n\n h2: {\n fontSize: 14,\n fontWeight: 400,\n lineHeight: '49px',\n margin: 0,\n },\n}\n","import { styles } from '../styles/access-error-styles'\n\nexport function HTTPAccessErrorFallback({\n status,\n message,\n}: {\n status: number\n message: string\n}) {\n return (\n <>\n {/* <head> */}\n <title>{`${status}: ${message}`}\n {/* */}\n
\n
\n \n

\n {status}\n

\n
\n

{message}

\n
\n
\n
\n \n )\n}\n","import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'\n\nexport default function NotFound() {\n return (\n \n )\n}\n"],"names":["styles","error","fontFamily","height","textAlign","display","flexDirection","alignItems","justifyContent","desc","h1","margin","padding","fontSize","fontWeight","verticalAlign","lineHeight","h2","HTTPAccessErrorFallback","status","message","title","div","style","dangerouslySetInnerHTML","__html","className","NotFound"],"mappings":"sHAAaA,SAAAA,qCAAAA,KAAN,IAAMA,EAA8C,CACzDC,MAAO,CAELC,WACE,8FACFC,OAAQ,QACRC,UAAW,SACXC,QAAS,OACTC,cAAe,SACfC,WAAY,SACZC,eAAgB,QAClB,EAEAC,KAAM,CACJJ,QAAS,cACX,EAEAK,GAAI,CACFL,QAAS,eACTM,OAAQ,aACRC,QAAS,aACTC,SAAU,GACVC,WAAY,IACZC,cAAe,MACfC,WAAY,MACd,EAEAC,GAAI,CACFJ,SAAU,GACVC,WAAY,IACZE,WAAY,OACZL,OAAQ,CACV,CACF,gUC/BgBO,0BAAAA,qCAAAA,yBAFO,CAAA,CAAA,IAAA,GAEhB,SAASA,EAAwB,QACtCC,CAAM,SACNC,CAAO,CAIR,EACC,MACE,CADF,AACE,EAAA,EAAA,IAAA,EAAA,CADF,CACE,QAAA,CAAA,WAEE,CAAA,EAAA,EAAA,GAAA,EAACC,QAAAA,UAAO,CAAA,EAAGF,EAAO,EAAE,EAAEC,EAAAA,CAAS,GAE/B,CAAA,EAAA,EAAA,GAAA,EAACE,MAAAA,CAAIC,MAAOvB,EAAAA,MAAM,CAACC,KAAK,UACtB,CAAA,EAAA,EAAA,IAAA,EAACqB,CAAD,KAACA,WACC,CAAA,EAAA,EAAA,GAAA,EAACC,QAAAA,CACCC,wBAAyB,CAcvBC,OAAQ,CAAC,6NAA6N,CAAC,AACzO,IAEF,CAAA,EAAA,EAAA,GAAA,EAACf,KAAAA,CAAGgB,UAAU,gBAAgBH,MAAOvB,EAAAA,MAAM,CAACU,EAAE,UAC3CS,IAEH,CAAA,EAAA,EAAA,GAAA,EAACG,MAAAA,CAAIC,MAAOvB,EAAAA,MAAM,CAACS,IAAI,UACrB,CAAA,EAAA,EAAA,GAAA,EAACQ,EAAD,GAACA,CAAGM,MAAOvB,EAAAA,MAAM,CAACiB,EAAE,UAAGG,aAMnC,+TC1CA,UAAA,qCAAwBO,yBAFgB,CAAA,CAAA,IAAA,GAEzB,SAASA,IACtB,MACE,CADF,AACE,EAAA,EAAA,GAAA,EAACT,EADH,AACGA,uBAAuB,CAAA,CACtBC,OAAQ,IACRC,QAAQ,iCAGd","ignoreList":[0,1,2]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js new file mode 100644 index 0000000..241d5b2 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js @@ -0,0 +1,3 @@ +module.exports=[85523,(a,b,c)=>{"use strict";Object.defineProperty(c,"__esModule",{value:!0}),Object.defineProperty(c,"default",{enumerable:!0,get:function(){return f}});let d=a.r(7997),e=a.r(72421);function f(){return(0,d.jsx)(e.HTTPAccessErrorFallback,{status:403,message:"This page could not be accessed."})}("function"==typeof c.default||"object"==typeof c.default&&null!==c.default)&&void 0===c.default.__esModule&&(Object.defineProperty(c.default,"__esModule",{value:!0}),Object.assign(c.default,c),b.exports=c.default)},13718,a=>{a.n(a.i(85523))}]; + +//# sourceMappingURL=node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js.map b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js.map new file mode 100644 index 0000000..1c8b12f --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/src/client/components/builtin/forbidden.tsx"],"sourcesContent":["import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'\n\nexport default function Forbidden() {\n return (\n \n )\n}\n"],"names":["Forbidden","HTTPAccessErrorFallback","status","message"],"mappings":"sHAEA,UAAA,qCAAwBA,yBAFgB,CAAA,CAAA,IAAA,GAEzB,SAASA,IACtB,MACE,CADF,AACE,EAAA,EAAA,GAAA,EAACC,EADH,AACGA,uBAAuB,CAAA,CACtBC,OAAQ,IACRC,QAAQ,oCAGd","ignoreList":[0]} \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js new file mode 100644 index 0000000..34a0e33 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js @@ -0,0 +1,3 @@ +module.exports=[4276,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/client/components/builtin/global-error.js "))},82509,(a,b,c)=>{let{createClientModuleProxy:d}=a.r(11857);a.n(d("[project]/node_modules/next/dist/client/components/builtin/global-error.js"))},66114,a=>{"use strict";a.i(4276);var b=a.i(82509);a.n(b)},62212,a=>{a.n(a.i(66114))}]; + +//# sourceMappingURL=node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js.map \ No newline at end of file diff --git a/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js.map b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js.map new file mode 100644 index 0000000..28f8da4 --- /dev/null +++ b/.next/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../node_modules/next/dist/client/components/builtin/global-error.js/__nextjs-internal-proxy.cjs","../../../../node_modules/next/src/client/components/builtin/global-error.tsx"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/components/builtin/global-error.js\"));\n","'use client'\n\nimport React from 'react'\nimport { handleISRError } from '../handle-isr-error'\nimport { errorStyles, errorThemeCss, WarningIcon } from './error-styles'\n\nexport type GlobalErrorComponent = React.ComponentType<{\n error: any\n reset: () => void\n unstable_retry: () => void\n}>\n\nfunction DefaultGlobalError({ error }: { error: any }) {\n const digest: string | undefined = error?.digest\n const isServerError = !!digest\n\n const message = isServerError\n ? 'A server error occurred. Reload to try again.'\n : 'Reload to try again, or go back.'\n\n handleISRError({ error })\n\n return (\n \n \n

404

This page could not be found.

\ No newline at end of file diff --git a/.next/server/pages/500.html b/.next/server/pages/500.html new file mode 100644 index 0000000..3422948 --- /dev/null +++ b/.next/server/pages/500.html @@ -0,0 +1 @@ +500: This page couldn’t load

This page couldn’t load

A server error occurred. Reload to try again.

\ No newline at end of file diff --git a/.next/server/prefetch-hints.json b/.next/server/prefetch-hints.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.next/server/prefetch-hints.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.next/server/server-reference-manifest.js b/.next/server/server-reference-manifest.js new file mode 100644 index 0000000..12e7845 --- /dev/null +++ b/.next/server/server-reference-manifest.js @@ -0,0 +1 @@ +self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca\": {\n \"workers\": {\n \"app/_not-found/page\": {\n \"moduleId\": 75341,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/about-us/page\": {\n \"moduleId\": 16945,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/air-freight/page\": {\n \"moduleId\": 67113,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/blog/[slug]/page\": {\n \"moduleId\": 68232,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/blog/page\": {\n \"moduleId\": 62245,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/contact/page\": {\n \"moduleId\": 8829,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/cookie-policy/page\": {\n \"moduleId\": 78012,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/doormile-wings/page\": {\n \"moduleId\": 64668,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/empowerment/page\": {\n \"moduleId\": 61215,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/express/page\": {\n \"moduleId\": 88309,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/how-it-works/page\": {\n \"moduleId\": 1090,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/miletruth/page\": {\n \"moduleId\": 59753,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/page\": {\n \"moduleId\": 71970,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/privacy-policy/page\": {\n \"moduleId\": 84290,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/solutions/page\": {\n \"moduleId\": 44019,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n },\n \"app/terms-of-service/page\": {\n \"moduleId\": 61702,\n \"async\": false,\n \"exportedName\": \"sendEmailAction\",\n \"filename\": \"src/actions/sendEmail.ts\"\n }\n },\n \"filename\": \"src/actions/sendEmail.ts\",\n \"exportedName\": \"sendEmailAction\"\n }\n },\n \"edge\": {},\n \"encryptionKey\": \"ucYs79UXfiELBqQuu8v+QxtnPUiD5HroqrMgfeQPhZw=\"\n}" \ No newline at end of file diff --git a/.next/server/server-reference-manifest.json b/.next/server/server-reference-manifest.json new file mode 100644 index 0000000..ce46e16 --- /dev/null +++ b/.next/server/server-reference-manifest.json @@ -0,0 +1,108 @@ +{ + "node": { + "40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca": { + "workers": { + "app/_not-found/page": { + "moduleId": 75341, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/about-us/page": { + "moduleId": 16945, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/air-freight/page": { + "moduleId": 67113, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/blog/[slug]/page": { + "moduleId": 68232, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/blog/page": { + "moduleId": 62245, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/contact/page": { + "moduleId": 8829, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/cookie-policy/page": { + "moduleId": 78012, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/doormile-wings/page": { + "moduleId": 64668, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/empowerment/page": { + "moduleId": 61215, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/express/page": { + "moduleId": 88309, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/how-it-works/page": { + "moduleId": 1090, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/miletruth/page": { + "moduleId": 59753, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/page": { + "moduleId": 71970, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/privacy-policy/page": { + "moduleId": 84290, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/solutions/page": { + "moduleId": 44019, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + }, + "app/terms-of-service/page": { + "moduleId": 61702, + "async": false, + "exportedName": "sendEmailAction", + "filename": "src/actions/sendEmail.ts" + } + }, + "filename": "src/actions/sendEmail.ts", + "exportedName": "sendEmailAction" + } + }, + "edge": {}, + "encryptionKey": "ucYs79UXfiELBqQuu8v+QxtnPUiD5HroqrMgfeQPhZw=" +} \ No newline at end of file diff --git a/build/_next/static/chunks/0-kxqnmnjtk7l.js b/.next/static/chunks/0-kxqnmnjtk7l.js similarity index 100% rename from build/_next/static/chunks/0-kxqnmnjtk7l.js rename to .next/static/chunks/0-kxqnmnjtk7l.js diff --git a/build/_next/static/chunks/00fiud~fayo7s.css b/.next/static/chunks/00fiud~fayo7s.css similarity index 100% rename from build/_next/static/chunks/00fiud~fayo7s.css rename to .next/static/chunks/00fiud~fayo7s.css diff --git a/build/_next/static/chunks/01xlw8hd842-c.js b/.next/static/chunks/01xlw8hd842-c.js similarity index 100% rename from build/_next/static/chunks/01xlw8hd842-c.js rename to .next/static/chunks/01xlw8hd842-c.js diff --git a/build/_next/static/chunks/03~yq9q893hmn.js b/.next/static/chunks/03~yq9q893hmn.js similarity index 100% rename from build/_next/static/chunks/03~yq9q893hmn.js rename to .next/static/chunks/03~yq9q893hmn.js diff --git a/build/_next/static/chunks/0~gr-u6_wl8~w.js b/.next/static/chunks/043-lr8ahr5l4.js similarity index 84% rename from build/_next/static/chunks/0~gr-u6_wl8~w.js rename to .next/static/chunks/043-lr8ahr5l4.js index a5f4f92..0c8d2a5 100644 --- a/build/_next/static/chunks/0~gr-u6_wl8~w.js +++ b/.next/static/chunks/043-lr8ahr5l4.js @@ -1,4 +1,4 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,67585,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"BailoutToCSR",{enumerable:!0,get:function(){return r}});let i=e.r(32061);function r({reason:e,children:t}){if("u"{"use strict";function i(e){return e.split("/").map(e=>encodeURIComponent(e)).join("/")}Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"encodeURIPath",{enumerable:!0,get:function(){return i}})},52157,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"PreloadChunks",{enumerable:!0,get:function(){return s}});let i=e.r(43476),r=e.r(74080),a=e.r(63599),o=e.r(9885),l=e.r(43369);function s({moduleIds:e}){if("u">typeof window)return null;let t=a.workAsyncStorage.getStore();if(void 0===t)return null;let n=[];if(t.reactLoadableManifest&&e){let i=t.reactLoadableManifest;for(let t of e){if(!i[t])continue;let e=i[t].files;n.push(...e)}}if(0===n.length)return null;let c=(0,l.getAssetTokenQuery)();return(0,i.jsx)(i.Fragment,{children:n.map(e=>{let n=`${t.assetPrefix}/_next/${(0,o.encodeURIPath)(e)}${c}`;return e.endsWith(".css")?(0,i.jsx)("link",{precedence:"dynamic",href:n,rel:"stylesheet",as:"style",nonce:t.nonce},e):((0,r.preload)(n,{as:"script",fetchPriority:"low",nonce:t.nonce}),null)})})}},69093,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return c}});let i=e.r(43476),r=e.r(71645),a=e.r(67585),o=e.r(52157);function l(e){return{default:e&&"default"in e?e.default:e}}let s={loader:()=>Promise.resolve(l(()=>null)),loading:null,ssr:!0},c=function(e){let t={...s,...e},n=(0,r.lazy)(()=>t.loader().then(l)),c=t.loading;function m(e){let l=c?(0,i.jsx)(c,{isLoading:!0,pastDelay:!0,error:null}):null,s=!t.ssr||!!t.loading,m=s?r.Suspense:r.Fragment,d=t.ssr?(0,i.jsxs)(i.Fragment,{children:["u"{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return r}});let i=e.r(55682)._(e.r(69093));function r(e,t){let n={};"function"==typeof e&&(n.loader=e);let r={...n,...t};return(0,i.default)({...r,modules:r.loadableGenerated?.modules})}("function"==typeof n.default||"object"==typeof n.default&&null!==n.default)&&void 0===n.default.__esModule&&(Object.defineProperty(n.default,"__esModule",{value:!0}),Object.assign(n.default,n),t.exports=n.default)},58829,e=>{"use strict";var t=e.i(43476),n=e.i(71645);function i({from:e,to:r,duration:a=2e3,decimals:o=0,suffix:l=""}){let[s,c]=(0,n.useState)(e);return(0,n.useEffect)(()=>{let t=null,n=i=>{t||(t=i);let o=Math.min((i-t)/a,1);c(o*(r-e)+e),o<1&&window.requestAnimationFrame(n)};window.requestAnimationFrame(n)},[e,r,a]),(0,t.jsxs)(t.Fragment,{children:[s.toFixed(o),l]})}e.s(["default",0,function(){let[e,r]=(0,n.useState)(!1);return(0,n.useEffect)(()=>{requestAnimationFrame(()=>r(!0))},[]),(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("link",{rel:"preload",as:"image",href:"/images/miletruth-bg.webp"}),(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,67585,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"BailoutToCSR",{enumerable:!0,get:function(){return r}});let i=e.r(32061);function r({reason:e,children:t}){if("u"{"use strict";function i(e){return e.split("/").map(e=>encodeURIComponent(e)).join("/")}Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"encodeURIPath",{enumerable:!0,get:function(){return i}})},52157,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"PreloadChunks",{enumerable:!0,get:function(){return s}});let i=e.r(43476),r=e.r(74080),a=e.r(63599),o=e.r(9885),l=e.r(43369);function s({moduleIds:e}){if("u">typeof window)return null;let t=a.workAsyncStorage.getStore();if(void 0===t)return null;let n=[];if(t.reactLoadableManifest&&e){let i=t.reactLoadableManifest;for(let t of e){if(!i[t])continue;let e=i[t].files;n.push(...e)}}if(0===n.length)return null;let c=(0,l.getAssetTokenQuery)();return(0,i.jsx)(i.Fragment,{children:n.map(e=>{let n=`${t.assetPrefix}/_next/${(0,o.encodeURIPath)(e)}${c}`;return e.endsWith(".css")?(0,i.jsx)("link",{precedence:"dynamic",href:n,rel:"stylesheet",as:"style",nonce:t.nonce},e):((0,r.preload)(n,{as:"script",fetchPriority:"low",nonce:t.nonce}),null)})})}},69093,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return c}});let i=e.r(43476),r=e.r(71645),a=e.r(67585),o=e.r(52157);function l(e){return{default:e&&"default"in e?e.default:e}}let s={loader:()=>Promise.resolve(l(()=>null)),loading:null,ssr:!0},c=function(e){let t={...s,...e},n=(0,r.lazy)(()=>t.loader().then(l)),c=t.loading;function m(e){let l=c?(0,i.jsx)(c,{isLoading:!0,pastDelay:!0,error:null}):null,s=!t.ssr||!!t.loading,m=s?r.Suspense:r.Fragment,d=t.ssr?(0,i.jsxs)(i.Fragment,{children:["u"{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return r}});let i=e.r(55682)._(e.r(69093));function r(e,t){let n={};"function"==typeof e&&(n.loader=e);let r={...n,...t};return(0,i.default)({...r,modules:r.loadableGenerated?.modules})}("function"==typeof n.default||"object"==typeof n.default&&null!==n.default)&&void 0===n.default.__esModule&&(Object.defineProperty(n.default,"__esModule",{value:!0}),Object.assign(n.default,n),t.exports=n.default)},58829,e=>{"use strict";var t=e.i(43476),n=e.i(71645),i=e.i(74080);function r({from:e,to:i,duration:a=2e3,decimals:o=0,suffix:l=""}){let[s,c]=(0,n.useState)(e);return(0,n.useEffect)(()=>{let t=null,n=r=>{t||(t=r);let o=Math.min((r-t)/a,1);c(o*(i-e)+e),o<1&&window.requestAnimationFrame(n)};window.requestAnimationFrame(n)},[e,i,a]),(0,t.jsxs)(t.Fragment,{children:[s.toFixed(o),l]})}e.s(["default",0,function(){(0,i.preload)("/images/miletruth-bg.webp",{as:"image"});let[e,a]=(0,n.useState)(!1);return(0,n.useEffect)(()=>{requestAnimationFrame(()=>a(!0))},[]),(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` /* ── Hero wrapper: column layout, zero gap between hero + stats ── */ .miletruth-hero .elementor-element-86f3204 { display: flex; @@ -287,7 +287,7 @@ word-break: break-word; } } - `}}),(0,t.jsx)("div",{className:"elementor-63 miletruth-hero",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-86f3204 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"86f3204","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"miletruth-hero-container",children:(0,t.jsx)("div",{className:"e-con-inner miletruth-content",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsx)("div",{className:"content-slider owl-carousel owl-theme",children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard",children:(0,t.jsx)("div",{className:"slide-content",style:{paddingLeft:0,paddingRight:0},children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["The Only AI Built",(0,t.jsx)("br",{}),"Exclusively for Logistics"]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Optimizes every stage of the delivery journey for maximum efficiency."})})})]})})})})})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8e5c81e e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"8e5c81e","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-628123a e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"628123a","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-1da88b5 elementor-widget elementor-widget-counter","data-id":"1da88b5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"SLA Compliance"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(i,{from:1,to:99.9,decimals:1,suffix:""}):"1"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:" %"})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1da88b5 elementor-widget elementor-widget-counter","data-id":"1da88b5-2","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"Distance Saved"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(i,{from:1,to:42,decimals:0,suffix:""}):"1"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:" %"})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1da88b5 elementor-widget elementor-widget-counter","data-id":"1da88b5-3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"Fewer Vehicles"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(i,{from:1,to:37,decimals:0,suffix:""}):"1"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:" %"})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-a1cf3d4 elementor-widget elementor-widget-counter","data-id":"a1cf3d4","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"Dispatch Latency"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(i,{from:1,to:45,decimals:0,suffix:""}):"45"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:"ms"})]})]})})})]})})})]})})]})}])},76756,e=>{"use strict";var t=e.i(43476),n=e.i(14224),i=e.i(71645),r=e.i(70703);let a=(0,r.default)(()=>e.A(49712),{loadableGenerated:{modules:[29539]},ssr:!1}),o=(0,r.default)(()=>e.A(40999),{loadableGenerated:{modules:[39184]},ssr:!1}),l={optimization:"#020617",logistics:"#08080c"},s={optimization:{center:.78,amp:.14,speed:.5,still:.85},logistics:{center:.5,amp:.13,speed:.4,still:.52}};function c({variant:e,ariaLabel:n}){let r=(0,i.useRef)(null),m=(0,i.useRef)(s[e].still),[d,p]=(0,i.useState)(!1),[u,h]=(0,i.useState)(!1),[f,g]=(0,i.useState)(!1),[x,b]=(0,i.useState)(!1),[v,w]=(0,i.useState)(!1);return(0,i.useEffect)(()=>{let e=window.matchMedia("(max-width: 767px)"),t=window.matchMedia("(min-width: 768px) and (max-width: 1024px)"),n=window.matchMedia("(prefers-reduced-motion: reduce)"),i=()=>{g(e.matches),b(t.matches),w(n.matches)};return i(),e.addEventListener("change",i),t.addEventListener("change",i),n.addEventListener("change",i),()=>{e.removeEventListener("change",i),t.removeEventListener("change",i),n.removeEventListener("change",i)}},[]),(0,i.useEffect)(()=>{let e=r.current;if(!e)return;let t=new IntersectionObserver(e=>{e.some(e=>e.isIntersecting)&&(p(!0),h(!0),t.disconnect())},{rootMargin:"60% 0px"}),n=new IntersectionObserver(e=>h(e.some(e=>e.isIntersecting)),{rootMargin:"10% 0px"});return t.observe(e),n.observe(e),()=>{t.disconnect(),n.disconnect()}},[]),(0,i.useEffect)(()=>{let t=s[e];if(v){m.current=t.still;return}if(!u)return;let n=0,i=()=>{let e=performance.now()/1e3;m.current=t.center+Math.sin(e*t.speed)*t.amp,n=requestAnimationFrame(i)};return n=requestAnimationFrame(i),()=>cancelAnimationFrame(n)},[e,v,u]),(0,t.jsxs)("div",{ref:r,className:"wf-scene",role:"img","aria-label":n??"DoorMile 3D logistics scene",style:{background:l[e]},children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` + `}}),(0,t.jsx)("div",{className:"elementor-63 miletruth-hero",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-86f3204 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"86f3204","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"miletruth-hero-container",children:(0,t.jsx)("div",{className:"e-con-inner miletruth-content",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsx)("div",{className:"content-slider owl-carousel owl-theme",children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard",children:(0,t.jsx)("div",{className:"slide-content",style:{paddingLeft:0,paddingRight:0},children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["The Only AI Built",(0,t.jsx)("br",{}),"Exclusively for Logistics"]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Optimizes every stage of the delivery journey for maximum efficiency."})})})]})})})})})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8e5c81e e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"8e5c81e","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-628123a e-con-full e-grid cut-corner-no sticky-container-off e-con e-child","data-id":"628123a","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-1da88b5 elementor-widget elementor-widget-counter","data-id":"1da88b5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"SLA Compliance"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(r,{from:1,to:99.9,decimals:1,suffix:""}):"1"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:" %"})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1da88b5 elementor-widget elementor-widget-counter","data-id":"1da88b5-2","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"Distance Saved"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(r,{from:1,to:42,decimals:0,suffix:""}):"1"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:" %"})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1da88b5 elementor-widget elementor-widget-counter","data-id":"1da88b5-3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"Fewer Vehicles"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(r,{from:1,to:37,decimals:0,suffix:""}):"1"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:" %"})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-a1cf3d4 elementor-widget elementor-widget-counter","data-id":"a1cf3d4","data-element_type":"widget","data-e-type":"widget","data-widget_type":"counter.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-counter",children:[(0,t.jsx)("div",{className:"elementor-counter-title",children:"Dispatch Latency"}),(0,t.jsxs)("div",{className:"elementor-counter-number-wrapper",children:[(0,t.jsx)("span",{className:"elementor-counter-number",children:e?(0,t.jsx)(r,{from:1,to:45,decimals:0,suffix:""}):"45"}),(0,t.jsx)("span",{className:"elementor-counter-number-suffix",children:"ms"})]})]})})})]})})})]})})]})}])},76756,e=>{"use strict";var t=e.i(43476),n=e.i(14224),i=e.i(71645),r=e.i(70703);let a=(0,r.default)(()=>e.A(49712),{loadableGenerated:{modules:[29539]},ssr:!1}),o=(0,r.default)(()=>e.A(40999),{loadableGenerated:{modules:[39184]},ssr:!1}),l={optimization:"#020617",logistics:"#08080c"},s={optimization:{center:.78,amp:.14,speed:.5,still:.85},logistics:{center:.5,amp:.13,speed:.4,still:.52}};function c({variant:e,ariaLabel:n}){let r=(0,i.useRef)(null),m=(0,i.useRef)(s[e].still),[d,p]=(0,i.useState)(!1),[u,h]=(0,i.useState)(!1),[f,g]=(0,i.useState)(!1),[x,b]=(0,i.useState)(!1),[v,w]=(0,i.useState)(!1);return(0,i.useEffect)(()=>{let e=window.matchMedia("(max-width: 767px)"),t=window.matchMedia("(min-width: 768px) and (max-width: 1024px)"),n=window.matchMedia("(prefers-reduced-motion: reduce)"),i=()=>{g(e.matches),b(t.matches),w(n.matches)};return i(),e.addEventListener("change",i),t.addEventListener("change",i),n.addEventListener("change",i),()=>{e.removeEventListener("change",i),t.removeEventListener("change",i),n.removeEventListener("change",i)}},[]),(0,i.useEffect)(()=>{let e=r.current;if(!e)return;let t=new IntersectionObserver(e=>{e.some(e=>e.isIntersecting)&&(p(!0),h(!0),t.disconnect())},{rootMargin:"60% 0px"}),n=new IntersectionObserver(e=>h(e.some(e=>e.isIntersecting)),{rootMargin:"10% 0px"});return t.observe(e),n.observe(e),()=>{t.disconnect(),n.disconnect()}},[]),(0,i.useEffect)(()=>{let t=s[e];if(v){m.current=t.still;return}if(!u)return;let n=0,i=()=>{let e=performance.now()/1e3;m.current=t.center+Math.sin(e*t.speed)*t.amp,n=requestAnimationFrame(i)};return n=requestAnimationFrame(i),()=>cancelAnimationFrame(n)},[e,v,u]),(0,t.jsxs)("div",{ref:r,className:"wf-scene",role:"img","aria-label":n??"DoorMile 3D logistics scene",style:{background:l[e]},children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` .wf-scene { position: relative; width: 100%; @@ -308,4 +308,4 @@ @media (max-width: 480px) { .wf-scene { aspect-ratio: 16 / 10; } } - `}}),(0,t.jsx)("div",{className:"wf-scene__canvas",children:d&&("optimization"===e?(0,t.jsx)(a,{progress:m,reduced:v,isMobile:f,isTablet:x,active:u}):(0,t.jsx)(o,{progress:m,reduced:v,isMobile:f,active:u}))})]})}let m={accent:"#00E5FF",accent2:"#14B8A6",glow:"rgba(0,229,255,0.18)"},d=[{value:42,suffix:"%",label:"Distance Saved"},{value:28,suffix:"%",label:"Faster Routes"},{value:31,suffix:"%",label:"Lower Cost"},{value:99.9,decimals:1,suffix:"%",label:"On-Time"}],p=e=>(0,t.jsx)("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:e}),u=[{icon:p((0,t.jsx)("polygon",{points:"3 11 22 2 13 21 11 13 3 11"})),title:"Route Optimization",desc:"AI selects the most efficient path across every zone."},{icon:p((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("polyline",{points:"22 17 13.5 8.5 8.5 13.5 2 7"}),(0,t.jsx)("polyline",{points:"16 17 22 17 22 11"})]})),title:"Distance Reduction",desc:"Same volume delivered with a leaner, better-used fleet."},{icon:p((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("path",{d:"M12 14l4-4"}),(0,t.jsx)("path",{d:"M3.34 19a10 10 0 1 1 17.32 0"})]})),title:"Fleet Efficiency",desc:"Higher utilisation and lower operating cost."},{icon:p((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}),(0,t.jsx)("polyline",{points:"9 12 11 14 15 10"})]})),title:"SLA Performance",desc:"Real-time correction keeps deliveries on time."}],h=[{value:"-42%",label:"DISTANCE SAVED"},{value:"-37%",label:"FEWER VEHICLES"}];e.s(["default",0,function(){return(0,t.jsx)(n.default,{ariaLabel:"Workflow 1 — Performance",gapTop:!0,gapBottom:!0,bannerImage:"/images/mile-1.webp",cardTitle:"OPTIMIZE EVERY MILE",cardSubtitle:"Cut travel distance, reduce operating cost, and improve fleet productivity across every route.",eyebrow:"/ Performance /",titleLead:"SMARTER ROUTES. ",titleAccent:"LOWER COSTS.",mediaSlot:(0,t.jsx)(c,{variant:"optimization",ariaLabel:"Live route optimization engine"}),metrics:d,features:u,cardsHeading:"Performance Insight",cardsTheme:m,badges:h})}],76756)},38730,e=>{"use strict";var t=e.i(43476),n=e.i(14224);let i={accent:"#E2354A",accent2:"#C01227",glow:"rgba(226,53,74,0.2)"},r=[{value:45,suffix:"ms",label:"Inference"},{value:12,suffix:"+",label:"Strategies"},{value:99.9,decimals:1,suffix:"%",label:"SLA Met"},{value:24,suffix:"/7",label:"Adaptive"}],a=e=>(0,t.jsx)("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:e}),o=[{icon:a((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("polygon",{points:"12 2 2 7 12 12 22 7 12 2"}),(0,t.jsx)("polyline",{points:"2 17 12 22 22 17"}),(0,t.jsx)("polyline",{points:"2 12 12 17 22 12"})]})),title:"Generate Routes",desc:"Many strategies explored per dispatch window."},{icon:a((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("path",{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"}),(0,t.jsx)("polyline",{points:"22 4 12 14.01 9 11.01"})]})),title:"Check Constraints",desc:"Battery, capacity, distance and time validated."},{icon:a((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("line",{x1:"6",y1:"20",x2:"6",y2:"14"}),(0,t.jsx)("line",{x1:"12",y1:"20",x2:"12",y2:"4"}),(0,t.jsx)("line",{x1:"18",y1:"20",x2:"18",y2:"10"})]})),title:"Score & Compare",desc:"Plans ranked by total cost in parallel."},{icon:a((0,t.jsx)("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})),title:"Select Best Plan",desc:"SLA-first plan locked in and dispatched."}],l=[{value:"45ms",label:"INFERENCE"},{value:"100%",label:"SLA-FIRST"}];e.s(["default",0,function(){return(0,t.jsx)(n.default,{ariaLabel:"Workflow 2 — Innovation",gapBottom:!0,bannerImage:"/images/mid-mile-approach.webp",cardTitle:"CHOOSE THE BEST PLAN",cardSubtitle:"Analyze thousands of route possibilities and automatically select the most efficient delivery strategy.",eyebrow:"/ Innovation /",titleLead:"MANY STRATEGIES. ",titleAccent:"ONE BEST PLAN.",image:"/videos/workflow-2-routing.mp4",imageAlt:"AI route-planning engine selecting the best delivery plan",metrics:r,features:o,cardsHeading:"AI Decision Engine",cardsTheme:i,badges:l})}])},33016,e=>{"use strict";var t=e.i(43476),n=e.i(71645);let i=(0,e.i(70703).default)(()=>e.A(15756),{loadableGenerated:{modules:[55819]},ssr:!1,loading:()=>null});e.s(["default",0,function(){let e=(0,n.useRef)(null),[r,a]=(0,n.useState)(!1);return((0,n.useEffect)(()=>{let t=e.current;if(!t)return;let n=new IntersectionObserver(e=>{e.some(e=>e.isIntersecting)&&(a(!0),n.disconnect())},{rootMargin:"150% 0px"});return n.observe(t),()=>n.disconnect()},[]),r)?(0,t.jsx)("div",{ref:e,style:{display:"contents"},children:(0,t.jsx)(i,{})}):(0,t.jsx)("div",{ref:e,"aria-hidden":!0,style:{minHeight:"100vh"}})}])},49712,e=>{e.v(t=>Promise.all(["static/chunks/0w7unurpitxcg.js","static/chunks/0.iab0vw_jpg5.js","static/chunks/0e.~6vil2~4uy.js"].map(t=>e.l(t))).then(()=>t(29539)))},40999,e=>{e.v(t=>Promise.all(["static/chunks/15p8tu-h65hwr.js","static/chunks/0-kxqnmnjtk7l.js","static/chunks/0.iab0vw_jpg5.js","static/chunks/0e.~6vil2~4uy.js"].map(t=>e.l(t))).then(()=>t(39184)))},15756,e=>{e.v(t=>Promise.all(["static/chunks/0u0z4t0we_bgv.js","static/chunks/0d09zs~9jbu5_.js"].map(t=>e.l(t))).then(()=>t(55819)))}]); \ No newline at end of file + `}}),(0,t.jsx)("div",{className:"wf-scene__canvas",children:d&&("optimization"===e?(0,t.jsx)(a,{progress:m,reduced:v,isMobile:f,isTablet:x,active:u}):(0,t.jsx)(o,{progress:m,reduced:v,isMobile:f,active:u}))})]})}let m={accent:"#00E5FF",accent2:"#14B8A6",glow:"rgba(0,229,255,0.18)"},d=[{value:42,suffix:"%",label:"Distance Saved"},{value:28,suffix:"%",label:"Faster Routes"},{value:31,suffix:"%",label:"Lower Cost"},{value:99.9,decimals:1,suffix:"%",label:"On-Time"}],p=e=>(0,t.jsx)("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:e}),u=[{icon:p((0,t.jsx)("polygon",{points:"3 11 22 2 13 21 11 13 3 11"})),title:"Route Optimization",desc:"AI selects the most efficient path across every zone."},{icon:p((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("polyline",{points:"22 17 13.5 8.5 8.5 13.5 2 7"}),(0,t.jsx)("polyline",{points:"16 17 22 17 22 11"})]})),title:"Distance Reduction",desc:"Same volume delivered with a leaner, better-used fleet."},{icon:p((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("path",{d:"M12 14l4-4"}),(0,t.jsx)("path",{d:"M3.34 19a10 10 0 1 1 17.32 0"})]})),title:"Fleet Efficiency",desc:"Higher utilisation and lower operating cost."},{icon:p((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}),(0,t.jsx)("polyline",{points:"9 12 11 14 15 10"})]})),title:"SLA Performance",desc:"Real-time correction keeps deliveries on time."}],h=[{value:"-42%",label:"DISTANCE SAVED"},{value:"-37%",label:"FEWER VEHICLES"}];e.s(["default",0,function(){return(0,t.jsx)(n.default,{ariaLabel:"Workflow 1 — Performance",gapTop:!0,gapBottom:!0,bannerImage:"/images/mile-1.webp",cardTitle:"OPTIMIZE EVERY MILE",cardSubtitle:"Cut travel distance, reduce operating cost, and improve fleet productivity across every route.",eyebrow:"/ Performance /",titleLead:"SMARTER ROUTES. ",titleAccent:"LOWER COSTS.",mediaSlot:(0,t.jsx)(c,{variant:"optimization",ariaLabel:"Live route optimization engine"}),metrics:d,features:u,cardsHeading:"Performance Insight",cardsTheme:m,badges:h})}],76756)},38730,e=>{"use strict";var t=e.i(43476),n=e.i(14224);let i={accent:"#E2354A",accent2:"#C01227",glow:"rgba(226,53,74,0.2)"},r=[{value:45,suffix:"ms",label:"Inference"},{value:12,suffix:"+",label:"Strategies"},{value:99.9,decimals:1,suffix:"%",label:"SLA Met"},{value:24,suffix:"/7",label:"Adaptive"}],a=e=>(0,t.jsx)("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:e}),o=[{icon:a((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("polygon",{points:"12 2 2 7 12 12 22 7 12 2"}),(0,t.jsx)("polyline",{points:"2 17 12 22 22 17"}),(0,t.jsx)("polyline",{points:"2 12 12 17 22 12"})]})),title:"Generate Routes",desc:"Many strategies explored per dispatch window."},{icon:a((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("path",{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"}),(0,t.jsx)("polyline",{points:"22 4 12 14.01 9 11.01"})]})),title:"Check Constraints",desc:"Battery, capacity, distance and time validated."},{icon:a((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("line",{x1:"6",y1:"20",x2:"6",y2:"14"}),(0,t.jsx)("line",{x1:"12",y1:"20",x2:"12",y2:"4"}),(0,t.jsx)("line",{x1:"18",y1:"20",x2:"18",y2:"10"})]})),title:"Score & Compare",desc:"Plans ranked by total cost in parallel."},{icon:a((0,t.jsx)("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})),title:"Select Best Plan",desc:"SLA-first plan locked in and dispatched."}],l=[{value:"45ms",label:"INFERENCE"},{value:"100%",label:"SLA-FIRST"}];e.s(["default",0,function(){return(0,t.jsx)(n.default,{ariaLabel:"Workflow 2 — Innovation",gapBottom:!0,bannerImage:"/images/mid-mile-approach.webp",cardTitle:"CHOOSE THE BEST PLAN",cardSubtitle:"Analyze thousands of route possibilities and automatically select the most efficient delivery strategy.",eyebrow:"/ Innovation /",titleLead:"MANY STRATEGIES. ",titleAccent:"ONE BEST PLAN.",image:"/videos/workflow-2-routing.mp4",imageAlt:"AI route-planning engine selecting the best delivery plan",metrics:r,features:o,cardsHeading:"AI Decision Engine",cardsTheme:i,badges:l})}])},27698,e=>{"use strict";var t=e.i(43476),n=e.i(14224);let i={accent:"#7C5CFF",accent2:"#4C3AE3",glow:"rgba(124,92,255,0.20)"},r=[{text:"QUBO",value:0,suffix:"",label:"Problem Model"},{text:"GLOBAL",value:0,suffix:"",label:"Minimum Search"},{text:"HYBRID",value:0,suffix:"",label:"Intelligence"},{text:"MULTI",value:0,suffix:"",label:"Objective"}],a=[{text:"Multi-Rider",value:0,suffix:"",label:"Dynamic Routing"},{text:"Optimized",value:0,suffix:"",label:"Time Windows"},{text:"Real-Time",value:0,suffix:"",label:"Fleet Balancing"},{text:"Cost + Distance + SLA",value:0,suffix:"",label:"Objectives"}],o=e=>(0,t.jsx)("svg",{viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:e}),l=[{icon:o((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("rect",{x:"3",y:"3",width:"7",height:"7"}),(0,t.jsx)("rect",{x:"14",y:"3",width:"7",height:"7"}),(0,t.jsx)("rect",{x:"14",y:"14",width:"7",height:"7"}),(0,t.jsx)("rect",{x:"3",y:"14",width:"7",height:"7"})]})),title:"Encode the Problem",desc:"Rider assignments, delivery sequences, capacity, traffic, service time, and SLA constraints become part of one mathematical optimization model."},{icon:o((0,t.jsx)("path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"})),title:"Build the Energy Landscape",desc:"Each feasible routing solution is represented as a state with its own energy through a QUBO formulation."},{icon:o((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("circle",{cx:"12",cy:"12",r:"9"}),(0,t.jsx)("circle",{cx:"12",cy:"12",r:"5"}),(0,t.jsx)("circle",{cx:"12",cy:"12",r:"1"})]})),title:"Search the Global Minimum",desc:"Optimization becomes the search for the lowest-energy state instead of evaluating route combinations one by one."},{icon:o((0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("polygon",{points:"12 2 2 7 12 12 22 7 12 2"}),(0,t.jsx)("polyline",{points:"2 17 12 22 22 17"}),(0,t.jsx)("polyline",{points:"2 12 12 17 22 12"})]})),title:"Hybrid Intelligence",desc:"Classical algorithms, AI models, and quantum optimization work together using the right computational model for each problem."}],s=[{value:"QUBO",label:"PROBLEM MODEL"},{value:"HYBRID",label:"INTELLIGENCE"}];e.s(["default",0,function(){return(0,t.jsx)(n.default,{ariaLabel:"Workflow 4 — Quantum Intelligence",gapBottom:!0,image:"/videos/Doormile-quantum-video3.mp4",cardTitle:"BUILDING QUANTUM INTELLIGENCE",cardSubtitle:"Exploring a hybrid optimization layer that treats routing as an energy landscape, not a search problem.",eyebrow:"/ Quantum Intelligence /",titleLead:"FROM ROUTE SEARCH. ",titleAccent:"TO ENERGY MINIMIZATION.",imageAlt:"Hybrid quantum-classical optimization engine visualizing an energy landscape",metrics:r,barStats:a,features:l,cardsHeading:"Quantum Intelligence",sysLabel:"HYBRID ENGINE",cardsTheme:i,badges:s,mediaClassName:"evnd__imgwrap--wf4"})}])},33016,e=>{"use strict";var t=e.i(43476),n=e.i(71645);let i=(0,e.i(70703).default)(()=>e.A(15756),{loadableGenerated:{modules:[55819]},ssr:!1,loading:()=>null});e.s(["default",0,function(){let e=(0,n.useRef)(null),[r,a]=(0,n.useState)(!1);return((0,n.useEffect)(()=>{let t=e.current;if(!t)return;let n=new IntersectionObserver(e=>{e.some(e=>e.isIntersecting)&&(a(!0),n.disconnect())},{rootMargin:"150% 0px"});return n.observe(t),()=>n.disconnect()},[]),r)?(0,t.jsx)("div",{ref:e,style:{display:"contents"},children:(0,t.jsx)(i,{})}):(0,t.jsx)("div",{ref:e,"aria-hidden":!0,style:{minHeight:"100vh"}})}])},49712,e=>{e.v(t=>Promise.all(["static/chunks/0ckcqe5on274m.js","static/chunks/04uib0xi8_zof.js","static/chunks/0e.~6vil2~4uy.js"].map(t=>e.l(t))).then(()=>t(29539)))},40999,e=>{e.v(t=>Promise.all(["static/chunks/15p8tu-h65hwr.js","static/chunks/0-kxqnmnjtk7l.js","static/chunks/04uib0xi8_zof.js","static/chunks/0e.~6vil2~4uy.js"].map(t=>e.l(t))).then(()=>t(39184)))},15756,e=>{e.v(t=>Promise.all(["static/chunks/0yqyiard9rg2e.js","static/chunks/0d09zs~9jbu5_.js"].map(t=>e.l(t))).then(()=>t(55819)))}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0-w08rrpmvn8z.js b/.next/static/chunks/04uib0xi8_zof.js similarity index 98% rename from build/_next/static/chunks/0-w08rrpmvn8z.js rename to .next/static/chunks/04uib0xi8_zof.js index 2697d9f..a1b75b6 100644 --- a/build/_next/static/chunks/0-w08rrpmvn8z.js +++ b/.next/static/chunks/04uib0xi8_zof.js @@ -240,4 +240,4 @@ Error generating stack: `+e.message+` `+r.join(" > ")+` No matching component was found for: - `+e.join(" > ")}return null},rt.getPublicRootInstance=function(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 27:case 5:return rA(e.child.stateNode);default:return e.child.stateNode}},rt.injectIntoDevTools=function(){var e={bundleType:0,version:rT,rendererPackageName:rw,currentDispatcherRef:rM,reconcilerVersion:"19.2.0"};if(null!==rE&&(e.rendererConfig=rE),typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")e=!1;else{var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)e=!0;else{try{sG=t.inject(e),sW=t}catch{}e=!!t.checkDCE}}return e},rt.isAlreadyRendering=function(){return(6&lm)!=0},rt.observeVisibleRects=function(e,t,n,r){if(!r7)throw Error(i(363));var a=as(e=im(e,t),n,r).disconnect;return{disconnect:function(){a()}}},rt.shouldError=function(){return null},rt.shouldSuspend=function(){return!1},rt.startHostTransition=function(e,t,r,a){if(5!==e.tag)throw Error(i(476));var s=tW(e).queue;tG(e,s,t,r4,null===r?n:function(){var t=tW(e);return null===t.next&&(t=e.alternate.memoizedState),tK(e,t.next.queue,{},ig()),r(a)})},rt.updateContainer=function(e,t,n,i){var r=t.current,a=ig();return i9(r,a,e,t,n,i),a},rt.updateContainerSync=function(e,t,n,i){return i9(t.current,2,e,t,n,i),2},rt},cG.exports.default=cG.exports,Object.defineProperty(cG.exports,"__esModule",{value:!0})),cV.exports=cG.exports),(b=cV.exports)&&b.__esModule&&Object.prototype.hasOwnProperty.call(b,"default"))?b.default:b,cj={},cX=/^three(?=[A-Z])/,cq=e=>`${e[0].toUpperCase()}${e.slice(1)}`,cY=0;function cZ(e){if("function"==typeof e){let t=`${cY++}`;return cj[t]=e,t}Object.assign(cj,e)}function cJ(e,t){let n=cq(e),i=cj[n];if("primitive"!==e&&!i)throw Error(`R3F: ${n} is not part of the THREE namespace! Did you forget to extend? See: https://docs.pmnd.rs/react-three-fiber/api/objects#using-3rd-party-objects-declaratively`);if("primitive"===e&&!t.object)throw Error("R3F: Primitives without 'object' are invalid!");if(void 0!==t.args&&!Array.isArray(t.args))throw Error("R3F: The args prop must be an array!")}function cK(e){if(e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cS(e.parent,e):cI(e.object)&&!1!==e.props.visible&&(e.object.visible=!0),e.isHidden=!1,cR(e)}}function c$(e,t,n){let i=t.root.getState();if(e.parent||e.object===i.scene){if(!t.object){var r,a;let e=cj[cq(t.type)];t.object=null!=(r=t.props.object)?r:new e(...null!=(a=t.props.args)?a:[]),t.object.__r3f=t}if(cC(t.object,t.props),t.props.attach)cS(e,t);else if(cI(t.object)&&cI(e.object)){let i=e.object.children.indexOf(null==n?void 0:n.object);if(n&&-1!==i){let n=e.object.children.indexOf(t.object);-1!==n?(e.object.children.splice(n,1),e.object.children.splice(n{try{e.dispose()}catch{}};"u">typeof IS_REACT_ACT_ENVIRONMENT?t():(0,u8.unstable_scheduleCallback)(u8.unstable_IdlePriority,t)}}function c2(e,t,n){if(!t)return;t.parent=null;let i=e.children.indexOf(t);-1!==i&&e.children.splice(i,1),t.props.attach?cM(e,t):cI(t.object)&&cI(e.object)&&(e.object.remove(t.object),function(e,t){let{internal:n}=e.getState();n.interaction=n.interaction.filter(e=>e!==t),n.initialHits=n.initialHits.filter(e=>e!==t),n.hovered.forEach((e,i)=>{(e.eventObject===t||e.object===t)&&n.hovered.delete(i)}),n.capturedMap.forEach((e,i)=>{cN(n.capturedMap,t,e,i)})}(co(t),t.object));let r=null!==t.props.dispose&&!1!==n;for(let e=t.children.length-1;e>=0;e--){let n=t.children[e];c2(t,n,r)}t.children.length=0,delete t.object.__r3f,r&&"primitive"!==t.type&&"Scene"!==t.object.type&&c1(t.object),void 0===n&&cR(t)}let c3=[],c4=()=>{},c5={},c6=0,c8=(S={isPrimaryRenderer:!1,warnsIfNotActing:!1,supportsMutation:!0,supportsPersistence:!1,supportsHydration:!1,createInstance:function(e,t,n){var i;return cJ(e=cq(e)in cj?e:e.replace(cX,""),t),"primitive"===e&&null!=(i=t.object)&&i.__r3f&&delete t.object.__r3f,cy(t.object,n,e,t)},removeChild:c2,appendChild:cQ,appendInitialChild:cQ,insertBefore:c0,appendChildToContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&cQ(n,t)},removeChildFromContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&c2(n,t)},insertInContainerBefore(e,t,n){let i=e.getState().scene.__r3f;t&&n&&i&&c0(i,t,n)},getRootHostContext:()=>c5,getChildHostContext:()=>c5,commitUpdate(e,t,n,i,r){var a,s,o;cJ(t,i);let l=!1;if("primitive"===e.type&&n.object!==i.object||(null==(a=i.args)?void 0:a.length)!==(null==(s=n.args)?void 0:s.length)?l=!0:null!=(o=i.args)&&o.some((e,t)=>{var i;return e!==(null==(i=n.args)?void 0:i[t])})&&(l=!0),l)c3.push([e,{...i},r]);else{let t=function(e,t){let n={};for(let i in t)if(!cT.includes(i)&&!cv.equ(t[i],e.props[i]))for(let e in n[i]=t[i],t)e.startsWith(`${i}-`)&&(n[e]=t[e]);for(let i in e.props){if(cT.includes(i)||t.hasOwnProperty(i))continue;let{root:r,key:a}=cx(e.object,i);if(r.constructor&&0===r.constructor.length){let e=function(e){let t=cw.get(e.constructor);try{t||(t=new e.constructor,cw.set(e.constructor,t))}catch(e){}return t}(r);cv.und(e)||(n[a]=e[a])}else n[a]=0}return n}(e,i);Object.keys(t).length&&(Object.assign(e.props,t),cC(e.object,t))}(null===r.sibling||(4&r.flags)==0)&&function(){for(let[e]of c3){let t=e.parent;if(t)for(let n of(e.props.attach?cM(t,e):cI(e.object)&&cI(t.object)&&t.object.remove(e.object),e.children))n.props.attach?cM(e,n):cI(n.object)&&cI(e.object)&&e.object.remove(n.object);e.isHidden&&cK(e),e.object.__r3f&&delete e.object.__r3f,"primitive"!==e.type&&c1(e.object)}for(let[i,r,a]of c3){i.props=r;let s=i.parent;if(s){let r=cj[cq(i.type)],o=i.object;i.object=null!=(e=i.props.object)?e:new r(...null!=(t=i.props.args)?t:[]),i.object.__r3f=i;var e,t,n=i.object;for(let e of[a,a.alternate])if(null!==e)if("function"==typeof e.ref){null==e.refCleanup||e.refCleanup();let t=e.ref(n);"function"==typeof t&&(e.refCleanup=t)}else e.ref&&(e.ref.current=n);for(let e of(!function(e,t,n){let{internal:i}=e.getState();for(let e=0;e{if(e.eventObject===t||e.object===t){i.hovered.delete(r);let a={...e,eventObject:e.eventObject===t?n:e.eventObject,object:e.object===t?n:e.object};i.hovered.set(cL(a),a)}}),i.capturedMap.forEach(e=>{let i=e.get(t);i&&(e.delete(t),e.set(n,i))})}(co(i),o,i.object),cC(i.object,i.props),i.props.attach?cS(s,i):cI(i.object)&&cI(s.object)&&s.object.add(i.object),i.children))e.props.attach?cS(i,e):cI(e.object)&&cI(i.object)&&i.object.add(e.object);cR(i)}}c3.length=0}()},finalizeInitialChildren:()=>!1,commitMount(){},getPublicInstance:e=>null==e?void 0:e.object,prepareForCommit:()=>null,preparePortalMount:e=>cy(e.getState().scene,e,"",{}),resetAfterCommit:()=>{},shouldSetTextContent:()=>!1,clearContainer:()=>!1,hideInstance:function(e){if(!e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cM(e.parent,e):cI(e.object)&&(e.object.visible=!1),e.isHidden=!0,cR(e)}},unhideInstance:cK,createTextInstance:c4,hideTextInstance:c4,unhideTextInstance:c4,scheduleTimeout:"function"==typeof setTimeout?setTimeout:void 0,cancelTimeout:"function"==typeof clearTimeout?clearTimeout:void 0,noTimeout:-1,getInstanceFromNode:()=>null,beforeActiveInstanceBlur(){},afterActiveInstanceBlur(){},detachDeletedInstance(){},prepareScopeUpdate(){},getInstanceFromScope:()=>null,shouldAttemptEagerTransition:()=>!1,trackSchedulerEvent:()=>{},resolveEventType:()=>null,resolveEventTimeStamp:()=>-1.1,requestPostPaintCallback(){},maySuspendCommit:()=>!1,preloadInstance:()=>!0,suspendInstance(){},waitForCommitToBeReady:()=>null,NotPendingTransition:null,HostTransitionContext:E.createContext(null),setCurrentUpdatePriority(e){c6=e},getCurrentUpdatePriority:()=>c6,resolveUpdatePriority(){var e;if(0!==c6)return c6;switch("u">typeof window&&(null==(e=window.event)?void 0:e.type)){case"click":case"contextmenu":case"dblclick":case"pointercancel":case"pointerdown":case"pointerup":return 2;case"pointermove":case"pointerout":case"pointerover":case"pointerenter":case"pointerleave":case"wheel":return 8;default:return 32}},resetFormInstance(){},rendererPackageName:"@react-three/fiber",rendererVersion:"9.6.1",applyViewTransitionName(e,t,n){},restoreViewTransitionName(e,t){},cancelViewTransitionName(e,t,n){},cancelRootViewTransitionName(e){},restoreRootViewTransitionName(e){},InstanceMeasurement:null,measureInstance:e=>null,wasInstanceInViewport:e=>!0,hasInstanceChanged:(e,t)=>!1,hasInstanceAffectedParent:(e,t)=>!1,suspendOnActiveViewTransition(e,t){},startGestureTransition:()=>null,startViewTransition:()=>null,stopViewTransition(e){},createViewTransitionInstance:e=>null,getCurrentGestureOffset(e){throw Error("startGestureTransition is not yet supported in react-three-fiber.")},cloneMutableInstance:(e,t)=>e,cloneMutableTextInstance:e=>e,cloneRootViewTransitionContainer(e){throw Error("Not implemented.")},removeRootViewTransitionClone(e,t){throw Error("Not implemented.")},createFragmentInstance:e=>null,updateFragmentInstanceFiber(e,t){},commitNewChildToFragmentInstance(e,t){},deleteChildFromFragmentInstance(e,t){},measureClonedInstance:e=>null,maySuspendCommitOnUpdate:(e,t,n)=>!1,maySuspendCommitInSyncRender:(e,t)=>!1,startSuspendingCommit:()=>null,getSuspendedCommitReason:(e,t)=>null},(_=cW(S)).injectIntoDevTools(),_),c9=new Map,c7={objects:"shallow",strict:!1};function he(e){var t,n;let i,r,a,s,o,l,u,c=c9.get(e),h=null==c?void 0:c.fiber,d=null==c?void 0:c.store;c&&console.warn("R3F.createRoot should only be called once!");let p="function"==typeof reportError?reportError:console.error,f=d||(t=hp,n=hf,o=(s=(a=u3((e,i)=>{let r,a=new eE,s=new eE,o=new eE;function l(e=i().camera,t=s,n=i().size){let{width:r,height:u,top:c,left:h}=n,d=r/u;t.isVector3?o.copy(t):o.set(...t);let p=e.getWorldPosition(a).distanceTo(o);if(e&&e.isOrthographicCamera)return{width:r/e.zoom,height:u/e.zoom,top:c,left:h,factor:1,distance:p,aspect:d};{let t=2*Math.tan(e.fov*Math.PI/180/2)*p,n=r/u*t;return{width:n,height:t,top:c,left:h,factor:r/n,distance:p,aspect:d}}}let u=t=>e(e=>({performance:{...e.performance,current:t}})),c=new Y;return{set:e,get:i,gl:null,camera:null,raycaster:null,events:{priority:1,enabled:!0,connected:!1},scene:null,xr:null,invalidate:(e=1)=>t(i(),e),advance:(e,t)=>n(e,t,i()),legacy:!1,linear:!1,flat:!1,controls:null,clock:new sw,pointer:c,mouse:c,frameloop:"always",onPointerMissed:void 0,performance:{current:1,min:.5,max:1,debounce:200,regress:()=>{let e=i();r&&clearTimeout(r),e.performance.current!==e.performance.min&&u(e.performance.min),r=setTimeout(()=>u(i().performance.max),e.performance.debounce)}},size:{width:0,height:0,top:0,left:0},viewport:{initialDpr:0,dpr:0,width:0,height:0,top:0,left:0,aspect:0,distance:0,factor:0,getCurrentViewport:l},setEvents:t=>e(e=>({...e,events:{...e.events,...t}})),setSize:(t,n,r=0,a=0)=>{let o=i().camera,u={width:t,height:n,top:r,left:a};e(e=>({size:u,viewport:{...e.viewport,...l(o,s,u)}}))},setDpr:t=>e(e=>{let n=cm(t);return{viewport:{...e.viewport,dpr:n,initialDpr:e.viewport.initialDpr||n}}}),setFrameloop:(t="always")=>{let n=i().clock;n.stop(),n.elapsedTime=0,"never"!==t&&(n.start(),n.elapsedTime=0),e(()=>({frameloop:t}))},previousRoot:void 0,internal:{interaction:[],hovered:new Map,subscribers:[],initialClick:[0,0],initialHits:[],capturedMap:new Map,lastEvent:E.createRef(),active:!1,frames:0,priority:0,subscribe:(e,t,n)=>{let r=i().internal;return r.priority=r.priority+ +(t>0),r.subscribers.push({ref:e,priority:t,store:n}),r.subscribers=r.subscribers.sort((e,t)=>e.priority-t.priority),()=>{let n=i().internal;null!=n&&n.subscribers&&(n.priority=n.priority-(t>0),n.subscribers=n.subscribers.filter(t=>t.ref!==e))}}}}})).getState()).size,l=s.viewport.dpr,u=s.camera,a.subscribe(()=>{let{camera:e,size:t,viewport:n,gl:i,set:r}=a.getState();if(t.width!==o.width||t.height!==o.height||n.dpr!==l){o=t,l=n.dpr,cP(e,t),n.dpr>0&&i.setPixelRatio(n.dpr);let r="u">typeof HTMLCanvasElement&&i.domElement instanceof HTMLCanvasElement;i.setSize(t.width,t.height,r)}e!==u&&(u=e,r(t=>({viewport:{...t.viewport,...t.viewport.getCurrentViewport(e)}})))}),a.subscribe(e=>t(e)),a),m=h||c8.createContainer(f,1,null,!1,null,"",p,p,p,null);c||c9.set(e,{fiber:m,store:f});let g=!1,v=null;return{async configure(t={}){var n,a;let s;v=new Promise(e=>s=e);let{gl:o,size:l,scene:u,events:c,onCreated:h,shadows:d=!1,linear:p=!1,flat:m=!1,legacy:_=!1,orthographic:y=!1,frameloop:x="always",dpr:b=[1,2],performance:S,raycaster:M,camera:T,onPointerMissed:w}=t,E=f.getState(),A=E.gl;if(!E.gl){let t={canvas:e,powerPreference:"high-performance",antialias:!0,alpha:!0},n="function"==typeof o?await o(t):o;A=cU(n)?n:new uK({...t,...o}),E.set({gl:A})}let C=E.raycaster;C||E.set({raycaster:C=new s3});let{params:R,...P}=M||{};if(cv.equ(P,C,c7)||cC(C,{...P}),cv.equ(R,C.params,c7)||cC(C,{params:{...C.params,...R}}),!E.camera||E.camera===r&&!cv.equ(r,T,c7)){r=T;let e=null==T?void 0:T.isCamera,t=e?T:y?new sn(0,0,0,0,.1,1e3):new nE(75,0,.1,1e3);!e&&(t.position.z=5,T&&(cC(t,T),!t.manual&&("aspect"in T||"left"in T||"right"in T||"bottom"in T||"top"in T)&&(t.manual=!0,t.updateProjectionMatrix())),E.camera||null!=T&&T.rotation||t.lookAt(0,0,0)),E.set({camera:t}),C.camera=t}if(!E.scene){let e;null!=u&&u.isScene?cy(e=u,f,"",{}):(cy(e=new nL,f,"",{}),u&&cC(e,u)),E.set({scene:e})}c&&!E.events.handlers&&E.set({events:c(f)});let N=function(e,t){if(!t&&"u">typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement&&e.parentElement){let{width:t,height:n,top:i,left:r}=e.parentElement.getBoundingClientRect();return{width:t,height:n,top:i,left:r}}return!t&&"u">typeof OffscreenCanvas&&e instanceof OffscreenCanvas?{width:e.width,height:e.height,top:0,left:0}:{width:0,height:0,top:0,left:0,...t}}(e,l);if(cv.equ(N,E.size,c7)||E.setSize(N.width,N.height,N.top,N.left),b&&E.viewport.dpr!==cm(b)&&E.setDpr(b),E.frameloop!==x&&E.setFrameloop(x),E.onPointerMissed||E.set({onPointerMissed:w}),S&&!cv.equ(S,E.performance,c7)&&E.set(e=>({performance:{...e.performance,...S}})),!E.xr){let e=(e,t)=>{let n=f.getState();"never"!==n.frameloop&&hf(e,!0,n,t)},t=()=>{let t=f.getState();t.gl.xr.enabled=t.gl.xr.isPresenting,t.gl.xr.setAnimationLoop(t.gl.xr.isPresenting?e:null),t.gl.xr.isPresenting||hp(t)},i={connect(){let e=f.getState().gl;e.xr.addEventListener("sessionstart",t),e.xr.addEventListener("sessionend",t)},disconnect(){let e=f.getState().gl;e.xr.removeEventListener("sessionstart",t),e.xr.removeEventListener("sessionend",t)}};"function"==typeof(null==(n=A.xr)?void 0:n.addEventListener)&&i.connect(),E.set({xr:i})}if(A.shadowMap){let e=A.shadowMap.enabled,t=A.shadowMap.type;A.shadowMap.enabled=!!d,cv.boo(d)?A.shadowMap.type=2:cv.str(d)?A.shadowMap.type=null!=(a=({basic:0,percentage:1,soft:2,variance:3})[d])?a:2:cv.obj(d)&&Object.assign(A.shadowMap,d),(e!==A.shadowMap.enabled||t!==A.shadowMap.type)&&(A.shadowMap.needsUpdate=!0)}return eu.enabled=!_,g||(A.outputColorSpace=p?L:I,A.toneMapping=4*!m),E.legacy!==_&&E.set(()=>({legacy:_})),E.linear!==p&&E.set(()=>({linear:p})),E.flat!==m&&E.set(()=>({flat:m})),!o||cv.fun(o)||cU(o)||cv.equ(o,A,c7)||cC(A,o),i=h,g=!0,s(),this},render(t){return g||v||this.configure(),v.then(()=>{c8.updateContainer((0,u9.jsx)(ht,{store:f,children:t,onCreated:i,rootElement:e}),m,null,()=>void 0)}),f},unmount(){hn(e)}}}function ht({store:e,children:t,onCreated:n,rootElement:i}){return cc(()=>{let t=e.getState();t.set(e=>({internal:{...e.internal,active:!0}})),n&&n(t),e.getState().events.connected||null==t.events.connect||t.events.connect(i)},[]),(0,u9.jsx)(cD.Provider,{value:e,children:t})}function hn(e,t){let n=c9.get(e),i=null==n?void 0:n.fiber;if(i){let r=null==n?void 0:n.store.getState();r&&(r.internal.active=!1),c8.updateContainer(null,i,null,()=>{r&&setTimeout(()=>{try{null==r.events.disconnect||r.events.disconnect(),null==(n=r.gl)||null==(i=n.renderLists)||null==i.dispose||i.dispose(),null==(a=r.gl)||null==a.forceContextLoss||a.forceContextLoss(),null!=(s=r.gl)&&s.xr&&r.xr.disconnect();var n,i,a,s,o=r.scene;for(let e in"Scene"!==o.type&&(null==o.dispose||o.dispose()),o){let t=o[e];(null==t?void 0:t.type)!=="Scene"&&(null==t||null==t.dispose||t.dispose())}c9.delete(e),t&&t(e)}catch(e){}},500)})}}function hi({state:e={},children:t,container:n}){let{events:i,size:r,...a}=e,s=cO(),[o]=E.useState(()=>new s3),[l]=E.useState(()=>new Y),u=ch((e,t)=>{let a;if(t.camera&&r){let n=t.camera;a=e.viewport.getCurrentViewport(n,new eE,r),n!==e.camera&&cP(n,r)}return{...e,...t,scene:n,raycaster:o,pointer:l,mouse:l,previousRoot:s,events:{...e.events,...t.events,...i},size:{...e.size,...r},viewport:{...e.viewport,...a},setEvents:e=>t.set(t=>({...t,events:{...t.events,...e}}))}}),c=E.useMemo(()=>{let e=u3((e,t)=>({...a,set:e,get:t})),t=t=>e.setState(e=>u.current(t,e));return t(s.getState()),s.subscribe(t),e},[s,n]);return(0,u9.jsx)(u9.Fragment,{children:c8.createPortal((0,u9.jsx)(cD.Provider,{value:c,children:t}),c,null)})}let hr=new Set,ha=new Set,hs=new Set;function ho(e,t){if(e.size)for(let{callback:n}of e.values())n(t)}function hl(e,t){switch(e){case"before":return ho(hr,t);case"after":return ho(ha,t);case"tail":return ho(hs,t)}}function hu(e,t,n){let i=t.clock.getDelta();"never"===t.frameloop&&"number"==typeof e&&(i=e-t.clock.elapsedTime,t.clock.oldTime=t.clock.elapsedTime,t.clock.elapsedTime=e),s=t.internal.subscribers;for(let e=0;e0)&&!(null!=(t=c.gl.xr)&&t.isPresenting)&&(l+=hu(e,c))}if(hh=!1,hl("after",e),0===l)return hl("tail",e),hc=!1,cancelAnimationFrame(u)}function hp(e,t=1){var n;if(!e)return c9.forEach(e=>hp(e.store.getState(),t));(null==(n=e.gl.xr)||!n.isPresenting)&&e.internal.active&&"never"!==e.frameloop&&(t>1?e.internal.frames=Math.min(60,e.internal.frames+t):hh?e.internal.frames=2:e.internal.frames=1,hc||(hc=!0,requestAnimationFrame(hd)))}function hf(e,t=!0,n,i){if(t&&hl("before",e),n)hu(e,n,i);else for(let t of c9.values())hu(e,t.store.getState());t&&hl("after",e)}let hm={onClick:["click",!1],onContextMenu:["contextmenu",!1],onDoubleClick:["dblclick",!1],onWheel:["wheel",!0],onPointerDown:["pointerdown",!0],onPointerUp:["pointerup",!0],onPointerLeave:["pointerleave",!0],onPointerMove:["pointermove",!0],onPointerCancel:["pointercancel",!0],onLostPointerCapture:["lostpointercapture",!0]};function hg(e){let{handlePointer:t}=function(e){function t(e){return e.filter(e=>["Move","Over","Enter","Out","Leave"].some(t=>{var n;return null==(n=e.__r3f)?void 0:n.handlers["onPointer"+t]}))}function n(t){let{internal:n}=e.getState();for(let e of n.hovered.values())if(!t.length||!t.find(t=>t.object===e.object&&t.index===e.index&&t.instanceId===e.instanceId)){let i=e.eventObject.__r3f;if(n.hovered.delete(cL(e)),null!=i&&i.eventCount){let n=i.handlers,r={...e,intersections:t};null==n.onPointerOut||n.onPointerOut(r),null==n.onPointerLeave||n.onPointerLeave(r)}}}function i(e,t){for(let n=0;nn([]);case"onLostPointerCapture":return t=>{let{internal:i}=e.getState();"pointerId"in t&&i.capturedMap.has(t.pointerId)&&requestAnimationFrame(()=>{i.capturedMap.has(t.pointerId)&&(i.capturedMap.delete(t.pointerId),n([]))})}}return function(a){let{onPointerMissed:s,internal:o}=e.getState();o.lastEvent.current=a;let l="onPointerMove"===r,u="onClick"===r||"onContextMenu"===r||"onDoubleClick"===r,c=function(t,n){let i=e.getState(),r=new Set,a=[],s=n?n(i.internal.interaction):i.internal.interaction;for(let e=0;e{let n=cg(e.object),i=cg(t.object);return n&&i&&i.events.priority-n.events.priority||e.distance-t.distance}).filter(e=>{let t=cL(e);return!r.has(t)&&(r.add(t),!0)});for(let e of(i.events.filter&&(o=i.events.filter(o,i)),o)){let t=e.object;for(;t;){var l;null!=(l=t.__r3f)&&l.eventCount&&a.push({...e,eventObject:t}),t=t.parent}}if("pointerId"in t&&i.internal.capturedMap.has(t.pointerId))for(let e of i.internal.capturedMap.get(t.pointerId).values())r.has(cL(e.intersection))||a.push(e.intersection);return a}(a,l?t:void 0),h=u?function(t){let{internal:n}=e.getState(),i=t.offsetX-n.initialClick[0],r=t.offsetY-n.initialClick[1];return Math.round(Math.sqrt(i*i+r*r))}(a):0;"onPointerDown"===r&&(o.initialClick=[a.offsetX,a.offsetY],o.initialHits=c.map(e=>e.eventObject)),u&&!c.length&&h<=2&&(i(a,o.interaction),s&&s(a)),l&&n(c),!function(e,t,i,r){if(e.length){let a={stopped:!1};for(let s of e){let o=cg(s.object);if(o||s.object.traverseAncestors(e=>{let t=cg(e);if(t)return o=t,!1}),o){let{raycaster:l,pointer:u,camera:c,internal:h}=o,d=new eE(u.x,u.y,0).unproject(c),p=e=>{var t,n;return null!=(t=null==(n=h.capturedMap.get(e))?void 0:n.has(s.eventObject))&&t},f=e=>{let n={intersection:s,target:t.target};h.capturedMap.has(e)?h.capturedMap.get(e).set(s.eventObject,n):h.capturedMap.set(e,new Map([[s.eventObject,n]])),t.target.setPointerCapture(e)},m=e=>{let t=h.capturedMap.get(e);t&&cN(h.capturedMap,s.eventObject,t,e)},g={};for(let e in t){let n=t[e];"function"!=typeof n&&(g[e]=n)}let v={...s,...g,pointer:u,intersections:e,stopped:a.stopped,delta:i,unprojectedPoint:d,ray:l.ray,camera:c,stopPropagation(){let i="pointerId"in t&&h.capturedMap.get(t.pointerId);(!i||i.has(s.eventObject))&&(v.stopped=a.stopped=!0,h.hovered.size&&Array.from(h.hovered.values()).find(e=>e.eventObject===s.eventObject)&&n([...e.slice(0,e.indexOf(s)),s]))},target:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},currentTarget:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},nativeEvent:t};if(r(v),!0===a.stopped)break}}}}(c,a,h,function(e){let t=e.eventObject,n=t.__r3f;if(!(null!=n&&n.eventCount))return;let s=n.handlers;if(l){if(s.onPointerOver||s.onPointerEnter||s.onPointerOut||s.onPointerLeave){let t=cL(e),n=o.hovered.get(t);n?n.stopped&&e.stopPropagation():(o.hovered.set(t,e),null==s.onPointerOver||s.onPointerOver(e),null==s.onPointerEnter||s.onPointerEnter(e))}null==s.onPointerMove||s.onPointerMove(e)}else{let n=s[r];n?(!u||o.initialHits.includes(t))&&(i(a,o.interaction.filter(e=>!o.initialHits.includes(e))),n(e)):u&&o.initialHits.includes(t)&&i(a,o.interaction.filter(e=>!o.initialHits.includes(e)))}})}}}}(e);return{priority:1,enabled:!0,compute(e,t,n){t.pointer.set(e.offsetX/t.size.width*2-1,-(2*(e.offsetY/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)},connected:void 0,handlers:Object.keys(hm).reduce((e,n)=>({...e,[n]:t(n)}),{}),update:()=>{var t;let{events:n,internal:i}=e.getState();null!=(t=i.lastEvent)&&t.current&&n.handlers&&n.handlers.onPointerMove(i.lastEvent.current)},connect:t=>{let{set:n,events:i}=e.getState();if(null==i.disconnect||i.disconnect(),n(e=>({events:{...e.events,connected:t}})),i.handlers)for(let e in i.handlers){let n=i.handlers[e],[r,a]=hm[e];t.addEventListener(r,n,{passive:a})}},disconnect:()=>{let{set:t,events:n}=e.getState();if(n.connected){if(n.handlers)for(let e in n.handlers){let t=n.handlers[e],[i]=hm[e];n.connected.removeEventListener(i,t)}t(e=>({events:{...e.events,connected:void 0}}))}}}}e.s(["A",0,cO,"B",0,cp,"C",0,cF,"D",0,cz,"E",0,cf,"G",0,cH,"a",0,ch,"b",0,cc,"c",0,he,"d",0,hn,"e",0,cZ,"f",0,hg,"i",0,cl,"o",0,function(e,t,n){return(0,u9.jsx)(hi,{children:e,container:t,state:n})},"s",0,cC,"u",0,cd],1950),e.i(8560),e.s(["ACESFilmicToneMapping",0,4,"AddEquation",0,100,"AddOperation",0,2,"AdditiveAnimationBlendMode",0,2501,"AdditiveBlending",0,2,"AgXToneMapping",0,6,"AlphaFormat",0,1021,"AlwaysCompare",0,519,"AlwaysDepth",0,1,"AlwaysStencilFunc",0,519,"AmbientLight",0,sa,"AnimationAction",0,sY,"AnimationClip",0,aB,"AnimationLoader",0,aq,"AnimationMixer",0,sJ,"AnimationObjectGroup",0,sq,"AnimationUtils",0,aE,"ArcCurve",0,rs,"ArrayCamera",0,sT,"ArrowHelper",0,oP,"AttachedBindMode",0,R,"Audio",0,sL,"AudioAnalyser",0,sz,"AudioContext",0,s_,"AudioListener",0,sI,"AudioLoader",0,sy,"AxesHelper",0,oI,"BackSide",0,1,"BasicDepthPacking",0,3200,"BasicShadowMap",0,0,"BatchedMesh",0,iz,"Bone",0,ie,"BooleanKeyframeTrack",0,aL,"Box2",0,oe,"Box3",0,eR,"Box3Helper",0,oA,"BoxGeometry",0,ng,"BoxHelper",0,oE,"BufferAttribute",0,tZ,"BufferGeometry",0,nn,"BufferGeometryLoader",0,sd,"ByteType",0,1010,"Cache",0,ak,"Camera",0,nS,"CameraHelper",0,oM,"CanvasTexture",0,rn,"CapsuleGeometry",0,rA,"CatmullRomCurve3",0,rd,"CineonToneMapping",0,3,"CircleGeometry",0,rC,"ClampToEdgeWrapping",0,1001,"Clock",0,sw,"Color",0,tz,"ColorKeyframeTrack",0,aN,"ColorManagement",0,eu,"CompressedArrayTexture",0,re,"CompressedCubeTexture",0,rt,"CompressedTexture",0,i7,"CompressedTextureLoader",0,aY,"ConeGeometry",0,rP,"ConstantAlphaFactor",0,213,"ConstantColorFactor",0,211,"Controls",0,oN,"CubeCamera",0,nA,"CubeReflectionMapping",0,301,"CubeRefractionMapping",0,302,"CubeTexture",0,nC,"CubeTextureLoader",0,aJ,"CubeUVReflectionMapping",0,306,"CubicBezierCurve",0,rg,"CubicBezierCurve3",0,rv,"CubicInterpolant",0,aC,"CullFaceBack",0,1,"CullFaceFront",0,2,"CullFaceFrontBack",0,3,"CullFaceNone",0,0,"Curve",0,rr,"CurvePath",0,rT,"CustomBlending",0,5,"CustomToneMapping",0,5,"CylinderGeometry",0,rR,"Cylindrical",0,s8,"Data3DTexture",0,eM,"DataArrayTexture",0,eb,"DataTexture",0,it,"DataTextureLoader",0,aK,"DataUtils",0,tX,"DecrementStencilOp",0,7683,"DecrementWrapStencilOp",0,34056,"DefaultLoadingManager",0,aV,"DepthFormat",0,1026,"DepthStencilFormat",0,1027,"DepthTexture",0,ri,"DetachedBindMode",0,P,"DirectionalLight",0,sr,"DirectionalLightHelper",0,ox,"DiscreteInterpolant",0,aP,"DodecahedronGeometry",0,rL,"DoubleSide",0,2,"DstAlphaFactor",0,206,"DstColorFactor",0,208,"DynamicCopyUsage",0,35050,"DynamicDrawUsage",0,35048,"DynamicReadUsage",0,35049,"EdgesGeometry",0,rF,"EllipseCurve",0,ra,"EqualCompare",0,514,"EqualDepth",0,4,"EqualStencilFunc",0,514,"EquirectangularReflectionMapping",0,303,"EquirectangularRefractionMapping",0,304,"Euler",0,tn,"EventDispatcher",0,O,"ExtrudeGeometry",0,r4,"FileLoader",0,aX,"Float16BufferAttribute",0,t3,"Float32BufferAttribute",0,t4,"FloatType",0,1015,"Fog",0,nI,"FogExp2",0,nP,"FramebufferTexture",0,i9,"FrontSide",0,0,"Frustum",0,iS,"GLBufferAttribute",0,s1,"GLSL1",0,"100","GLSL3",0,D,"GreaterCompare",0,516,"GreaterDepth",0,6,"GreaterEqualCompare",0,518,"GreaterEqualDepth",0,5,"GreaterEqualStencilFunc",0,518,"GreaterStencilFunc",0,516,"GridHelper",0,om,"Group",0,i6,"HalfFloatType",0,1016,"HemisphereLight",0,a0,"HemisphereLightHelper",0,of,"IcosahedronGeometry",0,r6,"ImageBitmapLoader",0,sv,"ImageLoader",0,aZ,"ImageUtils",0,ed,"IncrementStencilOp",0,7682,"IncrementWrapStencilOp",0,34055,"InstancedBufferAttribute",0,is,"InstancedBufferGeometry",0,sh,"InstancedInterleavedBuffer",0,s0,"InstancedMesh",0,im,"Int16BufferAttribute",0,tQ,"Int32BufferAttribute",0,t1,"Int8BufferAttribute",0,tJ,"IntType",0,1013,"InterleavedBuffer",0,nN,"InterleavedBufferAttribute",0,nD,"Interpolant",0,aA,"InterpolateDiscrete",0,2300,"InterpolateLinear",0,2301,"InterpolateSmooth",0,2302,"InvertStencilOp",0,5386,"KeepStencilOp",0,7680,"KeyframeTrack",0,aI,"LOD",0,nQ,"LatheGeometry",0,rE,"Layers",0,ti,"LessCompare",0,513,"LessDepth",0,2,"LessEqualCompare",0,515,"LessEqualDepth",0,3,"LessEqualStencilFunc",0,515,"LessStencilFunc",0,513,"Light",0,aQ,"LightProbe",0,sl,"Line",0,iq,"Line3",0,oi,"LineBasicMaterial",0,iB,"LineCurve",0,r_,"LineCurve3",0,ry,"LineDashedMaterial",0,ax,"LineLoop",0,i$,"LineSegments",0,iK,"LinearFilter",0,1006,"LinearInterpolant",0,aR,"LinearMipMapLinearFilter",0,1008,"LinearMipMapNearestFilter",0,1007,"LinearMipmapLinearFilter",0,1008,"LinearMipmapNearestFilter",0,1007,"LinearSRGBColorSpace",0,L,"LinearToneMapping",0,1,"LinearTransfer",0,N,"Loader",0,aG,"LoaderUtils",0,sc,"LoadingManager",0,aH,"LoopOnce",0,2200,"LoopPingPong",0,2202,"LoopRepeat",0,2201,"LuminanceAlphaFormat",0,1025,"LuminanceFormat",0,1024,"MOUSE",0,A,"Material",0,tH,"MaterialLoader",0,su,"MathUtils",0,q,"Matrix2",0,s9,"Matrix3",0,Z,"Matrix4",0,e2,"MaxEquation",0,104,"Mesh",0,nf,"MeshBasicMaterial",0,tV,"MeshDepthMaterial",0,av,"MeshDistanceMaterial",0,a_,"MeshLambertMaterial",0,ag,"MeshMatcapMaterial",0,ay,"MeshNormalMaterial",0,am,"MeshPhongMaterial",0,ap,"MeshPhysicalMaterial",0,ad,"MeshStandardMaterial",0,ah,"MeshToonMaterial",0,af,"MinEquation",0,103,"MirroredRepeatWrapping",0,1002,"MixOperation",0,1,"MultiplyBlending",0,4,"MultiplyOperation",0,0,"NearestFilter",0,1003,"NearestMipMapLinearFilter",0,1005,"NearestMipMapNearestFilter",0,1004,"NearestMipmapLinearFilter",0,1005,"NearestMipmapNearestFilter",0,1004,"NeutralToneMapping",0,7,"NeverCompare",0,512,"NeverDepth",0,0,"NeverStencilFunc",0,512,"NoBlending",0,0,"NoColorSpace",0,"","NoToneMapping",0,0,"NormalAnimationBlendMode",0,2500,"NormalBlending",0,1,"NotEqualCompare",0,517,"NotEqualDepth",0,7,"NotEqualStencilFunc",0,517,"NumberKeyframeTrack",0,aU,"Object3D",0,ty,"ObjectLoader",0,sp,"ObjectSpaceNormalMap",0,1,"OctahedronGeometry",0,r8,"OneFactor",0,201,"OneMinusConstantAlphaFactor",0,214,"OneMinusConstantColorFactor",0,212,"OneMinusDstAlphaFactor",0,207,"OneMinusDstColorFactor",0,209,"OneMinusSrcAlphaFactor",0,205,"OneMinusSrcColorFactor",0,203,"OrthographicCamera",0,sn,"PCFShadowMap",0,1,"PCFSoftShadowMap",0,2,"PMREMGenerator",0,o8,"Path",0,rw,"PerspectiveCamera",0,nE,"Plane",0,iy,"PlaneGeometry",0,r9,"PlaneHelper",0,oC,"PointLight",0,st,"PointLightHelper",0,oc,"Points",0,i4,"PointsMaterial",0,iQ,"PolarGridHelper",0,og,"PolyhedronGeometry",0,rI,"PositionalAudio",0,sF,"PropertyBinding",0,sX,"PropertyMixer",0,sB,"QuadraticBezierCurve",0,rx,"QuadraticBezierCurve3",0,rb,"Quaternion",0,ew,"QuaternionKeyframeTrack",0,aO,"QuaternionLinearInterpolant",0,aD,"RED_GREEN_RGTC2_Format",0,36285,"RED_RGTC1_Format",0,36283,"REVISION",0,"171","RGBADepthPacking",0,3201,"RGBAFormat",0,1023,"RGBAIntegerFormat",0,1033,"RGBA_ASTC_10x10_Format",0,37819,"RGBA_ASTC_10x5_Format",0,37816,"RGBA_ASTC_10x6_Format",0,37817,"RGBA_ASTC_10x8_Format",0,37818,"RGBA_ASTC_12x10_Format",0,37820,"RGBA_ASTC_12x12_Format",0,37821,"RGBA_ASTC_4x4_Format",0,37808,"RGBA_ASTC_5x4_Format",0,37809,"RGBA_ASTC_5x5_Format",0,37810,"RGBA_ASTC_6x5_Format",0,37811,"RGBA_ASTC_6x6_Format",0,37812,"RGBA_ASTC_8x5_Format",0,37813,"RGBA_ASTC_8x6_Format",0,37814,"RGBA_ASTC_8x8_Format",0,37815,"RGBA_BPTC_Format",0,36492,"RGBA_ETC2_EAC_Format",0,37496,"RGBA_PVRTC_2BPPV1_Format",0,35843,"RGBA_PVRTC_4BPPV1_Format",0,35842,"RGBA_S3TC_DXT1_Format",0,33777,"RGBA_S3TC_DXT3_Format",0,33778,"RGBA_S3TC_DXT5_Format",0,33779,"RGBDepthPacking",0,3202,"RGBFormat",0,1022,"RGBIntegerFormat",0,1032,"RGB_BPTC_SIGNED_Format",0,36494,"RGB_BPTC_UNSIGNED_Format",0,36495,"RGB_ETC1_Format",0,36196,"RGB_ETC2_Format",0,37492,"RGB_PVRTC_2BPPV1_Format",0,35841,"RGB_PVRTC_4BPPV1_Format",0,35840,"RGB_S3TC_DXT1_Format",0,33776,"RGDepthPacking",0,3203,"RGFormat",0,1030,"RGIntegerFormat",0,1031,"RawShaderMaterial",0,ac,"Ray",0,e1,"Raycaster",0,s3,"RectAreaLight",0,ss,"RedFormat",0,1028,"RedIntegerFormat",0,1029,"ReinhardToneMapping",0,2,"RenderTarget",0,ey,"RepeatWrapping",0,1e3,"ReplaceStencilOp",0,7681,"ReverseSubtractEquation",0,102,"RingGeometry",0,r7,"SIGNED_RED_GREEN_RGTC2_Format",0,36286,"SIGNED_RED_RGTC1_Format",0,36284,"SRGBColorSpace",0,I,"SRGBTransfer",0,U,"Scene",0,nL,"ShaderChunk",0,oB,"ShaderLib",0,oH,"ShaderMaterial",0,nb,"ShadowMaterial",0,au,"Shape",0,rz,"ShapeGeometry",0,ae,"ShapePath",0,oL,"ShapeUtils",0,r1,"ShortType",0,1011,"Skeleton",0,ia,"SkeletonHelper",0,ou,"SkinnedMesh",0,n7,"Source",0,ef,"Sphere",0,eq,"SphereGeometry",0,at,"Spherical",0,s6,"SphericalHarmonics3",0,so,"SplineCurve",0,rS,"SpotLight",0,a6,"SpotLightHelper",0,oa,"Sprite",0,nZ,"SpriteMaterial",0,nO,"SrcAlphaFactor",0,204,"SrcAlphaSaturateFactor",0,210,"SrcColorFactor",0,202,"StaticCopyUsage",0,35046,"StaticDrawUsage",0,35044,"StaticReadUsage",0,35045,"StereoCamera",0,sM,"StreamCopyUsage",0,35042,"StreamDrawUsage",0,35040,"StreamReadUsage",0,35041,"StringKeyframeTrack",0,aF,"SubtractEquation",0,101,"SubtractiveBlending",0,3,"TOUCH",0,C,"TangentSpaceNormalMap",0,0,"TetrahedronGeometry",0,an,"Texture",0,ev,"TextureLoader",0,a$,"TextureUtils",0,oD,"TorusGeometry",0,ai,"TorusKnotGeometry",0,ar,"Triangle",0,tN,"TriangleFanDrawMode",0,2,"TriangleStripDrawMode",0,1,"TrianglesDrawMode",0,0,"TubeGeometry",0,aa,"UVMapping",0,300,"Uint16BufferAttribute",0,t0,"Uint32BufferAttribute",0,t2,"Uint8BufferAttribute",0,tK,"Uint8ClampedBufferAttribute",0,t$,"Uniform",0,sK,"UniformsGroup",0,sQ,"UniformsLib",0,ok,"UniformsUtils",0,nx,"UnsignedByteType",0,1009,"UnsignedInt248Type",0,1020,"UnsignedInt5999Type",0,35902,"UnsignedIntType",0,1014,"UnsignedShort4444Type",0,1017,"UnsignedShort5551Type",0,1018,"UnsignedShortType",0,1012,"VSMShadowMap",0,3,"Vector2",0,Y,"Vector3",0,eE,"Vector4",0,e_,"VectorKeyframeTrack",0,az,"VideoTexture",0,i8,"WebGL3DRenderTarget",0,eT,"WebGLArrayRenderTarget",0,eS,"WebGLCoordinateSystem",0,2e3,"WebGLCubeRenderTarget",0,nR,"WebGLMultipleRenderTargets",0,oO,"WebGLRenderTarget",0,ex,"WebGLRenderer",0,uK,"WebGLUtils",0,uk,"WebGPUCoordinateSystem",0,2001,"WireframeGeometry",0,as,"WrapAroundEnding",0,2402,"ZeroCurvatureEnding",0,2400,"ZeroFactor",0,200,"ZeroSlopeEnding",0,2401,"ZeroStencilOp",0,0,"createCanvasElement",0,et],32009);var hv=e.i(32009);function h_(e,t){let n;return(...i)=>{window.clearTimeout(n),n=window.setTimeout(()=>e(...i),t)}}let hy=["x","y","top","bottom","left","right","width","height"];function hx({ref:e,children:t,fallback:n,resize:i,style:r,gl:a,events:s=hg,eventSource:o,eventPrefix:l,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,scene:y,onPointerMissed:x,onCreated:b,...S}){E.useMemo(()=>cZ(hv),[]);let M=cd(),[T,w]=function({debounce:e,scroll:t,polyfill:n,offsetSize:i}={debounce:0,scroll:!1,offsetSize:!1}){var r,a,s;let o=n||("u"(p.current=!0,()=>void(p.current=!1)));let[f,m,g]=(0,E.useMemo)(()=>{let e=()=>{let e,t;if(!c.current.element)return;let{left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d}=c.current.element.getBoundingClientRect(),f={left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d};c.current.element instanceof HTMLElement&&i&&(f.height=c.current.element.offsetHeight,f.width=c.current.element.offsetWidth),Object.freeze(f),p.current&&(e=c.current.lastBounds,t=f,!hy.every(n=>e[n]===t[n]))&&u(c.current.lastBounds=f)};return[e,d?h_(e,d):e,h?h_(e,h):e]},[u,i,h,d]);function v(){c.current.scrollContainers&&(c.current.scrollContainers.forEach(e=>e.removeEventListener("scroll",g,!0)),c.current.scrollContainers=null),c.current.resizeObserver&&(c.current.resizeObserver.disconnect(),c.current.resizeObserver=null),c.current.orientationHandler&&("orientation"in screen&&"removeEventListener"in screen.orientation?screen.orientation.removeEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.removeEventListener("orientationchange",c.current.orientationHandler))}function _(){c.current.element&&(c.current.resizeObserver=new o(g),c.current.resizeObserver.observe(c.current.element),t&&c.current.scrollContainers&&c.current.scrollContainers.forEach(e=>e.addEventListener("scroll",g,{capture:!0,passive:!0})),c.current.orientationHandler=()=>{g()},"orientation"in screen&&"addEventListener"in screen.orientation?screen.orientation.addEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.addEventListener("orientationchange",c.current.orientationHandler))}return r=g,a=!!t,(0,E.useEffect)(()=>{if(a)return window.addEventListener("scroll",r,{capture:!0,passive:!0}),()=>void window.removeEventListener("scroll",r,!0)},[r,a]),s=m,(0,E.useEffect)(()=>(window.addEventListener("resize",s),()=>void window.removeEventListener("resize",s)),[s]),(0,E.useEffect)(()=>{v(),_()},[t,g,m]),(0,E.useEffect)(()=>v,[]),[e=>{e&&e!==c.current.element&&(v(),c.current.element=e,c.current.scrollContainers=function e(t){let n=[];if(!t||t===document.body)return n;let{overflow:i,overflowX:r,overflowY:a}=window.getComputedStyle(t);return[i,r,a].some(e=>"auto"===e||"scroll"===e)&&n.push(t),[...n,...e(t.parentElement)]}(e),_())},l,f]}({scroll:!0,debounce:{scroll:50,resize:0},...i}),A=E.useRef(null),C=E.useRef(null);E.useImperativeHandle(e,()=>A.current);let R=ch(x),[P,I]=E.useState(!1),[L,N]=E.useState(!1);if(P)throw P;if(L)throw L;let U=E.useRef(null);cc(()=>{let e=A.current;w.width>0&&w.height>0&&e&&(U.current||(U.current=he(e)),async function(){await U.current.configure({gl:a,scene:y,events:s,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,size:w,onPointerMissed:(...e)=>null==R.current?void 0:R.current(...e),onCreated:e=>{null==e.events.connect||e.events.connect(o?cl(o)?o.current:o:C.current),l&&e.setEvents({compute:(e,t)=>{let n=e[l+"X"],i=e[l+"Y"];t.pointer.set(n/t.size.width*2-1,-(2*(i/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)}}),null==b||b(e)}}),U.current.render((0,u9.jsx)(M,{children:(0,u9.jsx)(cf,{set:N,children:(0,u9.jsx)(E.Suspense,{fallback:(0,u9.jsx)(cp,{set:I}),children:null!=t?t:null})})}))}())}),E.useEffect(()=>{let e=A.current;if(e)return()=>hn(e)},[]);let D=o?"none":"auto";return(0,u9.jsx)("div",{ref:C,style:{position:"relative",width:"100%",height:"100%",overflow:"hidden",pointerEvents:D,...r},...S,children:(0,u9.jsx)("div",{ref:T,style:{width:"100%",height:"100%"},children:(0,u9.jsx)("canvas",{ref:A,style:{display:"block"},children:n})})})}e.s(["Canvas",0,function(e){return(0,u9.jsx)(ci,{children:(0,u9.jsx)(hx,{...e})})}],75056),e.s(["useFrame",0,cz],25234),e.s(["useThree",0,cF],28600)},67335,e=>{"use strict";var t=e.i(1950);e.s(["extend",()=>t.e])},60602,e=>{"use strict";var t=e.i(1950);e.s(["useLoader",()=>t.G])},44208,e=>{"use strict";var t=e.i(1950);e.s(["createPortal",()=>t.o])},24205,e=>{"use strict";var t=e.i(1950);e.s(["applyProps",()=>t.s])}]); \ No newline at end of file + `+e.join(" > ")}return null},rt.getPublicRootInstance=function(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 27:case 5:return rA(e.child.stateNode);default:return e.child.stateNode}},rt.injectIntoDevTools=function(){var e={bundleType:0,version:rT,rendererPackageName:rw,currentDispatcherRef:rM,reconcilerVersion:"19.2.0"};if(null!==rE&&(e.rendererConfig=rE),typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")e=!1;else{var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)e=!0;else{try{sG=t.inject(e),sW=t}catch{}e=!!t.checkDCE}}return e},rt.isAlreadyRendering=function(){return(6&lm)!=0},rt.observeVisibleRects=function(e,t,n,r){if(!r7)throw Error(i(363));var a=as(e=im(e,t),n,r).disconnect;return{disconnect:function(){a()}}},rt.shouldError=function(){return null},rt.shouldSuspend=function(){return!1},rt.startHostTransition=function(e,t,r,a){if(5!==e.tag)throw Error(i(476));var s=tW(e).queue;tG(e,s,t,r4,null===r?n:function(){var t=tW(e);return null===t.next&&(t=e.alternate.memoizedState),tK(e,t.next.queue,{},ig()),r(a)})},rt.updateContainer=function(e,t,n,i){var r=t.current,a=ig();return i9(r,a,e,t,n,i),a},rt.updateContainerSync=function(e,t,n,i){return i9(t.current,2,e,t,n,i),2},rt},cG.exports.default=cG.exports,Object.defineProperty(cG.exports,"__esModule",{value:!0})),cV.exports=cG.exports),(b=cV.exports)&&b.__esModule&&Object.prototype.hasOwnProperty.call(b,"default"))?b.default:b,cj={},cX=/^three(?=[A-Z])/,cq=e=>`${e[0].toUpperCase()}${e.slice(1)}`,cY=0;function cZ(e){if("function"==typeof e){let t=`${cY++}`;return cj[t]=e,t}Object.assign(cj,e)}function cJ(e,t){let n=cq(e),i=cj[n];if("primitive"!==e&&!i)throw Error(`R3F: ${n} is not part of the THREE namespace! Did you forget to extend? See: https://docs.pmnd.rs/react-three-fiber/api/objects#using-3rd-party-objects-declaratively`);if("primitive"===e&&!t.object)throw Error("R3F: Primitives without 'object' are invalid!");if(void 0!==t.args&&!Array.isArray(t.args))throw Error("R3F: The args prop must be an array!")}function cK(e){if(e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cS(e.parent,e):cI(e.object)&&!1!==e.props.visible&&(e.object.visible=!0),e.isHidden=!1,cR(e)}}function c$(e,t,n){let i=t.root.getState();if(e.parent||e.object===i.scene){if(!t.object){var r,a;let e=cj[cq(t.type)];t.object=null!=(r=t.props.object)?r:new e(...null!=(a=t.props.args)?a:[]),t.object.__r3f=t}if(cC(t.object,t.props),t.props.attach)cS(e,t);else if(cI(t.object)&&cI(e.object)){let i=e.object.children.indexOf(null==n?void 0:n.object);if(n&&-1!==i){let n=e.object.children.indexOf(t.object);-1!==n?(e.object.children.splice(n,1),e.object.children.splice(n{try{e.dispose()}catch{}};"u">typeof IS_REACT_ACT_ENVIRONMENT?t():(0,u8.unstable_scheduleCallback)(u8.unstable_IdlePriority,t)}}function c2(e,t,n){if(!t)return;t.parent=null;let i=e.children.indexOf(t);-1!==i&&e.children.splice(i,1),t.props.attach?cM(e,t):cI(t.object)&&cI(e.object)&&(e.object.remove(t.object),function(e,t){let{internal:n}=e.getState();n.interaction=n.interaction.filter(e=>e!==t),n.initialHits=n.initialHits.filter(e=>e!==t),n.hovered.forEach((e,i)=>{(e.eventObject===t||e.object===t)&&n.hovered.delete(i)}),n.capturedMap.forEach((e,i)=>{cN(n.capturedMap,t,e,i)})}(co(t),t.object));let r=null!==t.props.dispose&&!1!==n;for(let e=t.children.length-1;e>=0;e--){let n=t.children[e];c2(t,n,r)}t.children.length=0,delete t.object.__r3f,r&&"primitive"!==t.type&&"Scene"!==t.object.type&&c1(t.object),void 0===n&&cR(t)}let c3=[],c4=()=>{},c5={},c6=0,c8=(S={isPrimaryRenderer:!1,warnsIfNotActing:!1,supportsMutation:!0,supportsPersistence:!1,supportsHydration:!1,createInstance:function(e,t,n){var i;return cJ(e=cq(e)in cj?e:e.replace(cX,""),t),"primitive"===e&&null!=(i=t.object)&&i.__r3f&&delete t.object.__r3f,cy(t.object,n,e,t)},removeChild:c2,appendChild:cQ,appendInitialChild:cQ,insertBefore:c0,appendChildToContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&cQ(n,t)},removeChildFromContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&c2(n,t)},insertInContainerBefore(e,t,n){let i=e.getState().scene.__r3f;t&&n&&i&&c0(i,t,n)},getRootHostContext:()=>c5,getChildHostContext:()=>c5,commitUpdate(e,t,n,i,r){var a,s,o;cJ(t,i);let l=!1;if("primitive"===e.type&&n.object!==i.object||(null==(a=i.args)?void 0:a.length)!==(null==(s=n.args)?void 0:s.length)?l=!0:null!=(o=i.args)&&o.some((e,t)=>{var i;return e!==(null==(i=n.args)?void 0:i[t])})&&(l=!0),l)c3.push([e,{...i},r]);else{let t=function(e,t){let n={};for(let i in t)if(!cT.includes(i)&&!cv.equ(t[i],e.props[i]))for(let e in n[i]=t[i],t)e.startsWith(`${i}-`)&&(n[e]=t[e]);for(let i in e.props){if(cT.includes(i)||t.hasOwnProperty(i))continue;let{root:r,key:a}=cx(e.object,i);if(r.constructor&&0===r.constructor.length){let e=function(e){let t=cw.get(e.constructor);try{t||(t=new e.constructor,cw.set(e.constructor,t))}catch(e){}return t}(r);cv.und(e)||(n[a]=e[a])}else n[a]=0}return n}(e,i);Object.keys(t).length&&(Object.assign(e.props,t),cC(e.object,t))}(null===r.sibling||(4&r.flags)==0)&&function(){for(let[e]of c3){let t=e.parent;if(t)for(let n of(e.props.attach?cM(t,e):cI(e.object)&&cI(t.object)&&t.object.remove(e.object),e.children))n.props.attach?cM(e,n):cI(n.object)&&cI(e.object)&&e.object.remove(n.object);e.isHidden&&cK(e),e.object.__r3f&&delete e.object.__r3f,"primitive"!==e.type&&c1(e.object)}for(let[i,r,a]of c3){i.props=r;let s=i.parent;if(s){let r=cj[cq(i.type)],o=i.object;i.object=null!=(e=i.props.object)?e:new r(...null!=(t=i.props.args)?t:[]),i.object.__r3f=i;var e,t,n=i.object;for(let e of[a,a.alternate])if(null!==e)if("function"==typeof e.ref){null==e.refCleanup||e.refCleanup();let t=e.ref(n);"function"==typeof t&&(e.refCleanup=t)}else e.ref&&(e.ref.current=n);for(let e of(!function(e,t,n){let{internal:i}=e.getState();for(let e=0;e{if(e.eventObject===t||e.object===t){i.hovered.delete(r);let a={...e,eventObject:e.eventObject===t?n:e.eventObject,object:e.object===t?n:e.object};i.hovered.set(cL(a),a)}}),i.capturedMap.forEach(e=>{let i=e.get(t);i&&(e.delete(t),e.set(n,i))})}(co(i),o,i.object),cC(i.object,i.props),i.props.attach?cS(s,i):cI(i.object)&&cI(s.object)&&s.object.add(i.object),i.children))e.props.attach?cS(i,e):cI(e.object)&&cI(i.object)&&i.object.add(e.object);cR(i)}}c3.length=0}()},finalizeInitialChildren:()=>!1,commitMount(){},getPublicInstance:e=>null==e?void 0:e.object,prepareForCommit:()=>null,preparePortalMount:e=>cy(e.getState().scene,e,"",{}),resetAfterCommit:()=>{},shouldSetTextContent:()=>!1,clearContainer:()=>!1,hideInstance:function(e){if(!e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cM(e.parent,e):cI(e.object)&&(e.object.visible=!1),e.isHidden=!0,cR(e)}},unhideInstance:cK,createTextInstance:c4,hideTextInstance:c4,unhideTextInstance:c4,scheduleTimeout:"function"==typeof setTimeout?setTimeout:void 0,cancelTimeout:"function"==typeof clearTimeout?clearTimeout:void 0,noTimeout:-1,getInstanceFromNode:()=>null,beforeActiveInstanceBlur(){},afterActiveInstanceBlur(){},detachDeletedInstance(){},prepareScopeUpdate(){},getInstanceFromScope:()=>null,shouldAttemptEagerTransition:()=>!1,trackSchedulerEvent:()=>{},resolveEventType:()=>null,resolveEventTimeStamp:()=>-1.1,requestPostPaintCallback(){},maySuspendCommit:()=>!1,preloadInstance:()=>!0,suspendInstance(){},waitForCommitToBeReady:()=>null,NotPendingTransition:null,HostTransitionContext:E.createContext(null),setCurrentUpdatePriority(e){c6=e},getCurrentUpdatePriority:()=>c6,resolveUpdatePriority(){var e;if(0!==c6)return c6;switch("u">typeof window&&(null==(e=window.event)?void 0:e.type)){case"click":case"contextmenu":case"dblclick":case"pointercancel":case"pointerdown":case"pointerup":return 2;case"pointermove":case"pointerout":case"pointerover":case"pointerenter":case"pointerleave":case"wheel":return 8;default:return 32}},resetFormInstance(){},rendererPackageName:"@react-three/fiber",rendererVersion:"9.6.1",applyViewTransitionName(e,t,n){},restoreViewTransitionName(e,t){},cancelViewTransitionName(e,t,n){},cancelRootViewTransitionName(e){},restoreRootViewTransitionName(e){},InstanceMeasurement:null,measureInstance:e=>null,wasInstanceInViewport:e=>!0,hasInstanceChanged:(e,t)=>!1,hasInstanceAffectedParent:(e,t)=>!1,suspendOnActiveViewTransition(e,t){},startGestureTransition:()=>null,startViewTransition:()=>null,stopViewTransition(e){},createViewTransitionInstance:e=>null,getCurrentGestureOffset(e){throw Error("startGestureTransition is not yet supported in react-three-fiber.")},cloneMutableInstance:(e,t)=>e,cloneMutableTextInstance:e=>e,cloneRootViewTransitionContainer(e){throw Error("Not implemented.")},removeRootViewTransitionClone(e,t){throw Error("Not implemented.")},createFragmentInstance:e=>null,updateFragmentInstanceFiber(e,t){},commitNewChildToFragmentInstance(e,t){},deleteChildFromFragmentInstance(e,t){},measureClonedInstance:e=>null,maySuspendCommitOnUpdate:(e,t,n)=>!1,maySuspendCommitInSyncRender:(e,t)=>!1,startSuspendingCommit:()=>null,getSuspendedCommitReason:(e,t)=>null},(_=cW(S)).injectIntoDevTools(),_),c9=new Map,c7={objects:"shallow",strict:!1};function he(e){var t,n;let i,r,a,s,o,l,u,c=c9.get(e),h=null==c?void 0:c.fiber,d=null==c?void 0:c.store;c&&console.warn("R3F.createRoot should only be called once!");let p="function"==typeof reportError?reportError:console.error,f=d||(t=hp,n=hf,o=(s=(a=u3((e,i)=>{let r,a=new eE,s=new eE,o=new eE;function l(e=i().camera,t=s,n=i().size){let{width:r,height:u,top:c,left:h}=n,d=r/u;t.isVector3?o.copy(t):o.set(...t);let p=e.getWorldPosition(a).distanceTo(o);if(e&&e.isOrthographicCamera)return{width:r/e.zoom,height:u/e.zoom,top:c,left:h,factor:1,distance:p,aspect:d};{let t=2*Math.tan(e.fov*Math.PI/180/2)*p,n=r/u*t;return{width:n,height:t,top:c,left:h,factor:r/n,distance:p,aspect:d}}}let u=t=>e(e=>({performance:{...e.performance,current:t}})),c=new Y;return{set:e,get:i,gl:null,camera:null,raycaster:null,events:{priority:1,enabled:!0,connected:!1},scene:null,xr:null,invalidate:(e=1)=>t(i(),e),advance:(e,t)=>n(e,t,i()),legacy:!1,linear:!1,flat:!1,controls:null,clock:new sw,pointer:c,mouse:c,frameloop:"always",onPointerMissed:void 0,performance:{current:1,min:.5,max:1,debounce:200,regress:()=>{let e=i();r&&clearTimeout(r),e.performance.current!==e.performance.min&&u(e.performance.min),r=setTimeout(()=>u(i().performance.max),e.performance.debounce)}},size:{width:0,height:0,top:0,left:0},viewport:{initialDpr:0,dpr:0,width:0,height:0,top:0,left:0,aspect:0,distance:0,factor:0,getCurrentViewport:l},setEvents:t=>e(e=>({...e,events:{...e.events,...t}})),setSize:(t,n,r=0,a=0)=>{let o=i().camera,u={width:t,height:n,top:r,left:a};e(e=>({size:u,viewport:{...e.viewport,...l(o,s,u)}}))},setDpr:t=>e(e=>{let n=cm(t);return{viewport:{...e.viewport,dpr:n,initialDpr:e.viewport.initialDpr||n}}}),setFrameloop:(t="always")=>{let n=i().clock;n.stop(),n.elapsedTime=0,"never"!==t&&(n.start(),n.elapsedTime=0),e(()=>({frameloop:t}))},previousRoot:void 0,internal:{interaction:[],hovered:new Map,subscribers:[],initialClick:[0,0],initialHits:[],capturedMap:new Map,lastEvent:E.createRef(),active:!1,frames:0,priority:0,subscribe:(e,t,n)=>{let r=i().internal;return r.priority=r.priority+ +(t>0),r.subscribers.push({ref:e,priority:t,store:n}),r.subscribers=r.subscribers.sort((e,t)=>e.priority-t.priority),()=>{let n=i().internal;null!=n&&n.subscribers&&(n.priority=n.priority-(t>0),n.subscribers=n.subscribers.filter(t=>t.ref!==e))}}}}})).getState()).size,l=s.viewport.dpr,u=s.camera,a.subscribe(()=>{let{camera:e,size:t,viewport:n,gl:i,set:r}=a.getState();if(t.width!==o.width||t.height!==o.height||n.dpr!==l){o=t,l=n.dpr,cP(e,t),n.dpr>0&&i.setPixelRatio(n.dpr);let r="u">typeof HTMLCanvasElement&&i.domElement instanceof HTMLCanvasElement;i.setSize(t.width,t.height,r)}e!==u&&(u=e,r(t=>({viewport:{...t.viewport,...t.viewport.getCurrentViewport(e)}})))}),a.subscribe(e=>t(e)),a),m=h||c8.createContainer(f,1,null,!1,null,"",p,p,p,null);c||c9.set(e,{fiber:m,store:f});let g=!1,v=null;return{async configure(t={}){var n,a;let s;v=new Promise(e=>s=e);let{gl:o,size:l,scene:u,events:c,onCreated:h,shadows:d=!1,linear:p=!1,flat:m=!1,legacy:_=!1,orthographic:y=!1,frameloop:x="always",dpr:b=[1,2],performance:S,raycaster:M,camera:T,onPointerMissed:w}=t,E=f.getState(),A=E.gl;if(!E.gl){let t={canvas:e,powerPreference:"high-performance",antialias:!0,alpha:!0},n="function"==typeof o?await o(t):o;A=cU(n)?n:new uK({...t,...o}),E.set({gl:A})}let C=E.raycaster;C||E.set({raycaster:C=new s3});let{params:R,...P}=M||{};if(cv.equ(P,C,c7)||cC(C,{...P}),cv.equ(R,C.params,c7)||cC(C,{params:{...C.params,...R}}),!E.camera||E.camera===r&&!cv.equ(r,T,c7)){r=T;let e=null==T?void 0:T.isCamera,t=e?T:y?new sn(0,0,0,0,.1,1e3):new nE(75,0,.1,1e3);!e&&(t.position.z=5,T&&(cC(t,T),!t.manual&&("aspect"in T||"left"in T||"right"in T||"bottom"in T||"top"in T)&&(t.manual=!0,t.updateProjectionMatrix())),E.camera||null!=T&&T.rotation||t.lookAt(0,0,0)),E.set({camera:t}),C.camera=t}if(!E.scene){let e;null!=u&&u.isScene?cy(e=u,f,"",{}):(cy(e=new nL,f,"",{}),u&&cC(e,u)),E.set({scene:e})}c&&!E.events.handlers&&E.set({events:c(f)});let N=function(e,t){if(!t&&"u">typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement&&e.parentElement){let{width:t,height:n,top:i,left:r}=e.parentElement.getBoundingClientRect();return{width:t,height:n,top:i,left:r}}return!t&&"u">typeof OffscreenCanvas&&e instanceof OffscreenCanvas?{width:e.width,height:e.height,top:0,left:0}:{width:0,height:0,top:0,left:0,...t}}(e,l);if(cv.equ(N,E.size,c7)||E.setSize(N.width,N.height,N.top,N.left),b&&E.viewport.dpr!==cm(b)&&E.setDpr(b),E.frameloop!==x&&E.setFrameloop(x),E.onPointerMissed||E.set({onPointerMissed:w}),S&&!cv.equ(S,E.performance,c7)&&E.set(e=>({performance:{...e.performance,...S}})),!E.xr){let e=(e,t)=>{let n=f.getState();"never"!==n.frameloop&&hf(e,!0,n,t)},t=()=>{let t=f.getState();t.gl.xr.enabled=t.gl.xr.isPresenting,t.gl.xr.setAnimationLoop(t.gl.xr.isPresenting?e:null),t.gl.xr.isPresenting||hp(t)},i={connect(){let e=f.getState().gl;e.xr.addEventListener("sessionstart",t),e.xr.addEventListener("sessionend",t)},disconnect(){let e=f.getState().gl;e.xr.removeEventListener("sessionstart",t),e.xr.removeEventListener("sessionend",t)}};"function"==typeof(null==(n=A.xr)?void 0:n.addEventListener)&&i.connect(),E.set({xr:i})}if(A.shadowMap){let e=A.shadowMap.enabled,t=A.shadowMap.type;A.shadowMap.enabled=!!d,cv.boo(d)?A.shadowMap.type=2:cv.str(d)?A.shadowMap.type=null!=(a=({basic:0,percentage:1,soft:2,variance:3})[d])?a:2:cv.obj(d)&&Object.assign(A.shadowMap,d),(e!==A.shadowMap.enabled||t!==A.shadowMap.type)&&(A.shadowMap.needsUpdate=!0)}return eu.enabled=!_,g||(A.outputColorSpace=p?L:I,A.toneMapping=4*!m),E.legacy!==_&&E.set(()=>({legacy:_})),E.linear!==p&&E.set(()=>({linear:p})),E.flat!==m&&E.set(()=>({flat:m})),!o||cv.fun(o)||cU(o)||cv.equ(o,A,c7)||cC(A,o),i=h,g=!0,s(),this},render(t){return g||v||this.configure(),v.then(()=>{c8.updateContainer((0,u9.jsx)(ht,{store:f,children:t,onCreated:i,rootElement:e}),m,null,()=>void 0)}),f},unmount(){hn(e)}}}function ht({store:e,children:t,onCreated:n,rootElement:i}){return cc(()=>{let t=e.getState();t.set(e=>({internal:{...e.internal,active:!0}})),n&&n(t),e.getState().events.connected||null==t.events.connect||t.events.connect(i)},[]),(0,u9.jsx)(cD.Provider,{value:e,children:t})}function hn(e,t){let n=c9.get(e),i=null==n?void 0:n.fiber;if(i){let r=null==n?void 0:n.store.getState();r&&(r.internal.active=!1),c8.updateContainer(null,i,null,()=>{r&&setTimeout(()=>{try{null==r.events.disconnect||r.events.disconnect(),null==(n=r.gl)||null==(i=n.renderLists)||null==i.dispose||i.dispose(),null==(a=r.gl)||null==a.forceContextLoss||a.forceContextLoss(),null!=(s=r.gl)&&s.xr&&r.xr.disconnect();var n,i,a,s,o=r.scene;for(let e in"Scene"!==o.type&&(null==o.dispose||o.dispose()),o){let t=o[e];(null==t?void 0:t.type)!=="Scene"&&(null==t||null==t.dispose||t.dispose())}c9.delete(e),t&&t(e)}catch(e){}},500)})}}function hi({state:e={},children:t,container:n}){let{events:i,size:r,...a}=e,s=cO(),[o]=E.useState(()=>new s3),[l]=E.useState(()=>new Y),u=ch((e,t)=>{let a;if(t.camera&&r){let n=t.camera;a=e.viewport.getCurrentViewport(n,new eE,r),n!==e.camera&&cP(n,r)}return{...e,...t,scene:n,raycaster:o,pointer:l,mouse:l,previousRoot:s,events:{...e.events,...t.events,...i},size:{...e.size,...r},viewport:{...e.viewport,...a},setEvents:e=>t.set(t=>({...t,events:{...t.events,...e}}))}}),c=E.useMemo(()=>{let e=u3((e,t)=>({...a,set:e,get:t})),t=t=>e.setState(e=>u.current(t,e));return t(s.getState()),s.subscribe(t),e},[s,n]);return(0,u9.jsx)(u9.Fragment,{children:c8.createPortal((0,u9.jsx)(cD.Provider,{value:c,children:t}),c,null)})}let hr=new Set,ha=new Set,hs=new Set;function ho(e,t){if(e.size)for(let{callback:n}of e.values())n(t)}function hl(e,t){switch(e){case"before":return ho(hr,t);case"after":return ho(ha,t);case"tail":return ho(hs,t)}}function hu(e,t,n){let i=t.clock.getDelta();"never"===t.frameloop&&"number"==typeof e&&(i=e-t.clock.elapsedTime,t.clock.oldTime=t.clock.elapsedTime,t.clock.elapsedTime=e),s=t.internal.subscribers;for(let e=0;e0)&&!(null!=(t=c.gl.xr)&&t.isPresenting)&&(l+=hu(e,c))}if(hh=!1,hl("after",e),0===l)return hl("tail",e),hc=!1,cancelAnimationFrame(u)}function hp(e,t=1){var n;if(!e)return c9.forEach(e=>hp(e.store.getState(),t));(null==(n=e.gl.xr)||!n.isPresenting)&&e.internal.active&&"never"!==e.frameloop&&(t>1?e.internal.frames=Math.min(60,e.internal.frames+t):hh?e.internal.frames=2:e.internal.frames=1,hc||(hc=!0,requestAnimationFrame(hd)))}function hf(e,t=!0,n,i){if(t&&hl("before",e),n)hu(e,n,i);else for(let t of c9.values())hu(e,t.store.getState());t&&hl("after",e)}let hm={onClick:["click",!1],onContextMenu:["contextmenu",!1],onDoubleClick:["dblclick",!1],onWheel:["wheel",!0],onPointerDown:["pointerdown",!0],onPointerUp:["pointerup",!0],onPointerLeave:["pointerleave",!0],onPointerMove:["pointermove",!0],onPointerCancel:["pointercancel",!0],onLostPointerCapture:["lostpointercapture",!0]};function hg(e){let{handlePointer:t}=function(e){function t(e){return e.filter(e=>["Move","Over","Enter","Out","Leave"].some(t=>{var n;return null==(n=e.__r3f)?void 0:n.handlers["onPointer"+t]}))}function n(t){let{internal:n}=e.getState();for(let e of n.hovered.values())if(!t.length||!t.find(t=>t.object===e.object&&t.index===e.index&&t.instanceId===e.instanceId)){let i=e.eventObject.__r3f;if(n.hovered.delete(cL(e)),null!=i&&i.eventCount){let n=i.handlers,r={...e,intersections:t};null==n.onPointerOut||n.onPointerOut(r),null==n.onPointerLeave||n.onPointerLeave(r)}}}function i(e,t){for(let n=0;nn([]);case"onLostPointerCapture":return t=>{let{internal:i}=e.getState();"pointerId"in t&&i.capturedMap.has(t.pointerId)&&requestAnimationFrame(()=>{i.capturedMap.has(t.pointerId)&&(i.capturedMap.delete(t.pointerId),n([]))})}}return function(a){let{onPointerMissed:s,internal:o}=e.getState();o.lastEvent.current=a;let l="onPointerMove"===r,u="onClick"===r||"onContextMenu"===r||"onDoubleClick"===r,c=function(t,n){let i=e.getState(),r=new Set,a=[],s=n?n(i.internal.interaction):i.internal.interaction;for(let e=0;e{let n=cg(e.object),i=cg(t.object);return n&&i&&i.events.priority-n.events.priority||e.distance-t.distance}).filter(e=>{let t=cL(e);return!r.has(t)&&(r.add(t),!0)});for(let e of(i.events.filter&&(o=i.events.filter(o,i)),o)){let t=e.object;for(;t;){var l;null!=(l=t.__r3f)&&l.eventCount&&a.push({...e,eventObject:t}),t=t.parent}}if("pointerId"in t&&i.internal.capturedMap.has(t.pointerId))for(let e of i.internal.capturedMap.get(t.pointerId).values())r.has(cL(e.intersection))||a.push(e.intersection);return a}(a,l?t:void 0),h=u?function(t){let{internal:n}=e.getState(),i=t.offsetX-n.initialClick[0],r=t.offsetY-n.initialClick[1];return Math.round(Math.sqrt(i*i+r*r))}(a):0;"onPointerDown"===r&&(o.initialClick=[a.offsetX,a.offsetY],o.initialHits=c.map(e=>e.eventObject)),u&&!c.length&&h<=2&&(i(a,o.interaction),s&&s(a)),l&&n(c),!function(e,t,i,r){if(e.length){let a={stopped:!1};for(let s of e){let o=cg(s.object);if(o||s.object.traverseAncestors(e=>{let t=cg(e);if(t)return o=t,!1}),o){let{raycaster:l,pointer:u,camera:c,internal:h}=o,d=new eE(u.x,u.y,0).unproject(c),p=e=>{var t,n;return null!=(t=null==(n=h.capturedMap.get(e))?void 0:n.has(s.eventObject))&&t},f=e=>{let n={intersection:s,target:t.target};h.capturedMap.has(e)?h.capturedMap.get(e).set(s.eventObject,n):h.capturedMap.set(e,new Map([[s.eventObject,n]])),t.target.setPointerCapture(e)},m=e=>{let t=h.capturedMap.get(e);t&&cN(h.capturedMap,s.eventObject,t,e)},g={};for(let e in t){let n=t[e];"function"!=typeof n&&(g[e]=n)}let v={...s,...g,pointer:u,intersections:e,stopped:a.stopped,delta:i,unprojectedPoint:d,ray:l.ray,camera:c,stopPropagation(){let i="pointerId"in t&&h.capturedMap.get(t.pointerId);(!i||i.has(s.eventObject))&&(v.stopped=a.stopped=!0,h.hovered.size&&Array.from(h.hovered.values()).find(e=>e.eventObject===s.eventObject)&&n([...e.slice(0,e.indexOf(s)),s]))},target:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},currentTarget:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},nativeEvent:t};if(r(v),!0===a.stopped)break}}}}(c,a,h,function(e){let t=e.eventObject,n=t.__r3f;if(!(null!=n&&n.eventCount))return;let s=n.handlers;if(l){if(s.onPointerOver||s.onPointerEnter||s.onPointerOut||s.onPointerLeave){let t=cL(e),n=o.hovered.get(t);n?n.stopped&&e.stopPropagation():(o.hovered.set(t,e),null==s.onPointerOver||s.onPointerOver(e),null==s.onPointerEnter||s.onPointerEnter(e))}null==s.onPointerMove||s.onPointerMove(e)}else{let n=s[r];n?(!u||o.initialHits.includes(t))&&(i(a,o.interaction.filter(e=>!o.initialHits.includes(e))),n(e)):u&&o.initialHits.includes(t)&&i(a,o.interaction.filter(e=>!o.initialHits.includes(e)))}})}}}}(e);return{priority:1,enabled:!0,compute(e,t,n){t.pointer.set(e.offsetX/t.size.width*2-1,-(2*(e.offsetY/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)},connected:void 0,handlers:Object.keys(hm).reduce((e,n)=>({...e,[n]:t(n)}),{}),update:()=>{var t;let{events:n,internal:i}=e.getState();null!=(t=i.lastEvent)&&t.current&&n.handlers&&n.handlers.onPointerMove(i.lastEvent.current)},connect:t=>{let{set:n,events:i}=e.getState();if(null==i.disconnect||i.disconnect(),n(e=>({events:{...e.events,connected:t}})),i.handlers)for(let e in i.handlers){let n=i.handlers[e],[r,a]=hm[e];t.addEventListener(r,n,{passive:a})}},disconnect:()=>{let{set:t,events:n}=e.getState();if(n.connected){if(n.handlers)for(let e in n.handlers){let t=n.handlers[e],[i]=hm[e];n.connected.removeEventListener(i,t)}t(e=>({events:{...e.events,connected:void 0}}))}}}}e.s(["B",0,cp,"C",0,cF,"D",0,cz,"E",0,cf,"G",0,cH,"a",0,ch,"b",0,cc,"c",0,he,"d",0,hn,"e",0,cZ,"f",0,hg,"i",0,cl,"o",0,function(e,t,n){return(0,u9.jsx)(hi,{children:e,container:t,state:n})},"s",0,cC,"u",0,cd],1950),e.i(8560),e.s(["ACESFilmicToneMapping",0,4,"AddEquation",0,100,"AddOperation",0,2,"AdditiveAnimationBlendMode",0,2501,"AdditiveBlending",0,2,"AgXToneMapping",0,6,"AlphaFormat",0,1021,"AlwaysCompare",0,519,"AlwaysDepth",0,1,"AlwaysStencilFunc",0,519,"AmbientLight",0,sa,"AnimationAction",0,sY,"AnimationClip",0,aB,"AnimationLoader",0,aq,"AnimationMixer",0,sJ,"AnimationObjectGroup",0,sq,"AnimationUtils",0,aE,"ArcCurve",0,rs,"ArrayCamera",0,sT,"ArrowHelper",0,oP,"AttachedBindMode",0,R,"Audio",0,sL,"AudioAnalyser",0,sz,"AudioContext",0,s_,"AudioListener",0,sI,"AudioLoader",0,sy,"AxesHelper",0,oI,"BackSide",0,1,"BasicDepthPacking",0,3200,"BasicShadowMap",0,0,"BatchedMesh",0,iz,"Bone",0,ie,"BooleanKeyframeTrack",0,aL,"Box2",0,oe,"Box3",0,eR,"Box3Helper",0,oA,"BoxGeometry",0,ng,"BoxHelper",0,oE,"BufferAttribute",0,tZ,"BufferGeometry",0,nn,"BufferGeometryLoader",0,sd,"ByteType",0,1010,"Cache",0,ak,"Camera",0,nS,"CameraHelper",0,oM,"CanvasTexture",0,rn,"CapsuleGeometry",0,rA,"CatmullRomCurve3",0,rd,"CineonToneMapping",0,3,"CircleGeometry",0,rC,"ClampToEdgeWrapping",0,1001,"Clock",0,sw,"Color",0,tz,"ColorKeyframeTrack",0,aN,"ColorManagement",0,eu,"CompressedArrayTexture",0,re,"CompressedCubeTexture",0,rt,"CompressedTexture",0,i7,"CompressedTextureLoader",0,aY,"ConeGeometry",0,rP,"ConstantAlphaFactor",0,213,"ConstantColorFactor",0,211,"Controls",0,oN,"CubeCamera",0,nA,"CubeReflectionMapping",0,301,"CubeRefractionMapping",0,302,"CubeTexture",0,nC,"CubeTextureLoader",0,aJ,"CubeUVReflectionMapping",0,306,"CubicBezierCurve",0,rg,"CubicBezierCurve3",0,rv,"CubicInterpolant",0,aC,"CullFaceBack",0,1,"CullFaceFront",0,2,"CullFaceFrontBack",0,3,"CullFaceNone",0,0,"Curve",0,rr,"CurvePath",0,rT,"CustomBlending",0,5,"CustomToneMapping",0,5,"CylinderGeometry",0,rR,"Cylindrical",0,s8,"Data3DTexture",0,eM,"DataArrayTexture",0,eb,"DataTexture",0,it,"DataTextureLoader",0,aK,"DataUtils",0,tX,"DecrementStencilOp",0,7683,"DecrementWrapStencilOp",0,34056,"DefaultLoadingManager",0,aV,"DepthFormat",0,1026,"DepthStencilFormat",0,1027,"DepthTexture",0,ri,"DetachedBindMode",0,P,"DirectionalLight",0,sr,"DirectionalLightHelper",0,ox,"DiscreteInterpolant",0,aP,"DodecahedronGeometry",0,rL,"DoubleSide",0,2,"DstAlphaFactor",0,206,"DstColorFactor",0,208,"DynamicCopyUsage",0,35050,"DynamicDrawUsage",0,35048,"DynamicReadUsage",0,35049,"EdgesGeometry",0,rF,"EllipseCurve",0,ra,"EqualCompare",0,514,"EqualDepth",0,4,"EqualStencilFunc",0,514,"EquirectangularReflectionMapping",0,303,"EquirectangularRefractionMapping",0,304,"Euler",0,tn,"EventDispatcher",0,O,"ExtrudeGeometry",0,r4,"FileLoader",0,aX,"Float16BufferAttribute",0,t3,"Float32BufferAttribute",0,t4,"FloatType",0,1015,"Fog",0,nI,"FogExp2",0,nP,"FramebufferTexture",0,i9,"FrontSide",0,0,"Frustum",0,iS,"GLBufferAttribute",0,s1,"GLSL1",0,"100","GLSL3",0,D,"GreaterCompare",0,516,"GreaterDepth",0,6,"GreaterEqualCompare",0,518,"GreaterEqualDepth",0,5,"GreaterEqualStencilFunc",0,518,"GreaterStencilFunc",0,516,"GridHelper",0,om,"Group",0,i6,"HalfFloatType",0,1016,"HemisphereLight",0,a0,"HemisphereLightHelper",0,of,"IcosahedronGeometry",0,r6,"ImageBitmapLoader",0,sv,"ImageLoader",0,aZ,"ImageUtils",0,ed,"IncrementStencilOp",0,7682,"IncrementWrapStencilOp",0,34055,"InstancedBufferAttribute",0,is,"InstancedBufferGeometry",0,sh,"InstancedInterleavedBuffer",0,s0,"InstancedMesh",0,im,"Int16BufferAttribute",0,tQ,"Int32BufferAttribute",0,t1,"Int8BufferAttribute",0,tJ,"IntType",0,1013,"InterleavedBuffer",0,nN,"InterleavedBufferAttribute",0,nD,"Interpolant",0,aA,"InterpolateDiscrete",0,2300,"InterpolateLinear",0,2301,"InterpolateSmooth",0,2302,"InvertStencilOp",0,5386,"KeepStencilOp",0,7680,"KeyframeTrack",0,aI,"LOD",0,nQ,"LatheGeometry",0,rE,"Layers",0,ti,"LessCompare",0,513,"LessDepth",0,2,"LessEqualCompare",0,515,"LessEqualDepth",0,3,"LessEqualStencilFunc",0,515,"LessStencilFunc",0,513,"Light",0,aQ,"LightProbe",0,sl,"Line",0,iq,"Line3",0,oi,"LineBasicMaterial",0,iB,"LineCurve",0,r_,"LineCurve3",0,ry,"LineDashedMaterial",0,ax,"LineLoop",0,i$,"LineSegments",0,iK,"LinearFilter",0,1006,"LinearInterpolant",0,aR,"LinearMipMapLinearFilter",0,1008,"LinearMipMapNearestFilter",0,1007,"LinearMipmapLinearFilter",0,1008,"LinearMipmapNearestFilter",0,1007,"LinearSRGBColorSpace",0,L,"LinearToneMapping",0,1,"LinearTransfer",0,N,"Loader",0,aG,"LoaderUtils",0,sc,"LoadingManager",0,aH,"LoopOnce",0,2200,"LoopPingPong",0,2202,"LoopRepeat",0,2201,"LuminanceAlphaFormat",0,1025,"LuminanceFormat",0,1024,"MOUSE",0,A,"Material",0,tH,"MaterialLoader",0,su,"MathUtils",0,q,"Matrix2",0,s9,"Matrix3",0,Z,"Matrix4",0,e2,"MaxEquation",0,104,"Mesh",0,nf,"MeshBasicMaterial",0,tV,"MeshDepthMaterial",0,av,"MeshDistanceMaterial",0,a_,"MeshLambertMaterial",0,ag,"MeshMatcapMaterial",0,ay,"MeshNormalMaterial",0,am,"MeshPhongMaterial",0,ap,"MeshPhysicalMaterial",0,ad,"MeshStandardMaterial",0,ah,"MeshToonMaterial",0,af,"MinEquation",0,103,"MirroredRepeatWrapping",0,1002,"MixOperation",0,1,"MultiplyBlending",0,4,"MultiplyOperation",0,0,"NearestFilter",0,1003,"NearestMipMapLinearFilter",0,1005,"NearestMipMapNearestFilter",0,1004,"NearestMipmapLinearFilter",0,1005,"NearestMipmapNearestFilter",0,1004,"NeutralToneMapping",0,7,"NeverCompare",0,512,"NeverDepth",0,0,"NeverStencilFunc",0,512,"NoBlending",0,0,"NoColorSpace",0,"","NoToneMapping",0,0,"NormalAnimationBlendMode",0,2500,"NormalBlending",0,1,"NotEqualCompare",0,517,"NotEqualDepth",0,7,"NotEqualStencilFunc",0,517,"NumberKeyframeTrack",0,aU,"Object3D",0,ty,"ObjectLoader",0,sp,"ObjectSpaceNormalMap",0,1,"OctahedronGeometry",0,r8,"OneFactor",0,201,"OneMinusConstantAlphaFactor",0,214,"OneMinusConstantColorFactor",0,212,"OneMinusDstAlphaFactor",0,207,"OneMinusDstColorFactor",0,209,"OneMinusSrcAlphaFactor",0,205,"OneMinusSrcColorFactor",0,203,"OrthographicCamera",0,sn,"PCFShadowMap",0,1,"PCFSoftShadowMap",0,2,"PMREMGenerator",0,o8,"Path",0,rw,"PerspectiveCamera",0,nE,"Plane",0,iy,"PlaneGeometry",0,r9,"PlaneHelper",0,oC,"PointLight",0,st,"PointLightHelper",0,oc,"Points",0,i4,"PointsMaterial",0,iQ,"PolarGridHelper",0,og,"PolyhedronGeometry",0,rI,"PositionalAudio",0,sF,"PropertyBinding",0,sX,"PropertyMixer",0,sB,"QuadraticBezierCurve",0,rx,"QuadraticBezierCurve3",0,rb,"Quaternion",0,ew,"QuaternionKeyframeTrack",0,aO,"QuaternionLinearInterpolant",0,aD,"RED_GREEN_RGTC2_Format",0,36285,"RED_RGTC1_Format",0,36283,"REVISION",0,"171","RGBADepthPacking",0,3201,"RGBAFormat",0,1023,"RGBAIntegerFormat",0,1033,"RGBA_ASTC_10x10_Format",0,37819,"RGBA_ASTC_10x5_Format",0,37816,"RGBA_ASTC_10x6_Format",0,37817,"RGBA_ASTC_10x8_Format",0,37818,"RGBA_ASTC_12x10_Format",0,37820,"RGBA_ASTC_12x12_Format",0,37821,"RGBA_ASTC_4x4_Format",0,37808,"RGBA_ASTC_5x4_Format",0,37809,"RGBA_ASTC_5x5_Format",0,37810,"RGBA_ASTC_6x5_Format",0,37811,"RGBA_ASTC_6x6_Format",0,37812,"RGBA_ASTC_8x5_Format",0,37813,"RGBA_ASTC_8x6_Format",0,37814,"RGBA_ASTC_8x8_Format",0,37815,"RGBA_BPTC_Format",0,36492,"RGBA_ETC2_EAC_Format",0,37496,"RGBA_PVRTC_2BPPV1_Format",0,35843,"RGBA_PVRTC_4BPPV1_Format",0,35842,"RGBA_S3TC_DXT1_Format",0,33777,"RGBA_S3TC_DXT3_Format",0,33778,"RGBA_S3TC_DXT5_Format",0,33779,"RGBDepthPacking",0,3202,"RGBFormat",0,1022,"RGBIntegerFormat",0,1032,"RGB_BPTC_SIGNED_Format",0,36494,"RGB_BPTC_UNSIGNED_Format",0,36495,"RGB_ETC1_Format",0,36196,"RGB_ETC2_Format",0,37492,"RGB_PVRTC_2BPPV1_Format",0,35841,"RGB_PVRTC_4BPPV1_Format",0,35840,"RGB_S3TC_DXT1_Format",0,33776,"RGDepthPacking",0,3203,"RGFormat",0,1030,"RGIntegerFormat",0,1031,"RawShaderMaterial",0,ac,"Ray",0,e1,"Raycaster",0,s3,"RectAreaLight",0,ss,"RedFormat",0,1028,"RedIntegerFormat",0,1029,"ReinhardToneMapping",0,2,"RenderTarget",0,ey,"RepeatWrapping",0,1e3,"ReplaceStencilOp",0,7681,"ReverseSubtractEquation",0,102,"RingGeometry",0,r7,"SIGNED_RED_GREEN_RGTC2_Format",0,36286,"SIGNED_RED_RGTC1_Format",0,36284,"SRGBColorSpace",0,I,"SRGBTransfer",0,U,"Scene",0,nL,"ShaderChunk",0,oB,"ShaderLib",0,oH,"ShaderMaterial",0,nb,"ShadowMaterial",0,au,"Shape",0,rz,"ShapeGeometry",0,ae,"ShapePath",0,oL,"ShapeUtils",0,r1,"ShortType",0,1011,"Skeleton",0,ia,"SkeletonHelper",0,ou,"SkinnedMesh",0,n7,"Source",0,ef,"Sphere",0,eq,"SphereGeometry",0,at,"Spherical",0,s6,"SphericalHarmonics3",0,so,"SplineCurve",0,rS,"SpotLight",0,a6,"SpotLightHelper",0,oa,"Sprite",0,nZ,"SpriteMaterial",0,nO,"SrcAlphaFactor",0,204,"SrcAlphaSaturateFactor",0,210,"SrcColorFactor",0,202,"StaticCopyUsage",0,35046,"StaticDrawUsage",0,35044,"StaticReadUsage",0,35045,"StereoCamera",0,sM,"StreamCopyUsage",0,35042,"StreamDrawUsage",0,35040,"StreamReadUsage",0,35041,"StringKeyframeTrack",0,aF,"SubtractEquation",0,101,"SubtractiveBlending",0,3,"TOUCH",0,C,"TangentSpaceNormalMap",0,0,"TetrahedronGeometry",0,an,"Texture",0,ev,"TextureLoader",0,a$,"TextureUtils",0,oD,"TorusGeometry",0,ai,"TorusKnotGeometry",0,ar,"Triangle",0,tN,"TriangleFanDrawMode",0,2,"TriangleStripDrawMode",0,1,"TrianglesDrawMode",0,0,"TubeGeometry",0,aa,"UVMapping",0,300,"Uint16BufferAttribute",0,t0,"Uint32BufferAttribute",0,t2,"Uint8BufferAttribute",0,tK,"Uint8ClampedBufferAttribute",0,t$,"Uniform",0,sK,"UniformsGroup",0,sQ,"UniformsLib",0,ok,"UniformsUtils",0,nx,"UnsignedByteType",0,1009,"UnsignedInt248Type",0,1020,"UnsignedInt5999Type",0,35902,"UnsignedIntType",0,1014,"UnsignedShort4444Type",0,1017,"UnsignedShort5551Type",0,1018,"UnsignedShortType",0,1012,"VSMShadowMap",0,3,"Vector2",0,Y,"Vector3",0,eE,"Vector4",0,e_,"VectorKeyframeTrack",0,az,"VideoTexture",0,i8,"WebGL3DRenderTarget",0,eT,"WebGLArrayRenderTarget",0,eS,"WebGLCoordinateSystem",0,2e3,"WebGLCubeRenderTarget",0,nR,"WebGLMultipleRenderTargets",0,oO,"WebGLRenderTarget",0,ex,"WebGLRenderer",0,uK,"WebGLUtils",0,uk,"WebGPUCoordinateSystem",0,2001,"WireframeGeometry",0,as,"WrapAroundEnding",0,2402,"ZeroCurvatureEnding",0,2400,"ZeroFactor",0,200,"ZeroSlopeEnding",0,2401,"ZeroStencilOp",0,0,"createCanvasElement",0,et],32009);var hv=e.i(32009);function h_(e,t){let n;return(...i)=>{window.clearTimeout(n),n=window.setTimeout(()=>e(...i),t)}}let hy=["x","y","top","bottom","left","right","width","height"];function hx({ref:e,children:t,fallback:n,resize:i,style:r,gl:a,events:s=hg,eventSource:o,eventPrefix:l,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,scene:y,onPointerMissed:x,onCreated:b,...S}){E.useMemo(()=>cZ(hv),[]);let M=cd(),[T,w]=function({debounce:e,scroll:t,polyfill:n,offsetSize:i}={debounce:0,scroll:!1,offsetSize:!1}){var r,a,s;let o=n||("u"(p.current=!0,()=>void(p.current=!1)));let[f,m,g]=(0,E.useMemo)(()=>{let e=()=>{let e,t;if(!c.current.element)return;let{left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d}=c.current.element.getBoundingClientRect(),f={left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d};c.current.element instanceof HTMLElement&&i&&(f.height=c.current.element.offsetHeight,f.width=c.current.element.offsetWidth),Object.freeze(f),p.current&&(e=c.current.lastBounds,t=f,!hy.every(n=>e[n]===t[n]))&&u(c.current.lastBounds=f)};return[e,d?h_(e,d):e,h?h_(e,h):e]},[u,i,h,d]);function v(){c.current.scrollContainers&&(c.current.scrollContainers.forEach(e=>e.removeEventListener("scroll",g,!0)),c.current.scrollContainers=null),c.current.resizeObserver&&(c.current.resizeObserver.disconnect(),c.current.resizeObserver=null),c.current.orientationHandler&&("orientation"in screen&&"removeEventListener"in screen.orientation?screen.orientation.removeEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.removeEventListener("orientationchange",c.current.orientationHandler))}function _(){c.current.element&&(c.current.resizeObserver=new o(g),c.current.resizeObserver.observe(c.current.element),t&&c.current.scrollContainers&&c.current.scrollContainers.forEach(e=>e.addEventListener("scroll",g,{capture:!0,passive:!0})),c.current.orientationHandler=()=>{g()},"orientation"in screen&&"addEventListener"in screen.orientation?screen.orientation.addEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.addEventListener("orientationchange",c.current.orientationHandler))}return r=g,a=!!t,(0,E.useEffect)(()=>{if(a)return window.addEventListener("scroll",r,{capture:!0,passive:!0}),()=>void window.removeEventListener("scroll",r,!0)},[r,a]),s=m,(0,E.useEffect)(()=>(window.addEventListener("resize",s),()=>void window.removeEventListener("resize",s)),[s]),(0,E.useEffect)(()=>{v(),_()},[t,g,m]),(0,E.useEffect)(()=>v,[]),[e=>{e&&e!==c.current.element&&(v(),c.current.element=e,c.current.scrollContainers=function e(t){let n=[];if(!t||t===document.body)return n;let{overflow:i,overflowX:r,overflowY:a}=window.getComputedStyle(t);return[i,r,a].some(e=>"auto"===e||"scroll"===e)&&n.push(t),[...n,...e(t.parentElement)]}(e),_())},l,f]}({scroll:!0,debounce:{scroll:50,resize:0},...i}),A=E.useRef(null),C=E.useRef(null);E.useImperativeHandle(e,()=>A.current);let R=ch(x),[P,I]=E.useState(!1),[L,N]=E.useState(!1);if(P)throw P;if(L)throw L;let U=E.useRef(null);cc(()=>{let e=A.current;w.width>0&&w.height>0&&e&&(U.current||(U.current=he(e)),async function(){await U.current.configure({gl:a,scene:y,events:s,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,size:w,onPointerMissed:(...e)=>null==R.current?void 0:R.current(...e),onCreated:e=>{null==e.events.connect||e.events.connect(o?cl(o)?o.current:o:C.current),l&&e.setEvents({compute:(e,t)=>{let n=e[l+"X"],i=e[l+"Y"];t.pointer.set(n/t.size.width*2-1,-(2*(i/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)}}),null==b||b(e)}}),U.current.render((0,u9.jsx)(M,{children:(0,u9.jsx)(cf,{set:N,children:(0,u9.jsx)(E.Suspense,{fallback:(0,u9.jsx)(cp,{set:I}),children:null!=t?t:null})})}))}())}),E.useEffect(()=>{let e=A.current;if(e)return()=>hn(e)},[]);let D=o?"none":"auto";return(0,u9.jsx)("div",{ref:C,style:{position:"relative",width:"100%",height:"100%",overflow:"hidden",pointerEvents:D,...r},...S,children:(0,u9.jsx)("div",{ref:T,style:{width:"100%",height:"100%"},children:(0,u9.jsx)("canvas",{ref:A,style:{display:"block"},children:n})})})}e.s(["Canvas",0,function(e){return(0,u9.jsx)(ci,{children:(0,u9.jsx)(hx,{...e})})}],75056),e.s(["useFrame",0,cz],25234),e.s(["useThree",0,cF],28600)},67335,e=>{"use strict";var t=e.i(1950);e.s(["extend",()=>t.e])},44208,e=>{"use strict";var t=e.i(1950);e.s(["createPortal",()=>t.o])},60602,e=>{"use strict";var t=e.i(1950);e.s(["useLoader",()=>t.G])},24205,e=>{"use strict";var t=e.i(1950);e.s(["applyProps",()=>t.s])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/04vqjcwjasc-3.js b/.next/static/chunks/04vqjcwjasc-3.js similarity index 100% rename from build/_next/static/chunks/04vqjcwjasc-3.js rename to .next/static/chunks/04vqjcwjasc-3.js diff --git a/build/_next/static/chunks/04xui0pxt.et1.js b/.next/static/chunks/04xui0pxt.et1.js similarity index 100% rename from build/_next/static/chunks/04xui0pxt.et1.js rename to .next/static/chunks/04xui0pxt.et1.js diff --git a/build/_next/static/chunks/0~6a87_s8h6ue.js b/.next/static/chunks/06~35roaehny..js similarity index 95% rename from build/_next/static/chunks/0~6a87_s8h6ue.js rename to .next/static/chunks/06~35roaehny..js index c3922cd..488cae1 100644 --- a/build/_next/static/chunks/0~6a87_s8h6ue.js +++ b/.next/static/chunks/06~35roaehny..js @@ -283,7 +283,7 @@ display: none !important; } } - `}}),(0,t.jsx)("div",{className:"wings-hero-page elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",ref:o,children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden",height:"800px"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard wings-hero-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["Where Quick Commerce",(0,t.jsx)("br",{}),(0,t.jsx)(n.ShimmerText,{className:"font-extrabold",children:"Meets Quick Logistics"})]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"MileTruth™ AI forecasts demand, protects promises, and coordinates every handoff from runway to doorstep."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard wings-hero-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["Doormile Wings",(0,t.jsx)("br",{}),(0,t.jsx)(n.ShimmerText,{className:"font-extrabold",children:"Same-Day Air"}),(0,t.jsx)("br",{className:"wings-mobile-break"})," ",(0,t.jsx)(n.ShimmerText,{className:"font-extrabold",children:"Logistics"})]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Linking India's major regional capitals with AI-powered air movement and zero-emission EV last-mile delivery."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:l,"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:l,"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center",gap:"10px"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>s(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>s(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})})]})}])},63061,e=>{"use strict";var t=e.i(43476),r=e.i(71645),i=e.i(89970),n=e.i(83495),a=/[achlmqstvz]|(-?\d*\.?\d*(?:e[\-+]?\d+)?)[0-9]/ig,o=/(?:(-)?\d*\.?\d*(?:e[\-+]?\d+)?)[0-9]/ig,s=/[\+\-]?\d*\.?\d+e[\+\-]?\d+/ig,l=/(^[#\.][a-z]|[a-y][a-z])/i,d=Math.PI/180,c=180/Math.PI,p=Math.sin,h=Math.cos,g=Math.abs,m=Math.sqrt,u=Math.atan2,f=function(e){return"string"==typeof e},w=function(e){return"number"==typeof e},x={},b={},y=function(e){return Math.round((e+1e8)%1*1e5)/1e5||(e<0?0:1)},v=function(e){return Math.round(1e5*e)/1e5||0},j=function(e){return Math.round(1e10*e)/1e10||0},k=function(e){return e.closed=.001>Math.abs(e[0]-e[e.length-2])&&.001>Math.abs(e[1]-e[e.length-1])},N=function(e,t,r,i){var n=e[t],a=1===i?6:R(n,r,i);if((a||!i)&&a+r+2t){for(;--n&&e[n]>t;);n<0&&(n=0)}else for(;e[++n] element or an SVG path data string")}var z=function(e,t){var r,i=document.createElementNS("http://www.w3.org/2000/svg","path"),n=[].slice.call(e.attributes),a=n.length;for(t=","+t+",";--a>-1;)r=n[a].nodeName.toLowerCase(),0>t.indexOf(","+r+",")&&i.setAttributeNS(null,r,n[a].nodeValue);return i},P={rect:"rx,ry,x,y,width,height",circle:"r,cx,cy",ellipse:"rx,ry,cx,cy",line:"x1,x2,y1,y2"},T=function(e,t){for(var r=t?t.split(","):[],i={},n=r.length;--n>-1;)i[r[n]]=+e.getAttribute(r[n])||0;return i};function A(e,t,r){var i,n=e[t],a=e[t+2],o=e[t+4];return n+=(a-n)*r,a+=(o-a)*r,n+=(a-n)*r,i=a+(o+(e[t+6]-o)*r-a)*r-n,n=e[t+1],a=e[t+3],o=e[t+5],n+=(a-n)*r,a+=(o-a)*r,n+=(a-n)*r,v(u(a+(o+(e[t+7]-o)*r-a)*r-n,i)*c)}function I(e,t,r){var i=Math.max(0,~~(g((r=void 0===r?1:j(r)||0)-(t=j(t)||0))-1e-8)),n=function(e){for(var t=[],r=0;rr&&(t=1-t,r=1-r,L(n),n.totalLength=0),t<0||r<0){var a=Math.abs(~~Math.min(t,r))+1;t+=a,r+=a}n.totalLength||W(n);var o,s,l,d,c,p,h,m,u=r>1,f=H(n,t,x,!0),w=H(n,r,b),y=w.segment,v=f.segment,k=w.segIndex,_=f.segIndex,S=w.i,z=f.i,P=_===k,T=S===z&&P;if(u||i){for(o=k<_||P&&SMath.abs(1-(r-t))?k=_-1:!w.t&&k?k--:N(n,k,S,w.t)&&o&&_++,1===f.t&&(_=(_+1)%n.length),c=[],h=1+(p=n.length)*i,m=_,h+=(p-_+k)%p,d=0;dk)&&n.splice(d,1);else y.angle=A(y,S+l,0),S+=l,f=y[S],w=y[S+1],y.length=y.totalLength=0,y.totalPoints=n.totalPoints=8,y.push(f,w,f,w,f,w,f,w);return n.totalLength=0,n}function W(e,t){var r,i,n;for(n=r=i=0;ng(n)&&.01>g(d)&&g(o)+g(p)<.01)e.length>8&&(e.splice(i,6),i-=6,k-=6);else for(r=1;r<=v;r++)f=1-(w=j*r),s=l-(l=(w*w*n+3*f*(w*a+f*o))*w),(b=m((h=u-(u=(w*w*d+3*f*(w*c+f*p))*w))*h+s*s))=1)return 0;var i=e[t],n=e[t+1],a=e[t+2],o=e[t+3],s=e[t+4],l=e[t+5],d=e[t+6],c=e[t+7],p=i+(a-i)*r,h=a+(s-a)*r,g=n+(o-n)*r,m=o+(l-o)*r,u=p+(h-p)*r,f=g+(m-g)*r,w=s+(d-s)*r,x=l+(c-l)*r;return h+=(w-h)*r,m+=(x-m)*r,e.splice(t+2,4,v(p),v(g),v(u),v(f),v(u+(h-u)*r),v(f+(m-f)*r),v(h),v(m),v(w),v(x)),e.samples&&e.samples.splice(t/6*e.resolution|0,0,0,0,0,0,0,0),6}function H(e,t,r,i){r=r||{},e.totalLength||W(e),(t<0||t>1)&&(t=y(t));var n,a,o,s,l,d,c,p=0,h=e[0];if(t)if(1===t)c=1,p=e.length-1,d=(h=e[p]).length-8;else{if(e.length>1){for(o=e.totalLength*t,l=d=0;(l+=e[d++].totalLength)1)&&(t=y(t)),g.lookup||W(e),e.length>1){for(o=e.totalLength*t,l=d=0;(l+=e[d++].totalLength)=1?1-1e-9:c||1e-9):g.angle||0),m}function O(e,t,r,i,n,a,o){for(var s,l,d,c,p,h=e.length;--h>-1;)for(d=0,l=(s=e[h]).length;d-1e-4?0:t}).match(a)||[],_=[],L=0,M=0,C=2/3,S=N.length,z=0,P="ERROR: malformed path: "+e,T=function(e,t,r,i){w=(r-e)/3,x=(i-t)/3,c.push(e+w,t+x,r-w,i-x,r,i)};if(!e||!isNaN(N[0])||isNaN(N[1]))return console.log(P),_;for(t=0;t.5||g(M-n)>.5)&&(T(L,M,i,n),"L"===o&&(t+=2)),L=i,M=n;else if("A"===o){if(v=N[t+4],j=N[t+5],w=N[t+6],x=N[t+7],r=7,v.length>1&&(v.length<3?(x=w,w=j,r--):(x=j,w=v.substr(2),r-=2),j=v.charAt(1),v=v.charAt(0)),b=function(e,t,r,i,n,a,o,s,l){if(e!==s||t!==l){r=g(r),i=g(i);var c=n%360*d,u=h(c),f=p(c),w=Math.PI,x=2*w,b=(e-s)/2,y=(t-l)/2,v=u*b+f*y,j=-f*b+u*y,k=v*v,N=j*j,_=k/(r*r)+N/(i*i);_>1&&(r=m(_)*r,i=m(_)*i);var L=r*r,M=i*i,C=(L*M-L*N-M*k)/(L*N+M*k);C<0&&(C=0);var S=(a===o?-1:1)*m(C),z=r*j/i*S,P=-(i*v/r*S),T=(e+s)/2+(u*z-f*P),A=(t+l)/2+(f*z+u*P),I=(v-z)/r,W=(j-P)/i,R=(-v-z)/r,H=(-j-P)/i,B=I*I+W*W,O=(W<0?-1:1)*Math.acos(I/m(B)),E=(I*H-W*R<0?-1:1)*Math.acos((I*R+W*H)/m(B*(R*R+H*H)));isNaN(E)&&(E=w),!o&&E>0?E-=x:o&&E<0&&(E+=x),O%=x;var D,G=Math.ceil(g(E%=x)/(x/4)),F=[],$=E/G,V=4/3*p($/2)/(1+h($/2)),Y=u*r,q=f*r,X=-(f*i),Z=u*i;for(D=0;Dg(e[0]-e[2])&&1e-4>g(e[1]-e[3])&&(e=e.slice(2));var r,i,n,a,o,s,l,d,c,p,h,u,f,w,x,b=e.length-2,y=+e[0],j=+e[1],k=+e[2],N=+e[3],_=[y,j,y,j],L=k-y,M=N-j,C=e.nonSmooth||[],S=.001>Math.abs(e[b]-y)&&.001>Math.abs(e[b+1]-j);if(!b)return[y,j,y,j,y,j,y,j];for(S&&(e.push(k,N),k=y,N=j,y=e[b-2],j=e[b-1],e.unshift(y,j),b+=4,C=[0,0].concat(C)),t=t||0===t?+t:1,n=2;n1?eo(i):i.getItem(0).matrix:Z).a*n.x+i.c*n.y,o=i.b*n.x+i.d*n.y):(i=new ec,a=o=0),t&&"g"===e.tagName.toLowerCase()&&(a=o=0),(d||!e.getBoundingClientRect().width?l:p).appendChild(r),r.setAttribute("transform","matrix("+i.a+","+i.b+","+i.c+","+i.d+","+(i.e+a)+","+(i.f+o)+")");else{if(a=o=0,K)for(i=e.offsetParent,n=e;n&&(n=n.parentNode)&&n!==i&&n.parentNode;)($.getComputedStyle(n)[Q]+"").length>4&&(a=n.offsetLeft,o=n.offsetTop,n=0);if("absolute"!==(s=$.getComputedStyle(e)).position&&"fixed"!==s.position)for(i=e.offsetParent;p&&p!==i;)a+=p.scrollLeft||0,o+=p.scrollTop||0,p=p.parentNode;(n=r.style).top=e.offsetTop-o+"px",n.left=e.offsetLeft-a+"px",n[Q]=s[Q],n[J]=s[J],n.position="fixed"===s.position?"fixed":"absolute",h.appendChild(r)}return r},ed=function(e,t,r,i,n,a,o){return e.a=t,e.b=r,e.c=i,e.d=n,e.e=a,e.f=o,e},ec=function(){function e(e,t,r,i,n,a){void 0===e&&(e=1),void 0===t&&(t=0),void 0===r&&(r=0),void 0===i&&(i=1),void 0===n&&(n=0),void 0===a&&(a=0),ed(this,e,t,r,i,n,a)}var t=e.prototype;return t.inverse=function(){var e=this.a,t=this.b,r=this.c,i=this.d,n=this.e,a=this.f,o=e*i-t*r||1e-10;return ed(this,i/o,-t/o,-r/o,e/o,(r*a-i*n)/o,-(e*a-t*n)/o)},t.multiply=function(e){var t=this.a,r=this.b,i=this.c,n=this.d,a=this.e,o=this.f,s=e.a,l=e.c,d=e.b,c=e.d,p=e.e,h=e.f;return ed(this,s*t+d*i,s*r+d*n,l*t+c*i,l*r+c*n,a+p*t+h*i,o+p*r+h*n)},t.clone=function(){return new e(this.a,this.b,this.c,this.d,this.e,this.f)},t.equals=function(e){var t=this.a,r=this.b,i=this.c,n=this.d,a=this.e,o=this.f;return t===e.a&&r===e.b&&i===e.c&&n===e.d&&a===e.e&&o===e.f},t.apply=function(e,t){void 0===t&&(t={});var r=e.x,i=e.y,n=this.a,a=this.b,o=this.c,s=this.d,l=this.e,d=this.f;return t.x=r*n+i*o+l||0,t.y=r*a+i*s+d||0,t},e}();function ep(e,t,r,i){if(!e||!e.parentNode||(F||ee(e)).documentElement===e)return new ec;var n=et(e),a=en(e)?er:ei,o=el(e,r),s=a[0].getBoundingClientRect(),l=a[1].getBoundingClientRect(),d=a[2].getBoundingClientRect(),c=o.parentNode,p=!i&&function e(t){return"fixed"===$.getComputedStyle(t).position||((t=t.parentNode)&&1===t.nodeType?e(t):void 0)}(e),h=new ec((l.left-s.left)/100,(l.top-s.top)/100,(d.left-s.left)/100,(d.top-s.top)/100,s.left+(p?0:$.pageXOffset||F.scrollLeft||V.scrollLeft||Y.scrollLeft||0),s.top+(p?0:$.pageYOffset||F.scrollTop||V.scrollTop||Y.scrollTop||0));if(c.removeChild(o),n)for(s=n.length;s--;)(l=n[s]).scaleX=l.scaleY=0,l.renderTransform(1,l);return t?h.inverse():h}var eh,eg,em,eu,ef,ew,ex="x,translateX,left,marginLeft,xPercent".split(","),eb="y,translateY,top,marginTop,yPercent".split(","),ey=Math.PI/180,ev=function(e,t,r,i){for(var n=t.length,a=2===i?0:i,o=0;ol.indexOf(",")?l:r,c=e._pt=new eg(e._pt,t,d,0,0,e_,0,o.set(t,d,e));c.u=em(o.get(t,d,a))||0,c.path=i,c.pp=n,e._props.push(d)},eP={version:"3.15.0",name:"motionPath",register:function(e,t,r){em=(eh=e).utils.getUnit,eu=eh.utils.toArray,ef=eh.core.getStyleSaver,ew=eh.core.reverting||function(){},eg=r},init:function(e,t,r){if(!eh)return console.warn("Please gsap.registerPlugin(MotionPathPlugin)"),!1;"object"==typeof t&&!t.style&&t.path||(t={path:t});var i,n,a,o,s=[],l=t,d=l.path,c=l.autoRotate,p=l.unitX,h=l.unitY,g=l.x,m=l.y,u=d[0],f=(i=t.start,n="end"in t?t.end:1,function(e){return i||1!==n?I(e,i,n):e});if(this.rawPaths=s,this.target=e,this.tween=r,this.styles=ef&&ef(e,"transform"),(this.rotate=c||0===c)&&(this.rOffset=parseFloat(c)||0,this.radians=!!t.useRadians,this.rProp=t.rotation||"rotation",this.rSet=e._gsap.set(e,this.rProp,this),this.ru=em(e._gsap.get(e,this.rProp))||0),!Array.isArray(d)||"closed"in d||"number"==typeof u)W(a=f(eS(S(t.path),e,t)),t.resolution),s.push(a),ez(this,e,t.x||"x",a,"x",t.unitX||"px"),ez(this,e,t.y||"y",a,"y",t.unitY||"px");else{for(o in u)!g&&~ex.indexOf(o)?g=o:!m&&~eb.indexOf(o)&&(m=o);for(o in g&&m?s.push(eN(this,ev(ev([],d,g,0),d,m,1),e,g,m,f,t,p||em(d[0][g]),h||em(d[0][m]))):g=m=0,u)o!==g&&o!==m&&s.push(eN(this,ev([],d,o,2),e,o,0,f,t,em(d[0][o])))}r.vars.immediateRender&&this.render(r.progress(),this)},render:function(e,t){var r=t.rawPaths,i=r.length,n=t._pt;if(t.tween._time||!ew()){for(e>1?e=1:e<0&&(e=0);i--;)B(r[i],e,!i&&t.rotate,r[i]);for(;n;)n.set(n.t,n.p,n.path[n.pp]+n.u,n.d,e),n=n._next;t.rotate&&t.rSet(t.target,t.rProp,r[0].angle*(t.radians?ey:1)+t.rOffset+t.ru,t,e)}else t.styles.revert()},getLength:function(e){return W(S(e)).totalLength},sliceRawPath:I,getRawPath:S,pointsToSegment:D,stringToRawPath:E,rawPathToString:G,transformRawPath:O,getGlobalMatrix:ep,getPositionOnPath:B,cacheRawPathMeasurements:W,convertToPath:function(e,t){return eu(e).map(function(e){var r,i,n,a,s,l,d,c,p,h,g,m,u,f,w,x,b,y,v,j,k,N,_,L;return r=!1!==t,"path"!==(L=e.tagName.toLowerCase())&&e.getBBox?(d=z(e,"x,y,width,height,cx,cy,rx,ry,r,x1,x2,y1,y2,points"),_=T(e,P[L]),"rect"===L?(s=_.rx,l=_.ry||s,n=_.x,a=_.y,g=_.width-2*s,m=_.height-2*l,s||l?(u=n+.44771525016900005*s,x=(w=(f=n+s)+g)+.552284749831*s,b=w+s,y=a+.44771525016900005*l,k=(j=(v=a+l)+m)+.552284749831*l,N=j+l,i="M"+b+","+v+" V"+j+" C"+[b,k,x,N,w,N,w-(w-f)/3,N,f+(w-f)/3,N,f,N,u,N,n,k,n,j,n,j-(j-v)/3,n,v+(j-v)/3,n,v,n,y,u,a,f,a,f+(w-f)/3,a,w-(w-f)/3,a,w,a,x,a,b,y,b,v].join(",")+"z"):i="M"+(n+g)+","+a+" v"+m+" h"+-g+" v"+-m+" h"+g+"z"):"circle"===L||"ellipse"===L?("circle"===L?p=.552284749831*(s=l=_.r):(s=_.rx,p=.552284749831*(l=_.ry)),n=_.cx,a=_.cy,c=.552284749831*s,i="M"+(n+s)+","+a+" C"+[n+s,a+p,n+c,a+l,n,a+l,n-c,a+l,n-s,a+p,n-s,a,n-s,a-p,n-c,a-l,n,a-l,n+c,a-l,n+s,a-p,n+s,a].join(",")+"z"):"line"===L?i="M"+_.x1+","+_.y1+" L"+_.x2+","+_.y2:("polyline"===L||"polygon"===L)&&(i="M"+(n=(h=(e.getAttribute("points")+"").match(o)||[]).shift())+","+(a=h.shift())+" L"+h.join(","),"polygon"===L&&(i+=","+n+","+a+"z")),d.setAttribute("d",G(d._gsRawPath=E(i))),r&&e.parentNode&&(e.parentNode.insertBefore(d,e),e.parentNode.removeChild(e)),d):e})},convertCoordinates:function(e,t,r){var i=ep(t,!0,!0).multiply(ep(e));return r?i.apply(r):i},getAlignMatrix:eC,getRelativePosition:function(e,t,r,i){var n=eC(e,t,r,i);return{x:n.e,y:n.f}},arrayToRawPath:function(e,t){var r=ev(ev([],e,(t=t||{}).x||"x",0),e,t.y||"y",1);return t.relative&&ek(r),["cubic"===t.type?r:D(r,t.curviness)]}};(eh||"u">typeof window&&(eh=window.gsap)&&eh.registerPlugin&&eh)&&eh.registerPlugin(eP);var eT,eA,eI,eW,eR,eH,eB,eO,eE=function(){return"u">typeof window},eD=function(){return eT||eE()&&(eT=window.gsap)&&eT.registerPlugin&&eT},eG=/[-+=\.]*\d+[\.e\-\+]*\d*[e\-\+]*\d*/gi,eF={rect:["width","height"],circle:["r","r"],ellipse:["rx","ry"],line:["x2","y2"]},e$=function(e){return Math.round(1e4*e)/1e4},eV=function(e){return parseFloat(e)||0},eY=function(e,t){var r=eV(e);return~e.indexOf("%")?r/100*t:r},eq=function(e,t){return eV(e.getAttribute(t))},eX=Math.sqrt,eZ=function(e,t,r,i,n,a){return eX(Math.pow((eV(r)-eV(e))*n,2)+Math.pow((eV(i)-eV(t))*a,2))},eU=function(e){return console.warn(e)},eK=function(e){return"non-scaling-stroke"===e.getAttribute("vector-effect")},eQ=function(e,t,r){var i,n,a=e.indexOf(" ");return a<0?(i=void 0!==r?r+"":e,n=e):(i=e.substr(0,a),n=e.substr(a+1)),(i=eY(i,t))>(n=eY(n,t))?[n,i]:[i,n]},eJ=function(e){if(!(e=eA(e)[0]))return 0;var t,r,i,n,a,o,s,l=e.tagName.toLowerCase(),d=e.style,c=1,p=1;eK(e)&&(c=eX((p=e.getScreenCTM()).a*p.a+p.b*p.b),p=eX(p.d*p.d+p.c*p.c));try{r=e.getBBox()}catch(e){eU("Some browsers won't measure invisible elements (like display:none or masks inside defs).")}var h=r||{x:0,y:0,width:0,height:0},g=h.x,m=h.y,u=h.width,f=h.height;if(r&&(u||f)||!eF[l]||(u=eq(e,eF[l][0]),f=eq(e,eF[l][1]),"rect"!==l&&"line"!==l&&(u*=2,f*=2),"line"===l&&(g=eq(e,"x1"),m=eq(e,"y1"),u=Math.abs(u-g),f=Math.abs(f-m))),"path"===l)n=d.strokeDasharray,d.strokeDasharray="none",t=e.getTotalLength()||0,e$(c)!==e$(p)&&!eH&&(eH=1)&&eU("Warning: length cannot be measured when vector-effect is non-scaling-stroke and the element isn't proportionally scaled."),t*=(c+p)/2,d.strokeDasharray=n;else if("rect"===l)t=2*u*c+2*f*p;else if("line"===l)t=eZ(g,m,g+u,m+f,c,p);else if("polyline"===l||"polygon"===l)for(i=e.getAttribute("points").match(eG)||[],"polygon"===l&&i.push(i[0],i[1]),t=0,a=2;at&&(i=t),[-n||0,i-n||0]},e1=function(){eE()&&(document,eI=window,eR=eT=eD(),eA=eT.utils.toArray,eB=eT.core.getStyleSaver,eO=eT.core.reverting||function(){},eW=-1!==((eI.navigator||{}).userAgent||"").indexOf("Edge"))},e2={version:"3.15.0",name:"drawSVG",register:function(e){eT=e,e1()},init:function(e,t,r,i,n){if(!e.getBBox)return!1;eR||e1();var a,o,s,l=eJ(e);return this.styles=eB&&eB(e,"strokeDashoffset,strokeDasharray,strokeMiterlimit"),this.tween=r,this._style=e.style,this._target=e,t+""=="true"?t="0 100%":t?-1===(t+"").indexOf(" ")&&(t="0 "+t):t="0 0",a=e0(e,l),o=eQ(t,l,a[0]),this._length=e$(l),this._dash=e$(a[1]-a[0]),this._offset=e$(-a[0]),this._dashPT=this.add(this,"_dash",this._dash,e$(o[1]-o[0]),0,0,0,0,0,1),this._offsetPT=this.add(this,"_offset",this._offset,e$(-o[0]),0,0,0,0,0,1),eW&&(s=eI.getComputedStyle(e)).strokeLinecap!==s.strokeLinejoin&&(o=eV(s.strokeMiterlimit),this.add(e.style,"strokeMiterlimit",o,o+.01)),this._live=eK(e)||~(t+"").indexOf("live"),this._nowrap=~(t+"").indexOf("nowrap"),this._props.push("drawSVG"),1},render:function(e,t){if(t.tween._time||!eO()){var r,i,n,a,o=t._pt,s=t._style;if(o){for(t._live&&(r=eJ(t._target))!==t._length&&(i=r/t._length,t._length=r,t._offsetPT&&(t._offsetPT.s*=i,t._offsetPT.c*=i),t._dashPT?(t._dashPT.s*=i,t._dashPT.c*=i):t._dash*=i);o;)o.r(e,o.d),o=o._next;n=t._dash||e&&1!==e&&1e-4||0,r=t._length-n+.1,a=t._offset,n&&a&&n+Math.abs(a%t._length)>t._length-.05&&(a+=a<0?.005:-.005)&&(r+=.005),s.strokeDashoffset=n?a:a+.001,s.strokeDasharray=r<.1?"none":n?n+"px,"+(t._nowrap?999999:r)+"px":"0px, 999999px"}}else t.styles.revert()},getLength:eJ,getPosition:e0};eD()&&eT.registerPlugin(e2);var e5=e.i(2018);let e4=!1;i.default.registerPlugin(n.ScrollTrigger,eP);try{i.default.registerPlugin(e2),e4=!0}catch{e4=!1}let e3=[{title:"Same-Day Air Logistics",desc:"Max 3-hour door-to-door delivery between India's major regional capitals.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("circle",{cx:"12",cy:"12",r:"10"}),(0,t.jsx)("polyline",{points:"12 6 12 12 16 14"})]})},{title:"AI-Powered Operations",desc:"MileTruth™ AI continuously forecasts demand and optimizes every route and load.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("rect",{x:"4",y:"4",width:"16",height:"16",rx:"3"}),(0,t.jsx)("path",{d:"M9 9h6v6H9z"}),(0,t.jsx)("path",{d:"M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3"})]})},{title:"Regional Connectivity",desc:"Dedicated air capacity linking major economic hubs, not passenger-belly space.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("circle",{cx:"6",cy:"6",r:"2.5"}),(0,t.jsx)("circle",{cx:"18",cy:"6",r:"2.5"}),(0,t.jsx)("circle",{cx:"12",cy:"18",r:"2.5"}),(0,t.jsx)("path",{d:"M8.2 7.2 10 16M15.8 7.2 14 16M8.5 6h7"})]})},{title:"EV Last Mile",desc:"Zero-emission electric vehicles complete every first- and final-mile delivery.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("path",{d:"M3 13h13l3 4h2v3H3z"}),(0,t.jsx)("circle",{cx:"7",cy:"20",r:"1.6"}),(0,t.jsx)("circle",{cx:"16",cy:"20",r:"1.6"}),(0,t.jsx)("path",{d:"M6 13V8a1 1 0 0 1 1-1h5l3 6"})]})}];function e6(e,t){if(e.length<2||t<=0)return e;let r=[e[0]];for(let i=0;i{let t,r,g=e.current,m=a.current,u=o.current,f=s.current,w=l.current,x=d.current,b=c.current;if(!g||!m||!u||!f||!w||!x||!b)return;let y=0,v=0,j=null,k=i.default.context(()=>{let e=window.matchMedia("(prefers-reduced-motion: reduce)").matches,a=()=>{let e,t=g.getBoundingClientRect(),r=window.matchMedia("(max-width: 600px)").matches,i=p.current.map((e,i)=>{let n=h.current[i];if(!e||!n)return null;let a=e.getBoundingClientRect(),o=n.getBoundingClientRect(),s=a.top-t.top,l=a.bottom-t.top,d=a.left-t.left,c=a.right-t.left;return r?{x:12,y:o.top+o.height/2-t.top,top:s,bottom:l,left:d,right:c}:{x:o.left+o.width/2-t.left,y:a.top-t.top-14,top:s,bottom:l,left:d,right:c}}).filter(e=>null!==e),n=i.map(({x:e,y:t})=>({x:e,y:t}));m.setAttribute("width",String(t.width)),m.setAttribute("height",String(t.height)),m.setAttribute("viewBox",`0 0 ${t.width} ${t.height}`);let a=r?0:Math.max(20,Math.min(38,t.width/20));if(r)e=n;else{let t,r,o=function(e){let t=[];for(let r of e){let e=t[t.length-1];e&&12>=Math.abs(e[0].top-r.top)?e.push(r):t.push([r])}return t}(i);e=o.length<=1?e6(n,a):(t=[],r=null,o.forEach((e,i)=>{let n=i%2==0?e:[...e].reverse(),s=n[0].y,l=null===r?a:Math.max(0,Math.min(a,(s-r-6)/1.43)),d=e6(n.map(({x:e,y:t})=>({x:e,y:t})),l);if(t.length>0){var c,p;let e,r=t[t.length-1],n=d[0],a=(c=o[i-1],p=(i-1)%2==0?"right":"left",(e=[...c].sort((e,t)=>e.left-t.left)).length<2?(e[0].left+e[0].right)/2:"right"===p?(e[e.length-2].right+e[e.length-1].left)/2:(e[0].right+e[1].left)/2);t.push({x:a,y:r.y},{x:a,y:n.y})}t.push(...d),r=Math.max(...e.map(e=>e.bottom))}),t)}let o=function(e){if(e.length<2)return"";let t=`M ${e[0].x} ${e[0].y}`;for(let r=0;r{cancelAnimationFrame(y),y=requestAnimationFrame(()=>{e?a():o()})})).observe(g),a(),v=requestAnimationFrame(()=>{a(),n.ScrollTrigger.refresh()}),"complete"!==document.readyState&&(r=()=>n.ScrollTrigger.refresh(),window.addEventListener("load",r,{once:!0}));let o=()=>{j&&j.kill();let{points:e,isMobile:t}=a();if(e.length<2)return;let r=u.getTotalLength(),n=.22*r,o=r+200;f.setAttribute("stroke-dasharray",`${n} ${o}`);let s=e.map(e=>{let t=0,i=1/0,n=Math.max(2,r/400);for(let a=0;a<=r;a+=n){let r=u.getPointAtLength(a),n=(r.x-e.x)**2+(r.y-e.y)**2;n!1),d=0,c=!1,m=i.default.timeline({scrollTrigger:{trigger:g,start:"top 75%",end:"bottom 35%",scrub:1}});j=m;e4?m.to(u,{drawSVG:"100%",duration:4.680000000000001,ease:"power2.inOut"},0):(i.default.set(u,{strokeDasharray:r,strokeDashoffset:r}),m.to(u,{strokeDashoffset:0,duration:4.680000000000001,ease:"power2.inOut"},0)),m.to(u,{opacity:t?.15:.18,duration:.9,ease:"sine.out"},0),i.default.set([x,b],{svgOrigin:"0 0"}),m.to(w,{opacity:1,duration:.3,ease:"sine.out"},0),m.to(f,{opacity:1,duration:.4,ease:"sine.out"},0),m.to(w,{motionPath:{path:u,autoRotate:!1,alignOrigin:[.5,.5]},duration:5.2,ease:"power2.inOut",onUpdate:function(){let e=this.progress(),t=e*r,a=Math.max(1,.01*r),o=u.getPointAtLength(Math.max(0,t-a)),g=u.getPointAtLength(Math.min(r,t+a)),m=180*Math.atan2(g.y-o.y,g.x-o.x)/Math.PI+90;if(c){let e=m-d;d+=.12*(e=((e+180)%360+360)%360-180)}else d=m,c=!0;i.default.set(x,{rotation:d}),i.default.set(b,{rotation:d}),f.setAttribute("stroke-dashoffset",String(n-t)),s.forEach((t,r)=>{if(!l[r]&&e>=t){let e,t;l[r]=!0,e=p.current[r],t=h.current[r],e&&(e.classList.add("wwg-card-flown","wwg-card-pulse"),t&&i.default.timeline({delay:.28}).to(t,{scale:1.02,duration:.32,ease:"expo.out"}).to(t,{scale:1,duration:.32,ease:"sine.inOut"}),i.default.delayedCall(.95,()=>e.classList.remove("wwg-card-pulse")))}else l[r]&&e{t?.disconnect(),cancelAnimationFrame(y),cancelAnimationFrame(v),cancelAnimationFrame(0),r&&window.removeEventListener("load",r),j?.kill(),k.revert()}},[]),(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` + `}}),(0,t.jsx)("div",{className:"wings-hero-page elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",ref:o,children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden",height:"800px"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard wings-hero-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["Where Quick Commerce",(0,t.jsx)("br",{}),(0,t.jsx)(n.ShimmerText,{className:"font-extrabold",children:"Meets Quick Logistics"})]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"MileTruth™ AI forecasts demand, protects promises, and coordinates every handoff from runway to doorstep."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard wings-hero-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["Doormile Wings",(0,t.jsx)("br",{}),(0,t.jsx)(n.ShimmerText,{className:"font-extrabold",children:"Same-Day Air"}),(0,t.jsx)("br",{className:"wings-mobile-break"})," ",(0,t.jsx)(n.ShimmerText,{className:"font-extrabold",children:"Logistics"})]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Linking India's major regional capitals with AI-powered air movement and zero-emission EV last-mile delivery."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:l,"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:l,"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center",gap:"10px"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>s(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>s(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})})]})}])},63061,e=>{"use strict";var t=e.i(43476),r=e.i(71645),i=e.i(89970),n=e.i(83495),a=/[achlmqstvz]|(-?\d*\.?\d*(?:e[\-+]?\d+)?)[0-9]/ig,o=/(?:(-)?\d*\.?\d*(?:e[\-+]?\d+)?)[0-9]/ig,s=/[\+\-]?\d*\.?\d+e[\+\-]?\d+/ig,l=/(^[#\.][a-z]|[a-y][a-z])/i,d=Math.PI/180,c=180/Math.PI,p=Math.sin,h=Math.cos,g=Math.abs,m=Math.sqrt,u=Math.atan2,f=function(e){return"string"==typeof e},w=function(e){return"number"==typeof e},x={},b={},y=function(e){return Math.round((e+1e8)%1*1e5)/1e5||(e<0?0:1)},v=function(e){return Math.round(1e5*e)/1e5||0},j=function(e){return Math.round(1e10*e)/1e10||0},k=function(e){return e.closed=.001>Math.abs(e[0]-e[e.length-2])&&.001>Math.abs(e[1]-e[e.length-1])},N=function(e,t,r,i){var n=e[t],a=1===i?6:R(n,r,i);if((a||!i)&&a+r+2t){for(;--n&&e[n]>t;);n<0&&(n=0)}else for(;e[++n] element or an SVG path data string")}var z=function(e,t){var r,i=document.createElementNS("http://www.w3.org/2000/svg","path"),n=[].slice.call(e.attributes),a=n.length;for(t=","+t+",";--a>-1;)r=n[a].nodeName.toLowerCase(),0>t.indexOf(","+r+",")&&i.setAttributeNS(null,r,n[a].nodeValue);return i},P={rect:"rx,ry,x,y,width,height",circle:"r,cx,cy",ellipse:"rx,ry,cx,cy",line:"x1,x2,y1,y2"},T=function(e,t){for(var r=t?t.split(","):[],i={},n=r.length;--n>-1;)i[r[n]]=+e.getAttribute(r[n])||0;return i};function A(e,t,r){var i,n=e[t],a=e[t+2],o=e[t+4];return n+=(a-n)*r,a+=(o-a)*r,n+=(a-n)*r,i=a+(o+(e[t+6]-o)*r-a)*r-n,n=e[t+1],a=e[t+3],o=e[t+5],n+=(a-n)*r,a+=(o-a)*r,n+=(a-n)*r,v(u(a+(o+(e[t+7]-o)*r-a)*r-n,i)*c)}function I(e,t,r){var i=Math.max(0,~~(g((r=void 0===r?1:j(r)||0)-(t=j(t)||0))-1e-8)),n=function(e){for(var t=[],r=0;rr&&(t=1-t,r=1-r,L(n),n.totalLength=0),t<0||r<0){var a=Math.abs(~~Math.min(t,r))+1;t+=a,r+=a}n.totalLength||W(n);var o,s,l,d,c,p,h,m,u=r>1,f=H(n,t,x,!0),w=H(n,r,b),y=w.segment,v=f.segment,k=w.segIndex,_=f.segIndex,S=w.i,z=f.i,P=_===k,T=S===z&&P;if(u||i){for(o=k<_||P&&SMath.abs(1-(r-t))?k=_-1:!w.t&&k?k--:N(n,k,S,w.t)&&o&&_++,1===f.t&&(_=(_+1)%n.length),c=[],h=1+(p=n.length)*i,m=_,h+=(p-_+k)%p,d=0;dk)&&n.splice(d,1);else y.angle=A(y,S+l,0),S+=l,f=y[S],w=y[S+1],y.length=y.totalLength=0,y.totalPoints=n.totalPoints=8,y.push(f,w,f,w,f,w,f,w);return n.totalLength=0,n}function W(e,t){var r,i,n;for(n=r=i=0;ng(n)&&.01>g(d)&&g(o)+g(p)<.01)e.length>8&&(e.splice(i,6),i-=6,k-=6);else for(r=1;r<=v;r++)f=1-(w=j*r),s=l-(l=(w*w*n+3*f*(w*a+f*o))*w),(b=m((h=u-(u=(w*w*d+3*f*(w*c+f*p))*w))*h+s*s))=1)return 0;var i=e[t],n=e[t+1],a=e[t+2],o=e[t+3],s=e[t+4],l=e[t+5],d=e[t+6],c=e[t+7],p=i+(a-i)*r,h=a+(s-a)*r,g=n+(o-n)*r,m=o+(l-o)*r,u=p+(h-p)*r,f=g+(m-g)*r,w=s+(d-s)*r,x=l+(c-l)*r;return h+=(w-h)*r,m+=(x-m)*r,e.splice(t+2,4,v(p),v(g),v(u),v(f),v(u+(h-u)*r),v(f+(m-f)*r),v(h),v(m),v(w),v(x)),e.samples&&e.samples.splice(t/6*e.resolution|0,0,0,0,0,0,0,0),6}function H(e,t,r,i){r=r||{},e.totalLength||W(e),(t<0||t>1)&&(t=y(t));var n,a,o,s,l,d,c,p=0,h=e[0];if(t)if(1===t)c=1,p=e.length-1,d=(h=e[p]).length-8;else{if(e.length>1){for(o=e.totalLength*t,l=d=0;(l+=e[d++].totalLength)1)&&(t=y(t)),g.lookup||W(e),e.length>1){for(o=e.totalLength*t,l=d=0;(l+=e[d++].totalLength)=1?1-1e-9:c||1e-9):g.angle||0),m}function O(e,t,r,i,n,a,o){for(var s,l,d,c,p,h=e.length;--h>-1;)for(d=0,l=(s=e[h]).length;d-1e-4?0:t}).match(a)||[],_=[],L=0,M=0,C=2/3,S=N.length,z=0,P="ERROR: malformed path: "+e,T=function(e,t,r,i){w=(r-e)/3,x=(i-t)/3,c.push(e+w,t+x,r-w,i-x,r,i)};if(!e||!isNaN(N[0])||isNaN(N[1]))return console.log(P),_;for(t=0;t.5||g(M-n)>.5)&&(T(L,M,i,n),"L"===o&&(t+=2)),L=i,M=n;else if("A"===o){if(v=N[t+4],j=N[t+5],w=N[t+6],x=N[t+7],r=7,v.length>1&&(v.length<3?(x=w,w=j,r--):(x=j,w=v.substr(2),r-=2),j=v.charAt(1),v=v.charAt(0)),b=function(e,t,r,i,n,a,o,s,l){if(e!==s||t!==l){r=g(r),i=g(i);var c=n%360*d,u=h(c),f=p(c),w=Math.PI,x=2*w,b=(e-s)/2,y=(t-l)/2,v=u*b+f*y,j=-f*b+u*y,k=v*v,N=j*j,_=k/(r*r)+N/(i*i);_>1&&(r=m(_)*r,i=m(_)*i);var L=r*r,M=i*i,C=(L*M-L*N-M*k)/(L*N+M*k);C<0&&(C=0);var S=(a===o?-1:1)*m(C),z=r*j/i*S,P=-(i*v/r*S),T=(e+s)/2+(u*z-f*P),A=(t+l)/2+(f*z+u*P),I=(v-z)/r,W=(j-P)/i,R=(-v-z)/r,H=(-j-P)/i,B=I*I+W*W,O=(W<0?-1:1)*Math.acos(I/m(B)),E=(I*H-W*R<0?-1:1)*Math.acos((I*R+W*H)/m(B*(R*R+H*H)));isNaN(E)&&(E=w),!o&&E>0?E-=x:o&&E<0&&(E+=x),O%=x;var D,G=Math.ceil(g(E%=x)/(x/4)),F=[],$=E/G,V=4/3*p($/2)/(1+h($/2)),Y=u*r,q=f*r,X=-(f*i),Z=u*i;for(D=0;Dg(e[0]-e[2])&&1e-4>g(e[1]-e[3])&&(e=e.slice(2));var r,i,n,a,o,s,l,d,c,p,h,u,f,w,x,b=e.length-2,y=+e[0],j=+e[1],k=+e[2],N=+e[3],_=[y,j,y,j],L=k-y,M=N-j,C=e.nonSmooth||[],S=.001>Math.abs(e[b]-y)&&.001>Math.abs(e[b+1]-j);if(!b)return[y,j,y,j,y,j,y,j];for(S&&(e.push(k,N),k=y,N=j,y=e[b-2],j=e[b-1],e.unshift(y,j),b+=4,C=[0,0].concat(C)),t=t||0===t?+t:1,n=2;n1?eo(i):i.getItem(0).matrix:Z).a*n.x+i.c*n.y,o=i.b*n.x+i.d*n.y):(i=new ec,a=o=0),t&&"g"===e.tagName.toLowerCase()&&(a=o=0),(d||!e.getBoundingClientRect().width?l:p).appendChild(r),r.setAttribute("transform","matrix("+i.a+","+i.b+","+i.c+","+i.d+","+(i.e+a)+","+(i.f+o)+")");else{if(a=o=0,K)for(i=e.offsetParent,n=e;n&&(n=n.parentNode)&&n!==i&&n.parentNode;)($.getComputedStyle(n)[Q]+"").length>4&&(a=n.offsetLeft,o=n.offsetTop,n=0);if("absolute"!==(s=$.getComputedStyle(e)).position&&"fixed"!==s.position)for(i=e.offsetParent;p&&p!==i;)a+=p.scrollLeft||0,o+=p.scrollTop||0,p=p.parentNode;(n=r.style).top=e.offsetTop-o+"px",n.left=e.offsetLeft-a+"px",n[Q]=s[Q],n[J]=s[J],n.position="fixed"===s.position?"fixed":"absolute",h.appendChild(r)}return r},ed=function(e,t,r,i,n,a,o){return e.a=t,e.b=r,e.c=i,e.d=n,e.e=a,e.f=o,e},ec=function(){function e(e,t,r,i,n,a){void 0===e&&(e=1),void 0===t&&(t=0),void 0===r&&(r=0),void 0===i&&(i=1),void 0===n&&(n=0),void 0===a&&(a=0),ed(this,e,t,r,i,n,a)}var t=e.prototype;return t.inverse=function(){var e=this.a,t=this.b,r=this.c,i=this.d,n=this.e,a=this.f,o=e*i-t*r||1e-10;return ed(this,i/o,-t/o,-r/o,e/o,(r*a-i*n)/o,-(e*a-t*n)/o)},t.multiply=function(e){var t=this.a,r=this.b,i=this.c,n=this.d,a=this.e,o=this.f,s=e.a,l=e.c,d=e.b,c=e.d,p=e.e,h=e.f;return ed(this,s*t+d*i,s*r+d*n,l*t+c*i,l*r+c*n,a+p*t+h*i,o+p*r+h*n)},t.clone=function(){return new e(this.a,this.b,this.c,this.d,this.e,this.f)},t.equals=function(e){var t=this.a,r=this.b,i=this.c,n=this.d,a=this.e,o=this.f;return t===e.a&&r===e.b&&i===e.c&&n===e.d&&a===e.e&&o===e.f},t.apply=function(e,t){void 0===t&&(t={});var r=e.x,i=e.y,n=this.a,a=this.b,o=this.c,s=this.d,l=this.e,d=this.f;return t.x=r*n+i*o+l||0,t.y=r*a+i*s+d||0,t},e}();function ep(e,t,r,i){if(!e||!e.parentNode||(F||ee(e)).documentElement===e)return new ec;var n=et(e),a=en(e)?er:ei,o=el(e,r),s=a[0].getBoundingClientRect(),l=a[1].getBoundingClientRect(),d=a[2].getBoundingClientRect(),c=o.parentNode,p=!i&&function e(t){return"fixed"===$.getComputedStyle(t).position||((t=t.parentNode)&&1===t.nodeType?e(t):void 0)}(e),h=new ec((l.left-s.left)/100,(l.top-s.top)/100,(d.left-s.left)/100,(d.top-s.top)/100,s.left+(p?0:$.pageXOffset||F.scrollLeft||V.scrollLeft||Y.scrollLeft||0),s.top+(p?0:$.pageYOffset||F.scrollTop||V.scrollTop||Y.scrollTop||0));if(c.removeChild(o),n)for(s=n.length;s--;)(l=n[s]).scaleX=l.scaleY=0,l.renderTransform(1,l);return t?h.inverse():h}var eh,eg,em,eu,ef,ew,ex="x,translateX,left,marginLeft,xPercent".split(","),eb="y,translateY,top,marginTop,yPercent".split(","),ey=Math.PI/180,ev=function(e,t,r,i){for(var n=t.length,a=2===i?0:i,o=0;ol.indexOf(",")?l:r,c=e._pt=new eg(e._pt,t,d,0,0,e_,0,o.set(t,d,e));c.u=em(o.get(t,d,a))||0,c.path=i,c.pp=n,e._props.push(d)},eP={version:"3.15.0",name:"motionPath",register:function(e,t,r){em=(eh=e).utils.getUnit,eu=eh.utils.toArray,ef=eh.core.getStyleSaver,ew=eh.core.reverting||function(){},eg=r},init:function(e,t,r){if(!eh)return console.warn("Please gsap.registerPlugin(MotionPathPlugin)"),!1;"object"==typeof t&&!t.style&&t.path||(t={path:t});var i,n,a,o,s=[],l=t,d=l.path,c=l.autoRotate,p=l.unitX,h=l.unitY,g=l.x,m=l.y,u=d[0],f=(i=t.start,n="end"in t?t.end:1,function(e){return i||1!==n?I(e,i,n):e});if(this.rawPaths=s,this.target=e,this.tween=r,this.styles=ef&&ef(e,"transform"),(this.rotate=c||0===c)&&(this.rOffset=parseFloat(c)||0,this.radians=!!t.useRadians,this.rProp=t.rotation||"rotation",this.rSet=e._gsap.set(e,this.rProp,this),this.ru=em(e._gsap.get(e,this.rProp))||0),!Array.isArray(d)||"closed"in d||"number"==typeof u)W(a=f(eS(S(t.path),e,t)),t.resolution),s.push(a),ez(this,e,t.x||"x",a,"x",t.unitX||"px"),ez(this,e,t.y||"y",a,"y",t.unitY||"px");else{for(o in u)!g&&~ex.indexOf(o)?g=o:!m&&~eb.indexOf(o)&&(m=o);for(o in g&&m?s.push(eN(this,ev(ev([],d,g,0),d,m,1),e,g,m,f,t,p||em(d[0][g]),h||em(d[0][m]))):g=m=0,u)o!==g&&o!==m&&s.push(eN(this,ev([],d,o,2),e,o,0,f,t,em(d[0][o])))}r.vars.immediateRender&&this.render(r.progress(),this)},render:function(e,t){var r=t.rawPaths,i=r.length,n=t._pt;if(t.tween._time||!ew()){for(e>1?e=1:e<0&&(e=0);i--;)B(r[i],e,!i&&t.rotate,r[i]);for(;n;)n.set(n.t,n.p,n.path[n.pp]+n.u,n.d,e),n=n._next;t.rotate&&t.rSet(t.target,t.rProp,r[0].angle*(t.radians?ey:1)+t.rOffset+t.ru,t,e)}else t.styles.revert()},getLength:function(e){return W(S(e)).totalLength},sliceRawPath:I,getRawPath:S,pointsToSegment:D,stringToRawPath:E,rawPathToString:G,transformRawPath:O,getGlobalMatrix:ep,getPositionOnPath:B,cacheRawPathMeasurements:W,convertToPath:function(e,t){return eu(e).map(function(e){var r,i,n,a,s,l,d,c,p,h,g,m,u,f,w,x,b,y,v,j,k,N,_,L;return r=!1!==t,"path"!==(L=e.tagName.toLowerCase())&&e.getBBox?(d=z(e,"x,y,width,height,cx,cy,rx,ry,r,x1,x2,y1,y2,points"),_=T(e,P[L]),"rect"===L?(s=_.rx,l=_.ry||s,n=_.x,a=_.y,g=_.width-2*s,m=_.height-2*l,s||l?(u=n+.44771525016900005*s,x=(w=(f=n+s)+g)+.552284749831*s,b=w+s,y=a+.44771525016900005*l,k=(j=(v=a+l)+m)+.552284749831*l,N=j+l,i="M"+b+","+v+" V"+j+" C"+[b,k,x,N,w,N,w-(w-f)/3,N,f+(w-f)/3,N,f,N,u,N,n,k,n,j,n,j-(j-v)/3,n,v+(j-v)/3,n,v,n,y,u,a,f,a,f+(w-f)/3,a,w-(w-f)/3,a,w,a,x,a,b,y,b,v].join(",")+"z"):i="M"+(n+g)+","+a+" v"+m+" h"+-g+" v"+-m+" h"+g+"z"):"circle"===L||"ellipse"===L?("circle"===L?p=.552284749831*(s=l=_.r):(s=_.rx,p=.552284749831*(l=_.ry)),n=_.cx,a=_.cy,c=.552284749831*s,i="M"+(n+s)+","+a+" C"+[n+s,a+p,n+c,a+l,n,a+l,n-c,a+l,n-s,a+p,n-s,a,n-s,a-p,n-c,a-l,n,a-l,n+c,a-l,n+s,a-p,n+s,a].join(",")+"z"):"line"===L?i="M"+_.x1+","+_.y1+" L"+_.x2+","+_.y2:("polyline"===L||"polygon"===L)&&(i="M"+(n=(h=(e.getAttribute("points")+"").match(o)||[]).shift())+","+(a=h.shift())+" L"+h.join(","),"polygon"===L&&(i+=","+n+","+a+"z")),d.setAttribute("d",G(d._gsRawPath=E(i))),r&&e.parentNode&&(e.parentNode.insertBefore(d,e),e.parentNode.removeChild(e)),d):e})},convertCoordinates:function(e,t,r){var i=ep(t,!0,!0).multiply(ep(e));return r?i.apply(r):i},getAlignMatrix:eC,getRelativePosition:function(e,t,r,i){var n=eC(e,t,r,i);return{x:n.e,y:n.f}},arrayToRawPath:function(e,t){var r=ev(ev([],e,(t=t||{}).x||"x",0),e,t.y||"y",1);return t.relative&&ek(r),["cubic"===t.type?r:D(r,t.curviness)]}};(eh||"u">typeof window&&(eh=window.gsap)&&eh.registerPlugin&&eh)&&eh.registerPlugin(eP);var eT,eA,eI,eW,eR,eH,eB,eO,eE=function(){return"u">typeof window},eD=function(){return eT||eE()&&(eT=window.gsap)&&eT.registerPlugin&&eT},eG=/[-+=\.]*\d+[\.e\-\+]*\d*[e\-\+]*\d*/gi,eF={rect:["width","height"],circle:["r","r"],ellipse:["rx","ry"],line:["x2","y2"]},e$=function(e){return Math.round(1e4*e)/1e4},eV=function(e){return parseFloat(e)||0},eY=function(e,t){var r=eV(e);return~e.indexOf("%")?r/100*t:r},eq=function(e,t){return eV(e.getAttribute(t))},eX=Math.sqrt,eZ=function(e,t,r,i,n,a){return eX(Math.pow((eV(r)-eV(e))*n,2)+Math.pow((eV(i)-eV(t))*a,2))},eU=function(e){return console.warn(e)},eK=function(e){return"non-scaling-stroke"===e.getAttribute("vector-effect")},eQ=function(e,t,r){var i,n,a=e.indexOf(" ");return a<0?(i=void 0!==r?r+"":e,n=e):(i=e.substr(0,a),n=e.substr(a+1)),(i=eY(i,t))>(n=eY(n,t))?[n,i]:[i,n]},eJ=function(e){if(!(e=eA(e)[0]))return 0;var t,r,i,n,a,o,s,l=e.tagName.toLowerCase(),d=e.style,c=1,p=1;eK(e)&&(c=eX((p=e.getScreenCTM()).a*p.a+p.b*p.b),p=eX(p.d*p.d+p.c*p.c));try{r=e.getBBox()}catch(e){eU("Some browsers won't measure invisible elements (like display:none or masks inside defs).")}var h=r||{x:0,y:0,width:0,height:0},g=h.x,m=h.y,u=h.width,f=h.height;if(r&&(u||f)||!eF[l]||(u=eq(e,eF[l][0]),f=eq(e,eF[l][1]),"rect"!==l&&"line"!==l&&(u*=2,f*=2),"line"===l&&(g=eq(e,"x1"),m=eq(e,"y1"),u=Math.abs(u-g),f=Math.abs(f-m))),"path"===l)n=d.strokeDasharray,d.strokeDasharray="none",t=e.getTotalLength()||0,e$(c)!==e$(p)&&!eH&&(eH=1)&&eU("Warning: length cannot be measured when vector-effect is non-scaling-stroke and the element isn't proportionally scaled."),t*=(c+p)/2,d.strokeDasharray=n;else if("rect"===l)t=2*u*c+2*f*p;else if("line"===l)t=eZ(g,m,g+u,m+f,c,p);else if("polyline"===l||"polygon"===l)for(i=e.getAttribute("points").match(eG)||[],"polygon"===l&&i.push(i[0],i[1]),t=0,a=2;at&&(i=t),[-n||0,i-n||0]},e1=function(){eE()&&(document,eI=window,eR=eT=eD(),eA=eT.utils.toArray,eB=eT.core.getStyleSaver,eO=eT.core.reverting||function(){},eW=-1!==((eI.navigator||{}).userAgent||"").indexOf("Edge"))},e2={version:"3.15.0",name:"drawSVG",register:function(e){eT=e,e1()},init:function(e,t,r,i,n){if(!e.getBBox)return!1;eR||e1();var a,o,s,l=eJ(e);return this.styles=eB&&eB(e,"strokeDashoffset,strokeDasharray,strokeMiterlimit"),this.tween=r,this._style=e.style,this._target=e,t+""=="true"?t="0 100%":t?-1===(t+"").indexOf(" ")&&(t="0 "+t):t="0 0",a=e0(e,l),o=eQ(t,l,a[0]),this._length=e$(l),this._dash=e$(a[1]-a[0]),this._offset=e$(-a[0]),this._dashPT=this.add(this,"_dash",this._dash,e$(o[1]-o[0]),0,0,0,0,0,1),this._offsetPT=this.add(this,"_offset",this._offset,e$(-o[0]),0,0,0,0,0,1),eW&&(s=eI.getComputedStyle(e)).strokeLinecap!==s.strokeLinejoin&&(o=eV(s.strokeMiterlimit),this.add(e.style,"strokeMiterlimit",o,o+.01)),this._live=eK(e)||~(t+"").indexOf("live"),this._nowrap=~(t+"").indexOf("nowrap"),this._props.push("drawSVG"),1},render:function(e,t){if(t.tween._time||!eO()){var r,i,n,a,o=t._pt,s=t._style;if(o){for(t._live&&(r=eJ(t._target))!==t._length&&(i=r/t._length,t._length=r,t._offsetPT&&(t._offsetPT.s*=i,t._offsetPT.c*=i),t._dashPT?(t._dashPT.s*=i,t._dashPT.c*=i):t._dash*=i);o;)o.r(e,o.d),o=o._next;n=t._dash||e&&1!==e&&1e-4||0,r=t._length-n+.1,a=t._offset,n&&a&&n+Math.abs(a%t._length)>t._length-.05&&(a+=a<0?.005:-.005)&&(r+=.005),s.strokeDashoffset=n?a:a+.001,s.strokeDasharray=r<.1?"none":n?n+"px,"+(t._nowrap?999999:r)+"px":"0px, 999999px"}}else t.styles.revert()},getLength:eJ,getPosition:e0};eD()&&eT.registerPlugin(e2);var e5=e.i(2018);let e4=!1;i.default.registerPlugin(n.ScrollTrigger,eP);try{i.default.registerPlugin(e2),e4=!0}catch{e4=!1}let e3=[{title:"Same-Day Air Logistics",desc:"Max 3-hour door-to-door delivery between India's major regional capitals.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("circle",{cx:"12",cy:"12",r:"10"}),(0,t.jsx)("polyline",{points:"12 6 12 12 16 14"})]})},{title:"AI-Powered Operations",desc:"MileTruth™ AI continuously forecasts demand and optimizes every route and load.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("rect",{x:"4",y:"4",width:"16",height:"16",rx:"3"}),(0,t.jsx)("path",{d:"M9 9h6v6H9z"}),(0,t.jsx)("path",{d:"M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3"})]})},{title:"Regional Connectivity",desc:"Dedicated air capacity linking major economic hubs, not passenger-belly space.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("circle",{cx:"6",cy:"6",r:"2.5"}),(0,t.jsx)("circle",{cx:"18",cy:"6",r:"2.5"}),(0,t.jsx)("circle",{cx:"12",cy:"18",r:"2.5"}),(0,t.jsx)("path",{d:"M8.2 7.2 10 16M15.8 7.2 14 16M8.5 6h7"})]})},{title:"EV Last Mile",desc:"Zero-emission electric vehicles complete every first- and final-mile delivery.",icon:(0,t.jsxs)("svg",{width:"26",height:"26",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.25",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("path",{d:"M3 13h13l3 4h2v3H3z"}),(0,t.jsx)("circle",{cx:"7",cy:"20",r:"1.6"}),(0,t.jsx)("circle",{cx:"16",cy:"20",r:"1.6"}),(0,t.jsx)("path",{d:"M6 13V8a1 1 0 0 1 1-1h5l3 6"})]})}];function e6(e,t){if(e.length<2||t<=0)return e;let r=[e[0]];for(let i=0;i{let t,r,g=e.current,m=a.current,u=o.current,f=s.current,w=l.current,x=d.current,b=c.current;if(!g||!m||!u||!f||!w||!x||!b)return;let y=0,v=0,j=null,k=null,N=i.default.context(()=>{let e=window.matchMedia("(prefers-reduced-motion: reduce)").matches,a=()=>{let e,t=g.getBoundingClientRect(),r=window.matchMedia("(max-width: 600px)").matches,i=p.current.map((e,i)=>{let n=h.current[i];if(!e||!n)return null;let a=e.getBoundingClientRect(),o=n.getBoundingClientRect(),s=a.top-t.top,l=a.bottom-t.top,d=a.left-t.left,c=a.right-t.left;return r?{x:12,y:o.top+o.height/2-t.top,top:s,bottom:l,left:d,right:c}:{x:o.left+o.width/2-t.left,y:a.top-t.top-14,top:s,bottom:l,left:d,right:c}}).filter(e=>null!==e),n=i.map(({x:e,y:t})=>({x:e,y:t}));m.setAttribute("width",String(t.width)),m.setAttribute("height",String(t.height)),m.setAttribute("viewBox",`0 0 ${t.width} ${t.height}`);let a=r?0:Math.max(20,Math.min(38,t.width/20));if(r)e=n;else{let t,r,o=function(e){let t=[];for(let r of e){let e=t[t.length-1];e&&12>=Math.abs(e[0].top-r.top)?e.push(r):t.push([r])}return t}(i);e=o.length<=1?e6(n,a):(t=[],r=null,o.forEach((e,i)=>{let n=i%2==0?e:[...e].reverse(),s=n[0].y,l=null===r?a:Math.max(0,Math.min(a,(s-r-6)/1.43)),d=e6(n.map(({x:e,y:t})=>({x:e,y:t})),l);if(t.length>0){var c,p;let e,r=t[t.length-1],n=d[0],a=(c=o[i-1],p=(i-1)%2==0?"right":"left",(e=[...c].sort((e,t)=>e.left-t.left)).length<2?(e[0].left+e[0].right)/2:"right"===p?(e[e.length-2].right+e[e.length-1].left)/2:(e[0].right+e[1].left)/2);t.push({x:a,y:r.y},{x:a,y:n.y})}t.push(...d),r=Math.max(...e.map(e=>e.bottom))}),t)}let o=function(e){if(e.length<2)return"";let t=`M ${e[0].x} ${e[0].y}`;for(let r=0;r{cancelAnimationFrame(y),y=requestAnimationFrame(()=>{e?a():o()})})).observe(g),a(),v=requestAnimationFrame(()=>{a(),n.ScrollTrigger.refresh()}),"complete"!==document.readyState&&(r=()=>n.ScrollTrigger.refresh(),window.addEventListener("load",r,{once:!0}));let o=()=>{k&&k.kill();let{points:e,isMobile:t}=a();if(e.length<2)return;let r=u.getTotalLength(),n=.22*r,o=r+200;f.setAttribute("stroke-dasharray",`${n} ${o}`);let s=e.map(e=>{let t=0,i=1/0,n=Math.max(2,r/400);for(let a=0;a<=r;a+=n){let r=u.getPointAtLength(a),n=(r.x-e.x)**2+(r.y-e.y)**2;n!1),d=0,c=!1,m=i.default.timeline({scrollTrigger:{trigger:g,start:"top 75%",end:"bottom 35%",scrub:1}});k=m,j=m.scrollTrigger??null;e4?m.to(u,{drawSVG:"100%",duration:4.680000000000001,ease:"power2.inOut"},0):(i.default.set(u,{strokeDasharray:r,strokeDashoffset:r}),m.to(u,{strokeDashoffset:0,duration:4.680000000000001,ease:"power2.inOut"},0)),m.to(u,{opacity:t?.15:.18,duration:.9,ease:"sine.out"},0),i.default.set([x,b],{svgOrigin:"0 0"}),m.to(w,{opacity:1,duration:.3,ease:"sine.out"},0),m.to(f,{opacity:1,duration:.4,ease:"sine.out"},0),m.to(w,{motionPath:{path:u,autoRotate:!1,alignOrigin:[.5,.5]},duration:5.2,ease:"power2.inOut",onUpdate:function(){let e=this.progress(),t=e*r,a=Math.max(1,.01*r),o=u.getPointAtLength(Math.max(0,t-a)),g=u.getPointAtLength(Math.min(r,t+a)),m=180*Math.atan2(g.y-o.y,g.x-o.x)/Math.PI+90;if(c){let e=m-d;d+=.12*(e=((e+180)%360+360)%360-180)}else d=m,c=!0;i.default.set(x,{rotation:d}),i.default.set(b,{rotation:d}),f.setAttribute("stroke-dashoffset",String(n-t)),s.forEach((t,r)=>{if(!l[r]&&e>=t){let e,t;l[r]=!0,e=p.current[r],t=h.current[r],e&&(e.classList.add("wwg-card-flown","wwg-card-pulse"),t&&i.default.timeline({delay:.28}).to(t,{scale:1.02,duration:.32,ease:"expo.out"}).to(t,{scale:1,duration:.32,ease:"sine.inOut"}),i.default.delayedCall(.95,()=>e.classList.remove("wwg-card-pulse")))}else l[r]&&e{t?.disconnect(),cancelAnimationFrame(y),cancelAnimationFrame(v),cancelAnimationFrame(0),r&&window.removeEventListener("load",r),j?.kill(),k?.kill(),N.revert()}},[]),(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` .wwg-section { background: #ffffff; padding: var(--space-section-lg, 80px) 0; diff --git a/build/_next/static/chunks/07uz2g0_38qia.js b/.next/static/chunks/07uz2g0_38qia.js similarity index 100% rename from build/_next/static/chunks/07uz2g0_38qia.js rename to .next/static/chunks/07uz2g0_38qia.js diff --git a/build/_next/static/chunks/06n0m6ck5r8gy.js b/.next/static/chunks/0812b12auw1ih.js similarity index 99% rename from build/_next/static/chunks/06n0m6ck5r8gy.js rename to .next/static/chunks/0812b12auw1ih.js index a71123e..2eb02f5 100644 --- a/build/_next/static/chunks/06n0m6ck5r8gy.js +++ b/.next/static/chunks/0812b12auw1ih.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,94909,(t,e,i)=>{"use strict";Object.defineProperty(i,"__esModule",{value:!0});var s={default:function(){return c},getImageProps:function(){return a}};for(var o in s)Object.defineProperty(i,o,{enumerable:!0,get:s[o]});let r=t.r(55682),n=t.r(8927),l=t.r(5500),h=r._(t.r(1948));function a(t){let{props:e}=(0,n.getImgProps)(t,{defaultLoader:h.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!0}});for(let[t,i]of Object.entries(e))void 0===i&&delete e[t];return{props:e}}let c=l.Image},57688,(t,e,i)=>{e.exports=t.r(94909)},92599,t=>{"use strict";var e="1.3.23";function i(t,e,i){return Math.max(t,Math.min(e,i))}var s=class{isRunning=!1;value=0;from=0;to=0;currentTime=0;lerp;duration;easing;onUpdate;advance(t){if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;let s=i(0,this.currentTime/this.duration,1),o=(e=s>=1)?1:this.easing(s);this.value=this.from+(this.to-this.from)*o}else if(this.lerp){var s,o,r,n;this.value=(s=this.value,o=this.to,r=60*this.lerp,(1-(n=1-Math.exp(-r*t)))*s+n*o),Math.round(this.value)===Math.round(this.to)&&(this.value=this.to,e=!0)}else this.value=this.to,e=!0;e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i,duration:s,easing:o,onStart:r,onUpdate:n}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,r?.(),this.onUpdate=n}},o=class{width=0;height=0;scrollHeight=0;scrollWidth=0;debouncedResize;wrapperResizeObserver;contentResizeObserver;constructor(t,e,{autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function(t,e){let i;return function(...s){clearTimeout(i),i=setTimeout(()=>{i=void 0,t.apply(this,s)},e)}}(this.resize,s),this.wrapper instanceof Window?window.addEventListener("resize",this.debouncedResize):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),this.wrapper===window&&this.debouncedResize&&window.removeEventListener("resize",this.debouncedResize)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper instanceof Window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper instanceof Window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}},r=class{events={};emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t{this.events[t]=this.events[t]?.filter(t=>e!==t)}}off(t,e){this.events[t]=this.events[t]?.filter(t=>e!==t)}destroy(){this.events={}}};let n=100/6,l={passive:!1};function h(t,e){return 1===t?n:2===t?e:1}var a=class{touchStart={x:0,y:0};lastDelta={x:0,y:0};window={width:0,height:0};emitter=new r;constructor(t,e={wheelMultiplier:1,touchMultiplier:1}){this.element=t,this.options=e,window.addEventListener("resize",this.onWindowResize),this.onWindowResize(),this.element.addEventListener("wheel",this.onWheel,l),this.element.addEventListener("touchstart",this.onTouchStart,l),this.element.addEventListener("touchmove",this.onTouchMove,l),this.element.addEventListener("touchend",this.onTouchEnd,l)}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener("resize",this.onWindowResize),this.element.removeEventListener("wheel",this.onWheel,l),this.element.removeEventListener("touchstart",this.onTouchStart,l),this.element.removeEventListener("touchmove",this.onTouchMove,l),this.element.removeEventListener("touchend",this.onTouchEnd,l)}onTouchStart=t=>{let{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit("scroll",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{let{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.options.touchMultiplier,o=-(i-this.touchStart.y)*this.options.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit("scroll",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=t=>{let{deltaX:e,deltaY:i,deltaMode:s}=t,o=h(s,this.window.width),r=h(s,this.window.height);e*=o,i*=r,e*=this.options.wheelMultiplier,i*=this.options.wheelMultiplier,this.emitter.emit("scroll",{deltaX:e,deltaY:i,event:t})};onWindowResize=()=>{this.window={width:window.innerWidth,height:window.innerHeight}}};let c=t=>Math.min(1,1.001-2**(-10*t));var p=class{_isScrolling=!1;_isStopped=!1;_isLocked=!1;_preventNextNativeScrollEvent=!1;_resetVelocityTimeout=null;_rafId=null;isTouching;time=0;userData={};lastVelocity=0;velocity=0;direction=0;options;targetScroll;animatedScroll;animate=new s;emitter=new r;dimensions;virtualScroll;constructor({wrapper:t=window,content:i=document.documentElement,eventsTarget:s=t,smoothWheel:r=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaExponent:h=1.7,duration:p,easing:d,lerp:u=.1,infinite:m=!1,orientation:v="vertical",gestureOrientation:f="horizontal"===v?"both":"vertical",touchMultiplier:g=1,wheelMultiplier:w=1,autoResize:S=!0,prevent:y,virtualScroll:E,overscroll:b=!0,autoRaf:T=!1,anchors:z=!1,autoToggle:L=!1,allowNestedScroll:N=!1,__experimental__naiveDimensions:R=!1,naiveDimensions:O=R,stopInertiaOnNavigate:_=!1}={}){window.lenisVersion=e,window.lenis||(window.lenis={}),window.lenis.version=e,"horizontal"===v&&(window.lenis.horizontal=!0),!0===n&&(window.lenis.touch=!0),t&&t!==document.documentElement||(t=window),"number"==typeof p&&"function"!=typeof d?d=c:"function"==typeof d&&"number"!=typeof p&&(p=1),this.options={wrapper:t,content:i,eventsTarget:s,smoothWheel:r,syncTouch:n,syncTouchLerp:l,touchInertiaExponent:h,duration:p,easing:d,lerp:u,infinite:m,gestureOrientation:f,orientation:v,touchMultiplier:g,wheelMultiplier:w,autoResize:S,prevent:y,virtualScroll:E,overscroll:b,autoRaf:T,anchors:z,autoToggle:L,allowNestedScroll:N,naiveDimensions:O,stopInertiaOnNavigate:_},this.dimensions=new o(t,i,{autoResize:S}),this.updateClassName(),this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onNativeScroll),this.options.wrapper.addEventListener("scrollend",this.onScrollEnd,{capture:!0}),(this.options.anchors||this.options.stopInertiaOnNavigate)&&this.options.wrapper.addEventListener("click",this.onClick),this.options.wrapper.addEventListener("pointerdown",this.onPointerDown),this.virtualScroll=new a(s,{touchMultiplier:g,wheelMultiplier:w}),this.virtualScroll.on("scroll",this.onVirtualScroll),this.options.autoToggle&&(this.checkOverflow(),this.rootElement.addEventListener("transitionend",this.onTransitionEnd)),this.options.autoRaf&&(this._rafId=requestAnimationFrame(this.raf))}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onNativeScroll),this.options.wrapper.removeEventListener("scrollend",this.onScrollEnd,{capture:!0}),this.options.wrapper.removeEventListener("pointerdown",this.onPointerDown),(this.options.anchors||this.options.stopInertiaOnNavigate)&&this.options.wrapper.removeEventListener("click",this.onClick),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName(),this._rafId&&cancelAnimationFrame(this._rafId)}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}onScrollEnd=t=>{t instanceof CustomEvent||"smooth"!==this.isScrolling&&!1!==this.isScrolling||t.stopPropagation()};dispatchScrollendEvent=()=>{this.options.wrapper.dispatchEvent(new CustomEvent("scrollend",{bubbles:this.options.wrapper===window,detail:{lenisScrollEnd:!0}}))};get overflow(){let t=this.isHorizontal?"overflow-x":"overflow-y";return getComputedStyle(this.rootElement)[t]}checkOverflow(){["hidden","clip"].includes(this.overflow)?this.internalStop():this.internalStart()}onTransitionEnd=t=>{t.propertyName?.includes("overflow")&&t.target===this.rootElement&&this.checkOverflow()};setScroll(t){this.isHorizontal?this.options.wrapper.scrollTo({left:t,behavior:"instant"}):this.options.wrapper.scrollTo({top:t,behavior:"instant"})}onClick=t=>{let e=t.composedPath().filter(t=>t instanceof HTMLAnchorElement&&t.href).map(t=>new URL(t.href)),i=new URL(window.location.href);if(this.options.anchors){let t=e.find(t=>i.host===t.host&&i.pathname===t.pathname&&t.hash);if(t){let e="object"==typeof this.options.anchors&&this.options.anchors?this.options.anchors:void 0,i=`#${t.hash.split("#")[1]}`;this.scrollTo(i,e);return}}if(this.options.stopInertiaOnNavigate&&e.some(t=>i.host===t.host&&i.pathname!==t.pathname))return void this.reset()};onPointerDown=t=>{1===t.button&&this.reset()};onVirtualScroll=t=>{if("function"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;let{deltaX:e,deltaY:i,event:s}=t;if(this.emitter.emit("virtual-scroll",{deltaX:e,deltaY:i,event:s}),s.ctrlKey||s.lenisStopPropagation)return;let o=s.type.includes("touch"),r=s.type.includes("wheel");this.isTouching="touchstart"===s.type||"touchmove"===s.type;let n=0===e&&0===i;if(this.options.syncTouch&&o&&"touchstart"===s.type&&n&&!this.isStopped&&!this.isLocked)return void this.reset();let l="vertical"===this.options.gestureOrientation&&0===i||"horizontal"===this.options.gestureOrientation&&0===e;if(n||l)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));let a=this.options.prevent,c=Math.abs(e)>=Math.abs(i)?"horizontal":"vertical";if(h.find(t=>t instanceof HTMLElement&&("function"==typeof a&&a?.(t)||t.hasAttribute?.("data-lenis-prevent")||"vertical"===c&&t.hasAttribute?.("data-lenis-prevent-vertical")||"horizontal"===c&&t.hasAttribute?.("data-lenis-prevent-horizontal")||o&&t.hasAttribute?.("data-lenis-prevent-touch")||r&&t.hasAttribute?.("data-lenis-prevent-wheel")||this.options.allowNestedScroll&&this.hasNestedScroll(t,{deltaX:e,deltaY:i}))))return;if(this.isStopped||this.isLocked){s.cancelable&&s.preventDefault();return}if(!(this.options.syncTouch&&o||this.options.smoothWheel&&r)){this.isScrolling="native",this.animate.stop(),s.lenisStopPropagation=!0;return}let p=i;"both"===this.options.gestureOrientation?p=Math.abs(i)>Math.abs(e)?i:e:"horizontal"===this.options.gestureOrientation&&(p=e),(!this.options.overscroll||this.options.infinite||this.options.wrapper!==window&&this.limit>0&&(this.animatedScroll>0&&this.animatedScroll0||this.animatedScroll===this.limit&&i<0))&&(s.lenisStopPropagation=!0),s.cancelable&&s.preventDefault();let d=o&&this.options.syncTouch,u=o&&"touchend"===s.type;u&&(p=Math.sign(p)*Math.abs(this.velocity)**this.options.touchInertiaExponent),this.scrollTo(this.targetScroll+p,{programmatic:!1,...d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}})};resize(){this.dimensions.resize(),this.animatedScroll=this.targetScroll=this.actualScroll,this.emit()}emit(){this.emitter.emit("scroll",this)}onNativeScroll=()=>{if(null!==this._resetVelocityTimeout&&(clearTimeout(this._resetVelocityTimeout),this._resetVelocityTimeout=null),this._preventNextNativeScrollEvent){this._preventNextNativeScrollEvent=!1;return}if(!1===this.isScrolling||"native"===this.isScrolling){let t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isStopped||(this.isScrolling="native"),this.emit(),0!==this.velocity&&(this._resetVelocityTimeout=setTimeout(()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()},400))}};reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){if(this.isStopped){if(this.options.autoToggle)return void this.rootElement.style.removeProperty("overflow");this.internalStart()}}internalStart(){this.isStopped&&(this.reset(),this.isStopped=!1,this.emit())}stop(){if(!this.isStopped){if(this.options.autoToggle)return void this.rootElement.style.setProperty("overflow","clip");this.internalStop()}}internalStop(){this.isStopped||(this.reset(),this.isStopped=!0,this.emit())}raf=t=>{let e=t-(this.time||t);this.time=t,this.animate.advance(.001*e),this.options.autoRaf&&(this._rafId=requestAnimationFrame(this.raf))};scrollTo(t,{offset:e=0,immediate:s=!1,lock:o=!1,programmatic:r=!0,lerp:n=r?this.options.lerp:void 0,duration:l=r?this.options.duration:void 0,easing:h=r?this.options.easing:void 0,onStart:a,onComplete:p,force:d=!1,userData:u}={}){if((this.isStopped||this.isLocked)&&!d)return;let m=t,v=e;if("string"==typeof m&&["top","left","start","#"].includes(m))m=0;else if("string"==typeof m&&["bottom","right","end"].includes(m))m=this.limit;else{let t=null;if("string"==typeof m?(t=document.querySelector(m))||("#top"===m?m=0:console.warn("Lenis: Target not found",m)):m instanceof HTMLElement&&m?.nodeType&&(t=m),t){if(this.options.wrapper!==window){let t=this.rootElement.getBoundingClientRect();v-=this.isHorizontal?t.left:t.top}let e=t.getBoundingClientRect(),i=getComputedStyle(t),s=this.isHorizontal?Number.parseFloat(i.scrollMarginLeft):Number.parseFloat(i.scrollMarginTop),o=getComputedStyle(this.rootElement),r=this.isHorizontal?Number.parseFloat(o.scrollPaddingLeft):Number.parseFloat(o.scrollPaddingTop);m=(this.isHorizontal?e.left:e.top)+this.animatedScroll-(Number.isNaN(s)?0:s)-(Number.isNaN(r)?0:r)}}if("number"==typeof m){if(m+=v,this.options.infinite){if(r){this.targetScroll=this.animatedScroll=this.scroll;let t=m-this.animatedScroll;t>this.limit/2?m-=this.limit:t<-this.limit/2&&(m+=this.limit)}}else m=i(0,m,this.limit);if(m===this.targetScroll){a?.(this),p?.(this);return}if(this.userData=u??{},s){this.animatedScroll=this.targetScroll=m,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),p?.(this),this.userData={},requestAnimationFrame(()=>{this.dispatchScrollendEvent()});return}r||(this.targetScroll=m),"number"==typeof l&&"function"!=typeof h?h=c:"function"==typeof h&&"number"!=typeof l&&(l=1),this.animate.fromTo(this.animatedScroll,m,{duration:l,easing:h,lerp:n,onStart:()=>{o&&(this.isLocked=!0),this.isScrolling="smooth",a?.(this)},onUpdate:(t,e)=>{this.isScrolling="smooth",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),r&&(this.targetScroll=t),e||this.emit(),e&&(this.reset(),this.emit(),p?.(this),this.userData={},requestAnimationFrame(()=>{this.dispatchScrollendEvent()}),this.preventNextNativeScrollEvent())}})}}preventNextNativeScrollEvent(){this._preventNextNativeScrollEvent=!0,requestAnimationFrame(()=>{this._preventNextNativeScrollEvent=!1})}hasNestedScroll(t,{deltaX:e,deltaY:i}){let s,o,r,n,l,h,a,c,p,d,u,m,v,f,g,w,S=Date.now();t._lenis||(t._lenis={});let y=t._lenis;if(S-(y.time??0)>2e3){y.time=Date.now();let e=window.getComputedStyle(t);if(y.computedStyle=e,s=["auto","overlay","scroll"].includes(e.overflowX),o=["auto","overlay","scroll"].includes(e.overflowY),l=["auto"].includes(e.overscrollBehaviorX),h=["auto"].includes(e.overscrollBehaviorY),y.hasOverflowX=s,y.hasOverflowY=o,!(s||o))return!1;a=t.scrollWidth,c=t.scrollHeight,p=t.clientWidth,d=t.clientHeight,r=a>p,n=c>d,y.isScrollableX=r,y.isScrollableY=n,y.scrollWidth=a,y.scrollHeight=c,y.clientWidth=p,y.clientHeight=d,y.hasOverscrollBehaviorX=l,y.hasOverscrollBehaviorY=h}else r=y.isScrollableX,n=y.isScrollableY,s=y.hasOverflowX,o=y.hasOverflowY,a=y.scrollWidth,c=y.scrollHeight,p=y.clientWidth,d=y.clientHeight,l=y.hasOverscrollBehaviorX,h=y.hasOverscrollBehaviorY;if(!(s&&r||o&&n))return!1;let E=Math.abs(e)>=Math.abs(i)?"horizontal":"vertical";if("horizontal"===E)u=Math.round(t.scrollLeft),m=a-p,v=e,f=s,g=r,w=l;else{if("vertical"!==E)return!1;u=Math.round(t.scrollTop),m=c-d,v=i,f=o,g=n,w=h}return!w&&(u>=m||u<=0)||(v>0?u0)&&f&&g}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?"x":"y"]}get isHorizontal(){return"horizontal"===this.options.orientation}get actualScroll(){let t=this.options.wrapper;return this.isHorizontal?t.scrollX??t.scrollLeft:t.scrollY??t.scrollTop}get scroll(){var t;return this.options.infinite?(this.animatedScroll%(t=this.limit)+t)%t:this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this._isScrolling}set isScrolling(t){this._isScrolling!==t&&(this._isScrolling=t,this.updateClassName())}get isStopped(){return this._isStopped}set isStopped(t){this._isStopped!==t&&(this._isStopped=t,this.updateClassName())}get isLocked(){return this._isLocked}set isLocked(t){this._isLocked!==t&&(this._isLocked=t,this.updateClassName())}get isSmooth(){return"smooth"===this.isScrolling}get className(){let t="lenis";return this.options.autoToggle&&(t+=" lenis-autoToggle"),this.isStopped&&(t+=" lenis-stopped"),this.isLocked&&(t+=" lenis-locked"),this.isScrolling&&(t+=" lenis-scrolling"),"smooth"===this.isScrolling&&(t+=" lenis-smooth"),t}updateClassName(){this.cleanUpClassName(),this.className.split(" ").forEach(t=>{this.rootElement.classList.add(t)})}cleanUpClassName(){for(let t of Array.from(this.rootElement.classList))("lenis"===t||t.startsWith("lenis-"))&&this.rootElement.classList.remove(t)}};t.s(["default",0,p])}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,94909,(t,e,i)=>{"use strict";Object.defineProperty(i,"__esModule",{value:!0});var s={default:function(){return c},getImageProps:function(){return a}};for(var o in s)Object.defineProperty(i,o,{enumerable:!0,get:s[o]});let r=t.r(55682),n=t.r(8927),l=t.r(5500),h=r._(t.r(1948));function a(t){let{props:e}=(0,n.getImgProps)(t,{defaultLoader:h.default,imgConf:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1}});for(let[t,i]of Object.entries(e))void 0===i&&delete e[t];return{props:e}}let c=l.Image},57688,(t,e,i)=>{e.exports=t.r(94909)},92599,t=>{"use strict";var e="1.3.23";function i(t,e,i){return Math.max(t,Math.min(e,i))}var s=class{isRunning=!1;value=0;from=0;to=0;currentTime=0;lerp;duration;easing;onUpdate;advance(t){if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;let s=i(0,this.currentTime/this.duration,1),o=(e=s>=1)?1:this.easing(s);this.value=this.from+(this.to-this.from)*o}else if(this.lerp){var s,o,r,n;this.value=(s=this.value,o=this.to,r=60*this.lerp,(1-(n=1-Math.exp(-r*t)))*s+n*o),Math.round(this.value)===Math.round(this.to)&&(this.value=this.to,e=!0)}else this.value=this.to,e=!0;e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i,duration:s,easing:o,onStart:r,onUpdate:n}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,r?.(),this.onUpdate=n}},o=class{width=0;height=0;scrollHeight=0;scrollWidth=0;debouncedResize;wrapperResizeObserver;contentResizeObserver;constructor(t,e,{autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function(t,e){let i;return function(...s){clearTimeout(i),i=setTimeout(()=>{i=void 0,t.apply(this,s)},e)}}(this.resize,s),this.wrapper instanceof Window?window.addEventListener("resize",this.debouncedResize):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),this.wrapper===window&&this.debouncedResize&&window.removeEventListener("resize",this.debouncedResize)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper instanceof Window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper instanceof Window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}},r=class{events={};emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t{this.events[t]=this.events[t]?.filter(t=>e!==t)}}off(t,e){this.events[t]=this.events[t]?.filter(t=>e!==t)}destroy(){this.events={}}};let n=100/6,l={passive:!1};function h(t,e){return 1===t?n:2===t?e:1}var a=class{touchStart={x:0,y:0};lastDelta={x:0,y:0};window={width:0,height:0};emitter=new r;constructor(t,e={wheelMultiplier:1,touchMultiplier:1}){this.element=t,this.options=e,window.addEventListener("resize",this.onWindowResize),this.onWindowResize(),this.element.addEventListener("wheel",this.onWheel,l),this.element.addEventListener("touchstart",this.onTouchStart,l),this.element.addEventListener("touchmove",this.onTouchMove,l),this.element.addEventListener("touchend",this.onTouchEnd,l)}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener("resize",this.onWindowResize),this.element.removeEventListener("wheel",this.onWheel,l),this.element.removeEventListener("touchstart",this.onTouchStart,l),this.element.removeEventListener("touchmove",this.onTouchMove,l),this.element.removeEventListener("touchend",this.onTouchEnd,l)}onTouchStart=t=>{let{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit("scroll",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{let{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.options.touchMultiplier,o=-(i-this.touchStart.y)*this.options.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit("scroll",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=t=>{let{deltaX:e,deltaY:i,deltaMode:s}=t,o=h(s,this.window.width),r=h(s,this.window.height);e*=o,i*=r,e*=this.options.wheelMultiplier,i*=this.options.wheelMultiplier,this.emitter.emit("scroll",{deltaX:e,deltaY:i,event:t})};onWindowResize=()=>{this.window={width:window.innerWidth,height:window.innerHeight}}};let c=t=>Math.min(1,1.001-2**(-10*t));var p=class{_isScrolling=!1;_isStopped=!1;_isLocked=!1;_preventNextNativeScrollEvent=!1;_resetVelocityTimeout=null;_rafId=null;isTouching;time=0;userData={};lastVelocity=0;velocity=0;direction=0;options;targetScroll;animatedScroll;animate=new s;emitter=new r;dimensions;virtualScroll;constructor({wrapper:t=window,content:i=document.documentElement,eventsTarget:s=t,smoothWheel:r=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaExponent:h=1.7,duration:p,easing:d,lerp:u=.1,infinite:m=!1,orientation:v="vertical",gestureOrientation:f="horizontal"===v?"both":"vertical",touchMultiplier:g=1,wheelMultiplier:w=1,autoResize:S=!0,prevent:y,virtualScroll:E,overscroll:b=!0,autoRaf:T=!1,anchors:z=!1,autoToggle:L=!1,allowNestedScroll:N=!1,__experimental__naiveDimensions:R=!1,naiveDimensions:O=R,stopInertiaOnNavigate:_=!1}={}){window.lenisVersion=e,window.lenis||(window.lenis={}),window.lenis.version=e,"horizontal"===v&&(window.lenis.horizontal=!0),!0===n&&(window.lenis.touch=!0),t&&t!==document.documentElement||(t=window),"number"==typeof p&&"function"!=typeof d?d=c:"function"==typeof d&&"number"!=typeof p&&(p=1),this.options={wrapper:t,content:i,eventsTarget:s,smoothWheel:r,syncTouch:n,syncTouchLerp:l,touchInertiaExponent:h,duration:p,easing:d,lerp:u,infinite:m,gestureOrientation:f,orientation:v,touchMultiplier:g,wheelMultiplier:w,autoResize:S,prevent:y,virtualScroll:E,overscroll:b,autoRaf:T,anchors:z,autoToggle:L,allowNestedScroll:N,naiveDimensions:O,stopInertiaOnNavigate:_},this.dimensions=new o(t,i,{autoResize:S}),this.updateClassName(),this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onNativeScroll),this.options.wrapper.addEventListener("scrollend",this.onScrollEnd,{capture:!0}),(this.options.anchors||this.options.stopInertiaOnNavigate)&&this.options.wrapper.addEventListener("click",this.onClick),this.options.wrapper.addEventListener("pointerdown",this.onPointerDown),this.virtualScroll=new a(s,{touchMultiplier:g,wheelMultiplier:w}),this.virtualScroll.on("scroll",this.onVirtualScroll),this.options.autoToggle&&(this.checkOverflow(),this.rootElement.addEventListener("transitionend",this.onTransitionEnd)),this.options.autoRaf&&(this._rafId=requestAnimationFrame(this.raf))}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onNativeScroll),this.options.wrapper.removeEventListener("scrollend",this.onScrollEnd,{capture:!0}),this.options.wrapper.removeEventListener("pointerdown",this.onPointerDown),(this.options.anchors||this.options.stopInertiaOnNavigate)&&this.options.wrapper.removeEventListener("click",this.onClick),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName(),this._rafId&&cancelAnimationFrame(this._rafId)}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}onScrollEnd=t=>{t instanceof CustomEvent||"smooth"!==this.isScrolling&&!1!==this.isScrolling||t.stopPropagation()};dispatchScrollendEvent=()=>{this.options.wrapper.dispatchEvent(new CustomEvent("scrollend",{bubbles:this.options.wrapper===window,detail:{lenisScrollEnd:!0}}))};get overflow(){let t=this.isHorizontal?"overflow-x":"overflow-y";return getComputedStyle(this.rootElement)[t]}checkOverflow(){["hidden","clip"].includes(this.overflow)?this.internalStop():this.internalStart()}onTransitionEnd=t=>{t.propertyName?.includes("overflow")&&t.target===this.rootElement&&this.checkOverflow()};setScroll(t){this.isHorizontal?this.options.wrapper.scrollTo({left:t,behavior:"instant"}):this.options.wrapper.scrollTo({top:t,behavior:"instant"})}onClick=t=>{let e=t.composedPath().filter(t=>t instanceof HTMLAnchorElement&&t.href).map(t=>new URL(t.href)),i=new URL(window.location.href);if(this.options.anchors){let t=e.find(t=>i.host===t.host&&i.pathname===t.pathname&&t.hash);if(t){let e="object"==typeof this.options.anchors&&this.options.anchors?this.options.anchors:void 0,i=`#${t.hash.split("#")[1]}`;this.scrollTo(i,e);return}}if(this.options.stopInertiaOnNavigate&&e.some(t=>i.host===t.host&&i.pathname!==t.pathname))return void this.reset()};onPointerDown=t=>{1===t.button&&this.reset()};onVirtualScroll=t=>{if("function"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;let{deltaX:e,deltaY:i,event:s}=t;if(this.emitter.emit("virtual-scroll",{deltaX:e,deltaY:i,event:s}),s.ctrlKey||s.lenisStopPropagation)return;let o=s.type.includes("touch"),r=s.type.includes("wheel");this.isTouching="touchstart"===s.type||"touchmove"===s.type;let n=0===e&&0===i;if(this.options.syncTouch&&o&&"touchstart"===s.type&&n&&!this.isStopped&&!this.isLocked)return void this.reset();let l="vertical"===this.options.gestureOrientation&&0===i||"horizontal"===this.options.gestureOrientation&&0===e;if(n||l)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));let a=this.options.prevent,c=Math.abs(e)>=Math.abs(i)?"horizontal":"vertical";if(h.find(t=>t instanceof HTMLElement&&("function"==typeof a&&a?.(t)||t.hasAttribute?.("data-lenis-prevent")||"vertical"===c&&t.hasAttribute?.("data-lenis-prevent-vertical")||"horizontal"===c&&t.hasAttribute?.("data-lenis-prevent-horizontal")||o&&t.hasAttribute?.("data-lenis-prevent-touch")||r&&t.hasAttribute?.("data-lenis-prevent-wheel")||this.options.allowNestedScroll&&this.hasNestedScroll(t,{deltaX:e,deltaY:i}))))return;if(this.isStopped||this.isLocked){s.cancelable&&s.preventDefault();return}if(!(this.options.syncTouch&&o||this.options.smoothWheel&&r)){this.isScrolling="native",this.animate.stop(),s.lenisStopPropagation=!0;return}let p=i;"both"===this.options.gestureOrientation?p=Math.abs(i)>Math.abs(e)?i:e:"horizontal"===this.options.gestureOrientation&&(p=e),(!this.options.overscroll||this.options.infinite||this.options.wrapper!==window&&this.limit>0&&(this.animatedScroll>0&&this.animatedScroll0||this.animatedScroll===this.limit&&i<0))&&(s.lenisStopPropagation=!0),s.cancelable&&s.preventDefault();let d=o&&this.options.syncTouch,u=o&&"touchend"===s.type;u&&(p=Math.sign(p)*Math.abs(this.velocity)**this.options.touchInertiaExponent),this.scrollTo(this.targetScroll+p,{programmatic:!1,...d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}})};resize(){this.dimensions.resize(),this.animatedScroll=this.targetScroll=this.actualScroll,this.emit()}emit(){this.emitter.emit("scroll",this)}onNativeScroll=()=>{if(null!==this._resetVelocityTimeout&&(clearTimeout(this._resetVelocityTimeout),this._resetVelocityTimeout=null),this._preventNextNativeScrollEvent){this._preventNextNativeScrollEvent=!1;return}if(!1===this.isScrolling||"native"===this.isScrolling){let t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isStopped||(this.isScrolling="native"),this.emit(),0!==this.velocity&&(this._resetVelocityTimeout=setTimeout(()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()},400))}};reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){if(this.isStopped){if(this.options.autoToggle)return void this.rootElement.style.removeProperty("overflow");this.internalStart()}}internalStart(){this.isStopped&&(this.reset(),this.isStopped=!1,this.emit())}stop(){if(!this.isStopped){if(this.options.autoToggle)return void this.rootElement.style.setProperty("overflow","clip");this.internalStop()}}internalStop(){this.isStopped||(this.reset(),this.isStopped=!0,this.emit())}raf=t=>{let e=t-(this.time||t);this.time=t,this.animate.advance(.001*e),this.options.autoRaf&&(this._rafId=requestAnimationFrame(this.raf))};scrollTo(t,{offset:e=0,immediate:s=!1,lock:o=!1,programmatic:r=!0,lerp:n=r?this.options.lerp:void 0,duration:l=r?this.options.duration:void 0,easing:h=r?this.options.easing:void 0,onStart:a,onComplete:p,force:d=!1,userData:u}={}){if((this.isStopped||this.isLocked)&&!d)return;let m=t,v=e;if("string"==typeof m&&["top","left","start","#"].includes(m))m=0;else if("string"==typeof m&&["bottom","right","end"].includes(m))m=this.limit;else{let t=null;if("string"==typeof m?(t=document.querySelector(m))||("#top"===m?m=0:console.warn("Lenis: Target not found",m)):m instanceof HTMLElement&&m?.nodeType&&(t=m),t){if(this.options.wrapper!==window){let t=this.rootElement.getBoundingClientRect();v-=this.isHorizontal?t.left:t.top}let e=t.getBoundingClientRect(),i=getComputedStyle(t),s=this.isHorizontal?Number.parseFloat(i.scrollMarginLeft):Number.parseFloat(i.scrollMarginTop),o=getComputedStyle(this.rootElement),r=this.isHorizontal?Number.parseFloat(o.scrollPaddingLeft):Number.parseFloat(o.scrollPaddingTop);m=(this.isHorizontal?e.left:e.top)+this.animatedScroll-(Number.isNaN(s)?0:s)-(Number.isNaN(r)?0:r)}}if("number"==typeof m){if(m+=v,this.options.infinite){if(r){this.targetScroll=this.animatedScroll=this.scroll;let t=m-this.animatedScroll;t>this.limit/2?m-=this.limit:t<-this.limit/2&&(m+=this.limit)}}else m=i(0,m,this.limit);if(m===this.targetScroll){a?.(this),p?.(this);return}if(this.userData=u??{},s){this.animatedScroll=this.targetScroll=m,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),p?.(this),this.userData={},requestAnimationFrame(()=>{this.dispatchScrollendEvent()});return}r||(this.targetScroll=m),"number"==typeof l&&"function"!=typeof h?h=c:"function"==typeof h&&"number"!=typeof l&&(l=1),this.animate.fromTo(this.animatedScroll,m,{duration:l,easing:h,lerp:n,onStart:()=>{o&&(this.isLocked=!0),this.isScrolling="smooth",a?.(this)},onUpdate:(t,e)=>{this.isScrolling="smooth",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),r&&(this.targetScroll=t),e||this.emit(),e&&(this.reset(),this.emit(),p?.(this),this.userData={},requestAnimationFrame(()=>{this.dispatchScrollendEvent()}),this.preventNextNativeScrollEvent())}})}}preventNextNativeScrollEvent(){this._preventNextNativeScrollEvent=!0,requestAnimationFrame(()=>{this._preventNextNativeScrollEvent=!1})}hasNestedScroll(t,{deltaX:e,deltaY:i}){let s,o,r,n,l,h,a,c,p,d,u,m,v,f,g,w,S=Date.now();t._lenis||(t._lenis={});let y=t._lenis;if(S-(y.time??0)>2e3){y.time=Date.now();let e=window.getComputedStyle(t);if(y.computedStyle=e,s=["auto","overlay","scroll"].includes(e.overflowX),o=["auto","overlay","scroll"].includes(e.overflowY),l=["auto"].includes(e.overscrollBehaviorX),h=["auto"].includes(e.overscrollBehaviorY),y.hasOverflowX=s,y.hasOverflowY=o,!(s||o))return!1;a=t.scrollWidth,c=t.scrollHeight,p=t.clientWidth,d=t.clientHeight,r=a>p,n=c>d,y.isScrollableX=r,y.isScrollableY=n,y.scrollWidth=a,y.scrollHeight=c,y.clientWidth=p,y.clientHeight=d,y.hasOverscrollBehaviorX=l,y.hasOverscrollBehaviorY=h}else r=y.isScrollableX,n=y.isScrollableY,s=y.hasOverflowX,o=y.hasOverflowY,a=y.scrollWidth,c=y.scrollHeight,p=y.clientWidth,d=y.clientHeight,l=y.hasOverscrollBehaviorX,h=y.hasOverscrollBehaviorY;if(!(s&&r||o&&n))return!1;let E=Math.abs(e)>=Math.abs(i)?"horizontal":"vertical";if("horizontal"===E)u=Math.round(t.scrollLeft),m=a-p,v=e,f=s,g=r,w=l;else{if("vertical"!==E)return!1;u=Math.round(t.scrollTop),m=c-d,v=i,f=o,g=n,w=h}return!w&&(u>=m||u<=0)||(v>0?u0)&&f&&g}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?"x":"y"]}get isHorizontal(){return"horizontal"===this.options.orientation}get actualScroll(){let t=this.options.wrapper;return this.isHorizontal?t.scrollX??t.scrollLeft:t.scrollY??t.scrollTop}get scroll(){var t;return this.options.infinite?(this.animatedScroll%(t=this.limit)+t)%t:this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this._isScrolling}set isScrolling(t){this._isScrolling!==t&&(this._isScrolling=t,this.updateClassName())}get isStopped(){return this._isStopped}set isStopped(t){this._isStopped!==t&&(this._isStopped=t,this.updateClassName())}get isLocked(){return this._isLocked}set isLocked(t){this._isLocked!==t&&(this._isLocked=t,this.updateClassName())}get isSmooth(){return"smooth"===this.isScrolling}get className(){let t="lenis";return this.options.autoToggle&&(t+=" lenis-autoToggle"),this.isStopped&&(t+=" lenis-stopped"),this.isLocked&&(t+=" lenis-locked"),this.isScrolling&&(t+=" lenis-scrolling"),"smooth"===this.isScrolling&&(t+=" lenis-smooth"),t}updateClassName(){this.cleanUpClassName(),this.className.split(" ").forEach(t=>{this.rootElement.classList.add(t)})}cleanUpClassName(){for(let t of Array.from(this.rootElement.classList))("lenis"===t||t.startsWith("lenis-"))&&this.rootElement.classList.remove(t)}};t.s(["default",0,p])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/098a0lm-b~rn..js b/.next/static/chunks/098a0lm-b~rn..js similarity index 100% rename from build/_next/static/chunks/098a0lm-b~rn..js rename to .next/static/chunks/098a0lm-b~rn..js diff --git a/build/_next/static/chunks/0_54tjq7o59~u.js b/.next/static/chunks/0_54tjq7o59~u.js similarity index 100% rename from build/_next/static/chunks/0_54tjq7o59~u.js rename to .next/static/chunks/0_54tjq7o59~u.js diff --git a/build/_next/static/chunks/074ch-b_0x~v-.js b/.next/static/chunks/0ayxrdbx8m13y.js similarity index 71% rename from build/_next/static/chunks/074ch-b_0x~v-.js rename to .next/static/chunks/0ayxrdbx8m13y.js index c5ff7fc..e0f27c1 100644 --- a/build/_next/static/chunks/074ch-b_0x~v-.js +++ b/.next/static/chunks/0ayxrdbx8m13y.js @@ -1,4 +1,4 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,18566,(e,t,i)=>{t.exports=e.r(76562)},82637,e=>{"use strict";var t=e.i(43476),i=e.i(71645);let n=(0,i.createContext)(null);e.s(["HeaderUIProvider",0,function({children:e}){let[l,a]=(0,i.useState)(!1),[o,r]=(0,i.useState)(!1),s=(0,i.useCallback)(()=>{a(e=>!e),r(!1)},[]),d=(0,i.useCallback)(()=>{r(e=>!e),a(!1)},[]),c=(0,i.useCallback)(()=>{a(!1),r(!1)},[]);return(0,t.jsx)(n.Provider,{value:{isMenuOpen:l,isSidebarOpen:o,toggleMenu:s,toggleSidebar:d,closeAll:c},children:e})},"useHeaderUI",0,function(){let e=(0,i.useContext)(n);if(!e)throw Error("useHeaderUI must be used inside ");return e}])},3374,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(22016),l=e.i(57688),a=e.i(18566),o=e.i(82637);let r={"/":"home","/how-it-works":"how-it-works","/miletruth":"miletruth","/solutions":"solutions","/doormile-wings":"doormile-wings","/empowerment":"entarpreneurship","/express":"express","/about-us":"about","/blog":"blogs"},s={home:["home"],"how-it-works":["how-it-works","how-its-works"],miletruth:["miletruth"],solutions:["solutions"],"doormile-wings":["doormile-wings"],entarpreneurship:["entarpreneurship"],blogs:["blogs"],company:["blogs","how-it-works","about"]};e.s(["default",0,function(){let e=(0,a.usePathname)(),{isMenuOpen:d,isSidebarOpen:c,toggleMenu:m,toggleSidebar:h,closeAll:p}=(0,o.useHeaderUI)(),u=r[e]??"",g=e=>(s[e]??[]).includes(u)?" active":"",f=(t,i,n,l=!1)=>{if(l&&_(),e!==i)return;t.preventDefault();let a=`${i}#${n}`;`${window.location.pathname}${window.location.hash}`!==a&&window.history.pushState(null,"",a),requestAnimationFrame(()=>{let e;(e=document.getElementById(n))?e.scrollIntoView({behavior:"smooth",block:"start"}):window.scrollTo({top:0,behavior:"smooth"})})},[w,x]=(0,i.useState)(!1),[b,v]=(0,i.useState)(!1),[y,j]=(0,i.useState)(!1),[k,N]=(0,i.useState)(!1),_=()=>{N(!1),p()};(0,i.useEffect)(()=>{let e=requestAnimationFrame(()=>{x(!0)});return()=>cancelAnimationFrame(e)},[]),(0,i.useEffect)(()=>{let e=null,t=()=>{null===e&&(e=requestAnimationFrame(()=>{v(window.scrollY>50),e=null}))};return t(),window.addEventListener("scroll",t),()=>{window.removeEventListener("scroll",t),null!==e&&cancelAnimationFrame(e)}},[]);let C=["elementor-element","elementor-element-466de1b","e-con-full","sticky-container-on","e-flex","cut-corner-no","e-con","e-parent","header-hide-until-scroll",w?"header-visible-scrolled":"",b?"dm-header-scrolled":""].filter(Boolean).join(" ");return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsxs)("header",{id:"masthead",itemScope:!0,itemType:"https://schema.org/WPHeader",children:[(0,t.jsx)("p",{className:"main-title bhf-hidden",itemProp:"headline",children:(0,t.jsx)(n.default,{href:"/",title:"Doormile",rel:"home",children:"Doormile"})}),(0,t.jsx)("div",{"data-elementor-type":"wp-post","data-elementor-id":"5180",className:"elementor elementor-5180",children:(0,t.jsxs)("div",{className:C,"data-id":"466de1b","data-element_type":"container","data-settings":'{"position":"absolute"}',style:"/"!==e||w?void 0:{opacity:0,visibility:"hidden"},children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-e052838 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e052838","data-element_type":"container",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-d681ece e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d681ece","data-element_type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-472172e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"472172e","data-element_type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-2f31137 elementor-hidden-laptop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-logico_slide_sidebar","data-id":"2f31137","data-element_type":"widget","data-widget_type":"logico_slide_sidebar.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("div",{className:"logico-slide-sidebar-widget",children:(0,t.jsx)("div",{className:"dropdown-trigger","data-id":"2f31137",onClick:h,children:(0,t.jsx)("span",{className:"dropdown-trigger-icon"})})}),(0,t.jsxs)("div",{style:{zIndex:1e5},className:`slide-sidebar-wrapper slide-sidebar-position-left${c?" active":""}`,id:"side-panel-2f31137",children:[(0,t.jsx)("div",{className:"slide-sidebar-close",onClick:p}),(0,t.jsxs)("div",{className:"slide-sidebar",children:[(0,t.jsx)("div",{className:"slide-sidebar-header",children:(0,t.jsx)("figure",{className:"wp-block-image size-full is-resized",children:(0,t.jsx)(l.default,{width:305,height:58,src:"/images/doormile-logo.png",alt:"Doormile logo",className:"wp-image-5851",style:{width:"210px",height:"auto"},sizes:"(max-width: 305px) 100vw, 305px"})})}),(0,t.jsx)("div",{className:"slide-sidebar-content",tabIndex:0,role:"region","aria-label":"Menu content",children:(0,t.jsx)("div",{id:"block-37",className:"widget widget_block",children:(0,t.jsx)("div",{className:"widget-wrapper",children:(0,t.jsxs)("div",{className:"dm-block-group is-layout-constrained dm-block-group-is-layout-constrained",children:[(0,t.jsx)("div",{className:"wp-block-title",children:(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"18px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Address"})}),(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"14px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Hyderabad"}),(0,t.jsxs)("p",{children:["5th Floor, Vision Ultima,",(0,t.jsx)("br",{}),"Street No.3, Jayabheri Enclave,",(0,t.jsx)("br",{}),"Gachibowli, Hyderabad,",(0,t.jsx)("br",{}),"Telangana 500032."]}),(0,t.jsx)("div",{style:{height:"12px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"14px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Coimbatore"}),(0,t.jsxs)("p",{children:["Mayflower Valencia,",(0,t.jsx)("br",{}),"Near Nava India Bus Stop,",(0,t.jsx)("br",{}),"Avinashi Road,",(0,t.jsx)("br",{}),"Udayampalayam,",(0,t.jsx)("br",{}),"Tamil Nadu 641037."]}),(0,t.jsx)("div",{style:{height:"12px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"14px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Bengaluru"}),(0,t.jsxs)("p",{children:["C612, 6th Floor,",(0,t.jsx)("br",{}),"Trifecta Starlight,",(0,t.jsx)("br",{}),"ITPL Road,",(0,t.jsx)("br",{}),"Garudacharapalya,",(0,t.jsx)("br",{}),"Mahadevapura,",(0,t.jsx)("br",{}),"Bangalore 560048,",(0,t.jsx)("br",{}),"Karnataka, India."]}),(0,t.jsx)("div",{style:{height:"3px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("div",{className:"wp-block-title",children:(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"18px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Contact Us"})}),(0,t.jsx)("p",{children:"Tel : +91 86886 97941"}),(0,t.jsx)("div",{style:{height:"3px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("div",{className:"wp-block-title",children:(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"18px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Email"})}),(0,t.jsx)("p",{children:(0,t.jsx)("a",{href:"mailto:care@doormile.com","data-wplink-edit":"true",children:"care@doormile.com"})}),(0,t.jsx)("div",{style:{height:"3px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsxs)("ul",{className:"wp-block-social-links has-icon-color is-style-logos-only has-background is-layout-flex wp-block-social-links-is-layout-flex",style:{backgroundColor:"#1f1f1f"},children:[(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-facebook has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://www.facebook.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"Facebook"})]})}),(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-x has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://x.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M13.982 10.622 20.54 3h-1.554l-5.693 6.618L8.745 3H3.5l6.876 10.007L3.5 21h1.554l6.012-6.989L15.868 21h5.245l-7.131-10.378Zm-2.128 2.474-.697-.997-5.543-7.93H8l4.474 6.4.697.996 5.815 8.318h-2.387l-4.745-6.787Z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"X"})]})}),(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-linkedin has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://www.linkedin.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"LinkedIn"})]})}),(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-youtube has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://www.youtube.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"YouTube"})]})})]})]})})})}),(0,t.jsx)("div",{className:"slide-sidebar-cta",children:(0,t.jsx)("div",{className:"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex",children:(0,t.jsx)("div",{className:"wp-block-button is-style-simple is-style-theme",children:(0,t.jsx)(n.default,{href:"/contact",className:"wp-block-button__link wp-element-button",style:{borderRadius:"10px"},children:"Get in touch"})})})})]})]})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-846e53d elementor-widget elementor-widget-site-logo","data-id":"846e53d","data-element_type":"widget","data-widget_type":"site-logo.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"hfe-site-logo",children:(0,t.jsx)(n.default,{"data-elementor-open-lightbox":"",className:"elementor-clickable",href:"/",children:(0,t.jsx)("div",{className:"hfe-site-logo-set",children:(0,t.jsxs)("div",{className:"hfe-site-logo-container",children:[(0,t.jsx)(l.default,{width:400,height:76,className:"hfe-site-logo-img logo-desktop elementor-animation-",src:"/images/doormile-white.png",alt:"doormile-logo",priority:!0}),(0,t.jsx)(l.default,{width:400,height:76,className:"hfe-site-logo-img logo-mobile elementor-animation-",src:"/images/doormile-black.png",alt:"doormile-logo",priority:!0})]})})})})})})]}),(0,t.jsx)("div",{className:"elementor-element elementor-element-e44ee7e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e44ee7e","data-element_type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0b7bf6f logico-breakpoint-laptop elementor-widget__width-auto elementor-widget elementor-widget-logico_navigation_menu","data-id":"0b7bf6f","data-element_type":"widget","data-widget_type":"logico_navigation_menu.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("div",{className:"header-menu-container",children:(0,t.jsx)("nav",{children:(0,t.jsxs)("ul",{id:"menu-main-menu",className:"main-menu",children:[(0,t.jsx)("li",{id:"menu-item-10508",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10508${g("home")}`,children:(0,t.jsx)(n.default,{href:"/#home",onClick:e=>f(e,"/","home"),children:"Home"})}),(0,t.jsx)("li",{id:"menu-item-10509",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10509${g("doormile-wings")}`,children:(0,t.jsx)(n.default,{href:"/doormile-wings",prefetch:!0,children:"Wings"})}),(0,t.jsx)("li",{id:"menu-item-10510",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10510${g("miletruth")}`,children:(0,t.jsx)(n.default,{href:"/miletruth#miletruth",onClick:e=>f(e,"/miletruth","miletruth"),children:"MileTruth™ AI"})}),(0,t.jsx)("li",{id:"menu-item-10511",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10511${g("solutions")}`,children:(0,t.jsx)(n.default,{href:"/solutions",prefetch:!0,children:"Solutions"})}),(0,t.jsx)("li",{id:"menu-item-10513",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10513${g("entarpreneurship")}`,children:(0,t.jsx)(n.default,{href:"/empowerment",prefetch:!0,children:"Entrepreneurship"})}),(0,t.jsxs)("li",{id:"menu-item-10535",className:`menu-item menu-item-type-custom menu-item-has-children menu-item-10535${g("company")}`,onMouseEnter:()=>j(!0),onMouseLeave:()=>j(!1),onKeyDown:e=>{"Escape"===e.key&&(j(!1),e.currentTarget.querySelector(":scope > a")?.focus())},onBlur:e=>{e.currentTarget.contains(e.relatedTarget)||j(!1)},children:[(0,t.jsx)("a",{href:"#","aria-haspopup":"true","aria-expanded":y,onFocus:()=>j(!0),onClick:e=>{e.preventDefault(),j(e=>!e)},children:"Company"}),(0,t.jsxs)("ul",{className:"dm-solutions-dropdown",children:[(0,t.jsx)("li",{className:"about"===u?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/about-us#about",onClick:e=>{j(!1),f(e,"/about-us","about")},children:"About"})}),(0,t.jsx)("li",{className:"blogs"===u?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/blog#blogs",onClick:e=>{j(!1),f(e,"/blog","blogs")},children:"Blogs"})}),(0,t.jsx)("li",{className:"how-it-works"===u?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/how-it-works#how-it-works",onClick:e=>{j(!1),f(e,"/how-it-works","how-it-works")},children:"How It Works"})})]})]})]})})}),(0,t.jsx)("div",{className:"menu-trigger","data-id":"0b7bf6f",onClick:()=>{N(!1),m()},children:(0,t.jsx)("span",{className:"menu-trigger-icon",children:(0,t.jsxs)("span",{className:"hamburger",children:[(0,t.jsx)("span",{}),(0,t.jsx)("span",{}),(0,t.jsx)("span",{})]})})}),(0,t.jsxs)("div",{style:{zIndex:1e5},className:`mobile-header-menu-container${d?" active":""}`,id:"mobile-header-0b7bf6f",children:[(0,t.jsx)("div",{className:"mobile-header-row",children:(0,t.jsxs)("div",{className:"header-icons-container",children:[(0,t.jsx)("div",{className:"header-icon login-logout",children:(0,t.jsx)("a",{href:"#",title:"Login/Register",className:"link-login"})}),(0,t.jsx)("div",{className:"header-icon menu-close",onClick:_,children:(0,t.jsx)("span",{className:"menu-close-icon"})})]})}),(0,t.jsx)("nav",{children:(0,t.jsxs)("ul",{id:"menu-main-menu-1",className:"main-menu",children:[(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10508${g("home")}`,children:(0,t.jsx)(n.default,{href:"/#home",onClick:e=>f(e,"/","home",!0),children:"Home"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10509${g("doormile-wings")}`,children:(0,t.jsx)(n.default,{href:"/doormile-wings",prefetch:!0,onClick:_,children:"Wings"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10510${g("miletruth")}`,children:(0,t.jsx)(n.default,{href:"/miletruth#miletruth",onClick:e=>f(e,"/miletruth","miletruth",!0),children:"MileTruth™ AI"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10511${g("solutions")}`,children:(0,t.jsx)(n.default,{href:"/solutions",prefetch:!0,onClick:_,children:"Solutions"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10513${g("entarpreneurship")}`,children:(0,t.jsx)(n.default,{href:"/empowerment",prefetch:!0,onClick:_,children:"Entrepreneurship"})}),(0,t.jsxs)("li",{className:`menu-item menu-item-type-custom menu-item-10535 dm-mobile-solutions${g("company")}${k?" dm-accordion-open":""}`,children:[(0,t.jsxs)("div",{className:"dm-mobile-solutions-row",children:[(0,t.jsx)("a",{href:"#",onClick:e=>{e.preventDefault(),N(e=>!e)},children:"Company"}),(0,t.jsx)("button",{type:"button",className:"dm-mobile-solutions-toggle","aria-label":k?"Close Company menu":"Open Company menu","aria-haspopup":"true","aria-expanded":k,onClick:()=>N(e=>!e),children:(0,t.jsx)("span",{className:"dm-accordion-chevron","aria-hidden":"true"})})]}),(0,t.jsxs)("ul",{className:"dm-mobile-solutions-panel",children:[(0,t.jsx)("li",{className:"about"===u?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/about-us#about",onClick:e=>f(e,"/about-us","about",!0),children:"About"})}),(0,t.jsx)("li",{className:"blogs"===u?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/blog#blogs",onClick:e=>f(e,"/blog","blogs",!0),children:"Blogs"})}),(0,t.jsx)("li",{className:"how-it-works"===u?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/how-it-works#how-it-works",onClick:e=>f(e,"/how-it-works","how-it-works",!0),children:"How It Works"})})]})]})]})}),(0,t.jsxs)("div",{className:"header-mobile-contacts",children:[(0,t.jsxs)("div",{className:"contact-item contact-item-phone",children:[(0,t.jsx)("span",{className:"contact-item-label",children:"Phone"}),(0,t.jsx)("div",{className:"contact-item-value",children:(0,t.jsx)("p",{children:"Tel : +91 86886 97941"})})]}),(0,t.jsxs)("div",{className:"contact-item contact-item-email",children:[(0,t.jsx)("span",{className:"contact-item-label",children:"Email"}),(0,t.jsx)("div",{className:"contact-item-value",children:(0,t.jsx)("p",{children:(0,t.jsx)("a",{href:"mailto:care@doormile.com","data-wplink-edit":"true",children:"care@doormile.com"})})})]})]}),(0,t.jsx)("div",{className:"header-mobile-socials",children:(0,t.jsxs)("ul",{className:"mobile-menu-socials wrapper-socials",children:[(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://www.facebook.com/",target:"_blank","aria-label":"Facebook",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 320 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"})})})}),(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://x.com/",target:"_blank","aria-label":"X (Twitter)",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 512 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"})})})}),(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://www.linkedin.com/",target:"_blank","aria-label":"LinkedIn",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 448 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"})})})}),(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://www.youtube.com/",target:"_blank","aria-label":"YouTube",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 576 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"})})})})]})}),(0,t.jsx)("div",{className:"header-mobile-button",children:(0,t.jsx)(n.default,{className:"logico-alter-button",href:"/contact",children:"Get in Touch"})})]})]})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-f961133 e-con-full elementor-hidden-laptop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"f961133","data-element_type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-cabdb09 elementor-widget elementor-widget-logico_header_button","data-id":"cabdb09","data-element_type":"widget","data-widget_type":"logico_header_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"header-button-container",children:(0,t.jsx)(n.default,{href:"/contact",className:"header-button header-button-animation-fade",children:"Contact Us"})})})})})]})})]}),(0,t.jsx)("style",{suppressHydrationWarning:!0,dangerouslySetInnerHTML:{__html:` +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,18566,(e,t,i)=>{t.exports=e.r(76562)},82637,e=>{"use strict";var t=e.i(43476),i=e.i(71645);let n=(0,i.createContext)(null);e.s(["HeaderUIProvider",0,function({children:e}){let[l,a]=(0,i.useState)(!1),[o,r]=(0,i.useState)(!1),s=(0,i.useCallback)(()=>{a(e=>!e),r(!1)},[]),d=(0,i.useCallback)(()=>{r(e=>!e),a(!1)},[]),c=(0,i.useCallback)(()=>{a(!1),r(!1)},[]);return(0,t.jsx)(n.Provider,{value:{isMenuOpen:l,isSidebarOpen:o,toggleMenu:s,toggleSidebar:d,closeAll:c},children:e})},"useHeaderUI",0,function(){let e=(0,i.useContext)(n);if(!e)throw Error("useHeaderUI must be used inside ");return e}])},3374,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(22016),l=e.i(57688),a=e.i(18566),o=e.i(82637);let r={"/":"home","/how-it-works":"how-it-works","/miletruth":"miletruth","/solutions":"solutions","/about":"about","/doormile-wings":"doormile-wings","/empowerment":"entarpreneurship","/express":"express","/about-us":"about","/blog":"blogs","/contact":"contact","/privacy-policy":"privacy-policy","/terms-of-service":"terms-of-service","/cookie-policy":"cookie-policy"},s={home:["home"],"how-it-works":["how-it-works","how-its-works"],miletruth:["miletruth"],solutions:["solutions"],"doormile-wings":["doormile-wings"],entarpreneurship:["entarpreneurship"],blogs:["blogs"],contact:["contact"],"privacy-policy":["privacy-policy"],"terms-of-service":["terms-of-service"],"cookie-policy":["cookie-policy"],company:["blogs","how-it-works","about"]};e.s(["default",0,function(){let e=(0,a.usePathname)(),{isMenuOpen:d,isSidebarOpen:c,toggleMenu:m,toggleSidebar:h,closeAll:p}=(0,o.useHeaderUI)(),u="/"===e,g=r[e]??"";e.startsWith("/blog/")&&(g="blogs");let f=e=>(s[e]??[]).includes(g)?" active":"",x=(t,i,n,l=!1)=>{if(l&&C(),e!==i)return;t.preventDefault();let a=`${i}#${n}`;`${window.location.pathname}${window.location.hash}`!==a&&window.history.pushState(null,"",a),requestAnimationFrame(()=>{let e;(e=document.getElementById(n))?e.scrollIntoView({behavior:"smooth",block:"start"}):window.scrollTo({top:0,behavior:"smooth"})})},[w,b]=(0,i.useState)(!1),[v,y]=(0,i.useState)(!1),[j,k]=(0,i.useState)(!1),[N,_]=(0,i.useState)(!1),C=()=>{_(!1),p()};(0,i.useEffect)(()=>{let e=requestAnimationFrame(()=>{b(!0)});return()=>cancelAnimationFrame(e)},[]),(0,i.useEffect)(()=>{let e=null,t=()=>{null===e&&(e=requestAnimationFrame(()=>{y(window.scrollY>50),e=null}))};return t(),window.addEventListener("scroll",t),()=>{window.removeEventListener("scroll",t),null!==e&&cancelAnimationFrame(e)}},[]);let S=["elementor-element","elementor-element-466de1b","e-con-full","sticky-container-on","e-flex","cut-corner-no","e-con","e-parent","header-hide-until-scroll",w?"header-visible-scrolled":"",v?"dm-header-scrolled":""].filter(Boolean).join(" ");return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsxs)("header",{id:"masthead",itemScope:!0,itemType:"https://schema.org/WPHeader",children:[(0,t.jsx)("p",{className:"main-title bhf-hidden",itemProp:"headline",children:(0,t.jsx)(n.default,{href:"/",title:"Doormile",rel:"home",children:"Doormile"})}),(0,t.jsx)("div",{"data-elementor-type":"wp-post","data-elementor-id":"5180",className:"elementor elementor-5180",children:(0,t.jsxs)("div",{className:S,"data-id":"466de1b","data-element_type":"container","data-settings":'{"position":"absolute"}',style:u&&!w?{opacity:0,visibility:"hidden"}:void 0,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-e052838 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e052838","data-element_type":"container",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-d681ece e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d681ece","data-element_type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-472172e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"472172e","data-element_type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-2f31137 elementor-hidden-laptop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-logico_slide_sidebar","data-id":"2f31137","data-element_type":"widget","data-widget_type":"logico_slide_sidebar.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("div",{className:"logico-slide-sidebar-widget",children:(0,t.jsx)("div",{className:"dropdown-trigger","data-id":"2f31137",onClick:h,children:(0,t.jsx)("span",{className:"dropdown-trigger-icon"})})}),(0,t.jsxs)("div",{style:{zIndex:1e5},className:`slide-sidebar-wrapper slide-sidebar-position-left${c?" active":""}`,id:"side-panel-2f31137",children:[(0,t.jsx)("div",{className:"slide-sidebar-close",onClick:p}),(0,t.jsxs)("div",{className:"slide-sidebar",children:[(0,t.jsx)("div",{className:"slide-sidebar-header",children:(0,t.jsx)("figure",{className:"wp-block-image size-full is-resized",children:(0,t.jsx)(l.default,{width:305,height:58,src:"/images/doormile-logo.png",alt:"Doormile logo",className:"wp-image-5851",style:{width:"210px",height:"auto"},sizes:"(max-width: 305px) 100vw, 305px"})})}),(0,t.jsx)("div",{className:"slide-sidebar-content",tabIndex:0,role:"region","aria-label":"Menu content",children:(0,t.jsx)("div",{id:"block-37",className:"widget widget_block",children:(0,t.jsx)("div",{className:"widget-wrapper",children:(0,t.jsxs)("div",{className:"dm-block-group is-layout-constrained dm-block-group-is-layout-constrained",children:[(0,t.jsx)("div",{className:"wp-block-title",children:(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"18px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Address"})}),(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"14px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Hyderabad"}),(0,t.jsxs)("p",{children:["5th Floor, Vision Ultima,",(0,t.jsx)("br",{}),"Street No.3, Jayabheri Enclave,",(0,t.jsx)("br",{}),"Gachibowli, Hyderabad,",(0,t.jsx)("br",{}),"Telangana 500032."]}),(0,t.jsx)("div",{style:{height:"12px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"14px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Coimbatore"}),(0,t.jsxs)("p",{children:["Mayflower Valencia,",(0,t.jsx)("br",{}),"Near Nava India Bus Stop,",(0,t.jsx)("br",{}),"Avinashi Road,",(0,t.jsx)("br",{}),"Udayampalayam,",(0,t.jsx)("br",{}),"Tamil Nadu 641037."]}),(0,t.jsx)("div",{style:{height:"12px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"14px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Bengaluru"}),(0,t.jsxs)("p",{children:["C612, 6th Floor,",(0,t.jsx)("br",{}),"Trifecta Starlight,",(0,t.jsx)("br",{}),"ITPL Road,",(0,t.jsx)("br",{}),"Garudacharapalya,",(0,t.jsx)("br",{}),"Mahadevapura,",(0,t.jsx)("br",{}),"Bangalore 560048,",(0,t.jsx)("br",{}),"Karnataka, India."]}),(0,t.jsx)("div",{style:{height:"3px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("div",{className:"wp-block-title",children:(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"18px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Contact Us"})}),(0,t.jsx)("p",{children:"Tel : +91 86886 97941"}),(0,t.jsx)("div",{style:{height:"3px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsx)("div",{className:"wp-block-title",children:(0,t.jsx)("h6",{className:"wp-block-heading has-text-font-font-family",style:{fontSize:"18px",fontStyle:"normal",fontWeight:700,letterSpacing:"0px",textTransform:"none"},children:"Email"})}),(0,t.jsx)("p",{children:(0,t.jsx)("a",{href:"mailto:care@doormile.com","data-wplink-edit":"true",children:"care@doormile.com"})}),(0,t.jsx)("div",{style:{height:"3px"},"aria-hidden":"true",className:"wp-block-spacer"}),(0,t.jsxs)("ul",{className:"wp-block-social-links has-icon-color is-style-logos-only has-background is-layout-flex wp-block-social-links-is-layout-flex",style:{backgroundColor:"#1f1f1f"},children:[(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-facebook has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://www.facebook.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"Facebook"})]})}),(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-x has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://x.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M13.982 10.622 20.54 3h-1.554l-5.693 6.618L8.745 3H3.5l6.876 10.007L3.5 21h1.554l6.012-6.989L15.868 21h5.245l-7.131-10.378Zm-2.128 2.474-.697-.997-5.543-7.93H8l4.474 6.4.697.996 5.815 8.318h-2.387l-4.745-6.787Z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"X"})]})}),(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-linkedin has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://www.linkedin.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"LinkedIn"})]})}),(0,t.jsx)("li",{style:{color:"#ffffff"},className:"wp-social-link wp-social-link-youtube has-white-color wp-block-social-link",children:(0,t.jsxs)("a",{rel:"noopener nofollow",target:"_blank",href:"https://www.youtube.com/",className:"wp-block-social-link-anchor",children:[(0,t.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:(0,t.jsx)("path",{d:"M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"})}),(0,t.jsx)("span",{className:"wp-block-social-link-label screen-reader-text",children:"YouTube"})]})})]})]})})})}),(0,t.jsx)("div",{className:"slide-sidebar-cta",children:(0,t.jsx)("div",{className:"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex",children:(0,t.jsx)("div",{className:"wp-block-button is-style-simple is-style-theme",children:(0,t.jsx)(n.default,{href:"/contact",className:"wp-block-button__link wp-element-button",style:{borderRadius:"10px"},children:"Get in touch"})})})})]})]})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-846e53d elementor-widget elementor-widget-site-logo","data-id":"846e53d","data-element_type":"widget","data-widget_type":"site-logo.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"hfe-site-logo",children:(0,t.jsx)(n.default,{"data-elementor-open-lightbox":"",className:"elementor-clickable",href:"/",children:(0,t.jsx)("div",{className:"hfe-site-logo-set",children:(0,t.jsxs)("div",{className:"hfe-site-logo-container",children:[(0,t.jsx)(l.default,{width:748,height:100,className:"hfe-site-logo-img logo-desktop elementor-animation-",src:"/images/doormile-white.png",alt:"doormile-logo",priority:!0}),(0,t.jsx)(l.default,{width:748,height:100,className:"hfe-site-logo-img logo-mobile elementor-animation-",src:"/images/doormile-black.png",alt:"doormile-logo",priority:!0})]})})})})})})]}),(0,t.jsx)("div",{className:"elementor-element elementor-element-e44ee7e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e44ee7e","data-element_type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0b7bf6f logico-breakpoint-laptop elementor-widget__width-auto elementor-widget elementor-widget-logico_navigation_menu","data-id":"0b7bf6f","data-element_type":"widget","data-widget_type":"logico_navigation_menu.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("div",{className:"header-menu-container",children:(0,t.jsx)("nav",{children:(0,t.jsxs)("ul",{id:"menu-main-menu",className:"main-menu",children:[(0,t.jsx)("li",{id:"menu-item-10508",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10508${f("home")}`,children:(0,t.jsx)(n.default,{href:"/#home",onClick:e=>x(e,"/","home"),children:"Home"})}),(0,t.jsx)("li",{id:"menu-item-10509",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10509${f("doormile-wings")}`,children:(0,t.jsx)(n.default,{href:"/doormile-wings",prefetch:!0,children:"Wings"})}),(0,t.jsx)("li",{id:"menu-item-10510",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10510${f("miletruth")}`,children:(0,t.jsx)(n.default,{href:"/miletruth#miletruth",onClick:e=>x(e,"/miletruth","miletruth"),children:"MileTruth™ AI"})}),(0,t.jsx)("li",{id:"menu-item-10511",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10511${f("solutions")}`,children:(0,t.jsx)(n.default,{href:"/solutions",prefetch:!0,children:"Solutions"})}),(0,t.jsx)("li",{id:"menu-item-10513",className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10513${f("entarpreneurship")}`,children:(0,t.jsx)(n.default,{href:"/empowerment",prefetch:!0,children:"Entrepreneurship"})}),(0,t.jsxs)("li",{id:"menu-item-10535",className:`menu-item menu-item-type-custom menu-item-has-children menu-item-10535${f("company")}`,onMouseEnter:()=>k(!0),onMouseLeave:()=>k(!1),onKeyDown:e=>{"Escape"===e.key&&(k(!1),e.currentTarget.querySelector(":scope > a")?.focus())},onBlur:e=>{e.currentTarget.contains(e.relatedTarget)||k(!1)},children:[(0,t.jsx)("a",{href:"#","aria-haspopup":"true","aria-expanded":j,onFocus:()=>k(!0),onClick:e=>{e.preventDefault(),k(e=>!e)},children:"Company"}),(0,t.jsxs)("ul",{className:"dm-solutions-dropdown",children:[(0,t.jsx)("li",{className:"about"===g?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/about-us#about",onClick:e=>{k(!1),x(e,"/about-us","about")},children:"About"})}),(0,t.jsx)("li",{className:"blogs"===g?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/blog#blogs",onClick:e=>{k(!1),x(e,"/blog","blogs")},children:"Blogs"})}),(0,t.jsx)("li",{className:"how-it-works"===g?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/how-it-works#how-it-works",onClick:e=>{k(!1),x(e,"/how-it-works","how-it-works")},children:"How It Works"})})]})]})]})})}),(0,t.jsx)("div",{className:"menu-trigger","data-id":"0b7bf6f",onClick:()=>{_(!1),m()},children:(0,t.jsx)("span",{className:"menu-trigger-icon",children:(0,t.jsxs)("span",{className:"hamburger",children:[(0,t.jsx)("span",{}),(0,t.jsx)("span",{}),(0,t.jsx)("span",{})]})})}),(0,t.jsxs)("div",{style:{zIndex:1e5},className:`mobile-header-menu-container${d?" active":""}`,id:"mobile-header-0b7bf6f",children:[(0,t.jsx)("div",{className:"mobile-header-row",children:(0,t.jsxs)("div",{className:"header-icons-container",children:[(0,t.jsx)("div",{className:"header-icon login-logout",children:(0,t.jsx)("a",{href:"#",title:"Login/Register",className:"link-login"})}),(0,t.jsx)("div",{className:"header-icon menu-close",onClick:C,children:(0,t.jsx)("span",{className:"menu-close-icon"})})]})}),(0,t.jsx)("nav",{children:(0,t.jsxs)("ul",{id:"menu-main-menu-1",className:"main-menu",children:[(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10508${f("home")}`,children:(0,t.jsx)(n.default,{href:"/#home",onClick:e=>x(e,"/","home",!0),children:"Home"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10509${f("doormile-wings")}`,children:(0,t.jsx)(n.default,{href:"/doormile-wings",prefetch:!0,onClick:C,children:"Wings"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10510${f("miletruth")}`,children:(0,t.jsx)(n.default,{href:"/miletruth#miletruth",onClick:e=>x(e,"/miletruth","miletruth",!0),children:"MileTruth™ AI"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10511${f("solutions")}`,children:(0,t.jsx)(n.default,{href:"/solutions",prefetch:!0,onClick:C,children:"Solutions"})}),(0,t.jsx)("li",{className:`menu-item menu-item-type-custom menu-item-object-custom menu-item-10513${f("entarpreneurship")}`,children:(0,t.jsx)(n.default,{href:"/empowerment",prefetch:!0,onClick:C,children:"Entrepreneurship"})}),(0,t.jsxs)("li",{className:`menu-item menu-item-type-custom menu-item-10535 dm-mobile-solutions${f("company")}${N?" dm-accordion-open":""}`,children:[(0,t.jsxs)("div",{className:"dm-mobile-solutions-row",children:[(0,t.jsx)("a",{href:"#",onClick:e=>{e.preventDefault(),_(e=>!e)},children:"Company"}),(0,t.jsx)("button",{type:"button",className:"dm-mobile-solutions-toggle","aria-label":N?"Close Company menu":"Open Company menu","aria-haspopup":"true","aria-expanded":N,onClick:()=>_(e=>!e),children:(0,t.jsx)("span",{className:"dm-accordion-chevron","aria-hidden":"true"})})]}),(0,t.jsxs)("ul",{className:"dm-mobile-solutions-panel",children:[(0,t.jsx)("li",{className:"about"===g?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/about-us#about",onClick:e=>x(e,"/about-us","about",!0),children:"About"})}),(0,t.jsx)("li",{className:"blogs"===g?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/blog#blogs",onClick:e=>x(e,"/blog","blogs",!0),children:"Blogs"})}),(0,t.jsx)("li",{className:"how-it-works"===g?"dm-child-active":"",children:(0,t.jsx)(n.default,{href:"/how-it-works#how-it-works",onClick:e=>x(e,"/how-it-works","how-it-works",!0),children:"How It Works"})})]})]})]})}),(0,t.jsxs)("div",{className:"header-mobile-contacts",children:[(0,t.jsxs)("div",{className:"contact-item contact-item-phone",children:[(0,t.jsx)("span",{className:"contact-item-label",children:"Phone"}),(0,t.jsx)("div",{className:"contact-item-value",children:(0,t.jsx)("p",{children:"Tel : +91 86886 97941"})})]}),(0,t.jsxs)("div",{className:"contact-item contact-item-email",children:[(0,t.jsx)("span",{className:"contact-item-label",children:"Email"}),(0,t.jsx)("div",{className:"contact-item-value",children:(0,t.jsx)("p",{children:(0,t.jsx)("a",{href:"mailto:care@doormile.com","data-wplink-edit":"true",children:"care@doormile.com"})})})]})]}),(0,t.jsx)("div",{className:"header-mobile-socials",children:(0,t.jsxs)("ul",{className:"mobile-menu-socials wrapper-socials",children:[(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://www.facebook.com/",target:"_blank","aria-label":"Facebook",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 320 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"})})})}),(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://x.com/",target:"_blank","aria-label":"X (Twitter)",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 512 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"})})})}),(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://www.linkedin.com/",target:"_blank","aria-label":"LinkedIn",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 448 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"})})})}),(0,t.jsx)("li",{children:(0,t.jsx)("a",{href:"https://www.youtube.com/",target:"_blank","aria-label":"YouTube",rel:"noreferrer",children:(0,t.jsx)("svg",{"aria-hidden":"true",width:"18",height:"18",viewBox:"0 0 576 512",xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",children:(0,t.jsx)("path",{d:"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"})})})})]})}),(0,t.jsx)("div",{className:"header-mobile-button",children:(0,t.jsx)(n.default,{className:"logico-alter-button",href:"/contact",children:"Get in Touch"})})]})]})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-f961133 e-con-full elementor-hidden-laptop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"f961133","data-element_type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-cabdb09 elementor-widget elementor-widget-logico_header_button","data-id":"cabdb09","data-element_type":"widget","data-widget_type":"logico_header_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"header-button-container",children:(0,t.jsx)(n.default,{href:"/contact",className:"header-button header-button-animation-fade",children:"Contact Us"})})})})})]})})]}),(0,t.jsx)("style",{suppressHydrationWarning:!0,dangerouslySetInnerHTML:{__html:` /* ── Off-canvas menu: full-height flex column ── Header (logo) at top, scrollable content in the middle, and the "Get in touch" CTA pinned at the bottom — so the panel stays @@ -537,7 +537,7 @@ color: var(--logico-light-text-color); text-decoration: underline; } - `}})]})}])},58234,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(22016),l=e.i(57688),a=e.i(47167);class o{constructor(e=0,t="Network Error"){this.status=e,this.text=t}}let r={origin:"https://api.emailjs.com",blockHeadless:!1,storageProvider:(()=>{if("u">typeof localStorage)return{get:e=>Promise.resolve(localStorage.getItem(e)),set:(e,t)=>Promise.resolve(localStorage.setItem(e,t)),remove:e=>Promise.resolve(localStorage.removeItem(e))}})()},s=e=>e?"string"==typeof e?{publicKey:e}:"[object Object]"===e.toString()?e:{}:{},d=async(e,t,i={})=>{let n=await fetch(r.origin+e,{method:"POST",headers:i,body:t}),l=await n.text(),a=new o(n.status,l);if(n.ok)return a;throw a},c=(e,t,i)=>{if(!e||"string"!=typeof e)throw"The public key is required. Visit https://dashboard.emailjs.com/admin/account";if(!t||"string"!=typeof t)throw"The service ID is required. Visit https://dashboard.emailjs.com/admin";if(!i||"string"!=typeof i)throw"The template ID is required. Visit https://dashboard.emailjs.com/admin/templates"},m=e=>e.webdriver||!e.languages||0===e.languages.length,h=()=>new o(451,"Unavailable For Headless Browser"),p=(e,t)=>{let i;if(!e.list?.length||!e.watchVariable)return!1;var n=e.list,l=e.watchVariable;if(!Array.isArray(n))throw"The BlockList list has to be an array";if("string"!=typeof l)throw"The BlockList watchVariable has to be a string";let a=(i=e.watchVariable,t instanceof FormData?t.get(i):t[i]);return"string"==typeof a&&e.list.includes(a)},u=()=>new o(403,"Forbidden"),g=async(e,t,i)=>{let n=Number(await i.get(e)||0);return t-Date.now()+n},f=async(e,t,i)=>{if(!t.throttle||!i)return!1;var n=t.throttle,l=t.id;if("number"!=typeof n||n<0)throw"The LimitRate throttle has to be a positive number";if(l&&"string"!=typeof l)throw"The LimitRate ID has to be a non-empty string";let a=t.id||e;return await g(a,t.throttle,i)>0||(await i.set(a,Date.now().toString()),!1)},w=()=>new o(429,"Too Many Requests"),x=async(e,t,i,n)=>{let l=s(n),a=l.publicKey||r.publicKey,o=l.blockHeadless||r.blockHeadless,g=l.storageProvider||r.storageProvider,x={...r.blockList,...l.blockList},b={...r.limitRate,...l.limitRate};if(o&&m(navigator))return Promise.reject(h());c(a,e,t);if(i&&"[object Object]"!==i.toString())throw"The template params have to be the object. Visit https://www.emailjs.com/docs/sdk/send/";return i&&p(x,i)?Promise.reject(u()):await f(location.pathname,b,g)?Promise.reject(w()):d("/api/v1.0/email/send",JSON.stringify({lib_version:"4.4.1",user_id:a,service_id:e,template_id:t,template_params:i}),{"Content-type":"application/json"})};async function b(e){let t=a.default.env.NEXT_PUBLIC_EMAILJS_SERVICE_ID,i=a.default.env.NEXT_PUBLIC_EMAILJS_TEMPLATE_ID,n=a.default.env.NEXT_PUBLIC_EMAILJS_PUBLIC_KEY;if(!t||!i||!n)return console.warn("EmailJS credentials are not configured. Falling back to mock success."),await new Promise(e=>setTimeout(e,800)),{success:!0,mock:!0};try{return await x(t,i,{name:e.fullName,email:e.email,subject:e.subject,message:e.message},n),{success:!0}}catch(e){throw console.error("EmailJS sending failed:",e),e}}var v=e.i(2018);e.s(["default",0,function(){let e={"--grid-column-gap":"52px","--grid-row-gap":"18px",columnGap:"52px",rowGap:"18px"},[a,o]=(0,i.useState)(!1),[r,s]=(0,i.useState)({fullName:"",email:"",subject:"",message:""}),[d,c]=(0,i.useState)("idle");(0,i.useEffect)(()=>{let e=()=>{window.scrollY>300?o(!0):o(!1)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]);let m=e=>{let{name:t,value:i}=e.target;s(e=>({...e,[t]:i})),("success"===d||"error"===d)&&c("idle")},h=async e=>{e.preventDefault(),c("submitting");try{(await b(r)).success?(c("success"),s({fullName:"",email:"",subject:"",message:""})):(console.error("Failed to submit contact form"),c("error"))}catch(e){console.error("Error submitting contact form:",e),c("error")}};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` + `}})]})}])},95187,(e,t,i)=>{"use strict";Object.defineProperty(i,"__esModule",{value:!0});var n={callServer:function(){return a.callServer},createServerReference:function(){return r.createServerReference},findSourceMapURL:function(){return o.findSourceMapURL}};for(var l in n)Object.defineProperty(i,l,{enumerable:!0,get:n[l]});let a=e.r(32120),o=e.r(92245),r=e.r(35326)},58234,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(22016),l=e.i(57688),a=e.i(95187);let o=(0,a.createServerReference)("40e2b8629200f7c165ff2ddf03a4abb61bdbd79eca",a.callServer,void 0,a.findSourceMapURL,"sendEmailAction");var r=e.i(2018);e.s(["default",0,function(){let e={"--grid-column-gap":"52px","--grid-row-gap":"18px",columnGap:"52px",rowGap:"18px"},[a,s]=(0,i.useState)(!1),[d,c]=(0,i.useState)({fullName:"",email:"",subject:"",message:""}),[m,h]=(0,i.useState)("idle");(0,i.useEffect)(()=>{let e=()=>{window.scrollY>300?s(!0):s(!1)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]);let p=e=>{let{name:t,value:i}=e.target;c(e=>({...e,[t]:i})),("success"===m||"error"===m)&&h("idle")},u=async e=>{e.preventDefault(),h("submitting");try{let e=await o(d);e.success?(h("success"),c({fullName:"",email:"",subject:"",message:""})):(console.error("Failed to submit contact form:",e.error),h("error"))}catch(e){console.error("Error submitting contact form:",e),h("error")}};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` .logico-form-field.dm-field-filled .logico-label-wrapper>label { font-size: 14px; top: -14px; @@ -551,7 +551,7 @@ left: 100%; right: initial; } - `}}),(0,t.jsx)("footer",{"data-rocket-location-hash":"1eeca93394c4fc14089e9d12a2a92e22",itemScope:!0,itemType:"https://schema.org/WPFooter",id:"colophon",role:"contentinfo",children:(0,t.jsx)("div",{className:"footer-width-fixer",children:(0,t.jsx)("div",{"data-elementor-type":"wp-post","data-elementor-id":"6585",className:"elementor elementor-6585",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-3cd920c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"3cd920c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-b29b8fc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b29b8fc","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-ef6fa6d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"ef6fa6d","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-9990148 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"9990148","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-8899bdf elementor-absolute elementor-widget elementor-widget-image","data-id":"8899bdf","data-element_type":"widget","data-e-type":"widget","data-settings":'{"_position":"absolute"}',"data-widget_type":"image.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(l.default,{width:965,height:474,src:"/images/bg-map.png",className:"attachment-full size-full wp-image-1148",alt:""})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-a0e7516 elementor-widget elementor-widget-logico_heading","data-id":"a0e7516","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"/ get in touch /"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-687d944 elementor-widget elementor-widget-logico_heading","data-id":"687d944","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(v.ScrollReveal,{delay:.1,duration:.8,yOffset:25,children:(0,t.jsx)("h3",{className:"logico-title",style:{color:"white"},children:"We are always ready to help you and answer your questions"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-670d1b2 elementor-widget elementor-widget-text-editor","data-id":"670d1b2","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Connecting businesses with fast, secure, smart deliveries."})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-2631b42 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"2631b42","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-df89993 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"df89993","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-69b6892 elementor-widget elementor-widget-logico_heading","data-id":"69b6892","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsx)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:(0,t.jsx)("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z"})}),(0,t.jsx)("span",{children:"Contect"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-87be926 elementor-widget elementor-widget-text-editor","data-id":"87be926","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Tel : +91 86886 97941"})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-f5d8e63 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"f5d8e63","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-774e540 elementor-widget elementor-widget-logico_heading","data-id":"774e540","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsxs)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[(0,t.jsx)("path",{d:"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"}),(0,t.jsx)("circle",{cx:"12",cy:"10",r:"3"})]}),(0,t.jsx)("span",{children:"Address"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-9c1cf03 elementor-widget elementor-widget-text-editor","data-id":"9c1cf03","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"5th Floor, Vision Ultima, Street No.3, Jayabheri Enclave, Gachibowli, Hyderabad, Telangana 500032."})})})]})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-645be8d e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"645be8d","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-a96d151 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"a96d151","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-37e647f elementor-widget elementor-widget-logico_heading","data-id":"37e647f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsxs)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[(0,t.jsx)("rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}),(0,t.jsx)("path",{d:"m22 7-10 5L2 7"})]}),(0,t.jsx)("span",{children:"Email"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-ba67644 elementor-widget elementor-widget-text-editor","data-id":"ba67644","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:(0,t.jsx)("a",{href:"mailto:care@doormile.com",children:"care@doormile.com"})})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-9ba4b82 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"9ba4b82","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-e9a5d79 elementor-widget elementor-widget-logico_heading","data-id":"e9a5d79","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsxs)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[(0,t.jsx)("circle",{cx:"18",cy:"5",r:"3"}),(0,t.jsx)("circle",{cx:"6",cy:"12",r:"3"}),(0,t.jsx)("circle",{cx:"18",cy:"19",r:"3"}),(0,t.jsx)("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),(0,t.jsx)("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})]}),(0,t.jsx)("span",{children:"Social"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-a6bccba elementor-shape-square elementor-grid-0 elementor-widget elementor-widget-social-icons","data-id":"a6bccba","data-element_type":"widget","data-e-type":"widget","data-widget_type":"social-icons.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-social-icons-wrapper elementor-grid",role:"list",style:e,children:[(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-38e1bcc",href:"https://www.linkedin.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"LinkedIn"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-linkedin-in",viewBox:"0 0 448 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"})})]})}),(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-b0d5e1f",href:"https://www.youtube.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"YouTube"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-youtube",viewBox:"0 0 576 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"})})]})})]})})})]})]})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-a5c503d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"a5c503d","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-535776a elementor-widget elementor-widget-logico_heading","data-id":"535776a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Get in Touch"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-0e6fedf elementor-widget elementor-widget-logico_wpforms","data-id":"0e6fedf","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_wpforms.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-wpforms-widget",children:(0,t.jsx)("div",{className:"wpforms-container wpforms-render-modern",id:"wpforms-369",children:(0,t.jsxs)("form",{id:"wpforms-form-369",className:"wpforms-validate wpforms-form",onSubmit:h,children:[(0,t.jsxs)("div",{className:"wpforms-field-container",children:[(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${r.fullName?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Full name"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-name",children:"Full name"})]}),(0,t.jsx)("input",{type:"text",id:"footer-field-name",className:"wpforms-field-large",name:"fullName",value:r.fullName,onChange:m,required:!0})]}),(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${r.email?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Email"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-email",children:"Email"})]}),(0,t.jsx)("input",{type:"email",id:"footer-field-email",className:"wpforms-field-large",name:"email",value:r.email,onChange:m,required:!0})]}),(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${r.subject?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Subject"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-subject",children:"Subject"})]}),(0,t.jsx)("input",{type:"text",id:"footer-field-subject",className:"wpforms-field-large",name:"subject",value:r.subject,onChange:m,required:!0})]}),(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${r.message?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Message"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-message",children:"Message"})]}),(0,t.jsx)("textarea",{id:"footer-field-message",className:"wpforms-field-large",name:"message",value:r.message,onChange:m,required:!0})]})]}),(0,t.jsxs)("div",{className:"wpforms-submit-container",children:[(0,t.jsx)("button",{type:"submit",id:"wpforms-submit-369",className:"logico-alter-button wpforms-submit",disabled:"submitting"===d,children:"submitting"===d?"Sending...":"Send a message"}),"success"===d&&(0,t.jsx)("div",{style:{color:"#4caf50",marginTop:"10px",fontSize:"14px"},children:"Message sent successfully."}),"error"===d&&(0,t.jsx)("div",{style:{color:"#f44336",marginTop:"10px",fontSize:"14px"},children:"Failed to send message. Please try again."})]})]})})})})})]})]}),(0,t.jsx)("div",{className:"elementor-element elementor-element-e183a77 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e183a77","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-5219697 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5219697","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-e6af8aa elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"e6af8aa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(v.ScrollReveal,{delay:.1,duration:.8,yOffset:25,children:(0,t.jsxs)("h2",{className:"logico-title",children:["Delivered ",(0,t.jsx)("span",{style:{color:"#c01227"},children:"on time"})," with no hassle."]})})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-ba22941 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"ba22941","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-54629ca elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"54629ca","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})})}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-3f1ba7a e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3f1ba7a","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-64e2e81 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"64e2e81","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-b5c897d elementor-widget elementor-widget-image","data-id":"b5c897d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(n.default,{href:"/",children:(0,t.jsx)(l.default,{width:300,height:57,src:"/images/logo-slogan.png",style:{width:"280px",height:"auto"},className:"attachment-full size-full wp-image-5851",alt:"Doormile Tagline"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-e4e6486 elementor-shape-square elementor-grid-0 elementor-widget elementor-widget-social-icons","data-id":"e4e6486","data-element_type":"widget","data-e-type":"widget","data-widget_type":"social-icons.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-social-icons-wrapper elementor-grid",role:"list",style:e,children:[(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-linkedin-in",href:"https://www.linkedin.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"LinkedIn"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-linkedin-in",viewBox:"0 0 448 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"})})]})}),(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-youtube",href:"https://www.youtube.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"YouTube"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-youtube",viewBox:"0 0 576 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"})})]})})]})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-5b73dd3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5b73dd3","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-10ead4d elementor-widget elementor-widget-logico_heading","data-id":"10ead4d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Solutions"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-b2507df elementor-widget elementor-widget-logico_custom_navigation_menu","data-id":"b2507df","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_custom_navigation_menu.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("ul",{className:"logico-custom-menu-widget",children:[(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/miletruth",children:"MileTruth™"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/how-it-works",children:"How It Works"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/solutions",children:"Use Cases"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/contact",children:"Request Demo"})})]})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-451f15c e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"451f15c","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-0ec06ff elementor-widget elementor-widget-logico_heading","data-id":"0ec06ff","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Services"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-a219b7d elementor-widget elementor-widget-logico_custom_navigation_menu","data-id":"a219b7d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_custom_navigation_menu.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("ul",{className:"logico-custom-menu-widget",children:[(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/doormile-wings",children:"Doormile Wings"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/about-us",children:"About Us"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/about-us#women-entrepreneurship",children:"Women entrepreneurship"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/blog",children:"Blog"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/contact",children:"Contact"})})]})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-44a1f5d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"44a1f5d","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-0edc8fd elementor-widget elementor-widget-logico_heading","data-id":"0edc8fd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Legal"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-189484a elementor-widget elementor-widget-logico_custom_navigation_menu","data-id":"189484a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_custom_navigation_menu.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("ul",{className:"logico-custom-menu-widget",children:[(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/privacy-policy",children:"Privacy Policy"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/terms-of-service",children:"Terms Service"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/cookie-policy",children:"Cookie Policy"})})]})})})]})]})]})})})})})}),(0,t.jsx)("div",{className:`footer-scroll-top ${a?"active":""}`,onClick:()=>{window.scrollTo({top:0,behavior:"smooth"})},style:{cursor:"pointer"}}),(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` + `}}),(0,t.jsx)("footer",{"data-rocket-location-hash":"1eeca93394c4fc14089e9d12a2a92e22",itemScope:!0,itemType:"https://schema.org/WPFooter",id:"colophon",role:"contentinfo",children:(0,t.jsx)("div",{className:"footer-width-fixer",children:(0,t.jsx)("div",{"data-elementor-type":"wp-post","data-elementor-id":"6585",className:"elementor elementor-6585",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-3cd920c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"3cd920c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-b29b8fc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"b29b8fc","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-ef6fa6d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"ef6fa6d","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-9990148 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"9990148","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-8899bdf elementor-absolute elementor-widget elementor-widget-image","data-id":"8899bdf","data-element_type":"widget","data-e-type":"widget","data-settings":'{"_position":"absolute"}',"data-widget_type":"image.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(l.default,{width:965,height:474,src:"/images/bg-map.png",className:"attachment-full size-full wp-image-1148",alt:""})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-a0e7516 elementor-widget elementor-widget-logico_heading","data-id":"a0e7516","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"/ get in touch /"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-687d944 elementor-widget elementor-widget-logico_heading","data-id":"687d944","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(r.ScrollReveal,{delay:.1,duration:.8,yOffset:25,children:(0,t.jsx)("h3",{className:"logico-title",style:{color:"white"},children:"We are always ready to help you and answer your questions"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-670d1b2 elementor-widget elementor-widget-text-editor","data-id":"670d1b2","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Connecting businesses with fast, secure, smart deliveries."})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-2631b42 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"2631b42","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-df89993 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"df89993","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-69b6892 elementor-widget elementor-widget-logico_heading","data-id":"69b6892","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsx)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:(0,t.jsx)("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z"})}),(0,t.jsx)("span",{children:"Contact"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-87be926 elementor-widget elementor-widget-text-editor","data-id":"87be926","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Tel : +91 86886 97941"})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-f5d8e63 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"f5d8e63","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-774e540 elementor-widget elementor-widget-logico_heading","data-id":"774e540","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsxs)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[(0,t.jsx)("path",{d:"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"}),(0,t.jsx)("circle",{cx:"12",cy:"10",r:"3"})]}),(0,t.jsx)("span",{children:"Address"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-9c1cf03 elementor-widget elementor-widget-text-editor","data-id":"9c1cf03","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"5th Floor, Vision Ultima, Street No.3, Jayabheri Enclave, Gachibowli, Hyderabad, Telangana 500032."})})})]})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-645be8d e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"645be8d","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-a96d151 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"a96d151","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-37e647f elementor-widget elementor-widget-logico_heading","data-id":"37e647f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsxs)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[(0,t.jsx)("rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}),(0,t.jsx)("path",{d:"m22 7-10 5L2 7"})]}),(0,t.jsx)("span",{children:"Email"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-ba67644 elementor-widget elementor-widget-text-editor","data-id":"ba67644","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:(0,t.jsx)("a",{href:"mailto:care@doormile.com",children:"care@doormile.com"})})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-9ba4b82 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"9ba4b82","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-e9a5d79 elementor-widget elementor-widget-logico_heading","data-id":"e9a5d79","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title dm-foot-label",children:[(0,t.jsxs)("svg",{className:"dm-foot-ic",width:"15",height:"15",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round","aria-hidden":"true",children:[(0,t.jsx)("circle",{cx:"18",cy:"5",r:"3"}),(0,t.jsx)("circle",{cx:"6",cy:"12",r:"3"}),(0,t.jsx)("circle",{cx:"18",cy:"19",r:"3"}),(0,t.jsx)("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),(0,t.jsx)("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})]}),(0,t.jsx)("span",{children:"Social"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-a6bccba elementor-shape-square elementor-grid-0 elementor-widget elementor-widget-social-icons","data-id":"a6bccba","data-element_type":"widget","data-e-type":"widget","data-widget_type":"social-icons.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-social-icons-wrapper elementor-grid",role:"list",style:e,children:[(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-38e1bcc",href:"https://www.linkedin.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"LinkedIn"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-linkedin-in",viewBox:"0 0 448 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"})})]})}),(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-b0d5e1f",href:"https://www.youtube.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"YouTube"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-youtube",viewBox:"0 0 576 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"})})]})})]})})})]})]})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-a5c503d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"a5c503d","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-535776a elementor-widget elementor-widget-logico_heading","data-id":"535776a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Get in Touch"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-0e6fedf elementor-widget elementor-widget-logico_wpforms","data-id":"0e6fedf","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_wpforms.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-wpforms-widget",children:(0,t.jsx)("div",{className:"wpforms-container wpforms-render-modern",id:"wpforms-369",children:(0,t.jsxs)("form",{id:"wpforms-form-369",className:"wpforms-validate wpforms-form",onSubmit:u,children:[(0,t.jsxs)("div",{className:"wpforms-field-container",children:[(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${d.fullName?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Full name"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-name",children:"Full name"})]}),(0,t.jsx)("input",{type:"text",id:"footer-field-name",className:"wpforms-field-large",name:"fullName",value:d.fullName,onChange:p,required:!0})]}),(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${d.email?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Email"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-email",children:"Email"})]}),(0,t.jsx)("input",{type:"email",id:"footer-field-email",className:"wpforms-field-large",name:"email",value:d.email,onChange:p,required:!0})]}),(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${d.subject?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Subject"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-subject",children:"Subject"})]}),(0,t.jsx)("input",{type:"text",id:"footer-field-subject",className:"wpforms-field-large",name:"subject",value:d.subject,onChange:p,required:!0})]}),(0,t.jsxs)("div",{className:`wpforms-field-wrapper logico-form-field${d.message?" dm-field-filled":""}`,children:[(0,t.jsxs)("div",{className:"logico-label-wrapper",style:{marginBottom:"12px"},children:[(0,t.jsx)("div",{className:"logico-label-placeholder",children:(0,t.jsx)("div",{className:"logico-label-placeholder-text",children:"Message"})}),(0,t.jsx)("label",{className:"wpforms-field-label",htmlFor:"footer-field-message",children:"Message"})]}),(0,t.jsx)("textarea",{id:"footer-field-message",className:"wpforms-field-large",name:"message",value:d.message,onChange:p,required:!0})]})]}),(0,t.jsxs)("div",{className:"wpforms-submit-container",children:[(0,t.jsx)("button",{type:"submit",id:"wpforms-submit-369",className:"logico-alter-button wpforms-submit",disabled:"submitting"===m,children:"submitting"===m?"Sending...":"Send a message"}),"success"===m&&(0,t.jsx)("div",{style:{marginTop:"16px",color:"#4CAF50",fontSize:"14px",fontWeight:"bold"},children:"Message sent successfully!"}),"error"===m&&(0,t.jsx)("div",{style:{color:"#f44336",marginTop:"10px",fontSize:"14px"},children:"Failed to send message. Please try again."})]})]})})})})})]})]}),(0,t.jsx)("div",{className:"elementor-element elementor-element-e183a77 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e183a77","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-5219697 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5219697","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-e6af8aa elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"e6af8aa","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(r.ScrollReveal,{delay:.1,duration:.8,yOffset:25,children:(0,t.jsxs)("h2",{className:"logico-title",children:["Delivered ",(0,t.jsx)("span",{style:{color:"#c01227"},children:"on time"})," with no hassle."]})})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-ba22941 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"ba22941","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-54629ca elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"54629ca","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})})}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-3f1ba7a e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3f1ba7a","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-64e2e81 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"64e2e81","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-b5c897d elementor-widget elementor-widget-image","data-id":"b5c897d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(n.default,{href:"/",children:(0,t.jsx)(l.default,{width:748,height:184,src:"/images/logo-slogan.png",style:{width:"280px",height:"auto"},className:"attachment-full size-full wp-image-5851",alt:"Doormile Tagline"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-e4e6486 elementor-shape-square elementor-grid-0 elementor-widget elementor-widget-social-icons","data-id":"e4e6486","data-element_type":"widget","data-e-type":"widget","data-widget_type":"social-icons.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-social-icons-wrapper elementor-grid",role:"list",style:e,children:[(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-linkedin-in",href:"https://www.linkedin.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"LinkedIn"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-linkedin-in",viewBox:"0 0 448 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"})})]})}),(0,t.jsx)("span",{className:"elementor-grid-item",role:"listitem",style:{padding:"0 15px"},children:(0,t.jsxs)("a",{className:"elementor-icon elementor-social-icon elementor-social-icon-youtube",href:"https://www.youtube.com",target:"_blank",rel:"noopener noreferrer",children:[(0,t.jsx)("span",{className:"elementor-screen-only",children:"YouTube"}),(0,t.jsx)("svg",{"aria-hidden":"true",className:"e-font-icon-svg e-fab-youtube",viewBox:"0 0 576 512",xmlns:"http://www.w3.org/2000/svg",children:(0,t.jsx)("path",{d:"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"})})]})})]})})})]}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5b73dd3 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5b73dd3","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-b2507df elementor-widget elementor-widget-logico_custom_navigation_menu","data-id":"b2507df","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_custom_navigation_menu.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("ul",{className:"logico-custom-menu-widget",children:[(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/miletruth",children:"MileTruth™"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/how-it-works",children:"How It Works"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/solutions",children:"Use Cases"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/contact",children:"Request Demo"})})]})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-451f15c e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"451f15c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-a219b7d elementor-widget elementor-widget-logico_custom_navigation_menu","data-id":"a219b7d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_custom_navigation_menu.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("ul",{className:"logico-custom-menu-widget",children:[(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/doormile-wings",children:"Doormile Wings"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/about-us",children:"About Us"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/about-us#women-entrepreneurship",children:"Women entrepreneurship"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/blog",children:"Blog"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/contact",children:"Contact"})})]})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-44a1f5d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"44a1f5d","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-189484a elementor-widget elementor-widget-logico_custom_navigation_menu","data-id":"189484a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_custom_navigation_menu.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("ul",{className:"logico-custom-menu-widget",children:[(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/privacy-policy",children:"Privacy Policy"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/terms-of-service",children:"Terms of Service"})}),(0,t.jsx)("li",{children:(0,t.jsx)(n.default,{href:"/cookie-policy",children:"Cookie Policy"})})]})})})})]})]})})})})})}),(0,t.jsx)("div",{className:`footer-scroll-top ${a?"active":""}`,onClick:()=>{window.scrollTo({top:0,behavior:"smooth"})},style:{cursor:"pointer"}}),(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` .elementor-6585 .elementor-element.elementor-element-e6af8aa .logico-title, .elementor-6585 .elementor-element.elementor-element-3f1ba7a .logico-title, .elementor-6585 .elementor-element.elementor-element-3f1ba7a .logico-custom-menu-widget { diff --git a/build/_next/static/chunks/0b561qo91.1jg.js b/.next/static/chunks/0b561qo91.1jg.js similarity index 100% rename from build/_next/static/chunks/0b561qo91.1jg.js rename to .next/static/chunks/0b561qo91.1jg.js diff --git a/build/_next/static/chunks/0b~g01t48jn6q.js b/.next/static/chunks/0b~g01t48jn6q.js similarity index 100% rename from build/_next/static/chunks/0b~g01t48jn6q.js rename to .next/static/chunks/0b~g01t48jn6q.js diff --git a/build/_next/static/chunks/0cbrtnt1~j.f_.js b/.next/static/chunks/0cbrtnt1~j.f_.js similarity index 100% rename from build/_next/static/chunks/0cbrtnt1~j.f_.js rename to .next/static/chunks/0cbrtnt1~j.f_.js diff --git a/.next/static/chunks/0ckcqe5on274m.js b/.next/static/chunks/0ckcqe5on274m.js new file mode 100644 index 0000000..70db684 --- /dev/null +++ b/.next/static/chunks/0ckcqe5on274m.js @@ -0,0 +1 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,64083,e=>{"use strict";var t=e.i(43476),r=e.i(71645),n=e.i(75056),i=e.i(25234),o=e.i(28600),s=e.i(79877),a=e.i(33623);let l="#020617",c="#00E5FF",u="#22C55E",h="#EF4444",p=(e,t,r)=>e+(t-e)*r;function m(e,t,r){let n,i=(n=(r-e)/(t-e||1))<0?0:n>1?1:n;return i*i*(3-2*i)}function f(e,t,r,n){return p(e,t,1-Math.exp(-r*n))}function d(e){let t=43758.5453*Math.sin(127.1*e+311.7);return t-Math.floor(t)}var g=e.i(90072);let x=new g.Color(c),j=new g.Color(h),M=new g.Color(u),y=Array.from({length:5},(e,t)=>{let r=t/5*Math.PI*2+.3,n=7+3*d(7*t+1),i=Math.cos(r)*n,o=Math.sin(r)*n;return new g.Vector3(i,.1,o)}),v=r.default.memo(function({progress:e}){let n=(0,r.useRef)(null),o=(0,r.useRef)([]),s=(0,r.useRef)([]),a=(0,r.useRef)([]),l=(0,r.useRef)(0),u=(0,r.useMemo)(()=>y.map(e=>{let t=[new g.Vector3(0,.15,0),new g.Vector3(.5*e.x,.6,.5*e.z),new g.Vector3(e.x,.15,e.z)];return new g.CatmullRomCurve3(t).getPoints(24)}),[]);return(0,i.useFrame)((t,r)=>{let i=e.current??0;l.current=f(l.current,i,3,r);let c=l.current,u=t.clock.elapsedTime;n.current&&(n.current.position.y=.04*Math.sin(1.2*u)),o.current.forEach((e,t)=>{e&&(e.rotation.y=u*(.8+.2*t))}),s.current.forEach((e,t)=>{if(e){let r=m(.45,.8,c);e.color.copy(j).lerp(t%2==0?x:M,r),e.opacity=p(.12,.7,r)*(.8+.2*Math.sin(4*u-.5*t))}}),a.current.forEach((e,t)=>{if(e){let r=m(.5,.82,c);e.color.copy(j).lerp(t%2==0?x:M,r),e.opacity=p(.06,.22,r)*(.85+.15*Math.sin(3*u-t))}})}),(0,t.jsxs)("group",{children:[(0,t.jsx)("gridHelper",{args:[60,48,c,c],position:[0,-.01,0],children:(0,t.jsx)("lineBasicMaterial",{attach:"material",color:c,transparent:!0,opacity:.05})}),u.map((e,r)=>(0,t.jsxs)("line",{children:[(0,t.jsx)("bufferGeometry",{children:(0,t.jsx)("float32BufferAttribute",{attach:"attributes-position",args:[new Float32Array(e.flatMap(e=>[e.x,e.y,e.z])),3]})}),(0,t.jsx)("lineBasicMaterial",{ref:e=>{s.current[r]=e},transparent:!0,opacity:.15,depthWrite:!1})]},`corr${r}`)),(0,t.jsxs)("group",{ref:n,position:[0,0,0],children:[(0,t.jsxs)("mesh",{position:[0,.35,0],children:[(0,t.jsx)("boxGeometry",{args:[2.2,.7,1.8]}),(0,t.jsx)("meshBasicMaterial",{color:"#0B1220"})]}),(0,t.jsxs)("mesh",{position:[0,.35,0],children:[(0,t.jsx)("boxGeometry",{args:[2.2,.7,1.8]}),(0,t.jsx)("meshBasicMaterial",{color:c,wireframe:!0,transparent:!0,opacity:.65})]}),[-.6,0,.6].map((e,r)=>(0,t.jsxs)("mesh",{position:[e,.18,.91],children:[(0,t.jsx)("boxGeometry",{args:[.3,.35,.06]}),(0,t.jsx)("meshBasicMaterial",{color:c,transparent:!0,opacity:.8})]},r)),(0,t.jsxs)("mesh",{position:[0,.85,0],children:[(0,t.jsx)("boxGeometry",{args:[1.2,.3,1]}),(0,t.jsx)("meshBasicMaterial",{color:c,transparent:!0,opacity:.15})]}),(0,t.jsxs)("mesh",{position:[0,.85,0],children:[(0,t.jsx)("boxGeometry",{args:[1.2,.3,1]}),(0,t.jsx)("meshBasicMaterial",{color:c,wireframe:!0,transparent:!0,opacity:.9})]}),[-.4,.4].map((e,r)=>(0,t.jsxs)("mesh",{position:[e,.71,-.4],rotation:[.15,0,0],children:[(0,t.jsx)("boxGeometry",{args:[.5,.03,.6]}),(0,t.jsx)("meshBasicMaterial",{color:"#1e293b"})]},r)),(0,t.jsxs)("group",{position:[0,1,0],children:[(0,t.jsxs)("mesh",{position:[0,.4,0],children:[(0,t.jsx)("cylinderGeometry",{args:[.03,.03,.8,8]}),(0,t.jsx)("meshBasicMaterial",{color:c})]}),(0,t.jsxs)("mesh",{position:[0,.8,0],children:[(0,t.jsx)("sphereGeometry",{args:[.12,16,16]}),(0,t.jsx)("meshBasicMaterial",{color:"#ffffff"})]})]}),(0,t.jsxs)("mesh",{rotation:[-Math.PI/2,0,0],position:[0,.02,0],children:[(0,t.jsx)("ringGeometry",{args:[1.8,2.2,32]}),(0,t.jsx)("meshBasicMaterial",{color:c,transparent:!0,opacity:.3,blending:g.AdditiveBlending})]})]})]})}),b=new g.Vector3(0,.5,0);function A(e){return new g.CatmullRomCurve3(e,!1,"catmullrom",.5)}let B=null;function w(){if(B)return B;let e=[],t=[];for(let r=0;r<5;r++){let n=r/5*Math.PI*2+.3,i=7+3*d(7*r+1),o=Math.cos(n)*i,s=Math.sin(n)*i,a=2+Math.floor(2*d(7*r+2)),l=[b.clone()];l.push(new g.Vector3(.35*o,.45+1.4,.35*s));let c=[];for(let e=0;e{if(!a.current||!l.current)return;let t=s/4*e.clock.elapsedTime%1;a.current.scale.setScalar(.4+t*(o-.4)),l.current.opacity=.72*Math.sin((1-t)*Math.PI)}),(0,t.jsxs)("mesh",{ref:a,position:[e.x,.03,e.z],rotation:[-Math.PI/2,0,0],children:[(0,t.jsx)("ringGeometry",{args:[.22,.28,24]}),(0,t.jsx)("meshBasicMaterial",{ref:l,color:n,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]})}),P=new g.Vector3,S=new g.Vector3,G=r.default.memo(function({progress:e,chaoticCurves:n}){let o=4*n.length,s=(0,r.useRef)([]),a=(0,r.useRef)([]),l=(0,r.useMemo)(()=>Array.from({length:o},(e,t)=>d(13*t+3)),[o]),c=(0,r.useMemo)(()=>Array.from({length:2*n.length},(e,t)=>t%2/2),[n.length]);return(0,i.useFrame)(t=>{let r=1-m(.48,.6,e.current??0),i=r>.01;if(s.current.forEach(e=>{e&&(e.visible=i)}),a.current.forEach(e=>{e&&(e.visible=i)}),!i)return;let u=t.clock.elapsedTime;for(let e=0;e{let t=e.material;t&&"opacity"in t&&(t.opacity=.5*r*Math.sin(o*Math.PI))})}}),(0,t.jsxs)("group",{children:[Array.from({length:o}).map((e,r)=>(0,t.jsxs)("mesh",{ref:e=>{s.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.06,6,6]}),(0,t.jsx)("meshBasicMaterial",{color:h,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},`cp-${r}`)),Array.from({length:2*n.length}).map((e,r)=>(0,t.jsx)("group",{ref:e=>{a.current[r]=e},visible:!1,children:(0,t.jsxs)("mesh",{rotation:[Math.PI/2,0,0],children:[(0,t.jsx)("coneGeometry",{args:[.06,.16,4]}),(0,t.jsx)("meshBasicMaterial",{color:h,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]})},`cc-${r}`))]})}),E=new g.Vector3,T=new g.Vector3,k=r.default.memo(function({progress:e,optimizedCurves:n}){let o=6*n.length,s=(0,r.useRef)([]),a=(0,r.useRef)([]),l=(0,r.useRef)([]),h=(0,r.useMemo)(()=>Array.from({length:o},(e,t)=>d(17*t+4)),[o]),p=(0,r.useMemo)(()=>Array.from({length:3*n.length},(e,t)=>t%3/3),[n.length]);return(0,i.useFrame)(t=>{let r=m(.52,.7,e.current??0),i=r>.01;if(s.current.forEach(e=>{e&&(e.visible=i)}),a.current.forEach(e=>{e&&(e.visible=i)}),l.current.forEach(e=>{e&&(e.visible=i)}),!i)return;let c=t.clock.elapsedTime;for(let e=0;e{let t=e.material;t&&"opacity"in t&&(t.opacity=.85*r*Math.sin(o*Math.PI))})}for(let e=0;e{let n=Math.floor(r/6)%2==0?c:u;return(0,t.jsxs)("mesh",{ref:e=>{s.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.05,8,8]}),(0,t.jsx)("meshBasicMaterial",{color:n,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},`op-${r}`)}),Array.from({length:3*n.length}).map((e,r)=>{let n=Math.floor(r/3)%2==0?c:u;return(0,t.jsx)("group",{ref:e=>{a.current[r]=e},visible:!1,children:(0,t.jsxs)("mesh",{rotation:[Math.PI/2,0,0],children:[(0,t.jsx)("coneGeometry",{args:[.07,.2,4]}),(0,t.jsx)("meshBasicMaterial",{color:n,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]})},`oc-${r}`)}),n.map((e,r)=>(0,t.jsxs)("mesh",{ref:e=>{l.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.07,12,12]}),(0,t.jsx)("meshBasicMaterial",{color:r%2==0?c:u,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},`pulse-${r}`))]})}),z=r.default.memo(function({progress:e,reduced:n=!1,isMobile:o=!1}){let{chaotic:s,optimized:a,chaosNodes:l,optimizedNodes:p}=(0,r.useMemo)(()=>w(),[]),f=(0,r.useRef)([]),d=(0,r.useRef)([]),x=(0,r.useRef)(null),j=(0,r.useRef)(null),M=(e,t)=>{if(!e.index)return;let r=Math.max(0,36*Math.floor(e.index.count*t/36));e.setDrawRange(0,r)};return(0,i.useFrame)(t=>{let r=e.current??0,n=t.clock.elapsedTime,i=1-m(.4,.56,r),o=(1-m(.38,.55,r))*.85,s=.7+.18*Math.sin(7*n);for(let e of f.current)e?.geo&&(M(e.geo,i),e.mat&&(e.mat.opacity=o*s));let a=m(.55,.74,r),l=m(.55,.66,r);for(let e=0;e(0,t.jsxs)("mesh",{frustumCulled:!1,children:[(0,t.jsx)("tubeGeometry",{ref:e=>{e&&(f.current[r]={...f.current[r]??{},geo:e})},args:[e.curve,120,.08,6,!1]}),(0,t.jsx)("meshBasicMaterial",{ref:e=>{e&&(f.current[r]={...f.current[r]??{},mat:e})},color:h,transparent:!0,opacity:.85,depthWrite:!1,blending:n?g.NormalBlending:g.AdditiveBlending})]},`c${r}`)),a.map((e,r)=>(0,t.jsxs)("mesh",{frustumCulled:!1,children:[(0,t.jsx)("tubeGeometry",{ref:e=>{e&&(d.current[r]={...d.current[r]??{},geo:e})},args:[e.curve,120,.1,6,!1]}),(0,t.jsx)("meshBasicMaterial",{ref:e=>{e&&(d.current[r]={...d.current[r]??{},mat:e})},color:r%2==0?c:u,transparent:!0,opacity:0,depthWrite:!1,blending:n?g.NormalBlending:g.AdditiveBlending})]},`o${r}`)),(0,t.jsx)("group",{ref:x,children:l.map((e,r)=>(0,t.jsxs)("group",{children:[(0,t.jsxs)("mesh",{position:e,children:[(0,t.jsx)("sphereGeometry",{args:[.18,12,12]}),(0,t.jsx)("meshBasicMaterial",{color:h,transparent:!0,opacity:.9,blending:g.AdditiveBlending})]}),(0,t.jsx)(R,{position:e,color:h})]},`cn-group-${r}`))}),(0,t.jsx)("group",{ref:j,scale:1e-4,children:p.map((e,r)=>(0,t.jsxs)("group",{children:[(0,t.jsxs)("mesh",{position:e,children:[(0,t.jsx)("sphereGeometry",{args:[.15,14,14]}),(0,t.jsx)("meshBasicMaterial",{color:u,transparent:!0,opacity:.95,blending:g.AdditiveBlending})]}),(0,t.jsx)(R,{position:e,color:u,maxScale:1.8,pulseSpeed:3})]},`on-group-${r}`))}),!o&&(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(G,{progress:e,chaoticCurves:s.map(e=>e.curve)}),(0,t.jsx)(k,{progress:e,optimizedCurves:a.map(e=>e.curve)})]})]})}),V=new g.Vector3,C=new g.Vector3,I=new g.Vector3,F=r.default.memo(function({texture:e,tint:r,width:n,aspect:i}){let o=n/i;return(0,t.jsxs)("mesh",{position:[0,o/2.4,0],children:[(0,t.jsx)("planeGeometry",{args:[n,o]}),(0,t.jsx)("meshBasicMaterial",{map:e,color:r,transparent:!0,depthWrite:!1,side:g.DoubleSide,toneMapped:!1})]})}),$=new g.Vector3(0,.5,0),W=r.default.memo(function({progress:e,reduced:n=!1}){let{chaotic:o,optimized:s}=(0,r.useMemo)(()=>w(),[]),a=["truck","van","bike"],l=(0,r.useMemo)(()=>Array.from({length:7},(e,t)=>({curve:o[t%o.length].curve,type:a[t%3],speed:.018+.03*d(5*t+1),offset:d(5*t+2),color:h,nodes:o[t%o.length].nodes||[]})),[o]),p=(0,r.useMemo)(()=>Array.from({length:5},(e,t)=>({curve:s[t%s.length].curve,type:a[t%3],speed:.05+.025*d(7*t+1),offset:d(7*t+2),color:t%2==0?c:u,nodes:s[t%s.length].nodes||[]})),[s]),f=(0,r.useRef)([]),x=(0,r.useRef)([]),j=(0,r.useRef)([]),M=(0,r.useMemo)(()=>{let e=new g.TextureLoader().load("/images/truck.png");return e.colorSpace=g.SRGBColorSpace,e.anisotropy=8,e},[]),y=1080/948,v=(0,r.useRef)([]),b=(0,r.useRef)([]),A=(e,t,r,n,i,o)=>{if(!e||!t?.curve)return;let s=o>.02;if(e.visible=s,!s)return;let a=r[n];(void 0===a||Number.isNaN(a))&&(a=r[n]=t.offset??0),t.curve.getPointAt(a,V);let l=V.distanceTo($);t.nodes&&t.nodes.length>0&&t.nodes.forEach(e=>{let t=V.distanceTo(e);t{let t=e.material;t&&"opacity"in t&&(t.opacity=o*B(e))})},B=e=>{let t=e.material;return!t||t.map||t.wireframe||t.color&&0xffffff===t.color.getHex()||t.color&&0xef4444===t.color.getHex()?1:.2};return(0,i.useFrame)((t,r)=>{v.current.length!==l.length&&(v.current=l.map(e=>e.offset)),b.current.length!==p.length&&(b.current=p.map(e=>e.offset));let n=e.current??0,i=t.clock.elapsedTime,o=Math.min(.06,r),s=m(.1,.22,n)*(1-m(.7,.82,n))*(.85+.1*Math.sin(6*i)),a=m(.68,.82,n),c=t.camera;for(let e=0;e(0,t.jsx)("group",{ref:e=>{f.current[r]=e},children:(0,t.jsx)(F,{texture:M,tint:"#ff5a5a",width:1.61,aspect:y})},`cv${r}`)),p.map((e,r)=>(0,t.jsx)("group",{visible:!1,ref:e=>{x.current[r]=e},children:(0,t.jsx)(F,{texture:M,tint:"#d7dce4",width:1.75,aspect:y})},`ov${r}`)),p.map((e,r)=>Array.from({length:16},(i,o)=>(0,t.jsxs)("mesh",{visible:!1,ref:e=>{j.current[16*r+o]=e},children:[(0,t.jsx)("sphereGeometry",{args:[.1,8,8]}),(0,t.jsx)("meshBasicMaterial",{color:e.color,transparent:!0,opacity:0,depthWrite:!1,blending:n?g.NormalBlending:g.AdditiveBlending})]},`ot-${r}-${o}`)))]})}),N=r.default.memo(function({offset:e,index:n,progress:o,color:s}){let a=(0,r.useRef)(null),l=(0,r.useRef)(null),c=(0,r.useRef)([]),u=(0,r.useMemo)(()=>Array.from({length:3},(e,t)=>t/3),[]);(0,i.useFrame)(t=>{let r=o.current??0,i=t.clock.elapsedTime,s=m(.2,.4,r)*(1-m(.72,.85,r)),h=s>.01;a.current&&(a.current.visible=h),l.current&&h&&(l.current.opacity=s*(.15+.08*Math.sin(12*i+n))),c.current.forEach((t,r)=>{if(!t||(t.visible=h,!h))return;let o=.8+.4*d(5*n+r),a=(u[r]+o/3*i)%1;t.position.copy(e).multiplyScalar(a),t.material.opacity=s*Math.sin(a*Math.PI)*.8;let l=.04+.015*Math.sin(8*i+r);t.scale.setScalar(l/.06)})});let h=(0,r.useMemo)(()=>{let t=new g.BufferGeometry,r=new Float32Array([0,0,0,e.x,e.y,e.z]);return t.setAttribute("position",new g.BufferAttribute(r,3)),t},[e]);return(0,t.jsxs)("group",{children:[(0,t.jsx)("lineSegments",{ref:a,geometry:h,children:(0,t.jsx)("lineBasicMaterial",{ref:l,color:s,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})}),Array.from({length:3}).map((e,r)=>(0,t.jsxs)("mesh",{ref:e=>{c.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.06,8,8]}),(0,t.jsx)("meshBasicMaterial",{color:s,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},r))]})}),Y=r.default.memo(function({progress:e}){let n=(0,r.useRef)(null),o=(0,r.useMemo)(()=>Array.from({length:5},(e,t)=>{let r=t/5*Math.PI*2+.3,n=7+3*d(7*t+1),i=Math.cos(r)*n,o=Math.sin(r)*n;return new g.Vector3(i,-3.3,o)}),[]);return(0,i.useFrame)(e=>{let t=e.clock.elapsedTime;n.current&&(n.current.position.y=3.4+.12*Math.sin(.8*t))}),(0,t.jsxs)("group",{ref:n,position:[0,3.4,0],children:[(0,t.jsxs)("mesh",{children:[(0,t.jsx)("sphereGeometry",{args:[.06,12,12]}),(0,t.jsx)("meshBasicMaterial",{color:u,blending:g.AdditiveBlending})]}),o.map((r,n)=>(0,t.jsx)(N,{offset:r,index:n,progress:e,color:n%2==0?c:u},`calc-beam-${n}`))]})}),D={radiusStart:17,radiusEnd:13,heightStart:9,heightEnd:6.5,lookAtY:2.4,fov:50},H={radiusStart:19,radiusEnd:15,heightStart:9.5,heightEnd:7,lookAtY:2.6,fov:54},K={radiusStart:16,radiusEnd:12,heightStart:8.5,heightEnd:6,lookAtY:2.3,fov:58};function U({progress:e,framing:t}){let n=(0,r.useRef)(0),s=(0,o.useThree)(e=>e.camera);return(0,r.useEffect)(()=>{"fov"in s&&(s.fov=t.fov,s.updateProjectionMatrix())},[s,t.fov]),(0,i.useFrame)((r,i)=>{let o=e.current??0;n.current=f(n.current,o,1.5,i);let s=n.current,a=r.clock.elapsedTime,l=p(t.radiusStart,t.radiusEnd,s),c=p(-.5,.45,s)+.02*a,u=p(t.heightStart,t.heightEnd,s)+.3*Math.sin(.4*a),h=r.camera;h.position.x=Math.sin(c)*l,h.position.z=Math.cos(c)*l,h.position.y=u,h.lookAt(0,t.lookAtY,0)}),null}let L=r.default.memo(function({progress:e,reduced:r=!1,isMobile:i=!1,isTablet:o=!1,active:c=!0}){let u=i?K:o?H:D;return(0,t.jsxs)(n.Canvas,{flat:!0,dpr:[1,i||r?1.25:1.5],camera:{position:[0,u.heightStart,u.radiusStart],fov:u.fov,near:.1,far:120},gl:{antialias:!i,powerPreference:"high-performance",alpha:!1},frameloop:c?"always":"never",children:[(0,t.jsx)("color",{attach:"background",args:[l]}),(0,t.jsx)("fog",{attach:"fog",args:[l,18,52]}),(0,t.jsx)("ambientLight",{intensity:.6}),(0,t.jsx)(U,{progress:e,framing:u}),(0,t.jsx)(v,{progress:e,count:i?48:90,reduced:r}),(0,t.jsx)(z,{progress:e,reduced:r,isMobile:i}),(0,t.jsx)(W,{progress:e,reduced:r}),(0,t.jsx)(Y,{progress:e,reduced:r}),!r&&(0,t.jsx)(s.EffectComposer,{multisampling:2*!i,children:(0,t.jsx)(s.Bloom,{mipmapBlur:!0,intensity:i?.5:1,luminanceThreshold:.15,luminanceSmoothing:.04,radius:i?.55:.75,kernelSize:a.KernelSize.MEDIUM})})]})});e.s(["default",0,L],64083)},29539,e=>{e.n(e.i(64083))}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0d09zs~9jbu5_.js b/.next/static/chunks/0d09zs~9jbu5_.js similarity index 100% rename from build/_next/static/chunks/0d09zs~9jbu5_.js rename to .next/static/chunks/0d09zs~9jbu5_.js diff --git a/build/_next/static/chunks/0.iab0vw_jpg5.js b/.next/static/chunks/0d1hvye~4r7kb.js similarity index 98% rename from build/_next/static/chunks/0.iab0vw_jpg5.js rename to .next/static/chunks/0d1hvye~4r7kb.js index 3e5b593..e634dbc 100644 --- a/build/_next/static/chunks/0.iab0vw_jpg5.js +++ b/.next/static/chunks/0d1hvye~4r7kb.js @@ -240,4 +240,4 @@ Error generating stack: `+e.message+` `+r.join(" > ")+` No matching component was found for: - `+e.join(" > ")}return null},rt.getPublicRootInstance=function(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 27:case 5:return rA(e.child.stateNode);default:return e.child.stateNode}},rt.injectIntoDevTools=function(){var e={bundleType:0,version:rT,rendererPackageName:rw,currentDispatcherRef:rM,reconcilerVersion:"19.2.0"};if(null!==rE&&(e.rendererConfig=rE),typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")e=!1;else{var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)e=!0;else{try{sG=t.inject(e),sW=t}catch{}e=!!t.checkDCE}}return e},rt.isAlreadyRendering=function(){return(6&lm)!=0},rt.observeVisibleRects=function(e,t,n,r){if(!r7)throw Error(i(363));var a=as(e=im(e,t),n,r).disconnect;return{disconnect:function(){a()}}},rt.shouldError=function(){return null},rt.shouldSuspend=function(){return!1},rt.startHostTransition=function(e,t,r,a){if(5!==e.tag)throw Error(i(476));var s=tW(e).queue;tG(e,s,t,r4,null===r?n:function(){var t=tW(e);return null===t.next&&(t=e.alternate.memoizedState),tK(e,t.next.queue,{},ig()),r(a)})},rt.updateContainer=function(e,t,n,i){var r=t.current,a=ig();return i9(r,a,e,t,n,i),a},rt.updateContainerSync=function(e,t,n,i){return i9(t.current,2,e,t,n,i),2},rt},cG.exports.default=cG.exports,Object.defineProperty(cG.exports,"__esModule",{value:!0})),cV.exports=cG.exports),(b=cV.exports)&&b.__esModule&&Object.prototype.hasOwnProperty.call(b,"default"))?b.default:b,cj={},cX=/^three(?=[A-Z])/,cq=e=>`${e[0].toUpperCase()}${e.slice(1)}`,cY=0;function cZ(e){if("function"==typeof e){let t=`${cY++}`;return cj[t]=e,t}Object.assign(cj,e)}function cJ(e,t){let n=cq(e),i=cj[n];if("primitive"!==e&&!i)throw Error(`R3F: ${n} is not part of the THREE namespace! Did you forget to extend? See: https://docs.pmnd.rs/react-three-fiber/api/objects#using-3rd-party-objects-declaratively`);if("primitive"===e&&!t.object)throw Error("R3F: Primitives without 'object' are invalid!");if(void 0!==t.args&&!Array.isArray(t.args))throw Error("R3F: The args prop must be an array!")}function cK(e){if(e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cS(e.parent,e):cI(e.object)&&!1!==e.props.visible&&(e.object.visible=!0),e.isHidden=!1,cR(e)}}function c$(e,t,n){let i=t.root.getState();if(e.parent||e.object===i.scene){if(!t.object){var r,a;let e=cj[cq(t.type)];t.object=null!=(r=t.props.object)?r:new e(...null!=(a=t.props.args)?a:[]),t.object.__r3f=t}if(cC(t.object,t.props),t.props.attach)cS(e,t);else if(cI(t.object)&&cI(e.object)){let i=e.object.children.indexOf(null==n?void 0:n.object);if(n&&-1!==i){let n=e.object.children.indexOf(t.object);-1!==n?(e.object.children.splice(n,1),e.object.children.splice(n{try{e.dispose()}catch{}};"u">typeof IS_REACT_ACT_ENVIRONMENT?t():(0,u8.unstable_scheduleCallback)(u8.unstable_IdlePriority,t)}}function c2(e,t,n){if(!t)return;t.parent=null;let i=e.children.indexOf(t);-1!==i&&e.children.splice(i,1),t.props.attach?cM(e,t):cI(t.object)&&cI(e.object)&&(e.object.remove(t.object),function(e,t){let{internal:n}=e.getState();n.interaction=n.interaction.filter(e=>e!==t),n.initialHits=n.initialHits.filter(e=>e!==t),n.hovered.forEach((e,i)=>{(e.eventObject===t||e.object===t)&&n.hovered.delete(i)}),n.capturedMap.forEach((e,i)=>{cN(n.capturedMap,t,e,i)})}(co(t),t.object));let r=null!==t.props.dispose&&!1!==n;for(let e=t.children.length-1;e>=0;e--){let n=t.children[e];c2(t,n,r)}t.children.length=0,delete t.object.__r3f,r&&"primitive"!==t.type&&"Scene"!==t.object.type&&c1(t.object),void 0===n&&cR(t)}let c3=[],c4=()=>{},c5={},c6=0,c8=(S={isPrimaryRenderer:!1,warnsIfNotActing:!1,supportsMutation:!0,supportsPersistence:!1,supportsHydration:!1,createInstance:function(e,t,n){var i;return cJ(e=cq(e)in cj?e:e.replace(cX,""),t),"primitive"===e&&null!=(i=t.object)&&i.__r3f&&delete t.object.__r3f,cy(t.object,n,e,t)},removeChild:c2,appendChild:cQ,appendInitialChild:cQ,insertBefore:c0,appendChildToContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&cQ(n,t)},removeChildFromContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&c2(n,t)},insertInContainerBefore(e,t,n){let i=e.getState().scene.__r3f;t&&n&&i&&c0(i,t,n)},getRootHostContext:()=>c5,getChildHostContext:()=>c5,commitUpdate(e,t,n,i,r){var a,s,o;cJ(t,i);let l=!1;if("primitive"===e.type&&n.object!==i.object||(null==(a=i.args)?void 0:a.length)!==(null==(s=n.args)?void 0:s.length)?l=!0:null!=(o=i.args)&&o.some((e,t)=>{var i;return e!==(null==(i=n.args)?void 0:i[t])})&&(l=!0),l)c3.push([e,{...i},r]);else{let t=function(e,t){let n={};for(let i in t)if(!cT.includes(i)&&!cv.equ(t[i],e.props[i]))for(let e in n[i]=t[i],t)e.startsWith(`${i}-`)&&(n[e]=t[e]);for(let i in e.props){if(cT.includes(i)||t.hasOwnProperty(i))continue;let{root:r,key:a}=cx(e.object,i);if(r.constructor&&0===r.constructor.length){let e=function(e){let t=cw.get(e.constructor);try{t||(t=new e.constructor,cw.set(e.constructor,t))}catch(e){}return t}(r);cv.und(e)||(n[a]=e[a])}else n[a]=0}return n}(e,i);Object.keys(t).length&&(Object.assign(e.props,t),cC(e.object,t))}(null===r.sibling||(4&r.flags)==0)&&function(){for(let[e]of c3){let t=e.parent;if(t)for(let n of(e.props.attach?cM(t,e):cI(e.object)&&cI(t.object)&&t.object.remove(e.object),e.children))n.props.attach?cM(e,n):cI(n.object)&&cI(e.object)&&e.object.remove(n.object);e.isHidden&&cK(e),e.object.__r3f&&delete e.object.__r3f,"primitive"!==e.type&&c1(e.object)}for(let[i,r,a]of c3){i.props=r;let s=i.parent;if(s){let r=cj[cq(i.type)],o=i.object;i.object=null!=(e=i.props.object)?e:new r(...null!=(t=i.props.args)?t:[]),i.object.__r3f=i;var e,t,n=i.object;for(let e of[a,a.alternate])if(null!==e)if("function"==typeof e.ref){null==e.refCleanup||e.refCleanup();let t=e.ref(n);"function"==typeof t&&(e.refCleanup=t)}else e.ref&&(e.ref.current=n);for(let e of(!function(e,t,n){let{internal:i}=e.getState();for(let e=0;e{if(e.eventObject===t||e.object===t){i.hovered.delete(r);let a={...e,eventObject:e.eventObject===t?n:e.eventObject,object:e.object===t?n:e.object};i.hovered.set(cL(a),a)}}),i.capturedMap.forEach(e=>{let i=e.get(t);i&&(e.delete(t),e.set(n,i))})}(co(i),o,i.object),cC(i.object,i.props),i.props.attach?cS(s,i):cI(i.object)&&cI(s.object)&&s.object.add(i.object),i.children))e.props.attach?cS(i,e):cI(e.object)&&cI(i.object)&&i.object.add(e.object);cR(i)}}c3.length=0}()},finalizeInitialChildren:()=>!1,commitMount(){},getPublicInstance:e=>null==e?void 0:e.object,prepareForCommit:()=>null,preparePortalMount:e=>cy(e.getState().scene,e,"",{}),resetAfterCommit:()=>{},shouldSetTextContent:()=>!1,clearContainer:()=>!1,hideInstance:function(e){if(!e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cM(e.parent,e):cI(e.object)&&(e.object.visible=!1),e.isHidden=!0,cR(e)}},unhideInstance:cK,createTextInstance:c4,hideTextInstance:c4,unhideTextInstance:c4,scheduleTimeout:"function"==typeof setTimeout?setTimeout:void 0,cancelTimeout:"function"==typeof clearTimeout?clearTimeout:void 0,noTimeout:-1,getInstanceFromNode:()=>null,beforeActiveInstanceBlur(){},afterActiveInstanceBlur(){},detachDeletedInstance(){},prepareScopeUpdate(){},getInstanceFromScope:()=>null,shouldAttemptEagerTransition:()=>!1,trackSchedulerEvent:()=>{},resolveEventType:()=>null,resolveEventTimeStamp:()=>-1.1,requestPostPaintCallback(){},maySuspendCommit:()=>!1,preloadInstance:()=>!0,suspendInstance(){},waitForCommitToBeReady:()=>null,NotPendingTransition:null,HostTransitionContext:E.createContext(null),setCurrentUpdatePriority(e){c6=e},getCurrentUpdatePriority:()=>c6,resolveUpdatePriority(){var e;if(0!==c6)return c6;switch("u">typeof window&&(null==(e=window.event)?void 0:e.type)){case"click":case"contextmenu":case"dblclick":case"pointercancel":case"pointerdown":case"pointerup":return 2;case"pointermove":case"pointerout":case"pointerover":case"pointerenter":case"pointerleave":case"wheel":return 8;default:return 32}},resetFormInstance(){},rendererPackageName:"@react-three/fiber",rendererVersion:"9.6.1",applyViewTransitionName(e,t,n){},restoreViewTransitionName(e,t){},cancelViewTransitionName(e,t,n){},cancelRootViewTransitionName(e){},restoreRootViewTransitionName(e){},InstanceMeasurement:null,measureInstance:e=>null,wasInstanceInViewport:e=>!0,hasInstanceChanged:(e,t)=>!1,hasInstanceAffectedParent:(e,t)=>!1,suspendOnActiveViewTransition(e,t){},startGestureTransition:()=>null,startViewTransition:()=>null,stopViewTransition(e){},createViewTransitionInstance:e=>null,getCurrentGestureOffset(e){throw Error("startGestureTransition is not yet supported in react-three-fiber.")},cloneMutableInstance:(e,t)=>e,cloneMutableTextInstance:e=>e,cloneRootViewTransitionContainer(e){throw Error("Not implemented.")},removeRootViewTransitionClone(e,t){throw Error("Not implemented.")},createFragmentInstance:e=>null,updateFragmentInstanceFiber(e,t){},commitNewChildToFragmentInstance(e,t){},deleteChildFromFragmentInstance(e,t){},measureClonedInstance:e=>null,maySuspendCommitOnUpdate:(e,t,n)=>!1,maySuspendCommitInSyncRender:(e,t)=>!1,startSuspendingCommit:()=>null,getSuspendedCommitReason:(e,t)=>null},(_=cW(S)).injectIntoDevTools(),_),c9=new Map,c7={objects:"shallow",strict:!1};function he(e){var t,n;let i,r,a,s,o,l,u,c=c9.get(e),h=null==c?void 0:c.fiber,d=null==c?void 0:c.store;c&&console.warn("R3F.createRoot should only be called once!");let p="function"==typeof reportError?reportError:console.error,f=d||(t=hp,n=hf,o=(s=(a=u3((e,i)=>{let r,a=new eE,s=new eE,o=new eE;function l(e=i().camera,t=s,n=i().size){let{width:r,height:u,top:c,left:h}=n,d=r/u;t.isVector3?o.copy(t):o.set(...t);let p=e.getWorldPosition(a).distanceTo(o);if(e&&e.isOrthographicCamera)return{width:r/e.zoom,height:u/e.zoom,top:c,left:h,factor:1,distance:p,aspect:d};{let t=2*Math.tan(e.fov*Math.PI/180/2)*p,n=r/u*t;return{width:n,height:t,top:c,left:h,factor:r/n,distance:p,aspect:d}}}let u=t=>e(e=>({performance:{...e.performance,current:t}})),c=new Y;return{set:e,get:i,gl:null,camera:null,raycaster:null,events:{priority:1,enabled:!0,connected:!1},scene:null,xr:null,invalidate:(e=1)=>t(i(),e),advance:(e,t)=>n(e,t,i()),legacy:!1,linear:!1,flat:!1,controls:null,clock:new sw,pointer:c,mouse:c,frameloop:"always",onPointerMissed:void 0,performance:{current:1,min:.5,max:1,debounce:200,regress:()=>{let e=i();r&&clearTimeout(r),e.performance.current!==e.performance.min&&u(e.performance.min),r=setTimeout(()=>u(i().performance.max),e.performance.debounce)}},size:{width:0,height:0,top:0,left:0},viewport:{initialDpr:0,dpr:0,width:0,height:0,top:0,left:0,aspect:0,distance:0,factor:0,getCurrentViewport:l},setEvents:t=>e(e=>({...e,events:{...e.events,...t}})),setSize:(t,n,r=0,a=0)=>{let o=i().camera,u={width:t,height:n,top:r,left:a};e(e=>({size:u,viewport:{...e.viewport,...l(o,s,u)}}))},setDpr:t=>e(e=>{let n=cm(t);return{viewport:{...e.viewport,dpr:n,initialDpr:e.viewport.initialDpr||n}}}),setFrameloop:(t="always")=>{let n=i().clock;n.stop(),n.elapsedTime=0,"never"!==t&&(n.start(),n.elapsedTime=0),e(()=>({frameloop:t}))},previousRoot:void 0,internal:{interaction:[],hovered:new Map,subscribers:[],initialClick:[0,0],initialHits:[],capturedMap:new Map,lastEvent:E.createRef(),active:!1,frames:0,priority:0,subscribe:(e,t,n)=>{let r=i().internal;return r.priority=r.priority+ +(t>0),r.subscribers.push({ref:e,priority:t,store:n}),r.subscribers=r.subscribers.sort((e,t)=>e.priority-t.priority),()=>{let n=i().internal;null!=n&&n.subscribers&&(n.priority=n.priority-(t>0),n.subscribers=n.subscribers.filter(t=>t.ref!==e))}}}}})).getState()).size,l=s.viewport.dpr,u=s.camera,a.subscribe(()=>{let{camera:e,size:t,viewport:n,gl:i,set:r}=a.getState();if(t.width!==o.width||t.height!==o.height||n.dpr!==l){o=t,l=n.dpr,cP(e,t),n.dpr>0&&i.setPixelRatio(n.dpr);let r="u">typeof HTMLCanvasElement&&i.domElement instanceof HTMLCanvasElement;i.setSize(t.width,t.height,r)}e!==u&&(u=e,r(t=>({viewport:{...t.viewport,...t.viewport.getCurrentViewport(e)}})))}),a.subscribe(e=>t(e)),a),m=h||c8.createContainer(f,1,null,!1,null,"",p,p,p,null);c||c9.set(e,{fiber:m,store:f});let g=!1,v=null;return{async configure(t={}){var n,a;let s;v=new Promise(e=>s=e);let{gl:o,size:l,scene:u,events:c,onCreated:h,shadows:d=!1,linear:p=!1,flat:m=!1,legacy:_=!1,orthographic:y=!1,frameloop:x="always",dpr:b=[1,2],performance:S,raycaster:M,camera:T,onPointerMissed:w}=t,E=f.getState(),A=E.gl;if(!E.gl){let t={canvas:e,powerPreference:"high-performance",antialias:!0,alpha:!0},n="function"==typeof o?await o(t):o;A=cU(n)?n:new uK({...t,...o}),E.set({gl:A})}let C=E.raycaster;C||E.set({raycaster:C=new s3});let{params:R,...P}=M||{};if(cv.equ(P,C,c7)||cC(C,{...P}),cv.equ(R,C.params,c7)||cC(C,{params:{...C.params,...R}}),!E.camera||E.camera===r&&!cv.equ(r,T,c7)){r=T;let e=null==T?void 0:T.isCamera,t=e?T:y?new sn(0,0,0,0,.1,1e3):new nE(75,0,.1,1e3);!e&&(t.position.z=5,T&&(cC(t,T),!t.manual&&("aspect"in T||"left"in T||"right"in T||"bottom"in T||"top"in T)&&(t.manual=!0,t.updateProjectionMatrix())),E.camera||null!=T&&T.rotation||t.lookAt(0,0,0)),E.set({camera:t}),C.camera=t}if(!E.scene){let e;null!=u&&u.isScene?cy(e=u,f,"",{}):(cy(e=new nL,f,"",{}),u&&cC(e,u)),E.set({scene:e})}c&&!E.events.handlers&&E.set({events:c(f)});let N=function(e,t){if(!t&&"u">typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement&&e.parentElement){let{width:t,height:n,top:i,left:r}=e.parentElement.getBoundingClientRect();return{width:t,height:n,top:i,left:r}}return!t&&"u">typeof OffscreenCanvas&&e instanceof OffscreenCanvas?{width:e.width,height:e.height,top:0,left:0}:{width:0,height:0,top:0,left:0,...t}}(e,l);if(cv.equ(N,E.size,c7)||E.setSize(N.width,N.height,N.top,N.left),b&&E.viewport.dpr!==cm(b)&&E.setDpr(b),E.frameloop!==x&&E.setFrameloop(x),E.onPointerMissed||E.set({onPointerMissed:w}),S&&!cv.equ(S,E.performance,c7)&&E.set(e=>({performance:{...e.performance,...S}})),!E.xr){let e=(e,t)=>{let n=f.getState();"never"!==n.frameloop&&hf(e,!0,n,t)},t=()=>{let t=f.getState();t.gl.xr.enabled=t.gl.xr.isPresenting,t.gl.xr.setAnimationLoop(t.gl.xr.isPresenting?e:null),t.gl.xr.isPresenting||hp(t)},i={connect(){let e=f.getState().gl;e.xr.addEventListener("sessionstart",t),e.xr.addEventListener("sessionend",t)},disconnect(){let e=f.getState().gl;e.xr.removeEventListener("sessionstart",t),e.xr.removeEventListener("sessionend",t)}};"function"==typeof(null==(n=A.xr)?void 0:n.addEventListener)&&i.connect(),E.set({xr:i})}if(A.shadowMap){let e=A.shadowMap.enabled,t=A.shadowMap.type;A.shadowMap.enabled=!!d,cv.boo(d)?A.shadowMap.type=2:cv.str(d)?A.shadowMap.type=null!=(a=({basic:0,percentage:1,soft:2,variance:3})[d])?a:2:cv.obj(d)&&Object.assign(A.shadowMap,d),(e!==A.shadowMap.enabled||t!==A.shadowMap.type)&&(A.shadowMap.needsUpdate=!0)}return eu.enabled=!_,g||(A.outputColorSpace=p?L:I,A.toneMapping=4*!m),E.legacy!==_&&E.set(()=>({legacy:_})),E.linear!==p&&E.set(()=>({linear:p})),E.flat!==m&&E.set(()=>({flat:m})),!o||cv.fun(o)||cU(o)||cv.equ(o,A,c7)||cC(A,o),i=h,g=!0,s(),this},render(t){return g||v||this.configure(),v.then(()=>{c8.updateContainer((0,u9.jsx)(ht,{store:f,children:t,onCreated:i,rootElement:e}),m,null,()=>void 0)}),f},unmount(){hn(e)}}}function ht({store:e,children:t,onCreated:n,rootElement:i}){return cc(()=>{let t=e.getState();t.set(e=>({internal:{...e.internal,active:!0}})),n&&n(t),e.getState().events.connected||null==t.events.connect||t.events.connect(i)},[]),(0,u9.jsx)(cD.Provider,{value:e,children:t})}function hn(e,t){let n=c9.get(e),i=null==n?void 0:n.fiber;if(i){let r=null==n?void 0:n.store.getState();r&&(r.internal.active=!1),c8.updateContainer(null,i,null,()=>{r&&setTimeout(()=>{try{null==r.events.disconnect||r.events.disconnect(),null==(n=r.gl)||null==(i=n.renderLists)||null==i.dispose||i.dispose(),null==(a=r.gl)||null==a.forceContextLoss||a.forceContextLoss(),null!=(s=r.gl)&&s.xr&&r.xr.disconnect();var n,i,a,s,o=r.scene;for(let e in"Scene"!==o.type&&(null==o.dispose||o.dispose()),o){let t=o[e];(null==t?void 0:t.type)!=="Scene"&&(null==t||null==t.dispose||t.dispose())}c9.delete(e),t&&t(e)}catch(e){}},500)})}}function hi({state:e={},children:t,container:n}){let{events:i,size:r,...a}=e,s=cO(),[o]=E.useState(()=>new s3),[l]=E.useState(()=>new Y),u=ch((e,t)=>{let a;if(t.camera&&r){let n=t.camera;a=e.viewport.getCurrentViewport(n,new eE,r),n!==e.camera&&cP(n,r)}return{...e,...t,scene:n,raycaster:o,pointer:l,mouse:l,previousRoot:s,events:{...e.events,...t.events,...i},size:{...e.size,...r},viewport:{...e.viewport,...a},setEvents:e=>t.set(t=>({...t,events:{...t.events,...e}}))}}),c=E.useMemo(()=>{let e=u3((e,t)=>({...a,set:e,get:t})),t=t=>e.setState(e=>u.current(t,e));return t(s.getState()),s.subscribe(t),e},[s,n]);return(0,u9.jsx)(u9.Fragment,{children:c8.createPortal((0,u9.jsx)(cD.Provider,{value:c,children:t}),c,null)})}let hr=new Set,ha=new Set,hs=new Set;function ho(e,t){if(e.size)for(let{callback:n}of e.values())n(t)}function hl(e,t){switch(e){case"before":return ho(hr,t);case"after":return ho(ha,t);case"tail":return ho(hs,t)}}function hu(e,t,n){let i=t.clock.getDelta();"never"===t.frameloop&&"number"==typeof e&&(i=e-t.clock.elapsedTime,t.clock.oldTime=t.clock.elapsedTime,t.clock.elapsedTime=e),s=t.internal.subscribers;for(let e=0;e0)&&!(null!=(t=c.gl.xr)&&t.isPresenting)&&(l+=hu(e,c))}if(hh=!1,hl("after",e),0===l)return hl("tail",e),hc=!1,cancelAnimationFrame(u)}function hp(e,t=1){var n;if(!e)return c9.forEach(e=>hp(e.store.getState(),t));(null==(n=e.gl.xr)||!n.isPresenting)&&e.internal.active&&"never"!==e.frameloop&&(t>1?e.internal.frames=Math.min(60,e.internal.frames+t):hh?e.internal.frames=2:e.internal.frames=1,hc||(hc=!0,requestAnimationFrame(hd)))}function hf(e,t=!0,n,i){if(t&&hl("before",e),n)hu(e,n,i);else for(let t of c9.values())hu(e,t.store.getState());t&&hl("after",e)}let hm={onClick:["click",!1],onContextMenu:["contextmenu",!1],onDoubleClick:["dblclick",!1],onWheel:["wheel",!0],onPointerDown:["pointerdown",!0],onPointerUp:["pointerup",!0],onPointerLeave:["pointerleave",!0],onPointerMove:["pointermove",!0],onPointerCancel:["pointercancel",!0],onLostPointerCapture:["lostpointercapture",!0]};function hg(e){let{handlePointer:t}=function(e){function t(e){return e.filter(e=>["Move","Over","Enter","Out","Leave"].some(t=>{var n;return null==(n=e.__r3f)?void 0:n.handlers["onPointer"+t]}))}function n(t){let{internal:n}=e.getState();for(let e of n.hovered.values())if(!t.length||!t.find(t=>t.object===e.object&&t.index===e.index&&t.instanceId===e.instanceId)){let i=e.eventObject.__r3f;if(n.hovered.delete(cL(e)),null!=i&&i.eventCount){let n=i.handlers,r={...e,intersections:t};null==n.onPointerOut||n.onPointerOut(r),null==n.onPointerLeave||n.onPointerLeave(r)}}}function i(e,t){for(let n=0;nn([]);case"onLostPointerCapture":return t=>{let{internal:i}=e.getState();"pointerId"in t&&i.capturedMap.has(t.pointerId)&&requestAnimationFrame(()=>{i.capturedMap.has(t.pointerId)&&(i.capturedMap.delete(t.pointerId),n([]))})}}return function(a){let{onPointerMissed:s,internal:o}=e.getState();o.lastEvent.current=a;let l="onPointerMove"===r,u="onClick"===r||"onContextMenu"===r||"onDoubleClick"===r,c=function(t,n){let i=e.getState(),r=new Set,a=[],s=n?n(i.internal.interaction):i.internal.interaction;for(let e=0;e{let n=cg(e.object),i=cg(t.object);return n&&i&&i.events.priority-n.events.priority||e.distance-t.distance}).filter(e=>{let t=cL(e);return!r.has(t)&&(r.add(t),!0)});for(let e of(i.events.filter&&(o=i.events.filter(o,i)),o)){let t=e.object;for(;t;){var l;null!=(l=t.__r3f)&&l.eventCount&&a.push({...e,eventObject:t}),t=t.parent}}if("pointerId"in t&&i.internal.capturedMap.has(t.pointerId))for(let e of i.internal.capturedMap.get(t.pointerId).values())r.has(cL(e.intersection))||a.push(e.intersection);return a}(a,l?t:void 0),h=u?function(t){let{internal:n}=e.getState(),i=t.offsetX-n.initialClick[0],r=t.offsetY-n.initialClick[1];return Math.round(Math.sqrt(i*i+r*r))}(a):0;"onPointerDown"===r&&(o.initialClick=[a.offsetX,a.offsetY],o.initialHits=c.map(e=>e.eventObject)),u&&!c.length&&h<=2&&(i(a,o.interaction),s&&s(a)),l&&n(c),!function(e,t,i,r){if(e.length){let a={stopped:!1};for(let s of e){let o=cg(s.object);if(o||s.object.traverseAncestors(e=>{let t=cg(e);if(t)return o=t,!1}),o){let{raycaster:l,pointer:u,camera:c,internal:h}=o,d=new eE(u.x,u.y,0).unproject(c),p=e=>{var t,n;return null!=(t=null==(n=h.capturedMap.get(e))?void 0:n.has(s.eventObject))&&t},f=e=>{let n={intersection:s,target:t.target};h.capturedMap.has(e)?h.capturedMap.get(e).set(s.eventObject,n):h.capturedMap.set(e,new Map([[s.eventObject,n]])),t.target.setPointerCapture(e)},m=e=>{let t=h.capturedMap.get(e);t&&cN(h.capturedMap,s.eventObject,t,e)},g={};for(let e in t){let n=t[e];"function"!=typeof n&&(g[e]=n)}let v={...s,...g,pointer:u,intersections:e,stopped:a.stopped,delta:i,unprojectedPoint:d,ray:l.ray,camera:c,stopPropagation(){let i="pointerId"in t&&h.capturedMap.get(t.pointerId);(!i||i.has(s.eventObject))&&(v.stopped=a.stopped=!0,h.hovered.size&&Array.from(h.hovered.values()).find(e=>e.eventObject===s.eventObject)&&n([...e.slice(0,e.indexOf(s)),s]))},target:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},currentTarget:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},nativeEvent:t};if(r(v),!0===a.stopped)break}}}}(c,a,h,function(e){let t=e.eventObject,n=t.__r3f;if(!(null!=n&&n.eventCount))return;let s=n.handlers;if(l){if(s.onPointerOver||s.onPointerEnter||s.onPointerOut||s.onPointerLeave){let t=cL(e),n=o.hovered.get(t);n?n.stopped&&e.stopPropagation():(o.hovered.set(t,e),null==s.onPointerOver||s.onPointerOver(e),null==s.onPointerEnter||s.onPointerEnter(e))}null==s.onPointerMove||s.onPointerMove(e)}else{let n=s[r];n?(!u||o.initialHits.includes(t))&&(i(a,o.interaction.filter(e=>!o.initialHits.includes(e))),n(e)):u&&o.initialHits.includes(t)&&i(a,o.interaction.filter(e=>!o.initialHits.includes(e)))}})}}}}(e);return{priority:1,enabled:!0,compute(e,t,n){t.pointer.set(e.offsetX/t.size.width*2-1,-(2*(e.offsetY/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)},connected:void 0,handlers:Object.keys(hm).reduce((e,n)=>({...e,[n]:t(n)}),{}),update:()=>{var t;let{events:n,internal:i}=e.getState();null!=(t=i.lastEvent)&&t.current&&n.handlers&&n.handlers.onPointerMove(i.lastEvent.current)},connect:t=>{let{set:n,events:i}=e.getState();if(null==i.disconnect||i.disconnect(),n(e=>({events:{...e.events,connected:t}})),i.handlers)for(let e in i.handlers){let n=i.handlers[e],[r,a]=hm[e];t.addEventListener(r,n,{passive:a})}},disconnect:()=>{let{set:t,events:n}=e.getState();if(n.connected){if(n.handlers)for(let e in n.handlers){let t=n.handlers[e],[i]=hm[e];n.connected.removeEventListener(i,t)}t(e=>({events:{...e.events,connected:void 0}}))}}}}e.s(["A",0,cO,"B",0,cp,"C",0,cF,"D",0,cz,"E",0,cf,"G",0,cH,"a",0,ch,"b",0,cc,"c",0,he,"d",0,hn,"e",0,cZ,"f",0,hg,"i",0,cl,"o",0,function(e,t,n){return(0,u9.jsx)(hi,{children:e,container:t,state:n})},"s",0,cC,"u",0,cd],1950),e.i(8560),e.s(["ACESFilmicToneMapping",0,4,"AddEquation",0,100,"AddOperation",0,2,"AdditiveAnimationBlendMode",0,2501,"AdditiveBlending",0,2,"AgXToneMapping",0,6,"AlphaFormat",0,1021,"AlwaysCompare",0,519,"AlwaysDepth",0,1,"AlwaysStencilFunc",0,519,"AmbientLight",0,sa,"AnimationAction",0,sY,"AnimationClip",0,aB,"AnimationLoader",0,aq,"AnimationMixer",0,sJ,"AnimationObjectGroup",0,sq,"AnimationUtils",0,aE,"ArcCurve",0,rs,"ArrayCamera",0,sT,"ArrowHelper",0,oP,"AttachedBindMode",0,R,"Audio",0,sL,"AudioAnalyser",0,sz,"AudioContext",0,s_,"AudioListener",0,sI,"AudioLoader",0,sy,"AxesHelper",0,oI,"BackSide",0,1,"BasicDepthPacking",0,3200,"BasicShadowMap",0,0,"BatchedMesh",0,iz,"Bone",0,ie,"BooleanKeyframeTrack",0,aL,"Box2",0,oe,"Box3",0,eR,"Box3Helper",0,oA,"BoxGeometry",0,ng,"BoxHelper",0,oE,"BufferAttribute",0,tZ,"BufferGeometry",0,nn,"BufferGeometryLoader",0,sd,"ByteType",0,1010,"Cache",0,ak,"Camera",0,nS,"CameraHelper",0,oM,"CanvasTexture",0,rn,"CapsuleGeometry",0,rA,"CatmullRomCurve3",0,rd,"CineonToneMapping",0,3,"CircleGeometry",0,rC,"ClampToEdgeWrapping",0,1001,"Clock",0,sw,"Color",0,tz,"ColorKeyframeTrack",0,aN,"ColorManagement",0,eu,"CompressedArrayTexture",0,re,"CompressedCubeTexture",0,rt,"CompressedTexture",0,i7,"CompressedTextureLoader",0,aY,"ConeGeometry",0,rP,"ConstantAlphaFactor",0,213,"ConstantColorFactor",0,211,"Controls",0,oN,"CubeCamera",0,nA,"CubeReflectionMapping",0,301,"CubeRefractionMapping",0,302,"CubeTexture",0,nC,"CubeTextureLoader",0,aJ,"CubeUVReflectionMapping",0,306,"CubicBezierCurve",0,rg,"CubicBezierCurve3",0,rv,"CubicInterpolant",0,aC,"CullFaceBack",0,1,"CullFaceFront",0,2,"CullFaceFrontBack",0,3,"CullFaceNone",0,0,"Curve",0,rr,"CurvePath",0,rT,"CustomBlending",0,5,"CustomToneMapping",0,5,"CylinderGeometry",0,rR,"Cylindrical",0,s8,"Data3DTexture",0,eM,"DataArrayTexture",0,eb,"DataTexture",0,it,"DataTextureLoader",0,aK,"DataUtils",0,tX,"DecrementStencilOp",0,7683,"DecrementWrapStencilOp",0,34056,"DefaultLoadingManager",0,aV,"DepthFormat",0,1026,"DepthStencilFormat",0,1027,"DepthTexture",0,ri,"DetachedBindMode",0,P,"DirectionalLight",0,sr,"DirectionalLightHelper",0,ox,"DiscreteInterpolant",0,aP,"DodecahedronGeometry",0,rL,"DoubleSide",0,2,"DstAlphaFactor",0,206,"DstColorFactor",0,208,"DynamicCopyUsage",0,35050,"DynamicDrawUsage",0,35048,"DynamicReadUsage",0,35049,"EdgesGeometry",0,rF,"EllipseCurve",0,ra,"EqualCompare",0,514,"EqualDepth",0,4,"EqualStencilFunc",0,514,"EquirectangularReflectionMapping",0,303,"EquirectangularRefractionMapping",0,304,"Euler",0,tn,"EventDispatcher",0,O,"ExtrudeGeometry",0,r4,"FileLoader",0,aX,"Float16BufferAttribute",0,t3,"Float32BufferAttribute",0,t4,"FloatType",0,1015,"Fog",0,nI,"FogExp2",0,nP,"FramebufferTexture",0,i9,"FrontSide",0,0,"Frustum",0,iS,"GLBufferAttribute",0,s1,"GLSL1",0,"100","GLSL3",0,D,"GreaterCompare",0,516,"GreaterDepth",0,6,"GreaterEqualCompare",0,518,"GreaterEqualDepth",0,5,"GreaterEqualStencilFunc",0,518,"GreaterStencilFunc",0,516,"GridHelper",0,om,"Group",0,i6,"HalfFloatType",0,1016,"HemisphereLight",0,a0,"HemisphereLightHelper",0,of,"IcosahedronGeometry",0,r6,"ImageBitmapLoader",0,sv,"ImageLoader",0,aZ,"ImageUtils",0,ed,"IncrementStencilOp",0,7682,"IncrementWrapStencilOp",0,34055,"InstancedBufferAttribute",0,is,"InstancedBufferGeometry",0,sh,"InstancedInterleavedBuffer",0,s0,"InstancedMesh",0,im,"Int16BufferAttribute",0,tQ,"Int32BufferAttribute",0,t1,"Int8BufferAttribute",0,tJ,"IntType",0,1013,"InterleavedBuffer",0,nN,"InterleavedBufferAttribute",0,nD,"Interpolant",0,aA,"InterpolateDiscrete",0,2300,"InterpolateLinear",0,2301,"InterpolateSmooth",0,2302,"InvertStencilOp",0,5386,"KeepStencilOp",0,7680,"KeyframeTrack",0,aI,"LOD",0,nQ,"LatheGeometry",0,rE,"Layers",0,ti,"LessCompare",0,513,"LessDepth",0,2,"LessEqualCompare",0,515,"LessEqualDepth",0,3,"LessEqualStencilFunc",0,515,"LessStencilFunc",0,513,"Light",0,aQ,"LightProbe",0,sl,"Line",0,iq,"Line3",0,oi,"LineBasicMaterial",0,iB,"LineCurve",0,r_,"LineCurve3",0,ry,"LineDashedMaterial",0,ax,"LineLoop",0,i$,"LineSegments",0,iK,"LinearFilter",0,1006,"LinearInterpolant",0,aR,"LinearMipMapLinearFilter",0,1008,"LinearMipMapNearestFilter",0,1007,"LinearMipmapLinearFilter",0,1008,"LinearMipmapNearestFilter",0,1007,"LinearSRGBColorSpace",0,L,"LinearToneMapping",0,1,"LinearTransfer",0,N,"Loader",0,aG,"LoaderUtils",0,sc,"LoadingManager",0,aH,"LoopOnce",0,2200,"LoopPingPong",0,2202,"LoopRepeat",0,2201,"LuminanceAlphaFormat",0,1025,"LuminanceFormat",0,1024,"MOUSE",0,A,"Material",0,tH,"MaterialLoader",0,su,"MathUtils",0,q,"Matrix2",0,s9,"Matrix3",0,Z,"Matrix4",0,e2,"MaxEquation",0,104,"Mesh",0,nf,"MeshBasicMaterial",0,tV,"MeshDepthMaterial",0,av,"MeshDistanceMaterial",0,a_,"MeshLambertMaterial",0,ag,"MeshMatcapMaterial",0,ay,"MeshNormalMaterial",0,am,"MeshPhongMaterial",0,ap,"MeshPhysicalMaterial",0,ad,"MeshStandardMaterial",0,ah,"MeshToonMaterial",0,af,"MinEquation",0,103,"MirroredRepeatWrapping",0,1002,"MixOperation",0,1,"MultiplyBlending",0,4,"MultiplyOperation",0,0,"NearestFilter",0,1003,"NearestMipMapLinearFilter",0,1005,"NearestMipMapNearestFilter",0,1004,"NearestMipmapLinearFilter",0,1005,"NearestMipmapNearestFilter",0,1004,"NeutralToneMapping",0,7,"NeverCompare",0,512,"NeverDepth",0,0,"NeverStencilFunc",0,512,"NoBlending",0,0,"NoColorSpace",0,"","NoToneMapping",0,0,"NormalAnimationBlendMode",0,2500,"NormalBlending",0,1,"NotEqualCompare",0,517,"NotEqualDepth",0,7,"NotEqualStencilFunc",0,517,"NumberKeyframeTrack",0,aU,"Object3D",0,ty,"ObjectLoader",0,sp,"ObjectSpaceNormalMap",0,1,"OctahedronGeometry",0,r8,"OneFactor",0,201,"OneMinusConstantAlphaFactor",0,214,"OneMinusConstantColorFactor",0,212,"OneMinusDstAlphaFactor",0,207,"OneMinusDstColorFactor",0,209,"OneMinusSrcAlphaFactor",0,205,"OneMinusSrcColorFactor",0,203,"OrthographicCamera",0,sn,"PCFShadowMap",0,1,"PCFSoftShadowMap",0,2,"PMREMGenerator",0,o8,"Path",0,rw,"PerspectiveCamera",0,nE,"Plane",0,iy,"PlaneGeometry",0,r9,"PlaneHelper",0,oC,"PointLight",0,st,"PointLightHelper",0,oc,"Points",0,i4,"PointsMaterial",0,iQ,"PolarGridHelper",0,og,"PolyhedronGeometry",0,rI,"PositionalAudio",0,sF,"PropertyBinding",0,sX,"PropertyMixer",0,sB,"QuadraticBezierCurve",0,rx,"QuadraticBezierCurve3",0,rb,"Quaternion",0,ew,"QuaternionKeyframeTrack",0,aO,"QuaternionLinearInterpolant",0,aD,"RED_GREEN_RGTC2_Format",0,36285,"RED_RGTC1_Format",0,36283,"REVISION",0,"171","RGBADepthPacking",0,3201,"RGBAFormat",0,1023,"RGBAIntegerFormat",0,1033,"RGBA_ASTC_10x10_Format",0,37819,"RGBA_ASTC_10x5_Format",0,37816,"RGBA_ASTC_10x6_Format",0,37817,"RGBA_ASTC_10x8_Format",0,37818,"RGBA_ASTC_12x10_Format",0,37820,"RGBA_ASTC_12x12_Format",0,37821,"RGBA_ASTC_4x4_Format",0,37808,"RGBA_ASTC_5x4_Format",0,37809,"RGBA_ASTC_5x5_Format",0,37810,"RGBA_ASTC_6x5_Format",0,37811,"RGBA_ASTC_6x6_Format",0,37812,"RGBA_ASTC_8x5_Format",0,37813,"RGBA_ASTC_8x6_Format",0,37814,"RGBA_ASTC_8x8_Format",0,37815,"RGBA_BPTC_Format",0,36492,"RGBA_ETC2_EAC_Format",0,37496,"RGBA_PVRTC_2BPPV1_Format",0,35843,"RGBA_PVRTC_4BPPV1_Format",0,35842,"RGBA_S3TC_DXT1_Format",0,33777,"RGBA_S3TC_DXT3_Format",0,33778,"RGBA_S3TC_DXT5_Format",0,33779,"RGBDepthPacking",0,3202,"RGBFormat",0,1022,"RGBIntegerFormat",0,1032,"RGB_BPTC_SIGNED_Format",0,36494,"RGB_BPTC_UNSIGNED_Format",0,36495,"RGB_ETC1_Format",0,36196,"RGB_ETC2_Format",0,37492,"RGB_PVRTC_2BPPV1_Format",0,35841,"RGB_PVRTC_4BPPV1_Format",0,35840,"RGB_S3TC_DXT1_Format",0,33776,"RGDepthPacking",0,3203,"RGFormat",0,1030,"RGIntegerFormat",0,1031,"RawShaderMaterial",0,ac,"Ray",0,e1,"Raycaster",0,s3,"RectAreaLight",0,ss,"RedFormat",0,1028,"RedIntegerFormat",0,1029,"ReinhardToneMapping",0,2,"RenderTarget",0,ey,"RepeatWrapping",0,1e3,"ReplaceStencilOp",0,7681,"ReverseSubtractEquation",0,102,"RingGeometry",0,r7,"SIGNED_RED_GREEN_RGTC2_Format",0,36286,"SIGNED_RED_RGTC1_Format",0,36284,"SRGBColorSpace",0,I,"SRGBTransfer",0,U,"Scene",0,nL,"ShaderChunk",0,oB,"ShaderLib",0,oH,"ShaderMaterial",0,nb,"ShadowMaterial",0,au,"Shape",0,rz,"ShapeGeometry",0,ae,"ShapePath",0,oL,"ShapeUtils",0,r1,"ShortType",0,1011,"Skeleton",0,ia,"SkeletonHelper",0,ou,"SkinnedMesh",0,n7,"Source",0,ef,"Sphere",0,eq,"SphereGeometry",0,at,"Spherical",0,s6,"SphericalHarmonics3",0,so,"SplineCurve",0,rS,"SpotLight",0,a6,"SpotLightHelper",0,oa,"Sprite",0,nZ,"SpriteMaterial",0,nO,"SrcAlphaFactor",0,204,"SrcAlphaSaturateFactor",0,210,"SrcColorFactor",0,202,"StaticCopyUsage",0,35046,"StaticDrawUsage",0,35044,"StaticReadUsage",0,35045,"StereoCamera",0,sM,"StreamCopyUsage",0,35042,"StreamDrawUsage",0,35040,"StreamReadUsage",0,35041,"StringKeyframeTrack",0,aF,"SubtractEquation",0,101,"SubtractiveBlending",0,3,"TOUCH",0,C,"TangentSpaceNormalMap",0,0,"TetrahedronGeometry",0,an,"Texture",0,ev,"TextureLoader",0,a$,"TextureUtils",0,oD,"TorusGeometry",0,ai,"TorusKnotGeometry",0,ar,"Triangle",0,tN,"TriangleFanDrawMode",0,2,"TriangleStripDrawMode",0,1,"TrianglesDrawMode",0,0,"TubeGeometry",0,aa,"UVMapping",0,300,"Uint16BufferAttribute",0,t0,"Uint32BufferAttribute",0,t2,"Uint8BufferAttribute",0,tK,"Uint8ClampedBufferAttribute",0,t$,"Uniform",0,sK,"UniformsGroup",0,sQ,"UniformsLib",0,ok,"UniformsUtils",0,nx,"UnsignedByteType",0,1009,"UnsignedInt248Type",0,1020,"UnsignedInt5999Type",0,35902,"UnsignedIntType",0,1014,"UnsignedShort4444Type",0,1017,"UnsignedShort5551Type",0,1018,"UnsignedShortType",0,1012,"VSMShadowMap",0,3,"Vector2",0,Y,"Vector3",0,eE,"Vector4",0,e_,"VectorKeyframeTrack",0,az,"VideoTexture",0,i8,"WebGL3DRenderTarget",0,eT,"WebGLArrayRenderTarget",0,eS,"WebGLCoordinateSystem",0,2e3,"WebGLCubeRenderTarget",0,nR,"WebGLMultipleRenderTargets",0,oO,"WebGLRenderTarget",0,ex,"WebGLRenderer",0,uK,"WebGLUtils",0,uk,"WebGPUCoordinateSystem",0,2001,"WireframeGeometry",0,as,"WrapAroundEnding",0,2402,"ZeroCurvatureEnding",0,2400,"ZeroFactor",0,200,"ZeroSlopeEnding",0,2401,"ZeroStencilOp",0,0,"createCanvasElement",0,et],32009);var hv=e.i(32009);function h_(e,t){let n;return(...i)=>{window.clearTimeout(n),n=window.setTimeout(()=>e(...i),t)}}let hy=["x","y","top","bottom","left","right","width","height"];function hx({ref:e,children:t,fallback:n,resize:i,style:r,gl:a,events:s=hg,eventSource:o,eventPrefix:l,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,scene:y,onPointerMissed:x,onCreated:b,...S}){E.useMemo(()=>cZ(hv),[]);let M=cd(),[T,w]=function({debounce:e,scroll:t,polyfill:n,offsetSize:i}={debounce:0,scroll:!1,offsetSize:!1}){var r,a,s;let o=n||("u"(p.current=!0,()=>void(p.current=!1)));let[f,m,g]=(0,E.useMemo)(()=>{let e=()=>{let e,t;if(!c.current.element)return;let{left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d}=c.current.element.getBoundingClientRect(),f={left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d};c.current.element instanceof HTMLElement&&i&&(f.height=c.current.element.offsetHeight,f.width=c.current.element.offsetWidth),Object.freeze(f),p.current&&(e=c.current.lastBounds,t=f,!hy.every(n=>e[n]===t[n]))&&u(c.current.lastBounds=f)};return[e,d?h_(e,d):e,h?h_(e,h):e]},[u,i,h,d]);function v(){c.current.scrollContainers&&(c.current.scrollContainers.forEach(e=>e.removeEventListener("scroll",g,!0)),c.current.scrollContainers=null),c.current.resizeObserver&&(c.current.resizeObserver.disconnect(),c.current.resizeObserver=null),c.current.orientationHandler&&("orientation"in screen&&"removeEventListener"in screen.orientation?screen.orientation.removeEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.removeEventListener("orientationchange",c.current.orientationHandler))}function _(){c.current.element&&(c.current.resizeObserver=new o(g),c.current.resizeObserver.observe(c.current.element),t&&c.current.scrollContainers&&c.current.scrollContainers.forEach(e=>e.addEventListener("scroll",g,{capture:!0,passive:!0})),c.current.orientationHandler=()=>{g()},"orientation"in screen&&"addEventListener"in screen.orientation?screen.orientation.addEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.addEventListener("orientationchange",c.current.orientationHandler))}return r=g,a=!!t,(0,E.useEffect)(()=>{if(a)return window.addEventListener("scroll",r,{capture:!0,passive:!0}),()=>void window.removeEventListener("scroll",r,!0)},[r,a]),s=m,(0,E.useEffect)(()=>(window.addEventListener("resize",s),()=>void window.removeEventListener("resize",s)),[s]),(0,E.useEffect)(()=>{v(),_()},[t,g,m]),(0,E.useEffect)(()=>v,[]),[e=>{e&&e!==c.current.element&&(v(),c.current.element=e,c.current.scrollContainers=function e(t){let n=[];if(!t||t===document.body)return n;let{overflow:i,overflowX:r,overflowY:a}=window.getComputedStyle(t);return[i,r,a].some(e=>"auto"===e||"scroll"===e)&&n.push(t),[...n,...e(t.parentElement)]}(e),_())},l,f]}({scroll:!0,debounce:{scroll:50,resize:0},...i}),A=E.useRef(null),C=E.useRef(null);E.useImperativeHandle(e,()=>A.current);let R=ch(x),[P,I]=E.useState(!1),[L,N]=E.useState(!1);if(P)throw P;if(L)throw L;let U=E.useRef(null);cc(()=>{let e=A.current;w.width>0&&w.height>0&&e&&(U.current||(U.current=he(e)),async function(){await U.current.configure({gl:a,scene:y,events:s,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,size:w,onPointerMissed:(...e)=>null==R.current?void 0:R.current(...e),onCreated:e=>{null==e.events.connect||e.events.connect(o?cl(o)?o.current:o:C.current),l&&e.setEvents({compute:(e,t)=>{let n=e[l+"X"],i=e[l+"Y"];t.pointer.set(n/t.size.width*2-1,-(2*(i/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)}}),null==b||b(e)}}),U.current.render((0,u9.jsx)(M,{children:(0,u9.jsx)(cf,{set:N,children:(0,u9.jsx)(E.Suspense,{fallback:(0,u9.jsx)(cp,{set:I}),children:null!=t?t:null})})}))}())}),E.useEffect(()=>{let e=A.current;if(e)return()=>hn(e)},[]);let D=o?"none":"auto";return(0,u9.jsx)("div",{ref:C,style:{position:"relative",width:"100%",height:"100%",overflow:"hidden",pointerEvents:D,...r},...S,children:(0,u9.jsx)("div",{ref:T,style:{width:"100%",height:"100%"},children:(0,u9.jsx)("canvas",{ref:A,style:{display:"block"},children:n})})})}e.s(["Canvas",0,function(e){return(0,u9.jsx)(ci,{children:(0,u9.jsx)(hx,{...e})})}],75056),e.s(["useFrame",0,cz],25234),e.s(["useThree",0,cF],28600)},67335,e=>{"use strict";var t=e.i(1950);e.s(["extend",()=>t.e])},44208,e=>{"use strict";var t=e.i(1950);e.s(["createPortal",()=>t.o])},60602,e=>{"use strict";var t=e.i(1950);e.s(["useLoader",()=>t.G])},24205,e=>{"use strict";var t=e.i(1950);e.s(["applyProps",()=>t.s])}]); \ No newline at end of file + `+e.join(" > ")}return null},rt.getPublicRootInstance=function(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 27:case 5:return rA(e.child.stateNode);default:return e.child.stateNode}},rt.injectIntoDevTools=function(){var e={bundleType:0,version:rT,rendererPackageName:rw,currentDispatcherRef:rM,reconcilerVersion:"19.2.0"};if(null!==rE&&(e.rendererConfig=rE),typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")e=!1;else{var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)e=!0;else{try{sG=t.inject(e),sW=t}catch{}e=!!t.checkDCE}}return e},rt.isAlreadyRendering=function(){return(6&lm)!=0},rt.observeVisibleRects=function(e,t,n,r){if(!r7)throw Error(i(363));var a=as(e=im(e,t),n,r).disconnect;return{disconnect:function(){a()}}},rt.shouldError=function(){return null},rt.shouldSuspend=function(){return!1},rt.startHostTransition=function(e,t,r,a){if(5!==e.tag)throw Error(i(476));var s=tW(e).queue;tG(e,s,t,r4,null===r?n:function(){var t=tW(e);return null===t.next&&(t=e.alternate.memoizedState),tK(e,t.next.queue,{},ig()),r(a)})},rt.updateContainer=function(e,t,n,i){var r=t.current,a=ig();return i9(r,a,e,t,n,i),a},rt.updateContainerSync=function(e,t,n,i){return i9(t.current,2,e,t,n,i),2},rt},cG.exports.default=cG.exports,Object.defineProperty(cG.exports,"__esModule",{value:!0})),cV.exports=cG.exports),(b=cV.exports)&&b.__esModule&&Object.prototype.hasOwnProperty.call(b,"default"))?b.default:b,cj={},cX=/^three(?=[A-Z])/,cq=e=>`${e[0].toUpperCase()}${e.slice(1)}`,cY=0;function cZ(e){if("function"==typeof e){let t=`${cY++}`;return cj[t]=e,t}Object.assign(cj,e)}function cJ(e,t){let n=cq(e),i=cj[n];if("primitive"!==e&&!i)throw Error(`R3F: ${n} is not part of the THREE namespace! Did you forget to extend? See: https://docs.pmnd.rs/react-three-fiber/api/objects#using-3rd-party-objects-declaratively`);if("primitive"===e&&!t.object)throw Error("R3F: Primitives without 'object' are invalid!");if(void 0!==t.args&&!Array.isArray(t.args))throw Error("R3F: The args prop must be an array!")}function cK(e){if(e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cS(e.parent,e):cI(e.object)&&!1!==e.props.visible&&(e.object.visible=!0),e.isHidden=!1,cR(e)}}function c$(e,t,n){let i=t.root.getState();if(e.parent||e.object===i.scene){if(!t.object){var r,a;let e=cj[cq(t.type)];t.object=null!=(r=t.props.object)?r:new e(...null!=(a=t.props.args)?a:[]),t.object.__r3f=t}if(cC(t.object,t.props),t.props.attach)cS(e,t);else if(cI(t.object)&&cI(e.object)){let i=e.object.children.indexOf(null==n?void 0:n.object);if(n&&-1!==i){let n=e.object.children.indexOf(t.object);-1!==n?(e.object.children.splice(n,1),e.object.children.splice(n{try{e.dispose()}catch{}};"u">typeof IS_REACT_ACT_ENVIRONMENT?t():(0,u8.unstable_scheduleCallback)(u8.unstable_IdlePriority,t)}}function c2(e,t,n){if(!t)return;t.parent=null;let i=e.children.indexOf(t);-1!==i&&e.children.splice(i,1),t.props.attach?cM(e,t):cI(t.object)&&cI(e.object)&&(e.object.remove(t.object),function(e,t){let{internal:n}=e.getState();n.interaction=n.interaction.filter(e=>e!==t),n.initialHits=n.initialHits.filter(e=>e!==t),n.hovered.forEach((e,i)=>{(e.eventObject===t||e.object===t)&&n.hovered.delete(i)}),n.capturedMap.forEach((e,i)=>{cN(n.capturedMap,t,e,i)})}(co(t),t.object));let r=null!==t.props.dispose&&!1!==n;for(let e=t.children.length-1;e>=0;e--){let n=t.children[e];c2(t,n,r)}t.children.length=0,delete t.object.__r3f,r&&"primitive"!==t.type&&"Scene"!==t.object.type&&c1(t.object),void 0===n&&cR(t)}let c3=[],c4=()=>{},c5={},c6=0,c8=(S={isPrimaryRenderer:!1,warnsIfNotActing:!1,supportsMutation:!0,supportsPersistence:!1,supportsHydration:!1,createInstance:function(e,t,n){var i;return cJ(e=cq(e)in cj?e:e.replace(cX,""),t),"primitive"===e&&null!=(i=t.object)&&i.__r3f&&delete t.object.__r3f,cy(t.object,n,e,t)},removeChild:c2,appendChild:cQ,appendInitialChild:cQ,insertBefore:c0,appendChildToContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&cQ(n,t)},removeChildFromContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&c2(n,t)},insertInContainerBefore(e,t,n){let i=e.getState().scene.__r3f;t&&n&&i&&c0(i,t,n)},getRootHostContext:()=>c5,getChildHostContext:()=>c5,commitUpdate(e,t,n,i,r){var a,s,o;cJ(t,i);let l=!1;if("primitive"===e.type&&n.object!==i.object||(null==(a=i.args)?void 0:a.length)!==(null==(s=n.args)?void 0:s.length)?l=!0:null!=(o=i.args)&&o.some((e,t)=>{var i;return e!==(null==(i=n.args)?void 0:i[t])})&&(l=!0),l)c3.push([e,{...i},r]);else{let t=function(e,t){let n={};for(let i in t)if(!cT.includes(i)&&!cv.equ(t[i],e.props[i]))for(let e in n[i]=t[i],t)e.startsWith(`${i}-`)&&(n[e]=t[e]);for(let i in e.props){if(cT.includes(i)||t.hasOwnProperty(i))continue;let{root:r,key:a}=cx(e.object,i);if(r.constructor&&0===r.constructor.length){let e=function(e){let t=cw.get(e.constructor);try{t||(t=new e.constructor,cw.set(e.constructor,t))}catch(e){}return t}(r);cv.und(e)||(n[a]=e[a])}else n[a]=0}return n}(e,i);Object.keys(t).length&&(Object.assign(e.props,t),cC(e.object,t))}(null===r.sibling||(4&r.flags)==0)&&function(){for(let[e]of c3){let t=e.parent;if(t)for(let n of(e.props.attach?cM(t,e):cI(e.object)&&cI(t.object)&&t.object.remove(e.object),e.children))n.props.attach?cM(e,n):cI(n.object)&&cI(e.object)&&e.object.remove(n.object);e.isHidden&&cK(e),e.object.__r3f&&delete e.object.__r3f,"primitive"!==e.type&&c1(e.object)}for(let[i,r,a]of c3){i.props=r;let s=i.parent;if(s){let r=cj[cq(i.type)],o=i.object;i.object=null!=(e=i.props.object)?e:new r(...null!=(t=i.props.args)?t:[]),i.object.__r3f=i;var e,t,n=i.object;for(let e of[a,a.alternate])if(null!==e)if("function"==typeof e.ref){null==e.refCleanup||e.refCleanup();let t=e.ref(n);"function"==typeof t&&(e.refCleanup=t)}else e.ref&&(e.ref.current=n);for(let e of(!function(e,t,n){let{internal:i}=e.getState();for(let e=0;e{if(e.eventObject===t||e.object===t){i.hovered.delete(r);let a={...e,eventObject:e.eventObject===t?n:e.eventObject,object:e.object===t?n:e.object};i.hovered.set(cL(a),a)}}),i.capturedMap.forEach(e=>{let i=e.get(t);i&&(e.delete(t),e.set(n,i))})}(co(i),o,i.object),cC(i.object,i.props),i.props.attach?cS(s,i):cI(i.object)&&cI(s.object)&&s.object.add(i.object),i.children))e.props.attach?cS(i,e):cI(e.object)&&cI(i.object)&&i.object.add(e.object);cR(i)}}c3.length=0}()},finalizeInitialChildren:()=>!1,commitMount(){},getPublicInstance:e=>null==e?void 0:e.object,prepareForCommit:()=>null,preparePortalMount:e=>cy(e.getState().scene,e,"",{}),resetAfterCommit:()=>{},shouldSetTextContent:()=>!1,clearContainer:()=>!1,hideInstance:function(e){if(!e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cM(e.parent,e):cI(e.object)&&(e.object.visible=!1),e.isHidden=!0,cR(e)}},unhideInstance:cK,createTextInstance:c4,hideTextInstance:c4,unhideTextInstance:c4,scheduleTimeout:"function"==typeof setTimeout?setTimeout:void 0,cancelTimeout:"function"==typeof clearTimeout?clearTimeout:void 0,noTimeout:-1,getInstanceFromNode:()=>null,beforeActiveInstanceBlur(){},afterActiveInstanceBlur(){},detachDeletedInstance(){},prepareScopeUpdate(){},getInstanceFromScope:()=>null,shouldAttemptEagerTransition:()=>!1,trackSchedulerEvent:()=>{},resolveEventType:()=>null,resolveEventTimeStamp:()=>-1.1,requestPostPaintCallback(){},maySuspendCommit:()=>!1,preloadInstance:()=>!0,suspendInstance(){},waitForCommitToBeReady:()=>null,NotPendingTransition:null,HostTransitionContext:E.createContext(null),setCurrentUpdatePriority(e){c6=e},getCurrentUpdatePriority:()=>c6,resolveUpdatePriority(){var e;if(0!==c6)return c6;switch("u">typeof window&&(null==(e=window.event)?void 0:e.type)){case"click":case"contextmenu":case"dblclick":case"pointercancel":case"pointerdown":case"pointerup":return 2;case"pointermove":case"pointerout":case"pointerover":case"pointerenter":case"pointerleave":case"wheel":return 8;default:return 32}},resetFormInstance(){},rendererPackageName:"@react-three/fiber",rendererVersion:"9.6.1",applyViewTransitionName(e,t,n){},restoreViewTransitionName(e,t){},cancelViewTransitionName(e,t,n){},cancelRootViewTransitionName(e){},restoreRootViewTransitionName(e){},InstanceMeasurement:null,measureInstance:e=>null,wasInstanceInViewport:e=>!0,hasInstanceChanged:(e,t)=>!1,hasInstanceAffectedParent:(e,t)=>!1,suspendOnActiveViewTransition(e,t){},startGestureTransition:()=>null,startViewTransition:()=>null,stopViewTransition(e){},createViewTransitionInstance:e=>null,getCurrentGestureOffset(e){throw Error("startGestureTransition is not yet supported in react-three-fiber.")},cloneMutableInstance:(e,t)=>e,cloneMutableTextInstance:e=>e,cloneRootViewTransitionContainer(e){throw Error("Not implemented.")},removeRootViewTransitionClone(e,t){throw Error("Not implemented.")},createFragmentInstance:e=>null,updateFragmentInstanceFiber(e,t){},commitNewChildToFragmentInstance(e,t){},deleteChildFromFragmentInstance(e,t){},measureClonedInstance:e=>null,maySuspendCommitOnUpdate:(e,t,n)=>!1,maySuspendCommitInSyncRender:(e,t)=>!1,startSuspendingCommit:()=>null,getSuspendedCommitReason:(e,t)=>null},(_=cW(S)).injectIntoDevTools(),_),c9=new Map,c7={objects:"shallow",strict:!1};function he(e){var t,n;let i,r,a,s,o,l,u,c=c9.get(e),h=null==c?void 0:c.fiber,d=null==c?void 0:c.store;c&&console.warn("R3F.createRoot should only be called once!");let p="function"==typeof reportError?reportError:console.error,f=d||(t=hp,n=hf,o=(s=(a=u3((e,i)=>{let r,a=new eE,s=new eE,o=new eE;function l(e=i().camera,t=s,n=i().size){let{width:r,height:u,top:c,left:h}=n,d=r/u;t.isVector3?o.copy(t):o.set(...t);let p=e.getWorldPosition(a).distanceTo(o);if(e&&e.isOrthographicCamera)return{width:r/e.zoom,height:u/e.zoom,top:c,left:h,factor:1,distance:p,aspect:d};{let t=2*Math.tan(e.fov*Math.PI/180/2)*p,n=r/u*t;return{width:n,height:t,top:c,left:h,factor:r/n,distance:p,aspect:d}}}let u=t=>e(e=>({performance:{...e.performance,current:t}})),c=new Y;return{set:e,get:i,gl:null,camera:null,raycaster:null,events:{priority:1,enabled:!0,connected:!1},scene:null,xr:null,invalidate:(e=1)=>t(i(),e),advance:(e,t)=>n(e,t,i()),legacy:!1,linear:!1,flat:!1,controls:null,clock:new sw,pointer:c,mouse:c,frameloop:"always",onPointerMissed:void 0,performance:{current:1,min:.5,max:1,debounce:200,regress:()=>{let e=i();r&&clearTimeout(r),e.performance.current!==e.performance.min&&u(e.performance.min),r=setTimeout(()=>u(i().performance.max),e.performance.debounce)}},size:{width:0,height:0,top:0,left:0},viewport:{initialDpr:0,dpr:0,width:0,height:0,top:0,left:0,aspect:0,distance:0,factor:0,getCurrentViewport:l},setEvents:t=>e(e=>({...e,events:{...e.events,...t}})),setSize:(t,n,r=0,a=0)=>{let o=i().camera,u={width:t,height:n,top:r,left:a};e(e=>({size:u,viewport:{...e.viewport,...l(o,s,u)}}))},setDpr:t=>e(e=>{let n=cm(t);return{viewport:{...e.viewport,dpr:n,initialDpr:e.viewport.initialDpr||n}}}),setFrameloop:(t="always")=>{let n=i().clock;n.stop(),n.elapsedTime=0,"never"!==t&&(n.start(),n.elapsedTime=0),e(()=>({frameloop:t}))},previousRoot:void 0,internal:{interaction:[],hovered:new Map,subscribers:[],initialClick:[0,0],initialHits:[],capturedMap:new Map,lastEvent:E.createRef(),active:!1,frames:0,priority:0,subscribe:(e,t,n)=>{let r=i().internal;return r.priority=r.priority+ +(t>0),r.subscribers.push({ref:e,priority:t,store:n}),r.subscribers=r.subscribers.sort((e,t)=>e.priority-t.priority),()=>{let n=i().internal;null!=n&&n.subscribers&&(n.priority=n.priority-(t>0),n.subscribers=n.subscribers.filter(t=>t.ref!==e))}}}}})).getState()).size,l=s.viewport.dpr,u=s.camera,a.subscribe(()=>{let{camera:e,size:t,viewport:n,gl:i,set:r}=a.getState();if(t.width!==o.width||t.height!==o.height||n.dpr!==l){o=t,l=n.dpr,cP(e,t),n.dpr>0&&i.setPixelRatio(n.dpr);let r="u">typeof HTMLCanvasElement&&i.domElement instanceof HTMLCanvasElement;i.setSize(t.width,t.height,r)}e!==u&&(u=e,r(t=>({viewport:{...t.viewport,...t.viewport.getCurrentViewport(e)}})))}),a.subscribe(e=>t(e)),a),m=h||c8.createContainer(f,1,null,!1,null,"",p,p,p,null);c||c9.set(e,{fiber:m,store:f});let g=!1,v=null;return{async configure(t={}){var n,a;let s;v=new Promise(e=>s=e);let{gl:o,size:l,scene:u,events:c,onCreated:h,shadows:d=!1,linear:p=!1,flat:m=!1,legacy:_=!1,orthographic:y=!1,frameloop:x="always",dpr:b=[1,2],performance:S,raycaster:M,camera:T,onPointerMissed:w}=t,E=f.getState(),A=E.gl;if(!E.gl){let t={canvas:e,powerPreference:"high-performance",antialias:!0,alpha:!0},n="function"==typeof o?await o(t):o;A=cU(n)?n:new uK({...t,...o}),E.set({gl:A})}let C=E.raycaster;C||E.set({raycaster:C=new s3});let{params:R,...P}=M||{};if(cv.equ(P,C,c7)||cC(C,{...P}),cv.equ(R,C.params,c7)||cC(C,{params:{...C.params,...R}}),!E.camera||E.camera===r&&!cv.equ(r,T,c7)){r=T;let e=null==T?void 0:T.isCamera,t=e?T:y?new sn(0,0,0,0,.1,1e3):new nE(75,0,.1,1e3);!e&&(t.position.z=5,T&&(cC(t,T),!t.manual&&("aspect"in T||"left"in T||"right"in T||"bottom"in T||"top"in T)&&(t.manual=!0,t.updateProjectionMatrix())),E.camera||null!=T&&T.rotation||t.lookAt(0,0,0)),E.set({camera:t}),C.camera=t}if(!E.scene){let e;null!=u&&u.isScene?cy(e=u,f,"",{}):(cy(e=new nL,f,"",{}),u&&cC(e,u)),E.set({scene:e})}c&&!E.events.handlers&&E.set({events:c(f)});let N=function(e,t){if(!t&&"u">typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement&&e.parentElement){let{width:t,height:n,top:i,left:r}=e.parentElement.getBoundingClientRect();return{width:t,height:n,top:i,left:r}}return!t&&"u">typeof OffscreenCanvas&&e instanceof OffscreenCanvas?{width:e.width,height:e.height,top:0,left:0}:{width:0,height:0,top:0,left:0,...t}}(e,l);if(cv.equ(N,E.size,c7)||E.setSize(N.width,N.height,N.top,N.left),b&&E.viewport.dpr!==cm(b)&&E.setDpr(b),E.frameloop!==x&&E.setFrameloop(x),E.onPointerMissed||E.set({onPointerMissed:w}),S&&!cv.equ(S,E.performance,c7)&&E.set(e=>({performance:{...e.performance,...S}})),!E.xr){let e=(e,t)=>{let n=f.getState();"never"!==n.frameloop&&hf(e,!0,n,t)},t=()=>{let t=f.getState();t.gl.xr.enabled=t.gl.xr.isPresenting,t.gl.xr.setAnimationLoop(t.gl.xr.isPresenting?e:null),t.gl.xr.isPresenting||hp(t)},i={connect(){let e=f.getState().gl;e.xr.addEventListener("sessionstart",t),e.xr.addEventListener("sessionend",t)},disconnect(){let e=f.getState().gl;e.xr.removeEventListener("sessionstart",t),e.xr.removeEventListener("sessionend",t)}};"function"==typeof(null==(n=A.xr)?void 0:n.addEventListener)&&i.connect(),E.set({xr:i})}if(A.shadowMap){let e=A.shadowMap.enabled,t=A.shadowMap.type;A.shadowMap.enabled=!!d,cv.boo(d)?A.shadowMap.type=2:cv.str(d)?A.shadowMap.type=null!=(a=({basic:0,percentage:1,soft:2,variance:3})[d])?a:2:cv.obj(d)&&Object.assign(A.shadowMap,d),(e!==A.shadowMap.enabled||t!==A.shadowMap.type)&&(A.shadowMap.needsUpdate=!0)}return eu.enabled=!_,g||(A.outputColorSpace=p?L:I,A.toneMapping=4*!m),E.legacy!==_&&E.set(()=>({legacy:_})),E.linear!==p&&E.set(()=>({linear:p})),E.flat!==m&&E.set(()=>({flat:m})),!o||cv.fun(o)||cU(o)||cv.equ(o,A,c7)||cC(A,o),i=h,g=!0,s(),this},render(t){return g||v||this.configure(),v.then(()=>{c8.updateContainer((0,u9.jsx)(ht,{store:f,children:t,onCreated:i,rootElement:e}),m,null,()=>void 0)}),f},unmount(){hn(e)}}}function ht({store:e,children:t,onCreated:n,rootElement:i}){return cc(()=>{let t=e.getState();t.set(e=>({internal:{...e.internal,active:!0}})),n&&n(t),e.getState().events.connected||null==t.events.connect||t.events.connect(i)},[]),(0,u9.jsx)(cD.Provider,{value:e,children:t})}function hn(e,t){let n=c9.get(e),i=null==n?void 0:n.fiber;if(i){let r=null==n?void 0:n.store.getState();r&&(r.internal.active=!1),c8.updateContainer(null,i,null,()=>{r&&setTimeout(()=>{try{null==r.events.disconnect||r.events.disconnect(),null==(n=r.gl)||null==(i=n.renderLists)||null==i.dispose||i.dispose(),null==(a=r.gl)||null==a.forceContextLoss||a.forceContextLoss(),null!=(s=r.gl)&&s.xr&&r.xr.disconnect();var n,i,a,s,o=r.scene;for(let e in"Scene"!==o.type&&(null==o.dispose||o.dispose()),o){let t=o[e];(null==t?void 0:t.type)!=="Scene"&&(null==t||null==t.dispose||t.dispose())}c9.delete(e),t&&t(e)}catch(e){}},500)})}}function hi({state:e={},children:t,container:n}){let{events:i,size:r,...a}=e,s=cO(),[o]=E.useState(()=>new s3),[l]=E.useState(()=>new Y),u=ch((e,t)=>{let a;if(t.camera&&r){let n=t.camera;a=e.viewport.getCurrentViewport(n,new eE,r),n!==e.camera&&cP(n,r)}return{...e,...t,scene:n,raycaster:o,pointer:l,mouse:l,previousRoot:s,events:{...e.events,...t.events,...i},size:{...e.size,...r},viewport:{...e.viewport,...a},setEvents:e=>t.set(t=>({...t,events:{...t.events,...e}}))}}),c=E.useMemo(()=>{let e=u3((e,t)=>({...a,set:e,get:t})),t=t=>e.setState(e=>u.current(t,e));return t(s.getState()),s.subscribe(t),e},[s,n]);return(0,u9.jsx)(u9.Fragment,{children:c8.createPortal((0,u9.jsx)(cD.Provider,{value:c,children:t}),c,null)})}let hr=new Set,ha=new Set,hs=new Set;function ho(e,t){if(e.size)for(let{callback:n}of e.values())n(t)}function hl(e,t){switch(e){case"before":return ho(hr,t);case"after":return ho(ha,t);case"tail":return ho(hs,t)}}function hu(e,t,n){let i=t.clock.getDelta();"never"===t.frameloop&&"number"==typeof e&&(i=e-t.clock.elapsedTime,t.clock.oldTime=t.clock.elapsedTime,t.clock.elapsedTime=e),s=t.internal.subscribers;for(let e=0;e0)&&!(null!=(t=c.gl.xr)&&t.isPresenting)&&(l+=hu(e,c))}if(hh=!1,hl("after",e),0===l)return hl("tail",e),hc=!1,cancelAnimationFrame(u)}function hp(e,t=1){var n;if(!e)return c9.forEach(e=>hp(e.store.getState(),t));(null==(n=e.gl.xr)||!n.isPresenting)&&e.internal.active&&"never"!==e.frameloop&&(t>1?e.internal.frames=Math.min(60,e.internal.frames+t):hh?e.internal.frames=2:e.internal.frames=1,hc||(hc=!0,requestAnimationFrame(hd)))}function hf(e,t=!0,n,i){if(t&&hl("before",e),n)hu(e,n,i);else for(let t of c9.values())hu(e,t.store.getState());t&&hl("after",e)}let hm={onClick:["click",!1],onContextMenu:["contextmenu",!1],onDoubleClick:["dblclick",!1],onWheel:["wheel",!0],onPointerDown:["pointerdown",!0],onPointerUp:["pointerup",!0],onPointerLeave:["pointerleave",!0],onPointerMove:["pointermove",!0],onPointerCancel:["pointercancel",!0],onLostPointerCapture:["lostpointercapture",!0]};function hg(e){let{handlePointer:t}=function(e){function t(e){return e.filter(e=>["Move","Over","Enter","Out","Leave"].some(t=>{var n;return null==(n=e.__r3f)?void 0:n.handlers["onPointer"+t]}))}function n(t){let{internal:n}=e.getState();for(let e of n.hovered.values())if(!t.length||!t.find(t=>t.object===e.object&&t.index===e.index&&t.instanceId===e.instanceId)){let i=e.eventObject.__r3f;if(n.hovered.delete(cL(e)),null!=i&&i.eventCount){let n=i.handlers,r={...e,intersections:t};null==n.onPointerOut||n.onPointerOut(r),null==n.onPointerLeave||n.onPointerLeave(r)}}}function i(e,t){for(let n=0;nn([]);case"onLostPointerCapture":return t=>{let{internal:i}=e.getState();"pointerId"in t&&i.capturedMap.has(t.pointerId)&&requestAnimationFrame(()=>{i.capturedMap.has(t.pointerId)&&(i.capturedMap.delete(t.pointerId),n([]))})}}return function(a){let{onPointerMissed:s,internal:o}=e.getState();o.lastEvent.current=a;let l="onPointerMove"===r,u="onClick"===r||"onContextMenu"===r||"onDoubleClick"===r,c=function(t,n){let i=e.getState(),r=new Set,a=[],s=n?n(i.internal.interaction):i.internal.interaction;for(let e=0;e{let n=cg(e.object),i=cg(t.object);return n&&i&&i.events.priority-n.events.priority||e.distance-t.distance}).filter(e=>{let t=cL(e);return!r.has(t)&&(r.add(t),!0)});for(let e of(i.events.filter&&(o=i.events.filter(o,i)),o)){let t=e.object;for(;t;){var l;null!=(l=t.__r3f)&&l.eventCount&&a.push({...e,eventObject:t}),t=t.parent}}if("pointerId"in t&&i.internal.capturedMap.has(t.pointerId))for(let e of i.internal.capturedMap.get(t.pointerId).values())r.has(cL(e.intersection))||a.push(e.intersection);return a}(a,l?t:void 0),h=u?function(t){let{internal:n}=e.getState(),i=t.offsetX-n.initialClick[0],r=t.offsetY-n.initialClick[1];return Math.round(Math.sqrt(i*i+r*r))}(a):0;"onPointerDown"===r&&(o.initialClick=[a.offsetX,a.offsetY],o.initialHits=c.map(e=>e.eventObject)),u&&!c.length&&h<=2&&(i(a,o.interaction),s&&s(a)),l&&n(c),!function(e,t,i,r){if(e.length){let a={stopped:!1};for(let s of e){let o=cg(s.object);if(o||s.object.traverseAncestors(e=>{let t=cg(e);if(t)return o=t,!1}),o){let{raycaster:l,pointer:u,camera:c,internal:h}=o,d=new eE(u.x,u.y,0).unproject(c),p=e=>{var t,n;return null!=(t=null==(n=h.capturedMap.get(e))?void 0:n.has(s.eventObject))&&t},f=e=>{let n={intersection:s,target:t.target};h.capturedMap.has(e)?h.capturedMap.get(e).set(s.eventObject,n):h.capturedMap.set(e,new Map([[s.eventObject,n]])),t.target.setPointerCapture(e)},m=e=>{let t=h.capturedMap.get(e);t&&cN(h.capturedMap,s.eventObject,t,e)},g={};for(let e in t){let n=t[e];"function"!=typeof n&&(g[e]=n)}let v={...s,...g,pointer:u,intersections:e,stopped:a.stopped,delta:i,unprojectedPoint:d,ray:l.ray,camera:c,stopPropagation(){let i="pointerId"in t&&h.capturedMap.get(t.pointerId);(!i||i.has(s.eventObject))&&(v.stopped=a.stopped=!0,h.hovered.size&&Array.from(h.hovered.values()).find(e=>e.eventObject===s.eventObject)&&n([...e.slice(0,e.indexOf(s)),s]))},target:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},currentTarget:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},nativeEvent:t};if(r(v),!0===a.stopped)break}}}}(c,a,h,function(e){let t=e.eventObject,n=t.__r3f;if(!(null!=n&&n.eventCount))return;let s=n.handlers;if(l){if(s.onPointerOver||s.onPointerEnter||s.onPointerOut||s.onPointerLeave){let t=cL(e),n=o.hovered.get(t);n?n.stopped&&e.stopPropagation():(o.hovered.set(t,e),null==s.onPointerOver||s.onPointerOver(e),null==s.onPointerEnter||s.onPointerEnter(e))}null==s.onPointerMove||s.onPointerMove(e)}else{let n=s[r];n?(!u||o.initialHits.includes(t))&&(i(a,o.interaction.filter(e=>!o.initialHits.includes(e))),n(e)):u&&o.initialHits.includes(t)&&i(a,o.interaction.filter(e=>!o.initialHits.includes(e)))}})}}}}(e);return{priority:1,enabled:!0,compute(e,t,n){t.pointer.set(e.offsetX/t.size.width*2-1,-(2*(e.offsetY/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)},connected:void 0,handlers:Object.keys(hm).reduce((e,n)=>({...e,[n]:t(n)}),{}),update:()=>{var t;let{events:n,internal:i}=e.getState();null!=(t=i.lastEvent)&&t.current&&n.handlers&&n.handlers.onPointerMove(i.lastEvent.current)},connect:t=>{let{set:n,events:i}=e.getState();if(null==i.disconnect||i.disconnect(),n(e=>({events:{...e.events,connected:t}})),i.handlers)for(let e in i.handlers){let n=i.handlers[e],[r,a]=hm[e];t.addEventListener(r,n,{passive:a})}},disconnect:()=>{let{set:t,events:n}=e.getState();if(n.connected){if(n.handlers)for(let e in n.handlers){let t=n.handlers[e],[i]=hm[e];n.connected.removeEventListener(i,t)}t(e=>({events:{...e.events,connected:void 0}}))}}}}e.s(["B",0,cp,"C",0,cF,"D",0,cz,"E",0,cf,"G",0,cH,"a",0,ch,"b",0,cc,"c",0,he,"d",0,hn,"e",0,cZ,"f",0,hg,"i",0,cl,"o",0,function(e,t,n){return(0,u9.jsx)(hi,{children:e,container:t,state:n})},"s",0,cC,"u",0,cd],1950),e.i(8560),e.s(["ACESFilmicToneMapping",0,4,"AddEquation",0,100,"AddOperation",0,2,"AdditiveAnimationBlendMode",0,2501,"AdditiveBlending",0,2,"AgXToneMapping",0,6,"AlphaFormat",0,1021,"AlwaysCompare",0,519,"AlwaysDepth",0,1,"AlwaysStencilFunc",0,519,"AmbientLight",0,sa,"AnimationAction",0,sY,"AnimationClip",0,aB,"AnimationLoader",0,aq,"AnimationMixer",0,sJ,"AnimationObjectGroup",0,sq,"AnimationUtils",0,aE,"ArcCurve",0,rs,"ArrayCamera",0,sT,"ArrowHelper",0,oP,"AttachedBindMode",0,R,"Audio",0,sL,"AudioAnalyser",0,sz,"AudioContext",0,s_,"AudioListener",0,sI,"AudioLoader",0,sy,"AxesHelper",0,oI,"BackSide",0,1,"BasicDepthPacking",0,3200,"BasicShadowMap",0,0,"BatchedMesh",0,iz,"Bone",0,ie,"BooleanKeyframeTrack",0,aL,"Box2",0,oe,"Box3",0,eR,"Box3Helper",0,oA,"BoxGeometry",0,ng,"BoxHelper",0,oE,"BufferAttribute",0,tZ,"BufferGeometry",0,nn,"BufferGeometryLoader",0,sd,"ByteType",0,1010,"Cache",0,ak,"Camera",0,nS,"CameraHelper",0,oM,"CanvasTexture",0,rn,"CapsuleGeometry",0,rA,"CatmullRomCurve3",0,rd,"CineonToneMapping",0,3,"CircleGeometry",0,rC,"ClampToEdgeWrapping",0,1001,"Clock",0,sw,"Color",0,tz,"ColorKeyframeTrack",0,aN,"ColorManagement",0,eu,"CompressedArrayTexture",0,re,"CompressedCubeTexture",0,rt,"CompressedTexture",0,i7,"CompressedTextureLoader",0,aY,"ConeGeometry",0,rP,"ConstantAlphaFactor",0,213,"ConstantColorFactor",0,211,"Controls",0,oN,"CubeCamera",0,nA,"CubeReflectionMapping",0,301,"CubeRefractionMapping",0,302,"CubeTexture",0,nC,"CubeTextureLoader",0,aJ,"CubeUVReflectionMapping",0,306,"CubicBezierCurve",0,rg,"CubicBezierCurve3",0,rv,"CubicInterpolant",0,aC,"CullFaceBack",0,1,"CullFaceFront",0,2,"CullFaceFrontBack",0,3,"CullFaceNone",0,0,"Curve",0,rr,"CurvePath",0,rT,"CustomBlending",0,5,"CustomToneMapping",0,5,"CylinderGeometry",0,rR,"Cylindrical",0,s8,"Data3DTexture",0,eM,"DataArrayTexture",0,eb,"DataTexture",0,it,"DataTextureLoader",0,aK,"DataUtils",0,tX,"DecrementStencilOp",0,7683,"DecrementWrapStencilOp",0,34056,"DefaultLoadingManager",0,aV,"DepthFormat",0,1026,"DepthStencilFormat",0,1027,"DepthTexture",0,ri,"DetachedBindMode",0,P,"DirectionalLight",0,sr,"DirectionalLightHelper",0,ox,"DiscreteInterpolant",0,aP,"DodecahedronGeometry",0,rL,"DoubleSide",0,2,"DstAlphaFactor",0,206,"DstColorFactor",0,208,"DynamicCopyUsage",0,35050,"DynamicDrawUsage",0,35048,"DynamicReadUsage",0,35049,"EdgesGeometry",0,rF,"EllipseCurve",0,ra,"EqualCompare",0,514,"EqualDepth",0,4,"EqualStencilFunc",0,514,"EquirectangularReflectionMapping",0,303,"EquirectangularRefractionMapping",0,304,"Euler",0,tn,"EventDispatcher",0,O,"ExtrudeGeometry",0,r4,"FileLoader",0,aX,"Float16BufferAttribute",0,t3,"Float32BufferAttribute",0,t4,"FloatType",0,1015,"Fog",0,nI,"FogExp2",0,nP,"FramebufferTexture",0,i9,"FrontSide",0,0,"Frustum",0,iS,"GLBufferAttribute",0,s1,"GLSL1",0,"100","GLSL3",0,D,"GreaterCompare",0,516,"GreaterDepth",0,6,"GreaterEqualCompare",0,518,"GreaterEqualDepth",0,5,"GreaterEqualStencilFunc",0,518,"GreaterStencilFunc",0,516,"GridHelper",0,om,"Group",0,i6,"HalfFloatType",0,1016,"HemisphereLight",0,a0,"HemisphereLightHelper",0,of,"IcosahedronGeometry",0,r6,"ImageBitmapLoader",0,sv,"ImageLoader",0,aZ,"ImageUtils",0,ed,"IncrementStencilOp",0,7682,"IncrementWrapStencilOp",0,34055,"InstancedBufferAttribute",0,is,"InstancedBufferGeometry",0,sh,"InstancedInterleavedBuffer",0,s0,"InstancedMesh",0,im,"Int16BufferAttribute",0,tQ,"Int32BufferAttribute",0,t1,"Int8BufferAttribute",0,tJ,"IntType",0,1013,"InterleavedBuffer",0,nN,"InterleavedBufferAttribute",0,nD,"Interpolant",0,aA,"InterpolateDiscrete",0,2300,"InterpolateLinear",0,2301,"InterpolateSmooth",0,2302,"InvertStencilOp",0,5386,"KeepStencilOp",0,7680,"KeyframeTrack",0,aI,"LOD",0,nQ,"LatheGeometry",0,rE,"Layers",0,ti,"LessCompare",0,513,"LessDepth",0,2,"LessEqualCompare",0,515,"LessEqualDepth",0,3,"LessEqualStencilFunc",0,515,"LessStencilFunc",0,513,"Light",0,aQ,"LightProbe",0,sl,"Line",0,iq,"Line3",0,oi,"LineBasicMaterial",0,iB,"LineCurve",0,r_,"LineCurve3",0,ry,"LineDashedMaterial",0,ax,"LineLoop",0,i$,"LineSegments",0,iK,"LinearFilter",0,1006,"LinearInterpolant",0,aR,"LinearMipMapLinearFilter",0,1008,"LinearMipMapNearestFilter",0,1007,"LinearMipmapLinearFilter",0,1008,"LinearMipmapNearestFilter",0,1007,"LinearSRGBColorSpace",0,L,"LinearToneMapping",0,1,"LinearTransfer",0,N,"Loader",0,aG,"LoaderUtils",0,sc,"LoadingManager",0,aH,"LoopOnce",0,2200,"LoopPingPong",0,2202,"LoopRepeat",0,2201,"LuminanceAlphaFormat",0,1025,"LuminanceFormat",0,1024,"MOUSE",0,A,"Material",0,tH,"MaterialLoader",0,su,"MathUtils",0,q,"Matrix2",0,s9,"Matrix3",0,Z,"Matrix4",0,e2,"MaxEquation",0,104,"Mesh",0,nf,"MeshBasicMaterial",0,tV,"MeshDepthMaterial",0,av,"MeshDistanceMaterial",0,a_,"MeshLambertMaterial",0,ag,"MeshMatcapMaterial",0,ay,"MeshNormalMaterial",0,am,"MeshPhongMaterial",0,ap,"MeshPhysicalMaterial",0,ad,"MeshStandardMaterial",0,ah,"MeshToonMaterial",0,af,"MinEquation",0,103,"MirroredRepeatWrapping",0,1002,"MixOperation",0,1,"MultiplyBlending",0,4,"MultiplyOperation",0,0,"NearestFilter",0,1003,"NearestMipMapLinearFilter",0,1005,"NearestMipMapNearestFilter",0,1004,"NearestMipmapLinearFilter",0,1005,"NearestMipmapNearestFilter",0,1004,"NeutralToneMapping",0,7,"NeverCompare",0,512,"NeverDepth",0,0,"NeverStencilFunc",0,512,"NoBlending",0,0,"NoColorSpace",0,"","NoToneMapping",0,0,"NormalAnimationBlendMode",0,2500,"NormalBlending",0,1,"NotEqualCompare",0,517,"NotEqualDepth",0,7,"NotEqualStencilFunc",0,517,"NumberKeyframeTrack",0,aU,"Object3D",0,ty,"ObjectLoader",0,sp,"ObjectSpaceNormalMap",0,1,"OctahedronGeometry",0,r8,"OneFactor",0,201,"OneMinusConstantAlphaFactor",0,214,"OneMinusConstantColorFactor",0,212,"OneMinusDstAlphaFactor",0,207,"OneMinusDstColorFactor",0,209,"OneMinusSrcAlphaFactor",0,205,"OneMinusSrcColorFactor",0,203,"OrthographicCamera",0,sn,"PCFShadowMap",0,1,"PCFSoftShadowMap",0,2,"PMREMGenerator",0,o8,"Path",0,rw,"PerspectiveCamera",0,nE,"Plane",0,iy,"PlaneGeometry",0,r9,"PlaneHelper",0,oC,"PointLight",0,st,"PointLightHelper",0,oc,"Points",0,i4,"PointsMaterial",0,iQ,"PolarGridHelper",0,og,"PolyhedronGeometry",0,rI,"PositionalAudio",0,sF,"PropertyBinding",0,sX,"PropertyMixer",0,sB,"QuadraticBezierCurve",0,rx,"QuadraticBezierCurve3",0,rb,"Quaternion",0,ew,"QuaternionKeyframeTrack",0,aO,"QuaternionLinearInterpolant",0,aD,"RED_GREEN_RGTC2_Format",0,36285,"RED_RGTC1_Format",0,36283,"REVISION",0,"171","RGBADepthPacking",0,3201,"RGBAFormat",0,1023,"RGBAIntegerFormat",0,1033,"RGBA_ASTC_10x10_Format",0,37819,"RGBA_ASTC_10x5_Format",0,37816,"RGBA_ASTC_10x6_Format",0,37817,"RGBA_ASTC_10x8_Format",0,37818,"RGBA_ASTC_12x10_Format",0,37820,"RGBA_ASTC_12x12_Format",0,37821,"RGBA_ASTC_4x4_Format",0,37808,"RGBA_ASTC_5x4_Format",0,37809,"RGBA_ASTC_5x5_Format",0,37810,"RGBA_ASTC_6x5_Format",0,37811,"RGBA_ASTC_6x6_Format",0,37812,"RGBA_ASTC_8x5_Format",0,37813,"RGBA_ASTC_8x6_Format",0,37814,"RGBA_ASTC_8x8_Format",0,37815,"RGBA_BPTC_Format",0,36492,"RGBA_ETC2_EAC_Format",0,37496,"RGBA_PVRTC_2BPPV1_Format",0,35843,"RGBA_PVRTC_4BPPV1_Format",0,35842,"RGBA_S3TC_DXT1_Format",0,33777,"RGBA_S3TC_DXT3_Format",0,33778,"RGBA_S3TC_DXT5_Format",0,33779,"RGBDepthPacking",0,3202,"RGBFormat",0,1022,"RGBIntegerFormat",0,1032,"RGB_BPTC_SIGNED_Format",0,36494,"RGB_BPTC_UNSIGNED_Format",0,36495,"RGB_ETC1_Format",0,36196,"RGB_ETC2_Format",0,37492,"RGB_PVRTC_2BPPV1_Format",0,35841,"RGB_PVRTC_4BPPV1_Format",0,35840,"RGB_S3TC_DXT1_Format",0,33776,"RGDepthPacking",0,3203,"RGFormat",0,1030,"RGIntegerFormat",0,1031,"RawShaderMaterial",0,ac,"Ray",0,e1,"Raycaster",0,s3,"RectAreaLight",0,ss,"RedFormat",0,1028,"RedIntegerFormat",0,1029,"ReinhardToneMapping",0,2,"RenderTarget",0,ey,"RepeatWrapping",0,1e3,"ReplaceStencilOp",0,7681,"ReverseSubtractEquation",0,102,"RingGeometry",0,r7,"SIGNED_RED_GREEN_RGTC2_Format",0,36286,"SIGNED_RED_RGTC1_Format",0,36284,"SRGBColorSpace",0,I,"SRGBTransfer",0,U,"Scene",0,nL,"ShaderChunk",0,oB,"ShaderLib",0,oH,"ShaderMaterial",0,nb,"ShadowMaterial",0,au,"Shape",0,rz,"ShapeGeometry",0,ae,"ShapePath",0,oL,"ShapeUtils",0,r1,"ShortType",0,1011,"Skeleton",0,ia,"SkeletonHelper",0,ou,"SkinnedMesh",0,n7,"Source",0,ef,"Sphere",0,eq,"SphereGeometry",0,at,"Spherical",0,s6,"SphericalHarmonics3",0,so,"SplineCurve",0,rS,"SpotLight",0,a6,"SpotLightHelper",0,oa,"Sprite",0,nZ,"SpriteMaterial",0,nO,"SrcAlphaFactor",0,204,"SrcAlphaSaturateFactor",0,210,"SrcColorFactor",0,202,"StaticCopyUsage",0,35046,"StaticDrawUsage",0,35044,"StaticReadUsage",0,35045,"StereoCamera",0,sM,"StreamCopyUsage",0,35042,"StreamDrawUsage",0,35040,"StreamReadUsage",0,35041,"StringKeyframeTrack",0,aF,"SubtractEquation",0,101,"SubtractiveBlending",0,3,"TOUCH",0,C,"TangentSpaceNormalMap",0,0,"TetrahedronGeometry",0,an,"Texture",0,ev,"TextureLoader",0,a$,"TextureUtils",0,oD,"TorusGeometry",0,ai,"TorusKnotGeometry",0,ar,"Triangle",0,tN,"TriangleFanDrawMode",0,2,"TriangleStripDrawMode",0,1,"TrianglesDrawMode",0,0,"TubeGeometry",0,aa,"UVMapping",0,300,"Uint16BufferAttribute",0,t0,"Uint32BufferAttribute",0,t2,"Uint8BufferAttribute",0,tK,"Uint8ClampedBufferAttribute",0,t$,"Uniform",0,sK,"UniformsGroup",0,sQ,"UniformsLib",0,ok,"UniformsUtils",0,nx,"UnsignedByteType",0,1009,"UnsignedInt248Type",0,1020,"UnsignedInt5999Type",0,35902,"UnsignedIntType",0,1014,"UnsignedShort4444Type",0,1017,"UnsignedShort5551Type",0,1018,"UnsignedShortType",0,1012,"VSMShadowMap",0,3,"Vector2",0,Y,"Vector3",0,eE,"Vector4",0,e_,"VectorKeyframeTrack",0,az,"VideoTexture",0,i8,"WebGL3DRenderTarget",0,eT,"WebGLArrayRenderTarget",0,eS,"WebGLCoordinateSystem",0,2e3,"WebGLCubeRenderTarget",0,nR,"WebGLMultipleRenderTargets",0,oO,"WebGLRenderTarget",0,ex,"WebGLRenderer",0,uK,"WebGLUtils",0,uk,"WebGPUCoordinateSystem",0,2001,"WireframeGeometry",0,as,"WrapAroundEnding",0,2402,"ZeroCurvatureEnding",0,2400,"ZeroFactor",0,200,"ZeroSlopeEnding",0,2401,"ZeroStencilOp",0,0,"createCanvasElement",0,et],32009);var hv=e.i(32009);function h_(e,t){let n;return(...i)=>{window.clearTimeout(n),n=window.setTimeout(()=>e(...i),t)}}let hy=["x","y","top","bottom","left","right","width","height"];function hx({ref:e,children:t,fallback:n,resize:i,style:r,gl:a,events:s=hg,eventSource:o,eventPrefix:l,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,scene:y,onPointerMissed:x,onCreated:b,...S}){E.useMemo(()=>cZ(hv),[]);let M=cd(),[T,w]=function({debounce:e,scroll:t,polyfill:n,offsetSize:i}={debounce:0,scroll:!1,offsetSize:!1}){var r,a,s;let o=n||("u"(p.current=!0,()=>void(p.current=!1)));let[f,m,g]=(0,E.useMemo)(()=>{let e=()=>{let e,t;if(!c.current.element)return;let{left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d}=c.current.element.getBoundingClientRect(),f={left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d};c.current.element instanceof HTMLElement&&i&&(f.height=c.current.element.offsetHeight,f.width=c.current.element.offsetWidth),Object.freeze(f),p.current&&(e=c.current.lastBounds,t=f,!hy.every(n=>e[n]===t[n]))&&u(c.current.lastBounds=f)};return[e,d?h_(e,d):e,h?h_(e,h):e]},[u,i,h,d]);function v(){c.current.scrollContainers&&(c.current.scrollContainers.forEach(e=>e.removeEventListener("scroll",g,!0)),c.current.scrollContainers=null),c.current.resizeObserver&&(c.current.resizeObserver.disconnect(),c.current.resizeObserver=null),c.current.orientationHandler&&("orientation"in screen&&"removeEventListener"in screen.orientation?screen.orientation.removeEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.removeEventListener("orientationchange",c.current.orientationHandler))}function _(){c.current.element&&(c.current.resizeObserver=new o(g),c.current.resizeObserver.observe(c.current.element),t&&c.current.scrollContainers&&c.current.scrollContainers.forEach(e=>e.addEventListener("scroll",g,{capture:!0,passive:!0})),c.current.orientationHandler=()=>{g()},"orientation"in screen&&"addEventListener"in screen.orientation?screen.orientation.addEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.addEventListener("orientationchange",c.current.orientationHandler))}return r=g,a=!!t,(0,E.useEffect)(()=>{if(a)return window.addEventListener("scroll",r,{capture:!0,passive:!0}),()=>void window.removeEventListener("scroll",r,!0)},[r,a]),s=m,(0,E.useEffect)(()=>(window.addEventListener("resize",s),()=>void window.removeEventListener("resize",s)),[s]),(0,E.useEffect)(()=>{v(),_()},[t,g,m]),(0,E.useEffect)(()=>v,[]),[e=>{e&&e!==c.current.element&&(v(),c.current.element=e,c.current.scrollContainers=function e(t){let n=[];if(!t||t===document.body)return n;let{overflow:i,overflowX:r,overflowY:a}=window.getComputedStyle(t);return[i,r,a].some(e=>"auto"===e||"scroll"===e)&&n.push(t),[...n,...e(t.parentElement)]}(e),_())},l,f]}({scroll:!0,debounce:{scroll:50,resize:0},...i}),A=E.useRef(null),C=E.useRef(null);E.useImperativeHandle(e,()=>A.current);let R=ch(x),[P,I]=E.useState(!1),[L,N]=E.useState(!1);if(P)throw P;if(L)throw L;let U=E.useRef(null);cc(()=>{let e=A.current;w.width>0&&w.height>0&&e&&(U.current||(U.current=he(e)),async function(){await U.current.configure({gl:a,scene:y,events:s,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,size:w,onPointerMissed:(...e)=>null==R.current?void 0:R.current(...e),onCreated:e=>{null==e.events.connect||e.events.connect(o?cl(o)?o.current:o:C.current),l&&e.setEvents({compute:(e,t)=>{let n=e[l+"X"],i=e[l+"Y"];t.pointer.set(n/t.size.width*2-1,-(2*(i/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)}}),null==b||b(e)}}),U.current.render((0,u9.jsx)(M,{children:(0,u9.jsx)(cf,{set:N,children:(0,u9.jsx)(E.Suspense,{fallback:(0,u9.jsx)(cp,{set:I}),children:null!=t?t:null})})}))}())}),E.useEffect(()=>{let e=A.current;if(e)return()=>hn(e)},[]);let D=o?"none":"auto";return(0,u9.jsx)("div",{ref:C,style:{position:"relative",width:"100%",height:"100%",overflow:"hidden",pointerEvents:D,...r},...S,children:(0,u9.jsx)("div",{ref:T,style:{width:"100%",height:"100%"},children:(0,u9.jsx)("canvas",{ref:A,style:{display:"block"},children:n})})})}e.s(["Canvas",0,function(e){return(0,u9.jsx)(ci,{children:(0,u9.jsx)(hx,{...e})})}],75056),e.s(["useFrame",0,cz],25234),e.s(["useThree",0,cF],28600)},67335,e=>{"use strict";var t=e.i(1950);e.s(["extend",()=>t.e])},60602,e=>{"use strict";var t=e.i(1950);e.s(["useLoader",()=>t.G])},44208,e=>{"use strict";var t=e.i(1950);e.s(["createPortal",()=>t.o])},24205,e=>{"use strict";var t=e.i(1950);e.s(["applyProps",()=>t.s])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0d3shmwh5_nmn.js b/.next/static/chunks/0d3shmwh5_nmn.js similarity index 100% rename from build/_next/static/chunks/0d3shmwh5_nmn.js rename to .next/static/chunks/0d3shmwh5_nmn.js diff --git a/build/_next/static/chunks/0e.~6vil2~4uy.js b/.next/static/chunks/0e.~6vil2~4uy.js similarity index 100% rename from build/_next/static/chunks/0e.~6vil2~4uy.js rename to .next/static/chunks/0e.~6vil2~4uy.js diff --git a/build/_next/static/chunks/0ht_jt035hxfz.js b/.next/static/chunks/0ht_jt035hxfz.js similarity index 100% rename from build/_next/static/chunks/0ht_jt035hxfz.js rename to .next/static/chunks/0ht_jt035hxfz.js diff --git a/.next/static/chunks/0iz6a6sot7a-u.js b/.next/static/chunks/0iz6a6sot7a-u.js new file mode 100644 index 0000000..93e4eb8 --- /dev/null +++ b/.next/static/chunks/0iz6a6sot7a-u.js @@ -0,0 +1,9 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,12305,e=>{e.v({divider:"TheDoormileWay-module__xq3n3a__divider",eyebrow:"TheDoormileWay-module__xq3n3a__eyebrow",header:"TheDoormileWay-module__xq3n3a__header",heading:"TheDoormileWay-module__xq3n3a__heading",headingWrap:"TheDoormileWay-module__xq3n3a__headingWrap",kicker:"TheDoormileWay-module__xq3n3a__kicker"})},24911,e=>{"use strict";var t=e.i(43476),n=e.i(2018),a=e.i(12305);e.s(["default",0,function(){return(0,t.jsxs)("div",{className:"elementor-61",children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` + /* Fix oversized h2 font size */ + .elementor-element-9363070 .logico-title { + font-size: clamp(32px, 4.5vw, 64px) !important; + line-height: 1.1 !important; + word-wrap: break-word !important; + overflow-wrap: break-word !important; + } + `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-88745f4 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"88745f4","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-343b363 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"343b363","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:a.default.header,children:[(0,t.jsxs)(n.ScrollReveal,{delay:.05,duration:.7,yOffset:20,className:a.default.kicker,children:[(0,t.jsx)("p",{className:a.default.eyebrow,children:"/ Doormile Approach /"}),(0,t.jsx)("hr",{className:a.default.divider})]}),(0,t.jsx)(n.ScrollReveal,{delay:.15,duration:.85,yOffset:30,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-1cc335a elementor-widget elementor-widget-logico_heading","data-id":"1cc335a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",style:{WebkitTextStroke:"4px #c01227",color:"#fff",fontWeight:800},children:"The Doormile Way"})})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-4c3e632 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"4c3e632","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(n.ScrollReveal,{delay:.2,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-5ba6bbf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5ba6bbf","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-9363070 elementor-widget elementor-widget-logico_heading","data-id":"9363070","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h2",{className:"logico-title",children:" Smarter, Faster, Connected Logistics"})})})})}),(0,t.jsx)(n.ScrollReveal,{delay:.3,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-e7609a5 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e7609a5","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-c134b96 elementor-widget elementor-widget-text-editor","data-id":"c134b96","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("p",{children:(0,t.jsxs)("strong",{children:["We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,",(0,t.jsx)("br",{})," every delivery is faster, reliable, and fully transparent."]})}),(0,t.jsx)("p",{children:"Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution."})]})})})})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5041fcc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"5041fcc","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)(n.StaggerChildren,{stagger:.12,duration:.7,yOffset:35,className:"elementor-element elementor-element-2d7c3ee e-con-full e-grid cut-corner-no sticky-container-off e-con e-child",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-d11b050 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d11b050","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-3a6f50f elementor-view-default elementor-widget elementor-widget-icon","data-id":"3a6f50f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-delivery"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1025248 elementor-widget elementor-widget-logico_heading","data-id":"1025248","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"End-to-End Protection"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c7c19bd elementor-widget elementor-widget-text-editor","data-id":"c7c19bd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"End-to-end visibility ensures every shipment stays secure and on schedule."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-2c82e54 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"2c82e54","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-f51735e elementor-view-default elementor-widget elementor-widget-icon","data-id":"f51735e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-container"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c682633 elementor-widget elementor-widget-logico_heading","data-id":"c682633","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Proactive delay prevention"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74d14e3 elementor-widget elementor-widget-text-editor","data-id":"74d14e3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Real-time monitoring helps prevent delays before they impact deliveries."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-08b9b20 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"08b9b20","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-612c459 elementor-view-default elementor-widget elementor-widget-icon","data-id":"612c459","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-directions"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-aa49275 elementor-widget elementor-widget-logico_heading","data-id":"aa49275","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Single owner, single promise"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74cfdf7 elementor-widget elementor-widget-text-editor","data-id":"74cfdf7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"One unified system manages the entire delivery process seamlessly."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-04989ee e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"04989ee","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-11a657e elementor-view-default elementor-widget elementor-widget-icon","data-id":"11a657e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-storage"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-b317d31 elementor-widget elementor-widget-logico_heading","data-id":"b317d31","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Dynamic AI-driven adjustments"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8fe5662 elementor-widget elementor-widget-text-editor","data-id":"8fe5662","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"AI-powered routing adapts instantly to improve speed and efficiency."})})})]})]})})})]})}])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0~5amg8el7~oa.js b/.next/static/chunks/0nunuemu9ietr.js similarity index 74% rename from build/_next/static/chunks/0~5amg8el7~oa.js rename to .next/static/chunks/0nunuemu9ietr.js index 32a19a0..6e758c1 100644 --- a/build/_next/static/chunks/0~5amg8el7~oa.js +++ b/.next/static/chunks/0nunuemu9ietr.js @@ -1,4 +1,12 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,12305,e=>{e.v({divider:"TheDoormileWay-module__xq3n3a__divider",eyebrow:"TheDoormileWay-module__xq3n3a__eyebrow",header:"TheDoormileWay-module__xq3n3a__header",heading:"TheDoormileWay-module__xq3n3a__heading",headingWrap:"TheDoormileWay-module__xq3n3a__headingWrap",kicker:"TheDoormileWay-module__xq3n3a__kicker"})},24911,e=>{"use strict";var t=e.i(43476),i=e.i(2018),n=e.i(12305);e.s(["default",0,function(){return(0,t.jsxs)("div",{className:"elementor-61",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-88745f4 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"88745f4","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-343b363 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"343b363","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:n.default.header,children:[(0,t.jsxs)(i.ScrollReveal,{delay:.05,duration:.7,yOffset:20,className:n.default.kicker,children:[(0,t.jsx)("p",{className:n.default.eyebrow,children:"/ Doormile Approach /"}),(0,t.jsx)("hr",{className:n.default.divider})]}),(0,t.jsx)(i.ScrollReveal,{delay:.15,duration:.85,yOffset:30,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-1cc335a elementor-widget elementor-widget-logico_heading","data-id":"1cc335a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",style:{WebkitTextStroke:"4px #c01227",color:"#fff",fontWeight:800},children:"The Doormile Way"})})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-4c3e632 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"4c3e632","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(i.ScrollReveal,{delay:.2,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-5ba6bbf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5ba6bbf","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-9363070 elementor-widget elementor-widget-logico_heading","data-id":"9363070","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h3",{className:"logico-title",children:" Smarter, Faster, Connected Logistics"})})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.3,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-e7609a5 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e7609a5","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-c134b96 elementor-widget elementor-widget-text-editor","data-id":"c134b96","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("p",{children:(0,t.jsxs)("strong",{children:["We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,",(0,t.jsx)("br",{})," every delivery is faster, reliable, and fully transparent."]})}),(0,t.jsx)("p",{children:"Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution."})]})})})})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5041fcc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"5041fcc","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)(i.StaggerChildren,{stagger:.12,duration:.7,yOffset:35,className:"elementor-element elementor-element-2d7c3ee e-con-full e-grid cut-corner-no sticky-container-off e-con e-child",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-d11b050 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d11b050","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-3a6f50f elementor-view-default elementor-widget elementor-widget-icon","data-id":"3a6f50f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-delivery"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1025248 elementor-widget elementor-widget-logico_heading","data-id":"1025248","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"End-to-End Protection"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c7c19bd elementor-widget elementor-widget-text-editor","data-id":"c7c19bd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"End-to-end visibility ensures every shipment stays secure and on schedule."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-2c82e54 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"2c82e54","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-f51735e elementor-view-default elementor-widget elementor-widget-icon","data-id":"f51735e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-container"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c682633 elementor-widget elementor-widget-logico_heading","data-id":"c682633","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Proactive delay prevention"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74d14e3 elementor-widget elementor-widget-text-editor","data-id":"74d14e3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Real-time monitoring helps prevent delays before they impact deliveries."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-08b9b20 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"08b9b20","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-612c459 elementor-view-default elementor-widget elementor-widget-icon","data-id":"612c459","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-directions"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-aa49275 elementor-widget elementor-widget-logico_heading","data-id":"aa49275","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Single owner, single promise"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74cfdf7 elementor-widget elementor-widget-text-editor","data-id":"74cfdf7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"One unified system manages the entire delivery process seamlessly."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-04989ee e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"04989ee","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-11a657e elementor-view-default elementor-widget elementor-widget-icon","data-id":"11a657e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-storage"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-b317d31 elementor-widget elementor-widget-logico_heading","data-id":"b317d31","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Dynamic AI-driven adjustments"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8fe5662 elementor-widget elementor-widget-text-editor","data-id":"8fe5662","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"AI-powered routing adapts instantly to improve speed and efficiency."})})})]})]})})})]})}])},97677,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(89970),l=e.i(2018);e.s(["default",0,function(){let[e,a]=(0,i.useState)(0),o=(0,i.useRef)(null);(0,i.useEffect)(()=>{let e=setInterval(()=>{a(e=>+(0===e))},7e3);return()=>clearInterval(e)},[]);let d=e=>{a(e)};return(0,i.useEffect)(()=>{if(!o.current)return;let e=o.current.querySelector(".owl-item.active");if(!e)return;let t=e.querySelector(".heading-content"),i=e.querySelector(".text-content");t&&i&&(n.default.killTweensOf([t,i]),n.default.fromTo(t,{y:55,opacity:0,scale:.95},{y:0,opacity:1,scale:1,duration:1.1,ease:"power4.out"}),n.default.fromTo(i,{y:30,opacity:0},{y:0,opacity:1,duration:.95,ease:"power3.out",delay:.25}))},[e]),(0,t.jsxs)("div",{className:"elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("link",{rel:"preload",as:"image",href:"/images/home-bg-1.webp"}),(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,12305,e=>{e.v({divider:"TheDoormileWay-module__xq3n3a__divider",eyebrow:"TheDoormileWay-module__xq3n3a__eyebrow",header:"TheDoormileWay-module__xq3n3a__header",heading:"TheDoormileWay-module__xq3n3a__heading",headingWrap:"TheDoormileWay-module__xq3n3a__headingWrap",kicker:"TheDoormileWay-module__xq3n3a__kicker"})},24911,e=>{"use strict";var t=e.i(43476),i=e.i(2018),n=e.i(12305);e.s(["default",0,function(){return(0,t.jsxs)("div",{className:"elementor-61",children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` + /* Fix oversized h2 font size */ + .elementor-element-9363070 .logico-title { + font-size: clamp(32px, 4.5vw, 64px) !important; + line-height: 1.1 !important; + word-wrap: break-word !important; + overflow-wrap: break-word !important; + } + `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-88745f4 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"88745f4","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-343b363 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"343b363","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:n.default.header,children:[(0,t.jsxs)(i.ScrollReveal,{delay:.05,duration:.7,yOffset:20,className:n.default.kicker,children:[(0,t.jsx)("p",{className:n.default.eyebrow,children:"/ Doormile Approach /"}),(0,t.jsx)("hr",{className:n.default.divider})]}),(0,t.jsx)(i.ScrollReveal,{delay:.15,duration:.85,yOffset:30,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-1cc335a elementor-widget elementor-widget-logico_heading","data-id":"1cc335a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",style:{WebkitTextStroke:"4px #c01227",color:"#fff",fontWeight:800},children:"The Doormile Way"})})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-4c3e632 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"4c3e632","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(i.ScrollReveal,{delay:.2,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-5ba6bbf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5ba6bbf","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-9363070 elementor-widget elementor-widget-logico_heading","data-id":"9363070","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h2",{className:"logico-title",children:" Smarter, Faster, Connected Logistics"})})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.3,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-e7609a5 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e7609a5","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-c134b96 elementor-widget elementor-widget-text-editor","data-id":"c134b96","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("p",{children:(0,t.jsxs)("strong",{children:["We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,",(0,t.jsx)("br",{})," every delivery is faster, reliable, and fully transparent."]})}),(0,t.jsx)("p",{children:"Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution."})]})})})})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5041fcc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"5041fcc","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)(i.StaggerChildren,{stagger:.12,duration:.7,yOffset:35,className:"elementor-element elementor-element-2d7c3ee e-con-full e-grid cut-corner-no sticky-container-off e-con e-child",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-d11b050 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d11b050","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-3a6f50f elementor-view-default elementor-widget elementor-widget-icon","data-id":"3a6f50f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-delivery"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1025248 elementor-widget elementor-widget-logico_heading","data-id":"1025248","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"End-to-End Protection"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c7c19bd elementor-widget elementor-widget-text-editor","data-id":"c7c19bd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"End-to-end visibility ensures every shipment stays secure and on schedule."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-2c82e54 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"2c82e54","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-f51735e elementor-view-default elementor-widget elementor-widget-icon","data-id":"f51735e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-container"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c682633 elementor-widget elementor-widget-logico_heading","data-id":"c682633","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Proactive delay prevention"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74d14e3 elementor-widget elementor-widget-text-editor","data-id":"74d14e3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Real-time monitoring helps prevent delays before they impact deliveries."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-08b9b20 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"08b9b20","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-612c459 elementor-view-default elementor-widget elementor-widget-icon","data-id":"612c459","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-directions"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-aa49275 elementor-widget elementor-widget-logico_heading","data-id":"aa49275","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Single owner, single promise"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74cfdf7 elementor-widget elementor-widget-text-editor","data-id":"74cfdf7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"One unified system manages the entire delivery process seamlessly."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-04989ee e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"04989ee","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-11a657e elementor-view-default elementor-widget elementor-widget-icon","data-id":"11a657e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-storage"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-b317d31 elementor-widget elementor-widget-logico_heading","data-id":"b317d31","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Dynamic AI-driven adjustments"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8fe5662 elementor-widget elementor-widget-text-editor","data-id":"8fe5662","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"AI-powered routing adapts instantly to improve speed and efficiency."})})})]})]})})})]})}])},97677,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(89970),l=e.i(2018),a=e.i(74080);e.s(["default",0,function(){(0,a.preload)("/images/home-bg-1.webp",{as:"image"});let[e,o]=(0,i.useState)(0),d=(0,i.useRef)(null);(0,i.useEffect)(()=>{let e=setInterval(()=>{o(e=>+(0===e))},7e3);return()=>clearInterval(e)},[]);let r=e=>{o(e)};return(0,i.useEffect)(()=>{if(!d.current)return;let e=d.current.querySelector(".owl-item.active");if(!e)return;let t=e.querySelector(".heading-content"),i=e.querySelector(".text-content");t&&i&&(n.default.killTweensOf([t,i]),n.default.fromTo(t,{y:55,opacity:0,scale:.95},{y:0,opacity:1,scale:1,duration:1.1,ease:"power4.out"}),n.default.fromTo(i,{y:30,opacity:0},{y:0,opacity:1,duration:.95,ease:"power3.out",delay:.25}))},[e]),(0,t.jsxs)("div",{className:"elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` /* Fluid responsive font size override for hero headings */ .logico-content-slider-widget .content-slider-item-heading { font-size: clamp(30px, 5.5vw, 80px) !important; @@ -99,7 +107,7 @@ display: none !important; } } - `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",ref:o,children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard",style:{backgroundImage:"url('/images/home-bg-1.webp')",backgroundPosition:"center center",backgroundRepeat:"no-repeat",backgroundSize:"cover"},children:(0,t.jsx)("div",{className:"slide-content",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},children:(0,t.jsxs)("div",{className:"slide-content-inner",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",textAlign:"center",margin:"0 auto",width:"100%",maxWidth:"1000px"},children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",style:{textAlign:"center",width:"100%"},children:(0,t.jsxs)("span",{className:"heading-content block",children:["ONE CONNECTED SYSTEM.",(0,t.jsx)("br",{}),(0,t.jsx)(l.ShimmerText,{className:"font-extrabold",children:"ONE PROMISE KEPT."})]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",style:{display:"flex",justifyContent:"center",width:"100%",marginTop:"23px"},children:(0,t.jsx)("div",{className:"text-content",style:{textAlign:"center",maxWidth:"680px",margin:"0 auto"},children:(0,t.jsx)("p",{children:"Stop managing three separate logistics services. Doormile unifies first, mid and last mile into a single intelligent delivery system powered by MileTruth™ AI."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard",style:{backgroundImage:"url('/images/home-bg-1.webp')",backgroundPosition:"center center",backgroundRepeat:"no-repeat",backgroundSize:"cover"},children:(0,t.jsx)("div",{className:"slide-content",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},children:(0,t.jsxs)("div",{className:"slide-content-inner",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",textAlign:"center",margin:"0 auto",width:"100%",maxWidth:"1000px"},children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",style:{textAlign:"center",width:"100%"},children:(0,t.jsxs)("span",{className:"heading-content block",children:[(0,t.jsx)(l.ShimmerText,{className:"font-extrabold",children:"AI-POWERED"}),(0,t.jsx)("br",{}),"CONNECTED LOGISTICS"]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",style:{display:"flex",justifyContent:"center",width:"100%",marginTop:"23px"},children:(0,t.jsx)("div",{className:"text-content",style:{textAlign:"center",maxWidth:"680px",margin:"0 auto"},children:(0,t.jsx)("p",{children:"Behind every successful business is a strong supply chain. Logistics turns plans into reality."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:()=>a(e=>+(0===e)),"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:()=>a(e=>+(0===e)),"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>d(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>d(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})]})}])},58140,e=>{"use strict";var t=e.i(43476),i=e.i(22016),n=e.i(2018);e.s(["default",0,function(){return(0,t.jsxs)(n.StaggerChildren,{stagger:.15,duration:.7,yOffset:30,className:"elementor-element elementor-element-9b26234 e-con-full e-grid cut-corner-no sticky-container-off e-con e-parent",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-ca6bc63 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"ca6bc63","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-cc55905 elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"cc55905","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-3fb5639 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"3fb5639","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title",children:[(0,t.jsx)(n.CountUp,{end:99.2,decimals:1,suffix:"%",duration:2.2})," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{style:{fontSize:"20px"},children:"On-Time Delivery"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-94c3ff1 elementor-widget elementor-widget-logico_button","data-id":"94c3ff1","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsxs)(i.default,{href:"/solutions",className:"logico-small-button",children:["Connected Miles",(0,t.jsx)("svg",{viewBox:"0 0 13 20",children:(0,t.jsx)("polyline",{points:"0.5 19.5 3 19.5 12.5 10 3 0.5"})})]})})})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-4c0903b e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"4c0903b","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-c8adeeb elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"c8adeeb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5e64d7b elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"5e64d7b","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title",children:[(0,t.jsx)(n.CountUp,{end:3,suffix:"x Faster",duration:1.8})," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{style:{fontSize:"20px"},children:"Faster Response"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-20db156 elementor-widget elementor-widget-logico_button","data-id":"20db156","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsxs)(i.default,{href:"/miletruth",className:"logico-small-button",children:["MileTruth™ AI",(0,t.jsx)("svg",{viewBox:"0 0 13 20",children:(0,t.jsx)("polyline",{points:"0.5 19.5 3 19.5 12.5 10 3 0.5"})})]})})})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-f003242 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"f003242","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-d58ef3c elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"d58ef3c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-d00253e elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"d00253e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title",children:[(0,t.jsx)(n.CountUp,{end:40,suffix:"%",duration:2})," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{style:{fontSize:"20px"},children:"Cost Reduction"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-3481e66 elementor-widget elementor-widget-logico_button","data-id":"3481e66","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsxs)(i.default,{href:"/solutions",className:"logico-small-button",children:["SLA Protection",(0,t.jsx)("svg",{viewBox:"0 0 13 20",children:(0,t.jsx)("polyline",{points:"0.5 19.5 3 19.5 12.5 10 3 0.5"})})]})})})})})]})})]})}])},36854,e=>{"use strict";var t=e.i(43476),i=e.i(2018);e.s(["default",0,function(){return(0,t.jsx)("div",{className:"elementor-element elementor-element-30fd9d1 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent section-shrink-custom","data-id":"30fd9d1","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-03db5d7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"03db5d7","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(i.ScrollReveal,{delay:.05,duration:.8,yOffset:20,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-3fe4ca3 elementor-widget elementor-widget-logico_heading","data-id":"3fe4ca3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"/ The Problem /"})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.15,duration:.85,yOffset:30,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-ffd1f7d elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"ffd1f7d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h3",{className:"logico-title",children:"Fragmented Logistics is Broken"})})})}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-e09c20e e-grid e-con-full cut-corner-no sticky-container-off e-con e-child","data-id":"e09c20e","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(i.ScrollReveal,{delay:.1,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-81a7690 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"81a7690","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-air-delivery"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"73%"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"of delays happen at handoffs"})]})})]})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.2,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0f4aa27 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"0f4aa27","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-container"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"3x"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"higher risk of missed SLAs"})]})})]})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.3,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6cfd203 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"6cfd203","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-trolley"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"2.5x"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"more time spent on coordination"})]})})]})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.4,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0d343e1 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"0d343e1","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-supply-chain"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"28%"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"increase in operational costs"})]})})]})})})})]})]})})})}])},32693,e=>{"use strict";var t=e.i(43476),i=e.i(22016),n=e.i(57688),l=e.i(2018);e.s(["default",0,function(){return(0,t.jsxs)("div",{className:"elementor-element elementor-element-89a0ca1 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"89a0ca1","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` + `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",ref:d,children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard",style:{backgroundImage:"url('/images/home-bg-1.webp')",backgroundPosition:"center center",backgroundRepeat:"no-repeat",backgroundSize:"cover"},children:(0,t.jsx)("div",{className:"slide-content",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},children:(0,t.jsxs)("div",{className:"slide-content-inner",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",textAlign:"center",margin:"0 auto",width:"100%",maxWidth:"1000px"},children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",style:{textAlign:"center",width:"100%"},children:(0,t.jsxs)("span",{className:"heading-content block",children:["ONE CONNECTED SYSTEM.",(0,t.jsx)("br",{}),(0,t.jsx)(l.ShimmerText,{className:"font-extrabold",children:"ONE PROMISE KEPT."})]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",style:{display:"flex",justifyContent:"center",width:"100%",marginTop:"23px"},children:(0,t.jsx)("div",{className:"text-content",style:{textAlign:"center",maxWidth:"680px",margin:"0 auto"},children:(0,t.jsx)("p",{children:"Stop managing three separate logistics services. Doormile unifies first, mid and last mile into a single intelligent delivery system powered by MileTruth™ AI."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard",style:{backgroundImage:"url('/images/home-bg-1.webp')",backgroundPosition:"center center",backgroundRepeat:"no-repeat",backgroundSize:"cover"},children:(0,t.jsx)("div",{className:"slide-content",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"},children:(0,t.jsxs)("div",{className:"slide-content-inner",style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",textAlign:"center",margin:"0 auto",width:"100%",maxWidth:"1000px"},children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",style:{textAlign:"center",width:"100%"},children:(0,t.jsxs)("span",{className:"heading-content block",children:[(0,t.jsx)(l.ShimmerText,{className:"font-extrabold",children:"AI-POWERED"}),(0,t.jsx)("br",{}),"CONNECTED LOGISTICS"]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",style:{display:"flex",justifyContent:"center",width:"100%",marginTop:"23px"},children:(0,t.jsx)("div",{className:"text-content",style:{textAlign:"center",maxWidth:"680px",margin:"0 auto"},children:(0,t.jsx)("p",{children:"Behind every successful business is a strong supply chain. Logistics turns plans into reality."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:()=>o(e=>+(0===e)),"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:()=>o(e=>+(0===e)),"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>r(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>r(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})]})}])},58140,e=>{"use strict";var t=e.i(43476),i=e.i(22016),n=e.i(2018);e.s(["default",0,function(){return(0,t.jsxs)(n.StaggerChildren,{stagger:.15,duration:.7,yOffset:30,className:"elementor-element elementor-element-9b26234 e-con-full e-grid cut-corner-no sticky-container-off e-con e-parent",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-ca6bc63 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"ca6bc63","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-cc55905 elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"cc55905","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-3fb5639 elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"3fb5639","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title",children:[(0,t.jsx)(n.CountUp,{end:99.2,decimals:1,suffix:"%",duration:2.2})," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{style:{fontSize:"20px"},children:"On-Time Delivery"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-94c3ff1 elementor-widget elementor-widget-logico_button","data-id":"94c3ff1","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsxs)(i.default,{href:"/solutions",className:"logico-small-button",children:["Connected Miles",(0,t.jsx)("svg",{viewBox:"0 0 13 20",children:(0,t.jsx)("polyline",{points:"0.5 19.5 3 19.5 12.5 10 3 0.5"})})]})})})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-4c0903b e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"4c0903b","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-c8adeeb elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"c8adeeb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5e64d7b elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"5e64d7b","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title",children:[(0,t.jsx)(n.CountUp,{end:3,suffix:"x Faster",duration:1.8})," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{style:{fontSize:"20px"},children:"Faster Response"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-20db156 elementor-widget elementor-widget-logico_button","data-id":"20db156","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsxs)(i.default,{href:"/miletruth",className:"logico-small-button",children:["MileTruth™ AI",(0,t.jsx)("svg",{viewBox:"0 0 13 20",children:(0,t.jsx)("polyline",{points:"0.5 19.5 3 19.5 12.5 10 3 0.5"})})]})})})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-f003242 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child","data-id":"f003242","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:(0,t.jsxs)("div",{className:"e-con-inner",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-d58ef3c elementor-widget-divider--view-line elementor-widget elementor-widget-divider","data-id":"d58ef3c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"divider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-divider",children:(0,t.jsx)("span",{className:"elementor-divider-separator"})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-d00253e elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"d00253e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"logico-title",children:[(0,t.jsx)(n.CountUp,{end:40,suffix:"%",duration:2})," ",(0,t.jsx)("br",{}),(0,t.jsx)("span",{style:{fontSize:"20px"},children:"Cost Reduction"})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-3481e66 elementor-widget elementor-widget-logico_button","data-id":"3481e66","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsxs)(i.default,{href:"/solutions",className:"logico-small-button",children:["SLA Protection",(0,t.jsx)("svg",{viewBox:"0 0 13 20",children:(0,t.jsx)("polyline",{points:"0.5 19.5 3 19.5 12.5 10 3 0.5"})})]})})})})})]})})]})}])},36854,e=>{"use strict";var t=e.i(43476),i=e.i(2018);e.s(["default",0,function(){return(0,t.jsx)("div",{className:"elementor-element elementor-element-30fd9d1 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent section-shrink-custom","data-id":"30fd9d1","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-03db5d7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"03db5d7","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(i.ScrollReveal,{delay:.05,duration:.8,yOffset:20,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-3fe4ca3 elementor-widget elementor-widget-logico_heading","data-id":"3fe4ca3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"/ The Problem /"})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.15,duration:.85,yOffset:30,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-ffd1f7d elementor-widget__width-initial elementor-widget elementor-widget-logico_heading","data-id":"ffd1f7d","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h2",{className:"logico-title",children:"Fragmented Logistics is Broken"})})})}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-e09c20e e-grid e-con-full cut-corner-no sticky-container-off e-con e-child","data-id":"e09c20e","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(i.ScrollReveal,{delay:.1,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-81a7690 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"81a7690","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-air-delivery"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"73%"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"of delays happen at handoffs"})]})})]})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.2,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0f4aa27 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"0f4aa27","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-container"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"3x"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"higher risk of missed SLAs"})]})})]})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.3,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6cfd203 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"6cfd203","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-trolley"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"2.5x"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"more time spent on coordination"})]})})]})})})}),(0,t.jsx)(i.ScrollReveal,{delay:.4,duration:.7,yOffset:35,className:"w-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0d343e1 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box","data-id":"0d343e1","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon-box.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsxs)("div",{className:"elementor-icon-box-wrapper",children:[(0,t.jsx)("div",{className:"elementor-icon-box-icon",children:(0,t.jsx)("span",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-supply-chain"})})}),(0,t.jsx)("div",{className:"elementor-icon-box-content",children:(0,t.jsxs)("div",{className:"elementor-icon-box-title",children:[(0,t.jsx)("p",{className:"logico-title",style:{fontSize:"42px",fontWeight:800,color:"#111111",marginBottom:0,textAlign:"left",lineHeight:"1.1"},children:"28%"}),(0,t.jsx)("span",{style:{textAlign:"left",display:"block",fontSize:"16px",fontWeight:600,color:"#111111",marginTop:"8px",lineHeight:"1.4"},children:"increase in operational costs"})]})})]})})})})]})]})})})}])},32693,e=>{"use strict";var t=e.i(43476),i=e.i(22016),n=e.i(57688),l=e.i(2018);e.s(["default",0,function(){return(0,t.jsxs)("div",{className:"elementor-element elementor-element-89a0ca1 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"89a0ca1","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` /* Ensure the inner content wrapper is responsive and never overflows */ .elementor-element-fdb2e58 { width: 100% !important; @@ -114,6 +122,14 @@ overflow-wrap: break-word !important; } + /* Fix text colors for the dark background */ + .elementor-element-71c3e1d .logico-title { + color: #ffffff !important; + } + .elementor-element-71c3e1d p { + color: rgba(255, 255, 255, 0.85) !important; + } + /* Make sure paragraphs are responsive on all screen widths */ .elementor-element-165dfa5 { width: 100% !important; @@ -246,4 +262,4 @@ border-radius: 25px !important; /* Explicitly keep 25px */ } } - `}}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-9ffed33 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"9ffed33","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-96343ba e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"96343ba","data-element_type":"container",children:(0,t.jsx)(l.ScrollReveal,{delay:.1,duration:.9,yOffset:30,className:"w-full h-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-99768ba elementor-widget elementor-widget-image","data-id":"99768ba","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(n.default,{fetchPriority:"high",priority:!0,width:578,height:790,src:"/images/home2-pic-3.webp",className:"attachment-full size-full wp-image-4481",alt:"Connected Logistics",style:{width:"100%",height:"auto",objectFit:"cover",borderRadius:"25px"}})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-71c3e1d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"71c3e1d","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-fdb2e58 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"fdb2e58","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(l.ScrollReveal,{delay:.1,duration:.8,yOffset:20,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0136e6e elementor-widget elementor-widget-logico_heading","data-id":"0136e6e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"/ Connected Logistics /"})})})}),(0,t.jsx)(l.ScrollReveal,{delay:.2,duration:.85,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-7500280 elementor-widget elementor-widget-logico_heading","data-id":"7500280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h3",{className:"logico-title",children:"Smart logistics solutions we deliver for modern supply chains"})})})}),(0,t.jsxs)(l.ScrollReveal,{delay:.25,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-4cc07a7 elementor-widget elementor-widget-logico_heading","data-id":"4cc07a7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Real-Time Visibility"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-165dfa5 elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"165dfa5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"See every shipment, every vehicle, every handoff—live. No blind spots."})})})]}),(0,t.jsxs)(l.ScrollReveal,{delay:.35,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-da9d310 elementor-widget elementor-widget-logico_heading","data-id":"da9d310","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Dynamic Route Adjustment"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-3888a1e elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"3888a1e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"AI continuously optimizes routes based on traffic, weather, and real-world conditions."})})})]}),(0,t.jsxs)(l.ScrollReveal,{delay:.45,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-4cc07a7 elementor-widget elementor-widget-logico_heading","data-id":"4cc07a7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Proactive Delay Prevention"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-165dfa5 elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"165dfa5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Detect SLA risks hours before they become problems. Act, don't react."})})})]}),(0,t.jsxs)(l.ScrollReveal,{delay:.55,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-4cc07a7 elementor-widget elementor-widget-logico_heading","data-id":"4cc07a7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Execution Intelligence"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-165dfa5 elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"165dfa5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Learn from every delivery. Get smarter with every mile traveled."})})})]}),(0,t.jsx)(l.ScrollReveal,{delay:.65,duration:.8,yOffset:20,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-c0a45e4 elementor-widget elementor-widget-logico_button","data-id":"c0a45e4","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsx)(l.Magnetic,{children:(0,t.jsx)(i.default,{href:"/solutions",className:"logico-alter-button",children:"Explore more"})})})})})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-0efc59e elementor-absolute elementor-widget elementor-widget-logico_block_decoration","data-id":"0efc59e","data-element_type":"widget","data-settings":'{"_position":"absolute"}',"data-widget_type":"logico_block_decoration.default",style:{position:"absolute"},children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"block-decoration animation-enable block-decoration-style-1",children:(0,t.jsx)("div",{className:"block-decoration-item"})})})})]})]})}])}]); \ No newline at end of file + `}}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-9ffed33 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"9ffed33","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-96343ba e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"96343ba","data-element_type":"container",children:(0,t.jsx)(l.ScrollReveal,{delay:.1,duration:.9,yOffset:30,className:"w-full h-full",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-99768ba elementor-widget elementor-widget-image","data-id":"99768ba","data-element_type":"widget","data-e-type":"widget","data-widget_type":"image.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)(n.default,{fetchPriority:"high",priority:!0,width:578,height:790,src:"/images/home2-pic-3.webp",className:"attachment-full size-full wp-image-4481",alt:"Connected Logistics",style:{width:"100%",height:"auto",objectFit:"cover",borderRadius:"25px"}})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-71c3e1d e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"71c3e1d","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-fdb2e58 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"fdb2e58","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(l.ScrollReveal,{delay:.1,duration:.8,yOffset:20,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-0136e6e elementor-widget elementor-widget-logico_heading","data-id":"0136e6e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"/ Connected Logistics /"})})})}),(0,t.jsx)(l.ScrollReveal,{delay:.2,duration:.85,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-7500280 elementor-widget elementor-widget-logico_heading","data-id":"7500280","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h2",{className:"logico-title",children:"Smart logistics solutions we deliver for modern supply chains"})})})}),(0,t.jsxs)(l.ScrollReveal,{delay:.25,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-4cc07a7 elementor-widget elementor-widget-logico_heading","data-id":"4cc07a7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Real-Time Visibility"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-165dfa5 elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"165dfa5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"See every shipment, every vehicle, every handoff—live. No blind spots."})})})]}),(0,t.jsxs)(l.ScrollReveal,{delay:.35,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-da9d310 elementor-widget elementor-widget-logico_heading","data-id":"da9d310","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Dynamic Route Adjustment"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-3888a1e elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"3888a1e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"AI continuously optimizes routes based on traffic, weather, and real-world conditions."})})})]}),(0,t.jsxs)(l.ScrollReveal,{delay:.45,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-4cc07a7 elementor-widget elementor-widget-logico_heading","data-id":"4cc07a7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Proactive Delay Prevention"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-165dfa5 elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"165dfa5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Detect SLA risks hours before they become problems. Act, don't react."})})})]}),(0,t.jsxs)(l.ScrollReveal,{delay:.55,duration:.8,yOffset:25,children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-4cc07a7 elementor-widget elementor-widget-logico_heading","data-id":"4cc07a7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Execution Intelligence"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-165dfa5 elementor-widget__width-initial elementor-widget elementor-widget-text-editor","data-id":"165dfa5","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Learn from every delivery. Get smarter with every mile traveled."})})})]}),(0,t.jsx)(l.ScrollReveal,{delay:.65,duration:.8,yOffset:20,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-c0a45e4 elementor-widget elementor-widget-logico_button","data-id":"c0a45e4","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_button.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"button-widget",children:(0,t.jsx)("div",{className:"button-container",children:(0,t.jsx)(l.Magnetic,{children:(0,t.jsx)(i.default,{href:"/solutions",className:"logico-alter-button",children:"Explore more"})})})})})})})]})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-0efc59e elementor-absolute elementor-widget elementor-widget-logico_block_decoration","data-id":"0efc59e","data-element_type":"widget","data-settings":'{"_position":"absolute"}',"data-widget_type":"logico_block_decoration.default",style:{position:"absolute"},children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"block-decoration animation-enable block-decoration-style-1",children:(0,t.jsx)("div",{className:"block-decoration-item"})})})})]})]})}])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0nzz4x75f.ixz.js b/.next/static/chunks/0nzz4x75f.ixz.js similarity index 100% rename from build/_next/static/chunks/0nzz4x75f.ixz.js rename to .next/static/chunks/0nzz4x75f.ixz.js diff --git a/build/_next/static/chunks/0jraq7~~gf402.js b/.next/static/chunks/0o27ue53hohz_.js similarity index 98% rename from build/_next/static/chunks/0jraq7~~gf402.js rename to .next/static/chunks/0o27ue53hohz_.js index 9eb6096..74a7d20 100644 --- a/build/_next/static/chunks/0jraq7~~gf402.js +++ b/.next/static/chunks/0o27ue53hohz_.js @@ -240,4 +240,4 @@ Error generating stack: `+e.message+` `+r.join(" > ")+` No matching component was found for: - `+e.join(" > ")}return null},rt.getPublicRootInstance=function(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 27:case 5:return rA(e.child.stateNode);default:return e.child.stateNode}},rt.injectIntoDevTools=function(){var e={bundleType:0,version:rT,rendererPackageName:rw,currentDispatcherRef:rM,reconcilerVersion:"19.2.0"};if(null!==rE&&(e.rendererConfig=rE),typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")e=!1;else{var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)e=!0;else{try{sG=t.inject(e),sW=t}catch{}e=!!t.checkDCE}}return e},rt.isAlreadyRendering=function(){return(6&lm)!=0},rt.observeVisibleRects=function(e,t,n,r){if(!r7)throw Error(i(363));var a=as(e=im(e,t),n,r).disconnect;return{disconnect:function(){a()}}},rt.shouldError=function(){return null},rt.shouldSuspend=function(){return!1},rt.startHostTransition=function(e,t,r,a){if(5!==e.tag)throw Error(i(476));var s=tW(e).queue;tG(e,s,t,r4,null===r?n:function(){var t=tW(e);return null===t.next&&(t=e.alternate.memoizedState),tK(e,t.next.queue,{},ig()),r(a)})},rt.updateContainer=function(e,t,n,i){var r=t.current,a=ig();return i9(r,a,e,t,n,i),a},rt.updateContainerSync=function(e,t,n,i){return i9(t.current,2,e,t,n,i),2},rt},cG.exports.default=cG.exports,Object.defineProperty(cG.exports,"__esModule",{value:!0})),cV.exports=cG.exports),(b=cV.exports)&&b.__esModule&&Object.prototype.hasOwnProperty.call(b,"default"))?b.default:b,cj={},cX=/^three(?=[A-Z])/,cq=e=>`${e[0].toUpperCase()}${e.slice(1)}`,cY=0;function cZ(e){if("function"==typeof e){let t=`${cY++}`;return cj[t]=e,t}Object.assign(cj,e)}function cJ(e,t){let n=cq(e),i=cj[n];if("primitive"!==e&&!i)throw Error(`R3F: ${n} is not part of the THREE namespace! Did you forget to extend? See: https://docs.pmnd.rs/react-three-fiber/api/objects#using-3rd-party-objects-declaratively`);if("primitive"===e&&!t.object)throw Error("R3F: Primitives without 'object' are invalid!");if(void 0!==t.args&&!Array.isArray(t.args))throw Error("R3F: The args prop must be an array!")}function cK(e){if(e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cS(e.parent,e):cI(e.object)&&!1!==e.props.visible&&(e.object.visible=!0),e.isHidden=!1,cR(e)}}function c$(e,t,n){let i=t.root.getState();if(e.parent||e.object===i.scene){if(!t.object){var r,a;let e=cj[cq(t.type)];t.object=null!=(r=t.props.object)?r:new e(...null!=(a=t.props.args)?a:[]),t.object.__r3f=t}if(cC(t.object,t.props),t.props.attach)cS(e,t);else if(cI(t.object)&&cI(e.object)){let i=e.object.children.indexOf(null==n?void 0:n.object);if(n&&-1!==i){let n=e.object.children.indexOf(t.object);-1!==n?(e.object.children.splice(n,1),e.object.children.splice(n{try{e.dispose()}catch{}};"u">typeof IS_REACT_ACT_ENVIRONMENT?t():(0,u8.unstable_scheduleCallback)(u8.unstable_IdlePriority,t)}}function c2(e,t,n){if(!t)return;t.parent=null;let i=e.children.indexOf(t);-1!==i&&e.children.splice(i,1),t.props.attach?cM(e,t):cI(t.object)&&cI(e.object)&&(e.object.remove(t.object),function(e,t){let{internal:n}=e.getState();n.interaction=n.interaction.filter(e=>e!==t),n.initialHits=n.initialHits.filter(e=>e!==t),n.hovered.forEach((e,i)=>{(e.eventObject===t||e.object===t)&&n.hovered.delete(i)}),n.capturedMap.forEach((e,i)=>{cN(n.capturedMap,t,e,i)})}(co(t),t.object));let r=null!==t.props.dispose&&!1!==n;for(let e=t.children.length-1;e>=0;e--){let n=t.children[e];c2(t,n,r)}t.children.length=0,delete t.object.__r3f,r&&"primitive"!==t.type&&"Scene"!==t.object.type&&c1(t.object),void 0===n&&cR(t)}let c3=[],c4=()=>{},c5={},c6=0,c8=(S={isPrimaryRenderer:!1,warnsIfNotActing:!1,supportsMutation:!0,supportsPersistence:!1,supportsHydration:!1,createInstance:function(e,t,n){var i;return cJ(e=cq(e)in cj?e:e.replace(cX,""),t),"primitive"===e&&null!=(i=t.object)&&i.__r3f&&delete t.object.__r3f,cy(t.object,n,e,t)},removeChild:c2,appendChild:cQ,appendInitialChild:cQ,insertBefore:c0,appendChildToContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&cQ(n,t)},removeChildFromContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&c2(n,t)},insertInContainerBefore(e,t,n){let i=e.getState().scene.__r3f;t&&n&&i&&c0(i,t,n)},getRootHostContext:()=>c5,getChildHostContext:()=>c5,commitUpdate(e,t,n,i,r){var a,s,o;cJ(t,i);let l=!1;if("primitive"===e.type&&n.object!==i.object||(null==(a=i.args)?void 0:a.length)!==(null==(s=n.args)?void 0:s.length)?l=!0:null!=(o=i.args)&&o.some((e,t)=>{var i;return e!==(null==(i=n.args)?void 0:i[t])})&&(l=!0),l)c3.push([e,{...i},r]);else{let t=function(e,t){let n={};for(let i in t)if(!cT.includes(i)&&!cv.equ(t[i],e.props[i]))for(let e in n[i]=t[i],t)e.startsWith(`${i}-`)&&(n[e]=t[e]);for(let i in e.props){if(cT.includes(i)||t.hasOwnProperty(i))continue;let{root:r,key:a}=cx(e.object,i);if(r.constructor&&0===r.constructor.length){let e=function(e){let t=cw.get(e.constructor);try{t||(t=new e.constructor,cw.set(e.constructor,t))}catch(e){}return t}(r);cv.und(e)||(n[a]=e[a])}else n[a]=0}return n}(e,i);Object.keys(t).length&&(Object.assign(e.props,t),cC(e.object,t))}(null===r.sibling||(4&r.flags)==0)&&function(){for(let[e]of c3){let t=e.parent;if(t)for(let n of(e.props.attach?cM(t,e):cI(e.object)&&cI(t.object)&&t.object.remove(e.object),e.children))n.props.attach?cM(e,n):cI(n.object)&&cI(e.object)&&e.object.remove(n.object);e.isHidden&&cK(e),e.object.__r3f&&delete e.object.__r3f,"primitive"!==e.type&&c1(e.object)}for(let[i,r,a]of c3){i.props=r;let s=i.parent;if(s){let r=cj[cq(i.type)],o=i.object;i.object=null!=(e=i.props.object)?e:new r(...null!=(t=i.props.args)?t:[]),i.object.__r3f=i;var e,t,n=i.object;for(let e of[a,a.alternate])if(null!==e)if("function"==typeof e.ref){null==e.refCleanup||e.refCleanup();let t=e.ref(n);"function"==typeof t&&(e.refCleanup=t)}else e.ref&&(e.ref.current=n);for(let e of(!function(e,t,n){let{internal:i}=e.getState();for(let e=0;e{if(e.eventObject===t||e.object===t){i.hovered.delete(r);let a={...e,eventObject:e.eventObject===t?n:e.eventObject,object:e.object===t?n:e.object};i.hovered.set(cL(a),a)}}),i.capturedMap.forEach(e=>{let i=e.get(t);i&&(e.delete(t),e.set(n,i))})}(co(i),o,i.object),cC(i.object,i.props),i.props.attach?cS(s,i):cI(i.object)&&cI(s.object)&&s.object.add(i.object),i.children))e.props.attach?cS(i,e):cI(e.object)&&cI(i.object)&&i.object.add(e.object);cR(i)}}c3.length=0}()},finalizeInitialChildren:()=>!1,commitMount(){},getPublicInstance:e=>null==e?void 0:e.object,prepareForCommit:()=>null,preparePortalMount:e=>cy(e.getState().scene,e,"",{}),resetAfterCommit:()=>{},shouldSetTextContent:()=>!1,clearContainer:()=>!1,hideInstance:function(e){if(!e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cM(e.parent,e):cI(e.object)&&(e.object.visible=!1),e.isHidden=!0,cR(e)}},unhideInstance:cK,createTextInstance:c4,hideTextInstance:c4,unhideTextInstance:c4,scheduleTimeout:"function"==typeof setTimeout?setTimeout:void 0,cancelTimeout:"function"==typeof clearTimeout?clearTimeout:void 0,noTimeout:-1,getInstanceFromNode:()=>null,beforeActiveInstanceBlur(){},afterActiveInstanceBlur(){},detachDeletedInstance(){},prepareScopeUpdate(){},getInstanceFromScope:()=>null,shouldAttemptEagerTransition:()=>!1,trackSchedulerEvent:()=>{},resolveEventType:()=>null,resolveEventTimeStamp:()=>-1.1,requestPostPaintCallback(){},maySuspendCommit:()=>!1,preloadInstance:()=>!0,suspendInstance(){},waitForCommitToBeReady:()=>null,NotPendingTransition:null,HostTransitionContext:E.createContext(null),setCurrentUpdatePriority(e){c6=e},getCurrentUpdatePriority:()=>c6,resolveUpdatePriority(){var e;if(0!==c6)return c6;switch("u">typeof window&&(null==(e=window.event)?void 0:e.type)){case"click":case"contextmenu":case"dblclick":case"pointercancel":case"pointerdown":case"pointerup":return 2;case"pointermove":case"pointerout":case"pointerover":case"pointerenter":case"pointerleave":case"wheel":return 8;default:return 32}},resetFormInstance(){},rendererPackageName:"@react-three/fiber",rendererVersion:"9.6.1",applyViewTransitionName(e,t,n){},restoreViewTransitionName(e,t){},cancelViewTransitionName(e,t,n){},cancelRootViewTransitionName(e){},restoreRootViewTransitionName(e){},InstanceMeasurement:null,measureInstance:e=>null,wasInstanceInViewport:e=>!0,hasInstanceChanged:(e,t)=>!1,hasInstanceAffectedParent:(e,t)=>!1,suspendOnActiveViewTransition(e,t){},startGestureTransition:()=>null,startViewTransition:()=>null,stopViewTransition(e){},createViewTransitionInstance:e=>null,getCurrentGestureOffset(e){throw Error("startGestureTransition is not yet supported in react-three-fiber.")},cloneMutableInstance:(e,t)=>e,cloneMutableTextInstance:e=>e,cloneRootViewTransitionContainer(e){throw Error("Not implemented.")},removeRootViewTransitionClone(e,t){throw Error("Not implemented.")},createFragmentInstance:e=>null,updateFragmentInstanceFiber(e,t){},commitNewChildToFragmentInstance(e,t){},deleteChildFromFragmentInstance(e,t){},measureClonedInstance:e=>null,maySuspendCommitOnUpdate:(e,t,n)=>!1,maySuspendCommitInSyncRender:(e,t)=>!1,startSuspendingCommit:()=>null,getSuspendedCommitReason:(e,t)=>null},(_=cW(S)).injectIntoDevTools(),_),c9=new Map,c7={objects:"shallow",strict:!1};function he(e){var t,n;let i,r,a,s,o,l,u,c=c9.get(e),h=null==c?void 0:c.fiber,d=null==c?void 0:c.store;c&&console.warn("R3F.createRoot should only be called once!");let p="function"==typeof reportError?reportError:console.error,f=d||(t=hp,n=hf,o=(s=(a=u3((e,i)=>{let r,a=new eE,s=new eE,o=new eE;function l(e=i().camera,t=s,n=i().size){let{width:r,height:u,top:c,left:h}=n,d=r/u;t.isVector3?o.copy(t):o.set(...t);let p=e.getWorldPosition(a).distanceTo(o);if(e&&e.isOrthographicCamera)return{width:r/e.zoom,height:u/e.zoom,top:c,left:h,factor:1,distance:p,aspect:d};{let t=2*Math.tan(e.fov*Math.PI/180/2)*p,n=r/u*t;return{width:n,height:t,top:c,left:h,factor:r/n,distance:p,aspect:d}}}let u=t=>e(e=>({performance:{...e.performance,current:t}})),c=new Y;return{set:e,get:i,gl:null,camera:null,raycaster:null,events:{priority:1,enabled:!0,connected:!1},scene:null,xr:null,invalidate:(e=1)=>t(i(),e),advance:(e,t)=>n(e,t,i()),legacy:!1,linear:!1,flat:!1,controls:null,clock:new sw,pointer:c,mouse:c,frameloop:"always",onPointerMissed:void 0,performance:{current:1,min:.5,max:1,debounce:200,regress:()=>{let e=i();r&&clearTimeout(r),e.performance.current!==e.performance.min&&u(e.performance.min),r=setTimeout(()=>u(i().performance.max),e.performance.debounce)}},size:{width:0,height:0,top:0,left:0},viewport:{initialDpr:0,dpr:0,width:0,height:0,top:0,left:0,aspect:0,distance:0,factor:0,getCurrentViewport:l},setEvents:t=>e(e=>({...e,events:{...e.events,...t}})),setSize:(t,n,r=0,a=0)=>{let o=i().camera,u={width:t,height:n,top:r,left:a};e(e=>({size:u,viewport:{...e.viewport,...l(o,s,u)}}))},setDpr:t=>e(e=>{let n=cm(t);return{viewport:{...e.viewport,dpr:n,initialDpr:e.viewport.initialDpr||n}}}),setFrameloop:(t="always")=>{let n=i().clock;n.stop(),n.elapsedTime=0,"never"!==t&&(n.start(),n.elapsedTime=0),e(()=>({frameloop:t}))},previousRoot:void 0,internal:{interaction:[],hovered:new Map,subscribers:[],initialClick:[0,0],initialHits:[],capturedMap:new Map,lastEvent:E.createRef(),active:!1,frames:0,priority:0,subscribe:(e,t,n)=>{let r=i().internal;return r.priority=r.priority+ +(t>0),r.subscribers.push({ref:e,priority:t,store:n}),r.subscribers=r.subscribers.sort((e,t)=>e.priority-t.priority),()=>{let n=i().internal;null!=n&&n.subscribers&&(n.priority=n.priority-(t>0),n.subscribers=n.subscribers.filter(t=>t.ref!==e))}}}}})).getState()).size,l=s.viewport.dpr,u=s.camera,a.subscribe(()=>{let{camera:e,size:t,viewport:n,gl:i,set:r}=a.getState();if(t.width!==o.width||t.height!==o.height||n.dpr!==l){o=t,l=n.dpr,cP(e,t),n.dpr>0&&i.setPixelRatio(n.dpr);let r="u">typeof HTMLCanvasElement&&i.domElement instanceof HTMLCanvasElement;i.setSize(t.width,t.height,r)}e!==u&&(u=e,r(t=>({viewport:{...t.viewport,...t.viewport.getCurrentViewport(e)}})))}),a.subscribe(e=>t(e)),a),m=h||c8.createContainer(f,1,null,!1,null,"",p,p,p,null);c||c9.set(e,{fiber:m,store:f});let g=!1,v=null;return{async configure(t={}){var n,a;let s;v=new Promise(e=>s=e);let{gl:o,size:l,scene:u,events:c,onCreated:h,shadows:d=!1,linear:p=!1,flat:m=!1,legacy:_=!1,orthographic:y=!1,frameloop:x="always",dpr:b=[1,2],performance:S,raycaster:M,camera:T,onPointerMissed:w}=t,E=f.getState(),A=E.gl;if(!E.gl){let t={canvas:e,powerPreference:"high-performance",antialias:!0,alpha:!0},n="function"==typeof o?await o(t):o;A=cU(n)?n:new uK({...t,...o}),E.set({gl:A})}let C=E.raycaster;C||E.set({raycaster:C=new s3});let{params:R,...P}=M||{};if(cv.equ(P,C,c7)||cC(C,{...P}),cv.equ(R,C.params,c7)||cC(C,{params:{...C.params,...R}}),!E.camera||E.camera===r&&!cv.equ(r,T,c7)){r=T;let e=null==T?void 0:T.isCamera,t=e?T:y?new sn(0,0,0,0,.1,1e3):new nE(75,0,.1,1e3);!e&&(t.position.z=5,T&&(cC(t,T),!t.manual&&("aspect"in T||"left"in T||"right"in T||"bottom"in T||"top"in T)&&(t.manual=!0,t.updateProjectionMatrix())),E.camera||null!=T&&T.rotation||t.lookAt(0,0,0)),E.set({camera:t}),C.camera=t}if(!E.scene){let e;null!=u&&u.isScene?cy(e=u,f,"",{}):(cy(e=new nL,f,"",{}),u&&cC(e,u)),E.set({scene:e})}c&&!E.events.handlers&&E.set({events:c(f)});let N=function(e,t){if(!t&&"u">typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement&&e.parentElement){let{width:t,height:n,top:i,left:r}=e.parentElement.getBoundingClientRect();return{width:t,height:n,top:i,left:r}}return!t&&"u">typeof OffscreenCanvas&&e instanceof OffscreenCanvas?{width:e.width,height:e.height,top:0,left:0}:{width:0,height:0,top:0,left:0,...t}}(e,l);if(cv.equ(N,E.size,c7)||E.setSize(N.width,N.height,N.top,N.left),b&&E.viewport.dpr!==cm(b)&&E.setDpr(b),E.frameloop!==x&&E.setFrameloop(x),E.onPointerMissed||E.set({onPointerMissed:w}),S&&!cv.equ(S,E.performance,c7)&&E.set(e=>({performance:{...e.performance,...S}})),!E.xr){let e=(e,t)=>{let n=f.getState();"never"!==n.frameloop&&hf(e,!0,n,t)},t=()=>{let t=f.getState();t.gl.xr.enabled=t.gl.xr.isPresenting,t.gl.xr.setAnimationLoop(t.gl.xr.isPresenting?e:null),t.gl.xr.isPresenting||hp(t)},i={connect(){let e=f.getState().gl;e.xr.addEventListener("sessionstart",t),e.xr.addEventListener("sessionend",t)},disconnect(){let e=f.getState().gl;e.xr.removeEventListener("sessionstart",t),e.xr.removeEventListener("sessionend",t)}};"function"==typeof(null==(n=A.xr)?void 0:n.addEventListener)&&i.connect(),E.set({xr:i})}if(A.shadowMap){let e=A.shadowMap.enabled,t=A.shadowMap.type;A.shadowMap.enabled=!!d,cv.boo(d)?A.shadowMap.type=2:cv.str(d)?A.shadowMap.type=null!=(a=({basic:0,percentage:1,soft:2,variance:3})[d])?a:2:cv.obj(d)&&Object.assign(A.shadowMap,d),(e!==A.shadowMap.enabled||t!==A.shadowMap.type)&&(A.shadowMap.needsUpdate=!0)}return eu.enabled=!_,g||(A.outputColorSpace=p?L:I,A.toneMapping=4*!m),E.legacy!==_&&E.set(()=>({legacy:_})),E.linear!==p&&E.set(()=>({linear:p})),E.flat!==m&&E.set(()=>({flat:m})),!o||cv.fun(o)||cU(o)||cv.equ(o,A,c7)||cC(A,o),i=h,g=!0,s(),this},render(t){return g||v||this.configure(),v.then(()=>{c8.updateContainer((0,u9.jsx)(ht,{store:f,children:t,onCreated:i,rootElement:e}),m,null,()=>void 0)}),f},unmount(){hn(e)}}}function ht({store:e,children:t,onCreated:n,rootElement:i}){return cc(()=>{let t=e.getState();t.set(e=>({internal:{...e.internal,active:!0}})),n&&n(t),e.getState().events.connected||null==t.events.connect||t.events.connect(i)},[]),(0,u9.jsx)(cD.Provider,{value:e,children:t})}function hn(e,t){let n=c9.get(e),i=null==n?void 0:n.fiber;if(i){let r=null==n?void 0:n.store.getState();r&&(r.internal.active=!1),c8.updateContainer(null,i,null,()=>{r&&setTimeout(()=>{try{null==r.events.disconnect||r.events.disconnect(),null==(n=r.gl)||null==(i=n.renderLists)||null==i.dispose||i.dispose(),null==(a=r.gl)||null==a.forceContextLoss||a.forceContextLoss(),null!=(s=r.gl)&&s.xr&&r.xr.disconnect();var n,i,a,s,o=r.scene;for(let e in"Scene"!==o.type&&(null==o.dispose||o.dispose()),o){let t=o[e];(null==t?void 0:t.type)!=="Scene"&&(null==t||null==t.dispose||t.dispose())}c9.delete(e),t&&t(e)}catch(e){}},500)})}}function hi({state:e={},children:t,container:n}){let{events:i,size:r,...a}=e,s=cO(),[o]=E.useState(()=>new s3),[l]=E.useState(()=>new Y),u=ch((e,t)=>{let a;if(t.camera&&r){let n=t.camera;a=e.viewport.getCurrentViewport(n,new eE,r),n!==e.camera&&cP(n,r)}return{...e,...t,scene:n,raycaster:o,pointer:l,mouse:l,previousRoot:s,events:{...e.events,...t.events,...i},size:{...e.size,...r},viewport:{...e.viewport,...a},setEvents:e=>t.set(t=>({...t,events:{...t.events,...e}}))}}),c=E.useMemo(()=>{let e=u3((e,t)=>({...a,set:e,get:t})),t=t=>e.setState(e=>u.current(t,e));return t(s.getState()),s.subscribe(t),e},[s,n]);return(0,u9.jsx)(u9.Fragment,{children:c8.createPortal((0,u9.jsx)(cD.Provider,{value:c,children:t}),c,null)})}let hr=new Set,ha=new Set,hs=new Set;function ho(e,t){if(e.size)for(let{callback:n}of e.values())n(t)}function hl(e,t){switch(e){case"before":return ho(hr,t);case"after":return ho(ha,t);case"tail":return ho(hs,t)}}function hu(e,t,n){let i=t.clock.getDelta();"never"===t.frameloop&&"number"==typeof e&&(i=e-t.clock.elapsedTime,t.clock.oldTime=t.clock.elapsedTime,t.clock.elapsedTime=e),s=t.internal.subscribers;for(let e=0;e0)&&!(null!=(t=c.gl.xr)&&t.isPresenting)&&(l+=hu(e,c))}if(hh=!1,hl("after",e),0===l)return hl("tail",e),hc=!1,cancelAnimationFrame(u)}function hp(e,t=1){var n;if(!e)return c9.forEach(e=>hp(e.store.getState(),t));(null==(n=e.gl.xr)||!n.isPresenting)&&e.internal.active&&"never"!==e.frameloop&&(t>1?e.internal.frames=Math.min(60,e.internal.frames+t):hh?e.internal.frames=2:e.internal.frames=1,hc||(hc=!0,requestAnimationFrame(hd)))}function hf(e,t=!0,n,i){if(t&&hl("before",e),n)hu(e,n,i);else for(let t of c9.values())hu(e,t.store.getState());t&&hl("after",e)}let hm={onClick:["click",!1],onContextMenu:["contextmenu",!1],onDoubleClick:["dblclick",!1],onWheel:["wheel",!0],onPointerDown:["pointerdown",!0],onPointerUp:["pointerup",!0],onPointerLeave:["pointerleave",!0],onPointerMove:["pointermove",!0],onPointerCancel:["pointercancel",!0],onLostPointerCapture:["lostpointercapture",!0]};function hg(e){let{handlePointer:t}=function(e){function t(e){return e.filter(e=>["Move","Over","Enter","Out","Leave"].some(t=>{var n;return null==(n=e.__r3f)?void 0:n.handlers["onPointer"+t]}))}function n(t){let{internal:n}=e.getState();for(let e of n.hovered.values())if(!t.length||!t.find(t=>t.object===e.object&&t.index===e.index&&t.instanceId===e.instanceId)){let i=e.eventObject.__r3f;if(n.hovered.delete(cL(e)),null!=i&&i.eventCount){let n=i.handlers,r={...e,intersections:t};null==n.onPointerOut||n.onPointerOut(r),null==n.onPointerLeave||n.onPointerLeave(r)}}}function i(e,t){for(let n=0;nn([]);case"onLostPointerCapture":return t=>{let{internal:i}=e.getState();"pointerId"in t&&i.capturedMap.has(t.pointerId)&&requestAnimationFrame(()=>{i.capturedMap.has(t.pointerId)&&(i.capturedMap.delete(t.pointerId),n([]))})}}return function(a){let{onPointerMissed:s,internal:o}=e.getState();o.lastEvent.current=a;let l="onPointerMove"===r,u="onClick"===r||"onContextMenu"===r||"onDoubleClick"===r,c=function(t,n){let i=e.getState(),r=new Set,a=[],s=n?n(i.internal.interaction):i.internal.interaction;for(let e=0;e{let n=cg(e.object),i=cg(t.object);return n&&i&&i.events.priority-n.events.priority||e.distance-t.distance}).filter(e=>{let t=cL(e);return!r.has(t)&&(r.add(t),!0)});for(let e of(i.events.filter&&(o=i.events.filter(o,i)),o)){let t=e.object;for(;t;){var l;null!=(l=t.__r3f)&&l.eventCount&&a.push({...e,eventObject:t}),t=t.parent}}if("pointerId"in t&&i.internal.capturedMap.has(t.pointerId))for(let e of i.internal.capturedMap.get(t.pointerId).values())r.has(cL(e.intersection))||a.push(e.intersection);return a}(a,l?t:void 0),h=u?function(t){let{internal:n}=e.getState(),i=t.offsetX-n.initialClick[0],r=t.offsetY-n.initialClick[1];return Math.round(Math.sqrt(i*i+r*r))}(a):0;"onPointerDown"===r&&(o.initialClick=[a.offsetX,a.offsetY],o.initialHits=c.map(e=>e.eventObject)),u&&!c.length&&h<=2&&(i(a,o.interaction),s&&s(a)),l&&n(c),!function(e,t,i,r){if(e.length){let a={stopped:!1};for(let s of e){let o=cg(s.object);if(o||s.object.traverseAncestors(e=>{let t=cg(e);if(t)return o=t,!1}),o){let{raycaster:l,pointer:u,camera:c,internal:h}=o,d=new eE(u.x,u.y,0).unproject(c),p=e=>{var t,n;return null!=(t=null==(n=h.capturedMap.get(e))?void 0:n.has(s.eventObject))&&t},f=e=>{let n={intersection:s,target:t.target};h.capturedMap.has(e)?h.capturedMap.get(e).set(s.eventObject,n):h.capturedMap.set(e,new Map([[s.eventObject,n]])),t.target.setPointerCapture(e)},m=e=>{let t=h.capturedMap.get(e);t&&cN(h.capturedMap,s.eventObject,t,e)},g={};for(let e in t){let n=t[e];"function"!=typeof n&&(g[e]=n)}let v={...s,...g,pointer:u,intersections:e,stopped:a.stopped,delta:i,unprojectedPoint:d,ray:l.ray,camera:c,stopPropagation(){let i="pointerId"in t&&h.capturedMap.get(t.pointerId);(!i||i.has(s.eventObject))&&(v.stopped=a.stopped=!0,h.hovered.size&&Array.from(h.hovered.values()).find(e=>e.eventObject===s.eventObject)&&n([...e.slice(0,e.indexOf(s)),s]))},target:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},currentTarget:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},nativeEvent:t};if(r(v),!0===a.stopped)break}}}}(c,a,h,function(e){let t=e.eventObject,n=t.__r3f;if(!(null!=n&&n.eventCount))return;let s=n.handlers;if(l){if(s.onPointerOver||s.onPointerEnter||s.onPointerOut||s.onPointerLeave){let t=cL(e),n=o.hovered.get(t);n?n.stopped&&e.stopPropagation():(o.hovered.set(t,e),null==s.onPointerOver||s.onPointerOver(e),null==s.onPointerEnter||s.onPointerEnter(e))}null==s.onPointerMove||s.onPointerMove(e)}else{let n=s[r];n?(!u||o.initialHits.includes(t))&&(i(a,o.interaction.filter(e=>!o.initialHits.includes(e))),n(e)):u&&o.initialHits.includes(t)&&i(a,o.interaction.filter(e=>!o.initialHits.includes(e)))}})}}}}(e);return{priority:1,enabled:!0,compute(e,t,n){t.pointer.set(e.offsetX/t.size.width*2-1,-(2*(e.offsetY/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)},connected:void 0,handlers:Object.keys(hm).reduce((e,n)=>({...e,[n]:t(n)}),{}),update:()=>{var t;let{events:n,internal:i}=e.getState();null!=(t=i.lastEvent)&&t.current&&n.handlers&&n.handlers.onPointerMove(i.lastEvent.current)},connect:t=>{let{set:n,events:i}=e.getState();if(null==i.disconnect||i.disconnect(),n(e=>({events:{...e.events,connected:t}})),i.handlers)for(let e in i.handlers){let n=i.handlers[e],[r,a]=hm[e];t.addEventListener(r,n,{passive:a})}},disconnect:()=>{let{set:t,events:n}=e.getState();if(n.connected){if(n.handlers)for(let e in n.handlers){let t=n.handlers[e],[i]=hm[e];n.connected.removeEventListener(i,t)}t(e=>({events:{...e.events,connected:void 0}}))}}}}e.s(["A",0,cO,"B",0,cp,"C",0,cF,"D",0,cz,"E",0,cf,"G",0,cH,"a",0,ch,"b",0,cc,"c",0,he,"d",0,hn,"e",0,cZ,"f",0,hg,"i",0,cl,"o",0,function(e,t,n){return(0,u9.jsx)(hi,{children:e,container:t,state:n})},"s",0,cC,"u",0,cd],1950),e.i(8560),e.s(["ACESFilmicToneMapping",0,4,"AddEquation",0,100,"AddOperation",0,2,"AdditiveAnimationBlendMode",0,2501,"AdditiveBlending",0,2,"AgXToneMapping",0,6,"AlphaFormat",0,1021,"AlwaysCompare",0,519,"AlwaysDepth",0,1,"AlwaysStencilFunc",0,519,"AmbientLight",0,sa,"AnimationAction",0,sY,"AnimationClip",0,aB,"AnimationLoader",0,aq,"AnimationMixer",0,sJ,"AnimationObjectGroup",0,sq,"AnimationUtils",0,aE,"ArcCurve",0,rs,"ArrayCamera",0,sT,"ArrowHelper",0,oP,"AttachedBindMode",0,R,"Audio",0,sL,"AudioAnalyser",0,sz,"AudioContext",0,s_,"AudioListener",0,sI,"AudioLoader",0,sy,"AxesHelper",0,oI,"BackSide",0,1,"BasicDepthPacking",0,3200,"BasicShadowMap",0,0,"BatchedMesh",0,iz,"Bone",0,ie,"BooleanKeyframeTrack",0,aL,"Box2",0,oe,"Box3",0,eR,"Box3Helper",0,oA,"BoxGeometry",0,ng,"BoxHelper",0,oE,"BufferAttribute",0,tZ,"BufferGeometry",0,nn,"BufferGeometryLoader",0,sd,"ByteType",0,1010,"Cache",0,ak,"Camera",0,nS,"CameraHelper",0,oM,"CanvasTexture",0,rn,"CapsuleGeometry",0,rA,"CatmullRomCurve3",0,rd,"CineonToneMapping",0,3,"CircleGeometry",0,rC,"ClampToEdgeWrapping",0,1001,"Clock",0,sw,"Color",0,tz,"ColorKeyframeTrack",0,aN,"ColorManagement",0,eu,"CompressedArrayTexture",0,re,"CompressedCubeTexture",0,rt,"CompressedTexture",0,i7,"CompressedTextureLoader",0,aY,"ConeGeometry",0,rP,"ConstantAlphaFactor",0,213,"ConstantColorFactor",0,211,"Controls",0,oN,"CubeCamera",0,nA,"CubeReflectionMapping",0,301,"CubeRefractionMapping",0,302,"CubeTexture",0,nC,"CubeTextureLoader",0,aJ,"CubeUVReflectionMapping",0,306,"CubicBezierCurve",0,rg,"CubicBezierCurve3",0,rv,"CubicInterpolant",0,aC,"CullFaceBack",0,1,"CullFaceFront",0,2,"CullFaceFrontBack",0,3,"CullFaceNone",0,0,"Curve",0,rr,"CurvePath",0,rT,"CustomBlending",0,5,"CustomToneMapping",0,5,"CylinderGeometry",0,rR,"Cylindrical",0,s8,"Data3DTexture",0,eM,"DataArrayTexture",0,eb,"DataTexture",0,it,"DataTextureLoader",0,aK,"DataUtils",0,tX,"DecrementStencilOp",0,7683,"DecrementWrapStencilOp",0,34056,"DefaultLoadingManager",0,aV,"DepthFormat",0,1026,"DepthStencilFormat",0,1027,"DepthTexture",0,ri,"DetachedBindMode",0,P,"DirectionalLight",0,sr,"DirectionalLightHelper",0,ox,"DiscreteInterpolant",0,aP,"DodecahedronGeometry",0,rL,"DoubleSide",0,2,"DstAlphaFactor",0,206,"DstColorFactor",0,208,"DynamicCopyUsage",0,35050,"DynamicDrawUsage",0,35048,"DynamicReadUsage",0,35049,"EdgesGeometry",0,rF,"EllipseCurve",0,ra,"EqualCompare",0,514,"EqualDepth",0,4,"EqualStencilFunc",0,514,"EquirectangularReflectionMapping",0,303,"EquirectangularRefractionMapping",0,304,"Euler",0,tn,"EventDispatcher",0,O,"ExtrudeGeometry",0,r4,"FileLoader",0,aX,"Float16BufferAttribute",0,t3,"Float32BufferAttribute",0,t4,"FloatType",0,1015,"Fog",0,nI,"FogExp2",0,nP,"FramebufferTexture",0,i9,"FrontSide",0,0,"Frustum",0,iS,"GLBufferAttribute",0,s1,"GLSL1",0,"100","GLSL3",0,D,"GreaterCompare",0,516,"GreaterDepth",0,6,"GreaterEqualCompare",0,518,"GreaterEqualDepth",0,5,"GreaterEqualStencilFunc",0,518,"GreaterStencilFunc",0,516,"GridHelper",0,om,"Group",0,i6,"HalfFloatType",0,1016,"HemisphereLight",0,a0,"HemisphereLightHelper",0,of,"IcosahedronGeometry",0,r6,"ImageBitmapLoader",0,sv,"ImageLoader",0,aZ,"ImageUtils",0,ed,"IncrementStencilOp",0,7682,"IncrementWrapStencilOp",0,34055,"InstancedBufferAttribute",0,is,"InstancedBufferGeometry",0,sh,"InstancedInterleavedBuffer",0,s0,"InstancedMesh",0,im,"Int16BufferAttribute",0,tQ,"Int32BufferAttribute",0,t1,"Int8BufferAttribute",0,tJ,"IntType",0,1013,"InterleavedBuffer",0,nN,"InterleavedBufferAttribute",0,nD,"Interpolant",0,aA,"InterpolateDiscrete",0,2300,"InterpolateLinear",0,2301,"InterpolateSmooth",0,2302,"InvertStencilOp",0,5386,"KeepStencilOp",0,7680,"KeyframeTrack",0,aI,"LOD",0,nQ,"LatheGeometry",0,rE,"Layers",0,ti,"LessCompare",0,513,"LessDepth",0,2,"LessEqualCompare",0,515,"LessEqualDepth",0,3,"LessEqualStencilFunc",0,515,"LessStencilFunc",0,513,"Light",0,aQ,"LightProbe",0,sl,"Line",0,iq,"Line3",0,oi,"LineBasicMaterial",0,iB,"LineCurve",0,r_,"LineCurve3",0,ry,"LineDashedMaterial",0,ax,"LineLoop",0,i$,"LineSegments",0,iK,"LinearFilter",0,1006,"LinearInterpolant",0,aR,"LinearMipMapLinearFilter",0,1008,"LinearMipMapNearestFilter",0,1007,"LinearMipmapLinearFilter",0,1008,"LinearMipmapNearestFilter",0,1007,"LinearSRGBColorSpace",0,L,"LinearToneMapping",0,1,"LinearTransfer",0,N,"Loader",0,aG,"LoaderUtils",0,sc,"LoadingManager",0,aH,"LoopOnce",0,2200,"LoopPingPong",0,2202,"LoopRepeat",0,2201,"LuminanceAlphaFormat",0,1025,"LuminanceFormat",0,1024,"MOUSE",0,A,"Material",0,tH,"MaterialLoader",0,su,"MathUtils",0,q,"Matrix2",0,s9,"Matrix3",0,Z,"Matrix4",0,e2,"MaxEquation",0,104,"Mesh",0,nf,"MeshBasicMaterial",0,tV,"MeshDepthMaterial",0,av,"MeshDistanceMaterial",0,a_,"MeshLambertMaterial",0,ag,"MeshMatcapMaterial",0,ay,"MeshNormalMaterial",0,am,"MeshPhongMaterial",0,ap,"MeshPhysicalMaterial",0,ad,"MeshStandardMaterial",0,ah,"MeshToonMaterial",0,af,"MinEquation",0,103,"MirroredRepeatWrapping",0,1002,"MixOperation",0,1,"MultiplyBlending",0,4,"MultiplyOperation",0,0,"NearestFilter",0,1003,"NearestMipMapLinearFilter",0,1005,"NearestMipMapNearestFilter",0,1004,"NearestMipmapLinearFilter",0,1005,"NearestMipmapNearestFilter",0,1004,"NeutralToneMapping",0,7,"NeverCompare",0,512,"NeverDepth",0,0,"NeverStencilFunc",0,512,"NoBlending",0,0,"NoColorSpace",0,"","NoToneMapping",0,0,"NormalAnimationBlendMode",0,2500,"NormalBlending",0,1,"NotEqualCompare",0,517,"NotEqualDepth",0,7,"NotEqualStencilFunc",0,517,"NumberKeyframeTrack",0,aU,"Object3D",0,ty,"ObjectLoader",0,sp,"ObjectSpaceNormalMap",0,1,"OctahedronGeometry",0,r8,"OneFactor",0,201,"OneMinusConstantAlphaFactor",0,214,"OneMinusConstantColorFactor",0,212,"OneMinusDstAlphaFactor",0,207,"OneMinusDstColorFactor",0,209,"OneMinusSrcAlphaFactor",0,205,"OneMinusSrcColorFactor",0,203,"OrthographicCamera",0,sn,"PCFShadowMap",0,1,"PCFSoftShadowMap",0,2,"PMREMGenerator",0,o8,"Path",0,rw,"PerspectiveCamera",0,nE,"Plane",0,iy,"PlaneGeometry",0,r9,"PlaneHelper",0,oC,"PointLight",0,st,"PointLightHelper",0,oc,"Points",0,i4,"PointsMaterial",0,iQ,"PolarGridHelper",0,og,"PolyhedronGeometry",0,rI,"PositionalAudio",0,sF,"PropertyBinding",0,sX,"PropertyMixer",0,sB,"QuadraticBezierCurve",0,rx,"QuadraticBezierCurve3",0,rb,"Quaternion",0,ew,"QuaternionKeyframeTrack",0,aO,"QuaternionLinearInterpolant",0,aD,"RED_GREEN_RGTC2_Format",0,36285,"RED_RGTC1_Format",0,36283,"REVISION",0,"171","RGBADepthPacking",0,3201,"RGBAFormat",0,1023,"RGBAIntegerFormat",0,1033,"RGBA_ASTC_10x10_Format",0,37819,"RGBA_ASTC_10x5_Format",0,37816,"RGBA_ASTC_10x6_Format",0,37817,"RGBA_ASTC_10x8_Format",0,37818,"RGBA_ASTC_12x10_Format",0,37820,"RGBA_ASTC_12x12_Format",0,37821,"RGBA_ASTC_4x4_Format",0,37808,"RGBA_ASTC_5x4_Format",0,37809,"RGBA_ASTC_5x5_Format",0,37810,"RGBA_ASTC_6x5_Format",0,37811,"RGBA_ASTC_6x6_Format",0,37812,"RGBA_ASTC_8x5_Format",0,37813,"RGBA_ASTC_8x6_Format",0,37814,"RGBA_ASTC_8x8_Format",0,37815,"RGBA_BPTC_Format",0,36492,"RGBA_ETC2_EAC_Format",0,37496,"RGBA_PVRTC_2BPPV1_Format",0,35843,"RGBA_PVRTC_4BPPV1_Format",0,35842,"RGBA_S3TC_DXT1_Format",0,33777,"RGBA_S3TC_DXT3_Format",0,33778,"RGBA_S3TC_DXT5_Format",0,33779,"RGBDepthPacking",0,3202,"RGBFormat",0,1022,"RGBIntegerFormat",0,1032,"RGB_BPTC_SIGNED_Format",0,36494,"RGB_BPTC_UNSIGNED_Format",0,36495,"RGB_ETC1_Format",0,36196,"RGB_ETC2_Format",0,37492,"RGB_PVRTC_2BPPV1_Format",0,35841,"RGB_PVRTC_4BPPV1_Format",0,35840,"RGB_S3TC_DXT1_Format",0,33776,"RGDepthPacking",0,3203,"RGFormat",0,1030,"RGIntegerFormat",0,1031,"RawShaderMaterial",0,ac,"Ray",0,e1,"Raycaster",0,s3,"RectAreaLight",0,ss,"RedFormat",0,1028,"RedIntegerFormat",0,1029,"ReinhardToneMapping",0,2,"RenderTarget",0,ey,"RepeatWrapping",0,1e3,"ReplaceStencilOp",0,7681,"ReverseSubtractEquation",0,102,"RingGeometry",0,r7,"SIGNED_RED_GREEN_RGTC2_Format",0,36286,"SIGNED_RED_RGTC1_Format",0,36284,"SRGBColorSpace",0,I,"SRGBTransfer",0,U,"Scene",0,nL,"ShaderChunk",0,oB,"ShaderLib",0,oH,"ShaderMaterial",0,nb,"ShadowMaterial",0,au,"Shape",0,rz,"ShapeGeometry",0,ae,"ShapePath",0,oL,"ShapeUtils",0,r1,"ShortType",0,1011,"Skeleton",0,ia,"SkeletonHelper",0,ou,"SkinnedMesh",0,n7,"Source",0,ef,"Sphere",0,eq,"SphereGeometry",0,at,"Spherical",0,s6,"SphericalHarmonics3",0,so,"SplineCurve",0,rS,"SpotLight",0,a6,"SpotLightHelper",0,oa,"Sprite",0,nZ,"SpriteMaterial",0,nO,"SrcAlphaFactor",0,204,"SrcAlphaSaturateFactor",0,210,"SrcColorFactor",0,202,"StaticCopyUsage",0,35046,"StaticDrawUsage",0,35044,"StaticReadUsage",0,35045,"StereoCamera",0,sM,"StreamCopyUsage",0,35042,"StreamDrawUsage",0,35040,"StreamReadUsage",0,35041,"StringKeyframeTrack",0,aF,"SubtractEquation",0,101,"SubtractiveBlending",0,3,"TOUCH",0,C,"TangentSpaceNormalMap",0,0,"TetrahedronGeometry",0,an,"Texture",0,ev,"TextureLoader",0,a$,"TextureUtils",0,oD,"TorusGeometry",0,ai,"TorusKnotGeometry",0,ar,"Triangle",0,tN,"TriangleFanDrawMode",0,2,"TriangleStripDrawMode",0,1,"TrianglesDrawMode",0,0,"TubeGeometry",0,aa,"UVMapping",0,300,"Uint16BufferAttribute",0,t0,"Uint32BufferAttribute",0,t2,"Uint8BufferAttribute",0,tK,"Uint8ClampedBufferAttribute",0,t$,"Uniform",0,sK,"UniformsGroup",0,sQ,"UniformsLib",0,ok,"UniformsUtils",0,nx,"UnsignedByteType",0,1009,"UnsignedInt248Type",0,1020,"UnsignedInt5999Type",0,35902,"UnsignedIntType",0,1014,"UnsignedShort4444Type",0,1017,"UnsignedShort5551Type",0,1018,"UnsignedShortType",0,1012,"VSMShadowMap",0,3,"Vector2",0,Y,"Vector3",0,eE,"Vector4",0,e_,"VectorKeyframeTrack",0,az,"VideoTexture",0,i8,"WebGL3DRenderTarget",0,eT,"WebGLArrayRenderTarget",0,eS,"WebGLCoordinateSystem",0,2e3,"WebGLCubeRenderTarget",0,nR,"WebGLMultipleRenderTargets",0,oO,"WebGLRenderTarget",0,ex,"WebGLRenderer",0,uK,"WebGLUtils",0,uk,"WebGPUCoordinateSystem",0,2001,"WireframeGeometry",0,as,"WrapAroundEnding",0,2402,"ZeroCurvatureEnding",0,2400,"ZeroFactor",0,200,"ZeroSlopeEnding",0,2401,"ZeroStencilOp",0,0,"createCanvasElement",0,et],32009);var hv=e.i(32009);function h_(e,t){let n;return(...i)=>{window.clearTimeout(n),n=window.setTimeout(()=>e(...i),t)}}let hy=["x","y","top","bottom","left","right","width","height"];function hx({ref:e,children:t,fallback:n,resize:i,style:r,gl:a,events:s=hg,eventSource:o,eventPrefix:l,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,scene:y,onPointerMissed:x,onCreated:b,...S}){E.useMemo(()=>cZ(hv),[]);let M=cd(),[T,w]=function({debounce:e,scroll:t,polyfill:n,offsetSize:i}={debounce:0,scroll:!1,offsetSize:!1}){var r,a,s;let o=n||("u"(p.current=!0,()=>void(p.current=!1)));let[f,m,g]=(0,E.useMemo)(()=>{let e=()=>{let e,t;if(!c.current.element)return;let{left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d}=c.current.element.getBoundingClientRect(),f={left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d};c.current.element instanceof HTMLElement&&i&&(f.height=c.current.element.offsetHeight,f.width=c.current.element.offsetWidth),Object.freeze(f),p.current&&(e=c.current.lastBounds,t=f,!hy.every(n=>e[n]===t[n]))&&u(c.current.lastBounds=f)};return[e,d?h_(e,d):e,h?h_(e,h):e]},[u,i,h,d]);function v(){c.current.scrollContainers&&(c.current.scrollContainers.forEach(e=>e.removeEventListener("scroll",g,!0)),c.current.scrollContainers=null),c.current.resizeObserver&&(c.current.resizeObserver.disconnect(),c.current.resizeObserver=null),c.current.orientationHandler&&("orientation"in screen&&"removeEventListener"in screen.orientation?screen.orientation.removeEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.removeEventListener("orientationchange",c.current.orientationHandler))}function _(){c.current.element&&(c.current.resizeObserver=new o(g),c.current.resizeObserver.observe(c.current.element),t&&c.current.scrollContainers&&c.current.scrollContainers.forEach(e=>e.addEventListener("scroll",g,{capture:!0,passive:!0})),c.current.orientationHandler=()=>{g()},"orientation"in screen&&"addEventListener"in screen.orientation?screen.orientation.addEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.addEventListener("orientationchange",c.current.orientationHandler))}return r=g,a=!!t,(0,E.useEffect)(()=>{if(a)return window.addEventListener("scroll",r,{capture:!0,passive:!0}),()=>void window.removeEventListener("scroll",r,!0)},[r,a]),s=m,(0,E.useEffect)(()=>(window.addEventListener("resize",s),()=>void window.removeEventListener("resize",s)),[s]),(0,E.useEffect)(()=>{v(),_()},[t,g,m]),(0,E.useEffect)(()=>v,[]),[e=>{e&&e!==c.current.element&&(v(),c.current.element=e,c.current.scrollContainers=function e(t){let n=[];if(!t||t===document.body)return n;let{overflow:i,overflowX:r,overflowY:a}=window.getComputedStyle(t);return[i,r,a].some(e=>"auto"===e||"scroll"===e)&&n.push(t),[...n,...e(t.parentElement)]}(e),_())},l,f]}({scroll:!0,debounce:{scroll:50,resize:0},...i}),A=E.useRef(null),C=E.useRef(null);E.useImperativeHandle(e,()=>A.current);let R=ch(x),[P,I]=E.useState(!1),[L,N]=E.useState(!1);if(P)throw P;if(L)throw L;let U=E.useRef(null);cc(()=>{let e=A.current;w.width>0&&w.height>0&&e&&(U.current||(U.current=he(e)),async function(){await U.current.configure({gl:a,scene:y,events:s,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,size:w,onPointerMissed:(...e)=>null==R.current?void 0:R.current(...e),onCreated:e=>{null==e.events.connect||e.events.connect(o?cl(o)?o.current:o:C.current),l&&e.setEvents({compute:(e,t)=>{let n=e[l+"X"],i=e[l+"Y"];t.pointer.set(n/t.size.width*2-1,-(2*(i/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)}}),null==b||b(e)}}),U.current.render((0,u9.jsx)(M,{children:(0,u9.jsx)(cf,{set:N,children:(0,u9.jsx)(E.Suspense,{fallback:(0,u9.jsx)(cp,{set:I}),children:null!=t?t:null})})}))}())}),E.useEffect(()=>{let e=A.current;if(e)return()=>hn(e)},[]);let D=o?"none":"auto";return(0,u9.jsx)("div",{ref:C,style:{position:"relative",width:"100%",height:"100%",overflow:"hidden",pointerEvents:D,...r},...S,children:(0,u9.jsx)("div",{ref:T,style:{width:"100%",height:"100%"},children:(0,u9.jsx)("canvas",{ref:A,style:{display:"block"},children:n})})})}e.s(["Canvas",0,function(e){return(0,u9.jsx)(ci,{children:(0,u9.jsx)(hx,{...e})})}],75056),e.s(["useFrame",0,cz],25234),e.s(["useThree",0,cF],28600)},44208,e=>{"use strict";var t=e.i(1950);e.s(["createPortal",()=>t.o])},24205,e=>{"use strict";var t=e.i(1950);e.s(["applyProps",()=>t.s])},67335,e=>{"use strict";var t=e.i(1950);e.s(["extend",()=>t.e])},60602,e=>{"use strict";var t=e.i(1950);e.s(["useLoader",()=>t.G])}]); \ No newline at end of file + `+e.join(" > ")}return null},rt.getPublicRootInstance=function(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 27:case 5:return rA(e.child.stateNode);default:return e.child.stateNode}},rt.injectIntoDevTools=function(){var e={bundleType:0,version:rT,rendererPackageName:rw,currentDispatcherRef:rM,reconcilerVersion:"19.2.0"};if(null!==rE&&(e.rendererConfig=rE),typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")e=!1;else{var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)e=!0;else{try{sG=t.inject(e),sW=t}catch{}e=!!t.checkDCE}}return e},rt.isAlreadyRendering=function(){return(6&lm)!=0},rt.observeVisibleRects=function(e,t,n,r){if(!r7)throw Error(i(363));var a=as(e=im(e,t),n,r).disconnect;return{disconnect:function(){a()}}},rt.shouldError=function(){return null},rt.shouldSuspend=function(){return!1},rt.startHostTransition=function(e,t,r,a){if(5!==e.tag)throw Error(i(476));var s=tW(e).queue;tG(e,s,t,r4,null===r?n:function(){var t=tW(e);return null===t.next&&(t=e.alternate.memoizedState),tK(e,t.next.queue,{},ig()),r(a)})},rt.updateContainer=function(e,t,n,i){var r=t.current,a=ig();return i9(r,a,e,t,n,i),a},rt.updateContainerSync=function(e,t,n,i){return i9(t.current,2,e,t,n,i),2},rt},cG.exports.default=cG.exports,Object.defineProperty(cG.exports,"__esModule",{value:!0})),cV.exports=cG.exports),(b=cV.exports)&&b.__esModule&&Object.prototype.hasOwnProperty.call(b,"default"))?b.default:b,cj={},cX=/^three(?=[A-Z])/,cq=e=>`${e[0].toUpperCase()}${e.slice(1)}`,cY=0;function cZ(e){if("function"==typeof e){let t=`${cY++}`;return cj[t]=e,t}Object.assign(cj,e)}function cJ(e,t){let n=cq(e),i=cj[n];if("primitive"!==e&&!i)throw Error(`R3F: ${n} is not part of the THREE namespace! Did you forget to extend? See: https://docs.pmnd.rs/react-three-fiber/api/objects#using-3rd-party-objects-declaratively`);if("primitive"===e&&!t.object)throw Error("R3F: Primitives without 'object' are invalid!");if(void 0!==t.args&&!Array.isArray(t.args))throw Error("R3F: The args prop must be an array!")}function cK(e){if(e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cS(e.parent,e):cI(e.object)&&!1!==e.props.visible&&(e.object.visible=!0),e.isHidden=!1,cR(e)}}function c$(e,t,n){let i=t.root.getState();if(e.parent||e.object===i.scene){if(!t.object){var r,a;let e=cj[cq(t.type)];t.object=null!=(r=t.props.object)?r:new e(...null!=(a=t.props.args)?a:[]),t.object.__r3f=t}if(cC(t.object,t.props),t.props.attach)cS(e,t);else if(cI(t.object)&&cI(e.object)){let i=e.object.children.indexOf(null==n?void 0:n.object);if(n&&-1!==i){let n=e.object.children.indexOf(t.object);-1!==n?(e.object.children.splice(n,1),e.object.children.splice(n{try{e.dispose()}catch{}};"u">typeof IS_REACT_ACT_ENVIRONMENT?t():(0,u8.unstable_scheduleCallback)(u8.unstable_IdlePriority,t)}}function c2(e,t,n){if(!t)return;t.parent=null;let i=e.children.indexOf(t);-1!==i&&e.children.splice(i,1),t.props.attach?cM(e,t):cI(t.object)&&cI(e.object)&&(e.object.remove(t.object),function(e,t){let{internal:n}=e.getState();n.interaction=n.interaction.filter(e=>e!==t),n.initialHits=n.initialHits.filter(e=>e!==t),n.hovered.forEach((e,i)=>{(e.eventObject===t||e.object===t)&&n.hovered.delete(i)}),n.capturedMap.forEach((e,i)=>{cN(n.capturedMap,t,e,i)})}(co(t),t.object));let r=null!==t.props.dispose&&!1!==n;for(let e=t.children.length-1;e>=0;e--){let n=t.children[e];c2(t,n,r)}t.children.length=0,delete t.object.__r3f,r&&"primitive"!==t.type&&"Scene"!==t.object.type&&c1(t.object),void 0===n&&cR(t)}let c3=[],c4=()=>{},c5={},c6=0,c8=(S={isPrimaryRenderer:!1,warnsIfNotActing:!1,supportsMutation:!0,supportsPersistence:!1,supportsHydration:!1,createInstance:function(e,t,n){var i;return cJ(e=cq(e)in cj?e:e.replace(cX,""),t),"primitive"===e&&null!=(i=t.object)&&i.__r3f&&delete t.object.__r3f,cy(t.object,n,e,t)},removeChild:c2,appendChild:cQ,appendInitialChild:cQ,insertBefore:c0,appendChildToContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&cQ(n,t)},removeChildFromContainer(e,t){let n=e.getState().scene.__r3f;t&&n&&c2(n,t)},insertInContainerBefore(e,t,n){let i=e.getState().scene.__r3f;t&&n&&i&&c0(i,t,n)},getRootHostContext:()=>c5,getChildHostContext:()=>c5,commitUpdate(e,t,n,i,r){var a,s,o;cJ(t,i);let l=!1;if("primitive"===e.type&&n.object!==i.object||(null==(a=i.args)?void 0:a.length)!==(null==(s=n.args)?void 0:s.length)?l=!0:null!=(o=i.args)&&o.some((e,t)=>{var i;return e!==(null==(i=n.args)?void 0:i[t])})&&(l=!0),l)c3.push([e,{...i},r]);else{let t=function(e,t){let n={};for(let i in t)if(!cT.includes(i)&&!cv.equ(t[i],e.props[i]))for(let e in n[i]=t[i],t)e.startsWith(`${i}-`)&&(n[e]=t[e]);for(let i in e.props){if(cT.includes(i)||t.hasOwnProperty(i))continue;let{root:r,key:a}=cx(e.object,i);if(r.constructor&&0===r.constructor.length){let e=function(e){let t=cw.get(e.constructor);try{t||(t=new e.constructor,cw.set(e.constructor,t))}catch(e){}return t}(r);cv.und(e)||(n[a]=e[a])}else n[a]=0}return n}(e,i);Object.keys(t).length&&(Object.assign(e.props,t),cC(e.object,t))}(null===r.sibling||(4&r.flags)==0)&&function(){for(let[e]of c3){let t=e.parent;if(t)for(let n of(e.props.attach?cM(t,e):cI(e.object)&&cI(t.object)&&t.object.remove(e.object),e.children))n.props.attach?cM(e,n):cI(n.object)&&cI(e.object)&&e.object.remove(n.object);e.isHidden&&cK(e),e.object.__r3f&&delete e.object.__r3f,"primitive"!==e.type&&c1(e.object)}for(let[i,r,a]of c3){i.props=r;let s=i.parent;if(s){let r=cj[cq(i.type)],o=i.object;i.object=null!=(e=i.props.object)?e:new r(...null!=(t=i.props.args)?t:[]),i.object.__r3f=i;var e,t,n=i.object;for(let e of[a,a.alternate])if(null!==e)if("function"==typeof e.ref){null==e.refCleanup||e.refCleanup();let t=e.ref(n);"function"==typeof t&&(e.refCleanup=t)}else e.ref&&(e.ref.current=n);for(let e of(!function(e,t,n){let{internal:i}=e.getState();for(let e=0;e{if(e.eventObject===t||e.object===t){i.hovered.delete(r);let a={...e,eventObject:e.eventObject===t?n:e.eventObject,object:e.object===t?n:e.object};i.hovered.set(cL(a),a)}}),i.capturedMap.forEach(e=>{let i=e.get(t);i&&(e.delete(t),e.set(n,i))})}(co(i),o,i.object),cC(i.object,i.props),i.props.attach?cS(s,i):cI(i.object)&&cI(s.object)&&s.object.add(i.object),i.children))e.props.attach?cS(i,e):cI(e.object)&&cI(i.object)&&i.object.add(e.object);cR(i)}}c3.length=0}()},finalizeInitialChildren:()=>!1,commitMount(){},getPublicInstance:e=>null==e?void 0:e.object,prepareForCommit:()=>null,preparePortalMount:e=>cy(e.getState().scene,e,"",{}),resetAfterCommit:()=>{},shouldSetTextContent:()=>!1,clearContainer:()=>!1,hideInstance:function(e){if(!e.isHidden){var t;e.props.attach&&null!=(t=e.parent)&&t.object?cM(e.parent,e):cI(e.object)&&(e.object.visible=!1),e.isHidden=!0,cR(e)}},unhideInstance:cK,createTextInstance:c4,hideTextInstance:c4,unhideTextInstance:c4,scheduleTimeout:"function"==typeof setTimeout?setTimeout:void 0,cancelTimeout:"function"==typeof clearTimeout?clearTimeout:void 0,noTimeout:-1,getInstanceFromNode:()=>null,beforeActiveInstanceBlur(){},afterActiveInstanceBlur(){},detachDeletedInstance(){},prepareScopeUpdate(){},getInstanceFromScope:()=>null,shouldAttemptEagerTransition:()=>!1,trackSchedulerEvent:()=>{},resolveEventType:()=>null,resolveEventTimeStamp:()=>-1.1,requestPostPaintCallback(){},maySuspendCommit:()=>!1,preloadInstance:()=>!0,suspendInstance(){},waitForCommitToBeReady:()=>null,NotPendingTransition:null,HostTransitionContext:E.createContext(null),setCurrentUpdatePriority(e){c6=e},getCurrentUpdatePriority:()=>c6,resolveUpdatePriority(){var e;if(0!==c6)return c6;switch("u">typeof window&&(null==(e=window.event)?void 0:e.type)){case"click":case"contextmenu":case"dblclick":case"pointercancel":case"pointerdown":case"pointerup":return 2;case"pointermove":case"pointerout":case"pointerover":case"pointerenter":case"pointerleave":case"wheel":return 8;default:return 32}},resetFormInstance(){},rendererPackageName:"@react-three/fiber",rendererVersion:"9.6.1",applyViewTransitionName(e,t,n){},restoreViewTransitionName(e,t){},cancelViewTransitionName(e,t,n){},cancelRootViewTransitionName(e){},restoreRootViewTransitionName(e){},InstanceMeasurement:null,measureInstance:e=>null,wasInstanceInViewport:e=>!0,hasInstanceChanged:(e,t)=>!1,hasInstanceAffectedParent:(e,t)=>!1,suspendOnActiveViewTransition(e,t){},startGestureTransition:()=>null,startViewTransition:()=>null,stopViewTransition(e){},createViewTransitionInstance:e=>null,getCurrentGestureOffset(e){throw Error("startGestureTransition is not yet supported in react-three-fiber.")},cloneMutableInstance:(e,t)=>e,cloneMutableTextInstance:e=>e,cloneRootViewTransitionContainer(e){throw Error("Not implemented.")},removeRootViewTransitionClone(e,t){throw Error("Not implemented.")},createFragmentInstance:e=>null,updateFragmentInstanceFiber(e,t){},commitNewChildToFragmentInstance(e,t){},deleteChildFromFragmentInstance(e,t){},measureClonedInstance:e=>null,maySuspendCommitOnUpdate:(e,t,n)=>!1,maySuspendCommitInSyncRender:(e,t)=>!1,startSuspendingCommit:()=>null,getSuspendedCommitReason:(e,t)=>null},(_=cW(S)).injectIntoDevTools(),_),c9=new Map,c7={objects:"shallow",strict:!1};function he(e){var t,n;let i,r,a,s,o,l,u,c=c9.get(e),h=null==c?void 0:c.fiber,d=null==c?void 0:c.store;c&&console.warn("R3F.createRoot should only be called once!");let p="function"==typeof reportError?reportError:console.error,f=d||(t=hp,n=hf,o=(s=(a=u3((e,i)=>{let r,a=new eE,s=new eE,o=new eE;function l(e=i().camera,t=s,n=i().size){let{width:r,height:u,top:c,left:h}=n,d=r/u;t.isVector3?o.copy(t):o.set(...t);let p=e.getWorldPosition(a).distanceTo(o);if(e&&e.isOrthographicCamera)return{width:r/e.zoom,height:u/e.zoom,top:c,left:h,factor:1,distance:p,aspect:d};{let t=2*Math.tan(e.fov*Math.PI/180/2)*p,n=r/u*t;return{width:n,height:t,top:c,left:h,factor:r/n,distance:p,aspect:d}}}let u=t=>e(e=>({performance:{...e.performance,current:t}})),c=new Y;return{set:e,get:i,gl:null,camera:null,raycaster:null,events:{priority:1,enabled:!0,connected:!1},scene:null,xr:null,invalidate:(e=1)=>t(i(),e),advance:(e,t)=>n(e,t,i()),legacy:!1,linear:!1,flat:!1,controls:null,clock:new sw,pointer:c,mouse:c,frameloop:"always",onPointerMissed:void 0,performance:{current:1,min:.5,max:1,debounce:200,regress:()=>{let e=i();r&&clearTimeout(r),e.performance.current!==e.performance.min&&u(e.performance.min),r=setTimeout(()=>u(i().performance.max),e.performance.debounce)}},size:{width:0,height:0,top:0,left:0},viewport:{initialDpr:0,dpr:0,width:0,height:0,top:0,left:0,aspect:0,distance:0,factor:0,getCurrentViewport:l},setEvents:t=>e(e=>({...e,events:{...e.events,...t}})),setSize:(t,n,r=0,a=0)=>{let o=i().camera,u={width:t,height:n,top:r,left:a};e(e=>({size:u,viewport:{...e.viewport,...l(o,s,u)}}))},setDpr:t=>e(e=>{let n=cm(t);return{viewport:{...e.viewport,dpr:n,initialDpr:e.viewport.initialDpr||n}}}),setFrameloop:(t="always")=>{let n=i().clock;n.stop(),n.elapsedTime=0,"never"!==t&&(n.start(),n.elapsedTime=0),e(()=>({frameloop:t}))},previousRoot:void 0,internal:{interaction:[],hovered:new Map,subscribers:[],initialClick:[0,0],initialHits:[],capturedMap:new Map,lastEvent:E.createRef(),active:!1,frames:0,priority:0,subscribe:(e,t,n)=>{let r=i().internal;return r.priority=r.priority+ +(t>0),r.subscribers.push({ref:e,priority:t,store:n}),r.subscribers=r.subscribers.sort((e,t)=>e.priority-t.priority),()=>{let n=i().internal;null!=n&&n.subscribers&&(n.priority=n.priority-(t>0),n.subscribers=n.subscribers.filter(t=>t.ref!==e))}}}}})).getState()).size,l=s.viewport.dpr,u=s.camera,a.subscribe(()=>{let{camera:e,size:t,viewport:n,gl:i,set:r}=a.getState();if(t.width!==o.width||t.height!==o.height||n.dpr!==l){o=t,l=n.dpr,cP(e,t),n.dpr>0&&i.setPixelRatio(n.dpr);let r="u">typeof HTMLCanvasElement&&i.domElement instanceof HTMLCanvasElement;i.setSize(t.width,t.height,r)}e!==u&&(u=e,r(t=>({viewport:{...t.viewport,...t.viewport.getCurrentViewport(e)}})))}),a.subscribe(e=>t(e)),a),m=h||c8.createContainer(f,1,null,!1,null,"",p,p,p,null);c||c9.set(e,{fiber:m,store:f});let g=!1,v=null;return{async configure(t={}){var n,a;let s;v=new Promise(e=>s=e);let{gl:o,size:l,scene:u,events:c,onCreated:h,shadows:d=!1,linear:p=!1,flat:m=!1,legacy:_=!1,orthographic:y=!1,frameloop:x="always",dpr:b=[1,2],performance:S,raycaster:M,camera:T,onPointerMissed:w}=t,E=f.getState(),A=E.gl;if(!E.gl){let t={canvas:e,powerPreference:"high-performance",antialias:!0,alpha:!0},n="function"==typeof o?await o(t):o;A=cU(n)?n:new uK({...t,...o}),E.set({gl:A})}let C=E.raycaster;C||E.set({raycaster:C=new s3});let{params:R,...P}=M||{};if(cv.equ(P,C,c7)||cC(C,{...P}),cv.equ(R,C.params,c7)||cC(C,{params:{...C.params,...R}}),!E.camera||E.camera===r&&!cv.equ(r,T,c7)){r=T;let e=null==T?void 0:T.isCamera,t=e?T:y?new sn(0,0,0,0,.1,1e3):new nE(75,0,.1,1e3);!e&&(t.position.z=5,T&&(cC(t,T),!t.manual&&("aspect"in T||"left"in T||"right"in T||"bottom"in T||"top"in T)&&(t.manual=!0,t.updateProjectionMatrix())),E.camera||null!=T&&T.rotation||t.lookAt(0,0,0)),E.set({camera:t}),C.camera=t}if(!E.scene){let e;null!=u&&u.isScene?cy(e=u,f,"",{}):(cy(e=new nL,f,"",{}),u&&cC(e,u)),E.set({scene:e})}c&&!E.events.handlers&&E.set({events:c(f)});let N=function(e,t){if(!t&&"u">typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement&&e.parentElement){let{width:t,height:n,top:i,left:r}=e.parentElement.getBoundingClientRect();return{width:t,height:n,top:i,left:r}}return!t&&"u">typeof OffscreenCanvas&&e instanceof OffscreenCanvas?{width:e.width,height:e.height,top:0,left:0}:{width:0,height:0,top:0,left:0,...t}}(e,l);if(cv.equ(N,E.size,c7)||E.setSize(N.width,N.height,N.top,N.left),b&&E.viewport.dpr!==cm(b)&&E.setDpr(b),E.frameloop!==x&&E.setFrameloop(x),E.onPointerMissed||E.set({onPointerMissed:w}),S&&!cv.equ(S,E.performance,c7)&&E.set(e=>({performance:{...e.performance,...S}})),!E.xr){let e=(e,t)=>{let n=f.getState();"never"!==n.frameloop&&hf(e,!0,n,t)},t=()=>{let t=f.getState();t.gl.xr.enabled=t.gl.xr.isPresenting,t.gl.xr.setAnimationLoop(t.gl.xr.isPresenting?e:null),t.gl.xr.isPresenting||hp(t)},i={connect(){let e=f.getState().gl;e.xr.addEventListener("sessionstart",t),e.xr.addEventListener("sessionend",t)},disconnect(){let e=f.getState().gl;e.xr.removeEventListener("sessionstart",t),e.xr.removeEventListener("sessionend",t)}};"function"==typeof(null==(n=A.xr)?void 0:n.addEventListener)&&i.connect(),E.set({xr:i})}if(A.shadowMap){let e=A.shadowMap.enabled,t=A.shadowMap.type;A.shadowMap.enabled=!!d,cv.boo(d)?A.shadowMap.type=2:cv.str(d)?A.shadowMap.type=null!=(a=({basic:0,percentage:1,soft:2,variance:3})[d])?a:2:cv.obj(d)&&Object.assign(A.shadowMap,d),(e!==A.shadowMap.enabled||t!==A.shadowMap.type)&&(A.shadowMap.needsUpdate=!0)}return eu.enabled=!_,g||(A.outputColorSpace=p?L:I,A.toneMapping=4*!m),E.legacy!==_&&E.set(()=>({legacy:_})),E.linear!==p&&E.set(()=>({linear:p})),E.flat!==m&&E.set(()=>({flat:m})),!o||cv.fun(o)||cU(o)||cv.equ(o,A,c7)||cC(A,o),i=h,g=!0,s(),this},render(t){return g||v||this.configure(),v.then(()=>{c8.updateContainer((0,u9.jsx)(ht,{store:f,children:t,onCreated:i,rootElement:e}),m,null,()=>void 0)}),f},unmount(){hn(e)}}}function ht({store:e,children:t,onCreated:n,rootElement:i}){return cc(()=>{let t=e.getState();t.set(e=>({internal:{...e.internal,active:!0}})),n&&n(t),e.getState().events.connected||null==t.events.connect||t.events.connect(i)},[]),(0,u9.jsx)(cD.Provider,{value:e,children:t})}function hn(e,t){let n=c9.get(e),i=null==n?void 0:n.fiber;if(i){let r=null==n?void 0:n.store.getState();r&&(r.internal.active=!1),c8.updateContainer(null,i,null,()=>{r&&setTimeout(()=>{try{null==r.events.disconnect||r.events.disconnect(),null==(n=r.gl)||null==(i=n.renderLists)||null==i.dispose||i.dispose(),null==(a=r.gl)||null==a.forceContextLoss||a.forceContextLoss(),null!=(s=r.gl)&&s.xr&&r.xr.disconnect();var n,i,a,s,o=r.scene;for(let e in"Scene"!==o.type&&(null==o.dispose||o.dispose()),o){let t=o[e];(null==t?void 0:t.type)!=="Scene"&&(null==t||null==t.dispose||t.dispose())}c9.delete(e),t&&t(e)}catch(e){}},500)})}}function hi({state:e={},children:t,container:n}){let{events:i,size:r,...a}=e,s=cO(),[o]=E.useState(()=>new s3),[l]=E.useState(()=>new Y),u=ch((e,t)=>{let a;if(t.camera&&r){let n=t.camera;a=e.viewport.getCurrentViewport(n,new eE,r),n!==e.camera&&cP(n,r)}return{...e,...t,scene:n,raycaster:o,pointer:l,mouse:l,previousRoot:s,events:{...e.events,...t.events,...i},size:{...e.size,...r},viewport:{...e.viewport,...a},setEvents:e=>t.set(t=>({...t,events:{...t.events,...e}}))}}),c=E.useMemo(()=>{let e=u3((e,t)=>({...a,set:e,get:t})),t=t=>e.setState(e=>u.current(t,e));return t(s.getState()),s.subscribe(t),e},[s,n]);return(0,u9.jsx)(u9.Fragment,{children:c8.createPortal((0,u9.jsx)(cD.Provider,{value:c,children:t}),c,null)})}let hr=new Set,ha=new Set,hs=new Set;function ho(e,t){if(e.size)for(let{callback:n}of e.values())n(t)}function hl(e,t){switch(e){case"before":return ho(hr,t);case"after":return ho(ha,t);case"tail":return ho(hs,t)}}function hu(e,t,n){let i=t.clock.getDelta();"never"===t.frameloop&&"number"==typeof e&&(i=e-t.clock.elapsedTime,t.clock.oldTime=t.clock.elapsedTime,t.clock.elapsedTime=e),s=t.internal.subscribers;for(let e=0;e0)&&!(null!=(t=c.gl.xr)&&t.isPresenting)&&(l+=hu(e,c))}if(hh=!1,hl("after",e),0===l)return hl("tail",e),hc=!1,cancelAnimationFrame(u)}function hp(e,t=1){var n;if(!e)return c9.forEach(e=>hp(e.store.getState(),t));(null==(n=e.gl.xr)||!n.isPresenting)&&e.internal.active&&"never"!==e.frameloop&&(t>1?e.internal.frames=Math.min(60,e.internal.frames+t):hh?e.internal.frames=2:e.internal.frames=1,hc||(hc=!0,requestAnimationFrame(hd)))}function hf(e,t=!0,n,i){if(t&&hl("before",e),n)hu(e,n,i);else for(let t of c9.values())hu(e,t.store.getState());t&&hl("after",e)}let hm={onClick:["click",!1],onContextMenu:["contextmenu",!1],onDoubleClick:["dblclick",!1],onWheel:["wheel",!0],onPointerDown:["pointerdown",!0],onPointerUp:["pointerup",!0],onPointerLeave:["pointerleave",!0],onPointerMove:["pointermove",!0],onPointerCancel:["pointercancel",!0],onLostPointerCapture:["lostpointercapture",!0]};function hg(e){let{handlePointer:t}=function(e){function t(e){return e.filter(e=>["Move","Over","Enter","Out","Leave"].some(t=>{var n;return null==(n=e.__r3f)?void 0:n.handlers["onPointer"+t]}))}function n(t){let{internal:n}=e.getState();for(let e of n.hovered.values())if(!t.length||!t.find(t=>t.object===e.object&&t.index===e.index&&t.instanceId===e.instanceId)){let i=e.eventObject.__r3f;if(n.hovered.delete(cL(e)),null!=i&&i.eventCount){let n=i.handlers,r={...e,intersections:t};null==n.onPointerOut||n.onPointerOut(r),null==n.onPointerLeave||n.onPointerLeave(r)}}}function i(e,t){for(let n=0;nn([]);case"onLostPointerCapture":return t=>{let{internal:i}=e.getState();"pointerId"in t&&i.capturedMap.has(t.pointerId)&&requestAnimationFrame(()=>{i.capturedMap.has(t.pointerId)&&(i.capturedMap.delete(t.pointerId),n([]))})}}return function(a){let{onPointerMissed:s,internal:o}=e.getState();o.lastEvent.current=a;let l="onPointerMove"===r,u="onClick"===r||"onContextMenu"===r||"onDoubleClick"===r,c=function(t,n){let i=e.getState(),r=new Set,a=[],s=n?n(i.internal.interaction):i.internal.interaction;for(let e=0;e{let n=cg(e.object),i=cg(t.object);return n&&i&&i.events.priority-n.events.priority||e.distance-t.distance}).filter(e=>{let t=cL(e);return!r.has(t)&&(r.add(t),!0)});for(let e of(i.events.filter&&(o=i.events.filter(o,i)),o)){let t=e.object;for(;t;){var l;null!=(l=t.__r3f)&&l.eventCount&&a.push({...e,eventObject:t}),t=t.parent}}if("pointerId"in t&&i.internal.capturedMap.has(t.pointerId))for(let e of i.internal.capturedMap.get(t.pointerId).values())r.has(cL(e.intersection))||a.push(e.intersection);return a}(a,l?t:void 0),h=u?function(t){let{internal:n}=e.getState(),i=t.offsetX-n.initialClick[0],r=t.offsetY-n.initialClick[1];return Math.round(Math.sqrt(i*i+r*r))}(a):0;"onPointerDown"===r&&(o.initialClick=[a.offsetX,a.offsetY],o.initialHits=c.map(e=>e.eventObject)),u&&!c.length&&h<=2&&(i(a,o.interaction),s&&s(a)),l&&n(c),!function(e,t,i,r){if(e.length){let a={stopped:!1};for(let s of e){let o=cg(s.object);if(o||s.object.traverseAncestors(e=>{let t=cg(e);if(t)return o=t,!1}),o){let{raycaster:l,pointer:u,camera:c,internal:h}=o,d=new eE(u.x,u.y,0).unproject(c),p=e=>{var t,n;return null!=(t=null==(n=h.capturedMap.get(e))?void 0:n.has(s.eventObject))&&t},f=e=>{let n={intersection:s,target:t.target};h.capturedMap.has(e)?h.capturedMap.get(e).set(s.eventObject,n):h.capturedMap.set(e,new Map([[s.eventObject,n]])),t.target.setPointerCapture(e)},m=e=>{let t=h.capturedMap.get(e);t&&cN(h.capturedMap,s.eventObject,t,e)},g={};for(let e in t){let n=t[e];"function"!=typeof n&&(g[e]=n)}let v={...s,...g,pointer:u,intersections:e,stopped:a.stopped,delta:i,unprojectedPoint:d,ray:l.ray,camera:c,stopPropagation(){let i="pointerId"in t&&h.capturedMap.get(t.pointerId);(!i||i.has(s.eventObject))&&(v.stopped=a.stopped=!0,h.hovered.size&&Array.from(h.hovered.values()).find(e=>e.eventObject===s.eventObject)&&n([...e.slice(0,e.indexOf(s)),s]))},target:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},currentTarget:{hasPointerCapture:p,setPointerCapture:f,releasePointerCapture:m},nativeEvent:t};if(r(v),!0===a.stopped)break}}}}(c,a,h,function(e){let t=e.eventObject,n=t.__r3f;if(!(null!=n&&n.eventCount))return;let s=n.handlers;if(l){if(s.onPointerOver||s.onPointerEnter||s.onPointerOut||s.onPointerLeave){let t=cL(e),n=o.hovered.get(t);n?n.stopped&&e.stopPropagation():(o.hovered.set(t,e),null==s.onPointerOver||s.onPointerOver(e),null==s.onPointerEnter||s.onPointerEnter(e))}null==s.onPointerMove||s.onPointerMove(e)}else{let n=s[r];n?(!u||o.initialHits.includes(t))&&(i(a,o.interaction.filter(e=>!o.initialHits.includes(e))),n(e)):u&&o.initialHits.includes(t)&&i(a,o.interaction.filter(e=>!o.initialHits.includes(e)))}})}}}}(e);return{priority:1,enabled:!0,compute(e,t,n){t.pointer.set(e.offsetX/t.size.width*2-1,-(2*(e.offsetY/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)},connected:void 0,handlers:Object.keys(hm).reduce((e,n)=>({...e,[n]:t(n)}),{}),update:()=>{var t;let{events:n,internal:i}=e.getState();null!=(t=i.lastEvent)&&t.current&&n.handlers&&n.handlers.onPointerMove(i.lastEvent.current)},connect:t=>{let{set:n,events:i}=e.getState();if(null==i.disconnect||i.disconnect(),n(e=>({events:{...e.events,connected:t}})),i.handlers)for(let e in i.handlers){let n=i.handlers[e],[r,a]=hm[e];t.addEventListener(r,n,{passive:a})}},disconnect:()=>{let{set:t,events:n}=e.getState();if(n.connected){if(n.handlers)for(let e in n.handlers){let t=n.handlers[e],[i]=hm[e];n.connected.removeEventListener(i,t)}t(e=>({events:{...e.events,connected:void 0}}))}}}}e.s(["B",0,cp,"C",0,cF,"D",0,cz,"E",0,cf,"G",0,cH,"a",0,ch,"b",0,cc,"c",0,he,"d",0,hn,"e",0,cZ,"f",0,hg,"i",0,cl,"o",0,function(e,t,n){return(0,u9.jsx)(hi,{children:e,container:t,state:n})},"s",0,cC,"u",0,cd],1950),e.i(8560),e.s(["ACESFilmicToneMapping",0,4,"AddEquation",0,100,"AddOperation",0,2,"AdditiveAnimationBlendMode",0,2501,"AdditiveBlending",0,2,"AgXToneMapping",0,6,"AlphaFormat",0,1021,"AlwaysCompare",0,519,"AlwaysDepth",0,1,"AlwaysStencilFunc",0,519,"AmbientLight",0,sa,"AnimationAction",0,sY,"AnimationClip",0,aB,"AnimationLoader",0,aq,"AnimationMixer",0,sJ,"AnimationObjectGroup",0,sq,"AnimationUtils",0,aE,"ArcCurve",0,rs,"ArrayCamera",0,sT,"ArrowHelper",0,oP,"AttachedBindMode",0,R,"Audio",0,sL,"AudioAnalyser",0,sz,"AudioContext",0,s_,"AudioListener",0,sI,"AudioLoader",0,sy,"AxesHelper",0,oI,"BackSide",0,1,"BasicDepthPacking",0,3200,"BasicShadowMap",0,0,"BatchedMesh",0,iz,"Bone",0,ie,"BooleanKeyframeTrack",0,aL,"Box2",0,oe,"Box3",0,eR,"Box3Helper",0,oA,"BoxGeometry",0,ng,"BoxHelper",0,oE,"BufferAttribute",0,tZ,"BufferGeometry",0,nn,"BufferGeometryLoader",0,sd,"ByteType",0,1010,"Cache",0,ak,"Camera",0,nS,"CameraHelper",0,oM,"CanvasTexture",0,rn,"CapsuleGeometry",0,rA,"CatmullRomCurve3",0,rd,"CineonToneMapping",0,3,"CircleGeometry",0,rC,"ClampToEdgeWrapping",0,1001,"Clock",0,sw,"Color",0,tz,"ColorKeyframeTrack",0,aN,"ColorManagement",0,eu,"CompressedArrayTexture",0,re,"CompressedCubeTexture",0,rt,"CompressedTexture",0,i7,"CompressedTextureLoader",0,aY,"ConeGeometry",0,rP,"ConstantAlphaFactor",0,213,"ConstantColorFactor",0,211,"Controls",0,oN,"CubeCamera",0,nA,"CubeReflectionMapping",0,301,"CubeRefractionMapping",0,302,"CubeTexture",0,nC,"CubeTextureLoader",0,aJ,"CubeUVReflectionMapping",0,306,"CubicBezierCurve",0,rg,"CubicBezierCurve3",0,rv,"CubicInterpolant",0,aC,"CullFaceBack",0,1,"CullFaceFront",0,2,"CullFaceFrontBack",0,3,"CullFaceNone",0,0,"Curve",0,rr,"CurvePath",0,rT,"CustomBlending",0,5,"CustomToneMapping",0,5,"CylinderGeometry",0,rR,"Cylindrical",0,s8,"Data3DTexture",0,eM,"DataArrayTexture",0,eb,"DataTexture",0,it,"DataTextureLoader",0,aK,"DataUtils",0,tX,"DecrementStencilOp",0,7683,"DecrementWrapStencilOp",0,34056,"DefaultLoadingManager",0,aV,"DepthFormat",0,1026,"DepthStencilFormat",0,1027,"DepthTexture",0,ri,"DetachedBindMode",0,P,"DirectionalLight",0,sr,"DirectionalLightHelper",0,ox,"DiscreteInterpolant",0,aP,"DodecahedronGeometry",0,rL,"DoubleSide",0,2,"DstAlphaFactor",0,206,"DstColorFactor",0,208,"DynamicCopyUsage",0,35050,"DynamicDrawUsage",0,35048,"DynamicReadUsage",0,35049,"EdgesGeometry",0,rF,"EllipseCurve",0,ra,"EqualCompare",0,514,"EqualDepth",0,4,"EqualStencilFunc",0,514,"EquirectangularReflectionMapping",0,303,"EquirectangularRefractionMapping",0,304,"Euler",0,tn,"EventDispatcher",0,O,"ExtrudeGeometry",0,r4,"FileLoader",0,aX,"Float16BufferAttribute",0,t3,"Float32BufferAttribute",0,t4,"FloatType",0,1015,"Fog",0,nI,"FogExp2",0,nP,"FramebufferTexture",0,i9,"FrontSide",0,0,"Frustum",0,iS,"GLBufferAttribute",0,s1,"GLSL1",0,"100","GLSL3",0,D,"GreaterCompare",0,516,"GreaterDepth",0,6,"GreaterEqualCompare",0,518,"GreaterEqualDepth",0,5,"GreaterEqualStencilFunc",0,518,"GreaterStencilFunc",0,516,"GridHelper",0,om,"Group",0,i6,"HalfFloatType",0,1016,"HemisphereLight",0,a0,"HemisphereLightHelper",0,of,"IcosahedronGeometry",0,r6,"ImageBitmapLoader",0,sv,"ImageLoader",0,aZ,"ImageUtils",0,ed,"IncrementStencilOp",0,7682,"IncrementWrapStencilOp",0,34055,"InstancedBufferAttribute",0,is,"InstancedBufferGeometry",0,sh,"InstancedInterleavedBuffer",0,s0,"InstancedMesh",0,im,"Int16BufferAttribute",0,tQ,"Int32BufferAttribute",0,t1,"Int8BufferAttribute",0,tJ,"IntType",0,1013,"InterleavedBuffer",0,nN,"InterleavedBufferAttribute",0,nD,"Interpolant",0,aA,"InterpolateDiscrete",0,2300,"InterpolateLinear",0,2301,"InterpolateSmooth",0,2302,"InvertStencilOp",0,5386,"KeepStencilOp",0,7680,"KeyframeTrack",0,aI,"LOD",0,nQ,"LatheGeometry",0,rE,"Layers",0,ti,"LessCompare",0,513,"LessDepth",0,2,"LessEqualCompare",0,515,"LessEqualDepth",0,3,"LessEqualStencilFunc",0,515,"LessStencilFunc",0,513,"Light",0,aQ,"LightProbe",0,sl,"Line",0,iq,"Line3",0,oi,"LineBasicMaterial",0,iB,"LineCurve",0,r_,"LineCurve3",0,ry,"LineDashedMaterial",0,ax,"LineLoop",0,i$,"LineSegments",0,iK,"LinearFilter",0,1006,"LinearInterpolant",0,aR,"LinearMipMapLinearFilter",0,1008,"LinearMipMapNearestFilter",0,1007,"LinearMipmapLinearFilter",0,1008,"LinearMipmapNearestFilter",0,1007,"LinearSRGBColorSpace",0,L,"LinearToneMapping",0,1,"LinearTransfer",0,N,"Loader",0,aG,"LoaderUtils",0,sc,"LoadingManager",0,aH,"LoopOnce",0,2200,"LoopPingPong",0,2202,"LoopRepeat",0,2201,"LuminanceAlphaFormat",0,1025,"LuminanceFormat",0,1024,"MOUSE",0,A,"Material",0,tH,"MaterialLoader",0,su,"MathUtils",0,q,"Matrix2",0,s9,"Matrix3",0,Z,"Matrix4",0,e2,"MaxEquation",0,104,"Mesh",0,nf,"MeshBasicMaterial",0,tV,"MeshDepthMaterial",0,av,"MeshDistanceMaterial",0,a_,"MeshLambertMaterial",0,ag,"MeshMatcapMaterial",0,ay,"MeshNormalMaterial",0,am,"MeshPhongMaterial",0,ap,"MeshPhysicalMaterial",0,ad,"MeshStandardMaterial",0,ah,"MeshToonMaterial",0,af,"MinEquation",0,103,"MirroredRepeatWrapping",0,1002,"MixOperation",0,1,"MultiplyBlending",0,4,"MultiplyOperation",0,0,"NearestFilter",0,1003,"NearestMipMapLinearFilter",0,1005,"NearestMipMapNearestFilter",0,1004,"NearestMipmapLinearFilter",0,1005,"NearestMipmapNearestFilter",0,1004,"NeutralToneMapping",0,7,"NeverCompare",0,512,"NeverDepth",0,0,"NeverStencilFunc",0,512,"NoBlending",0,0,"NoColorSpace",0,"","NoToneMapping",0,0,"NormalAnimationBlendMode",0,2500,"NormalBlending",0,1,"NotEqualCompare",0,517,"NotEqualDepth",0,7,"NotEqualStencilFunc",0,517,"NumberKeyframeTrack",0,aU,"Object3D",0,ty,"ObjectLoader",0,sp,"ObjectSpaceNormalMap",0,1,"OctahedronGeometry",0,r8,"OneFactor",0,201,"OneMinusConstantAlphaFactor",0,214,"OneMinusConstantColorFactor",0,212,"OneMinusDstAlphaFactor",0,207,"OneMinusDstColorFactor",0,209,"OneMinusSrcAlphaFactor",0,205,"OneMinusSrcColorFactor",0,203,"OrthographicCamera",0,sn,"PCFShadowMap",0,1,"PCFSoftShadowMap",0,2,"PMREMGenerator",0,o8,"Path",0,rw,"PerspectiveCamera",0,nE,"Plane",0,iy,"PlaneGeometry",0,r9,"PlaneHelper",0,oC,"PointLight",0,st,"PointLightHelper",0,oc,"Points",0,i4,"PointsMaterial",0,iQ,"PolarGridHelper",0,og,"PolyhedronGeometry",0,rI,"PositionalAudio",0,sF,"PropertyBinding",0,sX,"PropertyMixer",0,sB,"QuadraticBezierCurve",0,rx,"QuadraticBezierCurve3",0,rb,"Quaternion",0,ew,"QuaternionKeyframeTrack",0,aO,"QuaternionLinearInterpolant",0,aD,"RED_GREEN_RGTC2_Format",0,36285,"RED_RGTC1_Format",0,36283,"REVISION",0,"171","RGBADepthPacking",0,3201,"RGBAFormat",0,1023,"RGBAIntegerFormat",0,1033,"RGBA_ASTC_10x10_Format",0,37819,"RGBA_ASTC_10x5_Format",0,37816,"RGBA_ASTC_10x6_Format",0,37817,"RGBA_ASTC_10x8_Format",0,37818,"RGBA_ASTC_12x10_Format",0,37820,"RGBA_ASTC_12x12_Format",0,37821,"RGBA_ASTC_4x4_Format",0,37808,"RGBA_ASTC_5x4_Format",0,37809,"RGBA_ASTC_5x5_Format",0,37810,"RGBA_ASTC_6x5_Format",0,37811,"RGBA_ASTC_6x6_Format",0,37812,"RGBA_ASTC_8x5_Format",0,37813,"RGBA_ASTC_8x6_Format",0,37814,"RGBA_ASTC_8x8_Format",0,37815,"RGBA_BPTC_Format",0,36492,"RGBA_ETC2_EAC_Format",0,37496,"RGBA_PVRTC_2BPPV1_Format",0,35843,"RGBA_PVRTC_4BPPV1_Format",0,35842,"RGBA_S3TC_DXT1_Format",0,33777,"RGBA_S3TC_DXT3_Format",0,33778,"RGBA_S3TC_DXT5_Format",0,33779,"RGBDepthPacking",0,3202,"RGBFormat",0,1022,"RGBIntegerFormat",0,1032,"RGB_BPTC_SIGNED_Format",0,36494,"RGB_BPTC_UNSIGNED_Format",0,36495,"RGB_ETC1_Format",0,36196,"RGB_ETC2_Format",0,37492,"RGB_PVRTC_2BPPV1_Format",0,35841,"RGB_PVRTC_4BPPV1_Format",0,35840,"RGB_S3TC_DXT1_Format",0,33776,"RGDepthPacking",0,3203,"RGFormat",0,1030,"RGIntegerFormat",0,1031,"RawShaderMaterial",0,ac,"Ray",0,e1,"Raycaster",0,s3,"RectAreaLight",0,ss,"RedFormat",0,1028,"RedIntegerFormat",0,1029,"ReinhardToneMapping",0,2,"RenderTarget",0,ey,"RepeatWrapping",0,1e3,"ReplaceStencilOp",0,7681,"ReverseSubtractEquation",0,102,"RingGeometry",0,r7,"SIGNED_RED_GREEN_RGTC2_Format",0,36286,"SIGNED_RED_RGTC1_Format",0,36284,"SRGBColorSpace",0,I,"SRGBTransfer",0,U,"Scene",0,nL,"ShaderChunk",0,oB,"ShaderLib",0,oH,"ShaderMaterial",0,nb,"ShadowMaterial",0,au,"Shape",0,rz,"ShapeGeometry",0,ae,"ShapePath",0,oL,"ShapeUtils",0,r1,"ShortType",0,1011,"Skeleton",0,ia,"SkeletonHelper",0,ou,"SkinnedMesh",0,n7,"Source",0,ef,"Sphere",0,eq,"SphereGeometry",0,at,"Spherical",0,s6,"SphericalHarmonics3",0,so,"SplineCurve",0,rS,"SpotLight",0,a6,"SpotLightHelper",0,oa,"Sprite",0,nZ,"SpriteMaterial",0,nO,"SrcAlphaFactor",0,204,"SrcAlphaSaturateFactor",0,210,"SrcColorFactor",0,202,"StaticCopyUsage",0,35046,"StaticDrawUsage",0,35044,"StaticReadUsage",0,35045,"StereoCamera",0,sM,"StreamCopyUsage",0,35042,"StreamDrawUsage",0,35040,"StreamReadUsage",0,35041,"StringKeyframeTrack",0,aF,"SubtractEquation",0,101,"SubtractiveBlending",0,3,"TOUCH",0,C,"TangentSpaceNormalMap",0,0,"TetrahedronGeometry",0,an,"Texture",0,ev,"TextureLoader",0,a$,"TextureUtils",0,oD,"TorusGeometry",0,ai,"TorusKnotGeometry",0,ar,"Triangle",0,tN,"TriangleFanDrawMode",0,2,"TriangleStripDrawMode",0,1,"TrianglesDrawMode",0,0,"TubeGeometry",0,aa,"UVMapping",0,300,"Uint16BufferAttribute",0,t0,"Uint32BufferAttribute",0,t2,"Uint8BufferAttribute",0,tK,"Uint8ClampedBufferAttribute",0,t$,"Uniform",0,sK,"UniformsGroup",0,sQ,"UniformsLib",0,ok,"UniformsUtils",0,nx,"UnsignedByteType",0,1009,"UnsignedInt248Type",0,1020,"UnsignedInt5999Type",0,35902,"UnsignedIntType",0,1014,"UnsignedShort4444Type",0,1017,"UnsignedShort5551Type",0,1018,"UnsignedShortType",0,1012,"VSMShadowMap",0,3,"Vector2",0,Y,"Vector3",0,eE,"Vector4",0,e_,"VectorKeyframeTrack",0,az,"VideoTexture",0,i8,"WebGL3DRenderTarget",0,eT,"WebGLArrayRenderTarget",0,eS,"WebGLCoordinateSystem",0,2e3,"WebGLCubeRenderTarget",0,nR,"WebGLMultipleRenderTargets",0,oO,"WebGLRenderTarget",0,ex,"WebGLRenderer",0,uK,"WebGLUtils",0,uk,"WebGPUCoordinateSystem",0,2001,"WireframeGeometry",0,as,"WrapAroundEnding",0,2402,"ZeroCurvatureEnding",0,2400,"ZeroFactor",0,200,"ZeroSlopeEnding",0,2401,"ZeroStencilOp",0,0,"createCanvasElement",0,et],32009);var hv=e.i(32009);function h_(e,t){let n;return(...i)=>{window.clearTimeout(n),n=window.setTimeout(()=>e(...i),t)}}let hy=["x","y","top","bottom","left","right","width","height"];function hx({ref:e,children:t,fallback:n,resize:i,style:r,gl:a,events:s=hg,eventSource:o,eventPrefix:l,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,scene:y,onPointerMissed:x,onCreated:b,...S}){E.useMemo(()=>cZ(hv),[]);let M=cd(),[T,w]=function({debounce:e,scroll:t,polyfill:n,offsetSize:i}={debounce:0,scroll:!1,offsetSize:!1}){var r,a,s;let o=n||("u"(p.current=!0,()=>void(p.current=!1)));let[f,m,g]=(0,E.useMemo)(()=>{let e=()=>{let e,t;if(!c.current.element)return;let{left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d}=c.current.element.getBoundingClientRect(),f={left:n,top:r,width:a,height:s,bottom:o,right:l,x:h,y:d};c.current.element instanceof HTMLElement&&i&&(f.height=c.current.element.offsetHeight,f.width=c.current.element.offsetWidth),Object.freeze(f),p.current&&(e=c.current.lastBounds,t=f,!hy.every(n=>e[n]===t[n]))&&u(c.current.lastBounds=f)};return[e,d?h_(e,d):e,h?h_(e,h):e]},[u,i,h,d]);function v(){c.current.scrollContainers&&(c.current.scrollContainers.forEach(e=>e.removeEventListener("scroll",g,!0)),c.current.scrollContainers=null),c.current.resizeObserver&&(c.current.resizeObserver.disconnect(),c.current.resizeObserver=null),c.current.orientationHandler&&("orientation"in screen&&"removeEventListener"in screen.orientation?screen.orientation.removeEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.removeEventListener("orientationchange",c.current.orientationHandler))}function _(){c.current.element&&(c.current.resizeObserver=new o(g),c.current.resizeObserver.observe(c.current.element),t&&c.current.scrollContainers&&c.current.scrollContainers.forEach(e=>e.addEventListener("scroll",g,{capture:!0,passive:!0})),c.current.orientationHandler=()=>{g()},"orientation"in screen&&"addEventListener"in screen.orientation?screen.orientation.addEventListener("change",c.current.orientationHandler):"onorientationchange"in window&&window.addEventListener("orientationchange",c.current.orientationHandler))}return r=g,a=!!t,(0,E.useEffect)(()=>{if(a)return window.addEventListener("scroll",r,{capture:!0,passive:!0}),()=>void window.removeEventListener("scroll",r,!0)},[r,a]),s=m,(0,E.useEffect)(()=>(window.addEventListener("resize",s),()=>void window.removeEventListener("resize",s)),[s]),(0,E.useEffect)(()=>{v(),_()},[t,g,m]),(0,E.useEffect)(()=>v,[]),[e=>{e&&e!==c.current.element&&(v(),c.current.element=e,c.current.scrollContainers=function e(t){let n=[];if(!t||t===document.body)return n;let{overflow:i,overflowX:r,overflowY:a}=window.getComputedStyle(t);return[i,r,a].some(e=>"auto"===e||"scroll"===e)&&n.push(t),[...n,...e(t.parentElement)]}(e),_())},l,f]}({scroll:!0,debounce:{scroll:50,resize:0},...i}),A=E.useRef(null),C=E.useRef(null);E.useImperativeHandle(e,()=>A.current);let R=ch(x),[P,I]=E.useState(!1),[L,N]=E.useState(!1);if(P)throw P;if(L)throw L;let U=E.useRef(null);cc(()=>{let e=A.current;w.width>0&&w.height>0&&e&&(U.current||(U.current=he(e)),async function(){await U.current.configure({gl:a,scene:y,events:s,shadows:u,linear:c,flat:h,legacy:d,orthographic:p,frameloop:f,dpr:m,performance:g,raycaster:v,camera:_,size:w,onPointerMissed:(...e)=>null==R.current?void 0:R.current(...e),onCreated:e=>{null==e.events.connect||e.events.connect(o?cl(o)?o.current:o:C.current),l&&e.setEvents({compute:(e,t)=>{let n=e[l+"X"],i=e[l+"Y"];t.pointer.set(n/t.size.width*2-1,-(2*(i/t.size.height))+1),t.raycaster.setFromCamera(t.pointer,t.camera)}}),null==b||b(e)}}),U.current.render((0,u9.jsx)(M,{children:(0,u9.jsx)(cf,{set:N,children:(0,u9.jsx)(E.Suspense,{fallback:(0,u9.jsx)(cp,{set:I}),children:null!=t?t:null})})}))}())}),E.useEffect(()=>{let e=A.current;if(e)return()=>hn(e)},[]);let D=o?"none":"auto";return(0,u9.jsx)("div",{ref:C,style:{position:"relative",width:"100%",height:"100%",overflow:"hidden",pointerEvents:D,...r},...S,children:(0,u9.jsx)("div",{ref:T,style:{width:"100%",height:"100%"},children:(0,u9.jsx)("canvas",{ref:A,style:{display:"block"},children:n})})})}e.s(["Canvas",0,function(e){return(0,u9.jsx)(ci,{children:(0,u9.jsx)(hx,{...e})})}],75056),e.s(["useFrame",0,cz],25234),e.s(["useThree",0,cF],28600)},44208,e=>{"use strict";var t=e.i(1950);e.s(["createPortal",()=>t.o])},24205,e=>{"use strict";var t=e.i(1950);e.s(["applyProps",()=>t.s])},67335,e=>{"use strict";var t=e.i(1950);e.s(["extend",()=>t.e])},60602,e=>{"use strict";var t=e.i(1950);e.s(["useLoader",()=>t.G])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0t48hzs_6fshe.css b/.next/static/chunks/0t48hzs_6fshe.css similarity index 100% rename from build/_next/static/chunks/0t48hzs_6fshe.css rename to .next/static/chunks/0t48hzs_6fshe.css diff --git a/build/_next/static/chunks/0tldj~reb5~dn.js b/.next/static/chunks/0tldj~reb5~dn.js similarity index 100% rename from build/_next/static/chunks/0tldj~reb5~dn.js rename to .next/static/chunks/0tldj~reb5~dn.js diff --git a/build/_next/static/chunks/0v290txaarww5.css b/.next/static/chunks/0v290txaarww5.css similarity index 100% rename from build/_next/static/chunks/0v290txaarww5.css rename to .next/static/chunks/0v290txaarww5.css diff --git a/build/_next/static/chunks/07eq5is00w7sy.js b/.next/static/chunks/0vi1igu-zxb_c.js similarity index 87% rename from build/_next/static/chunks/07eq5is00w7sy.js rename to .next/static/chunks/0vi1igu-zxb_c.js index 9415780..d43eaea 100644 --- a/build/_next/static/chunks/07eq5is00w7sy.js +++ b/.next/static/chunks/0vi1igu-zxb_c.js @@ -1,4 +1,4 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,5074,e=>{"use strict";var t=e.i(43476),a=e.i(71645);let n=[[[.04,.2],[.1,.12],[.18,.1],[.24,.13],[.29,.12],[.3,.18],[.27,.22],[.26,.28],[.22,.3],[.2,.38],[.17,.44],[.15,.4],[.16,.32],[.12,.3],[.09,.26],[.06,.24]],[[.21,.5],[.27,.48],[.31,.52],[.31,.6],[.29,.66],[.27,.74],[.24,.82],[.22,.8],[.22,.7],[.205,.62],[.2,.55]],[[.45,.16],[.5,.13],[.55,.15],[.57,.19],[.55,.24],[.5,.27],[.47,.25],[.455,.2]],[[.46,.34],[.53,.32],[.58,.36],[.585,.44],[.56,.52],[.53,.6],[.5,.66],[.47,.62],[.46,.52],[.45,.44],[.45,.38]],[[.56,.14],[.64,.1],[.74,.1],[.84,.14],[.9,.2],[.92,.26],[.86,.3],[.8,.3],[.74,.34],[.7,.34],[.66,.3],[.6,.3],[.575,.24],[.565,.18]],[[.81,.66],[.87,.64],[.92,.68],[.92,.74],[.86,.77],[.81,.74],[.8,.7]]],i=[[.115,.3],[.265,.255],[.285,.66],[.475,.185],[.605,.345],[.655,.4],[.745,.5],[.815,.275],[.865,.715]],r=[[0,1],[1,3],[3,4],[4,5],[5,6],[6,7],[7,8],[1,2],[3,7],[0,7]];e.s(["default",0,function({accent:e="#ef4444"}){let o=(0,a.useRef)(null);return(0,a.useEffect)(()=>{let[t,a,d]=function(e){let t=/^#?([0-9a-f]{6})$/i.exec(e.trim());if(!t)return[239,68,68];let a=parseInt(t[1],16);return[a>>16&255,a>>8&255,255&a]}(e),s=e=>`rgba(${t},${a},${d},${e})`,l=`rgb(${t},${a},${d})`,p=o.current,c=p?.parentElement;if(!p||!c)return;let m=p.getContext("2d");if(!m)return;let h=window.matchMedia?.("(prefers-reduced-motion: reduce)").matches,g=0,x=0,v=[],f=0,_=0,b=()=>{let e=c.getBoundingClientRect();g=Math.max(1,e.width),x=Math.max(1,e.height);let t=Math.min(window.devicePixelRatio||1,2);p.width=Math.round(g*t),p.height=Math.round(x*t),p.style.width=g+"px",p.style.height=x+"px",m.setTransform(t,0,0,t,0,0),(()=>{v=[];let e=Math.max(11,Math.min(17,g/70));for(let t=e/2;tt!=l>t&&e<(s-o)*(t-d)/(l-d)+o&&(n=!n)}return n}(e,i,r)){v.push({x:t,y:a});break}}})()},u=(e,t)=>({x:(e.x+t.x)/2,y:(e.y+t.y)/2-.28*Math.hypot(t.x-e.x,t.y-e.y)}),w=(e,t,a,n)=>{let i=1-n;return{x:i*i*e.x+2*i*n*t.x+n*n*a.x,y:i*i*e.y+2*i*n*t.y+n*n*a.y}},y=e=>{for(let e of(m.clearRect(0,0,g,x),m.fillStyle="rgba(120,122,130,0.55)",v))m.beginPath(),m.arc(e.x,e.y,1.15,0,2*Math.PI),m.fill();let t=i.map(([e,t])=>({x:e*g,y:t*x}));for(let[e,a]of(m.save(),m.setLineDash([4,7]),m.lineWidth=1,m.strokeStyle=s(.13),r)){let n=u(t[e],t[a]);m.beginPath(),m.moveTo(t[e].x,t[e].y),m.quadraticCurveTo(n.x,n.y,t[a].x,t[a].y),m.stroke()}m.restore(),m.save();for(let a=0;a{_||(_=e),y((e-_)/1e3),f=requestAnimationFrame(k)};b(),h?y(0):f=requestAnimationFrame(k);let j=new ResizeObserver(()=>{b(),h&&y(0)});return j.observe(c),()=>{cancelAnimationFrame(f),j.disconnect()}},[e]),(0,t.jsx)("canvas",{ref:o,className:"ind__map","aria-hidden":"true"})}])},14224,e=>{"use strict";var t=e.i(43476),a=e.i(71645),n=e.i(89970),i=e.i(83495),r=e.i(5074);n.default.registerPlugin(i.ScrollTrigger);let o=[{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#f59e0b",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})}),title:"Battery-Aware Routing",desc:"Battery level, health, and degradation are first-class inputs to route optimization — not afterthoughts."},{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#94a3b8",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("path",{d:"M18 10h-1.28A6 6 0 0 0 12 5V3M12 5V3M6 10h1.28A6 6 0 0 0 12 5M12 18v2M12 18v2M8 10v6a4 4 0 0 0 8 0v-6"})}),title:"Charging Integration",desc:"Seamlessly integrate charging stops without compromising delivery windows or SLA commitments."},{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#ef4444",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"})}),title:"Energy-Optimized Paths",desc:"Factor in elevation, speed limits, payload weight, and live weather for maximum range efficiency."},{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#ef4444",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"})}),title:"Predictable Operations",desc:"EVs become predictable assets, not operational risks. Full visibility from depot to doorstep."}],d=[{value:"100%",label:"ELECTRIC FLEET"},{value:"-40%",label:"COST / MILE"}],s=[{value:99.9,decimals:1,suffix:"%",label:"SLA Compliance"},{value:42,suffix:"%",label:"Distance Saved"},{value:37,suffix:"%",label:"Fewer Vehicles"},{value:45,suffix:"ms",label:"Dispatch Latency"}];function l({value:e,decimals:n=0,suffix:i="",duration:r=1700,className:o}){let[d,s]=(0,a.useState)(0),p=(0,a.useRef)(null),c=(0,a.useRef)(!1);return(0,a.useEffect)(()=>{let t=p.current;if(!t)return;if(window.matchMedia?.("(prefers-reduced-motion: reduce)").matches)return void requestAnimationFrame(()=>s(e));let a=new IntersectionObserver(t=>{for(let n of t)if(n.isIntersecting&&!c.current){c.current=!0;let t=performance.now(),n=e=>1-Math.pow(1-e,3),i=a=>{let o=Math.min(1,(a-t)/r);s(e*n(o)),o<1?requestAnimationFrame(i):s(e)};requestAnimationFrame(i),a.disconnect()}},{threshold:.2});return a.observe(t),()=>a.disconnect()},[e,r]),(0,t.jsxs)("b",{ref:p,className:o,children:[d.toFixed(n),i]})}function p({accent:e}){return(0,t.jsx)("div",{className:"evnd__map","aria-hidden":"true",children:(0,t.jsx)(r.default,{accent:e})})}function c({metrics:e,features:a,heading:n,theme:i}){let r=i?{"--ca":i.accent,"--ca2":i.accent2,"--cg":i.glow}:void 0;return(0,t.jsxs)("div",{className:"evnd__dash",style:r,children:[n&&(0,t.jsxs)("div",{className:"evnd__dash-head",children:[(0,t.jsxs)("span",{className:"evnd__dash-live",children:[(0,t.jsx)("span",{className:"evnd__dash-livedot"}),n]}),(0,t.jsx)("span",{className:"evnd__dash-sys",children:"AI ENGINE"})]}),(0,t.jsx)("div",{className:"evnd__dash-kpis",children:e.map(e=>(0,t.jsxs)("div",{className:"evnd__kpi",children:[(0,t.jsx)(l,{value:e.value,decimals:e.decimals,suffix:e.suffix,className:"evnd__kpi-val"}),(0,t.jsx)("span",{className:"evnd__kpi-label",children:e.label})]},e.label))}),(0,t.jsx)("div",{className:"evnd__dash-feats",children:a.map(e=>(0,t.jsxs)("div",{className:"evnd__dfeat",children:[(0,t.jsx)("span",{className:"evnd__dfeat-ico","aria-hidden":"true",children:e.icon}),(0,t.jsxs)("div",{className:"evnd__dfeat-body",children:[(0,t.jsx)("span",{className:"evnd__dfeat-title",children:e.title}),(0,t.jsx)("p",{className:"evnd__dfeat-desc",children:e.desc})]})]},e.title))})]})}e.s(["default",0,function({bannerImage:e="/images/bg-header-5.webp",cardNumber:r="",cardTitle:m="EV Logistics",cardSubtitle:h="Cleaner miles, lower costs",eyebrow:g="/ EV-Native Design /",titleLead:x="BUILT FOR ELECTRIC. ",titleAccent:v="NOT ADAPTED.",features:f=o,image:_="/images/premium-ev-van.webp",imageAlt:b="DoorMile electric delivery van",badges:u=d,stats:w=s,gapTop:y=!1,gapBottom:k=!1,ariaLabel:j,mediaSlot:N,metrics:z,cardsHeading:T,cardsTheme:I}){let M=(0,a.useRef)(null),P=!!z&&z.length>0,E=P&&I?{"--ca":I.accent,"--ca2":I.accent2,"--cg":I.glow}:void 0;(0,a.useEffect)(()=>{let e=M.current;if(!e)return;let t=i.ScrollTrigger.create({trigger:e,start:"top bottom",end:"bottom top",scrub:!0,onUpdate:()=>{if(window.innerWidth>=1021){let t=window.scrollY,a=e.getBoundingClientRect().top+t;n.default.set(e,{backgroundPosition:`center ${.3*(t-a)}px`})}else n.default.set(e,{backgroundPosition:""})}});return()=>t?.kill()},[]);let S="elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent"+(P?" evnd-workflow-shell":"")+(y?" evnd-gap-top":"")+(k?" evnd-gap-bottom":"");return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,5074,e=>{"use strict";var t=e.i(43476),a=e.i(71645);let n=[[[.04,.2],[.1,.12],[.18,.1],[.24,.13],[.29,.12],[.3,.18],[.27,.22],[.26,.28],[.22,.3],[.2,.38],[.17,.44],[.15,.4],[.16,.32],[.12,.3],[.09,.26],[.06,.24]],[[.21,.5],[.27,.48],[.31,.52],[.31,.6],[.29,.66],[.27,.74],[.24,.82],[.22,.8],[.22,.7],[.205,.62],[.2,.55]],[[.45,.16],[.5,.13],[.55,.15],[.57,.19],[.55,.24],[.5,.27],[.47,.25],[.455,.2]],[[.46,.34],[.53,.32],[.58,.36],[.585,.44],[.56,.52],[.53,.6],[.5,.66],[.47,.62],[.46,.52],[.45,.44],[.45,.38]],[[.56,.14],[.64,.1],[.74,.1],[.84,.14],[.9,.2],[.92,.26],[.86,.3],[.8,.3],[.74,.34],[.7,.34],[.66,.3],[.6,.3],[.575,.24],[.565,.18]],[[.81,.66],[.87,.64],[.92,.68],[.92,.74],[.86,.77],[.81,.74],[.8,.7]]],i=[[.115,.3],[.265,.255],[.285,.66],[.475,.185],[.605,.345],[.655,.4],[.745,.5],[.815,.275],[.865,.715]],r=[[0,1],[1,3],[3,4],[4,5],[5,6],[6,7],[7,8],[1,2],[3,7],[0,7]];e.s(["default",0,function({accent:e="#ef4444"}){let o=(0,a.useRef)(null);return(0,a.useEffect)(()=>{let[t,a,d]=function(e){let t=/^#?([0-9a-f]{6})$/i.exec(e.trim());if(!t)return[239,68,68];let a=parseInt(t[1],16);return[a>>16&255,a>>8&255,255&a]}(e),s=e=>`rgba(${t},${a},${d},${e})`,l=`rgb(${t},${a},${d})`,p=o.current,c=p?.parentElement;if(!p||!c)return;let m=p.getContext("2d");if(!m)return;let h=window.matchMedia?.("(prefers-reduced-motion: reduce)").matches,g=0,x=0,v=[],f=0,_=0,b=()=>{let e=c.getBoundingClientRect();g=Math.max(1,e.width),x=Math.max(1,e.height);let t=Math.min(window.devicePixelRatio||1,2);p.width=Math.round(g*t),p.height=Math.round(x*t),p.style.width=g+"px",p.style.height=x+"px",m.setTransform(t,0,0,t,0,0),(()=>{v=[];let e=Math.max(11,Math.min(17,g/70));for(let t=e/2;tt!=l>t&&e<(s-o)*(t-d)/(l-d)+o&&(n=!n)}return n}(e,i,r)){v.push({x:t,y:a});break}}})()},u=(e,t)=>({x:(e.x+t.x)/2,y:(e.y+t.y)/2-.28*Math.hypot(t.x-e.x,t.y-e.y)}),w=(e,t,a,n)=>{let i=1-n;return{x:i*i*e.x+2*i*n*t.x+n*n*a.x,y:i*i*e.y+2*i*n*t.y+n*n*a.y}},y=e=>{for(let e of(m.clearRect(0,0,g,x),m.fillStyle="rgba(120,122,130,0.55)",v))m.beginPath(),m.arc(e.x,e.y,1.15,0,2*Math.PI),m.fill();let t=i.map(([e,t])=>({x:e*g,y:t*x}));for(let[e,a]of(m.save(),m.setLineDash([4,7]),m.lineWidth=1,m.strokeStyle=s(.13),r)){let n=u(t[e],t[a]);m.beginPath(),m.moveTo(t[e].x,t[e].y),m.quadraticCurveTo(n.x,n.y,t[a].x,t[a].y),m.stroke()}m.restore(),m.save();for(let a=0;a{_||(_=e),y((e-_)/1e3),f=requestAnimationFrame(k)};b(),h?y(0):f=requestAnimationFrame(k);let j=new ResizeObserver(()=>{b(),h&&y(0)});return j.observe(c),()=>{cancelAnimationFrame(f),j.disconnect()}},[e]),(0,t.jsx)("canvas",{ref:o,className:"ind__map","aria-hidden":"true"})}])},14224,e=>{"use strict";var t=e.i(43476),a=e.i(71645),n=e.i(89970),i=e.i(83495),r=e.i(5074);n.default.registerPlugin(i.ScrollTrigger);let o=[{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#f59e0b",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})}),title:"Battery-Aware Routing",desc:"Battery level, health, and degradation are first-class inputs to route optimization — not afterthoughts."},{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#94a3b8",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("path",{d:"M18 10h-1.28A6 6 0 0 0 12 5V3M12 5V3M6 10h1.28A6 6 0 0 0 12 5M12 18v2M12 18v2M8 10v6a4 4 0 0 0 8 0v-6"})}),title:"Charging Integration",desc:"Seamlessly integrate charging stops without compromising delivery windows or SLA commitments."},{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#ef4444",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"})}),title:"Energy-Optimized Paths",desc:"Factor in elevation, speed limits, payload weight, and live weather for maximum range efficiency."},{icon:(0,t.jsx)("svg",{className:"evnd-icon",viewBox:"0 0 24 24",fill:"none",stroke:"#ef4444",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:(0,t.jsx)("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"})}),title:"Predictable Operations",desc:"EVs become predictable assets, not operational risks. Full visibility from depot to doorstep."}],d=[{value:"100%",label:"ELECTRIC FLEET"},{value:"-40%",label:"COST / MILE"}],s=[{value:99.9,decimals:1,suffix:"%",label:"SLA Compliance"},{value:42,suffix:"%",label:"Distance Saved"},{value:37,suffix:"%",label:"Fewer Vehicles"},{value:45,suffix:"ms",label:"Dispatch Latency"}];function l({value:e,decimals:n=0,suffix:i="",duration:r=1700,className:o}){let[d,s]=(0,a.useState)(0),p=(0,a.useRef)(null),c=(0,a.useRef)(!1);return(0,a.useEffect)(()=>{let t=p.current;if(!t)return;if(window.matchMedia?.("(prefers-reduced-motion: reduce)").matches)return void requestAnimationFrame(()=>s(e));let a=new IntersectionObserver(t=>{for(let n of t)if(n.isIntersecting&&!c.current){c.current=!0;let t=performance.now(),n=e=>1-Math.pow(1-e,3),i=a=>{let o=Math.min(1,(a-t)/r);s(e*n(o)),o<1?requestAnimationFrame(i):s(e)};requestAnimationFrame(i),a.disconnect()}},{threshold:.2});return a.observe(t),()=>a.disconnect()},[e,r]),(0,t.jsxs)("b",{ref:p,className:o,children:[d.toFixed(n),i]})}function p({accent:e}){return(0,t.jsx)("div",{className:"evnd__map","aria-hidden":"true",children:(0,t.jsx)(r.default,{accent:e})})}function c({metrics:e,features:a,heading:n,theme:i,sysLabel:r="AI ENGINE"}){let o=i?{"--ca":i.accent,"--ca2":i.accent2,"--cg":i.glow}:void 0;return(0,t.jsxs)("div",{className:"evnd__dash",style:o,children:[n&&(0,t.jsxs)("div",{className:"evnd__dash-head",children:[(0,t.jsxs)("span",{className:"evnd__dash-live",children:[(0,t.jsx)("span",{className:"evnd__dash-livedot"}),n]}),(0,t.jsx)("span",{className:"evnd__dash-sys",children:r})]}),(0,t.jsx)("div",{className:"evnd__dash-kpis",children:e.map(e=>(0,t.jsxs)("div",{className:"evnd__kpi",children:[e.text?(0,t.jsx)("b",{className:"evnd__kpi-val evnd__kpi-val--text",children:e.text}):(0,t.jsx)(l,{value:e.value,decimals:e.decimals,suffix:e.suffix,className:"evnd__kpi-val"}),(0,t.jsx)("span",{className:"evnd__kpi-label",children:e.label})]},e.label))}),(0,t.jsx)("div",{className:"evnd__dash-feats",children:a.map(e=>(0,t.jsxs)("div",{className:"evnd__dfeat",children:[(0,t.jsx)("span",{className:"evnd__dfeat-ico","aria-hidden":"true",children:e.icon}),(0,t.jsxs)("div",{className:"evnd__dfeat-body",children:[(0,t.jsx)("span",{className:"evnd__dfeat-title",children:e.title}),(0,t.jsx)("p",{className:"evnd__dfeat-desc",children:e.desc})]})]},e.title))})]})}e.s(["default",0,function({bannerImage:e="/images/bg-header-5.webp",cardNumber:r="",cardTitle:m="EV Logistics",cardSubtitle:h="Cleaner miles, lower costs",eyebrow:g="/ EV-Native Design /",titleLead:x="BUILT FOR ELECTRIC. ",titleAccent:v="NOT ADAPTED.",features:f=o,image:_="/images/premium-ev-van.webp",imageAlt:b="DoorMile electric delivery van",badges:u=d,stats:w=s,gapTop:y=!1,gapBottom:k=!1,ariaLabel:j,mediaSlot:N,metrics:z,barStats:T,cardsHeading:I,cardsTheme:M,sysLabel:P,mediaClassName:S}){let E=(0,a.useRef)(null),F=!!z&&z.length>0,L=_.endsWith(".mp4"),C=F&&M?{"--ca":M.accent,"--ca2":M.accent2,"--cg":M.glow}:void 0;(0,a.useEffect)(()=>{let e=E.current;if(!e)return;let t=i.ScrollTrigger.create({trigger:e,start:"top bottom",end:"bottom top",scrub:!0,onUpdate:()=>{if(window.innerWidth>=1021){let t=window.scrollY,a=e.getBoundingClientRect().top+t;n.default.set(e,{backgroundPosition:`center ${.3*(t-a)}px`})}else n.default.set(e,{backgroundPosition:""})}});return()=>t?.kill()},[]);let W="elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent"+(F?" evnd-workflow-shell":"")+(y?" evnd-gap-top":"")+(k?" evnd-gap-bottom":"");return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` /* ============================================================ EV-Native Design — redesigned section bg #080808 \xb7 red #ef4444 \xb7 Manrope @@ -61,6 +61,10 @@ --padding-top: 46px; --padding-bottom: 38px; } + /* Fix missing font-size for card title that caused it to inherit 80px h2 */ + .elementor-element.elementor-element-239afbb .logico-title { + font-size: clamp(28px, 3.5vw, 40px) !important; + } .elementor-element.elementor-element-5aea22e { --min-height: 38px; --padding-top: 14px; @@ -195,13 +199,31 @@ background: #ef4444; } + /* ---- Heading → content gap ---- + Deliberately set here (on the wrapper div) rather than as + margin-bottom on .evnd__title (the

): a global site.css rule + (.logico-front-end h2:not([class*="logico-title-h"]):last-child) + outweighs .evnd__title's own specificity and zeroes any bottom + margin placed on the heading itself, since the h2 is always the + last child of .evnd__heading. Setting it here sidesteps that + collision and gives every workflow section + Fleet Strategy one + shared, consistent gap. */ + .evnd__heading { + margin-bottom: 40px; + } + @media (max-width: 991px) and (min-width: 768px) { + .evnd__heading { + margin-bottom: 34px; + } + } + .evnd__title { color: #fff !important; font-weight: 800 !important; font-size: clamp(32px, 3.8vw, 48px) !important; line-height: 1.15 !important; letter-spacing: -0.01em; - margin: 0 0 36px 0; + margin: 0; } @media (min-width: 768px) { .evnd__title { @@ -467,6 +489,13 @@ font-size: 12.5px; letter-spacing: 0.01em; } + /* Non-numeric KPI concepts (EVStat.text) — same gradient treatment as + the counted values, sized down so short codes/words don't inherit + the numeric clamp() meant for 2-3 digit figures. */ + .evnd__kpi-val--text { + font-size: clamp(18px, 1.6vw, 22px) !important; + letter-spacing: 0.02em; + } /* ============================================================ Large-screen layout balance (WF1/WF2 dashboard only, ≥1440px). @@ -641,6 +670,14 @@ text-transform: none; opacity: 0.9; } + /* Non-numeric bar values (EVStat.text) — the bar's numeric clamp() + (up to 56px) is too large for words/phrases; size down and let + longer phrases (e.g. "Cost + Distance + SLA") wrap cleanly. */ + .evnd__bar-val--text { + font-size: clamp(16px, 1.8vw, 22px); + line-height: 1.25; + white-space: normal; + } @keyframes evndGlow { 0%,100% { opacity: 0.75; } 50% { opacity: 1; } } @@ -652,7 +689,6 @@ @media (max-width: 991px) { .evnd { padding: 48px 32px 56px; } .evnd__grid { grid-template-columns: 1fr; gap: 40px; } - .evnd__title { margin-bottom: 28px; } .evnd__features { gap: 14px; } /* Stacked: KPI row can spread to 4-up since it now has full width. */ .evnd__dash-kpis { grid-template-columns: repeat(4, 1fr); } @@ -809,4 +845,4 @@ .evnd__dfeat-title { font-size: 13.5px; } .evnd__dfeat-desc { font-size: 12.5px !important; } } - `}}),(0,t.jsxs)("div",{className:S,"data-id":"bbc6760","data-element_type":"container","data-e-type":"container","aria-label":j,style:{backgroundColor:"#0d0d0d",width:"calc(100% - 40px)",marginLeft:"20px",marginRight:"20px",borderRadius:"25px",overflow:"hidden"},children:[(0,t.jsx)("div",{ref:M,className:"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',style:{backgroundPosition:"center 0px",backgroundImage:`url(${e})`,backgroundSize:"cover",backgroundRepeat:"no-repeat",position:"relative",zIndex:2,borderRadius:"25px 25px 0 0",overflow:"hidden"}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:[r&&(0,t.jsx)("div",{className:"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:r})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h5",{className:"logico-title",children:m})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:h})})})]}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}'})]})}),(0,t.jsxs)("section",{className:`evnd${P?" evnd--cards":""}`,"aria-label":j??"EV-Native Design",style:E,children:[P&&I&&(0,t.jsx)(p,{accent:I.accent}),(0,t.jsxs)("div",{className:`evnd__inner${P?" evnd__inner--cards":""}${P&&!N?" evnd__inner--img":""}`,children:[(0,t.jsxs)("div",{className:"evnd__heading",children:[(0,t.jsx)("span",{className:"evnd__eyebrow",children:g}),(0,t.jsxs)("h2",{className:"evnd__title",children:[x,(0,t.jsx)("span",{className:"accent",children:v})]})]}),(0,t.jsxs)("div",{className:`evnd__grid${P?" evnd__grid--cards":""}${P&&!N?" evnd__grid--img":""}`,children:[(0,t.jsx)("div",{className:"evnd__left",children:(0,t.jsxs)("div",{className:"evnd__media",children:[(0,t.jsx)("div",{className:"evnd__glow"}),(0,t.jsxs)("div",{className:`evnd__imgwrap${N?" evnd__imgwrap--media":""}${_.endsWith(".mp4")?" evnd__imgwrap--video":""}`,children:[N||(_.endsWith(".mp4")?(0,t.jsx)("video",{className:"evnd__video",autoPlay:!0,muted:!0,loop:!0,playsInline:!0,"aria-label":b,children:(0,t.jsx)("source",{src:_,type:"video/mp4"})}):(0,t.jsx)("img",{className:"evnd__img",src:_,alt:b,decoding:"async"})),u[0]&&(0,t.jsxs)("div",{className:"evnd__badge evnd__badge--tl",children:[(0,t.jsx)("b",{children:u[0].value}),(0,t.jsx)("span",{children:u[0].label})]}),u[1]&&(0,t.jsxs)("div",{className:"evnd__badge evnd__badge--br",children:[(0,t.jsx)("b",{children:u[1].value}),(0,t.jsx)("span",{children:u[1].label})]})]})]})}),(0,t.jsx)("div",{className:"evnd__right",children:P?(0,t.jsx)(c,{metrics:z,features:f,heading:T,theme:I}):(0,t.jsx)("div",{className:"evnd__features",children:f.map(e=>(0,t.jsxs)("div",{className:"evnd-feature",children:[(0,t.jsx)("div",{className:"evnd-feature__icon-container","aria-hidden":"true",children:e.icon}),(0,t.jsxs)("div",{className:"evnd-feature__body",children:[(0,t.jsx)("div",{className:"evnd-feature__title",children:e.title}),(0,t.jsx)("p",{className:"evnd-feature__desc",children:e.desc})]}),(0,t.jsx)("span",{className:"evnd-feature__arrow","aria-hidden":"true",children:"↗"})]},e.title))})})]}),(0,t.jsx)("div",{className:"evnd__bar",children:(P?z:w).map(e=>(0,t.jsxs)("div",{className:"evnd__bar-item",children:[(0,t.jsx)("span",{className:"evnd__bar-label",children:e.label}),(0,t.jsx)(l,{value:e.value,decimals:e.decimals,suffix:e.suffix,className:"evnd__bar-val"})]},e.label))})]})]})]})]})}])}]); \ No newline at end of file + `}}),(0,t.jsxs)("div",{className:W,"data-id":"bbc6760","data-element_type":"container","data-e-type":"container","aria-label":j,style:{backgroundColor:"#0d0d0d",width:"calc(100% - 40px)",marginLeft:"20px",marginRight:"20px",borderRadius:"25px",overflow:"hidden"},children:[(0,t.jsx)("div",{ref:E,className:"elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"7da6646","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',style:{backgroundPosition:"center 0px",backgroundImage:`url(${e})`,backgroundSize:"cover",backgroundRepeat:"no-repeat",position:"relative",zIndex:2,borderRadius:"25px 25px 0 0",overflow:"hidden"}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8b5d6e6 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"8b5d6e6","data-element_type":"container","data-e-type":"container",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-1f766ea e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"1f766ea","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-3b61435 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"3b61435","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}',children:[r&&(0,t.jsx)("div",{className:"elementor-element elementor-element-c364d1c elementor-widget elementor-widget-text-editor","data-id":"c364d1c","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:r})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-239afbb elementor-widget elementor-widget-logico_heading","data-id":"239afbb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h2",{className:"logico-title",children:m})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-0d307dd elementor-widget elementor-widget-text-editor","data-id":"0d307dd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:h})})})]}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5aea22e e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5aea22e","data-element_type":"container","data-e-type":"container","data-settings":'{"background_background":"classic"}'})]})}),(0,t.jsxs)("section",{className:`evnd${F?" evnd--cards":""}`,"aria-label":j??"EV-Native Design",style:C,children:[F&&M&&(0,t.jsx)(p,{accent:M.accent}),(0,t.jsxs)("div",{className:`evnd__inner${F?" evnd__inner--cards":""}${F&&!N&&!L?" evnd__inner--img":""}`,children:[(0,t.jsxs)("div",{className:"evnd__heading",children:[(0,t.jsx)("span",{className:"evnd__eyebrow",children:g}),(0,t.jsxs)("h2",{className:"evnd__title",children:[x,(0,t.jsx)("span",{className:"accent",children:v})]})]}),(0,t.jsxs)("div",{className:`evnd__grid${F?" evnd__grid--cards":""}${F&&!N&&!L?" evnd__grid--img":""}`,children:[(0,t.jsx)("div",{className:"evnd__left",children:(0,t.jsxs)("div",{className:"evnd__media",children:[(0,t.jsx)("div",{className:"evnd__glow"}),(0,t.jsxs)("div",{className:`evnd__imgwrap${N?" evnd__imgwrap--media":""}${L?" evnd__imgwrap--video":""}${S?` ${S}`:""}`,children:[N||(L?(0,t.jsx)("video",{className:"evnd__video",autoPlay:!0,muted:!0,loop:!0,playsInline:!0,"aria-label":b,children:(0,t.jsx)("source",{src:_,type:"video/mp4"})}):(0,t.jsx)("img",{className:"evnd__img",src:_,alt:b,decoding:"async"})),u[0]&&(0,t.jsxs)("div",{className:"evnd__badge evnd__badge--tl",children:[(0,t.jsx)("b",{children:u[0].value}),(0,t.jsx)("span",{children:u[0].label})]}),u[1]&&(0,t.jsxs)("div",{className:"evnd__badge evnd__badge--br",children:[(0,t.jsx)("b",{children:u[1].value}),(0,t.jsx)("span",{children:u[1].label})]})]})]})}),(0,t.jsx)("div",{className:"evnd__right",children:F?(0,t.jsx)(c,{metrics:z,features:f,heading:I,theme:M,sysLabel:P}):(0,t.jsx)("div",{className:"evnd__features",children:f.map(e=>(0,t.jsxs)("div",{className:"evnd-feature",children:[(0,t.jsx)("div",{className:"evnd-feature__icon-container","aria-hidden":"true",children:e.icon}),(0,t.jsxs)("div",{className:"evnd-feature__body",children:[(0,t.jsx)("div",{className:"evnd-feature__title",children:e.title}),(0,t.jsx)("p",{className:"evnd-feature__desc",children:e.desc})]}),(0,t.jsx)("span",{className:"evnd-feature__arrow","aria-hidden":"true",children:"↗"})]},e.title))})})]}),(0,t.jsx)("div",{className:"evnd__bar",children:(F?T??z:w).map(e=>(0,t.jsxs)("div",{className:"evnd__bar-item",children:[(0,t.jsx)("span",{className:"evnd__bar-label",children:e.label}),e.text?(0,t.jsx)("b",{className:"evnd__bar-val evnd__bar-val--text",children:e.text}):(0,t.jsx)(l,{value:e.value,decimals:e.decimals,suffix:e.suffix,className:"evnd__bar-val"})]},e.label))})]})]})]})]})}])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0vp~o9giaq0t~.js b/.next/static/chunks/0vp~o9giaq0t~.js similarity index 100% rename from build/_next/static/chunks/0vp~o9giaq0t~.js rename to .next/static/chunks/0vp~o9giaq0t~.js diff --git a/build/_next/static/chunks/0vzdvje64yndv.js b/.next/static/chunks/0vzdvje64yndv.js similarity index 100% rename from build/_next/static/chunks/0vzdvje64yndv.js rename to .next/static/chunks/0vzdvje64yndv.js diff --git a/build/_next/static/chunks/08hj-sa49t6qk.js b/.next/static/chunks/0wybzq6mybxiw.js similarity index 99% rename from build/_next/static/chunks/08hj-sa49t6qk.js rename to .next/static/chunks/0wybzq6mybxiw.js index 4c6ffb8..88b93c3 100644 --- a/build/_next/static/chunks/08hj-sa49t6qk.js +++ b/.next/static/chunks/0wybzq6mybxiw.js @@ -1,3 +1,3 @@ (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,98183,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={assign:function(){return u},searchParamsToUrlQuery:function(){return o},urlQueryToSearchParams:function(){return a}};for(var i in n)Object.defineProperty(r,i,{enumerable:!0,get:n[i]});function o(e){let t={};for(let[r,n]of e.entries()){let e=t[r];void 0===e?t[r]=n:Array.isArray(e)?e.push(n):t[r]=[e,n]}return t}function l(e){return"string"==typeof e?e:("number"!=typeof e||isNaN(e))&&"boolean"!=typeof e?"":String(e)}function a(e){let t=new URLSearchParams;for(let[r,n]of Object.entries(e))if(Array.isArray(n))for(let e of n)t.append(r,l(e));else t.set(r,l(n));return t}function u(e,...t){for(let r of t){for(let t of r.keys())e.delete(t);for(let[t,n]of r.entries())e.append(t,n)}return e}},18967,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={DecodeError:function(){return y},MiddlewareNotFoundError:function(){return _},MissingStaticPage:function(){return w},NormalizeError:function(){return v},PageNotFoundError:function(){return b},SP:function(){return h},ST:function(){return m},WEB_VITALS:function(){return o},execOnce:function(){return l},getDisplayName:function(){return f},getLocationOrigin:function(){return s},getURL:function(){return c},isAbsoluteUrl:function(){return u},isResSent:function(){return d},loadGetInitialProps:function(){return g},normalizeRepeatedSlashes:function(){return p},stringifyError:function(){return x}};for(var i in n)Object.defineProperty(r,i,{enumerable:!0,get:n[i]});let o=["CLS","FCP","FID","INP","LCP","TTFB"];function l(e){let t,r=!1;return(...n)=>(r||(r=!0,t=e(...n)),t)}let a=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/,u=e=>a.test(e);function s(){let{protocol:e,hostname:t,port:r}=window.location;return`${e}//${t}${r?":"+r:""}`}function c(){let{href:e}=window.location,t=s();return e.substring(t.length)}function f(e){return"string"==typeof e?e:e.displayName||e.name||"Unknown"}function d(e){return e.finished||e.headersSent}function p(e){let t=e.split("?");return t[0].replace(/\\/g,"/").replace(/\/\/+/g,"/")+(t[1]?`?${t.slice(1).join("?")}`:"")}async function g(e,t){let r=t.res||t.ctx&&t.ctx.res;if(!e.getInitialProps)return t.ctx&&t.Component?{pageProps:await g(t.Component,t.ctx)}:{};let n=await e.getInitialProps(t);if(r&&d(r))return n;if(!n)throw Object.defineProperty(Error(`"${f(e)}.getInitialProps()" should resolve to an object. But found "${n}" instead.`),"__NEXT_ERROR_CODE",{value:"E1025",enumerable:!1,configurable:!0});return n}let h="u">typeof performance,m=h&&["mark","measure","getEntriesByName"].every(e=>"function"==typeof performance[e]);class y extends Error{}class v extends Error{}class b extends Error{constructor(e){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${e}`}}class w extends Error{constructor(e,t){super(),this.message=`Failed to load static file for page: ${e} ${t}`}}class _ extends Error{constructor(){super(),this.code="ENOENT",this.message="Cannot find the middleware module"}}function x(e){return JSON.stringify({message:e.message,stack:e.stack})}},33525,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"warnOnce",{enumerable:!0,get:function(){return n}});let n=e=>{}},95057,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={formatUrl:function(){return a},formatWithValidation:function(){return s},urlObjectKeys:function(){return u}};for(var i in n)Object.defineProperty(r,i,{enumerable:!0,get:n[i]});let o=e.r(90809)._(e.r(98183)),l=/https?|ftp|gopher|file/;function a(e){let{auth:t,hostname:r}=e,n=e.protocol||"",i=e.pathname||"",a=e.hash||"",u=e.query||"",s=!1;t=t?encodeURIComponent(t).replace(/%3A/i,":")+"@":"",e.host?s=t+e.host:r&&(s=t+(~r.indexOf(":")?`[${r}]`:r),e.port&&(s+=":"+e.port)),u&&"object"==typeof u&&(u=String(o.urlQueryToSearchParams(u)));let c=e.search||u&&`?${u}`||"";return n&&!n.endsWith(":")&&(n+=":"),e.slashes||(!n||l.test(n))&&!1!==s?(s="//"+(s||""),i&&"/"!==i[0]&&(i="/"+i)):s||(s=""),a&&"#"!==a[0]&&(a="#"+a),c&&"?"!==c[0]&&(c="?"+c),i=i.replace(/[?#]/g,encodeURIComponent),c=c.replace("#","%23"),`${n}${s}${i}${c}${a}`}let u=["auth","hash","host","hostname","href","path","pathname","port","protocol","query","search","slashes"];function s(e){return a(e)}},18581,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"useMergedRef",{enumerable:!0,get:function(){return i}});let n=e.r(71645);function i(e,t){let r=(0,n.useRef)(null),i=(0,n.useRef)(null);return(0,n.useCallback)(n=>{if(null===n){let e=r.current;e&&(r.current=null,e());let t=i.current;t&&(i.current=null,t())}else e&&(r.current=o(e,n)),t&&(i.current=o(t,n))},[e,t])}function o(e,t){if("function"!=typeof e)return e.current=t,()=>{e.current=null};{let r=e(t);return"function"==typeof r?r:()=>e(null)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},73668,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isLocalURL",{enumerable:!0,get:function(){return o}});let n=e.r(18967),i=e.r(52817);function o(e){if(!(0,n.isAbsoluteUrl)(e))return!0;try{let t=(0,n.getLocationOrigin)(),r=new URL(e,t);return r.origin===t&&(0,i.hasBasePath)(r.pathname)}catch(e){return!1}}},84508,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"errorOnce",{enumerable:!0,get:function(){return n}});let n=e=>{}},22016,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={default:function(){return y},useLinkStatus:function(){return b}};for(var i in n)Object.defineProperty(r,i,{enumerable:!0,get:n[i]});let o=e.r(90809),l=e.r(43476),a=o._(e.r(71645)),u=e.r(95057),s=e.r(8372),c=e.r(18581),f=e.r(18967),d=e.r(5550);e.r(33525);let p=e.r(88540),g=e.r(91949),h=e.r(73668),m=e.r(9396);function y(t){var r,n;let i,o,y,[b,w]=(0,a.useOptimistic)(g.IDLE_LINK_STATUS),_=(0,a.useRef)(null),{href:x,as:P,children:j,prefetch:E=null,passHref:S,replace:O,shallow:C,scroll:R,onClick:M,onMouseEnter:T,onTouchStart:N,legacyBehavior:k=!1,onNavigate:I,transitionTypes:$,ref:A,unstable_dynamicOnHover:L,...z}=t;i=j,k&&("string"==typeof i||"number"==typeof i)&&(i=(0,l.jsx)("a",{children:i}));let D=a.default.useContext(s.AppRouterContext),U=!1!==E,B=!1!==E?null===(n=E)||"auto"===n?m.FetchStrategy.PPR:m.FetchStrategy.Full:m.FetchStrategy.PPR,F="string"==typeof(r=P||x)?r:(0,u.formatUrl)(r);if(k){if(i?.$$typeof===Symbol.for("react.lazy"))throw Object.defineProperty(Error("`` received a direct child that is either a Server Component, or JSX that was loaded with React.lazy(). This is not supported. Either remove legacyBehavior, or make the direct child a Client Component that renders the Link's `` tag."),"__NEXT_ERROR_CODE",{value:"E863",enumerable:!1,configurable:!0});o=a.default.Children.only(i)}let q=k?o&&"object"==typeof o&&o.ref:A,W=a.default.useCallback(e=>(null!==D&&(_.current=(0,g.mountLinkInstance)(e,F,D,B,U,w)),()=>{_.current&&((0,g.unmountLinkForCurrentNavigation)(_.current),_.current=null),(0,g.unmountPrefetchableInstance)(e)}),[U,F,D,B,w]),X={ref:(0,c.useMergedRef)(W,q),onClick(t){k||"function"!=typeof M||M(t),k&&o.props&&"function"==typeof o.props.onClick&&o.props.onClick(t),!D||t.defaultPrevented||function(t,r,n,i,o,l,u){if("u">typeof window){let s,{nodeName:c}=t.currentTarget;if("A"===c.toUpperCase()&&((s=t.currentTarget.getAttribute("target"))&&"_self"!==s||t.metaKey||t.ctrlKey||t.shiftKey||t.altKey||t.nativeEvent&&2===t.nativeEvent.which)||t.currentTarget.hasAttribute("download"))return;if(!(0,h.isLocalURL)(r)){i&&(t.preventDefault(),location.replace(r));return}if(t.preventDefault(),l){let e=!1;if(l({preventDefault:()=>{e=!0}}),e)return}let{dispatchNavigateAction:f}=e.r(99781);a.default.startTransition(()=>{f(r,i?"replace":"push",!1===o?p.ScrollBehavior.NoScroll:p.ScrollBehavior.Default,n.current,u)})}}(t,F,_,O,R,I,$)},onMouseEnter(e){k||"function"!=typeof T||T(e),k&&o.props&&"function"==typeof o.props.onMouseEnter&&o.props.onMouseEnter(e),D&&U&&(0,g.onNavigationIntent)(e.currentTarget,!0===L)},onTouchStart:function(e){k||"function"!=typeof N||N(e),k&&o.props&&"function"==typeof o.props.onTouchStart&&o.props.onTouchStart(e),D&&U&&(0,g.onNavigationIntent)(e.currentTarget,!0===L)}};return(0,f.isAbsoluteUrl)(F)?X.href=F:k&&!S&&("a"!==o.type||"href"in o.props)||(X.href=(0,d.addBasePath)(F)),y=k?a.default.cloneElement(o,X):(0,l.jsx)("a",{...z,...X,children:i}),(0,l.jsx)(v.Provider,{value:b,children:y})}e.r(84508);let v=(0,a.createContext)(g.IDLE_LINK_STATUS),b=()=>(0,a.useContext)(v);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},2018,e=>{"use strict";var t=e.i(43476),r=e.i(71645),n=e.i(89970),i=e.i(83495);function o(e){let{trigger:t,start:r="top 88%",show:n,hide:o,triggerOnce:l=!1}=e;if(window.matchMedia?.("(prefers-reduced-motion: reduce)").matches)return n(),()=>{};let a=i.ScrollTrigger.create({trigger:t,start:r,onEnter:e=>{n(),l&&e.kill()},onEnterBack:()=>{l||n()},onLeave:()=>{l||o()},onLeaveBack:()=>{l||o()}}),u=requestAnimationFrame(()=>{let e=t.getBoundingClientRect(),r=window.innerHeight||document.documentElement.clientHeight;e.top0&&(n(),l&&a.kill())});return()=>{cancelAnimationFrame(u),a.kill()}}n.default.registerPlugin(i.ScrollTrigger),e.s(["CountUp",0,function({end:e,start:i=0,duration:l=2,decimals:a=0,suffix:u="",prefix:s="",className:c="",triggerOnce:f=!1}){let[d,p]=(0,r.useState)(i),g=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let t=g.current;if(t)return o({trigger:t,start:"top 90%",show:()=>{let t={val:i};n.default.to(t,{val:e,duration:l,ease:"power2.out",onUpdate:()=>p(t.val)})},hide:()=>p(i),triggerOnce:f})},[i,e,l,f]),(0,t.jsxs)("span",{ref:g,className:c,children:[s,d.toFixed(a),u]})},"Magnetic",0,function({children:e,range:i=45,strength:o=.35}){let l=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let e=l.current;if(!e)return;let t=e.firstElementChild;if(!t)return;let r=r=>{let l=e.getBoundingClientRect(),a=r.clientX-(l.left+l.width/2),u=r.clientY-(l.top+l.height/2);Math.sqrt(a*a+u*u){n.default.to(t,{x:0,y:0,ease:"elastic.out(1.2, 0.4)",duration:.8})};return e.addEventListener("mousemove",r),e.addEventListener("mouseleave",a),()=>{e.removeEventListener("mousemove",r),e.removeEventListener("mouseleave",a)}},[i,o]),(0,t.jsx)("div",{ref:l,className:"inline-block",children:e})},"ParallaxSection",0,function({children:e,speed:o=.15,className:l=""}){let a=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let e=a.current;if(e&&!window.matchMedia("(prefers-reduced-motion: reduce)").matches)return n.default.to(e,{y:()=>-i.ScrollTrigger.maxScroll(window)*o*.1,ease:"none",scrollTrigger:{trigger:e,start:"top bottom",end:"bottom top",scrub:1.5,invalidateOnRefresh:!0}}),()=>{i.ScrollTrigger.getAll().forEach(t=>{t.trigger===e&&t.kill()})}},[o]),(0,t.jsx)("div",{ref:a,className:l,style:{willChange:"transform"},children:e})},"RevealText",0,function({children:e,type:i="words",delay:l=0,duration:a=.85,className:u="",triggerOnce:s=!1}){let c=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let e=c.current;if(!e)return;let t=e.querySelectorAll(".reveal-item");return t.length?(n.default.set(t,{y:"110%",opacity:0}),o({trigger:e,show:()=>n.default.to(t,{y:"0%",opacity:1,duration:a,ease:"power4.out",stagger:"chars"===i?.02:.04,delay:l,overwrite:"auto"}),hide:()=>n.default.set(t,{y:"110%",opacity:0}),triggerOnce:s})):void 0},[e,i,l,a,s]),(0,t.jsx)("div",{ref:c,className:u,style:{display:"flex",flexWrap:"wrap"},children:"chars"===i?e.split("").map((e,r)=>(0,t.jsx)("span",{className:"inline-block overflow-hidden",style:{height:"1.2em",lineHeight:"1.2em",verticalAlign:"middle"},children:(0,t.jsx)("span",{className:"reveal-item inline-block",children:" "===e?" ":e})},r)):e.split(" ").map((e,r)=>(0,t.jsx)("span",{className:"inline-block overflow-hidden",style:{height:"1.2em",lineHeight:"1.2em",marginRight:"0.25em",verticalAlign:"middle"},children:(0,t.jsx)("span",{className:"reveal-item inline-block",children:e})},r))})},"ScaleReveal",0,function({children:e,delay:i=0,duration:l=.8,className:a="",triggerOnce:u=!1}){let s=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let e=s.current;return e?(n.default.set(e,{scale:.85,opacity:0}),o({trigger:e,show:()=>n.default.to(e,{scale:1,opacity:1,duration:l,ease:"power3.out",delay:i,overwrite:"auto"}),hide:()=>n.default.set(e,{scale:.85,opacity:0}),triggerOnce:u})):void 0},[i,l,u]),(0,t.jsx)("div",{ref:s,className:a,children:e})},"ScrollReveal",0,function({children:e,delay:i=0,duration:l=.8,yOffset:a=40,xOffset:u=0,className:s="",triggerOnce:c=!1}){let f=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let e=f.current;return e?(n.default.set(e,{y:a,x:u,opacity:0}),o({trigger:e,show:()=>n.default.to(e,{y:0,x:0,opacity:1,duration:l,ease:"power3.out",delay:i,overwrite:"auto"}),hide:()=>n.default.set(e,{y:a,x:u,opacity:0}),triggerOnce:c})):void 0},[i,l,a,u,c]),(0,t.jsx)("div",{ref:f,className:s,children:e})},"ShimmerText",0,function({children:e,className:r=""}){return(0,t.jsx)("span",{className:`inline-block bg-clip-text text-transparent bg-[linear-gradient(110deg,#ffffff,45%,#c01227,55%,#ffffff)] bg-[length:250%_100%] animate-[shimmer-sweep_6s_infinite_linear] ${r}`,style:{WebkitBackgroundClip:"text",backgroundClip:"text"},children:e})},"SlideReveal",0,function({children:e,direction:i="left",delay:l=0,duration:a=.9,className:u="",triggerOnce:s=!1}){let c=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let e=c.current;if(!e)return;let t="left"===i?-60:60;return n.default.set(e,{x:t,opacity:0}),o({trigger:e,show:()=>n.default.to(e,{x:0,opacity:1,duration:a,ease:"power3.out",delay:l,overwrite:"auto"}),hide:()=>n.default.set(e,{x:t,opacity:0}),triggerOnce:s})},[i,l,a,s]),(0,t.jsx)("div",{ref:c,className:u,children:e})},"StaggerChildren",0,function({children:e,stagger:i=.1,duration:l=.7,yOffset:a=35,className:u="",triggerOnce:s=!1}){let c=(0,r.useRef)(null);return(0,r.useEffect)(()=>{let e=c.current;if(!e)return;let t=e.children;return t.length?(n.default.set(t,{y:a,opacity:0}),o({trigger:e,start:"top 85%",show:()=>n.default.to(t,{y:0,opacity:1,duration:l,ease:"power3.out",stagger:i,overwrite:"auto"}),hide:()=>n.default.set(t,{y:a,opacity:0}),triggerOnce:s})):void 0},[i,l,a,s]),(0,t.jsx)("div",{ref:c,className:u,children:e})},"Tilt3D",0,function({children:e,intensity:i=8,className:o=""}){let l=(0,r.useRef)(null),a=(0,r.useCallback)(e=>{let t=l.current;if(!t)return;let r=t.getBoundingClientRect(),o=(e.clientX-r.left)/r.width-.5,a=(e.clientY-r.top)/r.height-.5;n.default.to(t,{rotateY:o*i,rotateX:-a*i,duration:.5,ease:"power2.out"})},[i]),u=(0,r.useCallback)(()=>{let e=l.current;e&&n.default.to(e,{rotateY:0,rotateX:0,duration:.8,ease:"elastic.out(1, 0.5)"})},[]);return(0,t.jsx)("div",{style:{perspective:"1000px"},children:(0,t.jsx)("div",{ref:l,className:o,onMouseMove:a,onMouseLeave:u,style:{transformStyle:"preserve-3d",willChange:"transform"},children:e})})}])},88143,(e,t,r)=>{"use strict";function n({widthInt:e,heightInt:t,blurWidth:r,blurHeight:i,blurDataURL:o,objectFit:l}){let a=r?40*r:e,u=i?40*i:t,s=a&&u?`viewBox='0 0 ${a} ${u}'`:"";return`%3Csvg xmlns='http://www.w3.org/2000/svg' ${s}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='20'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${s?"none":"contain"===l?"xMidYMid":"cover"===l?"xMidYMid slice":"none"}' style='filter: url(%23b);' href='${o}'/%3E%3C/svg%3E`}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImageBlurSvg",{enumerable:!0,get:function(){return n}})},87690,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={VALID_LOADERS:function(){return o},imageConfigDefault:function(){return l}};for(var i in n)Object.defineProperty(r,i,{enumerable:!0,get:n[i]});let o=["default","imgix","cloudinary","akamai","custom"],l={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumDiskCacheSize:void 0,maximumRedirects:3,maximumResponseBody:5e7,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1,customCacheHandler:!1}},8927,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"getImgProps",{enumerable:!0,get:function(){return s}}),e.r(33525);let n=e.r(43369),i=e.r(88143),o=e.r(87690),l=["-moz-initial","fill","none","scale-down",void 0];function a(e){return void 0!==e.default}function u(e){return void 0===e?e:"number"==typeof e?Number.isFinite(e)?e:NaN:"string"==typeof e&&/^[0-9]+$/.test(e)?parseInt(e,10):NaN}function s({src:e,sizes:t,unoptimized:r=!1,priority:c=!1,preload:f=!1,loading:d,className:p,quality:g,width:h,height:m,fill:y=!1,style:v,overrideSrc:b,onLoad:w,onLoadingComplete:_,placeholder:x="empty",blurDataURL:P,fetchPriority:j,decoding:E="async",layout:S,objectFit:O,objectPosition:C,lazyBoundary:R,lazyRoot:M,...T},N){var k;let I,$,A,{imgConf:L,showAltText:z,blurComplete:D,defaultLoader:U}=N,B=L||o.imageConfigDefault;if("allSizes"in B)I=B;else{let e=[...B.deviceSizes,...B.imageSizes].sort((e,t)=>e-t),t=B.deviceSizes.sort((e,t)=>e-t),r=B.qualities?.sort((e,t)=>e-t);I={...B,allSizes:e,deviceSizes:t,qualities:r}}if(void 0===U)throw Object.defineProperty(Error("images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config"),"__NEXT_ERROR_CODE",{value:"E163",enumerable:!1,configurable:!0});let F=T.loader||U;delete T.loader,delete T.srcSet;let q="__next_img_default"in F;if(q){if("custom"===I.loader)throw Object.defineProperty(Error(`Image with src "${e}" is missing "loader" prop. Read more: https://nextjs.org/docs/messages/next-image-missing-loader`),"__NEXT_ERROR_CODE",{value:"E252",enumerable:!1,configurable:!0})}else{let e=F;F=t=>{let{config:r,...n}=t;return e(n)}}if(S){"fill"===S&&(y=!0);let e={intrinsic:{maxWidth:"100%",height:"auto"},responsive:{width:"100%",height:"auto"}}[S];e&&(v={...v,...e});let r={responsive:"100vw",fill:"100vw"}[S];r&&!t&&(t=r)}let W="",X=u(h),G=u(m);if((k=e)&&"object"==typeof k&&(a(k)||void 0!==k.src)){let t=a(e)?e.default:e;if(!t.src)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E460",enumerable:!1,configurable:!0});if(!t.height||!t.width)throw Object.defineProperty(Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(t)}`),"__NEXT_ERROR_CODE",{value:"E48",enumerable:!1,configurable:!0});if($=t.blurWidth,A=t.blurHeight,P=P||t.blurDataURL,W=t.src,!y)if(X||G){if(X&&!G){let e=X/t.width;G=Math.round(t.height*e)}else if(!X&&G){let e=G/t.height;X=Math.round(t.width*e)}}else X=t.width,G=t.height}let H=!c&&!f&&("lazy"===d||void 0===d);(!(e="string"==typeof e?e:W)||e.startsWith("data:")||e.startsWith("blob:"))&&(r=!0,H=!1),I.unoptimized&&(r=!0),q&&!I.dangerouslyAllowSVG&&e.split("?",1)[0].endsWith(".svg")&&(r=!0);let K=u(g),V=Object.assign(y?{position:"absolute",height:"100%",width:"100%",left:0,top:0,right:0,bottom:0,objectFit:O,objectPosition:C}:{},z?{}:{color:"transparent"},v),Y=D||"empty"===x?null:"blur"===x?`url("data:image/svg+xml;charset=utf-8,${(0,i.getImageBlurSvg)({widthInt:X,heightInt:G,blurWidth:$,blurHeight:A,blurDataURL:P||"",objectFit:V.objectFit})}")`:`url("${x}")`,Q=l.includes(V.objectFit)?"fill"===V.objectFit?"100% 100%":"cover":V.objectFit,J=Y?{backgroundSize:Q,backgroundPosition:V.objectPosition||"50% 50%",backgroundRepeat:"no-repeat",backgroundImage:Y}:{},Z=function({config:e,src:t,unoptimized:r,width:i,quality:o,sizes:l,loader:a}){if(r){if(t.startsWith("/")&&!t.startsWith("//")){let e=(0,n.getDeploymentId)();if(e){let r=t.indexOf("?");if(-1!==r){let n=new URLSearchParams(t.slice(r+1));n.get("dpl")||(n.append("dpl",e),t=t.slice(0,r)+"?"+n.toString())}else t+=`?dpl=${e}`}}return{src:t,srcSet:void 0,sizes:void 0}}let{widths:u,kind:s}=function({deviceSizes:e,allSizes:t},r,n){if(n){let r=/(^|\s)(1?\d?\d)vw/g,i=[];for(let e;e=r.exec(n);)i.push(parseInt(e[2]));if(i.length){let r=.01*Math.min(...i);return{widths:t.filter(t=>t>=e[0]*r),kind:"w"}}return{widths:t,kind:"w"}}return"number"!=typeof r?{widths:e,kind:"w"}:{widths:[...new Set([r,2*r].map(e=>t.find(t=>t>=e)||t[t.length-1]))],kind:"x"}}(e,i,l),c=u.length-1;return{sizes:l||"w"!==s?l:"100vw",srcSet:u.map((r,n)=>`${a({config:e,src:t,quality:o,width:r})} ${"w"===s?r:n+1}${s}`).join(", "),src:a({config:e,src:t,quality:o,width:u[c]})}}({config:I,src:e,unoptimized:r,width:X,quality:K,sizes:t,loader:F}),ee=H?"lazy":d;return{props:{...T,loading:ee,fetchPriority:j,width:X,height:G,decoding:E,className:p,style:{...V,...J},sizes:Z.sizes,srcSet:Z.srcSet,src:b||Z.src},meta:{unoptimized:r,preload:f||c,placeholder:x,fill:y}}}},98879,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return a}});let n=e.r(71645),i="u"{}:n.useLayoutEffect,l=i?()=>{}:n.useEffect;function a(e){let{headManager:t,reduceComponentsToState:r}=e;function a(){if(t&&t.mountedInstances){let e=n.Children.toArray(Array.from(t.mountedInstances).filter(Boolean));t.updateHead(r(e))}}return i&&(t?.mountedInstances?.add(e.children),a()),o(()=>(t?.mountedInstances?.add(e.children),()=>{t?.mountedInstances?.delete(e.children)})),o(()=>(t&&(t._pendingUpdate=a),()=>{t&&(t._pendingUpdate=a)})),l(()=>(t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null),()=>{t&&t._pendingUpdate&&(t._pendingUpdate(),t._pendingUpdate=null)})),null}},25633,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={default:function(){return h},defaultHead:function(){return f}};for(var i in n)Object.defineProperty(r,i,{enumerable:!0,get:n[i]});let o=e.r(55682),l=e.r(90809),a=e.r(43476),u=l._(e.r(71645)),s=o._(e.r(98879)),c=e.r(42732);function f(){return[(0,a.jsx)("meta",{charSet:"utf-8"},"charset"),(0,a.jsx)("meta",{name:"viewport",content:"width=device-width"},"viewport")]}function d(e,t){return"string"==typeof t||"number"==typeof t?e:t.type===u.default.Fragment?e.concat(u.default.Children.toArray(t.props.children).reduce((e,t)=>"string"==typeof t||"number"==typeof t?e:e.concat(t),[])):e.concat(t)}e.r(33525);let p=["name","httpEquiv","charSet","itemProp"];function g(e){let t,r,n,i;return e.reduce(d,[]).reverse().concat(f().reverse()).filter((t=new Set,r=new Set,n=new Set,i={},e=>{let o=!0,l=!1;if(e.key&&"number"!=typeof e.key&&e.key.indexOf("$")>0){l=!0;let r=e.key.slice(e.key.indexOf("$")+1);t.has(r)?o=!1:t.add(r)}switch(e.type){case"title":case"base":r.has(e.type)?o=!1:r.add(e.type);break;case"meta":for(let t=0,r=p.length;t{let r=e.key||t;return u.default.cloneElement(e,{key:r})})}let h=function({children:e}){let t=(0,u.useContext)(c.HeadManagerContext);return(0,a.jsx)(s.default,{reduceComponentsToState:g,headManager:t,children:e})};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},18556,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ImageConfigContext",{enumerable:!0,get:function(){return o}});let n=e.r(55682)._(e.r(71645)),i=e.r(87690),o=n.default.createContext(i.imageConfigDefault)},65856,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"RouterContext",{enumerable:!0,get:function(){return n}});let n=e.r(55682)._(e.r(71645)).default.createContext(null)},70965,(e,t,r)=>{"use strict";function n(e,t){let r=e||75;return t?.qualities?.length?t.qualities.reduce((e,t)=>Math.abs(t-r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"default",{enumerable:!0,get:function(){return l}});let n=e.r(70965),i=e.r(43369);function o({config:e,src:t,width:r,quality:l}){let a=(0,i.getDeploymentId)();if(t.startsWith("/")&&!t.startsWith("//")){let e=t.indexOf("?");if(-1!==e){let r=new URLSearchParams(t.slice(e+1)),n=r.get("dpl");if(n){a=n,r.delete("dpl");let i=r.toString();t=t.slice(0,e)+(i?"?"+i:"")}}}if(t.startsWith("/")&&t.includes("?")&&e.localPatterns?.length===1&&"**"===e.localPatterns[0].pathname&&""===e.localPatterns[0].search)throw Object.defineProperty(Error(`Image with src "${t}" is using a query string which is not configured in images.localPatterns. -Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let u=(0,n.findClosestQuality)(l,e);return`${e.path}?url=${encodeURIComponent(t)}&w=${r}&q=${u}${t.startsWith("/")&&a?`&dpl=${a}`:""}`}o.__next_img_default=!0;let l=o},5500,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"Image",{enumerable:!0,get:function(){return w}});let n=e.r(55682),i=e.r(90809),o=e.r(43476),l=i._(e.r(71645)),a=n._(e.r(74080)),u=n._(e.r(25633)),s=e.r(8927),c=e.r(87690),f=e.r(18556);e.r(33525);let d=e.r(65856),p=n._(e.r(1948)),g=e.r(18581),h={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!0};function m(e,t,r,n,i,o,l){let a=e?.src;e&&e["data-loaded-src"]!==a&&(e["data-loaded-src"]=a,("decode"in e?e.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(e.parentElement&&e.isConnected){if("empty"!==t&&i(!0),r?.current){let t=new Event("load");Object.defineProperty(t,"target",{writable:!1,value:e});let n=!1,i=!1;r.current({...t,nativeEvent:t,currentTarget:e,target:e,isDefaultPrevented:()=>n,isPropagationStopped:()=>i,persist:()=>{},preventDefault:()=>{n=!0,t.preventDefault()},stopPropagation:()=>{i=!0,t.stopPropagation()}})}n?.current&&n.current(e)}}))}function y(e){return l.use?{fetchPriority:e}:{fetchpriority:e}}"u"{let O=(0,l.useCallback)(e=>{e&&(j&&(e.src=e.src),e.complete&&m(e,f,v,b,w,p,x))},[e,f,v,b,w,j,p,x]),C=(0,g.useMergedRef)(S,O);return(0,o.jsx)("img",{...E,...y(c),loading:d,width:i,height:n,decoding:a,"data-nimg":h?"fill":"1",className:u,style:s,sizes:r,srcSet:t,src:e,ref:C,onLoad:e=>{m(e.currentTarget,f,v,b,w,p,x)},onError:e=>{_(!0),"empty"!==f&&w(!0),j&&j(e)}})});function b({isAppRouter:e,imgAttributes:t}){let r={as:"image",imageSrcSet:t.srcSet,imageSizes:t.sizes,crossOrigin:t.crossOrigin,referrerPolicy:t.referrerPolicy,...y(t.fetchPriority)};return e&&a.default.preload?(a.default.preload(t.src,r),null):(0,o.jsx)(u.default,{children:(0,o.jsx)("link",{rel:"preload",href:t.srcSet?void 0:t.src,...r},"__nimg-"+t.src+t.srcSet+t.sizes)})}let w=(0,l.forwardRef)((e,t)=>{let r=(0,l.useContext)(d.RouterContext),n=(0,l.useContext)(f.ImageConfigContext),i=(0,l.useMemo)(()=>{let e=h||n||c.imageConfigDefault,t=[...e.deviceSizes,...e.imageSizes].sort((e,t)=>e-t),r=e.deviceSizes.sort((e,t)=>e-t),i=e.qualities?.sort((e,t)=>e-t);return{...e,allSizes:t,deviceSizes:r,qualities:i,localPatterns:"u"{g.current=a},[a]);let m=(0,l.useRef)(u);(0,l.useEffect)(()=>{m.current=u},[u]);let[y,w]=(0,l.useState)(!1),[_,x]=(0,l.useState)(!1),{props:P,meta:j}=(0,s.getImgProps)(e,{defaultLoader:p.default,imgConf:i,blurComplete:y,showAltText:_});return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(v,{...P,unoptimized:j.unoptimized,placeholder:j.placeholder,fill:j.fill,onLoadRef:g,onLoadingCompleteRef:m,setBlurComplete:w,setShowAltText:x,sizesInput:e.sizes,ref:t}),j.preload?(0,o.jsx)(b,{isAppRouter:!r,imgAttributes:P}):null]})});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)}]); \ No newline at end of file +Read more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`),"__NEXT_ERROR_CODE",{value:"E871",enumerable:!1,configurable:!0});let u=(0,n.findClosestQuality)(l,e);return`${e.path}?url=${encodeURIComponent(t)}&w=${r}&q=${u}${t.startsWith("/")&&a?`&dpl=${a}`:""}`}o.__next_img_default=!0;let l=o},5500,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"Image",{enumerable:!0,get:function(){return w}});let n=e.r(55682),i=e.r(90809),o=e.r(43476),l=i._(e.r(71645)),a=n._(e.r(74080)),u=n._(e.r(25633)),s=e.r(8927),c=e.r(87690),f=e.r(18556);e.r(33525);let d=e.r(65856),p=n._(e.r(1948)),g=e.r(18581),h={deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],qualities:[75],path:"/_next/image",loader:"default",dangerouslyAllowSVG:!1,unoptimized:!1};function m(e,t,r,n,i,o,l){let a=e?.src;e&&e["data-loaded-src"]!==a&&(e["data-loaded-src"]=a,("decode"in e?e.decode():Promise.resolve()).catch(()=>{}).then(()=>{if(e.parentElement&&e.isConnected){if("empty"!==t&&i(!0),r?.current){let t=new Event("load");Object.defineProperty(t,"target",{writable:!1,value:e});let n=!1,i=!1;r.current({...t,nativeEvent:t,currentTarget:e,target:e,isDefaultPrevented:()=>n,isPropagationStopped:()=>i,persist:()=>{},preventDefault:()=>{n=!0,t.preventDefault()},stopPropagation:()=>{i=!0,t.stopPropagation()}})}n?.current&&n.current(e)}}))}function y(e){return l.use?{fetchPriority:e}:{fetchpriority:e}}"u"{let O=(0,l.useCallback)(e=>{e&&(j&&(e.src=e.src),e.complete&&m(e,f,v,b,w,p,x))},[e,f,v,b,w,j,p,x]),C=(0,g.useMergedRef)(S,O);return(0,o.jsx)("img",{...E,...y(c),loading:d,width:i,height:n,decoding:a,"data-nimg":h?"fill":"1",className:u,style:s,sizes:r,srcSet:t,src:e,ref:C,onLoad:e=>{m(e.currentTarget,f,v,b,w,p,x)},onError:e=>{_(!0),"empty"!==f&&w(!0),j&&j(e)}})});function b({isAppRouter:e,imgAttributes:t}){let r={as:"image",imageSrcSet:t.srcSet,imageSizes:t.sizes,crossOrigin:t.crossOrigin,referrerPolicy:t.referrerPolicy,...y(t.fetchPriority)};return e&&a.default.preload?(a.default.preload(t.src,r),null):(0,o.jsx)(u.default,{children:(0,o.jsx)("link",{rel:"preload",href:t.srcSet?void 0:t.src,...r},"__nimg-"+t.src+t.srcSet+t.sizes)})}let w=(0,l.forwardRef)((e,t)=>{let r=(0,l.useContext)(d.RouterContext),n=(0,l.useContext)(f.ImageConfigContext),i=(0,l.useMemo)(()=>{let e=h||n||c.imageConfigDefault,t=[...e.deviceSizes,...e.imageSizes].sort((e,t)=>e-t),r=e.deviceSizes.sort((e,t)=>e-t),i=e.qualities?.sort((e,t)=>e-t);return{...e,allSizes:t,deviceSizes:r,qualities:i,localPatterns:"u"{g.current=a},[a]);let m=(0,l.useRef)(u);(0,l.useEffect)(()=>{m.current=u},[u]);let[y,w]=(0,l.useState)(!1),[_,x]=(0,l.useState)(!1),{props:P,meta:j}=(0,s.getImgProps)(e,{defaultLoader:p.default,imgConf:i,blurComplete:y,showAltText:_});return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(v,{...P,unoptimized:j.unoptimized,placeholder:j.placeholder,fill:j.fill,onLoadRef:g,onLoadingCompleteRef:m,setBlurComplete:w,setShowAltText:x,sizesInput:e.sizes,ref:t}),j.preload?(0,o.jsx)(b,{isAppRouter:!r,imgAttributes:P}):null]})});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0u0z4t0we_bgv.js b/.next/static/chunks/0yqyiard9rg2e.js similarity index 63% rename from build/_next/static/chunks/0u0z4t0we_bgv.js rename to .next/static/chunks/0yqyiard9rg2e.js index 2919027..dbce708 100644 --- a/build/_next/static/chunks/0u0z4t0we_bgv.js +++ b/.next/static/chunks/0yqyiard9rg2e.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,48228,t=>{"use strict";let e=[{n:"01",key:"input",kicker:"Input",theme:"#22C55E"},{n:"02",key:"parallel",kicker:"Parallel Execution",theme:"#8B5CF6"},{n:"03",key:"optimize",kicker:"Smart Optimization",theme:"#3B82F6"},{n:"04",key:"grading",kicker:"Performance Grading",theme:"#F59E0B"},{n:"05",key:"winner",kicker:"Strategy Comparison",theme:"#C01227"}],n=e.length;function i(t){return[(t%2==0?-1:1)*1.4,0,-(13*t)]}t.s(["N",0,n,"STAGES",0,e,"cameraFor",0,function(t){let e,r,c,a,s,o,[h,k,l]=(r=Math.floor(e=Math.max(0,Math.min(n-1,t))),c=Math.min(n-1,r+1),a=e-r,s=i(r),o=i(c),[s[0]+(o[0]-s[0])*a,s[1]+(o[1]-s[1])*a,s[2]+(o[2]-s[2])*a]);return{pos:[.7*h,k+4,l+8.2],look:[.55*h,k+1.05,l-1.6]}},"districtPosition",0,i])},30860,t=>{t.v(e=>Promise.all(["static/chunks/15p8tu-h65hwr.js","static/chunks/0cbrtnt1~j.f_.js","static/chunks/0e.~6vil2~4uy.js","static/chunks/0-w08rrpmvn8z.js","static/chunks/0b~g01t48jn6q.js"].map(e=>t.l(e))).then(()=>e(20927)))}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,48228,t=>{"use strict";let e=[{n:"01",key:"input",kicker:"Input",theme:"#22C55E"},{n:"02",key:"parallel",kicker:"Parallel Execution",theme:"#8B5CF6"},{n:"03",key:"optimize",kicker:"Smart Optimization",theme:"#3B82F6"},{n:"04",key:"grading",kicker:"Performance Grading",theme:"#F59E0B"},{n:"05",key:"winner",kicker:"Strategy Comparison",theme:"#C01227"}],i=e.length;function n(t){return[(t%2==0?-1:1)*1.4,0,-(13*t)]}t.s(["N",0,i,"STAGES",0,e,"cameraFor",0,function(t){let e,r,c,a,s,o,[h,k,l]=(r=Math.floor(e=Math.max(0,Math.min(i-1,t))),c=Math.min(i-1,r+1),a=e-r,s=n(r),o=n(c),[s[0]+(o[0]-s[0])*a,s[1]+(o[1]-s[1])*a,s[2]+(o[2]-s[2])*a]);return{pos:[.7*h,k+4,l+8.2],look:[.55*h,k+1.05,l-1.6]}},"districtPosition",0,n])},30860,t=>{t.v(e=>Promise.all(["static/chunks/15p8tu-h65hwr.js","static/chunks/0cbrtnt1~j.f_.js","static/chunks/0e.~6vil2~4uy.js","static/chunks/0d1hvye~4r7kb.js","static/chunks/0b~g01t48jn6q.js"].map(e=>t.l(e))).then(()=>e(20927)))}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0zozt9p9-3srt.css b/.next/static/chunks/0zozt9p9-3srt.css similarity index 100% rename from build/_next/static/chunks/0zozt9p9-3srt.css rename to .next/static/chunks/0zozt9p9-3srt.css diff --git a/build/_next/static/chunks/110q6k5sdl4es.js b/.next/static/chunks/110q6k5sdl4es.js similarity index 100% rename from build/_next/static/chunks/110q6k5sdl4es.js rename to .next/static/chunks/110q6k5sdl4es.js diff --git a/build/_next/static/chunks/0-8o5q..xlrv7.js b/.next/static/chunks/133p65rq~827a.js similarity index 96% rename from build/_next/static/chunks/0-8o5q..xlrv7.js rename to .next/static/chunks/133p65rq~827a.js index dbfdc86..81b1115 100644 --- a/build/_next/static/chunks/0-8o5q..xlrv7.js +++ b/.next/static/chunks/133p65rq~827a.js @@ -1,4 +1,4 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,67585,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"BailoutToCSR",{enumerable:!0,get:function(){return r}});let i=e.r(32061);function r({reason:e,children:t}){if("u"{"use strict";function i(e){return e.split("/").map(e=>encodeURIComponent(e)).join("/")}Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"encodeURIPath",{enumerable:!0,get:function(){return i}})},52157,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"PreloadChunks",{enumerable:!0,get:function(){return s}});let i=e.r(43476),r=e.r(74080),o=e.r(63599),l=e.r(9885),a=e.r(43369);function s({moduleIds:e}){if("u">typeof window)return null;let t=o.workAsyncStorage.getStore();if(void 0===t)return null;let n=[];if(t.reactLoadableManifest&&e){let i=t.reactLoadableManifest;for(let t of e){if(!i[t])continue;let e=i[t].files;n.push(...e)}}if(0===n.length)return null;let m=(0,a.getAssetTokenQuery)();return(0,i.jsx)(i.Fragment,{children:n.map(e=>{let n=`${t.assetPrefix}/_next/${(0,l.encodeURIPath)(e)}${m}`;return e.endsWith(".css")?(0,i.jsx)("link",{precedence:"dynamic",href:n,rel:"stylesheet",as:"style",nonce:t.nonce},e):((0,r.preload)(n,{as:"script",fetchPriority:"low",nonce:t.nonce}),null)})})}},69093,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return m}});let i=e.r(43476),r=e.r(71645),o=e.r(67585),l=e.r(52157);function a(e){return{default:e&&"default"in e?e.default:e}}let s={loader:()=>Promise.resolve(a(()=>null)),loading:null,ssr:!0},m=function(e){let t={...s,...e},n=(0,r.lazy)(()=>t.loader().then(a)),m=t.loading;function c(e){let a=m?(0,i.jsx)(m,{isLoading:!0,pastDelay:!0,error:null}):null,s=!t.ssr||!!t.loading,c=s?r.Suspense:r.Fragment,d=t.ssr?(0,i.jsxs)(i.Fragment,{children:["u"{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return r}});let i=e.r(55682)._(e.r(69093));function r(e,t){let n={};"function"==typeof e&&(n.loader=e);let r={...n,...t};return(0,i.default)({...r,modules:r.loadableGenerated?.modules})}("function"==typeof n.default||"object"==typeof n.default&&null!==n.default)&&void 0===n.default.__esModule&&(Object.defineProperty(n.default,"__esModule",{value:!0}),Object.assign(n.default,n),t.exports=n.default)},74528,e=>{"use strict";var t=e.i(43476),n=e.i(71645);e.s(["default",0,function(){let[e,i]=(0,n.useState)(0);(0,n.useEffect)(()=>{let e=setInterval(()=>{i(e=>+(0===e))},7e3);return()=>clearInterval(e)},[]);let r=e=>{i(e)};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("link",{rel:"preload",as:"image",href:"/images/home2-banner-1.webp"}),(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,67585,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"BailoutToCSR",{enumerable:!0,get:function(){return r}});let i=e.r(32061);function r({reason:e,children:t}){if("u"{"use strict";function i(e){return e.split("/").map(e=>encodeURIComponent(e)).join("/")}Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"encodeURIPath",{enumerable:!0,get:function(){return i}})},52157,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"PreloadChunks",{enumerable:!0,get:function(){return s}});let i=e.r(43476),r=e.r(74080),o=e.r(63599),l=e.r(9885),a=e.r(43369);function s({moduleIds:e}){if("u">typeof window)return null;let t=o.workAsyncStorage.getStore();if(void 0===t)return null;let n=[];if(t.reactLoadableManifest&&e){let i=t.reactLoadableManifest;for(let t of e){if(!i[t])continue;let e=i[t].files;n.push(...e)}}if(0===n.length)return null;let m=(0,a.getAssetTokenQuery)();return(0,i.jsx)(i.Fragment,{children:n.map(e=>{let n=`${t.assetPrefix}/_next/${(0,l.encodeURIPath)(e)}${m}`;return e.endsWith(".css")?(0,i.jsx)("link",{precedence:"dynamic",href:n,rel:"stylesheet",as:"style",nonce:t.nonce},e):((0,r.preload)(n,{as:"script",fetchPriority:"low",nonce:t.nonce}),null)})})}},69093,(e,t,n)=>{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return m}});let i=e.r(43476),r=e.r(71645),o=e.r(67585),l=e.r(52157);function a(e){return{default:e&&"default"in e?e.default:e}}let s={loader:()=>Promise.resolve(a(()=>null)),loading:null,ssr:!0},m=function(e){let t={...s,...e},n=(0,r.lazy)(()=>t.loader().then(a)),m=t.loading;function c(e){let a=m?(0,i.jsx)(m,{isLoading:!0,pastDelay:!0,error:null}):null,s=!t.ssr||!!t.loading,c=s?r.Suspense:r.Fragment,d=t.ssr?(0,i.jsxs)(i.Fragment,{children:["u"{"use strict";Object.defineProperty(n,"__esModule",{value:!0}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return r}});let i=e.r(55682)._(e.r(69093));function r(e,t){let n={};"function"==typeof e&&(n.loader=e);let r={...n,...t};return(0,i.default)({...r,modules:r.loadableGenerated?.modules})}("function"==typeof n.default||"object"==typeof n.default&&null!==n.default)&&void 0===n.default.__esModule&&(Object.defineProperty(n.default,"__esModule",{value:!0}),Object.assign(n.default,n),t.exports=n.default)},74528,e=>{"use strict";var t=e.i(43476),n=e.i(71645),i=e.i(74080);e.s(["default",0,function(){(0,i.preload)("/images/home2-banner-1.webp",{as:"image"});let[e,r]=(0,n.useState)(0);(0,n.useEffect)(()=>{let e=setInterval(()=>{r(e=>+(0===e))},7e3);return()=>clearInterval(e)},[]);let o=e=>{r(e)};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` .howits-hero-custom-bg.elementor-repeater-item-3264830, .howits-hero-custom-bg.elementor-repeater-item-6867061 { background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('/images/home2-banner-1.webp') !important; @@ -209,4 +209,4 @@ display: none !important; } } - `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden",height:"800px"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["One Journey. Complete",(0,t.jsx)("br",{}),"Control."]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["A New Logisitics",(0,t.jsx)("br",{}),"Experience"]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:()=>i(e=>+(0===e)),"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:()=>i(e=>+(0===e)),"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center",gap:"10px"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>r(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>r(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})})]})}])},16948,e=>{"use strict";var t=e.i(43476);let n=(0,e.i(70703).default)(()=>e.A(19386),{loadableGenerated:{modules:[88493]},ssr:!1,loading:()=>(0,t.jsx)("div",{style:{minHeight:"100vh"},"aria-hidden":!0})});e.s(["default",0,function(){return(0,t.jsx)(n,{})}])},19386,e=>{e.v(t=>Promise.all(["static/chunks/0b561qo91.1jg.js","static/chunks/04vqjcwjasc-3.js","static/chunks/0_54tjq7o59~u.js","static/chunks/0jraq7~~gf402.js","static/chunks/0zozt9p9-3srt.css"].map(t=>e.l(t))).then(()=>t(88493)))}]); \ No newline at end of file + `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden",height:"800px"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["One Journey. Complete",(0,t.jsx)("br",{}),"Control."]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsxs)("span",{className:"heading-content",children:["A New Logisitics",(0,t.jsx)("br",{}),"Experience"]})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:()=>r(e=>+(0===e)),"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:()=>r(e=>+(0===e)),"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center",gap:"10px"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>o(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>o(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})})]})}])},16948,e=>{"use strict";var t=e.i(43476);let n=(0,e.i(70703).default)(()=>e.A(19386),{loadableGenerated:{modules:[88493]},ssr:!1,loading:()=>(0,t.jsx)("div",{style:{minHeight:"100vh"},"aria-hidden":!0})});e.s(["default",0,function(){return(0,t.jsx)(n,{})}])},19386,e=>{e.v(t=>Promise.all(["static/chunks/0b561qo91.1jg.js","static/chunks/04vqjcwjasc-3.js","static/chunks/0_54tjq7o59~u.js","static/chunks/0o27ue53hohz_.js","static/chunks/0zozt9p9-3srt.css"].map(t=>e.l(t))).then(()=>t(88493)))}]); \ No newline at end of file diff --git a/.next/static/chunks/13ci0umlwh11-.css b/.next/static/chunks/13ci0umlwh11-.css new file mode 100644 index 0000000..cc54688 --- /dev/null +++ b/.next/static/chunks/13ci0umlwh11-.css @@ -0,0 +1,6 @@ +@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope Fallback;src:local(Arial);ascent-override:103.31%;descent-override:29.07%;line-gap-override:0.0%;size-adjust:103.19%}.manrope_67dc055e-module__BHrBnq__className{font-family:Manrope,Manrope Fallback;font-style:normal}.manrope_67dc055e-module__BHrBnq__variable{--font-manrope:"Manrope", "Manrope Fallback"} +@font-face{font-family:Space Grotesk;font-style:normal;font-weight:400;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:400;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:400;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:500;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:500;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:500;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:600;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:600;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:600;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:700;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:700;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:700;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk Fallback;src:local(Arial);ascent-override:89.71%;descent-override:26.62%;line-gap-override:0.0%;size-adjust:109.69%}.space_grotesk_2e42c3c6-module__3Wl9rq__className{font-family:Space Grotesk,Space Grotesk Fallback;font-style:normal}.space_grotesk_2e42c3c6-module__3Wl9rq__variable{--font-space-grotesk:"Space Grotesk", "Space Grotesk Fallback"} +@font-face{font-family:Syne;font-style:normal;font-weight:600;font-display:swap;src:url(../media/ab624315db63c58d-s.1487dfs7-.~d~.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Syne;font-style:normal;font-weight:600;font-display:swap;src:url(../media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Syne;font-style:normal;font-weight:600;font-display:swap;src:url(../media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Syne;font-style:normal;font-weight:700;font-display:swap;src:url(../media/ab624315db63c58d-s.1487dfs7-.~d~.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Syne;font-style:normal;font-weight:700;font-display:swap;src:url(../media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Syne;font-style:normal;font-weight:700;font-display:swap;src:url(../media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Syne;font-style:normal;font-weight:800;font-display:swap;src:url(../media/ab624315db63c58d-s.1487dfs7-.~d~.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Syne;font-style:normal;font-weight:800;font-display:swap;src:url(../media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Syne;font-style:normal;font-weight:800;font-display:swap;src:url(../media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Syne Fallback;src:local(Arial);ascent-override:93.93%;descent-override:27.93%;line-gap-override:0.0%;size-adjust:98.47%}.syne_ef5854ac-module__2TJB3a__className{font-family:Syne,Syne Fallback;font-style:normal}.syne_ef5854ac-module__2TJB3a__variable{--font-syne:"Syne", "Syne Fallback"} +@font-face{font-family:DM Sans;font-style:normal;font-weight:400;font-display:swap;src:url(../media/c3cb240f9c892514-s.163v2i5cux7-c.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:DM Sans;font-style:normal;font-weight:400;font-display:swap;src:url(../media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:DM Sans;font-style:normal;font-weight:500;font-display:swap;src:url(../media/c3cb240f9c892514-s.163v2i5cux7-c.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:DM Sans;font-style:normal;font-weight:500;font-display:swap;src:url(../media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:DM Sans Fallback;src:local(Arial);ascent-override:94.9%;descent-override:29.66%;line-gap-override:0.0%;size-adjust:104.53%}.dm_sans_2770e922-module__TdA3fW__className{font-family:DM Sans,DM Sans Fallback;font-style:normal}.dm_sans_2770e922-module__TdA3fW__variable{--font-dm-sans:"DM Sans", "DM Sans Fallback"} +@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/5476f68d60460930-s.0wxq9webf.ew4.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/5476f68d60460930-s.0wxq9webf.ew4.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/5476f68d60460930-s.0wxq9webf.ew4.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter Fallback;src:local(Arial);ascent-override:90.44%;descent-override:22.52%;line-gap-override:0.0%;size-adjust:107.12%}.inter_5dbe1e89-module__i9oJOa__className{font-family:Inter,Inter Fallback;font-style:normal}.inter_5dbe1e89-module__i9oJOa__variable{--font-inter:"Inter", "Inter Fallback"} +@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-border-style:solid;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial}}}.\@container{container-type:inline-size}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.container{width:100%}.\!hidden{display:none!important}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.size-full{width:100%;height:100%}.h-full{height:100%}.w-full{width:100%}.flex-shrink,.shrink{flex-shrink:1}.flex-grow,.grow{flex-grow:1}.border-collapse{border-collapse:collapse}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-\[shimmer-sweep_6s_infinite_linear\]{animation:6s linear infinite shimmer-sweep}.resize{resize:both}.columns-4{columns:4}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.overflow-hidden{overflow:hidden}.border{border-style:var(--tw-border-style);border-width:1px}.bg-\[linear-gradient\(110deg\,\#ffffff\,45\%\,\#c01227\,55\%\,\#ffffff\)\]{background-image:linear-gradient(110deg,#fff,45%,#c01227,55%,#fff)}.bg-\[length\:250\%_100\%\]{background-size:250% 100%}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.text-wrap{text-wrap:wrap}.text-transparent{color:#0000}.uppercase{text-transform:uppercase}.underline{text-decoration-line:underline}.ring{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.invert{--tw-invert:invert(100%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}html{scroll-behavior:smooth}.body-container{overflow:visible!important}:root{--space-section:clamp(40px, 5vw, 64px);--space-section-lg:clamp(52px, 6vw, 80px);--space-hero-gap:clamp(36px, 4.5vw, 64px);--dm-mobile-gutter:10px}.dm-section{padding-top:var(--space-section)!important;padding-bottom:var(--space-section)!important}.dm-section-lg{padding-top:var(--space-section-lg)!important;padding-bottom:var(--space-section-lg)!important}.elementor-86 .elementor-element.elementor-element-88745f4{margin-top:var(--space-hero-gap)!important}.elementor.elementor-61 .elementor-element.elementor-element-30fd9d1,.elementor.elementor-61 .elementor-element.elementor-element-b62c0b3,.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1,.elementor.elementor-61 .elementor-element.elementor-element-88745f4,.elementor.elementor-61 .elementor-element.elementor-element-bbc6760,.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc{margin-top:var(--space-section)!important;margin-bottom:0!important}html.lenis,html.lenis body{height:auto}.lenis.lenis-smooth{scroll-behavior:auto!important}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-stopped{overflow:hidden}.lenis.lenis-smooth iframe{pointer-events:none}*,:before,:after{font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif}:not(i):not(svg):not(path):not(canvas):not(.fa):not(.fas):not(.far):not(.fab):not([class*=fa-]):not([class*=eicon-]):not([class*=fontello]){font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizelegibility}@media (min-width:1025px){#masthead .elementor-element.elementor-element-466de1b{padding:0 28px!important;top:5px!important}#masthead .elementor-element.elementor-element-e052838{background:0 0!important;border-radius:28px!important;margin-left:1.4%!important}#masthead .elementor-element.elementor-element-d681ece{align-items:center!important;min-height:104px!important}#masthead .elementor-element.elementor-element-472172e{padding-top:18px!important;padding-bottom:18px!important}#masthead .elementor-element.elementor-element-846e53d .hfe-site-logo .hfe-site-logo-container img{width:190px!important;height:auto!important;margin-left:24px!important}#masthead .elementor-element.elementor-element-e44ee7e,#masthead .elementor-element.elementor-element-f961133{padding-top:14px!important;padding-bottom:14px!important}#masthead .elementor-element.elementor-element-0b7bf6f>.elementor-widget-container{border-radius:22px!important;align-items:center!important;height:58px!important;padding:0 42px!important;display:flex!important}#masthead .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li>a{white-space:nowrap!important;height:auto!important;min-height:auto!important;padding:6px 14px!important;font-size:15px!important;line-height:1.2!important}#masthead .header-menu-container .main-menu{gap:8px!important}#masthead .elementor-element.elementor-element-cabdb09 a.header-button{border-radius:24px!important;min-width:185px!important;min-height:58px!important;padding:0 34px!important;font-size:18px!important;line-height:58px!important}#masthead .elementor-element.elementor-element-466de1b.dm-header-scrolled{border-radius:24px!important;width:auto!important;top:15px!important;left:20px!important;right:20px!important}}.dm-contact-section{color:#fff;background:#1f1f1f;grid-template-columns:minmax(0,1fr) minmax(420px,48%);min-height:720px;margin:0;display:grid;position:relative;overflow:hidden}.dm-contact-left{min-width:0;padding:clamp(48px,5vw,76px) clamp(28px,5vw,72px);position:relative;overflow:hidden}.dm-contact-map{z-index:0;opacity:.34;pointer-events:none;-webkit-user-select:none;user-select:none;width:min(980px,112%);max-width:none;position:absolute;bottom:-1%;left:-5%}.dm-contact-kicker,.dm-contact-title,.dm-contact-copy,.dm-contact-info{z-index:1;position:relative}.dm-contact-kicker{color:#fff;margin:0 0 clamp(44px,5vw,64px);font-size:clamp(16px,1.2vw,20px);font-weight:600;line-height:1.2}.dm-contact-title{color:#fff;letter-spacing:0;text-transform:uppercase;max-width:850px;margin:0;font-size:clamp(44px,5.2vw,86px);font-weight:400;line-height:1.18}.dm-contact-copy{color:#ffffffeb;margin:clamp(36px,4.5vw,58px) 0 0;font-size:clamp(18px,1.55vw,26px);font-weight:400;line-height:1.45}.dm-contact-info{grid-template-columns:minmax(180px,.85fr) minmax(260px,1.45fr);gap:clamp(32px,5vw,74px);max-width:860px;margin-top:clamp(72px,7vw,114px);display:grid}.dm-contact-info-item h3{color:#fff;margin:0 0 32px;font-size:clamp(18px,1.5vw,25px);font-weight:800;line-height:1.2}.dm-contact-info-item p{color:#fff;margin:0;font-size:clamp(17px,1.35vw,24px);font-weight:500;line-height:1.6}.dm-contact-card{color:#1b1b1b;background:#fff;border-radius:34px 34px 0 0;align-self:stretch;min-width:0;margin:22px 34px 0 0;padding:clamp(72px,7vw,132px) clamp(42px,7.2vw,150px) clamp(50px,5.5vw,82px)}.dm-contact-card h3{color:#1b1b1b;letter-spacing:0;margin:0 0 clamp(44px,5vw,68px);font-size:clamp(34px,2.6vw,45px);font-weight:800;line-height:1.1}.dm-contact-form{flex-direction:column;gap:28px;display:flex}.dm-contact-form label{margin:0;display:block}.dm-contact-form label>span{clip:rect(0, 0, 0, 0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.dm-contact-form input,.dm-contact-form textarea{color:#1b1b1b;width:100%;box-shadow:none;background:#fff;border:1.5px solid #a9a9a9;border-radius:14px;outline:none;margin:0;font-family:inherit;font-size:clamp(17px,1.05vw,20px);font-weight:500;line-height:1.4;transition:border-color .2s,box-shadow .2s}.dm-contact-form input{height:72px;padding:0 28px}.dm-contact-form textarea{resize:vertical;min-height:250px;padding:24px 28px}.dm-contact-form input::placeholder,.dm-contact-form textarea::placeholder{color:#9c9c9c;opacity:1}.dm-contact-form input:focus,.dm-contact-form textarea:focus{border-color:#c01227;box-shadow:0 0 0 3px #c012271c}.dm-contact-status{margin:-6px 0 0;font-size:15px;font-weight:700;line-height:1.4}.dm-contact-status-success{color:#247a3d}.dm-contact-status-error{color:#c01227}.dm-contact-submit{color:#2d2d2d;cursor:pointer;background:#fff;border:1.5px solid #e31d32;border-radius:14px;align-self:flex-start;align-items:stretch;height:72px;margin-top:26px;padding:0;font-family:inherit;font-size:clamp(16px,1.02vw,19px);font-weight:800;line-height:1;transition:transform .2s,border-color .2s,color .2s;display:inline-flex;overflow:hidden}.dm-contact-submit span:first-child{justify-content:center;align-items:center;min-width:220px;padding:0 34px;display:inline-flex}.dm-contact-submit-icon{background:#c01227;width:70px;min-width:70px;display:inline-flex;position:relative}.dm-contact-submit-icon:before,.dm-contact-submit-icon:after{content:"";background:#fff;position:absolute}.dm-contact-submit-icon:before{transform-origin:100%;width:28px;height:3px;top:35px;left:23px;transform:rotate(-45deg)}.dm-contact-submit-icon:after{background:0 0;border-top:3px solid #fff;border-right:3px solid #fff;width:16px;height:16px;top:25px;right:25px}.dm-contact-submit:hover,.dm-contact-submit:focus-visible{color:#111;border-color:#c01227;transform:translateY(-1px)}.dm-contact-submit:disabled{cursor:wait;opacity:.72}@media (max-width:1200px){.dm-contact-section{grid-template-columns:1fr}.dm-contact-left{min-height:640px}.dm-contact-card{border-radius:28px;margin:0 28px 40px}}@media (max-width:720px){.dm-contact-left{min-height:auto;padding:42px 20px 58px}.dm-contact-title{font-size:clamp(38px,12vw,58px)}.dm-contact-info{grid-template-columns:1fr;gap:42px;margin-top:54px}.dm-contact-info-item h3{margin-bottom:18px}.dm-contact-card{border-radius:28px;margin:0 20px 28px;padding:28px 20px 24px}.dm-contact-card h3{margin-bottom:24px}.dm-contact-form{gap:18px}.dm-contact-form input{height:56px;padding:0 18px}.dm-contact-form textarea{min-height:170px;padding:18px}.dm-contact-submit{width:100%;height:60px}.dm-contact-submit span:first-child{flex:auto;min-width:0;padding:0 20px}.dm-contact-submit-icon{width:60px;min-width:60px}}.industry-solutions-grid{grid-template-columns:repeat(3,1fr);gap:30px;width:100%;margin:30px 0 0;display:grid}@media (max-width:1024px){.industry-solutions-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){.industry-solutions-grid{grid-template-columns:1fr}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc{--padding-left:0px!important;--padding-right:0px!important;box-sizing:border-box!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc>.e-con-inner{width:100%!important;max-width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}}@media (max-width:767px){.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc>.e-con-inner{width:100%!important;max-width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-d602f7f{box-sizing:border-box;--padding-left:20px!important;--padding-right:20px!important;width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;padding-left:20px!important;padding-right:20px!important}.elementor.elementor-61 .elementor-element.elementor-element-f64bd88,.elementor.elementor-61 .elementor-element.elementor-element-5ed2dbb,.elementor.elementor-61 .elementor-element.elementor-element-6829276{box-sizing:border-box;--padding-left:0px!important;--padding-right:0px!important;--margin-left:0px!important;--margin-right:0px!important;width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-6829276{--e-con-grid-template-columns:minmax(0, 1fr)!important;--grid-justify-content:stretch!important;--justify-items:stretch!important;grid-template-columns:minmax(0,1fr)!important;justify-content:stretch!important;justify-items:stretch!important;min-width:0!important}.elementor.elementor-61 .industry-solutions-grid,.elementor.elementor-61 .industry-card-link{width:100%;min-width:0;max-width:100%}.elementor.elementor-61 .industry-solutions-grid{margin-left:0!important;margin-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1,.elementor.elementor-86 .elementor-element.elementor-element-c2c601a,.elementor.elementor-104 .elementor-element.elementor-element-c70681e{--padding-left:var(--dm-mobile-gutter)!important;--padding-right:var(--dm-mobile-gutter)!important;padding-left:var(--dm-mobile-gutter)!important;padding-right:var(--dm-mobile-gutter)!important;box-sizing:border-box!important}.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1>.e-con-inner,.elementor.elementor-86 .elementor-element.elementor-element-c2c601a>.e-con-inner,.elementor.elementor-104 .elementor-element.elementor-element-c70681e>.e-con-inner{box-sizing:border-box!important;width:100%!important;max-width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1>.e-con-inner>.e-con,.elementor.elementor-86 .elementor-element.elementor-element-c2c601a>.e-con-inner>.e-con,.elementor.elementor-104 .elementor-element.elementor-element-c70681e>.e-con-inner>.e-con{--padding-left:0px!important;--padding-right:0px!important;box-sizing:border-box!important;width:100%!important;max-width:100%!important;padding-left:0!important;padding-right:0!important}.comparison-section .container{width:calc(100% - (var(--dm-mobile-gutter) * 2))!important;max-width:calc(100% - (var(--dm-mobile-gutter) * 2))!important;box-sizing:border-box!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}.wcd-inner{box-sizing:border-box!important;width:100%!important;max-width:100%!important;padding-left:0!important;padding-right:0!important}}.industry-card-link{background:#121212;border-radius:30px;height:600px;text-decoration:none;transition:transform .4s cubic-bezier(.2,.8,.2,1),box-shadow .4s;display:block;position:relative;overflow:hidden;box-shadow:0 10px 30px #0000001f}.industry-card-link:after{content:"";z-index:6;pointer-events:none;border:1px solid #ffffff14;border-radius:30px;transition:border-color .4s;position:absolute;inset:0}@keyframes shimmer-sweep{0%{background-position:200%}to{background-position:-200%}}.industry-card-link:before{content:"";z-index:7;pointer-events:none;background:linear-gradient(90deg,#fff0 0%,#ffffff2e 50%,#fff0 100%);width:60%;height:100%;position:absolute;top:0;left:0;transform:translate(-150%)skew(-25deg)}.industry-card-link:hover:before{animation:1.2s cubic-bezier(.2,.8,.2,1) forwards shimmer-sweep}.industry-card-link:hover{transform:translateY(-5px);box-shadow:0 20px 40px #c0122740}.industry-card-link:hover:after{border-color:#ffffff40}.industry-card-bg{z-index:1;transition:transform .6s cubic-bezier(.2,.8,.2,1);position:absolute;inset:0}.industry-card-link:hover .industry-card-bg{transform:scale(1.04)}.industry-card-overlay{z-index:2;background:linear-gradient(#0000 0%,#0000004d 50%,#000000d9 100%);transition:opacity .4s cubic-bezier(.2,.8,.2,1);position:absolute;inset:0}.industry-card-link:hover .industry-card-overlay{opacity:0}.industry-card-hover-bg{z-index:3;opacity:0;background:linear-gradient(#d71428cc 0%,#c01227e0 100%);transition:opacity .4s cubic-bezier(.2,.8,.2,1);position:absolute;inset:0}.industry-card-link:hover .industry-card-hover-bg{opacity:1}.industry-card-default-content{z-index:4;opacity:1;transition:opacity .3s,transform .3s;position:absolute;bottom:40px;left:24px;transform:translateY(0)}.industry-card-link:hover .industry-card-default-content{opacity:0;transform:translateY(10px)}.industry-card-default-title{color:#fff!important;letter-spacing:-.3px!important;text-transform:none!important;font-size:22px!important;font-weight:700!important;line-height:1.2!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;margin:0!important}.industry-card-hover-content{z-index:5;opacity:0;pointer-events:none;flex-direction:column;justify-content:space-between;padding:40px 24px;transition:opacity .4s cubic-bezier(.2,.8,.2,1),transform .4s cubic-bezier(.2,.8,.2,1);display:flex;position:absolute;inset:0;transform:translateY(6px)}.industry-card-link:hover .industry-card-hover-content{opacity:1;pointer-events:auto;transform:translateY(0)}.industry-card-hover-top{flex-direction:column;gap:20px;display:flex}.industry-card-hover-top:before{content:"";background:#ffffff40;width:100%;height:1px;margin-bottom:5px;display:block}.industry-card-description{color:#fff!important;letter-spacing:-.2px!important;font-size:18px!important;font-weight:600!important;line-height:1.4!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;margin:0!important}.industry-card-section-title{color:#fff!important;letter-spacing:1.5px!important;text-transform:uppercase!important;opacity:.9!important;font-size:12px!important;font-weight:800!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;margin-bottom:10px!important}.industry-card-list{flex-direction:column!important;gap:6px!important;margin:0!important;padding:0!important;list-style:none!important;display:flex!important}.industry-card-list-item{opacity:0;transition:opacity .3s cubic-bezier(.2,.8,.2,1),transform .3s cubic-bezier(.2,.8,.2,1);transform:translateY(5px);color:#ffffffe6!important;font-size:15px!important;line-height:1.4!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;padding-left:18px!important;position:relative!important}.industry-card-link:hover .industry-card-list-item{opacity:1;transform:translateY(0)}.industry-card-list-item.bullet-1{transition-delay:40ms}.industry-card-list-item.bullet-2{transition-delay:80ms}.industry-card-list-item.bullet-3{transition-delay:.12s}.industry-card-list-item.bullet-4{transition-delay:.16s}.industry-card-list-item.bullet-5{transition-delay:.2s}.industry-card-list-item.bullet-6{transition-delay:.24s}.industry-card-list-item:before{content:""!important;background-color:#fff!important;border-radius:50%!important;width:6px!important;height:6px!important;position:absolute!important;top:7px!important;left:0!important}.industry-card-hover-bottom{align-items:center;gap:15px;display:flex}.industry-card-hover-icon{color:#c01227;background:#fff;border-radius:50%;justify-content:center;align-items:center;width:48px;height:48px;transition:transform .4s cubic-bezier(.2,.8,.2,1),background-color .3s,color .3s;display:flex;box-shadow:0 4px 10px #0000001a}.industry-card-link:hover .industry-card-hover-icon{color:#c01227;background-color:#fff;transform:scale(1.08)translateY(-2px)}.industry-card-hover-title{color:#fff!important;font-size:24px!important;font-weight:700!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;text-transform:none!important;letter-spacing:-.5px!important;margin:0!important}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc{display:flex}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc>.e-con-inner{box-sizing:border-box;flex-direction:column;width:100%;max-width:1480px;margin-left:auto;margin-right:auto;display:flex;padding-left:clamp(20px,4vw,50px)!important;padding-right:clamp(20px,4vw,50px)!important}.dm-section-container{box-sizing:border-box;width:100%;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}@media (max-width:1024px){.dm-section-container{padding-left:var(--dm-mobile-gutter,10px);padding-right:var(--dm-mobile-gutter,10px)}}@media (min-width:1025px){.wings-hero-page.elementor-element-741f56c,.af-hero-page.elementor-element-741f56c{--padding-top:20px;--padding-right:20px;--padding-bottom:20px;--padding-left:20px;padding:20px!important}}.custom-standard-hero-container{box-sizing:border-box!important;flex-direction:column!important;width:100%!important;max-width:100%!important;margin:0 auto!important;padding:20px!important;display:flex!important;position:relative!important}.custom-standard-hero-card{width:100%!important;height:800px!important;min-height:800px!important;box-shadow:none!important;background-position:50%!important;background-repeat:no-repeat!important;background-size:cover!important;border-radius:25px!important;justify-content:center!important;align-items:center!important;margin:0!important;display:flex!important;position:relative!important;overflow:hidden!important}.custom-standard-hero-card:before{content:""!important;background:var(--hero-overlay,linear-gradient(to bottom, #00000073 0%, #000000c7 55%, #000000f2 100%))!important;z-index:1!important;position:absolute!important;inset:0!important}.custom-standard-hero-card>*{z-index:2!important;position:relative!important}@media (max-width:1024px){.custom-standard-hero-container{padding:0 10px 10px!important}}@media (max-width:840px){.custom-standard-hero-card{border-radius:22px!important;height:600px!important;min-height:600px!important}body .elementor .elementor-element.elementor-element-741f56c,body .custom-standard-hero-container,body .miletruth-hero .elementor-element.elementor-element-86f3204{width:100%!important;max-width:100%!important;padding:0 var(--dm-mobile-gutter) var(--dm-mobile-gutter) var(--dm-mobile-gutter)!important;--padding-top:0px!important;--padding-right:var(--dm-mobile-gutter)!important;--padding-bottom:var(--dm-mobile-gutter)!important;--padding-left:var(--dm-mobile-gutter)!important;--padding-block-start:0px!important;box-sizing:border-box!important;border-radius:0!important;margin-top:0!important;margin-bottom:0!important;overflow:visible!important}body .elementor .elementor-element.elementor-element-6c7cbcb .owl-stage-outer,body .custom-standard-hero-card,body .miletruth-hero .miletruth-hero-container{box-sizing:border-box!important;border-radius:25px!important;width:100%!important;height:600px!important;min-height:600px!important;margin-top:0!important;margin-bottom:0!important;overflow:hidden!important}body .elementor .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item,body .elementor .elementor-element.elementor-element-6c7cbcb .content-item,body .miletruth-hero .slide-content{height:600px!important;min-height:600px!important}body .elementor .elementor-element.elementor-element-741f56c+*,body .custom-standard-hero-container+*,body .elementor-63.miletruth-hero+*{margin-top:0!important}}@media (max-width:480px){body .elementor .elementor-element.elementor-element-6c7cbcb .owl-stage-outer,body .custom-standard-hero-card,body .miletruth-hero .miletruth-hero-container{border-radius:25px!important;height:520px!important;min-height:520px!important;margin-top:7px!important}body .elementor .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item,body .elementor .elementor-element.elementor-element-6c7cbcb .content-item,body .miletruth-hero .slide-content{height:520px!important;min-height:520px!important}body .miletruth-hero .miletruth-hero-container{padding-top:60px!important;padding-bottom:60px!important}}@media (max-width:1024px){.elementor-element.elementor-element-741f56c{--padding-top:0px!important;--padding-block-start:0px!important;padding-top:0!important}.miletruth-hero-container{margin-top:0!important}.elementor-86 #women-entrepreneurship.elementor-element-bbc6760,.elementor-86 .comparison-section,.elementor-86 .elementor-element.elementor-element-bbc6760:not(#women-entrepreneurship),.elementor-86 .elementor-element.elementor-element-c2c601a,.elementor-59 .elementor-element.elementor-element-bbc6760,.elementor-104 .elementor-element.elementor-element-c70681e{margin-top:var(--space-section)!important;margin-bottom:0!important}.elementor-59 .elementor-element.elementor-element-3b4a7cc{margin-top:var(--space-hero-gap)!important;margin-bottom:0!important}.elementor-86 .elementor-element.elementor-element-88745f4:first-of-type{margin-top:var(--space-hero-gap)!important}.elementor-86 .elementor-element.elementor-element-88745f4~.elementor-element.elementor-element-88745f4{margin-top:var(--space-section)!important}}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false} diff --git a/build/_next/static/chunks/0zi3_4wi6-b2t.css b/.next/static/chunks/144so~-zgdm9_.css similarity index 82% rename from build/_next/static/chunks/0zi3_4wi6-b2t.css rename to .next/static/chunks/144so~-zgdm9_.css index b8e1321..0e24e67 100644 --- a/build/_next/static/chunks/0zi3_4wi6-b2t.css +++ b/.next/static/chunks/144so~-zgdm9_.css @@ -1,2 +1,2 @@ -.WingsHowItWorks-module__yyfdHG__section{background:linear-gradient(#fbfaf7 0%,#f5f2ec 100%);border-radius:30px;margin-bottom:40px;margin-left:24px;margin-right:24px;padding:clamp(56px,7vw,96px) 0 clamp(80px,8vw,120px);position:relative;overflow:hidden}.WingsHowItWorks-module__yyfdHG__sectionShell{box-sizing:border-box;width:100%;max-width:1420px;margin:0 auto;padding:0 5vw;position:relative}@media (max-width:1024px){.WingsHowItWorks-module__yyfdHG__sectionShell{padding:0 24px}}.WingsHowItWorks-module__yyfdHG__headerRow{justify-content:space-between;align-items:flex-start;gap:32px;margin-bottom:clamp(48px,6vw,88px);display:flex}.WingsHowItWorks-module__yyfdHG__header{text-align:left;max-width:780px;margin:0}.WingsHowItWorks-module__yyfdHG__eyebrow{letter-spacing:1.5px;text-transform:lowercase;color:#14120f80;margin-bottom:22px;font-size:12px;font-weight:700}.WingsHowItWorks-module__yyfdHG__title{margin:0;letter-spacing:-.01em!important;text-transform:uppercase!important;color:#17140f!important;font-size:clamp(32px,4.6vw,68px)!important;font-weight:800!important;line-height:1.02!important}.WingsHowItWorks-module__yyfdHG__progress{flex-direction:column;flex-shrink:0;align-items:flex-end;gap:10px;margin-top:4px;display:flex}.WingsHowItWorks-module__yyfdHG__progressCount{letter-spacing:.5px;color:#17140f;white-space:nowrap;font-size:13px;font-weight:700}.WingsHowItWorks-module__yyfdHG__progressTrack{background:#17140f1f;border-radius:2px;width:110px;height:2px;position:relative;overflow:hidden}.WingsHowItWorks-module__yyfdHG__progressFill{background:#c8102e;height:100%;transition:width .5s cubic-bezier(.16,1,.3,1);position:absolute;top:0;left:0}.WingsHowItWorks-module__yyfdHG__flow{align-items:stretch;width:100%;display:flex}.WingsHowItWorks-module__yyfdHG__step{cursor:pointer;border-left:1px solid #17140f24;flex:1 1 0;grid-template-rows:auto 1fr auto;min-width:0;min-height:clamp(200px,18vw,260px);padding:0 32px;display:grid;position:relative}.WingsHowItWorks-module__yyfdHG__step:first-child{border-left:none;padding-left:0}.WingsHowItWorks-module__yyfdHG__step:last-child{padding-right:0}.WingsHowItWorks-module__yyfdHG__step:focus-visible{outline-offset:8px;border-radius:4px;outline:2px solid #c8102e8c}.WingsHowItWorks-module__yyfdHG__stepTop{align-items:flex-start;gap:8px;display:flex}.WingsHowItWorks-module__yyfdHG__stepNum{letter-spacing:-.02em;color:#0000;-webkit-text-stroke:1.5px #17140f38;font-size:clamp(44px,5.1vw,92px);font-weight:800;line-height:.85;transition:-webkit-text-stroke-color .4s,filter .4s}.WingsHowItWorks-module__yyfdHG__stepActive .WingsHowItWorks-module__yyfdHG__stepNum{-webkit-text-stroke-color:#c8102e;filter:drop-shadow(0 0 14px #c8102e2e)}.WingsHowItWorks-module__yyfdHG__stepTag{letter-spacing:2px;text-transform:uppercase;color:#17140f66;align-items:center;gap:6px;margin-top:6px;font-size:10.5px;font-weight:700;transition:color .4s;display:flex}.WingsHowItWorks-module__yyfdHG__stepIcon{color:inherit;justify-content:center;align-items:center;display:flex}.WingsHowItWorks-module__yyfdHG__stepActive .WingsHowItWorks-module__yyfdHG__stepTag{color:#c8102e}.WingsHowItWorks-module__yyfdHG__stepBottom{align-self:end;max-width:280px}.WingsHowItWorks-module__yyfdHG__stepTitle{text-transform:none!important;color:#17140f!important;margin:0 0 10px!important;font-size:19px!important;font-weight:700!important;line-height:1.3!important}.WingsHowItWorks-module__yyfdHG__stepDesc{color:#17140f8c;margin:0;font-size:13.5px;line-height:1.65}@media (max-width:1024px){.WingsHowItWorks-module__yyfdHG__headerRow{flex-direction:column;align-items:flex-start;gap:24px}.WingsHowItWorks-module__yyfdHG__progress{align-items:flex-start}.WingsHowItWorks-module__yyfdHG__flow{grid-template-columns:repeat(2,minmax(0,1fr));gap:40px 28px;display:grid}.WingsHowItWorks-module__yyfdHG__step{border-left:none;flex:none;min-height:0;padding:0;display:block}.WingsHowItWorks-module__yyfdHG__stepBottom{max-width:none;margin-top:24px}.WingsHowItWorks-module__yyfdHG__step:nth-child(n+3){border-top:1px solid #17140f24;padding-top:28px}.WingsHowItWorks-module__yyfdHG__flow>.WingsHowItWorks-module__yyfdHG__step:last-child{grid-column:1/-1}}@media (max-width:600px){.WingsHowItWorks-module__yyfdHG__section{margin-left:var(--dm-mobile-gutter,10px);margin-right:var(--dm-mobile-gutter,10px);padding-top:44px;padding-bottom:44px}.WingsHowItWorks-module__yyfdHG__sectionShell{padding-left:10px;padding-right:10px}.WingsHowItWorks-module__yyfdHG__flow{flex-direction:column;display:flex}.WingsHowItWorks-module__yyfdHG__step{padding:28px 0}.WingsHowItWorks-module__yyfdHG__step:first-child{padding-top:0}.WingsHowItWorks-module__yyfdHG__step:not(:first-child){border-top:1px solid #17140f24}.WingsHowItWorks-module__yyfdHG__step:last-child{padding-bottom:0}} +.WingsHowItWorks-module__yyfdHG__section{background:linear-gradient(#fbfaf7 0%,#f5f2ec 100%);border-radius:30px;margin-bottom:40px;margin-left:24px;margin-right:24px;padding:clamp(56px,7vw,96px) 0 clamp(80px,8vw,120px);position:relative;overflow:hidden}.WingsHowItWorks-module__yyfdHG__sectionShell{box-sizing:border-box;width:100%;max-width:1420px;margin:0 auto;padding:0 5vw;position:relative}@media (max-width:1024px){.WingsHowItWorks-module__yyfdHG__sectionShell{padding:0 24px}}.WingsHowItWorks-module__yyfdHG__headerRow{justify-content:space-between;align-items:flex-start;gap:32px;margin-bottom:clamp(48px,6vw,88px);display:flex}.WingsHowItWorks-module__yyfdHG__header{text-align:left;max-width:780px;margin:0}.WingsHowItWorks-module__yyfdHG__eyebrow{letter-spacing:1.5px;text-transform:lowercase;color:#14120f80;margin-bottom:22px;font-size:12px;font-weight:700}.WingsHowItWorks-module__yyfdHG__title{margin:0;letter-spacing:-.01em!important;text-transform:uppercase!important;color:#17140f!important;font-size:clamp(32px,4.6vw,68px)!important;font-weight:800!important;line-height:1.02!important}.WingsHowItWorks-module__yyfdHG__progress{flex-direction:column;flex-shrink:0;align-items:flex-end;gap:10px;margin-top:4px;display:flex}.WingsHowItWorks-module__yyfdHG__progressCount{letter-spacing:.5px;color:#17140f;white-space:nowrap;font-size:13px;font-weight:700}.WingsHowItWorks-module__yyfdHG__progressTrack{background:#17140f1f;border-radius:2px;width:110px;height:2px;position:relative;overflow:hidden}.WingsHowItWorks-module__yyfdHG__progressFill{background:#c8102e;height:100%;transition:width .5s cubic-bezier(.16,1,.3,1);position:absolute;top:0;left:0}.WingsHowItWorks-module__yyfdHG__flow{align-items:stretch;width:100%;display:flex}.WingsHowItWorks-module__yyfdHG__step{cursor:pointer;border-left:1px solid #17140f24;flex:1 1 0;grid-template-rows:auto 1fr auto;min-width:0;min-height:clamp(200px,18vw,260px);padding:0 32px;display:grid;position:relative}.WingsHowItWorks-module__yyfdHG__step:first-child{border-left:none;padding-left:0}.WingsHowItWorks-module__yyfdHG__step:last-child{padding-right:0}.WingsHowItWorks-module__yyfdHG__step:focus-visible{outline-offset:8px;border-radius:4px;outline:2px solid #c8102e8c}.WingsHowItWorks-module__yyfdHG__stepTop{align-items:flex-start;gap:8px;display:flex}.WingsHowItWorks-module__yyfdHG__stepNum{letter-spacing:-.02em;color:#0000;-webkit-text-stroke:1.5px #17140f38;font-size:clamp(44px,5.1vw,92px);font-weight:800;line-height:.85;transition:-webkit-text-stroke-color .4s,filter .4s}.WingsHowItWorks-module__yyfdHG__stepActive .WingsHowItWorks-module__yyfdHG__stepNum{-webkit-text-stroke-color:#c8102e;filter:drop-shadow(0 0 14px #c8102e2e)}.WingsHowItWorks-module__yyfdHG__stepTag{letter-spacing:2px;text-transform:uppercase;color:#17140f66;align-items:center;gap:6px;margin-top:6px;font-size:10.5px;font-weight:700;transition:color .4s;display:flex}.WingsHowItWorks-module__yyfdHG__stepIcon{color:inherit;justify-content:center;align-items:center;display:flex}.WingsHowItWorks-module__yyfdHG__stepActive .WingsHowItWorks-module__yyfdHG__stepTag{color:#c8102e}.WingsHowItWorks-module__yyfdHG__stepBottom{align-self:end;max-width:280px}.WingsHowItWorks-module__yyfdHG__stepTitle{text-transform:none!important;color:#17140f!important;margin:0 0 10px!important;font-size:19px!important;font-weight:700!important;line-height:1.3!important}.WingsHowItWorks-module__yyfdHG__stepDesc{color:#17140f8c;margin:0;font-size:13.5px;line-height:1.65}@media (min-width:1200px){.WingsHowItWorks-module__yyfdHG__step:nth-child(4) .WingsHowItWorks-module__yyfdHG__stepBottom,.WingsHowItWorks-module__yyfdHG__step:nth-child(5) .WingsHowItWorks-module__yyfdHG__stepBottom{min-height:102px}}@media (max-width:1024px){.WingsHowItWorks-module__yyfdHG__headerRow{flex-direction:column;align-items:flex-start;gap:24px}.WingsHowItWorks-module__yyfdHG__progress{align-items:flex-start}.WingsHowItWorks-module__yyfdHG__flow{grid-template-columns:repeat(2,minmax(0,1fr));gap:40px 28px;display:grid}.WingsHowItWorks-module__yyfdHG__step{border-left:none;flex:none;min-height:0;padding:0;display:block}.WingsHowItWorks-module__yyfdHG__stepBottom{max-width:none;margin-top:24px}.WingsHowItWorks-module__yyfdHG__step:nth-child(n+3){border-top:1px solid #17140f24;padding-top:28px}.WingsHowItWorks-module__yyfdHG__flow>.WingsHowItWorks-module__yyfdHG__step:last-child{grid-column:1/-1}}@media (max-width:600px){.WingsHowItWorks-module__yyfdHG__section{margin-left:var(--dm-mobile-gutter,10px);margin-right:var(--dm-mobile-gutter,10px);padding-top:44px;padding-bottom:44px}.WingsHowItWorks-module__yyfdHG__sectionShell{padding-left:10px;padding-right:10px}.WingsHowItWorks-module__yyfdHG__flow{flex-direction:column;display:flex}.WingsHowItWorks-module__yyfdHG__step{padding:28px 0}.WingsHowItWorks-module__yyfdHG__step:first-child{padding-top:0}.WingsHowItWorks-module__yyfdHG__step:not(:first-child){border-top:1px solid #17140f24}.WingsHowItWorks-module__yyfdHG__step:last-child{padding-bottom:0}} .WingsInfrastructure-module__akH2-q__section{padding:var(--space-section-lg,100px) 0;background:#09090b;border-radius:30px;margin-bottom:30px;margin-left:24px;margin-right:24px;position:relative;overflow:hidden}.WingsInfrastructure-module__akH2-q__section:before{content:"";aspect-ratio:1;filter:blur(8px);pointer-events:none;z-index:0;background:radial-gradient(circle,#ffffff0d 0%,#c8102e0d 40%,#0000 68%);width:58%;animation:14s ease-in-out infinite alternate WingsInfrastructure-module__akH2-q__infraGlowDrift;position:absolute;top:-18%;left:50%;transform:translate(-50%)}.WingsInfrastructure-module__akH2-q__section:after{content:"";pointer-events:none;z-index:0;background:radial-gradient(120% 90% at 50% 0,#0000 50%,#00000080 100%);position:absolute;inset:0}@keyframes WingsInfrastructure-module__akH2-q__infraGlowDrift{0%{opacity:.7;transform:translate(-52%)translateY(0)}to{opacity:1;transform:translate(-48%)translateY(10px)}}@media (prefers-reduced-motion:reduce){.WingsInfrastructure-module__akH2-q__section:before{animation:none}}.WingsInfrastructure-module__akH2-q__sectionShell{box-sizing:border-box;z-index:1;width:100%;max-width:1420px;margin:0 auto;padding:0 5vw;position:relative}@media (max-width:1024px){.WingsInfrastructure-module__akH2-q__sectionShell{padding:0 24px}}.WingsInfrastructure-module__akH2-q__header{text-align:center;width:100%;max-width:700px;margin:0 auto 56px}.WingsInfrastructure-module__akH2-q__eyebrow{letter-spacing:2px;text-transform:uppercase;color:#ffffff73;margin-bottom:16px;font-size:13px;font-weight:700}.WingsInfrastructure-module__akH2-q__title{margin:0;letter-spacing:-.03em!important;text-transform:none!important;color:#fff!important;font-size:clamp(28px,3.2vw,46px)!important;font-weight:800!important;line-height:1.15!important}.WingsInfrastructure-module__akH2-q__grid{align-items:flex-start;width:100%;display:flex}.WingsInfrastructure-module__akH2-q__card{border-left:1px solid #ffffff17;flex:1 1 0;min-width:0;padding:0 30px;transition:border-color .4s}.WingsInfrastructure-module__akH2-q__card:first-child{border-left:none;padding-left:0}.WingsInfrastructure-module__akH2-q__icon{color:#ffffff8c;border:1px solid #ffffff24;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:44px;height:44px;margin-bottom:26px;transition:border-color .4s,color .4s,background-color .4s,box-shadow .4s;display:flex}.WingsInfrastructure-module__akH2-q__card:hover .WingsInfrastructure-module__akH2-q__icon{color:#fff;background:#c8102e1f;border-color:#c8102e8c;box-shadow:0 0 18px #c8102e47}.WingsInfrastructure-module__akH2-q__cardTitle{margin:0 0 10px;transition:color .4s;text-transform:none!important;color:#ffffffd1!important;font-size:17px!important;font-weight:700!important;line-height:1.3!important}.WingsInfrastructure-module__akH2-q__card:hover .WingsInfrastructure-module__akH2-q__cardTitle{color:#fff!important}.WingsInfrastructure-module__akH2-q__cardDesc{color:#ffffff73;margin:0;font-size:16px;line-height:1.6;transition:color .4s}.WingsInfrastructure-module__akH2-q__card:hover .WingsInfrastructure-module__akH2-q__cardDesc{color:#ffffff9e}@media (max-width:1024px){.WingsInfrastructure-module__akH2-q__section{padding:var(--space-section,64px) 0}.WingsInfrastructure-module__akH2-q__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:34px 28px;display:grid}.WingsInfrastructure-module__akH2-q__card{border-left:none;padding:0}.WingsInfrastructure-module__akH2-q__card:nth-child(n+3){border-top:1px solid #ffffff17;padding-top:28px}}@media (max-width:600px){.WingsInfrastructure-module__akH2-q__section{margin-left:var(--dm-mobile-gutter,10px);margin-right:var(--dm-mobile-gutter,10px);padding-top:44px;padding-bottom:44px}.WingsInfrastructure-module__akH2-q__sectionShell{padding-left:10px;padding-right:10px}.WingsInfrastructure-module__akH2-q__grid{flex-direction:column;display:flex}.WingsInfrastructure-module__akH2-q__card{padding:28px 0}.WingsInfrastructure-module__akH2-q__card:first-child{padding-top:0}.WingsInfrastructure-module__akH2-q__card:not(:first-child){border-top:1px solid #ffffff17}.WingsInfrastructure-module__akH2-q__card:last-child{padding-bottom:0}} diff --git a/.next/static/chunks/14_678uuyq.tf.js b/.next/static/chunks/14_678uuyq.tf.js new file mode 100644 index 0000000..40b2a9f --- /dev/null +++ b/.next/static/chunks/14_678uuyq.tf.js @@ -0,0 +1,2 @@ +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,12718,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"InvariantError",{enumerable:!0,get:function(){return n}});class n extends Error{constructor(e,t){super(`Invariant: ${e.endsWith(".")?e:e+"."} This is a bug in Next.js.`,t),this.name="InvariantError"}}},64893,(e,t,r)=>{"use strict";var n=e.r(74080),a={stream:!0},l=Object.prototype.hasOwnProperty;function u(t){var r=e.r(t);return"function"!=typeof r.then||"fulfilled"===r.status?null:(r.then(function(e){r.status="fulfilled",r.value=e},function(e){r.status="rejected",r.reason=e}),r)}var i=new WeakSet,o=new WeakSet;function c(){}function s(t){for(var r=t[1],n=[],a=0;af||35===f||114===f||120===f?(h=f,f=3,c++):(h=0,f=3);continue;case 2:44===(g=o[c++])?f=4:p=p<<4|(96o.length&&(g=-1)}var E=o.byteOffset+c;if(-1{"use strict";t.exports=e.r(64893)},35326,(e,t,r)=>{"use strict";t.exports=e.r(21413)},76963,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"RedirectStatusCode",{enumerable:!0,get:function(){return a}});var n,a=((n={})[n.SeeOther=303]="SeeOther",n[n.TemporaryRedirect=307]="TemporaryRedirect",n[n.PermanentRedirect=308]="PermanentRedirect",n);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},68391,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={REDIRECT_ERROR_CODE:function(){return u},isRedirectError:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(76963),u="NEXT_REDIRECT";function i(e){if("object"!=typeof e||null===e||!("digest"in e)||"string"!=typeof e.digest)return!1;let t=e.digest.split(";"),[r,n]=t,a=t.slice(2,-2).join(";"),i=Number(t.at(-2));return r===u&&("replace"===n||"push"===n)&&"string"==typeof a&&!isNaN(i)&&i in l.RedirectStatusCode}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},90809,(e,t,r)=>{"use strict";function n(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,r=new WeakMap;return(n=function(e){return e?r:t})(e)}r._=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var r=n(t);if(r&&r.has(e))return r.get(e);var a={__proto__:null},l=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in e)if("default"!==u&&Object.prototype.hasOwnProperty.call(e,u)){var i=l?Object.getOwnPropertyDescriptor(e,u):null;i&&(i.get||i.set)?Object.defineProperty(a,u,i):a[u]=e[u]}return a.default=e,r&&r.set(e,a),a}},21768,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={ACTION_HEADER:function(){return u},FLIGHT_HEADERS:function(){return _},NEXT_ACTION_NOT_FOUND_HEADER:function(){return S},NEXT_ACTION_REVALIDATED_HEADER:function(){return O},NEXT_DID_POSTPONE_HEADER:function(){return v},NEXT_HMR_REFRESH_HASH_COOKIE:function(){return f},NEXT_HMR_REFRESH_HEADER:function(){return s},NEXT_HTML_REQUEST_ID_HEADER:function(){return T},NEXT_INSTANT_PREFETCH_HEADER:function(){return p},NEXT_INSTANT_TEST_COOKIE:function(){return y},NEXT_IS_PRERENDER_HEADER:function(){return P},NEXT_REQUEST_ID_HEADER:function(){return b},NEXT_REWRITTEN_PATH_HEADER:function(){return R},NEXT_REWRITTEN_QUERY_HEADER:function(){return m},NEXT_ROUTER_PREFETCH_HEADER:function(){return o},NEXT_ROUTER_SEGMENT_PREFETCH_HEADER:function(){return c},NEXT_ROUTER_STALE_TIME_HEADER:function(){return E},NEXT_ROUTER_STATE_TREE_HEADER:function(){return i},NEXT_RSC_UNION_QUERY:function(){return g},NEXT_URL:function(){return d},RSC_CONTENT_TYPE_HEADER:function(){return h},RSC_HEADER:function(){return l}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l="rsc",u="next-action",i="next-router-state-tree",o="next-router-prefetch",c="next-router-segment-prefetch",s="next-hmr-refresh",f="__next_hmr_refresh_hash__",d="next-url",h="text/x-component",p="next-instant-navigation-testing-prefetch",y="next-instant-navigation-testing",_=[l,i,o,s,c],g="_rsc",E="x-nextjs-stale-time",v="x-nextjs-postponed",R="x-nextjs-rewritten-path",m="x-nextjs-rewritten-query",P="x-nextjs-prerender",S="x-nextjs-action-not-found",b="x-nextjs-request-id",T="x-nextjs-html-request-id",O="x-action-revalidated";("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},39470,(e,t,r)=>{"use strict";function n(){let e,t,r=new Promise((r,n)=>{e=r,t=n});return{resolve:e,reject:t,promise:r}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"createPromiseWithResolvers",{enumerable:!0,get:function(){return n}})},51191,(e,t,r)=>{"use strict";function n(e,t=!0){return e.pathname+e.search+(t?e.hash:"")}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"createHrefFromUrl",{enumerable:!0,get:function(){return n}}),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},26935,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"HTML_LIMITED_BOT_UA_RE",{enumerable:!0,get:function(){return n}});let n=/[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i},82604,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={HTML_LIMITED_BOT_UA_RE:function(){return l.HTML_LIMITED_BOT_UA_RE},HTML_LIMITED_BOT_UA_RE_STRING:function(){return i},getBotType:function(){return s},isBot:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(26935),u=/Googlebot(?!-)|Googlebot$/i,i=l.HTML_LIMITED_BOT_UA_RE.source;function o(e){return l.HTML_LIMITED_BOT_UA_RE.test(e)}function c(e){return u.test(e)||o(e)}function s(e){return u.test(e)?"dom":o(e)?"html":void 0}},8372,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={AppRouterContext:function(){return u},GlobalLayoutRouterContext:function(){return o},LayoutRouterContext:function(){return i},MissingSlotContext:function(){return s},TemplateContext:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(55682)._(e.r(71645)),u=l.default.createContext(null),i=l.default.createContext(null),o=l.default.createContext(null),c=l.default.createContext(null),s=l.default.createContext(new Set)},88540,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a,l={ACTION_HMR_REFRESH:function(){return f},ACTION_NAVIGATE:function(){return o},ACTION_REFRESH:function(){return i},ACTION_RESTORE:function(){return c},ACTION_SERVER_ACTION:function(){return d},ACTION_SERVER_PATCH:function(){return s},PrefetchKind:function(){return h},ScrollBehavior:function(){return p}};for(var u in l)Object.defineProperty(r,u,{enumerable:!0,get:l[u]});let i="refresh",o="navigate",c="restore",s="server-patch",f="hmr-refresh",d="server-action";var h=((n={}).AUTO="auto",n.FULL="full",n),p=((a={})[a.Default=0]="Default",a[a.NoScroll=1]="NoScroll",a);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},64245,(e,t,r)=>{"use strict";function n(e){return null!==e&&"object"==typeof e&&"then"in e&&"function"==typeof e.then}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isThenable",{enumerable:!0,get:function(){return n}})},41538,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={dispatchAppRouterAction:function(){return c},dispatchGestureState:function(){return f},refreshOnInstantNavigationUnlock:function(){return o},useActionQueue:function(){return d}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(90809)._(e.r(71645)),u=e.r(64245);e.r(88540);let i=null;function o(){}function c(e){if(null===i)throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0});i(e)}let s=null;function f(e){if(null===s)throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0});s(e)}function d(e){let[t,r]=l.default.useState(e.state),[n,a]=(0,l.useOptimistic)(t);"u">typeof window&&(s=a),"u">typeof window&&(i=t=>e.dispatch(t,r));let o=(0,l.useMemo)(()=>n,[n]);return(0,u.isThenable)(o)?(0,l.use)(o):o}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},32120,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"callServer",{enumerable:!0,get:function(){return u}});let n=e.r(71645),a=e.r(88540),l=e.r(41538);async function u(e,t){return new Promise((r,u)=>{(0,n.startTransition)(()=>{(0,l.dispatchAppRouterAction)({type:a.ACTION_SERVER_ACTION,actionId:e,actionArgs:t,resolve:r,reject:u})})})}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},92245,(e,t,r)=>{"use strict";let n;Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"findSourceMapURL",{enumerable:!0,get:function(){return n}});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},13258,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={DEFAULT_SEGMENT_KEY:function(){return f},NOT_FOUND_SEGMENT_KEY:function(){return d},PAGE_SEGMENT_KEY:function(){return s},addSearchParamsIfPageSegment:function(){return o},computeSelectedLayoutSegment:function(){return c},getSegmentValue:function(){return l},getSelectedLayoutSegmentPath:function(){return function e(t,r,n=!0,a=[]){let u;if(n)u=t[1][r];else{let e=t[1];u=e.children??Object.values(e)[0]}if(!u)return a;let i=l(u[0]);return!i||i.startsWith(s)?a:(a.push(i),e(u,r,!1,a))}},isGroupSegment:function(){return u},isParallelRouteSegment:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(e){return Array.isArray(e)?e[1]:e}function u(e){return"("===e[0]&&e.endsWith(")")}function i(e){return e.startsWith("@")&&"@children"!==e}function o(e,t){if(e.includes(s)){let e=JSON.stringify(t);return"{}"!==e?s+"?"+e:s}return e}function c(e,t){if(!e||0===e.length)return null;let r="children"===t?e[0]:e[e.length-1];return r===f?null:r}let s="__PAGE__",f="__DEFAULT__",d="/_not-found"},67764,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={HEAD_REQUEST_KEY:function(){return i},ROOT_SEGMENT_REQUEST_KEY:function(){return u},appendSegmentRequestKeyPart:function(){return c},convertSegmentPathToStaticExportFilename:function(){return d},createSegmentRequestKeyPart:function(){return o}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(13258),u="",i="/_head";function o(e){if("string"==typeof e)return e.startsWith(l.PAGE_SEGMENT_KEY)?l.PAGE_SEGMENT_KEY:"/_not-found"===e?"_not-found":f(e);let t=e[0];return"$"+e[2]+"$"+f(t)}function c(e,t,r){return e+"/"+("children"===t?r:`@${f(t)}/${r}`)}let s=/^[a-zA-Z0-9\-_@]+$/;function f(e){return s.test(e)?e:"!"+btoa(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")}function d(e){return`__next${e.replace(/\//g,".")}.txt`}},33906,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={doesStaticSegmentAppearInURL:function(){return d},getCacheKeyForDynamicParam:function(){return h},getParamValueFromCacheKey:function(){return y},getRenderedPathname:function(){return c},getRenderedSearch:function(){return o},parseDynamicParamFromURLPart:function(){return f},urlSearchParamsToParsedUrlQuery:function(){return _},urlToUrlWithoutFlightMarker:function(){return p}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(13258),u=e.r(67764),i=e.r(21768);function o(e){let t=e.headers.get(i.NEXT_REWRITTEN_QUERY_HEADER);return null!==t?""===t?"":"?"+t:p(new URL(e.url)).search}function c(e){return e.headers.get(i.NEXT_REWRITTEN_PATH_HEADER)??p(new URL(e.url)).pathname}function s(e){try{return encodeURIComponent(decodeURIComponent(e))}catch{return e}}function f(e,t,r){switch(e){case"c":return rs(e)):[];case"ci(..)(..)":case"ci(.)":case"ci(..)":case"ci(...)":{let n=e.length-2;return r0===t?s(e.slice(n)):s(e)):[]}case"oc":return rs(e)):null;case"d":if(r>=t.length)return"";return s(t[r]);case"di(..)(..)":case"di(.)":case"di(..)":case"di(...)":{let n=e.length-2;if(r>=t.length)return"";return s(t[r].slice(n))}default:return""}}function d(e){return!(e===u.ROOT_SEGMENT_REQUEST_KEY||e.startsWith(l.PAGE_SEGMENT_KEY)||"("===e[0]&&e.endsWith(")"))&&e!==l.DEFAULT_SEGMENT_KEY&&"/_not-found"!==e}function h(e,t){return"string"==typeof e?(0,l.addSearchParamsIfPageSegment)(e,Object.fromEntries(new URLSearchParams(t))):null===e?"":e.join("/")}function p(e){let t=new URL(e);return t.searchParams.delete(i.NEXT_RSC_UNION_QUERY),t}function y(e,t){return"c"===t||"oc"===t?e.split("/"):e}function _(e){let t={};for(let[r,n]of e.entries())void 0===t[r]?t[r]=n:Array.isArray(t[r])?t[r].push(n):t[r]=[t[r],n];return t}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},50590,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={createInitialRSCPayloadFromFallbackPrerender:function(){return c},getFlightDataPartsFromPath:function(){return o},getNextFlightSegmentPath:function(){return s},normalizeFlightData:function(){return f},prepareFlightRouterStateForRequest:function(){return d}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(13258),u=e.r(33906),i=e.r(51191);function o(e){let[t,r,n,a]=e.slice(-4),l=e.slice(0,-4);return{pathToSegment:l.slice(0,-1),segmentPath:l,segment:l[l.length-1]??"",tree:t,seedData:r,head:n,isHeadPartial:a,isRootRender:4===e.length}}function c(e,t){let r=(0,u.getRenderedPathname)(e),n=(0,u.getRenderedSearch)(e),a=(0,i.createHrefFromUrl)(new URL(location.href)),l=t.f[0],o=l[0],c={c:a.split("/"),q:n,i:t.i,f:[[function e(t,r,n,a){let l,i,o=t[0];if("string"==typeof o)l=o,i=(0,u.doesStaticSegmentAppearInURL)(o);else{let e=o[0],t=o[2],c=o[3],s=(0,u.parseDynamicParamFromURLPart)(t,n,a);l=[e,(0,u.getCacheKeyForDynamicParam)(s,r),t,c],i=!0}let c=i?a+1:a,s=t[1],f={};for(let t in s){let a=s[t];f[t]=e(a,r,n,c)}return[l,f,null,t[3],t[4]]}(o,n,r.split("/").filter(e=>""!==e),0),l[1],l[2],l[2]]],m:t.m,G:t.G,S:t.S,h:t.h};return t.b&&(c.b=t.b),c}function s(e){return e.slice(2)}function f(e){return"string"==typeof e?e:e.map(e=>o(e))}function d(e,t){return t?encodeURIComponent(JSON.stringify(e)):encodeURIComponent(JSON.stringify(function e(t){let[r,n,a,u,i]=t,o=function(e){if("string"==typeof e)return e.startsWith(l.PAGE_SEGMENT_KEY+"?")?l.PAGE_SEGMENT_KEY:e;let[t,r,n]=e;return[t,r,n,null]}(r),c={};for(let[t,r]of Object.entries(n))c[t]=e(r);let s=[o,c];return u&&(s[2]=null,s[3]=u),void 0!==i&&(s[4]=i),s}(e)))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},19921,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={djb2Hash:function(){return l},hexHash:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(e){let t=5381;for(let r=0;r>>0}function u(e){return l(e).toString(36).slice(0,5)}},86051,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={computeCacheBustingSearchParam:function(){return s},computeLegacyCacheBustingSearchParam:function(){return f}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(19921),u=new TextEncoder;function i(e){return void 0===e?"0":Array.isArray(e)?e.join(","):e}function o(e,t,r,n){return(void 0===e||"0"===e)&&void 0===t&&void 0===r&&void 0===n?null:[e??"0",i(t),i(r),i(n)].join(",")}async function c(e){var t=new Uint8Array(await globalThis.crypto.subtle.digest("SHA-256",u.encode(e))).subarray(0,12);let r="";for(let e=0;e{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={setCacheBustingSearchParam:function(){return o},setCacheBustingSearchParamWithHash:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(86051),u=e.r(21768);async function i(e){return"function"==typeof globalThis.crypto?.subtle?.digest?(0,l.computeCacheBustingSearchParam)(e[u.NEXT_ROUTER_PREFETCH_HEADER],e[u.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],e[u.NEXT_ROUTER_STATE_TREE_HEADER],e[u.NEXT_URL]):(0,l.computeLegacyCacheBustingSearchParam)(e[u.NEXT_ROUTER_PREFETCH_HEADER],e[u.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],e[u.NEXT_ROUTER_STATE_TREE_HEADER],e[u.NEXT_URL])}let o=async(e,t)=>{c(e,await i(t))},c=(e,t)=>{let r=e.search,n=(r.startsWith("?")?r.slice(1):r).split("&").filter(e=>e&&!e.startsWith(`${u.NEXT_RSC_UNION_QUERY}=`));t.length>0?n.push(`${u.NEXT_RSC_UNION_QUERY}=${t}`):n.push(`${u.NEXT_RSC_UNION_QUERY}`),e.search=n.length?`?${n.join("&")}`:""};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},32992,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={getNavigationBuildId:function(){return i},setNavigationBuildId:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l="";function u(e){l=e}function i(){return l}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},63416,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={ACTION_SUFFIX:function(){return _},APP_DIR_ALIAS:function(){return V},CACHE_ONE_YEAR_SECONDS:function(){return j},DOT_NEXT_ALIAS:function(){return k},ESLINT_DEFAULT_DIRS:function(){return ei},GSP_NO_RETURNED_VALUE:function(){return et},GSSP_COMPONENT_MEMBER_ERROR:function(){return ea},GSSP_NO_RETURNED_VALUE:function(){return er},HTML_CONTENT_TYPE_HEADER:function(){return u},INFINITE_CACHE:function(){return M},INSTRUMENTATION_HOOK_FILENAME:function(){return x},JSON_CONTENT_TYPE_HEADER:function(){return i},MATCHED_PATH_HEADER:function(){return s},MIDDLEWARE_FILENAME:function(){return D},MIDDLEWARE_LOCATION_REGEXP:function(){return I},NEXT_BODY_SUFFIX:function(){return v},NEXT_CACHE_IMPLICIT_TAG_ID:function(){return N},NEXT_CACHE_REVALIDATED_TAGS_HEADER:function(){return P},NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER:function(){return S},NEXT_CACHE_ROOT_PARAM_TAG_ID:function(){return C},NEXT_CACHE_SOFT_TAG_MAX_LENGTH:function(){return w},NEXT_CACHE_TAGS_HEADER:function(){return m},NEXT_CACHE_TAG_MAX_ITEMS:function(){return O},NEXT_CACHE_TAG_MAX_LENGTH:function(){return A},NEXT_DATA_SUFFIX:function(){return g},NEXT_INTERCEPTION_MARKER_PREFIX:function(){return c},NEXT_META_SUFFIX:function(){return E},NEXT_NAV_DEPLOYMENT_ID_HEADER:function(){return R},NEXT_QUERY_PARAM_PREFIX:function(){return o},NEXT_RESUME_HEADER:function(){return b},NEXT_RESUME_STATE_LENGTH_HEADER:function(){return T},NON_STANDARD_NODE_ENV:function(){return el},PAGES_DIR_ALIAS:function(){return L},PRERENDER_REVALIDATE_HEADER:function(){return f},PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER:function(){return d},PROXY_FILENAME:function(){return F},PROXY_LOCATION_REGEXP:function(){return U},PUBLIC_DIR_MIDDLEWARE_CONFLICT:function(){return W},ROOT_DIR_ALIAS:function(){return H},RSC_ACTION_CLIENT_WRAPPER_ALIAS:function(){return Y},RSC_ACTION_ENCRYPTION_ALIAS:function(){return q},RSC_ACTION_PROXY_ALIAS:function(){return $},RSC_ACTION_VALIDATE_ALIAS:function(){return X},RSC_CACHE_WRAPPER_ALIAS:function(){return K},RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS:function(){return G},RSC_MOD_REF_PROXY_ALIAS:function(){return B},RSC_SEGMENTS_DIR_SUFFIX:function(){return h},RSC_SEGMENT_SUFFIX:function(){return p},RSC_SUFFIX:function(){return y},SERVER_PROPS_EXPORT_ERROR:function(){return ee},SERVER_PROPS_GET_INIT_PROPS_CONFLICT:function(){return Q},SERVER_PROPS_SSG_CONFLICT:function(){return J},SERVER_RUNTIME:function(){return eo},SSG_FALLBACK_EXPORT_ERROR:function(){return eu},SSG_GET_INITIAL_PROPS_CONFLICT:function(){return z},STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR:function(){return Z},TEXT_PLAIN_CONTENT_TYPE_HEADER:function(){return l},UNSTABLE_REVALIDATE_RENAME_ERROR:function(){return en},WEBPACK_LAYERS:function(){return ef},WEBPACK_RESOURCE_QUERIES:function(){return ed},WEB_SOCKET_MAX_RECONNECTIONS:function(){return ec}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l="text/plain",u="text/html; charset=utf-8",i="application/json; charset=utf-8",o="nxtP",c="nxtI",s="x-matched-path",f="x-prerender-revalidate",d="x-prerender-revalidate-if-generated",h=".segments",p=".segment.rsc",y=".rsc",_=".action",g=".json",E=".meta",v=".body",R="x-nextjs-deployment-id",m="x-next-cache-tags",P="x-next-revalidated-tags",S="x-next-revalidate-tag-token",b="next-resume",T="x-next-resume-state-length",O=128,A=256,w=1024,N="_N_T_",C="_N_RP_",j=31536e3,M=0xfffffffe,D="middleware",I=`(?:src/)?${D}`,F="proxy",U=`(?:src/)?${F}`,x="instrumentation",L="private-next-pages",k="private-dot-next",H="private-next-root-dir",V="private-next-app-dir",B="private-next-rsc-mod-ref-proxy",X="private-next-rsc-action-validate",$="private-next-rsc-server-reference",K="private-next-rsc-cache-wrapper",G="private-next-rsc-track-dynamic-import",q="private-next-rsc-action-encryption",Y="private-next-rsc-action-client-wrapper",W="You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict",z="You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps",Q="You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.",J="You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps",Z="can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props",ee="pages with `getServerSideProps` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export",et="Your `getStaticProps` function did not return an object. Did you forget to add a `return`?",er="Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?",en="The `unstable_revalidate` property is available for general use.\nPlease use `revalidate` instead.",ea="can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member",el='You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env',eu="Pages with `fallback` enabled in `getStaticPaths` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export",ei=["app","pages","components","lib","src"],eo={edge:"edge",experimentalEdge:"experimental-edge",nodejs:"nodejs"},ec=12,es={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"},ef={...es,GROUP:{builtinReact:[es.reactServerComponents,es.actionBrowser],serverOnly:[es.reactServerComponents,es.actionBrowser,es.instrument,es.middleware],neutralTarget:[es.apiNode,es.apiEdge],clientOnly:[es.serverSideRendering,es.appPagesBrowser],bundled:[es.reactServerComponents,es.actionBrowser,es.serverSideRendering,es.appPagesBrowser,es.shared,es.instrument,es.middleware],appPages:[es.reactServerComponents,es.serverSideRendering,es.appPagesBrowser,es.actionBrowser]}},ed={edgeSSREntry:"__next_edge_ssr_entry__",metadata:"__next_metadata__",metadataRoute:"__next_metadata_route__",metadataImageMeta:"__next_metadata_image_meta__"}},6372,(e,t,r)=>{"use strict";function n(e){return(e.then(a),"fulfilled"!==e.status)?null:e.value}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"readVaryParams",{enumerable:!0,get:function(){return n}});let a=()=>{}},22744,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"PrefetchHint",{enumerable:!0,get:function(){return a}});var n,a=((n={})[n.HasRuntimePrefetch=1]="HasRuntimePrefetch",n[n.SubtreeHasInstant=2]="SubtreeHasInstant",n[n.SegmentHasLoadingBoundary=4]="SegmentHasLoadingBoundary",n[n.SubtreeHasLoadingBoundary=8]="SubtreeHasLoadingBoundary",n[n.IsRootLayout=16]="IsRootLayout",n[n.ParentInlinedIntoSelf=32]="ParentInlinedIntoSelf",n[n.InlinedIntoChild=64]="InlinedIntoChild",n[n.HeadInlinedIntoSelf=128]="HeadInlinedIntoSelf",n[n.HeadOutlined=256]="HeadOutlined",n)},56019,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"matchSegment",{enumerable:!0,get:function(){return n}});let n=(e,t)=>"string"==typeof e?"string"==typeof t&&e===t:"string"!=typeof t&&e[0]===t[0]&&e[1]===t[1];("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},77048,(e,t,r)=>{"use strict";function n(e,t){let r=new URL(e);return{pathname:r.pathname,search:r.search,nextUrl:t}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"createCacheKey",{enumerable:!0,get:function(){return n}}),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},9396,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a,l,u={FetchStrategy:function(){return s},NavigationResultTag:function(){return o},PrefetchPriority:function(){return c}};for(var i in u)Object.defineProperty(r,i,{enumerable:!0,get:u[i]});var o=((n={})[n.MPA=0]="MPA",n[n.Success=1]="Success",n[n.NoOp=2]="NoOp",n[n.Async=3]="Async",n),c=((a={})[a.Intent=2]="Intent",a[a.Default=1]="Default",a[a.Background=0]="Background",a),s=((l={})[l.LoadingBoundary=0]="LoadingBoundary",l[l.PPR=1]="PPR",l[l.PPRRuntime=2]="PPRRuntime",l[l.Full=3]="Full",l);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},511,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={Fallback:function(){return u},createCacheMap:function(){return o},deleteFromCacheMap:function(){return h},deleteMapEntry:function(){return p},getFromCacheMap:function(){return c},isValueExpired:function(){return s},setInCacheMap:function(){return f},setSizeInCacheMap:function(){return y}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(73861),u={},i={};function o(){return{parent:null,key:null,value:null,map:null,prev:null,next:null,size:0}}function c(e,t,r,n,a){let o=function e(t,r,n,a,l,o){let c,f;if(null!==a)c=a.value,f=a.parent;else if(l&&o!==i)c=i,f=null;else return null===n.value?n:s(t,r,n.value)?(p(n),null):n;let d=n.map;if(null!==d){let n=d.get(c);if(void 0!==n){let a=e(t,r,n,f,l,c);if(null!==a)return a}let a=d.get(u);if(void 0!==a)return e(t,r,a,f,l,c)}return null}(e,t,r,n,a,0);return null===o||null===o.value?null:((0,l.lruPut)(o),o.value)}function s(e,t,r){return r.staleAt<=e||r.version{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={cleanup:function(){return h},deleteFromLru:function(){return f},lruPut:function(){return c},updateLruSize:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(511),u=e.r(77709),i=null,o=0;function c(e){if(i===e)return;let t=e.prev,r=e.next;if(null===r||null===t?(o+=e.size,d()):(t.next=r,r.prev=t),null===i)e.prev=e,e.next=e;else{let t=i.prev;e.prev=t,null!==t&&(t.next=e),e.next=i,i.prev=e}i=e}function s(e,t){let r=e.size;e.size=t,null!==e.next&&(o=o-r+t,d())}function f(e){let t=e.next,r=e.prev;null!==t&&null!==r&&(o-=e.size,e.next=null,e.prev=null,i===e?t===i?i=null:(i=t,r.next=t,t.prev=r):(r.next=t,t.prev=r))}function d(){o<=0x3200000||(0,u.pingPrefetchScheduler)()}function h(){if(!(o<=0x3200000))for(;o>0x2d00000&&null!==i;){let e=i.prev;null!==e&&(0,l.deleteMapEntry)(e)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},77709,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={cancelPrefetchTask:function(){return m},isPrefetchTaskDirty:function(){return S},pingPrefetchScheduler:function(){return T},pingPrefetchTask:function(){return N},reschedulePrefetchTask:function(){return P},schedulePrefetchTask:function(){return R},startRevalidationCooldown:function(){return v}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(22744),u=e.r(56019),i=e.r(20896),o=e.r(77048),c=e.r(9396),s=e.r(13258),f=e.r(73861),d="function"==typeof queueMicrotask?queueMicrotask:e=>Promise.resolve().then(e).catch(e=>setTimeout(()=>{throw e})),h=[],p=0,y=0,_=!1,g=null,E=null;function v(){null!==E&&clearTimeout(E),E=setTimeout(()=>{E=null,T()},300)}function R(e,t,r,n,a,l){let u={key:e,treeAtTimeOfPrefetch:t,routeCacheVersion:(0,i.getCurrentRouteCacheVersion)(),segmentCacheVersion:(0,i.getCurrentSegmentCacheVersion)(),priority:n,phase:1,hasBackgroundWork:!1,spawnedRuntimePrefetches:null,fetchStrategy:r,sortId:y++,isCanceled:!1,onInvalidate:a,_heapIndex:-1};return b(u),k(h,u),T(),u}function m(e){e.isCanceled=!0,function(e,t){let r=t._heapIndex;if(-1!==r&&(t._heapIndex=-1,0!==e.length)){let n=e.pop();n!==t&&(e[r]=n,n._heapIndex=r,$(e,n,r))}}(h,e)}function P(e,t,r,n){e.isCanceled=!1,e.phase=1,e.sortId=y++,e.priority=e===g?c.PrefetchPriority.Intent:n,e.treeAtTimeOfPrefetch=t,e.fetchStrategy=r,b(e),-1!==e._heapIndex?B(h,e):k(h,e),T()}function S(e,t,r){return e.routeCacheVersion!==(0,i.getCurrentRouteCacheVersion)()||e.segmentCacheVersion!==(0,i.getCurrentSegmentCacheVersion)()||e.treeAtTimeOfPrefetch!==r||e.key.nextUrl!==t}function b(e){e.priority===c.PrefetchPriority.Intent&&e!==g&&(null!==g&&g.priority!==c.PrefetchPriority.Background&&(g.priority=c.PrefetchPriority.Default,B(h,g)),g=e)}function T(){_||(_=!0,d(C))}function O(e){return null===E&&(e.priority===c.PrefetchPriority.Intent?p<12:p<4)}function A(e){return p++,e.then(e=>null===e?(w(),null):(e.closed.then(w),e.value))}function w(){p--,T()}function N(e){e.isCanceled||-1!==e._heapIndex||(k(h,e),T())}function C(){_=!1;let e=Date.now(),t=H(h);for(;null!==t&&O(t);){t.routeCacheVersion=(0,i.getCurrentRouteCacheVersion)(),t.segmentCacheVersion=(0,i.getCurrentSegmentCacheVersion)();let r=function(e,t){let r=t.key,n=(0,i.readOrCreateRouteCacheEntry)(e,t,r),a=function(e,t,r){switch(r.status){case i.EntryStatus.Empty:A((0,i.fetchRouteOnCacheMiss)(r,t.key)),r.staleAt=e+6e4,r.status=i.EntryStatus.Pending;case i.EntryStatus.Pending:{let e=r.blockedTasks;return null===e?r.blockedTasks=new Set([t]):e.add(t),1}case i.EntryStatus.Rejected:break;case i.EntryStatus.Fulfilled:{let o;if(0!==t.phase)return 2;if(!O(t))return 0;let s=r.tree;switch(o=s.prefetchHints&l.PrefetchHint.SubtreeHasInstant?c.FetchStrategy.PPR:t.fetchStrategy===c.FetchStrategy.PPR?r.supportsPerSegmentPrefetching?c.FetchStrategy.PPR:c.FetchStrategy.LoadingBoundary:t.fetchStrategy){case c.FetchStrategy.PPR:{var n,a,u;if(I(n=e,a=t,u=r,(0,i.readOrCreateSegmentCacheEntry)(n,c.FetchStrategy.PPR,u.metadata),a.key,u.metadata),0===function e(t,r,n,a,u){let o=(0,i.readOrCreateSegmentCacheEntry)(t,r.fetchStrategy,u);I(t,r,n,o,r.key,u);let c=a[1],s=u.slots;if(null!==s)for(let a in s){if(!O(r))return 0;let u=s[a],o=u.segment,f=c[a],d=f?.[0];if(0===(void 0!==d&&x(n,o,d)?e(t,r,n,f,u):function e(t,r,n,a){if(a.prefetchHints&l.PrefetchHint.HasRuntimePrefetch)return null===r.spawnedRuntimePrefetches?r.spawnedRuntimePrefetches=new Set([a.requestKey]):r.spawnedRuntimePrefetches.add(a.requestKey),2;let u=(0,i.readOrCreateSegmentCacheEntry)(t,r.fetchStrategy,a);if(I(t,r,n,u,r.key,a),null!==a.slots){if(!O(r))return 0;for(let l in a.slots)if(0===e(t,r,n,a.slots[l]))return 0}return 2}(t,r,n,u)))return 0}return 2}(e,t,r,t.treeAtTimeOfPrefetch,s))return 0;let o=t.spawnedRuntimePrefetches;if(null!==o){let n=new Map;M(e,t,r,n,c.FetchStrategy.PPRRuntime);let a=function e(t,r,n,a,l,u){if(l.has(a.requestKey))return D(t,r,n,a,!1,u,c.FetchStrategy.PPRRuntime);let i={},o=a.slots;if(null!==o)for(let a in o){let c=o[a];i[a]=e(t,r,n,c,l,u)}return[a.segment,i,null,null]}(e,t,r,s,o,n);n.size>0&&A((0,i.fetchSegmentPrefetchesUsingDynamicRequest)(t,r,c.FetchStrategy.PPRRuntime,a,n))}return 2}case c.FetchStrategy.Full:case c.FetchStrategy.PPRRuntime:case c.FetchStrategy.LoadingBoundary:{let n=new Map;M(e,t,r,n,o);let a=function e(t,r,n,a,u,o,s){let f=a[1],d=u.slots,h={};if(null!==d)for(let a in d){let u=d[a],p=u.segment,y=f[a],_=y?.[0];if(void 0!==_&&x(n,p,_)){let l=e(t,r,n,y,u,o,s);h[a]=l}else switch(s){case c.FetchStrategy.LoadingBoundary:{let e=(u.prefetchHints&(l.PrefetchHint.SegmentHasLoadingBoundary|l.PrefetchHint.SubtreeHasLoadingBoundary))!=0?function e(t,r,n,a,u,o){let s=null===u?"inside-shared-layout":null,f=(0,i.readOrCreateSegmentCacheEntry)(t,r.fetchStrategy,a);switch(f.status){case i.EntryStatus.Empty:o.set(a.requestKey,(0,i.upgradeToPendingSegment)(f,c.FetchStrategy.LoadingBoundary)),"refetch"!==u&&(s=u="refetch");break;case i.EntryStatus.Fulfilled:if((a.prefetchHints&l.PrefetchHint.SegmentHasLoadingBoundary)!=0)return(0,i.convertRouteTreeToFlightRouterState)(a);case i.EntryStatus.Pending:case i.EntryStatus.Rejected:}let d={};if(null!==a.slots)for(let l in a.slots){let i=a.slots[l];d[l]=e(t,r,n,i,u,o)}return[a.segment,d,null,s]}(t,r,n,u,null,o):(0,i.convertRouteTreeToFlightRouterState)(u);h[a]=e;break}case c.FetchStrategy.PPRRuntime:{let e=D(t,r,n,u,!1,o,s);h[a]=e;break}case c.FetchStrategy.Full:{let e=D(t,r,n,u,!1,o,s);h[a]=e}}}return[u.segment,h,null,null]}(e,t,r,t.treeAtTimeOfPrefetch,s,n,o);return n.size>0&&A((0,i.fetchSegmentPrefetchesUsingDynamicRequest)(t,r,o,a,n)),2}}}}return 2}(e,t,n);if(0!==a&&""!==r.search){let n=new URL(r.pathname,location.origin),a=(0,o.createCacheKey)(n.href,r.nextUrl),l=(0,i.readOrCreateRouteCacheEntry)(e,t,a);switch(l.status){case i.EntryStatus.Empty:j(t)&&(l.status=i.EntryStatus.Pending,A((0,i.fetchRouteOnCacheMiss)(l,a)));case i.EntryStatus.Pending:case i.EntryStatus.Fulfilled:case i.EntryStatus.Rejected:}}return a}(e,t),n=t.hasBackgroundWork;switch(t.hasBackgroundWork=!1,t.spawnedRuntimePrefetches=null,r){case 0:return;case 1:V(h),t=H(h);continue;case 2:1===t.phase?(t.phase=0,B(h,t)):n?(t.priority=c.PrefetchPriority.Background,B(h,t)):V(h),t=H(h);continue}}null===t&&0===p&&(0,f.cleanup)()}function j(e){return e.priority===c.PrefetchPriority.Background||(e.hasBackgroundWork=!0,!1)}function M(e,t,r,n,a){D(e,t,r,r.metadata,!1,n,a===c.FetchStrategy.LoadingBoundary?c.FetchStrategy.Full:a)}function D(e,t,r,n,a,l,u){let o=(0,i.readOrCreateSegmentCacheEntry)(e,u,n),s=null;switch(o.status){case i.EntryStatus.Empty:if(u===c.FetchStrategy.Full&&null!==(0,i.attemptToFulfillDynamicSegmentFromBFCache)(e,o,n))break;s=(0,i.upgradeToPendingSegment)(o,u);break;case i.EntryStatus.Fulfilled:if(o.isPartial&&(0,i.canNewFetchStrategyProvideMoreContent)(o.fetchStrategy,u)){if(u===c.FetchStrategy.Full&&null!==(0,i.attemptToUpgradeSegmentFromBFCache)(e,n))break;s=U(e,n,u)}break;case i.EntryStatus.Pending:case i.EntryStatus.Rejected:(0,i.canNewFetchStrategyProvideMoreContent)(o.fetchStrategy,u)&&(s=U(e,n,u))}let f={};if(null!==n.slots)for(let i in n.slots){let o=n.slots[i];f[i]=D(e,t,r,o,a||null!==s,l,u)}null!==s&&l.set(n.requestKey,s);let d=a||null===s?null:"refetch";return[n.segment,f,null,d]}function I(e,t,r,n,a,l){switch(n.status){case i.EntryStatus.Empty:A((0,i.fetchSegmentOnCacheMiss)(r,(0,i.upgradeToPendingSegment)(n,c.FetchStrategy.PPR),a,l));break;case i.EntryStatus.Pending:switch(n.fetchStrategy){case c.FetchStrategy.PPR:case c.FetchStrategy.PPRRuntime:case c.FetchStrategy.Full:break;case c.FetchStrategy.LoadingBoundary:j(t)&&F(e,r,a,l);break;default:n.fetchStrategy}break;case i.EntryStatus.Rejected:switch(n.fetchStrategy){case c.FetchStrategy.PPR:case c.FetchStrategy.PPRRuntime:case c.FetchStrategy.Full:break;case c.FetchStrategy.LoadingBoundary:F(e,r,a,l);break;default:n.fetchStrategy}case i.EntryStatus.Fulfilled:}}function F(e,t,r,n){let a=(0,i.readOrCreateRevalidatingSegmentEntry)(e,c.FetchStrategy.PPR,n);switch(a.status){case i.EntryStatus.Empty:A((0,i.fetchSegmentOnCacheMiss)(t,(0,i.upgradeToPendingSegment)(a,c.FetchStrategy.PPR),r,n));case i.EntryStatus.Pending:case i.EntryStatus.Fulfilled:case i.EntryStatus.Rejected:}}function U(e,t,r){let n=(0,i.readOrCreateRevalidatingSegmentEntry)(e,r,t);if(n.status===i.EntryStatus.Empty)return(0,i.upgradeToPendingSegment)(n,r);if((0,i.canNewFetchStrategyProvideMoreContent)(n.fetchStrategy,r)){let n=(0,i.overwriteRevalidatingSegmentCacheEntry)(e,r,t);return(0,i.upgradeToPendingSegment)(n,r)}switch(n.status){case i.EntryStatus.Pending:case i.EntryStatus.Fulfilled:case i.EntryStatus.Rejected:default:return null}}function x(e,t,r){return r===s.PAGE_SEGMENT_KEY?t===(0,s.addSearchParamsIfPageSegment)(s.PAGE_SEGMENT_KEY,Object.fromEntries(new URLSearchParams(e.renderedSearch))):(0,u.matchSegment)(r,t)}function L(e,t){let r=t.priority-e.priority;if(0!==r)return r;let n=t.phase-e.phase;return 0!==n?n:t.sortId-e.sortId}function k(e,t){let r=e.length;e.push(t),t._heapIndex=r,X(e,t,r)}function H(e){return 0===e.length?null:e[0]}function V(e){if(0===e.length)return null;let t=e[0];t._heapIndex=-1;let r=e.pop();return r!==t&&(e[0]=r,r._heapIndex=0,$(e,r,0)),t}function B(e,t){let r=t._heapIndex;-1!==r&&(0===r?$(e,t,0):L(e[r-1>>>1],t)>0?X(e,t,r):$(e,t,r))}function X(e,t,r){let n=r;for(;n>0;){let r=n-1>>>1,a=e[r];if(!(L(a,t)>0))return;e[r]=t,t._heapIndex=r,e[n]=a,a._heapIndex=n,n=r}}function $(e,t,r){let n=r,a=e.length,l=a>>>1;for(;nL(l,t))uL(i,l)?(e[n]=i,i._heapIndex=n,e[u]=t,t._heapIndex=u,n=u):(e[n]=l,l._heapIndex=n,e[r]=t,t._heapIndex=r,n=r);else{if(!(uL(i,t)))return;e[n]=i,i._heapIndex=n,e[u]=t,t._heapIndex=u,n=u}}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},56655,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={appendLayoutVaryPath:function(){return s},clonePageVaryPathWithNewSearchParams:function(){return g},finalizeLayoutVaryPath:function(){return f},finalizeMetadataVaryPath:function(){return y},finalizePageVaryPath:function(){return h},getFulfilledRouteVaryPath:function(){return c},getFulfilledSegmentVaryPath:function(){return function e(t,r){return{id:t.id,value:null===t.id||r.has(t.id)?t.value:u.Fallback,parent:null===t.parent?null:e(t.parent,r)}}},getPartialLayoutVaryPath:function(){return d},getPartialPageVaryPath:function(){return p},getRenderedSearchFromVaryPath:function(){return E},getRouteVaryPath:function(){return o},getSegmentVaryPathForRequest:function(){return _}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(9396),u=e.r(511),i=e.r(67764);function o(e,t,r){return{id:null,value:e,parent:{id:"?",value:t,parent:{id:null,value:r,parent:null}}}}function c(e,t,r,n){return{id:null,value:e,parent:{id:"?",value:t,parent:{id:null,value:n?r:u.Fallback,parent:null}}}}function s(e,t,r){return{id:r,value:t,parent:e}}function f(e,t){return{id:null,value:e,parent:t}}function d(e){return e.parent}function h(e,t,r){return{id:null,value:e,parent:{id:"?",value:t,parent:r}}}function p(e){return e.parent.parent}function y(e,t,r){return{id:null,value:e+i.HEAD_REQUEST_KEY,parent:{id:"?",value:t,parent:r}}}function _(e,t){let r=t.varyPath;if(t.isPage&&e!==l.FetchStrategy.Full&&e!==l.FetchStrategy.PPRRuntime){let e=r.parent.parent;return{id:null,value:r.value,parent:{id:"?",value:u.Fallback,parent:e}}}return r}function g(e,t){let r=e.parent;return{id:null,value:e.value,parent:{id:"?",value:t,parent:r.parent}}}function E(e){let t=e.parent.value;return"string"==typeof t?t:null}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},72463,(e,t,r)=>{"use strict";function n(e){let t=e.indexOf("#"),r=e.indexOf("?"),n=r>-1&&(t<0||r-1?{pathname:e.substring(0,n?r:t),query:n?e.substring(r,t>-1?t:void 0):"",hash:t>-1?e.slice(t):""}:{pathname:e,query:"",hash:""}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"parsePath",{enumerable:!0,get:function(){return n}})},41858,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"addPathPrefix",{enumerable:!0,get:function(){return a}});let n=e.r(72463);function a(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:a,hash:l}=(0,n.parsePath)(e);return`${t}${r}${a}${l}`}},38281,(e,t,r)=>{"use strict";function n(e){return e.replace(/\/$/,"")||"/"}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"removeTrailingSlash",{enumerable:!0,get:function(){return n}})},82823,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"normalizePathTrailingSlash",{enumerable:!0,get:function(){return l}});let n=e.r(38281),a=e.r(72463),l=e=>{if(!e.startsWith("/"))return e;let{pathname:t,query:r,hash:l}=(0,a.parsePath)(e);return`${(0,n.removeTrailingSlash)(t)}${r}${l}`};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},5550,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"addBasePath",{enumerable:!0,get:function(){return l}});let n=e.r(41858),a=e.r(82823);function l(e,t){return(0,a.normalizePathTrailingSlash)((0,n.addPathPrefix)(e,""))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},57630,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={createPrefetchURL:function(){return o},isExternalURL:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(82604),u=e.r(5550);function i(e){return e.origin!==window.location.origin}function o(e){let t;if((0,l.isBot)(window.navigator.userAgent))return null;try{t=new URL((0,u.addBasePath)(e),window.location.href)}catch(t){throw Object.defineProperty(Error(`Cannot prefetch '${e}' because it cannot be converted to a URL.`),"__NEXT_ERROR_CODE",{value:"E234",enumerable:!1,configurable:!0})}return i(t)?null:t}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},91949,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={IDLE_LINK_STATUS:function(){return f},PENDING_LINK_STATUS:function(){return s},getLinkForCurrentNavigation:function(){return p},mountFormInstance:function(){return m},mountLinkInstance:function(){return R},onLinkVisibilityChanged:function(){return S},onNavigationIntent:function(){return b},pingVisibleLinks:function(){return O},setLinkForCurrentNavigation:function(){return d},unmountLinkForCurrentNavigation:function(){return h},unmountPrefetchableInstance:function(){return P}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(9396),u=e.r(77048),i=e.r(77709),o=e.r(71645),c=null,s={pending:!0},f={pending:!1};function d(e){(0,o.startTransition)(()=>{c?.setOptimisticLinkStatus(f),e?.setOptimisticLinkStatus(s),c=e})}function h(e){c===e&&(c=null)}function p(){return c}let y="function"==typeof WeakMap?new WeakMap:new Map,_=new Set,g="function"==typeof IntersectionObserver?new IntersectionObserver(function(e){for(let t of e){let e=t.intersectionRatio>0;S(t.target,e)}},{rootMargin:"200px"}):null;function E(e,t){void 0!==y.get(e)&&P(e),y.set(e,t),null!==g&&g.observe(e)}function v(t){if(!("u">typeof window))return null;{let{createPrefetchURL:r}=e.r(57630);try{return r(t)}catch{return("function"==typeof reportError?reportError:console.error)(`Cannot prefetch '${t}' because it cannot be converted to a URL.`),null}}}function R(e,t,r,n,a,l){if(a){let a=v(t);if(null!==a){let t={router:r,fetchStrategy:n,isVisible:!1,prefetchTask:null,prefetchHref:a.href,setOptimisticLinkStatus:l};return E(e,t),t}}return{router:r,fetchStrategy:n,isVisible:!1,prefetchTask:null,prefetchHref:null,setOptimisticLinkStatus:l}}function m(e,t,r,n){let a=v(t);null===a||E(e,{router:r,fetchStrategy:n,isVisible:!1,prefetchTask:null,prefetchHref:a.href,setOptimisticLinkStatus:null})}function P(e){let t=y.get(e);if(void 0!==t){y.delete(e),_.delete(t);let r=t.prefetchTask;null!==r&&(0,i.cancelPrefetchTask)(r)}null!==g&&g.unobserve(e)}function S(e,t){let r=y.get(e);void 0!==r&&(r.isVisible=t,t?_.add(r):_.delete(r),T(r,l.PrefetchPriority.Default))}function b(e,t){let r=y.get(e);void 0!==r&&void 0!==r&&T(r,l.PrefetchPriority.Intent)}function T(t,r){if("u">typeof window){let n=t.prefetchTask;if(!t.isVisible){null!==n&&(0,i.cancelPrefetchTask)(n);return}let{getCurrentAppRouterState:a}=e.r(99781),l=a();if(null!==l){let e=l.tree;if(null===n){let n=l.nextUrl,a=(0,u.createCacheKey)(t.prefetchHref,n);t.prefetchTask=(0,i.schedulePrefetchTask)(a,e,t.fetchStrategy,r,null)}else(0,i.reschedulePrefetchTask)(n,e,t.fetchStrategy,r)}}}function O(e,t){for(let r of _){let n=r.prefetchTask;if(null!==n&&!(0,i.isPrefetchTaskDirty)(n,e,t))continue;null!==n&&(0,i.cancelPrefetchTask)(n);let a=(0,u.createCacheKey)(r.prefetchHref,e);r.prefetchTask=(0,i.schedulePrefetchTask)(a,t,r.fetchStrategy,l.PrefetchPriority.Default,null)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},79027,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={UnknownDynamicStaleTime:function(){return i},computeDynamicStaleAt:function(){return o},invalidateBfCache:function(){return f},readFromBFCache:function(){return y},readFromBFCacheDuringRegularNavigation:function(){return _},updateBFCacheEntryStaleAt:function(){return p},writeHeadToBFCache:function(){return h},writeToBFCache:function(){return d}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(54069),u=e.r(511),i=-1;function o(e,t){return t!==i?e+1e3*t:e+l.DYNAMIC_STALETIME_MS}let c=(0,u.createCacheMap)(),s=0;function f(){"u">typeof window&&s++}function d(e,t,r,n,a,l,i){if("u"{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={discoverKnownRoute:function(){return s},matchKnownRoute:function(){return d},resetKnownRoutes:function(){return h}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(20896),u=e.r(33906),i=e.r(56655);function o(){return{staticChildren:null,dynamicChild:null,dynamicChildParamName:null,dynamicChildParamType:null,pattern:null}}let c=o();function s(e,t,r,n,a,u,i,o,s,d){let h=t.split("/").filter(e=>""!==e),p=h.length>0?h[0]:null,y=h.length>0?h.slice(1):[];if(null!==n){let h=(0,l.fulfillRouteCacheEntry)(e,n,a,u,i,o,s);return d&&(h.hasDynamicRewrite=!0),f(c,a,p,y,h,e,t,r,a,u,i,o,s,d),h}return f(c,a,p,y,null,e,t,r,a,u,i,o,s,d)}function f(e,t,r,n,a,i,c,s,d,h,p,y,_,g){let E,v,R=t.segment,m=null,P=null,S=null;"string"==typeof R?E=(0,u.doesStaticSegmentAppearInURL)(R):(m=R[0],P=R[2],S=R[3],E=!0);let b=e,T=r,O=n;if(E){if(null===m&&r!==R)return null!==a?a:(0,l.writeRouteIntoCache)(i,c,s,d,h,p,y,_);if(null!==m&&null!==P){if(b=function(e,t,r){if(null!==e.dynamicChild)return e.dynamicChild;let n=o();return e.dynamicChild=n,e.dynamicChildParamName=t,e.dynamicChildParamType=r,n}(e,m,P),null!==S)for(let t of(null===e.staticChildren&&(e.staticChildren=new Map),S))e.staticChildren.has(t)||e.staticChildren.set(t,o())}else{null===e.staticChildren&&(e.staticChildren=new Map);let t=e.staticChildren.get(r);void 0===t&&(t=o(),e.staticChildren.set(r,t)),b=t}T=n.length>0?n[0]:null,O=n.length>0?n.slice(1):[]}let A=t.slots,w=null;if(null!==A){for(let e in A){let t=A[e];null===t.refreshState&&(w=f(b,t,T,O,a,i,c,s,d,h,p,y,_,g))}return null!==w?w:null!==a?a:(0,l.writeRouteIntoCache)(i,c,s,d,h,p,y,_)}return null!==b.pattern?(g&&(b.pattern.hasDynamicRewrite=!0),b.pattern):(v=null!==a?a:(0,l.writeRouteIntoCache)(i,c,s,d,h,p,y,_),g&&(v.hasDynamicRewrite=!0),b.pattern=v,v)}function d(e,t){let r=e.split("/").filter(e=>""!==e),n=new Map,a=function e(t,r,n,a){let l=n{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a={EntryStatus:function(){return w},attemptToFulfillDynamicSegmentFromBFCache:function(){return ee},attemptToUpgradeSegmentFromBFCache:function(){return et},canNewFetchStrategyProvideMoreContent:function(){return eP},convertReusedFlightRouterStateToRouteTree:function(){return ef},convertRootFlightRouterStateToRouteTree:function(){return es},convertRouteTreeToFlightRouterState:function(){return function e(t){let r={};if(null!==t.slots)for(let n in t.slots)r[n]=e(t.slots[n]);return[t.segment,r,null,null]}},createDetachedSegmentCacheEntry:function(){return J},createMetadataRouteTree:function(){return en},deprecated_requestOptimisticRouteCacheEntry:function(){return G},fetchInlinedSegmentsOnCacheMiss:function(){return ey},fetchRouteOnCacheMiss:function(){return eh},fetchSegmentOnCacheMiss:function(){return ep},fetchSegmentPrefetchesUsingDynamicRequest:function(){return e_},fulfillRouteCacheEntry:function(){return ea},getCurrentRouteCacheVersion:function(){return F},getCurrentSegmentCacheVersion:function(){return U},getStaleAt:function(){return eT},getStaleTimeMs:function(){return A},invalidateEntirePrefetchCache:function(){return x},invalidateRouteCacheEntries:function(){return L},invalidateSegmentCacheEntries:function(){return k},markRouteEntryAsDynamicRewrite:function(){return eu},overwriteRevalidatingSegmentCacheEntry:function(){return z},pingInvalidationListeners:function(){return H},processRuntimePrefetchStream:function(){return eA},readOrCreateRevalidatingSegmentEntry:function(){return W},readOrCreateRouteCacheEntry:function(){return K},readOrCreateSegmentCacheEntry:function(){return Y},readRouteCacheEntry:function(){return V},readSegmentCacheEntry:function(){return B},stripIsPartialByte:function(){return ew},upgradeToPendingSegment:function(){return Z},upsertSegmentEntry:function(){return Q},waitForSegmentCacheEntry:function(){return X},writeDynamicRenderResponseIntoCache:function(){return eE},writeRouteIntoCache:function(){return el},writeStaticStageResponseIntoCache:function(){return eO}};for(var l in a)Object.defineProperty(r,l,{enumerable:!0,get:a[l]});let u=e.r(6372),i=e.r(21768),o=e.r(87288),c=e.r(77709),s=e.r(56655),f=e.r(51191),d=e.r(77048),h=e.r(33906),p=e.r(511),y=e.r(67764),_=e.r(50590),g=e.r(54069),E=e.r(91949),v=e.r(13258),R=e.r(9396),m=e.r(39470),P=e.r(79027),S=e.r(96167),b=e.r(60355),T=e.r(32992),O=e.r(63416);function A(e){return 1e3*Math.max(e,30)}var w=((n={})[n.Empty=0]="Empty",n[n.Pending=1]="Pending",n[n.Fulfilled=2]="Fulfilled",n[n.Rejected=3]="Rejected",n);let N=["",{},null,"metadata-only"],C=(0,p.createCacheMap)(),j=(0,p.createCacheMap)(),M=null,D=0,I=0;function F(){return D}function U(){return I}function x(e,t){D++,I++,(0,E.pingVisibleLinks)(e,t),H(e,t)}function L(e,t){D++,(0,E.pingVisibleLinks)(e,t),H(e,t)}function k(e,t){I++,(0,E.pingVisibleLinks)(e,t),H(e,t)}function H(e,t){if(null!==M){let r=M;for(let n of(M=null,r))(0,c.isPrefetchTaskDirty)(n,e,t)&&function(e){let t=e.onInvalidate;if(null!==t){e.onInvalidate=null;try{t()}catch(e){"function"==typeof reportError?reportError(e):console.error(e)}}}(n)}}function V(e,t){let r=(0,s.getRouteVaryPath)(t.pathname,t.search,t.nextUrl),n=(0,p.getFromCacheMap)(e,D,C,r,!1);return null!==n?n:null}function B(e,t){return(0,p.getFromCacheMap)(e,I,j,t,!1)}function X(e){let t=e.promise;return null===t&&(t=e.promise=(0,m.createPromiseWithResolvers)()),t.promise}function $(){return{canonicalUrl:null,status:0,blockedTasks:null,tree:null,metadata:null,couldBeIntercepted:!0,supportsPerSegmentPrefetching:!1,renderedSearch:null,ref:null,size:0,staleAt:1/0,version:D}}function K(e,t,r){null!==t.onInvalidate&&(null===M?M=new Set([t]):M.add(t));let n=V(e,r);if(null!==n)return n;let a=$(),l=(0,s.getRouteVaryPath)(r.pathname,r.search,r.nextUrl);return(0,p.setInCacheMap)(C,l,a,!1),a}function G(e,t,r){let n=t.search;if(""===n)return null;let a=new URL(t);a.search="";let l=V(e,(0,d.createCacheKey)(a.href,r));if(null===l||2!==l.status)return null;let u=new URL(l.canonicalUrl,t.origin),i=""!==u.search?u.search:n,o=""!==l.renderedSearch?l.renderedSearch:n,c=new URL(l.canonicalUrl,location.origin);return c.search=i,{canonicalUrl:(0,f.createHrefFromUrl)(c),status:2,blockedTasks:null,tree:q(l.tree,o),metadata:q(l.metadata,o),couldBeIntercepted:l.couldBeIntercepted,supportsPerSegmentPrefetching:l.supportsPerSegmentPrefetching,hasDynamicRewrite:l.hasDynamicRewrite,renderedSearch:o,ref:null,size:0,staleAt:l.staleAt,version:l.version}}function q(e,t){let r=null,n=e.slots;if(null!==n)for(let e in r={},n){let a=n[e];r[e]=q(a,t)}return e.isPage?{requestKey:e.requestKey,segment:e.segment,refreshState:e.refreshState,varyPath:(0,s.clonePageVaryPathWithNewSearchParams)(e.varyPath,t),isPage:!0,slots:r,prefetchHints:e.prefetchHints}:{requestKey:e.requestKey,segment:e.segment,refreshState:e.refreshState,varyPath:e.varyPath,isPage:!1,slots:r,prefetchHints:e.prefetchHints}}function Y(e,t,r){let n=B(e,r.varyPath);if(null!==n)return n;let a=(0,s.getSegmentVaryPathForRequest)(t,r),l=J(e);return(0,p.setInCacheMap)(j,a,l,!1),l}function W(e,t,r){var n;let a=(n=r.varyPath,(0,p.getFromCacheMap)(e,I,j,n,!0));if(null!==a)return a;let l=(0,s.getSegmentVaryPathForRequest)(t,r),u=J(e);return(0,p.setInCacheMap)(j,l,u,!0),u}function z(e,t,r){let n=(0,s.getSegmentVaryPathForRequest)(t,r),a=J(e);return(0,p.setInCacheMap)(j,n,a,!0),a}function Q(e,t,r){if((0,p.isValueExpired)(e,I,r))return null;let n=B(e,t);if(null!==n){var a;if(r.fetchStrategy!==n.fetchStrategy&&(a=n.fetchStrategy,!(ar?null:ei(Z(t,R.FetchStrategy.Full),a.rsc,r,!1)}return null}function et(e,t){let r=t.varyPath,n=(0,P.readFromBFCache)(r);if(null!==n){let r=n.navigatedAt+g.STATIC_STALETIME_MS;if(e>r)return null;let a=ei(Z(J(e),R.FetchStrategy.Full),n.rsc,r,!1),l=Q(e,(0,s.getSegmentVaryPathForRequest)(R.FetchStrategy.Full,t),a);if(null!==l&&2===l.status)return l}return null}function er(e){let t=e.blockedTasks;if(null!==t){for(let e of t)(0,c.pingPrefetchTask)(e);e.blockedTasks=null}}function en(e){return{requestKey:y.HEAD_REQUEST_KEY,segment:y.HEAD_REQUEST_KEY,refreshState:null,varyPath:e,isPage:!0,slots:null,prefetchHints:0}}function ea(e,t,r,n,a,l,u){let i=(0,s.getRenderedSearchFromVaryPath)(n)??"";return t.status=2,t.tree=r,t.metadata=en(n),t.staleAt=e+g.STATIC_STALETIME_MS,t.couldBeIntercepted=a,t.canonicalUrl=l,t.renderedSearch=i,t.supportsPerSegmentPrefetching=u,t.hasDynamicRewrite=!1,er(t),t}function el(e,t,r,n,a,l,u,i){let o=ea(e,$(),n,a,l,u,i),c=o.renderedSearch,f=(0,s.getFulfilledRouteVaryPath)(t,c,r,l);return(0,p.setInCacheMap)(C,f,o,!1),o}function eu(e){e.hasDynamicRewrite=!0}function ei(e,t,r,n){return e.status=2,e.rsc=t,e.staleAt=r,e.isPartial=n,null!==e.promise&&(e.promise.resolve(e),e.promise=null),e}function eo(e,t){e.status=3,e.staleAt=t,er(e)}function ec(e,t){e.status=3,e.staleAt=t,null!==e.promise&&(e.promise.resolve(null),e.promise=null)}function es(e,t,r){return ed(e,y.ROOT_SEGMENT_REQUEST_KEY,null,t,r)}function ef(e,t,r,n,a){let l=e.isPage?(0,s.getPartialPageVaryPath)(e.varyPath):(0,s.getPartialLayoutVaryPath)(e.varyPath),u=r[0],i=e.requestKey,o=(0,y.createSegmentRequestKeyPart)(u);return ed(r,(0,y.appendSegmentRequestKeyPart)(i,t,o),l,n,a)}function ed(e,t,r,n,a){let l,u,i,o,c=e[0],f=e[2]??null,d=null!==f?{canonicalUrl:f[0],renderedSearch:f[1]}:null,h=null!==d?d.renderedSearch:n;if(Array.isArray(c)){i=!1;let e=c[1],n=c[0];u=(0,s.appendLayoutVaryPath)(r,e,n),o=(0,s.finalizeLayoutVaryPath)(t,u),l=c}else u=r,t.endsWith(v.PAGE_SEGMENT_KEY)?(i=!0,l=v.PAGE_SEGMENT_KEY,o=(0,s.finalizePageVaryPath)(t,h,u),null===a.metadataVaryPath&&(a.metadataVaryPath=(0,s.finalizeMetadataVaryPath)(t,h,u))):(i=!1,l=c,o=(0,s.finalizeLayoutVaryPath)(t,u));let p=null,_=e[1];for(let e in _){let r=_[e],n=r[0],l=(0,y.createSegmentRequestKeyPart)(n),i=ed(r,(0,y.appendSegmentRequestKeyPart)(t,e,l),u,h,a);null===p?p={[e]:i}:p[e]=i}return{requestKey:t,segment:l,refreshState:d,varyPath:o,isPage:i,slots:p,prefetchHints:e[4]??0}}async function eh(e,t){let r=t.pathname,n=t.search,a=t.nextUrl,l={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_PREFETCH_HEADER]:"1",[i.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:"/_tree"};null!==a&&(l[i.NEXT_URL]=a),eS(l);try{let t,c,d=new URL(r+n,location.origin);if(t=await eR(d,l),c=null!==t&&t.redirected?new URL(t.url):d,!t||!t.ok||204===t.status||!t.body)return eo(e,Date.now()+1e4),null;let g=(0,f.createHrefFromUrl)(c),E=t.headers.get("vary"),A=null!==E&&E.includes(i.NEXT_URL),w=(0,m.createPromiseWithResolvers)(),N="2"===t.headers.get(i.NEXT_DID_POSTPONE_HEADER);if(N){let n,u,{stream:i,size:c}=await em(t.body);w.resolve(),(0,p.setSizeInCacheMap)(e,c);let f=await (0,o.createFromNextReadableStream)(i,l,{allowPartialStream:!0});if((t.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??f.buildId)!==(0,T.getNavigationBuildId)())return eo(e,Date.now()+1e4),null;let d=(0,h.getRenderedPathname)(t),_=(0,h.getRenderedSearch)(t),E={metadataVaryPath:null},R=(n=d.split("/").filter(e=>""!==e),u=y.ROOT_SEGMENT_REQUEST_KEY,function e(t,r,n,a,l,u,i,o){let c,f,d=null,p=t.slots;if(null!==p)for(let t in c=!1,f=(0,s.finalizeLayoutVaryPath)(a,n),d={},p){let r,c,f,_=p[t],g=_.name,E=_.param;if(null!==E){let e=(0,h.parseDynamicParamFromURLPart)(E.type,l,u),t=null!==E.key?E.key:(0,h.getCacheKeyForDynamicParam)(e,"");f=(0,s.appendLayoutVaryPath)(n,t,g),c=[g,t,E.type,E.siblings],r=!0}else f=n,c=g,r=(0,h.doesStaticSegmentAppearInURL)(g);let v=r?u+1:u,R=(0,y.createSegmentRequestKeyPart)(c),m=(0,y.appendSegmentRequestKeyPart)(a,t,R);d[t]=e(_,c,f,m,l,v,i,o)}else a.endsWith(v.PAGE_SEGMENT_KEY)?(c=!0,f=(0,s.finalizePageVaryPath)(a,i,n),null===o.metadataVaryPath&&(o.metadataVaryPath=(0,s.finalizeMetadataVaryPath)(a,i,n))):(c=!1,f=(0,s.finalizeLayoutVaryPath)(a,n));return{requestKey:a,segment:r,refreshState:null,varyPath:f,isPage:c,slots:d,prefetchHints:t.prefetchHints}}(f.tree,u,null,y.ROOT_SEGMENT_REQUEST_KEY,n,0,_,E)),m=E.metadataVaryPath;if(null===m)return eo(e,Date.now()+1e4),null;(0,S.discoverKnownRoute)(Date.now(),r,a,e,R,m,A,g,N,!1)}else{let{stream:n,size:c}=await em(t.body);w.resolve(),(0,p.setSizeInCacheMap)(e,c);let s=await (0,o.createFromNextReadableStream)(n,l,{allowPartialStream:!0});if((t.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??s.b)!==(0,T.getNavigationBuildId)())return eo(e,Date.now()+1e4),null;let f=s.h,d=null!==f?(0,u.readVaryParams)(f):null;!function(e,t,r,n,a,l,u,o,c,s,f){let d=(0,h.getRenderedSearch)(r),p=(0,_.normalizeFlightData)(n.f);if("string"==typeof p||1!==p.length)return eo(a,e+1e4);let y=p[0];if(!y.isRootRender)return eo(a,e+1e4);let g=y.tree,E="1"===r.headers.get(i.NEXT_DID_POSTPONE_HEADER),v={metadataVaryPath:null},R=es(g,d,v),m=v.metadataVaryPath;if(null===m)return eo(a,e+1e4);(0,S.discoverKnownRoute)(e,s,f,a,R,m,l,u,o,!1);let T=(0,b.convertServerPatchToFullTree)(e,g,p,d,P.UnknownDynamicStaleTime);eE(e,t,p,r.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??n.b,E,c,eb(e,r),T,null)}(Date.now(),R.FetchStrategy.LoadingBoundary,t,s,e,A,g,N,d,r,a)}if(!A){let t=(0,s.getFulfilledRouteVaryPath)(r,n,a,A);(0,p.setInCacheMap)(C,t,e,!1)}return{value:null,closed:w.promise}}catch(t){return eo(e,Date.now()+1e4),null}}async function ep(e,t,r,n){let a=new URL(e.canonicalUrl,location.origin),l=r.nextUrl,u=n.requestKey,c=u===y.ROOT_SEGMENT_REQUEST_KEY?"/_index":u,f={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_PREFETCH_HEADER]:"1",[i.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:c};null!==l&&(f[i.NEXT_URL]=l),eS(f);try{let e=await eR(a,f);if(!e||!e.ok||204===e.status||"2"!==e.headers.get(i.NEXT_DID_POSTPONE_HEADER)||!e.body)return ec(t,Date.now()+1e4),null;let r=(0,m.createPromiseWithResolvers)(),{stream:l,size:u}=await em(e.body);r.resolve(),(0,p.setSizeInCacheMap)(t,u);let c=await (0,o.createFromNextReadableStream)(l,f,{allowPartialStream:!0});if((e.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??c.buildId)!==(0,T.getNavigationBuildId)())return ec(t,Date.now()+1e4),null;let d=Date.now(),h=d+A(c.staleTime),y=ei(t,c.rsc,h,c.isPartial);c.varyParams;let _=(0,s.getSegmentVaryPathForRequest)(t.fetchStrategy,n);return Q(d,_,y),{value:y,closed:r.promise}}catch(e){return ec(t,Date.now()+1e4),null}}async function ey(e,t,r,n){let a=new URL(e.canonicalUrl,location.origin),l=t.nextUrl,u={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_PREFETCH_HEADER]:"1",[i.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:"/"+v.PAGE_SEGMENT_KEY};null!==l&&(u[i.NEXT_URL]=l),eS(u);try{let t=await eR(a,u);if(!t||!t.ok||204===t.status||"2"!==t.headers.get(i.NEXT_DID_POSTPONE_HEADER)||!t.body)return eg(n,Date.now()+1e4),null;let l=(0,m.createPromiseWithResolvers)(),{stream:c}=await em(t.body);l.resolve();let s=await (0,o.createFromNextReadableStream)(c,u,{allowPartialStream:!0});if((t.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??s.tree.segment.buildId)!==(0,T.getNavigationBuildId)())return eg(n,Date.now()+1e4),null;let f=Date.now();!function e(t,r,n,a,l){let u=a.segment,i=t+A(u.staleTime),o=l.get(n.requestKey);if(void 0!==o)ei(o,u.rsc,i,u.isPartial);else{let e=Y(t,R.FetchStrategy.PPR,n);0===e.status&&ei(Z(e,R.FetchStrategy.PPR),u.rsc,i,u.isPartial)}if(null!==n.slots&&null!==a.slots)for(let u in n.slots){let i=n.slots[u],o=a.slots[u];void 0!==o&&e(t,r,i,o,l)}}(f,e,r,s.tree,n);let d=f+A(s.head.staleTime),h=e.metadata.requestKey,p=n.get(h);if(void 0!==p)ei(p,s.head.rsc,d,s.head.isPartial);else{let t=Y(f,R.FetchStrategy.PPR,e.metadata);0===t.status&&ei(Z(t,R.FetchStrategy.PPR),s.head.rsc,d,s.head.isPartial)}return eg(n,Date.now()+1e4),{value:null,closed:l.promise}}catch(e){return eg(n,Date.now()+1e4),null}}async function e_(e,t,r,n,a){let l=e.key,c=new URL(t.canonicalUrl,location.origin),s=l.nextUrl;1===a.size&&a.has(t.metadata.requestKey)&&(n=N);let f={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_STATE_TREE_HEADER]:(0,_.prepareFlightRouterStateForRequest)(n)};switch(null!==s&&(f[i.NEXT_URL]=s),r){case R.FetchStrategy.Full:break;case R.FetchStrategy.PPRRuntime:f[i.NEXT_ROUTER_PREFETCH_HEADER]="2";break;case R.FetchStrategy.LoadingBoundary:f[i.NEXT_ROUTER_PREFETCH_HEADER]="1"}try{let e,l=await eR(c,f);if(!l||!l.ok||!l.body)return eg(a,Date.now()+1e4),null;let i=(0,h.getRenderedSearch)(l);if(i!==t.renderedSearch)return eg(a,Date.now()+1e4),null;let s=(0,m.createPromiseWithResolvers)(),E=null,v=null;if(r===R.FetchStrategy.Full){var d,y,g;let t,r;d=l.body,y=s.resolve,g=function(e){if(null===E)return;let t=e/E.length;for(let e of E)(0,p.setSizeInCacheMap)(e,t)},t=0,r=d.getReader(),e=new ReadableStream({async pull(e){for(;;){let{done:n,value:a}=await r.read();if(!n){e.enqueue(a),g(t+=a.byteLength);continue}e.close(),y();return}}})}else{let{stream:t,size:r}=await em(l.body);s.resolve(),e=t,v=r}let[S,T]=await Promise.all([(0,o.createFromNextReadableStream)(e,f,{allowPartialStream:!0}),l.cacheData]),A=S.h,w=null!==A?(0,u.readVaryParams)(A):null,N=Date.now(),C=await eT(N,S.s,l),j=r===R.FetchStrategy.PPRRuntime&&(T?.isResponsePartial??!1),M=l.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??S.b,D=(0,_.normalizeFlightData)(S.f);if("string"==typeof D)return eg(a,Date.now()+1e4),null;let I=(0,b.convertServerPatchToFullTree)(N,n,D,i,P.UnknownDynamicStaleTime);if(E=eE(N,r,D,M,j,w,C,I,a),null!==v&&null!==E&&E.length>0){let e=v/E.length;for(let t of E)(0,p.setSizeInCacheMap)(t,e)}return{value:null,closed:s.promise}}catch(e){return eg(a,Date.now()+1e4),null}}function eg(e,t){let r=[];for(let n of e.values())1===n.status?ec(n,t):2===n.status&&r.push(n);return r}function eE(e,t,r,n,a,l,i,o,c){if(n&&n!==(0,T.getNavigationBuildId)())return null!==c&&eg(c,e+1e4),null;let s=o.routeTree,f=null!==o.metadataVaryPath?en(o.metadataVaryPath):null;for(let n of r){let r=n.seedData;if(null!==r){let l=n.segmentPath,o=s;for(let t=0;t1){t=new Uint8Array(a);let e=0;for(let r of n)t.set(r,e),e+=r.byteLength}else t=new Uint8Array(0);return{stream:new ReadableStream({start(e){e.enqueue(t),e.close()}}),size:a}}function eP(e,t){return ee.close()}),isPartial:!1};let a=n[0],l=35===a||126===a,u=l?n.byteLength>1?n.subarray(1):null:n;return{isPartial:!!l&&126===a,stream:new ReadableStream({start(e){u&&e.enqueue(u)},async pull(e){let r=await t.read();r.done?e.close():e.enqueue(r.value)}})}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},87288,(e,t,r)=>{"use strict";let n;Object.defineProperty(r,"__esModule",{value:!0});var a={createFetch:function(){return T},createFromNextReadableStream:function(){return O},decodeStaticStage:function(){return b},fetchServerResponse:function(){return m},processFetch:function(){return P},resolveStaticStageData:function(){return S}};for(var l in a)Object.defineProperty(r,l,{enumerable:!0,get:a[l]});let u=e.r(35326);e.r(12718);let i=e.r(21768),o=e.r(32120),c=e.r(92245),s=e.r(50590),f=e.r(88093),d=e.r(33906),h=e.r(43369),p=e.r(32992),y=e.r(63416);e.r(20896);let _=e.r(79027),g=u.createFromReadableStream,E=u.createFromFetch;function v(e){return(0,d.urlToUrlWithoutFlightMarker)(new URL(e,location.origin)).toString()}let R=!1;async function m(e,t){let{flightRouterState:r,nextUrl:n}=t,a={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_STATE_TREE_HEADER]:(0,s.prepareFlightRouterStateForRequest)(r,t.isHmrRefresh)};n&&(a[i.NEXT_URL]=n);try{let t=await T(e,a,"auto",!0),r=(0,d.urlToUrlWithoutFlightMarker)(new URL(t.url)),n=t.redirected?r:e,l=t.headers.get("content-type")||"",u=!!t.headers.get("vary")?.includes(i.NEXT_URL),o=!!t.headers.get(i.NEXT_DID_POSTPONE_HEADER);if(!l.startsWith(i.RSC_CONTENT_TYPE_HEADER)||!t.ok||!t.body)return e.hash&&(r.hash=e.hash),v(r.toString());let c=t.flightResponsePromise;null===c&&(c=O(t.body,a,{allowPartialStream:o}));let[f,h]=await Promise.all([c,t.cacheData]);if((t.headers.get(y.NEXT_NAV_DEPLOYMENT_ID_HEADER)??f.b)!==(0,p.getNavigationBuildId)())return v(t.url);let g=(0,s.normalizeFlightData)(f.f);if("string"==typeof g)return v(g);let E=null!==h?await S(h,f,a):null;return{flightData:g,canonicalUrl:n,renderedSearch:f.q,couldBeIntercepted:u,supportsPerSegmentPrefetching:f.S,postponed:o,dynamicStaleTime:f.d??_.UnknownDynamicStaleTime,staticStageData:E,runtimePrefetchStream:f.p??null,responseHeaders:t.headers,debugInfo:c._debugInfo??null}}catch(t){return R||console.error(`Failed to fetch RSC payload for ${e}. Falling back to browser navigation.`,t),e.toString()}}async function P(e){return{response:e,cacheData:null}}async function S(e,t,r){let{isResponsePartial:n,responseBodyClone:a}=e;if(a){if(!n)return a.cancel(),{response:t,isResponsePartial:!1};if(void 0!==t.l)return{response:await b(a,t.l,r),isResponsePartial:!0};a.cancel()}return null}async function b(e,t,r){var n,a;let l,u;return O((n=e,a=await t,l=n.getReader(),u=a,new ReadableStream({async pull(e){if(u<=0){l.cancel(),e.close();return}let{done:t,value:r}=await l.read();t?e.close():r.byteLength<=u?(e.enqueue(r),u-=r.byteLength):(e.enqueue(r.subarray(0,u)),u=0,l.cancel(),e.close())},cancel(){l.cancel()}})),r,{allowPartialStream:!0})}async function T(e,t,r,a,l){var u,s;let d=(0,h.getDeploymentId)();d&&(t["x-deployment-id"]=d);let p=new URL(e);await (0,f.setCacheBustingSearchParam)(p,t);let y=fetch(p,{credentials:"same-origin",headers:t,priority:r||void 0,signal:l}).then(P),_=y.then(({response:e})=>e),g=a?(u=_,s=t,E(u,{callServer:o.callServer,findSourceMapURL:c.findSourceMapURL,debugChannel:n&&n(s)})):null,v=await _,R=v.redirected,m=new URL(v.url,p);return m.searchParams.delete(i.NEXT_RSC_UNION_QUERY),{url:m.href,redirected:R,ok:v.ok,headers:v.headers,body:v.body,status:v.status,flightResponsePromise:g,cacheData:y.then(({cacheData:e})=>e)}}function O(e,t,r){return g(e,{callServer:o.callServer,findSourceMapURL:c.findSourceMapURL,debugChannel:n&&n(t),unstable_allowPartialStream:r?.allowPartialStream})}"u">typeof window&&(window.addEventListener("pagehide",()=>{R=!0}),window.addEventListener("pageshow",()=>{R=!1})),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},48919,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isNavigatingToNewRootLayout",{enumerable:!0,get:function(){return function e(t,r){let a=t[0],l=r.segment;if(Array.isArray(a)&&Array.isArray(l)){if(a[0]!==l[0]||a[2]!==l[2])return!0}else if(a!==l)return!0;let u=((t[4]??0)&n.PrefetchHint.IsRootLayout)!=0,i=(r.prefetchHints&n.PrefetchHint.IsRootLayout)!=0;if(u)return!i;if(i)return!0;let o=r.slots,c=t[1];if(null!==o)for(let t in o){let r=o[t],n=c[t];if(void 0===n||e(n,r))return!0}return!1}}});let n=e.r(22744);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},94272,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={getLastCommittedTree:function(){return u},setLastCommittedTree:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=null;function u(){return l}function i(e){l=e}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},95871,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a={FreshnessPolicy:function(){return P},createInitialCacheNodeForHydration:function(){return b},isDeferredRsc:function(){return L},spawnDynamicRequests:function(){return D},startPPRNavigation:function(){return T}};for(var l in a)Object.defineProperty(r,l,{enumerable:!0,get:a[l]});let u=e.r(22744),i=e.r(13258),o=e.r(56019),c=e.r(51191),s=e.r(87288),f=e.r(41538),d=e.r(88540),h=e.r(48919),p=e.r(94272),y=e.r(60355),_=e.r(20896),g=e.r(9396),E=e.r(96167),v=e.r(63416),R=e.r(56655),m=e.r(79027);var P=((n={})[n.Default=0]="Default",n[n.Hydration=1]="Hydration",n[n.HistoryTraversal=2]="HistoryTraversal",n[n.RefreshAll=3]="RefreshAll",n[n.HMRRefresh=4]="HMRRefresh",n[n.Gesture=5]="Gesture",n);let S=()=>{};function b(e,t,r,n,a){return O(e,t,null,1,r,n,a,!1,{separateRefreshUrls:null,scrollRef:null})}function T(e,t,r,n,a,l,s,f,d,p,y,g,E){let v={canonicalUrl:(0,c.createHrefFromUrl)(t),renderedSearch:r};return function e(t,r,n,a,l,c,s,f,d,p,y,g,E,v,R,m){var P,S,b;let T,w,M,D,I=a[0],F=A(l);if(!(0,o.matchSegment)(F,I))return!f&&(0,h.isNavigatingToNewRootLayout)(a,l)||F===i.NOT_FOUND_SEGMENT_KEY?null:O(t,l,c,s,d,p,y,E,m);let U=l.slots,x=a[1],L=null!==d?d[1]:null,k=f||(l.prefetchHints&u.PrefetchHint.IsRootLayout)!=0,H=!1;switch(s){case 0:case 2:case 1:case 5:H=!1;break;case 3:case 4:H=!0}let V=null===U;if(void 0===n||H||V&&g){let e=C(t,l,null!==d?d[0]:null,c,p,s,y);M=e.cacheNode,D=e.needsDynamicRequest,void 0!==n&&(M.scrollRef=n.scrollRef)}else{P=!1,M=j((S=n).rsc,P?null:S.prefetchRsc,S.head,P?null:S.prefetchHead,S.scrollRef),D=!1}let B=l.refreshState,X=null!=B?B:R;D&&null!==X&&(b=m,T=X.canonicalUrl,null===(w=b.separateRefreshUrls)?b.separateRefreshUrls=new Set([T]):w.add(T));let $={},K=null,G=!1,q={},Y=null;if(null!==U){let a=void 0!==n?n.slots:null;for(let n in M.slots=Y={},K=new Map,U){let u=U[n],o=x[n];if(void 0===o)return null;let f=null!==L?L[n]:null,d=o[0],h=A(u),R=p;2!==s&&h===i.DEFAULT_SEGMENT_KEY&&d!==i.DEFAULT_SEGMENT_KEY&&(h=A(u=function(e,t,r,n){let a,l,u=n[2];null!=u?(a=u[0],l=u[1]):(a=r.canonicalUrl,l=r.renderedSearch);let i=(0,_.convertReusedFlightRouterStateToRouteTree)(e,t,n,l,{metadataVaryPath:null});return i.refreshState={canonicalUrl:a,renderedSearch:l},i}(l,n,v,o)),f=null,R=null);let P=e(t,r,null!==a?a[n]:void 0,o,u,c,s,k,f??null,R,y,g,E||D,v,X,m);if(null===P)return null;K.set(n,P),Y[n]=P.node;let S=P.route;$[n]=S;let b=P.dynamicRequestTree;null!==b?(G=!0,q[n]=b):q[n]=S}}let W=[A(l),$,null!==X?[X.canonicalUrl,X.renderedSearch]:null,null,l.prefetchHints];return{status:+!D,route:W,node:M,dynamicRequestTree:N(W,q,D,G,E),refreshState:X,children:K}}(e,t,null!==n?n:void 0,a,l,s,f,!1,d,p,y,g,!1,v,null,E)}function O(e,t,r,n,a,l,u,i,o){let c=A(t),s=t.slots,f=null!==a?a[1]:null,d=C(e,t,null!==a?a[0]:null,r,l,n,u),h=d.cacheNode,p=d.needsDynamicRequest;null===s&&function(e,t,r){switch(e){case 0:case 5:case 3:case 4:null===r.scrollRef&&(r.scrollRef={current:!0}),t.scrollRef=r.scrollRef}}(n,h,o);let y={},_=null,g=!1,E={},v=null;if(null!==s)for(let t in h.slots=v={},_=new Map,s){let a=O(e,s[t],r,n,(null!==f?f[t]:null)??null,l,u,i||p,o);_.set(t,a),v[t]=a.node;let c=a.route;y[t]=c;let d=a.dynamicRequestTree;null!==d?(g=!0,E[t]=d):E[t]=c}let R=[c,y,null,null,t.prefetchHints];return{status:+!p,route:R,node:h,dynamicRequestTree:N(R,E,p,g,i),refreshState:null,children:_}}function A(e){if(e.isPage){let t=(0,R.getRenderedSearchFromVaryPath)(e.varyPath);if(null===t)return i.PAGE_SEGMENT_KEY;let r=JSON.stringify(Object.fromEntries(new URLSearchParams(t)));return"{}"!==r?i.PAGE_SEGMENT_KEY+"?"+r:i.PAGE_SEGMENT_KEY}return e.segment}function w(e,t){let r=[e[0],t];return 2 in e&&(r[2]=e[2]),3 in e&&(r[3]=e[3]),4 in e&&(r[4]=e[4]),r}function N(e,t,r,n,a){let l=null;return r?(l=w(e,t),a||(l[3]="refetch")):l=n?w(e,t):null,l}function C(e,t,r,n,a,l,u){let i,o,c,s=t.isPage;switch(l){case 0:{let r=(0,m.readFromBFCacheDuringRegularNavigation)(e,t.varyPath);if(null!==r)return{cacheNode:j(r.rsc,r.prefetchRsc,r.head,r.prefetchHead),needsDynamicRequest:!1};break}case 1:{let l=s?a:null;return(0,m.writeToBFCache)(e,t.varyPath,r,null,l,null,u),s&&null!==n&&(0,m.writeHeadToBFCache)(e,n,l,null,u),{cacheNode:j(r,null,l,null),needsDynamicRequest:!1}}case 2:let f=(0,m.readFromBFCache)(t.varyPath);if(null!==f){let e=f.rsc,t=!L(e)||"pending"!==e.status;return{cacheNode:j(f.rsc,t?null:f.prefetchRsc,f.head,t?null:f.prefetchHead),needsDynamicRequest:!1}}}let d=null,h=!0,p=(0,_.readSegmentCacheEntry)(e,t.varyPath);if(null!==p)switch(p.status){case _.EntryStatus.Fulfilled:d=p.rsc,h=p.isPartial;break;case _.EntryStatus.Pending:d=(0,_.waitForSegmentCacheEntry)(p).then(e=>null!==e?e.rsc:null),h=p.isPartial;case _.EntryStatus.Empty:case _.EntryStatus.Rejected:}null!==r?(h?(i=d,o=r):(i=null,o=d),c=!1):(h?(i=d,o=k()):(i=null,o=d),c=h);let y=null,g=null,E=s;if(s){let t=null,r=!0;if(null!==n){let a=(0,_.readSegmentCacheEntry)(e,n);if(null!==a)switch(a.status){case _.EntryStatus.Fulfilled:t=a.rsc,r=a.isPartial;break;case _.EntryStatus.Pending:t=(0,_.waitForSegmentCacheEntry)(a).then(e=>null!==e?e.rsc:null),r=a.isPartial;case _.EntryStatus.Empty:case _.EntryStatus.Rejected:}}null!==a?(r?(y=t,g=a):(y=null,g=t),E=!1):(r?(y=t,g=k()):(y=null,g=t),E=r)}return 5!==l&&((0,m.writeToBFCache)(e,t.varyPath,o,i,g,y,u),s&&null!==n&&(0,m.writeHeadToBFCache)(e,n,g,y,u)),{cacheNode:j(o,i,g,y),needsDynamicRequest:c||E}}function j(e,t,r,n,a=null){return{rsc:e,prefetchRsc:t,head:r,prefetchHead:n,slots:null,scrollRef:a}}let M=!1;function D(e,t,r,n,a,l,u){let i=e.dynamicRequestTree;if(null===i){M=!1;return}let o=U(e,i,t,r,n,l),s=a.separateRefreshUrls,f=null;if(null!==s){f=[];let a=(0,c.createHrefFromUrl)(t);for(let t of s)t!==a&&null!==i&&f.push(U(e,i,new URL(t,location.origin),r,n,l))}I(e,r,o,f,l,u).then(S,S)}async function I(e,t,r,n,a,l){var u,i;let o=await (u=r,i=n,new Promise(e=>{let t=t=>{0===t.exitStatus?0==--n&&e(0):e(t.exitStatus)},r=()=>e(2),n=1;u.then(t,r),null!==i&&(n+=i.length,i.forEach(e=>e.then(t,r)))}));switch(0===o&&(o=function e(t,r,n){var a,l,u;let i,o,c;0===t.status?(t.status=2,a=t.node,l=r,u=n,L(o=a.rsc)&&(null===l?o.resolve(null,u):o.reject(l,u)),L(c=a.head)&&c.resolve(null,u),i=null===t.refreshState?1:2):i=0;let s=t.children;if(null!==s)for(let[,t]of s){let a=e(t,r,n);a>i&&(i=a)}return i}(e,null,null)),o){case 0:M=!1;return;case 1:{let n=await r;F(!1,n.url,t,n.seed,e.route,a,l);return}case 2:{let n=await r;F(!0,n.url,t,n.seed,e.route,a,l);return}default:return o}}function F(e,t,r,n,a,l,u){if(null!==l)(0,_.markRouteEntryAsDynamicRewrite)(l);else if(null!==n){let e=n.metadataVaryPath;if(null!==e){let a=Date.now();(0,E.discoverKnownRoute)(a,t.pathname,r,null,n.routeTree,e,!1,(0,c.createHrefFromUrl)(t),!1,!0)}}(0,_.invalidateRouteCacheEntries)(r,a),e=e||M,M=!0;let i=(0,p.getLastCommittedTree)(),o=null!==i&&a!==i?u:"replace",s={type:d.ACTION_SERVER_PATCH,previousTree:a,url:t,nextUrl:r,seed:n,mpa:e,navigateType:o};(0,f.dispatchAppRouterAction)(s)}async function U(e,t,r,n,a,l){try{let u=await (0,s.fetchServerResponse)(r,{flightRouterState:t,nextUrl:n,isHmrRefresh:4===a});if("string"==typeof u)return{exitStatus:2,url:new URL(u,location.origin),seed:null};let i=Date.now(),c=(0,y.convertServerPatchToFullTree)(i,e.route,u.flightData,u.renderedSearch,u.dynamicStaleTime);if(null!==l&&null!==u.staticStageData){let{response:e,isResponsePartial:r}=u.staticStageData;(0,_.getStaleAt)(i,e.s).then(n=>{let a=u.responseHeaders.get(v.NEXT_NAV_DEPLOYMENT_ID_HEADER)??e.b;(0,_.writeStaticStageResponseIntoCache)(i,e.f,a,e.h,n,t,u.renderedSearch,r)}).catch(()=>{})}null!==l&&null!==u.runtimePrefetchStream&&(0,_.processRuntimePrefetchStream)(i,u.runtimePrefetchStream,t,u.renderedSearch).then(e=>{null!==e&&(0,_.writeDynamicRenderResponseIntoCache)(i,g.FetchStrategy.PPRRuntime,e.flightDatas,e.buildId,e.isResponsePartial,e.headVaryParams,e.staleAt,e.navigationSeed,null)}).catch(()=>{});let f=(0,m.computeDynamicStaleAt)(i,u.dynamicStaleTime);return{exitStatus:+!!function e(t,r,n,a,l,u){0===t.status&&null!==n&&(t.status=1,function(e,t,r,n){let a=e.rsc,l=t[0];if(null===l)return;null===a?e.rsc=l:L(a)&&a.resolve(l,n);let u=e.head;L(u)&&u.resolve(r,n)}(t.node,n,a,u),(0,m.updateBFCacheEntryStaleAt)(r.varyPath,l));let i=t.children,c=r.slots,s=null!==n?n[1]:null,f=!1;if(null!==i)if(null!==c)for(let t in c){let r=c[t],n=null!==s?s[t]:null,d=i.get(t);if(void 0===d)f=!0;else{let t=d.route[0],i=A(r);(0,o.matchSegment)(i,t)&&null!=n&&e(d,r,n,a,l,u)&&(f=!0)}}else null!==c&&(f=!0);return f}(e,c.routeTree,c.data,c.head,f,u.debugInfo),url:new URL(u.canonicalUrl,location.origin),seed:c}}catch{return{exitStatus:2,url:r,seed:null}}}let x=Symbol();function L(e){return e&&"object"==typeof e&&e.tag===x}function k(){let e,t,r=[],n=new Promise((r,n)=>{e=r,t=n});return n.status="pending",n.resolve=(t,a)=>{"pending"===n.status&&(n.status="fulfilled",n.value=t,null!==a&&r.push.apply(r,a),e(t))},n.reject=(e,a)=>{"pending"===n.status&&(n.status="rejected",n.reason=e,null!==a&&r.push.apply(r,a),t(e))},n.tag=x,n._debugInfo=r,n}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},3372,(e,t,r)=>{"use strict";function n(e){return e.startsWith("/")?e:`/${e}`}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ensureLeadingSlash",{enumerable:!0,get:function(){return n}})},74180,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={compareAppPaths:function(){return o},normalizeAppPath:function(){return i},normalizeRscURL:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(3372),u=e.r(13258);function i(e){return(0,l.ensureLeadingSlash)(e.split("/").reduce((e,t,r,n)=>!t||(0,u.isGroupSegment)(t)||"@"===t[0]||("page"===t||"route"===t)&&r===n.length-1?e:`${e}/${t}`,""))}function o(e,t){let r=e.includes("/@"),n=t.includes("/@");return r&&!n?-1:!r&&n?1:e.localeCompare(t)}function c(e){return e.replace(/\.rsc($|\?)/,"$1")}},91463,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={INTERCEPTION_ROUTE_MARKERS:function(){return u},extractInterceptionRouteInformation:function(){return o},isInterceptionRouteAppPath:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(74180),u=["(..)(..)","(.)","(..)","(...)"];function i(e){return void 0!==e.split("/").find(e=>u.find(t=>e.startsWith(t)))}function o(e){let t,r,n;for(let a of e.split("/"))if(r=u.find(e=>a.startsWith(e))){[t,n]=e.split(r,2);break}if(!t||!r||!n)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Must be in the format //(..|...|..)(..)/`),"__NEXT_ERROR_CODE",{value:"E269",enumerable:!1,configurable:!0});switch(t=(0,l.normalizeAppPath)(t),r){case"(.)":n="/"===t?`/${n}`:t+"/"+n;break;case"(..)":if("/"===t)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..) marker at the root level, use (.) instead.`),"__NEXT_ERROR_CODE",{value:"E207",enumerable:!1,configurable:!0});n=t.split("/").slice(0,-1).concat(n).join("/");break;case"(...)":n="/"+n;break;case"(..)(..)":let a=t.split("/");if(a.length<=2)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..)(..) marker at the root level or one level up.`),"__NEXT_ERROR_CODE",{value:"E486",enumerable:!1,configurable:!0});n=a.slice(0,-2).concat(n).join("/");break;default:throw Object.defineProperty(Error("Invariant: unexpected marker"),"__NEXT_ERROR_CODE",{value:"E112",enumerable:!1,configurable:!0})}return{interceptingRoute:t,interceptedRoute:n}}},34727,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={computeChangedPath:function(){return h},extractPathFromFlightRouterState:function(){return f},extractSourcePageFromFlightRouterState:function(){return d},getSelectedParams:function(){return function e(t,r={}){for(let n of Object.values(t[1])){let t=n[0],a=Array.isArray(t),l=a?t[1]:t;!l||l.startsWith(u.PAGE_SEGMENT_KEY)||(a&&("c"===t[2]||"oc"===t[2])?r[t[0]]=t[1].split("/"):a&&(r[t[0]]=t[1]),r=e(n,r))}return r}}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(91463),u=e.r(13258),i=e.r(56019),o=e=>"/"===e[0]?e.slice(1):e,c=e=>"string"==typeof e?"children"===e?"":e:e[1];function s(e){return e.reduce((e,t)=>""===(t=o(t))||(0,u.isGroupSegment)(t)?e:`${e}/${t}`,"")||"/"}function f(e){let t=Array.isArray(e[0])?e[0][1]:e[0];if(t===u.DEFAULT_SEGMENT_KEY||l.INTERCEPTION_ROUTE_MARKERS.some(e=>t.startsWith(e)))return;if(t.startsWith(u.PAGE_SEGMENT_KEY))return"";let r=[c(t)],n=e[1]??{},a=n.children?f(n.children):void 0;if(void 0!==a)r.push(a);else for(let[e,t]of Object.entries(n)){if("children"===e)continue;let n=f(t);void 0!==n&&r.push(n)}return s(r)}function d(e){let t=function e(t){let r=(e=>{if("string"==typeof e)return"children"===e?"":e.startsWith(u.PAGE_SEGMENT_KEY)?"page":e;let[t,,r]=e;switch(r){case"c":return`[...${t}]`;case"ci(..)(..)":return`(..)(..)[...${t}]`;case"ci(.)":return`(.)[...${t}]`;case"ci(..)":return`(..)[...${t}]`;case"ci(...)":return`(...)[...${t}]`;case"oc":return`[[...${t}]]`;case"d":default:return`[${t}]`;case"di(..)(..)":return`(..)(..)[${t}]`;case"di(.)":return`(.)[${t}]`;case"di(..)":return`(..)[${t}]`;case"di(...)":return`(...)[${t}]`}})(t[0]);if(r===u.DEFAULT_SEGMENT_KEY)return;if("page"===r)return[r];let n=t[1]??{},a=n.children?e(n.children):void 0;if(void 0!==a)return""===r?a:[o(r),...a];for(let[t,a]of Object.entries(n)){if("children"===t)continue;let n=e(a);if(void 0!==n)return""===r?n:[o(r),...n]}}(e);return t?`/${t.join("/")}`:void 0}function h(e,t){let r=function e(t,r){let[n,a]=t,[u,o]=r,s=c(n),d=c(u);if(l.INTERCEPTION_ROUTE_MARKERS.some(e=>s.startsWith(e)||d.startsWith(e)))return"";if(!(0,i.matchSegment)(n,u))return f(r)??"";for(let t in a)if(o[t]){let r=e(a[t],o[t]);if(null!==r)return`${c(u)}/${r}`}return null}(e,t);return null==r||"/"===r?r:s(r.split("/"))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},48277,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isJavaScriptURLString",{enumerable:!0,get:function(){return a}});let n=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function a(e){return n.test(""+e)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},81400,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={isNavigationLocked:function(){return o},startListeningForInstantNavigationCookie:function(){return l},transitionToCapturedSPA:function(){return u},updateCapturedSPAToTree:function(){return i},waitForNavigationLockIfActive:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(){}function u(e,t){}function i(e,t){}function o(){return!1}async function c(){}e.r(21768),e.r(41538),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},60355,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={completeHardNavigation:function(){return P},completeSoftNavigation:function(){return S},completeTraverseNavigation:function(){return b},convertServerPatchToFullTree:function(){return T},navigate:function(){return g},navigateToKnownRoute:function(){return E}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(87288),u=e.r(95871),i=e.r(51191),o=e.r(63416),c=e.r(20896),s=e.r(96167),f=e.r(77048);e.r(77709);let d=e.r(9396);e.r(91949);let h=e.r(88540),p=e.r(34727),y=e.r(48277),_=e.r(79027);function g(e,t,r,n,a,l,u,i,o,s){return function(e,t,r,n,a,l,u,i,o,s){let d=Date.now(),h=t.href,p=(0,f.createCacheKey)(h,u),y=(0,c.readRouteCacheEntry)(d,p);if(null!==y&&y.status===c.EntryStatus.Fulfilled)return v(d,e,t,r,n,u,a,l,i,o,s,y);if(null===y||y.status!==c.EntryStatus.Rejected){let f=(0,c.deprecated_requestOptimisticRouteCacheEntry)(d,t,u);if(null!==f)return v(d,e,t,r,n,u,a,l,i,o,s,f)}return m(d,e,t,r,n,u,a,l,i,o,s).catch(()=>e)}(e,t,r,n,a,l,u,i,o,s)}function E(e,t,r,n,a,l,i,o,c,s,f,d,h,p,y){let _={separateRefreshUrls:null,scrollRef:null},g=r.href===l.href,E=(0,u.startPPRNavigation)(e,l,i,o,c,a.routeTree,a.metadataVaryPath,s,a.data,a.head,a.dynamicStaleAt,g,_);return null!==E?(s!==u.FreshnessPolicy.Gesture&&(0,u.spawnDynamicRequests)(E,r,f,s,_,y,h),S(t,r,f,E.route,E.node,a.renderedSearch,n,h,d,_.scrollRef,p)):P(t,r,h)}function v(e,t,r,n,a,l,u,i,o,c,s,f){let d=f.tree,h=f.canonicalUrl+r.hash,p={renderedSearch:f.renderedSearch,routeTree:d,metadataVaryPath:f.metadata.varyPath,data:null,head:null,dynamicStaleAt:(0,_.computeDynamicStaleAt)(e,_.UnknownDynamicStaleTime)};return E(e,t,r,h,p,n,a,u,i,o,l,c,s,null,f)}let R=["",{},null,"refetch"];async function m(e,t,r,n,a,f,h,p,y,_,g){let v;switch(y){case u.FreshnessPolicy.Default:case u.FreshnessPolicy.HistoryTraversal:case u.FreshnessPolicy.Gesture:v=p;break;case u.FreshnessPolicy.Hydration:case u.FreshnessPolicy.RefreshAll:case u.FreshnessPolicy.HMRRefresh:v=R;break;default:v=p}let m=(0,l.fetchServerResponse)(r,{flightRouterState:v,nextUrl:f}),S=await m;if("string"==typeof S)return P(t,new URL(S,location.origin),g);let{flightData:b,canonicalUrl:O,renderedSearch:A,couldBeIntercepted:w,supportsPerSegmentPrefetching:N,dynamicStaleTime:C,staticStageData:j,runtimePrefetchStream:M,responseHeaders:D,debugInfo:I}=S,F=T(e,p,b,A,C),U=F.metadataVaryPath;if(null!==U){if((0,s.discoverKnownRoute)(e,r.pathname,f,null,F.routeTree,U,w,(0,i.createHrefFromUrl)(O),N,!1),null!==j){let{response:t,isResponsePartial:r}=j;(0,c.getStaleAt)(e,t.s).then(n=>{let a=D.get(o.NEXT_NAV_DEPLOYMENT_ID_HEADER)??t.b;(0,c.writeStaticStageResponseIntoCache)(e,t.f,a,t.h,n,p,A,r)}).catch(()=>{})}null!==M&&(0,c.processRuntimePrefetchStream)(e,M,p,A).then(t=>{null!==t&&(0,c.writeDynamicRenderResponseIntoCache)(e,d.FetchStrategy.PPRRuntime,t.flightDatas,t.buildId,t.isResponsePartial,t.headVaryParams,t.staleAt,t.navigationSeed,null)}).catch(()=>{})}return E(e,t,r,(0,i.createHrefFromUrl)(O),F,n,a,h,p,y,f,_,g,I,null)}function P(e,t,r){return(0,y.isJavaScriptURLString)(t.href)?(console.error("Next.js has blocked a javascript: URL as a security precaution."),e):{canonicalUrl:t.origin===location.origin?(0,i.createHrefFromUrl)(t):t.href,pushRef:{pendingPush:"push"===r,mpaNavigation:!0,preserveCustomHistoryState:!1},renderedSearch:e.renderedSearch,focusAndScrollRef:e.focusAndScrollRef,cache:e.cache,tree:e.tree,nextUrl:e.nextUrl,previousNextUrl:e.previousNextUrl,debugInfo:null}}function S(e,t,r,n,a,l,u,i,o,c,s){let f,d,y=(0,p.computeChangedPath)(e.tree,n)||e.nextUrl,_=new URL(e.canonicalUrl,t),g=t.pathname===_.pathname&&t.search===_.search&&t.hash!==_.hash;if(o===h.ScrollBehavior.NoScroll)null!==c&&(c.current=!1),f=e.focusAndScrollRef.scrollRef,d=!1;else if(g){let t=e.focusAndScrollRef.scrollRef;null!==t&&(t.current=!1),null!==c&&(c.current=!1),f={current:!0},d=!0}else{if(f=c,null!==c){let t=e.focusAndScrollRef.scrollRef;null!==t&&(t.current=!1)}d=!1}return{canonicalUrl:u,renderedSearch:l,pushRef:{pendingPush:"push"===i,mpaNavigation:!1,preserveCustomHistoryState:!1},focusAndScrollRef:{scrollRef:f,forceScroll:d,onlyHashChange:g,hashFragment:o!==h.ScrollBehavior.NoScroll&&""!==t.hash?decodeURIComponent(t.hash.slice(1)):e.focusAndScrollRef.hashFragment},cache:a,tree:n,nextUrl:y,previousNextUrl:r,debugInfo:s}}function b(e,t,r,n,a,l){return{canonicalUrl:(0,i.createHrefFromUrl)(t),renderedSearch:r,pushRef:{pendingPush:!1,mpaNavigation:!1,preserveCustomHistoryState:!0},focusAndScrollRef:e.focusAndScrollRef,cache:n,tree:a,nextUrl:l,previousNextUrl:null,debugInfo:null}}function T(e,t,r,n,a){let l=t,u=null,i=null;if(null!==r)for(let{segmentPath:e,tree:t,seedData:a,head:o}of r){let r=function e(t,r,n,a,l,u,i){let o;if(i===l.length)return{tree:n,data:a};let c=l[i],s=t[1],f=null!==r?r[1]:null,d={},h={};for(let t in s){let r=s[t],o=null!==f?f[t]??null:null;if(t===c){let c=e(r,o,n,a,l,u,i+2);d[t]=c.tree,h[t]=c.data}else d[t]=r,h[t]=o}if(o=[t[0],d],2 in t){let e=t[2];null!=e&&(o[2]=[e[0],u])}return 3 in t&&(o[3]=t[3]),4 in t&&(o[4]=t[4]),{tree:o,data:[null,h,null,!0,null]}}(l,u,t,a,e,n,0);l=r.tree,u=r.data,i=o}let o=l,s={metadataVaryPath:null};return{routeTree:(0,c.convertRootFlightRouterStateToRouteTree)(o,n,s),metadataVaryPath:s.metadataVaryPath,data:u,renderedSearch:n,head:i,dynamicStaleAt:(0,_.computeDynamicStaleAt)(e,a)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},54069,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={DYNAMIC_STALETIME_MS:function(){return o},STATIC_STALETIME_MS:function(){return c},navigateReducer:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(60355),u=e.r(20896),i=e.r(95871),o=1e3*Number("0"),c=(0,u.getStaleTimeMs)(Number("300"));function s(e,t){let{url:r,isExternalUrl:n,navigateType:a,scrollBehavior:u}=t;if(n||document.getElementById("__next-page-redirect"))return(0,l.completeHardNavigation)(e,r,a);let o=new URL(e.canonicalUrl,location.origin),c=e.renderedSearch;return(0,l.navigate)(e,r,o,c,e.cache,e.tree,e.nextUrl,i.FreshnessPolicy.Default,u,a)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},84356,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"hasInterceptionRouteInCurrentTree",{enumerable:!0,get:function(){return function e([t,r]){if(Array.isArray(t)&&("di(..)(..)"===t[2]||"ci(..)(..)"===t[2]||"di(.)"===t[2]||"ci(.)"===t[2]||"di(..)"===t[2]||"ci(..)"===t[2]||"di(...)"===t[2]||"ci(...)"===t[2])||"string"==typeof t&&(0,n.isInterceptionRouteAppPath)(t))return!0;if(r){for(let t in r)if(e(r[t]))return!0}return!1}}});let n=e.r(91463);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},69845,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={refreshDynamicData:function(){return d},refreshReducer:function(){return f}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(88540),u=e.r(60355),i=e.r(20896),o=e.r(84356),c=e.r(95871),s=e.r(79027);function f(e,t){{let t=e.nextUrl,r=e.tree;(0,i.invalidateSegmentCacheEntries)(t,r)}return d(e,c.FreshnessPolicy.RefreshAll)}function d(e,t){(0,s.invalidateBfCache)();let r=e.nextUrl,n=(0,o.hasInterceptionRouteInCurrentTree)(e.tree)?e.previousNextUrl||r:null,a=e.canonicalUrl,i=new URL(a,location.origin),c=e.renderedSearch,f=e.tree,d=l.ScrollBehavior.NoScroll,h=Date.now(),p=(0,u.convertServerPatchToFullTree)(h,f,null,c,s.UnknownDynamicStaleTime);return(0,u.navigateToKnownRoute)(h,e,i,a,p,i,c,e.cache,f,t,n,d,"replace",null,null)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},91668,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"serverPatchReducer",{enumerable:!0,get:function(){return o}});let n=e.r(51191),a=e.r(88540),l=e.r(60355),u=e.r(69845),i=e.r(95871);function o(e,t){let r=t.mpa,o=new URL(t.url,location.origin),c=t.seed,s=t.navigateType;if(r||null===c)return(0,l.completeHardNavigation)(e,o,s);let f=new URL(e.canonicalUrl,location.origin),d=e.renderedSearch;if(t.previousTree!==e.tree)return(0,u.refreshReducer)(e,{type:a.ACTION_REFRESH});let h=(0,n.createHrefFromUrl)(o),p=t.nextUrl,y=a.ScrollBehavior.Default,_=Date.now();return(0,l.navigateToKnownRoute)(_,e,o,h,c,f,d,e.cache,e.tree,i.FreshnessPolicy.RefreshAll,p,y,s,null,null)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},73790,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"restoreReducer",{enumerable:!0,get:function(){return i}});let n=e.r(34727),a=e.r(95871),l=e.r(60355),u=e.r(79027);function i(e,t){let r,i,o=t.historyState;o?(r=o.tree,i=o.renderedSearch):(r=e.tree,i=e.renderedSearch);let c=new URL(e.canonicalUrl,location.origin),s=t.url,f=(0,n.extractPathFromFlightRouterState)(r)??s.pathname,d=Date.now(),h={separateRefreshUrls:null,scrollRef:null},p=(0,l.convertServerPatchToFullTree)(d,r,null,i,u.UnknownDynamicStaleTime),y=(0,a.startPPRNavigation)(d,c,e.renderedSearch,e.cache,e.tree,p.routeTree,p.metadataVaryPath,a.FreshnessPolicy.HistoryTraversal,null,null,p.dynamicStaleAt,!1,h);return null===y?(0,l.completeHardNavigation)(e,s,"replace"):((0,a.spawnDynamicRequests)(y,s,f,a.FreshnessPolicy.HistoryTraversal,h,null,"replace"),(0,l.completeTraverseNavigation)(e,s,i,y.node,y.route,f))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},86720,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"hmrRefreshReducer",{enumerable:!0,get:function(){return l}});let n=e.r(69845),a=e.r(95871);function l(e){return(0,n.refreshDynamicData)(e,a.FreshnessPolicy.HMRRefresh)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},92838,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={UnrecognizedActionError:function(){return l},unstable_isUnrecognizedActionError:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});class l extends Error{constructor(...e){super(...e),this.name="UnrecognizedActionError"}}function u(e){return!!(e&&"object"==typeof e&&e instanceof l)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},27801,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"assignLocation",{enumerable:!0,get:function(){return a}});let n=e.r(5550);function a(e,t){if(e.startsWith(".")){let r=t.origin+t.pathname;return new URL((r.endsWith("/")?r:r+"/")+e)}return new URL((0,n.addBasePath)(e),t.href)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},34457,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"actionAsyncStorageInstance",{enumerable:!0,get:function(){return n}});let n=(0,e.r(90317).createAsyncLocalStorage)()},62266,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"actionAsyncStorage",{enumerable:!0,get:function(){return n.actionAsyncStorageInstance}});let n=e.r(34457)},24063,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={getRedirectError:function(){return o},getRedirectStatusCodeFromError:function(){return h},getRedirectTypeFromError:function(){return d},getURLFromRedirectError:function(){return f},permanentRedirect:function(){return s},redirect:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(76963),u=e.r(68391),i="u"{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"pathHasPrefix",{enumerable:!0,get:function(){return a}});let n=e.r(72463);function a(e,t){if("string"!=typeof e)return!1;let{pathname:r}=(0,n.parsePath)(e);return r===t||r.startsWith(t+"/")}},52817,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"hasBasePath",{enumerable:!0,get:function(){return a}});let n=e.r(39584);function a(e){return(0,n.pathHasPrefix)(e,"")}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},87250,(e,t,r)=>{"use strict";function n(e){return e}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"removeBasePath",{enumerable:!0,get:function(){return n}}),e.r(52817),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},39747,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={extractInfoFromServerReferenceId:function(){return l},omitUnusedArgs:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(e){let t=parseInt(e.slice(0,2),16),r=t>>1&63,n=Array(6);for(let e=0;e<6;e++){let t=r>>5-e&1;n[e]=1===t}return{type:1==(t>>7&1)?"use-cache":"server-action",usedArgs:n,hasRestArgs:1==(1&t)}}function u(e,t){let r=Array(e.length),n=0;for(let a=0;a=6&&t.hasRestArgs)&&(r[a]=e[a],n=a+1);return r.length=n,r}},39146,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={ActionDidNotRevalidate:function(){return l},ActionDidRevalidateDynamicOnly:function(){return i},ActionDidRevalidateStaticAndDynamic:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=0,u=1,i=2},45794,(e,t,r)=>{"use strict";let n;Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"serverActionReducer",{enumerable:!0,get:function(){return M}});let a=e.r(32120),l=e.r(92245),u=e.r(21768),i=e.r(92838),o=e.r(35326),c=e.r(88540),s=e.r(27801),f=e.r(51191),d=e.r(84356),h=e.r(50590),p=e.r(24063),y=e.r(87250),_=e.r(52817),g=e.r(39747),E=e.r(20896),v=e.r(77709),R=e.r(43369),m=e.r(32992),P=e.r(63416),S=e.r(60355),b=e.r(96167),T=e.r(39146),O=e.r(57630),A=e.r(95871),w=e.r(87288),N=e.r(79027),C=o.createFromFetch;async function j(e,t,{actionId:r,actionArgs:c}){let f,d,p,y,_=(0,o.createTemporaryReferenceSet)(),E=(0,g.extractInfoFromServerReferenceId)(r),v=(0,g.omitUnusedArgs)(c,E),S=await (0,o.encodeReply)(v,{temporaryReferences:_}),b={Accept:u.RSC_CONTENT_TYPE_HEADER,[u.ACTION_HEADER]:r,[u.NEXT_ROUTER_STATE_TREE_HEADER]:(0,h.prepareFlightRouterStateForRequest)(e.tree)},O=(0,R.getDeploymentId)();O&&(b["x-deployment-id"]=O),t&&(b[u.NEXT_URL]=t);let A=await fetch(e.canonicalUrl,{method:"POST",headers:b,body:S});if("1"===A.headers.get(u.NEXT_ACTION_NOT_FOUND_HEADER))throw Object.defineProperty(new i.UnrecognizedActionError(`Server Action "${r}" was not found on the server. +Read more: https://nextjs.org/docs/messages/failed-to-find-server-action`),"__NEXT_ERROR_CODE",{value:"E715",enumerable:!1,configurable:!0});let N=A.headers.get("x-action-redirect"),[M,D]=N?.split(";")||[];switch(D){case"push":f="push";break;case"replace":f="replace";break;default:f=void 0}let I=!!A.headers.get(u.NEXT_IS_PRERENDER_HEADER),F=T.ActionDidNotRevalidate;try{let e=A.headers.get("x-action-revalidated");if(e){let t=JSON.parse(e);(t===T.ActionDidRevalidateStaticAndDynamic||t===T.ActionDidRevalidateDynamicOnly)&&(F=t)}}catch{}let U=M?(0,s.assignLocation)(M,new URL(e.canonicalUrl,window.location.href)):void 0,x=A.headers.get("content-type"),L=!!(x&&x.startsWith(u.RSC_CONTENT_TYPE_HEADER));if(!L&&!U)throw Object.defineProperty(Error(A.status>=400&&"text/plain"===x?await A.text():"An unexpected response was received from the server."),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});let k=!1;if(L){let e=U?(0,w.processFetch)(A).then(({response:e})=>e):Promise.resolve(A),t=await C(e,{callServer:a.callServer,findSourceMapURL:l.findSourceMapURL,temporaryReferences:_,debugChannel:n&&n(b)});d=U?void 0:t.a,k=t.i;let r=A.headers.get(P.NEXT_NAV_DEPLOYMENT_ID_HEADER)??t.b;if(void 0!==r&&r!==(0,m.getNavigationBuildId)());else{let e=(0,h.normalizeFlightData)(t.f);""!==e&&(p=e,y=t.q)}}else d=void 0,p=void 0,y=void 0;return{actionResult:d,actionFlightData:p,actionFlightDataRenderedSearch:y,redirectLocation:U,redirectType:f,revalidationKind:F,isPrerender:I,couldBeIntercepted:k}}function M(e,t){let{resolve:r,reject:n}=t,a=(e.previousNextUrl||e.nextUrl)&&(0,d.hasInterceptionRouteInCurrentTree)(e.tree)?e.previousNextUrl||e.nextUrl:null;return j(e,a,t).then(async({revalidationKind:l,actionResult:u,actionFlightData:i,actionFlightDataRenderedSearch:o,redirectLocation:s,redirectType:d,isPrerender:h,couldBeIntercepted:p})=>{l!==T.ActionDidNotRevalidate&&((0,N.invalidateBfCache)(),t.didRevalidate=!0,l===T.ActionDidRevalidateStaticAndDynamic&&(0,E.invalidateEntirePrefetchCache)(a,e.tree),(0,v.startRevalidationCooldown)());let g=d||"push";if(void 0!==s)if((0,O.isExternalURL)(s))return n(D(s.href,g)),(0,S.completeHardNavigation)(e,s,g);else{let e=(0,f.createHrefFromUrl)(s,!1);n(D((0,_.hasBasePath)(e)?(0,y.removeBasePath)(e):e,g))}else r(u);if(void 0===s&&l===T.ActionDidNotRevalidate&&void 0===i)return e;if(void 0===i&&void 0!==s)return(0,S.completeHardNavigation)(e,s,g);if("string"==typeof i)return(0,S.completeHardNavigation)(e,new URL(i,location.origin),g);let R=new URL(e.canonicalUrl,location.origin),m=e.renderedSearch,P=void 0!==s?s:R,w=e.tree,C=c.ScrollBehavior.Default,j=l===T.ActionDidNotRevalidate?A.FreshnessPolicy.Default:A.FreshnessPolicy.RefreshAll;if(void 0!==i&&void 0!==o){let t=(0,f.createHrefFromUrl)(P),r=Date.now(),n=(0,S.convertServerPatchToFullTree)(r,w,i,o,N.UnknownDynamicStaleTime),l=n.metadataVaryPath;return null!==l&&(0,b.discoverKnownRoute)(r,P.pathname,a,null,n.routeTree,l,p,t,h,!1),(0,S.navigateToKnownRoute)(r,e,P,t,n,R,m,e.cache,w,j,a,C,g,null,null)}return(0,S.navigate)(e,P,R,m,e.cache,w,a,j,C,g)},t=>(n(t),e))}function D(e,t){let r=(0,p.getRedirectError)(e,t);return r.handled=!0,r}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},4924,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"reducer",{enumerable:!0,get:function(){return s}});let n=e.r(88540),a=e.r(54069),l=e.r(91668),u=e.r(73790),i=e.r(69845),o=e.r(86720),c=e.r(45794),s="u"{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"prefetch",{enumerable:!0,get:function(){return i}});let n=e.r(57630),a=e.r(77048),l=e.r(77709),u=e.r(9396);function i(e,t,r,i,o){let c=(0,n.createPrefetchURL)(e);if(null===c)return;let s=(0,a.createCacheKey)(c.href,t);(0,l.schedulePrefetchTask)(s,r,i,u.PrefetchPriority.Default,o)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},99781,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={createMutableActionQueue:function(){return v},dispatchNavigateAction:function(){return P},dispatchTraverseAction:function(){return S},getCurrentAppRouterState:function(){return R},publicAppRouterInstance:function(){return b}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(88540),u=e.r(4924),i=e.r(71645),o=e.r(64245),c=e.r(9396),s=e.r(1411);e.r(60355);let f=e.r(41538);e.r(96167),e.r(95871);let d=e.r(5550),h=e.r(57630),p=e.r(91949),y=e.r(48277);function _(e,t){null!==e.pending?(e.pending=e.pending.next,null!==e.pending&&g({actionQueue:e,action:e.pending,setState:t})):e.needsRefresh&&(e.needsRefresh=!1,e.dispatch({type:l.ACTION_REFRESH},t))}async function g({actionQueue:e,action:t,setState:r}){let n=e.state;e.pending=t;let a=t.payload,u=e.action(n,a);function i(n){if(t.discarded){t.payload.type===l.ACTION_SERVER_ACTION&&t.payload.didRevalidate&&(e.needsRefresh=!0),_(e,r);return}e.state=n,_(e,r),t.resolve(n)}(0,o.isThenable)(u)?u.then(i,n=>{_(e,r),t.reject(n)}):i(u)}let E=null;function v(e,t){let r={state:e,dispatch:(e,t)=>(function(e,t,r){let n={resolve:r,reject:()=>{}};if(t.type!==l.ACTION_RESTORE){let e=new Promise((e,t)=>{n={resolve:e,reject:t}});(0,i.startTransition)(()=>{r(e)})}let a={payload:t,next:null,resolve:n.resolve,reject:n.reject};null===e.pending?(e.last=a,g({actionQueue:e,action:a,setState:r})):t.type===l.ACTION_NAVIGATE||t.type===l.ACTION_RESTORE?(e.pending.discarded=!0,a.next=e.pending.next,g({actionQueue:e,action:a,setState:r})):(null!==e.last&&(e.last.next=a),e.last=a)})(r,e,t),action:async(e,t)=>(0,u.reducer)(e,t),pending:null,last:null,onRouterTransitionStart:null!==t&&"function"==typeof t.onRouterTransitionStart?t.onRouterTransitionStart:null};if("u">typeof window){if(null!==E)throw Object.defineProperty(Error("Internal Next.js Error: createMutableActionQueue was called more than once"),"__NEXT_ERROR_CODE",{value:"E624",enumerable:!1,configurable:!0});E=r}return r}function R(){return null!==E?E.state:null}function m(){return null!==E?E.onRouterTransitionStart:null}function P(e,t,r,n,a){if(a)for(let e of a)(0,i.addTransitionType)(e);let u=new URL((0,d.addBasePath)(e),location.href);(0,p.setLinkForCurrentNavigation)(n);let o=m();null!==o&&o(e,t),(0,f.dispatchAppRouterAction)({type:l.ACTION_NAVIGATE,url:u,isExternalUrl:(0,h.isExternalURL)(u),locationSearch:location.search,scrollBehavior:r,navigateType:t})}function S(e,t){let r=m();null!==r&&r(e,"traverse"),(0,f.dispatchAppRouterAction)({type:l.ACTION_RESTORE,url:new URL(e),historyState:t})}let b={back:()=>window.history.back(),forward:()=>window.history.forward(),prefetch:(e,t)=>{let r;if((0,y.isJavaScriptURLString)(e))throw Object.defineProperty(Error("Next.js has blocked a javascript: URL as a security precaution."),"__NEXT_ERROR_CODE",{value:"E978",enumerable:!1,configurable:!0});let n=function(){if(null===E)throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0});return E}();switch(t?.kind??l.PrefetchKind.AUTO){case l.PrefetchKind.AUTO:r=c.FetchStrategy.PPR;break;case l.PrefetchKind.FULL:r=c.FetchStrategy.Full;break;default:r=c.FetchStrategy.PPR}(0,s.prefetch)(e,n.state.nextUrl,n.state.tree,r,t?.onInvalidate??null)},replace:(e,t)=>{if((0,y.isJavaScriptURLString)(e))throw Object.defineProperty(Error("Next.js has blocked a javascript: URL as a security precaution."),"__NEXT_ERROR_CODE",{value:"E978",enumerable:!1,configurable:!0});(0,i.startTransition)(()=>{P(e,"replace",t?.scroll===!1?l.ScrollBehavior.NoScroll:l.ScrollBehavior.Default,null,t?.transitionTypes)})},push:(e,t)=>{if((0,y.isJavaScriptURLString)(e))throw Object.defineProperty(Error("Next.js has blocked a javascript: URL as a security precaution."),"__NEXT_ERROR_CODE",{value:"E978",enumerable:!1,configurable:!0});(0,i.startTransition)(()=>{P(e,"push",t?.scroll===!1?l.ScrollBehavior.NoScroll:l.ScrollBehavior.Default,null,t?.transitionTypes)})},refresh:()=>{(0,i.startTransition)(()=>{(0,f.dispatchAppRouterAction)({type:l.ACTION_REFRESH})})},hmrRefresh:()=>{throw Object.defineProperty(Error("hmrRefresh can only be used in development mode. Please use refresh instead."),"__NEXT_ERROR_CODE",{value:"E485",enumerable:!1,configurable:!0})}};"u">typeof window&&window.next&&(window.next.router=b),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)}]); \ No newline at end of file diff --git a/build/_next/static/chunks/15p8tu-h65hwr.js b/.next/static/chunks/15p8tu-h65hwr.js similarity index 100% rename from build/_next/static/chunks/15p8tu-h65hwr.js rename to .next/static/chunks/15p8tu-h65hwr.js diff --git a/build/_next/static/chunks/0yvxf3ok9gcp_.js b/.next/static/chunks/16tb205t0~jhb.js similarity index 92% rename from build/_next/static/chunks/0yvxf3ok9gcp_.js rename to .next/static/chunks/16tb205t0~jhb.js index 332c4bb..78aa96c 100644 --- a/build/_next/static/chunks/0yvxf3ok9gcp_.js +++ b/.next/static/chunks/16tb205t0~jhb.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,23096,e=>{"use strict";var t=e.i(43476),a=e.i(71645),r=e.i(22016);let i=[{slug:"how-ai-is-transforming-last-mile-ev-delivery",title:"How Better Planning Improves Last-Mile EV Delivery",excerpt:"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.",category:"Technology",image:"/images/blog-post-pic-17.webp",date:"2025-10-02",intro:"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.",content:[{type:"paragraph",text:"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs."},{type:"heading",level:2,text:"The shift from fixed rules to daily planning"},{type:"paragraph",text:"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual."},{type:"list",items:["Order volumes by area, time slot, and customer type","Travel times based on the city's actual traffic patterns","Battery use by vehicle type, rider load, and route length","Feedback from completed deliveries, failed attempts, and late arrivals"]},{type:"heading",level:3,text:"Adjusting during the day"},{type:"paragraph",text:"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/ev-paradox.webp",alt:"Electric delivery vehicle routing visualisation",caption:"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub."},{type:"quote",text:"With EVs, a route is only useful if the vehicle can finish it and still return safely.",cite:"Doormile Operations"},{type:"heading",level:2,text:"What this means for operators"},{type:"paragraph",text:"For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window."},{type:"list",ordered:!0,items:["Record delivery times, failed attempts, traffic delays, and charging cycles.","Build travel-time estimates from the areas your riders actually serve.","Check every route against battery capacity before dispatch.","Replan when traffic, orders, or vehicle availability changes."]},{type:"paragraph",text:"The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time."}]},{slug:"42-less-distance-insights-from-our-hyderabad-hub",title:"42% Less Distance: Insights from Our Hyderabad Hub",excerpt:"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.",category:"Case Study",image:"/images/blog-post-pic-15.webp",date:"2025-09-18",intro:"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.",content:[{type:"paragraph",text:"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day."},{type:"heading",level:2,text:"The baseline"},{type:"paragraph",text:"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed."},{type:"paragraph",text:"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment."},{type:"list",items:["Zone-based allocation that missed nearby cross-zone drops","Manual stop sequencing during busy dispatch windows","ETAs checked after routing instead of before dispatch","Traffic and delay handling that depended on phone calls from riders"]},{type:"heading",level:3,text:"What changed"},{type:"paragraph",text:"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/last-mile-approach.webp",alt:"Hyderabad delivery hub routing analysis",caption:"Planning the day's deliveries together removed repeated cross-town travel."},{type:"heading",level:2,text:"The results"},{type:"list",items:["42% reduction in total distance travelled across the hub","37% fewer vehicles required for the same delivery volume","No SLA misses during the measured deployment window","Lower fuel use and fewer unnecessary kilometres per parcel"]},{type:"quote",text:"The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.",cite:"Hyderabad Hub Operations"},{type:"heading",level:3,text:"Why this applies beyond one hub"},{type:"paragraph",text:"The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes."},{type:"paragraph",text:"A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy."}]},{slug:"miletruth-ai-10-stages-to-smarter-dispatch",title:"MileTruth™: 10 Stages to Smarter Dispatch",excerpt:"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.",category:"MileTruth",image:"/images/blog-post-pic-31.webp",date:"2025-09-05",intro:"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.",content:[{type:"paragraph",text:"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day."},{type:"heading",level:2,text:"The ten stages"},{type:"list",ordered:!0,items:["Order intake: new orders, rider availability, and vehicle status are collected.","Address check: delivery points, time windows, and service notes are verified.","Stop planning: each stop gets an expected service time and delivery priority.","Travel-time check: routes are compared against time-of-day traffic.","Constraint check: capacity, shift time, customer windows, and range are applied.","Route options: several possible plans are built for the same order set.","Plan selection: the lowest-cost workable route plan is selected.","Battery check: EV routes are checked against real charge capacity.","ETA check: promised delivery times are verified before dispatch.","Dispatch output: the final route is sent to the operations team."]},{type:"heading",level:3,text:"Why staging matters"},{type:"paragraph",text:"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue."},{type:"image",src:"/images/blog-post-pic-31.webp",alt:"MileTruth routing pipeline diagram",caption:"A staged dispatch process catches address, range, and ETA issues before riders leave."},{type:"quote",text:"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.",cite:"MileTruth Engineering"},{type:"heading",level:2,text:"Comparing route options"},{type:"paragraph",text:"The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger."},{type:"list",items:["Several route plans checked before dispatch","Distance, time windows, capacity, and range considered together","Range and ETA checked before the route reaches the rider","Fast output that still leaves room for dispatcher review"]},{type:"paragraph",text:"The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub."}]},{slug:"the-ev-paradox-solving-range-anxiety-for-urban-fleets",title:"The EV Paradox: Solving Range Anxiety for Urban Fleets",excerpt:"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.",category:"EV Fleet",image:"/images/ev-paradox.webp",date:"2025-08-21",intro:"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan."},{slug:"why-mathematical-precision-beats-heuristics-in-routing",title:"Why Mathematical Precision Beats Heuristics in Routing",excerpt:"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.",category:"Technology",image:"/images/blog-post-pic-14.webp",date:"2025-08-07",intro:"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch."},{slug:"fleet-reduction-without-compromising-delivery-volume",title:"Fleet Reduction Without Compromising Delivery Volume",excerpt:"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.",category:"Fleet Management",image:"/images/blog-post-pic-8.webp",date:"2025-07-24",intro:"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom."},{slug:"building-a-greener-city-the-future-of-urban-logistics",title:"Building a Greener City: The Future of Urban Logistics",excerpt:"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.",category:"Sustainability",image:"/images/blog-post-pic-6.webp",date:"2025-07-10",intro:"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day."},{slug:"how-doormile-maintains-99-9-sla-compliance-at-scale",title:"How Doormile Maintains 99.9% SLA Compliance at Scale",excerpt:"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.",category:"Operations",image:"/images/last-mile-approach.webp",date:"2025-06-26",intro:"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk."},{slug:"battery-simulation-the-secret-to-ev-route-pre-validation",title:"Battery Simulation: The Secret to EV Route Pre-Validation",excerpt:"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.",category:"EV Fleet",image:"/images/blog-post-pic-3.webp",date:"2025-06-12",intro:"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch."}].map(e=>{var t;return{slug:e.slug,title:e.title,excerpt:e.excerpt,category:e.category,image:e.image,date:e.date,author:"Doormile Team",intro:e.intro,content:e.content??(t={title:e.title,category:e.category,image:e.image},[{type:"paragraph",text:`In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. ${t.title} looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.`},{type:"heading",level:2,text:"Why this matters for fleet teams"},{type:"paragraph",text:"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."},{type:"list",items:["Fewer vehicles needed for the same number of drops","Lower cost per drop through better stop sequencing","ETAs that match traffic, distance, and delivery windows","Less fuel or charge used per completed order"]},{type:"heading",level:3,text:"From orders to dispatch"},{type:"paragraph",text:"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."},{type:"image",src:t.image,alt:t.title,caption:`${t.category}: route planning decisions made before dispatch.`},{type:"quote",text:"A route should be checked before the rider leaves, not explained after the customer calls.",cite:"Doormile Operations"},{type:"heading",level:2,text:"Putting it into practice"},{type:"paragraph",text:"The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time."},{type:"list",ordered:!0,items:["Benchmark today's distance, fleet size, and on-time rate.","Include vehicle capacity, delivery windows, rider shifts, and battery charge.","Check routes against traffic and customer commitments before dispatch.","Compare the next dispatch cycle against the old plan."]},{type:"paragraph",text:"Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead."}])}});e.s(["default",0,function(){let[e,s]=(0,a.useState)(""),[o,n]=(0,a.useState)(!1),l=(0,a.useRef)(null),d=(0,a.useMemo)(()=>{let t=e.trim().toLowerCase();return t?i.filter(e=>e.title.toLowerCase().includes(t)||e.category.toLowerCase().includes(t)||e.excerpt.toLowerCase().includes(t)).slice(0,6):[]},[e]);(0,a.useEffect)(()=>{function e(e){l.current&&!l.current.contains(e.target)&&n(!1)}return document.addEventListener("mousedown",e),()=>document.removeEventListener("mousedown",e)},[]);let c=o&&e.trim().length>0;return(0,t.jsxs)("div",{className:"dm-blog-search",ref:l,children:[(0,t.jsxs)("form",{role:"search",className:"dm-blog-search-form",onSubmit:e=>e.preventDefault(),children:[(0,t.jsx)("label",{htmlFor:"dm-blog-search-input",className:"dm-sr-only",children:"Search articles"}),(0,t.jsx)("input",{id:"dm-blog-search-input",type:"search",role:"combobox",className:"dm-blog-search-input",placeholder:"Search articles…",value:e,autoComplete:"off",onChange:e=>{s(e.target.value),n(!0)},onFocus:()=>n(!0),"aria-expanded":c,"aria-controls":"dm-blog-search-results","aria-autocomplete":"list"}),(0,t.jsx)("span",{className:"dm-blog-search-icon","aria-hidden":"true",children:(0,t.jsxs)("svg",{width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.2",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("circle",{cx:"11",cy:"11",r:"7"}),(0,t.jsx)("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"})]})})]}),c&&(0,t.jsx)("div",{id:"dm-blog-search-results",className:"dm-blog-search-results",role:"listbox",children:0===d.length?(0,t.jsxs)("p",{className:"dm-blog-search-empty",children:["No articles match “",e.trim(),"”."]}):(0,t.jsx)("ul",{children:d.map(e=>(0,t.jsx)("li",{role:"option","aria-selected":"false",children:(0,t.jsxs)(r.default,{href:`/blog/${e.slug}`,className:"dm-blog-search-result",onClick:()=>n(!1),children:[(0,t.jsx)("span",{className:"dm-blog-search-result-cat",children:e.category}),(0,t.jsx)("span",{className:"dm-blog-search-result-title",children:e.title})]})},e.slug))})})]})}],23096)}]); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,23096,e=>{"use strict";var t=e.i(43476),a=e.i(71645),r=e.i(22016);let i=[{slug:"how-ai-is-transforming-last-mile-ev-delivery",title:"How Better Planning Improves Last-Mile EV Delivery",excerpt:"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles.",category:"Technology",image:"/images/blog-post-pic-17.webp",date:"2025-10-02",intro:"The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.",content:[{type:"paragraph",text:"For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs."},{type:"heading",level:2,text:"The shift from fixed rules to daily planning"},{type:"paragraph",text:"A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual."},{type:"list",items:["Order volumes by area, time slot, and customer type","Travel times based on the city's actual traffic patterns","Battery use by vehicle type, rider load, and route length","Feedback from completed deliveries, failed attempts, and late arrivals"]},{type:"heading",level:3,text:"Adjusting during the day"},{type:"paragraph",text:"The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/ev-paradox.webp",alt:"Electric delivery vehicle routing visualisation",caption:"EV route plans need to account for range, load, traffic, and charging time before riders leave the hub."},{type:"quote",text:"With EVs, a route is only useful if the vehicle can finish it and still return safely.",cite:"Doormile Operations"},{type:"heading",level:2,text:"What this means for operators"},{type:"paragraph",text:"For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window."},{type:"list",ordered:!0,items:["Record delivery times, failed attempts, traffic delays, and charging cycles.","Build travel-time estimates from the areas your riders actually serve.","Check every route against battery capacity before dispatch.","Replan when traffic, orders, or vehicle availability changes."]},{type:"paragraph",text:"The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time."}]},{slug:"42-less-distance-insights-from-our-hyderabad-hub",title:"42% Less Distance: Insights from Our Hyderabad Hub",excerpt:"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning.",category:"Case Study",image:"/images/blog-post-pic-15.webp",date:"2025-09-18",intro:"Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.",content:[{type:"paragraph",text:"Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day."},{type:"heading",level:2,text:"The baseline"},{type:"paragraph",text:"Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed."},{type:"paragraph",text:"That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment."},{type:"list",items:["Zone-based allocation that missed nearby cross-zone drops","Manual stop sequencing during busy dispatch windows","ETAs checked after routing instead of before dispatch","Traffic and delay handling that depended on phone calls from riders"]},{type:"heading",level:3,text:"What changed"},{type:"paragraph",text:"The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together."},{type:"paragraph",text:"During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance."},{type:"image",src:"/images/last-mile-approach.webp",alt:"Hyderabad delivery hub routing analysis",caption:"Planning the day's deliveries together removed repeated cross-town travel."},{type:"heading",level:2,text:"The results"},{type:"list",items:["42% reduction in total distance travelled across the hub","37% fewer vehicles required for the same delivery volume","No SLA misses during the measured deployment window","Lower fuel use and fewer unnecessary kilometres per parcel"]},{type:"quote",text:"The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.",cite:"Hyderabad Hub Operations"},{type:"heading",level:3,text:"Why this applies beyond one hub"},{type:"paragraph",text:"The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes."},{type:"paragraph",text:"A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy."}]},{slug:"miletruth-ai-10-stages-to-smarter-dispatch",title:"MileTruth™: 10 Stages to Smarter Dispatch",excerpt:"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub.",category:"MileTruth",image:"/images/blog-post-pic-31.webp",date:"2025-09-05",intro:"Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.",content:[{type:"paragraph",text:"A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day."},{type:"heading",level:2,text:"The ten stages"},{type:"list",ordered:!0,items:["Order intake: new orders, rider availability, and vehicle status are collected.","Address check: delivery points, time windows, and service notes are verified.","Stop planning: each stop gets an expected service time and delivery priority.","Travel-time check: routes are compared against time-of-day traffic.","Constraint check: capacity, shift time, customer windows, and range are applied.","Route options: several possible plans are built for the same order set.","Plan selection: the lowest-cost workable route plan is selected.","Battery check: EV routes are checked against real charge capacity.","ETA check: promised delivery times are verified before dispatch.","Dispatch output: the final route is sent to the operations team."]},{type:"heading",level:3,text:"Why staging matters"},{type:"paragraph",text:"When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue."},{type:"image",src:"/images/blog-post-pic-31.webp",alt:"MileTruth routing pipeline diagram",caption:"A staged dispatch process catches address, range, and ETA issues before riders leave."},{type:"quote",text:"Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.",cite:"MileTruth Engineering"},{type:"heading",level:2,text:"Comparing route options"},{type:"paragraph",text:"The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger."},{type:"list",items:["Several route plans checked before dispatch","Distance, time windows, capacity, and range considered together","Range and ETA checked before the route reaches the rider","Fast output that still leaves room for dispatcher review"]},{type:"paragraph",text:"The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub."}]},{slug:"the-ev-paradox-solving-range-anxiety-for-urban-fleets",title:"The EV Paradox: Solving Range Anxiety for Urban Fleets",excerpt:"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch.",category:"EV Fleet",image:"/images/ev-paradox.webp",date:"2025-08-21",intro:"Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan."},{slug:"why-mathematical-precision-beats-heuristics-in-routing",title:"Why Mathematical Precision Beats Heuristics in Routing",excerpt:"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows.",category:"Technology",image:"/images/blog-post-pic-14.webp",date:"2025-08-07",intro:"Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch."},{slug:"fleet-reduction-without-compromising-delivery-volume",title:"Fleet Reduction Without Compromising Delivery Volume",excerpt:"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes.",category:"Fleet Management",image:"/images/blog-post-pic-8.webp",date:"2025-07-24",intro:"Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom."},{slug:"building-a-greener-city-the-future-of-urban-logistics",title:"Building a Greener City: The Future of Urban Logistics",excerpt:"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge.",category:"Sustainability",image:"/images/blog-post-pic-6.webp",date:"2025-07-10",intro:"Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day."},{slug:"how-doormile-maintains-99-9-sla-compliance-at-scale",title:"How Doormile Maintains 99.9% SLA Compliance at Scale",excerpt:"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day.",category:"Operations",image:"/images/last-mile-approach.webp",date:"2025-06-26",intro:"Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk."},{slug:"battery-simulation-the-secret-to-ev-route-pre-validation",title:"Battery Simulation: The Secret to EV Route Pre-Validation",excerpt:"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan.",category:"EV Fleet",image:"/images/blog-post-pic-3.webp",date:"2025-06-12",intro:"A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch."}].map(e=>{var t;return{slug:e.slug,title:e.title,excerpt:e.excerpt,category:e.category,image:e.image,date:e.date,author:"Doormile Team",intro:e.intro,content:e.content??(t={title:e.title,category:e.category,image:e.image},[{type:"paragraph",text:`In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. ${t.title} looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.`},{type:"heading",level:2,text:"Why this matters for fleet teams"},{type:"paragraph",text:"Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day."},{type:"list",items:["Fewer vehicles needed for the same number of drops","Lower cost per drop through better stop sequencing","ETAs that match traffic, distance, and delivery windows","Less fuel or charge used per completed order"]},{type:"heading",level:3,text:"From orders to dispatch"},{type:"paragraph",text:"A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road."},{type:"image",src:t.image,alt:t.title,caption:`${t.category}: route planning decisions made before dispatch.`},{type:"quote",text:"A route should be checked before the rider leaves, not explained after the customer calls.",cite:"Doormile Operations"},{type:"heading",level:2,text:"Putting it into practice"},{type:"paragraph",text:"The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time."},{type:"list",ordered:!0,items:["Benchmark today's distance, fleet size, and on-time rate.","Include vehicle capacity, delivery windows, rider shifts, and battery charge.","Check routes against traffic and customer commitments before dispatch.","Compare the next dispatch cycle against the old plan."]},{type:"paragraph",text:"Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead."}])}});e.s(["default",0,function(){let[e,s]=(0,a.useState)(""),[o,n]=(0,a.useState)(!1),l=(0,a.useRef)(null),d=(0,a.useMemo)(()=>{let t=e.trim().toLowerCase();return t?i.filter(e=>e.title.toLowerCase().includes(t)||e.category.toLowerCase().includes(t)||e.excerpt.toLowerCase().includes(t)).slice(0,6):[]},[e]);(0,a.useEffect)(()=>{function e(e){l.current&&!l.current.contains(e.target)&&n(!1)}return document.addEventListener("mousedown",e),()=>document.removeEventListener("mousedown",e)},[]);let c=o&&e.trim().length>0;return(0,t.jsxs)("div",{className:"dm-blog-search",ref:l,children:[(0,t.jsxs)("form",{role:"search",className:"dm-blog-search-form",onSubmit:e=>e.preventDefault(),children:[(0,t.jsx)("label",{htmlFor:"dm-blog-search-input",className:"dm-sr-only",children:"Search articles"}),(0,t.jsx)("input",{id:"dm-blog-search-input",type:"search",className:"dm-blog-search-input",placeholder:"Search articles…",value:e,autoComplete:"off",onChange:e=>{s(e.target.value),n(!0)},onFocus:()=>n(!0),"aria-controls":"dm-blog-search-results"}),(0,t.jsx)("span",{className:"dm-blog-search-icon","aria-hidden":"true",children:(0,t.jsxs)("svg",{width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2.2",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,t.jsx)("circle",{cx:"11",cy:"11",r:"7"}),(0,t.jsx)("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"})]})})]}),c&&(0,t.jsx)("div",{id:"dm-blog-search-results",className:"dm-blog-search-results",role:"listbox",children:0===d.length?(0,t.jsxs)("p",{className:"dm-blog-search-empty",children:["No articles match “",e.trim(),"”."]}):(0,t.jsx)("ul",{children:d.map(e=>(0,t.jsx)("li",{role:"option","aria-selected":"false",children:(0,t.jsxs)(r.default,{href:`/blog/${e.slug}`,className:"dm-blog-search-result",onClick:()=>n(!1),children:[(0,t.jsx)("span",{className:"dm-blog-search-result-cat",children:e.category}),(0,t.jsx)("span",{className:"dm-blog-search-result-title",children:e.title})]})},e.slug))})})]})}],23096)}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0yd8cyhuvvzan.js b/.next/static/chunks/17iyy9kp8dsf4.js similarity index 97% rename from build/_next/static/chunks/0yd8cyhuvvzan.js rename to .next/static/chunks/17iyy9kp8dsf4.js index 49f3d5b..b7239fb 100644 --- a/build/_next/static/chunks/0yd8cyhuvvzan.js +++ b/.next/static/chunks/17iyy9kp8dsf4.js @@ -1,4 +1,4 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,5074,e=>{"use strict";var t=e.i(43476),i=e.i(71645);let n=[[[.04,.2],[.1,.12],[.18,.1],[.24,.13],[.29,.12],[.3,.18],[.27,.22],[.26,.28],[.22,.3],[.2,.38],[.17,.44],[.15,.4],[.16,.32],[.12,.3],[.09,.26],[.06,.24]],[[.21,.5],[.27,.48],[.31,.52],[.31,.6],[.29,.66],[.27,.74],[.24,.82],[.22,.8],[.22,.7],[.205,.62],[.2,.55]],[[.45,.16],[.5,.13],[.55,.15],[.57,.19],[.55,.24],[.5,.27],[.47,.25],[.455,.2]],[[.46,.34],[.53,.32],[.58,.36],[.585,.44],[.56,.52],[.53,.6],[.5,.66],[.47,.62],[.46,.52],[.45,.44],[.45,.38]],[[.56,.14],[.64,.1],[.74,.1],[.84,.14],[.9,.2],[.92,.26],[.86,.3],[.8,.3],[.74,.34],[.7,.34],[.66,.3],[.6,.3],[.575,.24],[.565,.18]],[[.81,.66],[.87,.64],[.92,.68],[.92,.74],[.86,.77],[.81,.74],[.8,.7]]],a=[[.115,.3],[.265,.255],[.285,.66],[.475,.185],[.605,.345],[.655,.4],[.745,.5],[.815,.275],[.865,.715]],o=[[0,1],[1,3],[3,4],[4,5],[5,6],[6,7],[7,8],[1,2],[3,7],[0,7]];e.s(["default",0,function({accent:e="#ef4444"}){let r=(0,i.useRef)(null);return(0,i.useEffect)(()=>{let[t,i,s]=function(e){let t=/^#?([0-9a-f]{6})$/i.exec(e.trim());if(!t)return[239,68,68];let i=parseInt(t[1],16);return[i>>16&255,i>>8&255,255&i]}(e),l=e=>`rgba(${t},${i},${s},${e})`,d=`rgb(${t},${i},${s})`,c=r.current,m=c?.parentElement;if(!c||!m)return;let p=c.getContext("2d");if(!p)return;let h=window.matchMedia?.("(prefers-reduced-motion: reduce)").matches,g=0,x=0,u=[],b=0,f=0,y=()=>{let e=m.getBoundingClientRect();g=Math.max(1,e.width),x=Math.max(1,e.height);let t=Math.min(window.devicePixelRatio||1,2);c.width=Math.round(g*t),c.height=Math.round(x*t),c.style.width=g+"px",c.style.height=x+"px",p.setTransform(t,0,0,t,0,0),(()=>{u=[];let e=Math.max(11,Math.min(17,g/70));for(let t=e/2;tt!=d>t&&e<(l-r)*(t-s)/(d-s)+r&&(n=!n)}return n}(e,a,o)){u.push({x:t,y:i});break}}})()},w=(e,t)=>({x:(e.x+t.x)/2,y:(e.y+t.y)/2-.28*Math.hypot(t.x-e.x,t.y-e.y)}),v=(e,t,i,n)=>{let a=1-n;return{x:a*a*e.x+2*a*n*t.x+n*n*i.x,y:a*a*e.y+2*a*n*t.y+n*n*i.y}},k=e=>{for(let e of(p.clearRect(0,0,g,x),p.fillStyle="rgba(120,122,130,0.55)",u))p.beginPath(),p.arc(e.x,e.y,1.15,0,2*Math.PI),p.fill();let t=a.map(([e,t])=>({x:e*g,y:t*x}));for(let[e,i]of(p.save(),p.setLineDash([4,7]),p.lineWidth=1,p.strokeStyle=l(.13),o)){let n=w(t[e],t[i]);p.beginPath(),p.moveTo(t[e].x,t[e].y),p.quadraticCurveTo(n.x,n.y,t[i].x,t[i].y),p.stroke()}p.restore(),p.save();for(let i=0;i{f||(f=e),k((e-f)/1e3),b=requestAnimationFrame(_)};y(),h?k(0):b=requestAnimationFrame(_);let j=new ResizeObserver(()=>{y(),h&&k(0)});return j.observe(m),()=>{cancelAnimationFrame(b),j.disconnect()}},[e]),(0,t.jsx)("canvas",{ref:r,className:"ind__map","aria-hidden":"true"})}])},89937,e=>{"use strict";var t=e.i(43476),i=e.i(71645);e.s(["default",0,function(){let[e,n]=(0,i.useState)(0);(0,i.useEffect)(()=>{let e=setInterval(()=>{n(e=>+(0===e))},7e3);return()=>clearInterval(e)},[]);let a=e=>{n(e)};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("link",{rel:"preload",as:"image",href:"/images/home1-slide-1.webp"}),(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,5074,e=>{"use strict";var t=e.i(43476),i=e.i(71645);let n=[[[.04,.2],[.1,.12],[.18,.1],[.24,.13],[.29,.12],[.3,.18],[.27,.22],[.26,.28],[.22,.3],[.2,.38],[.17,.44],[.15,.4],[.16,.32],[.12,.3],[.09,.26],[.06,.24]],[[.21,.5],[.27,.48],[.31,.52],[.31,.6],[.29,.66],[.27,.74],[.24,.82],[.22,.8],[.22,.7],[.205,.62],[.2,.55]],[[.45,.16],[.5,.13],[.55,.15],[.57,.19],[.55,.24],[.5,.27],[.47,.25],[.455,.2]],[[.46,.34],[.53,.32],[.58,.36],[.585,.44],[.56,.52],[.53,.6],[.5,.66],[.47,.62],[.46,.52],[.45,.44],[.45,.38]],[[.56,.14],[.64,.1],[.74,.1],[.84,.14],[.9,.2],[.92,.26],[.86,.3],[.8,.3],[.74,.34],[.7,.34],[.66,.3],[.6,.3],[.575,.24],[.565,.18]],[[.81,.66],[.87,.64],[.92,.68],[.92,.74],[.86,.77],[.81,.74],[.8,.7]]],a=[[.115,.3],[.265,.255],[.285,.66],[.475,.185],[.605,.345],[.655,.4],[.745,.5],[.815,.275],[.865,.715]],o=[[0,1],[1,3],[3,4],[4,5],[5,6],[6,7],[7,8],[1,2],[3,7],[0,7]];e.s(["default",0,function({accent:e="#ef4444"}){let r=(0,i.useRef)(null);return(0,i.useEffect)(()=>{let[t,i,s]=function(e){let t=/^#?([0-9a-f]{6})$/i.exec(e.trim());if(!t)return[239,68,68];let i=parseInt(t[1],16);return[i>>16&255,i>>8&255,255&i]}(e),l=e=>`rgba(${t},${i},${s},${e})`,d=`rgb(${t},${i},${s})`,c=r.current,m=c?.parentElement;if(!c||!m)return;let p=c.getContext("2d");if(!p)return;let h=window.matchMedia?.("(prefers-reduced-motion: reduce)").matches,g=0,x=0,u=[],b=0,f=0,y=()=>{let e=m.getBoundingClientRect();g=Math.max(1,e.width),x=Math.max(1,e.height);let t=Math.min(window.devicePixelRatio||1,2);c.width=Math.round(g*t),c.height=Math.round(x*t),c.style.width=g+"px",c.style.height=x+"px",p.setTransform(t,0,0,t,0,0),(()=>{u=[];let e=Math.max(11,Math.min(17,g/70));for(let t=e/2;tt!=d>t&&e<(l-r)*(t-s)/(d-s)+r&&(n=!n)}return n}(e,a,o)){u.push({x:t,y:i});break}}})()},w=(e,t)=>({x:(e.x+t.x)/2,y:(e.y+t.y)/2-.28*Math.hypot(t.x-e.x,t.y-e.y)}),v=(e,t,i,n)=>{let a=1-n;return{x:a*a*e.x+2*a*n*t.x+n*n*i.x,y:a*a*e.y+2*a*n*t.y+n*n*i.y}},k=e=>{for(let e of(p.clearRect(0,0,g,x),p.fillStyle="rgba(120,122,130,0.55)",u))p.beginPath(),p.arc(e.x,e.y,1.15,0,2*Math.PI),p.fill();let t=a.map(([e,t])=>({x:e*g,y:t*x}));for(let[e,i]of(p.save(),p.setLineDash([4,7]),p.lineWidth=1,p.strokeStyle=l(.13),o)){let n=w(t[e],t[i]);p.beginPath(),p.moveTo(t[e].x,t[e].y),p.quadraticCurveTo(n.x,n.y,t[i].x,t[i].y),p.stroke()}p.restore(),p.save();for(let i=0;i{f||(f=e),k((e-f)/1e3),b=requestAnimationFrame(_)};y(),h?k(0):b=requestAnimationFrame(_);let j=new ResizeObserver(()=>{y(),h&&k(0)});return j.observe(m),()=>{cancelAnimationFrame(b),j.disconnect()}},[e]),(0,t.jsx)("canvas",{ref:r,className:"ind__map","aria-hidden":"true"})}])},89937,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(74080);e.s(["default",0,function(){(0,n.preload)("/images/home1-slide-1.webp",{as:"image"});let[e,a]=(0,i.useState)(0);(0,i.useEffect)(()=>{let e=setInterval(()=>{a(e=>+(0===e))},7e3);return()=>clearInterval(e)},[]);let o=e=>{a(e)};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("style",{dangerouslySetInnerHTML:{__html:` .howits-hero-custom-bg.elementor-repeater-item-3264830, .howits-hero-custom-bg.elementor-repeater-item-6867061 { background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('/images/home1-slide-1.webp') !important; @@ -180,7 +180,7 @@ display: none !important; } } - `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden",height:"800px"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsx)("span",{className:"heading-content",children:"Solutions for Every Industry"})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Discover how Doormile's connected logistics platform serves diverse industries with tailored solutions."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsx)("span",{className:"heading-content",children:"One Platform. All Verticals"})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Doormile adapts to the unique challenges of your vertical—not the other way around."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:()=>n(e=>+(0===e)),"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:()=>n(e=>+(0===e)),"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center",gap:"10px"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>a(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>a(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})})]})}])},40086,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(5074);let a=[{id:1,title:"FMCG",image:"/images/tab-pic-1-solution.webp",alt:"FMCG logistics",desc:"FMCG logistics demands speed, precision, and continuous fulfillment across high-volume delivery networks. Businesses must balance tight delivery timelines, inventory movement, and operational efficiency without compromising product availability.",ch:["Unpredictable demand spikes create delivery pressure and reduce operational efficiency during peak periods.","Fresh product expiry constraints require faster, precisely timed deliveries to maintain product quality.","Multi-stop route complexity increases travel time, operational costs, and delivery coordination challenges.","Inventory stockout risks increase when delivery delays disrupt fast-moving product distribution."],so:["AI demand forecasting adapts delivery plans instantly to real-time order demand.","Expiry-aware routing prioritises perishable goods for on-time freshness.","Smart multi-stop optimisation groups orders to cut cost and travel time.","Real-time inventory sync prevents stockouts and improves fulfilment accuracy."]},{id:2,title:"Pharma",image:"/images/tab-pic-2-solution.webp",alt:"Pharma logistics",desc:"Pharma logistics requires precision, compliance, and real-time monitoring so every shipment arrives safely and on time — from temperature-sensitive medicines to urgent emergency deliveries.",ch:["Cold chain integrity demands precise temperature control throughout transit.","Regulatory compliance must be tracked and documented on every delivery.","Critical delivery time windows require highly accurate scheduling.","Emergency shipments need instant dispatch and zero-delay execution."],so:["Cold chain monitoring with automatic re-routing keeps shipments in-spec.","Compliance engine with audit trails ensures full chain-of-custody visibility.","Precision scheduling locks in critical delivery windows reliably.","Priority dispatch queue fast-tracks urgent, life-critical shipments."]},{id:3,title:"Enterprise & B2B",image:"/images/tab-pic-3-solution.webp",alt:"Enterprise and B2B logistics",desc:"Enterprise and B2B logistics require coordination and reliability to manage high-value shipments at scale — with appointment scheduling, white-glove standards, and strict SLA commitments.",ch:["Appointment scheduling requires precise timing across many locations.","White-glove delivery standards demand premium handling and accuracy.","Multi-location routing complexity grows with large-scale operations.","Strict SLA commitments pressure teams to stay timely and error-free."],so:["Intelligent appointment engine streamlines and automates delivery slots.","White-glove workflow module enforces premium handling end to end.","Enterprise route planner coordinates efficient multi-location delivery.","SLA monitoring dashboard tracks commitments and flags risk in real time."]}];function o({sec:e}){let[a,r]=(0,i.useState)("ch"),s="ch"===a?e.ch:e.so;return(0,t.jsx)("section",{className:"istk","aria-label":`${e.title} solutions`,children:(0,t.jsxs)("div",{className:"istk__card",children:[(0,t.jsx)(n.default,{}),(0,t.jsxs)("div",{className:"istk__row",children:[(0,t.jsx)("div",{className:"istk__media",children:(0,t.jsx)("img",{className:"istk__img",src:e.image,alt:e.alt,decoding:"async",loading:"lazy"})}),(0,t.jsxs)("div",{className:"istk__content",children:[(0,t.jsx)("h3",{className:"istk__title",children:e.title}),(0,t.jsx)("p",{className:"istk__desc",children:e.desc}),(0,t.jsxs)("div",{className:"istk__tabs",role:"tablist","aria-label":"Challenges or Solutions",children:[(0,t.jsx)("button",{type:"button",role:"tab","aria-selected":"ch"===a,className:`istk__tab ${"ch"===a?"active":""}`,onClick:()=>r("ch"),children:"Challenges"}),(0,t.jsx)("button",{type:"button",role:"tab","aria-selected":"so"===a,className:`istk__tab ${"so"===a?"active":""}`,onClick:()=>r("so"),children:"Solutions"})]}),(0,t.jsx)("ul",{className:"istk__list",children:s.map((e,i)=>(0,t.jsx)("li",{style:{animationDelay:`${80*i}ms`},children:e},e))},a)]})]})]})})}let r=` + `}}),(0,t.jsx)("div",{className:"elementor-element elementor-element-741f56c e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent","data-id":"741f56c","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-6c7cbcb elementor-widget elementor-widget-logico_content_slider","data-id":"6c7cbcb","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_content_slider.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-content-slider-widget",children:(0,t.jsx)("div",{className:"content-slider-wrapper",children:(0,t.jsx)("div",{className:"content-slider-container",children:(0,t.jsxs)("div",{className:"content-slider owl-carousel owl-theme nav-view-vertical nav-h-position-right nav-v-position-bottom owl-loaded owl-drag",children:[(0,t.jsx)("div",{className:"owl-stage-outer",style:{position:"relative",overflow:"hidden",height:"800px"},children:(0,t.jsxs)("div",{className:"owl-stage",style:{position:"relative",width:"100%",height:"100%"},children:[(0,t.jsx)("div",{className:`owl-item ${0===e?"active":""}`,style:{position:"relative",width:"100%",opacity:+(0===e),visibility:0===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:0===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-3264830 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsx)("span",{className:"heading-content",children:"Solutions for Every Industry"})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Discover how Doormile's connected logistics platform serves diverse industries with tailored solutions."})})})]})})})}),(0,t.jsx)("div",{className:`owl-item ${1===e?"active":""}`,style:{position:"absolute",top:0,left:0,width:"100%",opacity:+(1===e),visibility:1===e?"visible":"hidden",transition:"opacity 0.8s ease-in-out, visibility 0.8s ease-in-out",zIndex:1===e?2:1},children:(0,t.jsx)("div",{className:"content-item slider-item elementor-repeater-item-6867061 slide-style-standard howits-hero-custom-bg",children:(0,t.jsx)("div",{className:"slide-content",children:(0,t.jsxs)("div",{className:"slide-content-inner",children:[(0,t.jsx)("h1",{className:"content-slider-item-heading logico-content-wrapper-1",children:(0,t.jsx)("span",{className:"heading-content",children:"One Platform. All Verticals"})}),(0,t.jsx)("div",{className:"content-slider-item-text logico-content-wrapper-2",children:(0,t.jsx)("div",{className:"text-content",children:(0,t.jsx)("p",{children:"Doormile adapts to the unique challenges of your vertical—not the other way around."})})})]})})})})]})}),(0,t.jsxs)("div",{className:"owl-nav",children:[(0,t.jsx)("button",{type:"button",className:"owl-next",onClick:()=>a(e=>+(0===e)),"aria-label":"Next",style:{cursor:"pointer",border:"none",outline:"none"}}),(0,t.jsx)("button",{type:"button",className:"owl-prev",onClick:()=>a(e=>+(0===e)),"aria-label":"Previous",style:{cursor:"pointer",border:"none",outline:"none"}})]}),(0,t.jsx)("div",{className:"slider-footer slider-footer-position-after slider-footer-width-full slider-footer-view-inside",children:(0,t.jsx)("div",{className:"slider-footer-content",children:(0,t.jsxs)("div",{className:"slider-pagination",style:{display:"flex",justifyContent:"flex-end",alignItems:"center",gap:"10px"},children:[(0,t.jsxs)("div",{className:"slider-progress-wrapper",style:{marginRight:"35px",display:"flex",flexDirection:"column",alignItems:"flex-start"},children:[(0,t.jsxs)("div",{style:{fontSize:"16px",fontWeight:600,color:"#FFFFFF",marginBottom:"4px"},children:[(0,t.jsx)("span",{className:"slider-progress-current",children:0===e?"01":"02"})," / ",(0,t.jsx)("span",{className:"slider-progress-all",style:{opacity:.6},children:"02"})]}),(0,t.jsx)("div",{style:{width:"80px",height:"2px",background:"rgba(255, 255, 255, 0.2)",position:"relative",borderRadius:"1px",overflow:"hidden"},children:(0,t.jsx)("div",{style:{position:"absolute",left:0===e?"0":"50%",width:"50%",height:"100%",background:"#c01227",transition:"left 0.3s ease"}})})]}),(0,t.jsxs)("div",{className:"owl-dots owl-dots-6c7cbcb",style:{display:"none"},children:[(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${0===e?"active":""}`,onClick:()=>o(0),children:(0,t.jsx)("span",{})}),(0,t.jsx)("button",{type:"button",role:"button",className:`owl-dot ${1===e?"active":""}`,onClick:()=>o(1),children:(0,t.jsx)("span",{})})]})]})})})]})})})})})})})]})}])},40086,e=>{"use strict";var t=e.i(43476),i=e.i(71645),n=e.i(5074);let a=[{id:1,title:"FMCG",image:"/images/tab-pic-1-solution.webp",alt:"FMCG logistics",desc:"FMCG logistics demands speed, precision, and continuous fulfillment across high-volume delivery networks. Businesses must balance tight delivery timelines, inventory movement, and operational efficiency without compromising product availability.",ch:["Unpredictable demand spikes create delivery pressure and reduce operational efficiency during peak periods.","Fresh product expiry constraints require faster, precisely timed deliveries to maintain product quality.","Multi-stop route complexity increases travel time, operational costs, and delivery coordination challenges.","Inventory stockout risks increase when delivery delays disrupt fast-moving product distribution."],so:["AI demand forecasting adapts delivery plans instantly to real-time order demand.","Expiry-aware routing prioritises perishable goods for on-time freshness.","Smart multi-stop optimisation groups orders to cut cost and travel time.","Real-time inventory sync prevents stockouts and improves fulfilment accuracy."]},{id:2,title:"Pharma",image:"/images/tab-pic-2-solution.webp",alt:"Pharma logistics",desc:"Pharma logistics requires precision, compliance, and real-time monitoring so every shipment arrives safely and on time — from temperature-sensitive medicines to urgent emergency deliveries.",ch:["Cold chain integrity demands precise temperature control throughout transit.","Regulatory compliance must be tracked and documented on every delivery.","Critical delivery time windows require highly accurate scheduling.","Emergency shipments need instant dispatch and zero-delay execution."],so:["Cold chain monitoring with automatic re-routing keeps shipments in-spec.","Compliance engine with audit trails ensures full chain-of-custody visibility.","Precision scheduling locks in critical delivery windows reliably.","Priority dispatch queue fast-tracks urgent, life-critical shipments."]},{id:3,title:"Enterprise & B2B",image:"/images/tab-pic-3-solution.webp",alt:"Enterprise and B2B logistics",desc:"Enterprise and B2B logistics require coordination and reliability to manage high-value shipments at scale — with appointment scheduling, white-glove standards, and strict SLA commitments.",ch:["Appointment scheduling requires precise timing across many locations.","White-glove delivery standards demand premium handling and accuracy.","Multi-location routing complexity grows with large-scale operations.","Strict SLA commitments pressure teams to stay timely and error-free."],so:["Intelligent appointment engine streamlines and automates delivery slots.","White-glove workflow module enforces premium handling end to end.","Enterprise route planner coordinates efficient multi-location delivery.","SLA monitoring dashboard tracks commitments and flags risk in real time."]}];function o({sec:e}){let[a,r]=(0,i.useState)("ch"),s="ch"===a?e.ch:e.so;return(0,t.jsx)("section",{className:"istk","aria-label":`${e.title} solutions`,children:(0,t.jsxs)("div",{className:"istk__card",children:[(0,t.jsx)(n.default,{}),(0,t.jsxs)("div",{className:"istk__row",children:[(0,t.jsx)("div",{className:"istk__media",children:(0,t.jsx)("img",{className:"istk__img",src:e.image,alt:e.alt,decoding:"async",loading:"lazy"})}),(0,t.jsxs)("div",{className:"istk__content",children:[(0,t.jsx)("h3",{className:"istk__title",children:e.title}),(0,t.jsx)("p",{className:"istk__desc",children:e.desc}),(0,t.jsxs)("div",{className:"istk__tabs",role:"tablist","aria-label":"Challenges or Solutions",children:[(0,t.jsx)("button",{type:"button",role:"tab","aria-selected":"ch"===a,className:`istk__tab ${"ch"===a?"active":""}`,onClick:()=>r("ch"),children:"Challenges"}),(0,t.jsx)("button",{type:"button",role:"tab","aria-selected":"so"===a,className:`istk__tab ${"so"===a?"active":""}`,onClick:()=>r("so"),children:"Solutions"})]}),(0,t.jsx)("ul",{className:"istk__list",children:s.map((e,i)=>(0,t.jsx)("li",{style:{animationDelay:`${80*i}ms`},children:e},e))},a)]})]})]})})}let r=` /* No outer frame — the cards float on the page background. */ #ind-stack { background: transparent; } diff --git a/build/_next/static/chunks/turbopack-0srbdy.l3xhmj.js b/.next/static/chunks/turbopack-11jn_eqn~72wc.js similarity index 73% rename from build/_next/static/chunks/turbopack-0srbdy.l3xhmj.js rename to .next/static/chunks/turbopack-11jn_eqn~72wc.js index baf98c8..cc44f6d 100644 --- a/build/_next/static/chunks/turbopack-0srbdy.l3xhmj.js +++ b/.next/static/chunks/turbopack-11jn_eqn~72wc.js @@ -1 +1 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,{otherChunks:["static/chunks/098a0lm-b~rn..js","static/chunks/0tldj~reb5~dn.js","static/chunks/110q6k5sdl4es.js","static/chunks/14w_kqlcp4t3-.js","static/chunks/07uz2g0_38qia.js"],runtimeModuleIds:[94553]}]),(()=>{let e;if(!Array.isArray(globalThis.TURBOPACK))return;let t="/_next/",r=function(){if(null!=self.TURBOPACK_ASSET_SUFFIX)return self.TURBOPACK_ASSET_SUFFIX;let e=document?.currentScript?.getAttribute?.("src")??"",t=e.indexOf("?");return t>=0?e.slice(t):""}(),n=["NEXT_DEPLOYMENT_ID","NEXT_CLIENT_ASSET_SUFFIX"];var o,l=((o=l||{})[o.Runtime=0]="Runtime",o[o.Parent=1]="Parent",o[o.Update=2]="Update",o);let i=new WeakMap;function s(e,t){this.m=e,this.e=t}let u=s.prototype,a=Object.prototype.hasOwnProperty,c="u">typeof Symbol&&Symbol.toStringTag;function f(e,t,r){a.call(e,t)||Object.defineProperty(e,t,r)}function p(e,t){let r=e[t];return r||(r=h(t),e[t]=r),r}function h(e){return{exports:{},error:void 0,id:e,namespaceObject:void 0}}function d(e,t){f(e,"__esModule",{value:!0}),c&&f(e,c,{value:"Module"});let r=0;for(;rObject.getPrototypeOf(e):e=>e.__proto__,y=[null,b({}),b([]),b(b)];function g(e,t,r){let n=[],o=-1;for(let t=e;("object"==typeof t||"function"==typeof t)&&!y.includes(t);t=b(t))for(let r of Object.getOwnPropertyNames(t))n.push(r,function(e,t){return()=>e[t]}(e,r)),-1===o&&"default"===r&&(o=n.length-1);return r&&o>=0||(o>=0?n.splice(o,1,0,e):n.push("default",0,e)),d(t,n),t}function O(e){let t=B(e,this.m);if(t.namespaceObject)return t.namespaceObject;let r=t.exports;return t.namespaceObject=g(r,"function"==typeof r?function(...e){return r.apply(this,e)}:Object.create(null),r&&r.__esModule)}function w(e){let t=e.indexOf("#");-1!==t&&(e=e.substring(0,t));let r=e.indexOf("?");return -1!==r&&(e=e.substring(0,r)),e}function k(){let e,t;return{promise:new Promise((r,n)=>{t=n,e=r}),resolve:e,reject:t}}u.i=O,u.A=function(e){return this.r(e)(O.bind(this))},u.t="function"==typeof require?require:function(){throw Error("Unexpected use of runtime require")},u.r=function(e){return B(e,this.m).exports},u.f=function(e){function t(t){if(t=w(t),a.call(e,t))return e[t].module();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r}return t.keys=()=>Object.keys(e),t.resolve=t=>{if(t=w(t),a.call(e,t))return e[t].id();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r},t.import=async e=>await t(e),t};let j=Symbol("turbopack queues"),U=Symbol("turbopack exports"),C=Symbol("turbopack error");function P(e){e&&1!==e.status&&(e.status=1,e.forEach(e=>e.queueCount--),e.forEach(e=>e.queueCount--?e.queueCount++:e()))}u.a=function(e,t){let r=this.m,n=t?Object.assign([],{status:-1}):void 0,o=new Set,{resolve:l,reject:i,promise:s}=k(),u=Object.assign(s,{[U]:r.exports,[j]:e=>{n&&e(n),o.forEach(e),u.catch(()=>{})}}),a={get:()=>u,set(e){e!==u&&(u[U]=e)}};Object.defineProperty(r,"exports",a),Object.defineProperty(r,"namespaceObject",a),e(function(e){let t=e.map(e=>{if(null!==e&&"object"==typeof e){if(j in e)return e;if(null!=e&&"object"==typeof e&&"then"in e&&"function"==typeof e.then){let t=Object.assign([],{status:0}),r={[U]:{},[j]:e=>e(t)};return e.then(e=>{r[U]=e,P(t)},e=>{r[C]=e,P(t)}),r}}return{[U]:e,[j]:()=>{}}}),r=()=>t.map(e=>{if(e[C])throw e[C];return e[U]}),{promise:l,resolve:i}=k(),s=Object.assign(()=>i(r),{queueCount:0});function u(e){e!==n&&!o.has(e)&&(o.add(e),e&&0===e.status&&(s.queueCount++,e.push(s)))}return t.map(e=>e[j](u)),s.queueCount?l:r()},function(e){e?i(u[C]=e):l(u[U]),P(n)}),n&&-1===n.status&&(n.status=0)};let v=function(e){let t=new URL(e,"x:/"),r={};for(let e in t)r[e]=t[e];for(let t in r.href=e,r.pathname=e.replace(/[?#].*/,""),r.origin=r.protocol="",r.toString=r.toJSON=(...t)=>e,r)Object.defineProperty(this,t,{enumerable:!0,configurable:!0,value:r[t]})};function R(e,t){throw Error(`Invariant: ${t(e)}`)}v.prototype=URL.prototype,u.U=v,u.z=function(e){throw Error("dynamic usage of require is not supported")},u.g=globalThis;let S=s.prototype,$=new Map;u.M=$;let _=new Map,E=new Map;async function T(e,t,r){let n;if("string"==typeof r)return M(e,t,q(r));let o=r.included||[],l=o.map(e=>!!$.has(e)||_.get(e));if(l.length>0&&l.every(e=>e))return void await Promise.all(l);let i=r.moduleChunks||[],s=i.map(e=>E.get(e)).filter(e=>e);if(s.length>0){if(s.length===i.length)return void await Promise.all(s);let r=new Set;for(let e of i)E.has(e)||r.add(e);for(let n of r){let r=M(e,t,q(n));E.set(n,r),s.push(r)}n=Promise.all(s)}else{for(let o of(n=M(e,t,q(r.path)),i))E.has(o)||E.set(o,n)}for(let e of o)_.has(e)||_.set(e,n);await n}S.l=function(e){return T(l.Parent,this.m.id,e)};let A=Promise.resolve(void 0),x=new WeakMap;function M(t,r,n){let o=e.loadChunkCached(t,n),i=x.get(o);if(void 0===i){let e=x.set.bind(x,o,A);i=o.then(e).catch(e=>{let o;switch(t){case l.Runtime:o=`as a runtime dependency of chunk ${r}`;break;case l.Parent:o=`from module ${r}`;break;case l.Update:o="from an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}let i=Error(`Failed to load chunk ${n} ${o}${e?`: ${e}`:""}`,e?{cause:e}:void 0);throw i.name="ChunkLoadError",i}),x.set(o,i)}return i}function q(e){return`${t}${e.split("/").map(e=>encodeURIComponent(e)).join("/")}${r}`}S.L=function(e){return M(l.Parent,this.m.id,e)},S.R=function(e){let t=this.r(e);return t?.default??t},S.P=function(e){return`/ROOT/${e??""}`},S.q=function(e,t){m.call(this,`${e}${r}`,t)},S.b=function(e,t,o,l){let i="SharedWorker"===e.name,s=[o.map(e=>q(e)).reverse(),r];for(let e of n)s.push(globalThis[e]);let u=new URL(q(t),location.origin),a=JSON.stringify(s);return i?u.searchParams.set("params",a):u.hash="#params="+encodeURIComponent(a),new e(u,l?{...l,type:void 0}:void 0)};let N=/\.js(?:\?[^#]*)?(?:#.*)?$/,K=/\.css(?:\?[^#]*)?(?:#.*)?$/;function L(e){return K.test(e)}u.w=function(t,r,n){return e.loadWebAssembly(l.Parent,this.m.id,t,r,n)},u.u=function(t,r){return e.loadWebAssemblyModule(l.Parent,this.m.id,t,r)};let I={};u.c=I;let B=(e,t)=>{let r=I[e];if(r){if(r.error)throw r.error;return r}return W(e,l.Parent,t.id)};function W(e,t,r){let n=$.get(e);if("function"!=typeof n)throw Error(function(e,t,r){let n;switch(t){case 0:n=`as a runtime entry of chunk ${r}`;break;case 1:n=`because it was required from module ${r}`;break;case 2:n="because of an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}return`Module ${e} was instantiated ${n}, but the module factory is not available.`}(e,t,r));let o=h(e),l=o.exports;I[e]=o;let i=new s(o,l);try{n(i,o,l)}catch(e){throw o.error=e,e}return o.namespaceObject&&o.exports!==o.namespaceObject&&g(o.exports,o.namespaceObject),o}function F(t){let r,n=function(e){if("string"==typeof e)return e;if(e)return{src:e.getAttribute("src")};if("u">typeof TURBOPACK_NEXT_CHUNK_URLS)return{src:TURBOPACK_NEXT_CHUNK_URLS.pop()};throw Error("chunk path empty but not in a worker")}(t[0]);return 2===t.length?r=t[1]:(r=void 0,!function(e,t){let r=1;for(;r{r=e,n=t}),resolve:()=>{t.resolved=!0,r()},reject:n},X.set(e,t)}return t}e={async registerChunk(e,r){let n=function(e){if("string"==typeof e)return e;let r=decodeURIComponent(e.src.replace(/[?#].*$/,""));return r.startsWith(t)?r.slice(t.length):r}(e);if(D("string"==typeof e?q(e):e.src).resolve(),null!=r){for(let e of r.otherChunks)D(q("string"==typeof e?e:e.path));if(await Promise.all(r.otherChunks.map(e=>T(l.Runtime,n,e))),r.runtimeModuleIds.length>0)for(let e of r.runtimeModuleIds)!function(e,t){let r=I[t];if(r){if(r.error)throw r.error;return}W(t,l.Runtime,e)}(n,e)}},loadChunkCached:(e,t)=>(function(e,t){let r=D(t);if(r.loadingStarted)return r.promise;if(e===l.Runtime)return r.loadingStarted=!0,L(t)&&r.resolve(),r.promise;if("function"==typeof importScripts)if(L(t));else if(N.test(t))self.TURBOPACK_NEXT_CHUNK_URLS.push(t),importScripts(t);else throw Error(`can't infer type of chunk from URL ${t} in worker`);else{let e=decodeURI(t);if(L(t))if(document.querySelectorAll(`link[rel=stylesheet][href="${t}"],link[rel=stylesheet][href^="${t}?"],link[rel=stylesheet][href="${e}"],link[rel=stylesheet][href^="${e}?"]`).length>0)r.resolve();else{let e=document.createElement("link");e.rel="stylesheet",e.href=t,e.onerror=()=>{r.reject()},e.onload=()=>{r.resolve()},document.head.appendChild(e)}else if(N.test(t)){let n=document.querySelectorAll(`script[src="${t}"],script[src^="${t}?"],script[src="${e}"],script[src^="${e}?"]`);if(n.length>0)for(let e of Array.from(n))e.addEventListener("error",()=>{r.reject()});else{let e=document.createElement("script");e.src=t,e.onerror=()=>{r.reject()},document.head.appendChild(e)}}else throw Error(`can't infer type of chunk from URL ${t}`)}return r.loadingStarted=!0,r.promise})(e,t),async loadWebAssembly(e,t,r,n,o){let l=fetch(q(r)),{instance:i}=await WebAssembly.instantiateStreaming(l,o);return i.exports},async loadWebAssemblyModule(e,t,r,n){let o=fetch(q(r));return await WebAssembly.compileStreaming(o)}};let H=globalThis.TURBOPACK;globalThis.TURBOPACK={push:F},H.forEach(F)})(); \ No newline at end of file +(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,{otherChunks:["static/chunks/098a0lm-b~rn..js","static/chunks/0tldj~reb5~dn.js","static/chunks/110q6k5sdl4es.js","static/chunks/14_678uuyq.tf.js","static/chunks/07uz2g0_38qia.js"],runtimeModuleIds:[94553]}]),(()=>{let e;if(!Array.isArray(globalThis.TURBOPACK))return;let t="/_next/",r=function(){if(null!=self.TURBOPACK_ASSET_SUFFIX)return self.TURBOPACK_ASSET_SUFFIX;let e=document?.currentScript?.getAttribute?.("src")??"",t=e.indexOf("?");return t>=0?e.slice(t):""}(),n=["NEXT_DEPLOYMENT_ID","NEXT_CLIENT_ASSET_SUFFIX"];var o,i=((o=i||{})[o.Runtime=0]="Runtime",o[o.Parent=1]="Parent",o[o.Update=2]="Update",o);let l=new WeakMap;function s(e,t){this.m=e,this.e=t}let u=s.prototype,a=Object.prototype.hasOwnProperty,c="u">typeof Symbol&&Symbol.toStringTag;function f(e,t,r){a.call(e,t)||Object.defineProperty(e,t,r)}function p(e,t){let r=e[t];return r||(r=h(t),e[t]=r),r}function h(e){return{exports:{},error:void 0,id:e,namespaceObject:void 0}}function d(e,t){f(e,"__esModule",{value:!0}),c&&f(e,c,{value:"Module"});let r=0;for(;rObject.getPrototypeOf(e):e=>e.__proto__,y=[null,b({}),b([]),b(b)];function g(e,t,r){let n=[],o=-1;for(let t=e;("object"==typeof t||"function"==typeof t)&&!y.includes(t);t=b(t))for(let r of Object.getOwnPropertyNames(t))n.push(r,function(e,t){return()=>e[t]}(e,r)),-1===o&&"default"===r&&(o=n.length-1);return r&&o>=0||(o>=0?n.splice(o,1,0,e):n.push("default",0,e)),d(t,n),t}function O(e){let t=B(e,this.m);if(t.namespaceObject)return t.namespaceObject;let r=t.exports;return t.namespaceObject=g(r,"function"==typeof r?function(...e){return r.apply(this,e)}:Object.create(null),r&&r.__esModule)}function w(e){let t=e.indexOf("#");-1!==t&&(e=e.substring(0,t));let r=e.indexOf("?");return -1!==r&&(e=e.substring(0,r)),e}function j(){let e,t;return{promise:new Promise((r,n)=>{t=n,e=r}),resolve:e,reject:t}}u.i=O,u.A=function(e){return this.r(e)(O.bind(this))},u.t="function"==typeof require?require:function(){throw Error("Unexpected use of runtime require")},u.r=function(e){return B(e,this.m).exports},u.f=function(e){function t(t){if(t=w(t),a.call(e,t))return e[t].module();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r}return t.keys=()=>Object.keys(e),t.resolve=t=>{if(t=w(t),a.call(e,t))return e[t].id();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r},t.import=async e=>await t(e),t};let k=Symbol("turbopack queues"),U=Symbol("turbopack exports"),C=Symbol("turbopack error");function P(e){e&&1!==e.status&&(e.status=1,e.forEach(e=>e.queueCount--),e.forEach(e=>e.queueCount--?e.queueCount++:e()))}u.a=function(e,t){let r=this.m,n=t?Object.assign([],{status:-1}):void 0,o=new Set,{resolve:i,reject:l,promise:s}=j(),u=Object.assign(s,{[U]:r.exports,[k]:e=>{n&&e(n),o.forEach(e),u.catch(()=>{})}}),a={get:()=>u,set(e){e!==u&&(u[U]=e)}};Object.defineProperty(r,"exports",a),Object.defineProperty(r,"namespaceObject",a),e(function(e){let t=e.map(e=>{if(null!==e&&"object"==typeof e){if(k in e)return e;if(null!=e&&"object"==typeof e&&"then"in e&&"function"==typeof e.then){let t=Object.assign([],{status:0}),r={[U]:{},[k]:e=>e(t)};return e.then(e=>{r[U]=e,P(t)},e=>{r[C]=e,P(t)}),r}}return{[U]:e,[k]:()=>{}}}),r=()=>t.map(e=>{if(e[C])throw e[C];return e[U]}),{promise:i,resolve:l}=j(),s=Object.assign(()=>l(r),{queueCount:0});function u(e){e!==n&&!o.has(e)&&(o.add(e),e&&0===e.status&&(s.queueCount++,e.push(s)))}return t.map(e=>e[k](u)),s.queueCount?i:r()},function(e){e?l(u[C]=e):i(u[U]),P(n)}),n&&-1===n.status&&(n.status=0)};let v=function(e){let t=new URL(e,"x:/"),r={};for(let e in t)r[e]=t[e];for(let t in r.href=e,r.pathname=e.replace(/[?#].*/,""),r.origin=r.protocol="",r.toString=r.toJSON=(...t)=>e,r)Object.defineProperty(this,t,{enumerable:!0,configurable:!0,value:r[t]})};function R(e,t){throw Error(`Invariant: ${t(e)}`)}v.prototype=URL.prototype,u.U=v,u.z=function(e){throw Error("dynamic usage of require is not supported")},u.g=globalThis;let S=s.prototype,$=new Map;u.M=$;let _=new Map,E=new Map;async function T(e,t,r){let n;if("string"==typeof r)return M(e,t,q(r));let o=r.included||[],i=o.map(e=>!!$.has(e)||_.get(e));if(i.length>0&&i.every(e=>e))return void await Promise.all(i);let l=r.moduleChunks||[],s=l.map(e=>E.get(e)).filter(e=>e);if(s.length>0){if(s.length===l.length)return void await Promise.all(s);let r=new Set;for(let e of l)E.has(e)||r.add(e);for(let n of r){let r=M(e,t,q(n));E.set(n,r),s.push(r)}n=Promise.all(s)}else{for(let o of(n=M(e,t,q(r.path)),l))E.has(o)||E.set(o,n)}for(let e of o)_.has(e)||_.set(e,n);await n}S.l=function(e){return T(i.Parent,this.m.id,e)};let A=Promise.resolve(void 0),x=new WeakMap;function M(t,r,n){let o=e.loadChunkCached(t,n),l=x.get(o);if(void 0===l){let e=x.set.bind(x,o,A);l=o.then(e).catch(e=>{let o;switch(t){case i.Runtime:o=`as a runtime dependency of chunk ${r}`;break;case i.Parent:o=`from module ${r}`;break;case i.Update:o="from an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}let l=Error(`Failed to load chunk ${n} ${o}${e?`: ${e}`:""}`,e?{cause:e}:void 0);throw l.name="ChunkLoadError",l}),x.set(o,l)}return l}function q(e){return`${t}${e.split("/").map(e=>encodeURIComponent(e)).join("/")}${r}`}S.L=function(e){return M(i.Parent,this.m.id,e)},S.R=function(e){let t=this.r(e);return t?.default??t},S.P=function(e){return`/ROOT/${e??""}`},S.q=function(e,t){m.call(this,`${e}${r}`,t)},S.b=function(e,t,o,i){let l="SharedWorker"===e.name,s=[o.map(e=>q(e)).reverse(),r];for(let e of n)s.push(globalThis[e]);let u=new URL(q(t),location.origin),a=JSON.stringify(s);return l?u.searchParams.set("params",a):u.hash="#params="+encodeURIComponent(a),new e(u,i?{...i,type:void 0}:void 0)};let N=/\.js(?:\?[^#]*)?(?:#.*)?$/,K=/\.css(?:\?[^#]*)?(?:#.*)?$/;function L(e){return K.test(e)}u.w=function(t,r,n){return e.loadWebAssembly(i.Parent,this.m.id,t,r,n)},u.u=function(t,r){return e.loadWebAssemblyModule(i.Parent,this.m.id,t,r)};let I={};u.c=I;let B=(e,t)=>{let r=I[e];if(r){if(r.error)throw r.error;return r}return W(e,i.Parent,t.id)};function W(e,t,r){let n=$.get(e);if("function"!=typeof n)throw Error(function(e,t,r){let n;switch(t){case 0:n=`as a runtime entry of chunk ${r}`;break;case 1:n=`because it was required from module ${r}`;break;case 2:n="because of an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}return`Module ${e} was instantiated ${n}, but the module factory is not available.`}(e,t,r));let o=h(e),i=o.exports;I[e]=o;let l=new s(o,i);try{n(l,o,i)}catch(e){throw o.error=e,e}return o.namespaceObject&&o.exports!==o.namespaceObject&&g(o.exports,o.namespaceObject),o}function F(t){let r,n=function(e){if("string"==typeof e)return e;if(e)return{src:e.getAttribute("src")};if("u">typeof TURBOPACK_NEXT_CHUNK_URLS)return{src:TURBOPACK_NEXT_CHUNK_URLS.pop()};throw Error("chunk path empty but not in a worker")}(t[0]);return 2===t.length?r=t[1]:(r=void 0,!function(e,t){let r=1;for(;r{r=e,n=t}),resolve:()=>{t.resolved=!0,r()},reject:n},X.set(e,t)}return t}e={async registerChunk(e,r){let n=function(e){if("string"==typeof e)return e;let r=decodeURIComponent(e.src.replace(/[?#].*$/,""));return r.startsWith(t)?r.slice(t.length):r}(e);if(D("string"==typeof e?q(e):e.src).resolve(),null!=r){for(let e of r.otherChunks)D(q("string"==typeof e?e:e.path));if(await Promise.all(r.otherChunks.map(e=>T(i.Runtime,n,e))),r.runtimeModuleIds.length>0)for(let e of r.runtimeModuleIds)!function(e,t){let r=I[t];if(r){if(r.error)throw r.error;return}W(t,i.Runtime,e)}(n,e)}},loadChunkCached:(e,t)=>(function(e,t){let r=D(t);if(r.loadingStarted)return r.promise;if(e===i.Runtime)return r.loadingStarted=!0,L(t)&&r.resolve(),r.promise;if("function"==typeof importScripts)if(L(t));else if(N.test(t))self.TURBOPACK_NEXT_CHUNK_URLS.push(t),importScripts(t);else throw Error(`can't infer type of chunk from URL ${t} in worker`);else{let e=decodeURI(t);if(L(t))if(document.querySelectorAll(`link[rel=stylesheet][href="${t}"],link[rel=stylesheet][href^="${t}?"],link[rel=stylesheet][href="${e}"],link[rel=stylesheet][href^="${e}?"]`).length>0)r.resolve();else{let e=document.createElement("link");e.rel="stylesheet",e.href=t,e.onerror=()=>{r.reject()},e.onload=()=>{r.resolve()},document.head.appendChild(e)}else if(N.test(t)){let n=document.querySelectorAll(`script[src="${t}"],script[src^="${t}?"],script[src="${e}"],script[src^="${e}?"]`);if(n.length>0)for(let e of Array.from(n))e.addEventListener("error",()=>{r.reject()});else{let e=document.createElement("script");e.src=t,e.onerror=()=>{r.reject()},document.head.appendChild(e)}}else throw Error(`can't infer type of chunk from URL ${t}`)}return r.loadingStarted=!0,r.promise})(e,t),async loadWebAssembly(e,t,r,n,o){let i=fetch(q(r)),{instance:l}=await WebAssembly.instantiateStreaming(i,o);return l.exports},async loadWebAssemblyModule(e,t,r,n){let o=fetch(q(r));return await WebAssembly.compileStreaming(o)}};let H=globalThis.TURBOPACK;globalThis.TURBOPACK={push:F},H.forEach(F)})(); \ No newline at end of file diff --git a/build/_next/static/kmSVPuUqY3Rhw5xy4D2nn/_buildManifest.js b/.next/static/czNRbRzpspOb1FVBoan7W/_buildManifest.js similarity index 100% rename from build/_next/static/kmSVPuUqY3Rhw5xy4D2nn/_buildManifest.js rename to .next/static/czNRbRzpspOb1FVBoan7W/_buildManifest.js diff --git a/build/_next/static/kmSVPuUqY3Rhw5xy4D2nn/_clientMiddlewareManifest.js b/.next/static/czNRbRzpspOb1FVBoan7W/_clientMiddlewareManifest.js similarity index 100% rename from build/_next/static/kmSVPuUqY3Rhw5xy4D2nn/_clientMiddlewareManifest.js rename to .next/static/czNRbRzpspOb1FVBoan7W/_clientMiddlewareManifest.js diff --git a/build/_next/static/kmSVPuUqY3Rhw5xy4D2nn/_ssgManifest.js b/.next/static/czNRbRzpspOb1FVBoan7W/_ssgManifest.js similarity index 100% rename from build/_next/static/kmSVPuUqY3Rhw5xy4D2nn/_ssgManifest.js rename to .next/static/czNRbRzpspOb1FVBoan7W/_ssgManifest.js diff --git a/build/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2 b/.next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2 similarity index 100% rename from build/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2 rename to .next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2 diff --git a/build/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2 b/.next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2 similarity index 100% rename from build/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2 rename to .next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2 diff --git a/build/_next/static/media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2 b/.next/static/media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2 similarity index 100% rename from build/_next/static/media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2 rename to .next/static/media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2 diff --git a/build/_next/static/media/28868e710e86be81-s.0rx81dn62y51_.woff2 b/.next/static/media/28868e710e86be81-s.0rx81dn62y51_.woff2 similarity index 100% rename from build/_next/static/media/28868e710e86be81-s.0rx81dn62y51_.woff2 rename to .next/static/media/28868e710e86be81-s.0rx81dn62y51_.woff2 diff --git a/build/_next/static/media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2 b/.next/static/media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2 similarity index 100% rename from build/_next/static/media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2 rename to .next/static/media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2 diff --git a/build/_next/static/media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2 b/.next/static/media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2 similarity index 100% rename from build/_next/static/media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2 rename to .next/static/media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2 diff --git a/build/_next/static/media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2 b/.next/static/media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2 similarity index 100% rename from build/_next/static/media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2 rename to .next/static/media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2 diff --git a/build/_next/static/media/5476f68d60460930-s.0wxq9webf.ew4.woff2 b/.next/static/media/5476f68d60460930-s.0wxq9webf.ew4.woff2 similarity index 100% rename from build/_next/static/media/5476f68d60460930-s.0wxq9webf.ew4.woff2 rename to .next/static/media/5476f68d60460930-s.0wxq9webf.ew4.woff2 diff --git a/build/_next/static/media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2 b/.next/static/media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2 similarity index 100% rename from build/_next/static/media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2 rename to .next/static/media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2 diff --git a/build/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2 b/.next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2 similarity index 100% rename from build/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2 rename to .next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2 diff --git a/build/_next/static/media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2 b/.next/static/media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2 similarity index 100% rename from build/_next/static/media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2 rename to .next/static/media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2 diff --git a/build/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2 b/.next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2 similarity index 100% rename from build/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2 rename to .next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2 diff --git a/build/_next/static/media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2 b/.next/static/media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2 similarity index 100% rename from build/_next/static/media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2 rename to .next/static/media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2 diff --git a/build/_next/static/media/a342834df7752944-s.10ev4cu2inrn-.woff2 b/.next/static/media/a342834df7752944-s.10ev4cu2inrn-.woff2 similarity index 100% rename from build/_next/static/media/a342834df7752944-s.10ev4cu2inrn-.woff2 rename to .next/static/media/a342834df7752944-s.10ev4cu2inrn-.woff2 diff --git a/build/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2 b/.next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2 similarity index 100% rename from build/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2 rename to .next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2 diff --git a/build/_next/static/media/ab624315db63c58d-s.1487dfs7-.~d~.woff2 b/.next/static/media/ab624315db63c58d-s.1487dfs7-.~d~.woff2 similarity index 100% rename from build/_next/static/media/ab624315db63c58d-s.1487dfs7-.~d~.woff2 rename to .next/static/media/ab624315db63c58d-s.1487dfs7-.~d~.woff2 diff --git a/build/_next/static/media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2 b/.next/static/media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2 similarity index 100% rename from build/_next/static/media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2 rename to .next/static/media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2 diff --git a/build/_next/static/media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2 b/.next/static/media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2 similarity index 100% rename from build/_next/static/media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2 rename to .next/static/media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2 diff --git a/build/_next/static/media/c3cb240f9c892514-s.163v2i5cux7-c.woff2 b/.next/static/media/c3cb240f9c892514-s.163v2i5cux7-c.woff2 similarity index 100% rename from build/_next/static/media/c3cb240f9c892514-s.163v2i5cux7-c.woff2 rename to .next/static/media/c3cb240f9c892514-s.163v2i5cux7-c.woff2 diff --git a/build/_next/static/media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2 b/.next/static/media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2 similarity index 100% rename from build/_next/static/media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2 rename to .next/static/media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2 diff --git a/build/_next/static/media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2 b/.next/static/media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2 similarity index 100% rename from build/_next/static/media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2 rename to .next/static/media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2 diff --git a/build/favicon.ico b/.next/static/media/favicon.14w3bhkxgz946.ico similarity index 100% rename from build/favicon.ico rename to .next/static/media/favicon.14w3bhkxgz946.ico diff --git a/build/icon.png b/.next/static/media/icon.14w3bhkxgz946.png similarity index 100% rename from build/icon.png rename to .next/static/media/icon.14w3bhkxgz946.png diff --git a/build/_next/static/media/layers-2x.0olxl6i2vnf_c.png b/.next/static/media/layers-2x.0olxl6i2vnf_c.png similarity index 100% rename from build/_next/static/media/layers-2x.0olxl6i2vnf_c.png rename to .next/static/media/layers-2x.0olxl6i2vnf_c.png diff --git a/build/_next/static/media/layers.1220hx8ja1.sy.png b/.next/static/media/layers.1220hx8ja1.sy.png similarity index 100% rename from build/_next/static/media/layers.1220hx8ja1.sy.png rename to .next/static/media/layers.1220hx8ja1.sy.png diff --git a/build/_next/static/media/marker-icon.0i9~u_difxrfa.png b/.next/static/media/marker-icon.0i9~u_difxrfa.png similarity index 100% rename from build/_next/static/media/marker-icon.0i9~u_difxrfa.png rename to .next/static/media/marker-icon.0i9~u_difxrfa.png diff --git a/.next/trace b/.next/trace new file mode 100644 index 0000000..09192b2 --- /dev/null +++ b/.next/trace @@ -0,0 +1 @@ +[{"name":"generate-buildid","duration":172,"timestamp":24705305206,"id":4,"parentId":1,"tags":{},"startTime":1783944351809,"traceId":"aada408761ac2682"},{"name":"load-custom-routes","duration":1575,"timestamp":24705305465,"id":5,"parentId":1,"tags":{},"startTime":1783944351810,"traceId":"aada408761ac2682"},{"name":"create-dist-dir","duration":381,"timestamp":24705307069,"id":6,"parentId":1,"tags":{},"startTime":1783944351811,"traceId":"aada408761ac2682"},{"name":"clean","duration":319,"timestamp":24705308153,"id":7,"parentId":1,"tags":{},"startTime":1783944351812,"traceId":"aada408761ac2682"},{"name":"discover-routes","duration":7349,"timestamp":24705320616,"id":8,"parentId":1,"tags":{},"startTime":1783944351825,"traceId":"aada408761ac2682"},{"name":"create-root-mapping","duration":47,"timestamp":24705328003,"id":9,"parentId":1,"tags":{},"startTime":1783944351832,"traceId":"aada408761ac2682"},{"name":"generate-route-types","duration":70733,"timestamp":24705329400,"id":10,"parentId":1,"tags":{},"startTime":1783944351834,"traceId":"aada408761ac2682"},{"name":"public-dir-conflict-check","duration":62,"timestamp":24705400317,"id":11,"parentId":1,"tags":{},"startTime":1783944351905,"traceId":"aada408761ac2682"},{"name":"generate-routes-manifest","duration":1767,"timestamp":24705400450,"id":12,"parentId":1,"tags":{},"startTime":1783944351905,"traceId":"aada408761ac2682"},{"name":"run-turbopack","duration":5787968,"timestamp":24705405682,"id":14,"parentId":1,"tags":{},"startTime":1783944351910,"traceId":"aada408761ac2682"},{"name":"turbopack-build-events","duration":56,"timestamp":24705601605,"id":15,"parentId":1,"tags":{},"startTime":1783944352106,"traceId":"aada408761ac2682"},{"name":"run-typescript","duration":8586105,"timestamp":24711245105,"id":16,"parentId":1,"tags":{},"startTime":1783944357750,"traceId":"aada408761ac2682"},{"name":"generate-required-server-files","duration":2521,"timestamp":24719835203,"id":18,"parentId":1,"tags":{},"startTime":1783944366341,"traceId":"aada408761ac2682"},{"name":"check-static-error-page","duration":9384,"timestamp":24719856343,"id":20,"parentId":19,"tags":{},"startTime":1783944366362,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":392774,"timestamp":24719866167,"id":42,"parentId":22,"tags":{},"startTime":1783944366372,"traceId":"aada408761ac2682"},{"name":"check-page","duration":400590,"timestamp":24719858509,"id":22,"parentId":19,"tags":{"page":"/_global-error"},"startTime":1783944366364,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":587527,"timestamp":24719866255,"id":44,"parentId":34,"tags":{},"startTime":1783944366372,"traceId":"aada408761ac2682"},{"name":"check-page","duration":590004,"timestamp":24719863859,"id":34,"parentId":19,"tags":{"page":"/icon.png"},"startTime":1783944366369,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":595181,"timestamp":24719866290,"id":45,"parentId":38,"tags":{},"startTime":1783944366372,"traceId":"aada408761ac2682"},{"name":"check-page","duration":596071,"timestamp":24719865458,"id":38,"parentId":19,"tags":{"page":"/sitemap.xml"},"startTime":1783944366371,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":582311,"timestamp":24719879348,"id":47,"parentId":27,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":600206,"timestamp":24719861471,"id":27,"parentId":19,"tags":{"page":"/contact"},"startTime":1783944366367,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":582367,"timestamp":24719879409,"id":48,"parentId":23,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":602966,"timestamp":24719858828,"id":23,"parentId":19,"tags":{"page":"/about-us"},"startTime":1783944366364,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":600457,"timestamp":24719866219,"id":43,"parentId":32,"tags":{},"startTime":1783944366372,"traceId":"aada408761ac2682"},{"name":"check-page","duration":603837,"timestamp":24719862951,"id":32,"parentId":19,"tags":{"page":"/favicon.ico"},"startTime":1783944366368,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":604645,"timestamp":24719865963,"id":41,"parentId":21,"tags":{},"startTime":1783944366371,"traceId":"aada408761ac2682"},{"name":"check-page","duration":613079,"timestamp":24719857589,"id":21,"parentId":19,"tags":{"page":"/_not-found"},"startTime":1783944366363,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":593098,"timestamp":24719879052,"id":46,"parentId":24,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":611166,"timestamp":24719861028,"id":24,"parentId":19,"tags":{"page":"/air-freight"},"startTime":1783944366366,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":597143,"timestamp":24719879627,"id":51,"parentId":28,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":615277,"timestamp":24719861549,"id":28,"parentId":19,"tags":{"page":"/cookie-policy"},"startTime":1783944366367,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":603305,"timestamp":24719879645,"id":52,"parentId":29,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":621332,"timestamp":24719861680,"id":29,"parentId":19,"tags":{"page":"/doormile-wings"},"startTime":1783944366367,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":605197,"timestamp":24719879666,"id":55,"parentId":33,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":621592,"timestamp":24719863314,"id":33,"parentId":19,"tags":{"page":"/how-it-works"},"startTime":1783944366369,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":611302,"timestamp":24719879670,"id":56,"parentId":35,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":626604,"timestamp":24719864419,"id":35,"parentId":19,"tags":{"page":"/miletruth"},"startTime":1783944366370,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":615214,"timestamp":24719879661,"id":54,"parentId":30,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":632846,"timestamp":24719862132,"id":30,"parentId":19,"tags":{"page":"/empowerment"},"startTime":1783944366368,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":619505,"timestamp":24719879673,"id":57,"parentId":36,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":634049,"timestamp":24719865176,"id":36,"parentId":19,"tags":{"page":"/"},"startTime":1783944366371,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":621423,"timestamp":24719879677,"id":58,"parentId":37,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":635868,"timestamp":24719865322,"id":37,"parentId":19,"tags":{"page":"/privacy-policy"},"startTime":1783944366371,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":624904,"timestamp":24719879680,"id":59,"parentId":39,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":639152,"timestamp":24719865519,"id":39,"parentId":19,"tags":{"page":"/solutions"},"startTime":1783944366371,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":627544,"timestamp":24719879683,"id":60,"parentId":40,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":641675,"timestamp":24719865619,"id":40,"parentId":19,"tags":{"page":"/terms-of-service"},"startTime":1783944366371,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":655563,"timestamp":24719879434,"id":49,"parentId":26,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":673672,"timestamp":24719861371,"id":26,"parentId":19,"tags":{"page":"/blog"},"startTime":1783944366367,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":655931,"timestamp":24719879651,"id":53,"parentId":31,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":673110,"timestamp":24719862506,"id":31,"parentId":19,"tags":{"page":"/express"},"startTime":1783944366368,"traceId":"aada408761ac2682"},{"name":"is-page-static","duration":672727,"timestamp":24719879593,"id":50,"parentId":25,"tags":{},"startTime":1783944366385,"traceId":"aada408761ac2682"},{"name":"check-page","duration":691237,"timestamp":24719861174,"id":25,"parentId":19,"tags":{"page":"/blog/[slug]"},"startTime":1783944366367,"traceId":"aada408761ac2682"},{"name":"static-check","duration":696841,"timestamp":24719855602,"id":19,"parentId":1,"tags":{},"startTime":1783944366361,"traceId":"aada408761ac2682"},{"name":"write-routes-manifest","duration":1039,"timestamp":24720553883,"id":62,"parentId":1,"tags":{},"startTime":1783944367059,"traceId":"aada408761ac2682"},{"name":"load-dotenv","duration":32,"timestamp":24720569156,"id":65,"parentId":64,"tags":{},"startTime":1783944367075,"traceId":"aada408761ac2682"},{"name":"run-export-path-map","duration":586,"timestamp":24720572719,"id":66,"parentId":64,"tags":{},"startTime":1783944367078,"traceId":"aada408761ac2682"},{"name":"next-export","duration":582970,"timestamp":24720567901,"id":64,"parentId":1,"tags":{},"startTime":1783944367073,"traceId":"aada408761ac2682"},{"name":"move-exported-app-not-found-","duration":1351,"timestamp":24721154745,"id":67,"parentId":63,"tags":{},"startTime":1783944367660,"traceId":"aada408761ac2682"},{"name":"move-exported-app-global-error-","duration":598,"timestamp":24721156165,"id":68,"parentId":63,"tags":{},"startTime":1783944367662,"traceId":"aada408761ac2682"},{"name":"static-generation","duration":598137,"timestamp":24720560196,"id":63,"parentId":1,"tags":{},"startTime":1783944367066,"traceId":"aada408761ac2682"},{"name":"write-routes-manifest","duration":591,"timestamp":24721158459,"id":69,"parentId":1,"tags":{},"startTime":1783944367664,"traceId":"aada408761ac2682"},{"name":"print-tree-view","duration":2346,"timestamp":24721170925,"id":70,"parentId":1,"tags":{},"startTime":1783944367676,"traceId":"aada408761ac2682"},{"name":"write-route-bundle-stats","duration":17202,"timestamp":24721173292,"id":71,"parentId":1,"tags":{},"startTime":1783944367679,"traceId":"aada408761ac2682"},{"name":"telemetry-flush","duration":268734,"timestamp":24721190528,"id":72,"parentId":1,"tags":{},"startTime":1783944367696,"traceId":"aada408761ac2682"},{"name":"next-build","duration":16251553,"timestamp":24705207730,"id":1,"tags":{"buildMode":"default","version":"16.2.6","bundler":"turbopack","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1783944351712,"traceId":"aada408761ac2682"}] diff --git a/.next/trace-build b/.next/trace-build new file mode 100644 index 0000000..0a028e6 --- /dev/null +++ b/.next/trace-build @@ -0,0 +1 @@ +[{"name":"run-turbopack","duration":5787968,"timestamp":24705405682,"id":14,"parentId":1,"tags":{},"startTime":1783944351910,"traceId":"aada408761ac2682"},{"name":"turbopack-build-events","duration":56,"timestamp":24705601605,"id":15,"parentId":1,"tags":{},"startTime":1783944352106,"traceId":"aada408761ac2682"},{"name":"run-typescript","duration":8586105,"timestamp":24711245105,"id":16,"parentId":1,"tags":{},"startTime":1783944357750,"traceId":"aada408761ac2682"},{"name":"static-check","duration":696841,"timestamp":24719855602,"id":19,"parentId":1,"tags":{},"startTime":1783944366361,"traceId":"aada408761ac2682"},{"name":"static-generation","duration":598137,"timestamp":24720560196,"id":63,"parentId":1,"tags":{},"startTime":1783944367066,"traceId":"aada408761ac2682"},{"name":"telemetry-flush","duration":268734,"timestamp":24721190528,"id":72,"parentId":1,"tags":{},"startTime":1783944367696,"traceId":"aada408761ac2682"},{"name":"next-build","duration":16251553,"timestamp":24705207730,"id":1,"tags":{"buildMode":"default","version":"16.2.6","bundler":"turbopack","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1783944351712,"traceId":"aada408761ac2682"}] diff --git a/.next/turbopack b/.next/turbopack new file mode 100644 index 0000000..e69de29 diff --git a/.next/types/cache-life.d.ts b/.next/types/cache-life.d.ts new file mode 100644 index 0000000..a8c6997 --- /dev/null +++ b/.next/types/cache-life.d.ts @@ -0,0 +1,145 @@ +// Type definitions for Next.js cacheLife configs + +declare module 'next/cache' { + export { unstable_cache } from 'next/dist/server/web/spec-extension/unstable-cache' + export { + updateTag, + revalidateTag, + revalidatePath, + refresh, + } from 'next/dist/server/web/spec-extension/revalidate' + export { unstable_noStore } from 'next/dist/server/web/spec-extension/unstable-no-store' + + + /** + * Cache this `"use cache"` for a timespan defined by the `"default"` profile. + * ``` + * stale: 300 seconds (5 minutes) + * revalidate: 900 seconds (15 minutes) + * expire: never + * ``` + * + * This cache may be stale on clients for 5 minutes before checking with the server. + * If the server receives a new request after 15 minutes, start revalidating new values in the background. + * It lives for the maximum age of the server cache. If this entry has no traffic for a while, it may serve an old value the next request. + */ + export function cacheLife(profile: "default"): void + + /** + * Cache this `"use cache"` for a timespan defined by the `"seconds"` profile. + * ``` + * stale: 30 seconds + * revalidate: 1 seconds + * expire: 60 seconds (1 minute) + * ``` + * + * This cache may be stale on clients for 30 seconds before checking with the server. + * If the server receives a new request after 1 seconds, start revalidating new values in the background. + * If this entry has no traffic for 1 minute it will expire. The next request will recompute it. + */ + export function cacheLife(profile: "seconds"): void + + /** + * Cache this `"use cache"` for a timespan defined by the `"minutes"` profile. + * ``` + * stale: 300 seconds (5 minutes) + * revalidate: 60 seconds (1 minute) + * expire: 3600 seconds (1 hour) + * ``` + * + * This cache may be stale on clients for 5 minutes before checking with the server. + * If the server receives a new request after 1 minute, start revalidating new values in the background. + * If this entry has no traffic for 1 hour it will expire. The next request will recompute it. + */ + export function cacheLife(profile: "minutes"): void + + /** + * Cache this `"use cache"` for a timespan defined by the `"hours"` profile. + * ``` + * stale: 300 seconds (5 minutes) + * revalidate: 3600 seconds (1 hour) + * expire: 86400 seconds (1 day) + * ``` + * + * This cache may be stale on clients for 5 minutes before checking with the server. + * If the server receives a new request after 1 hour, start revalidating new values in the background. + * If this entry has no traffic for 1 day it will expire. The next request will recompute it. + */ + export function cacheLife(profile: "hours"): void + + /** + * Cache this `"use cache"` for a timespan defined by the `"days"` profile. + * ``` + * stale: 300 seconds (5 minutes) + * revalidate: 86400 seconds (1 day) + * expire: 604800 seconds (1 week) + * ``` + * + * This cache may be stale on clients for 5 minutes before checking with the server. + * If the server receives a new request after 1 day, start revalidating new values in the background. + * If this entry has no traffic for 1 week it will expire. The next request will recompute it. + */ + export function cacheLife(profile: "days"): void + + /** + * Cache this `"use cache"` for a timespan defined by the `"weeks"` profile. + * ``` + * stale: 300 seconds (5 minutes) + * revalidate: 604800 seconds (1 week) + * expire: 2592000 seconds (1 month) + * ``` + * + * This cache may be stale on clients for 5 minutes before checking with the server. + * If the server receives a new request after 1 week, start revalidating new values in the background. + * If this entry has no traffic for 1 month it will expire. The next request will recompute it. + */ + export function cacheLife(profile: "weeks"): void + + /** + * Cache this `"use cache"` for a timespan defined by the `"max"` profile. + * ``` + * stale: 300 seconds (5 minutes) + * revalidate: 2592000 seconds (1 month) + * expire: 31536000 seconds (365 days) + * ``` + * + * This cache may be stale on clients for 5 minutes before checking with the server. + * If the server receives a new request after 1 month, start revalidating new values in the background. + * If this entry has no traffic for 365 days it will expire. The next request will recompute it. + */ + export function cacheLife(profile: "max"): void + + /** + * Cache this `"use cache"` using a custom timespan. + * ``` + * stale: ... // seconds + * revalidate: ... // seconds + * expire: ... // seconds + * ``` + * + * This is similar to Cache-Control: max-age=`stale`,s-max-age=`revalidate`,stale-while-revalidate=`expire-revalidate` + * + * If a value is left out, the lowest of other cacheLife() calls or the default, is used instead. + */ + export function cacheLife(profile: { + /** + * This cache may be stale on clients for ... seconds before checking with the server. + */ + stale?: number, + /** + * If the server receives a new request after ... seconds, start revalidating new values in the background. + */ + revalidate?: number, + /** + * If this entry has no traffic for ... seconds it will expire. The next request will recompute it. + */ + expire?: number + }): void + + + import { cacheTag } from 'next/dist/server/use-cache/cache-tag' + export { cacheTag } + + export const unstable_cacheTag: typeof cacheTag + export const unstable_cacheLife: typeof cacheLife +} diff --git a/.next/types/routes.d.ts b/.next/types/routes.d.ts new file mode 100644 index 0000000..2d48847 --- /dev/null +++ b/.next/types/routes.d.ts @@ -0,0 +1,71 @@ +// This file is generated automatically by Next.js +// Do not edit this file manually + +type AppRoutes = "/" | "/about-us" | "/air-freight" | "/blog" | "/blog/[slug]" | "/contact" | "/cookie-policy" | "/doormile-wings" | "/empowerment" | "/express" | "/how-it-works" | "/miletruth" | "/privacy-policy" | "/solutions" | "/terms-of-service" +type PageRoutes = never +type LayoutRoutes = "/" +type RedirectRoutes = "/air-freight" +type RewriteRoutes = never +type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes + + +interface ParamMap { + "/": {} + "/about-us": {} + "/air-freight": {} + "/blog": {} + "/blog/[slug]": { "slug": string; } + "/contact": {} + "/cookie-policy": {} + "/doormile-wings": {} + "/empowerment": {} + "/express": {} + "/how-it-works": {} + "/miletruth": {} + "/privacy-policy": {} + "/solutions": {} + "/terms-of-service": {} +} + + +export type ParamsOf = ParamMap[Route] + +interface LayoutSlotMap { + "/": never +} + + +export type { AppRoutes, PageRoutes, LayoutRoutes, RedirectRoutes, RewriteRoutes, ParamMap } + +declare global { + /** + * Props for Next.js App Router page components + * @example + * ```tsx + * export default function Page(props: PageProps<'/blog/[slug]'>) { + * const { slug } = await props.params + * return
Blog post: {slug}
+ * } + * ``` + */ + interface PageProps { + params: Promise + searchParams: Promise> + } + + /** + * Props for Next.js App Router layout components + * @example + * ```tsx + * export default function Layout(props: LayoutProps<'/dashboard'>) { + * return
{props.children}
+ * } + * ``` + */ + type LayoutProps = { + params: Promise + children: React.ReactNode + } & { + [K in LayoutSlotMap[LayoutRoute]]: React.ReactNode + } +} diff --git a/.next/types/validator.ts b/.next/types/validator.ts new file mode 100644 index 0000000..9d53830 --- /dev/null +++ b/.next/types/validator.ts @@ -0,0 +1,187 @@ +// This file is generated automatically by Next.js +// Do not edit this file manually +// This file validates that all pages and layouts export the correct types + +import type { AppRoutes, LayoutRoutes, ParamMap } from "./routes.js" +import type { ResolvingMetadata, ResolvingViewport } from "next/types.js" + +type AppPageConfig = { + default: React.ComponentType<{ params: Promise } & any> | ((props: { params: Promise } & any) => React.ReactNode | Promise | never | void | Promise) + generateStaticParams?: (props: { params: ParamMap[Route] }) => Promise | any[] + generateMetadata?: ( + props: { params: Promise } & any, + parent: ResolvingMetadata + ) => Promise | any + generateViewport?: ( + props: { params: Promise } & any, + parent: ResolvingViewport + ) => Promise | any + metadata?: any + viewport?: any +} + +type LayoutConfig = { + default: React.ComponentType> | ((props: LayoutProps) => React.ReactNode | Promise | never | void | Promise) + generateStaticParams?: (props: { params: ParamMap[Route] }) => Promise | any[] + generateMetadata?: ( + props: { params: Promise } & any, + parent: ResolvingMetadata + ) => Promise | any + generateViewport?: ( + props: { params: Promise } & any, + parent: ResolvingViewport + ) => Promise | any + metadata?: any + viewport?: any +} + + +// Validate ../../src/app/about-us/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/about-us/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/air-freight/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/air-freight/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/blog/[slug]/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/blog/[slug]/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/blog/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/blog/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/contact/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/contact/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/cookie-policy/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/cookie-policy/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/doormile-wings/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/doormile-wings/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/empowerment/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/empowerment/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/express/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/express/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/how-it-works/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/how-it-works/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/miletruth/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/miletruth/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/privacy-policy/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/privacy-policy/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/solutions/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/solutions/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + +// Validate ../../src/app/terms-of-service/page.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/terms-of-service/page.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} + + + + + + + +// Validate ../../src/app/layout.tsx +{ + type __IsExpected> = Specific + const handler = {} as typeof import("../../src/app/layout.js") + type __Check = __IsExpected + // @ts-ignore + type __Unused = __Check +} diff --git a/build/.DS_Store b/build/.DS_Store deleted file mode 100644 index 782550d..0000000 Binary files a/build/.DS_Store and /dev/null differ diff --git a/build/404.html b/build/404.html deleted file mode 100644 index 0678dde..0000000 --- a/build/404.html +++ /dev/null @@ -1,680 +0,0 @@ -404: This page could not be found.Doormile — Delivering Trust. Beyond Boundaries

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

404

This page could not be found.

\ No newline at end of file diff --git a/build/__next._index.txt b/build/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/_next/static/chunks/0dt55bg8oa_k~.js b/build/_next/static/chunks/0dt55bg8oa_k~.js deleted file mode 100644 index fc2ce2a..0000000 --- a/build/_next/static/chunks/0dt55bg8oa_k~.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,12305,e=>{e.v({divider:"TheDoormileWay-module__xq3n3a__divider",eyebrow:"TheDoormileWay-module__xq3n3a__eyebrow",header:"TheDoormileWay-module__xq3n3a__header",heading:"TheDoormileWay-module__xq3n3a__heading",headingWrap:"TheDoormileWay-module__xq3n3a__headingWrap",kicker:"TheDoormileWay-module__xq3n3a__kicker"})},24911,e=>{"use strict";var t=e.i(43476),n=e.i(2018),a=e.i(12305);e.s(["default",0,function(){return(0,t.jsxs)("div",{className:"elementor-61",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-88745f4 e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"88745f4","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)("div",{className:"elementor-element elementor-element-343b363 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"343b363","data-element_type":"container","data-e-type":"container",children:[(0,t.jsxs)("div",{className:a.default.header,children:[(0,t.jsxs)(n.ScrollReveal,{delay:.05,duration:.7,yOffset:20,className:a.default.kicker,children:[(0,t.jsx)("p",{className:a.default.eyebrow,children:"/ Doormile Approach /"}),(0,t.jsx)("hr",{className:a.default.divider})]}),(0,t.jsx)(n.ScrollReveal,{delay:.15,duration:.85,yOffset:30,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-1cc335a elementor-widget elementor-widget-logico_heading","data-id":"1cc335a","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",style:{WebkitTextStroke:"4px #c01227",color:"#fff",fontWeight:800},children:"The Doormile Way"})})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-4c3e632 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"4c3e632","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)(n.ScrollReveal,{delay:.2,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-5ba6bbf e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"5ba6bbf","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-9363070 elementor-widget elementor-widget-logico_heading","data-id":"9363070","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("h3",{className:"logico-title",children:" Smarter, Faster, Connected Logistics"})})})})}),(0,t.jsx)(n.ScrollReveal,{delay:.3,duration:.8,yOffset:25,children:(0,t.jsx)("div",{className:"elementor-element elementor-element-e7609a5 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"e7609a5","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"elementor-element elementor-element-c134b96 elementor-widget elementor-widget-text-editor","data-id":"c134b96","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsxs)("div",{className:"elementor-widget-container",children:[(0,t.jsx)("p",{children:(0,t.jsxs)("strong",{children:["We connect first mile and last mile into one seamless system, reducing delays and improving efficiency. With real-time tracking and digital workflows,",(0,t.jsx)("br",{})," every delivery is faster, reliable, and fully transparent."]})}),(0,t.jsx)("p",{children:"Seamless logistics powered by real-time tracking, digital processes, and reliable delivery execution."})]})})})})]})]})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-5041fcc e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-parent","data-id":"5041fcc","data-element_type":"container","data-e-type":"container",children:(0,t.jsx)("div",{className:"e-con-inner",children:(0,t.jsxs)(n.StaggerChildren,{stagger:.12,duration:.7,yOffset:35,className:"elementor-element elementor-element-2d7c3ee e-con-full e-grid cut-corner-no sticky-container-off e-con e-child",children:[(0,t.jsxs)("div",{className:"elementor-element elementor-element-d11b050 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"d11b050","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-3a6f50f elementor-view-default elementor-widget elementor-widget-icon","data-id":"3a6f50f","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-delivery"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-1025248 elementor-widget elementor-widget-logico_heading","data-id":"1025248","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"End-to-End Protection"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c7c19bd elementor-widget elementor-widget-text-editor","data-id":"c7c19bd","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"End-to-end visibility ensures every shipment stays secure and on schedule."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-2c82e54 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"2c82e54","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-f51735e elementor-view-default elementor-widget elementor-widget-icon","data-id":"f51735e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-container"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-c682633 elementor-widget elementor-widget-logico_heading","data-id":"c682633","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Proactive delay prevention"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74d14e3 elementor-widget elementor-widget-text-editor","data-id":"74d14e3","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"Real-time monitoring helps prevent delays before they impact deliveries."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-08b9b20 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"08b9b20","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-612c459 elementor-view-default elementor-widget elementor-widget-icon","data-id":"612c459","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-directions"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-aa49275 elementor-widget elementor-widget-logico_heading","data-id":"aa49275","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Single owner, single promise"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-74cfdf7 elementor-widget elementor-widget-text-editor","data-id":"74cfdf7","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"One unified system manages the entire delivery process seamlessly."})})})]}),(0,t.jsxs)("div",{className:"elementor-element elementor-element-04989ee e-con-full e-flex cut-corner-no sticky-container-off e-con e-child","data-id":"04989ee","data-element_type":"container","data-e-type":"container",children:[(0,t.jsx)("div",{className:"elementor-element elementor-element-11a657e elementor-view-default elementor-widget elementor-widget-icon","data-id":"11a657e","data-element_type":"widget","data-e-type":"widget","data-widget_type":"icon.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"elementor-icon-wrapper",children:(0,t.jsx)("div",{className:"elementor-icon",children:(0,t.jsx)("i",{"aria-hidden":"true",className:"fontello icon-light-storage"})})})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-b317d31 elementor-widget elementor-widget-logico_heading","data-id":"b317d31","data-element_type":"widget","data-e-type":"widget","data-widget_type":"logico_heading.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("div",{className:"logico-title",children:"Dynamic AI-driven adjustments"})})}),(0,t.jsx)("div",{className:"elementor-element elementor-element-8fe5662 elementor-widget elementor-widget-text-editor","data-id":"8fe5662","data-element_type":"widget","data-e-type":"widget","data-widget_type":"text-editor.default",children:(0,t.jsx)("div",{className:"elementor-widget-container",children:(0,t.jsx)("p",{children:"AI-powered routing adapts instantly to improve speed and efficiency."})})})]})]})})})]})}])}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0w7unurpitxcg.js b/build/_next/static/chunks/0w7unurpitxcg.js deleted file mode 100644 index 684e7ca..0000000 --- a/build/_next/static/chunks/0w7unurpitxcg.js +++ /dev/null @@ -1 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,64083,e=>{"use strict";var t=e.i(43476),r=e.i(71645),n=e.i(75056),i=e.i(25234),o=e.i(1950),o=o,s=e.i(79877),a=e.i(33623);let l="#020617",c="#00E5FF",u="#22C55E",h="#EF4444",p=(e,t,r)=>e+(t-e)*r;function m(e,t,r){let n,i=(n=(r-e)/(t-e||1))<0?0:n>1?1:n;return i*i*(3-2*i)}function f(e,t,r,n){return p(e,t,1-Math.exp(-r*n))}function d(e){let t=43758.5453*Math.sin(127.1*e+311.7);return t-Math.floor(t)}var g=e.i(90072);let x=new g.Color(c),j=new g.Color(h),M=new g.Color(u),y=Array.from({length:5},(e,t)=>{let r=t/5*Math.PI*2+.3,n=7+3*d(7*t+1),i=Math.cos(r)*n,o=Math.sin(r)*n;return new g.Vector3(i,.1,o)}),v=r.default.memo(function({progress:e}){let n=(0,r.useRef)(null),o=(0,r.useRef)([]),s=(0,r.useRef)([]),a=(0,r.useRef)([]),l=(0,r.useRef)(0),u=(0,r.useMemo)(()=>y.map(e=>{let t=[new g.Vector3(0,.15,0),new g.Vector3(.5*e.x,.6,.5*e.z),new g.Vector3(e.x,.15,e.z)];return new g.CatmullRomCurve3(t).getPoints(24)}),[]);return(0,i.useFrame)((t,r)=>{let i=e.current??0;l.current=f(l.current,i,3,r);let c=l.current,u=t.clock.elapsedTime;n.current&&(n.current.position.y=.04*Math.sin(1.2*u)),o.current.forEach((e,t)=>{e&&(e.rotation.y=u*(.8+.2*t))}),s.current.forEach((e,t)=>{if(e){let r=m(.45,.8,c);e.color.copy(j).lerp(t%2==0?x:M,r),e.opacity=p(.12,.7,r)*(.8+.2*Math.sin(4*u-.5*t))}}),a.current.forEach((e,t)=>{if(e){let r=m(.5,.82,c);e.color.copy(j).lerp(t%2==0?x:M,r),e.opacity=p(.06,.22,r)*(.85+.15*Math.sin(3*u-t))}})}),(0,t.jsxs)("group",{children:[(0,t.jsx)("gridHelper",{args:[60,48,c,c],position:[0,-.01,0],children:(0,t.jsx)("lineBasicMaterial",{attach:"material",color:c,transparent:!0,opacity:.05})}),u.map((e,r)=>(0,t.jsxs)("line",{children:[(0,t.jsx)("bufferGeometry",{children:(0,t.jsx)("float32BufferAttribute",{attach:"attributes-position",args:[new Float32Array(e.flatMap(e=>[e.x,e.y,e.z])),3]})}),(0,t.jsx)("lineBasicMaterial",{ref:e=>{s.current[r]=e},transparent:!0,opacity:.15,depthWrite:!1})]},`corr${r}`)),(0,t.jsxs)("group",{ref:n,position:[0,0,0],children:[(0,t.jsxs)("mesh",{position:[0,.35,0],children:[(0,t.jsx)("boxGeometry",{args:[2.2,.7,1.8]}),(0,t.jsx)("meshBasicMaterial",{color:"#0B1220"})]}),(0,t.jsxs)("mesh",{position:[0,.35,0],children:[(0,t.jsx)("boxGeometry",{args:[2.2,.7,1.8]}),(0,t.jsx)("meshBasicMaterial",{color:c,wireframe:!0,transparent:!0,opacity:.65})]}),[-.6,0,.6].map((e,r)=>(0,t.jsxs)("mesh",{position:[e,.18,.91],children:[(0,t.jsx)("boxGeometry",{args:[.3,.35,.06]}),(0,t.jsx)("meshBasicMaterial",{color:c,transparent:!0,opacity:.8})]},r)),(0,t.jsxs)("mesh",{position:[0,.85,0],children:[(0,t.jsx)("boxGeometry",{args:[1.2,.3,1]}),(0,t.jsx)("meshBasicMaterial",{color:c,transparent:!0,opacity:.15})]}),(0,t.jsxs)("mesh",{position:[0,.85,0],children:[(0,t.jsx)("boxGeometry",{args:[1.2,.3,1]}),(0,t.jsx)("meshBasicMaterial",{color:c,wireframe:!0,transparent:!0,opacity:.9})]}),[-.4,.4].map((e,r)=>(0,t.jsxs)("mesh",{position:[e,.71,-.4],rotation:[.15,0,0],children:[(0,t.jsx)("boxGeometry",{args:[.5,.03,.6]}),(0,t.jsx)("meshBasicMaterial",{color:"#1e293b"})]},r)),(0,t.jsxs)("group",{position:[0,1,0],children:[(0,t.jsxs)("mesh",{position:[0,.4,0],children:[(0,t.jsx)("cylinderGeometry",{args:[.03,.03,.8,8]}),(0,t.jsx)("meshBasicMaterial",{color:c})]}),(0,t.jsxs)("mesh",{position:[0,.8,0],children:[(0,t.jsx)("sphereGeometry",{args:[.12,16,16]}),(0,t.jsx)("meshBasicMaterial",{color:"#ffffff"})]})]}),(0,t.jsxs)("mesh",{rotation:[-Math.PI/2,0,0],position:[0,.02,0],children:[(0,t.jsx)("ringGeometry",{args:[1.8,2.2,32]}),(0,t.jsx)("meshBasicMaterial",{color:c,transparent:!0,opacity:.3,blending:g.AdditiveBlending})]})]})]})}),b=new g.Vector3(0,.5,0);function A(e){return new g.CatmullRomCurve3(e,!1,"catmullrom",.5)}let B=null;function w(){if(B)return B;let e=[],t=[];for(let r=0;r<5;r++){let n=r/5*Math.PI*2+.3,i=7+3*d(7*r+1),o=Math.cos(n)*i,s=Math.sin(n)*i,a=2+Math.floor(2*d(7*r+2)),l=[b.clone()];l.push(new g.Vector3(.35*o,.45+1.4,.35*s));let c=[];for(let e=0;e{if(!a.current||!l.current)return;let t=s/4*e.clock.elapsedTime%1;a.current.scale.setScalar(.4+t*(o-.4)),l.current.opacity=.72*Math.sin((1-t)*Math.PI)}),(0,t.jsxs)("mesh",{ref:a,position:[e.x,.03,e.z],rotation:[-Math.PI/2,0,0],children:[(0,t.jsx)("ringGeometry",{args:[.22,.28,24]}),(0,t.jsx)("meshBasicMaterial",{ref:l,color:n,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]})}),S=new g.Vector3,P=new g.Vector3,G=r.default.memo(function({progress:e,chaoticCurves:n}){let o=4*n.length,s=(0,r.useRef)([]),a=(0,r.useRef)([]),l=(0,r.useMemo)(()=>Array.from({length:o},(e,t)=>d(13*t+3)),[o]),c=(0,r.useMemo)(()=>Array.from({length:2*n.length},(e,t)=>t%2/2),[n.length]);return(0,i.useFrame)(t=>{let r=1-m(.48,.6,e.current??0),i=r>.01;if(s.current.forEach(e=>{e&&(e.visible=i)}),a.current.forEach(e=>{e&&(e.visible=i)}),!i)return;let u=t.clock.elapsedTime;for(let e=0;e{let t=e.material;t&&"opacity"in t&&(t.opacity=.5*r*Math.sin(o*Math.PI))})}}),(0,t.jsxs)("group",{children:[Array.from({length:o}).map((e,r)=>(0,t.jsxs)("mesh",{ref:e=>{s.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.06,6,6]}),(0,t.jsx)("meshBasicMaterial",{color:h,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},`cp-${r}`)),Array.from({length:2*n.length}).map((e,r)=>(0,t.jsx)("group",{ref:e=>{a.current[r]=e},visible:!1,children:(0,t.jsxs)("mesh",{rotation:[Math.PI/2,0,0],children:[(0,t.jsx)("coneGeometry",{args:[.06,.16,4]}),(0,t.jsx)("meshBasicMaterial",{color:h,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]})},`cc-${r}`))]})}),E=new g.Vector3,T=new g.Vector3,k=r.default.memo(function({progress:e,optimizedCurves:n}){let o=6*n.length,s=(0,r.useRef)([]),a=(0,r.useRef)([]),l=(0,r.useRef)([]),h=(0,r.useMemo)(()=>Array.from({length:o},(e,t)=>d(17*t+4)),[o]),p=(0,r.useMemo)(()=>Array.from({length:3*n.length},(e,t)=>t%3/3),[n.length]);return(0,i.useFrame)(t=>{let r=m(.52,.7,e.current??0),i=r>.01;if(s.current.forEach(e=>{e&&(e.visible=i)}),a.current.forEach(e=>{e&&(e.visible=i)}),l.current.forEach(e=>{e&&(e.visible=i)}),!i)return;let c=t.clock.elapsedTime;for(let e=0;e{let t=e.material;t&&"opacity"in t&&(t.opacity=.85*r*Math.sin(o*Math.PI))})}for(let e=0;e{let n=Math.floor(r/6)%2==0?c:u;return(0,t.jsxs)("mesh",{ref:e=>{s.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.05,8,8]}),(0,t.jsx)("meshBasicMaterial",{color:n,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},`op-${r}`)}),Array.from({length:3*n.length}).map((e,r)=>{let n=Math.floor(r/3)%2==0?c:u;return(0,t.jsx)("group",{ref:e=>{a.current[r]=e},visible:!1,children:(0,t.jsxs)("mesh",{rotation:[Math.PI/2,0,0],children:[(0,t.jsx)("coneGeometry",{args:[.07,.2,4]}),(0,t.jsx)("meshBasicMaterial",{color:n,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]})},`oc-${r}`)}),n.map((e,r)=>(0,t.jsxs)("mesh",{ref:e=>{l.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.07,12,12]}),(0,t.jsx)("meshBasicMaterial",{color:r%2==0?c:u,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},`pulse-${r}`))]})}),z=r.default.memo(function({progress:e,reduced:n=!1,isMobile:o=!1}){let{chaotic:s,optimized:a,chaosNodes:l,optimizedNodes:p}=(0,r.useMemo)(()=>w(),[]),f=(0,r.useRef)([]),d=(0,r.useRef)([]),x=(0,r.useRef)(null),j=(0,r.useRef)(null),M=(e,t)=>{if(!e.index)return;let r=Math.max(0,36*Math.floor(e.index.count*t/36));e.setDrawRange(0,r)};return(0,i.useFrame)(t=>{let r=e.current??0,n=t.clock.elapsedTime,i=1-m(.4,.56,r),o=(1-m(.38,.55,r))*.85,s=.7+.18*Math.sin(7*n);for(let e of f.current)e?.geo&&(M(e.geo,i),e.mat&&(e.mat.opacity=o*s));let a=m(.55,.74,r),l=m(.55,.66,r);for(let e=0;e(0,t.jsxs)("mesh",{frustumCulled:!1,children:[(0,t.jsx)("tubeGeometry",{ref:e=>{e&&(f.current[r]={...f.current[r]??{},geo:e})},args:[e.curve,120,.08,6,!1]}),(0,t.jsx)("meshBasicMaterial",{ref:e=>{e&&(f.current[r]={...f.current[r]??{},mat:e})},color:h,transparent:!0,opacity:.85,depthWrite:!1,blending:n?g.NormalBlending:g.AdditiveBlending})]},`c${r}`)),a.map((e,r)=>(0,t.jsxs)("mesh",{frustumCulled:!1,children:[(0,t.jsx)("tubeGeometry",{ref:e=>{e&&(d.current[r]={...d.current[r]??{},geo:e})},args:[e.curve,120,.1,6,!1]}),(0,t.jsx)("meshBasicMaterial",{ref:e=>{e&&(d.current[r]={...d.current[r]??{},mat:e})},color:r%2==0?c:u,transparent:!0,opacity:0,depthWrite:!1,blending:n?g.NormalBlending:g.AdditiveBlending})]},`o${r}`)),(0,t.jsx)("group",{ref:x,children:l.map((e,r)=>(0,t.jsxs)("group",{children:[(0,t.jsxs)("mesh",{position:e,children:[(0,t.jsx)("sphereGeometry",{args:[.18,12,12]}),(0,t.jsx)("meshBasicMaterial",{color:h,transparent:!0,opacity:.9,blending:g.AdditiveBlending})]}),(0,t.jsx)(R,{position:e,color:h})]},`cn-group-${r}`))}),(0,t.jsx)("group",{ref:j,scale:1e-4,children:p.map((e,r)=>(0,t.jsxs)("group",{children:[(0,t.jsxs)("mesh",{position:e,children:[(0,t.jsx)("sphereGeometry",{args:[.15,14,14]}),(0,t.jsx)("meshBasicMaterial",{color:u,transparent:!0,opacity:.95,blending:g.AdditiveBlending})]}),(0,t.jsx)(R,{position:e,color:u,maxScale:1.8,pulseSpeed:3})]},`on-group-${r}`))}),!o&&(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(G,{progress:e,chaoticCurves:s.map(e=>e.curve)}),(0,t.jsx)(k,{progress:e,optimizedCurves:a.map(e=>e.curve)})]})]})}),V=new g.Vector3,C=new g.Vector3,I=new g.Vector3,F=r.default.memo(function({texture:e,tint:r,width:n,aspect:i}){let o=n/i;return(0,t.jsxs)("mesh",{position:[0,o/2.4,0],children:[(0,t.jsx)("planeGeometry",{args:[n,o]}),(0,t.jsx)("meshBasicMaterial",{map:e,color:r,transparent:!0,depthWrite:!1,side:g.DoubleSide,toneMapped:!1})]})}),$=new g.Vector3(0,.5,0),W=r.default.memo(function({progress:e,reduced:n=!1}){let{chaotic:o,optimized:s}=(0,r.useMemo)(()=>w(),[]),a=["truck","van","bike"],l=(0,r.useMemo)(()=>Array.from({length:7},(e,t)=>({curve:o[t%o.length].curve,type:a[t%3],speed:.018+.03*d(5*t+1),offset:d(5*t+2),color:h,nodes:o[t%o.length].nodes||[]})),[o]),p=(0,r.useMemo)(()=>Array.from({length:5},(e,t)=>({curve:s[t%s.length].curve,type:a[t%3],speed:.05+.025*d(7*t+1),offset:d(7*t+2),color:t%2==0?c:u,nodes:s[t%s.length].nodes||[]})),[s]),f=(0,r.useRef)([]),x=(0,r.useRef)([]),j=(0,r.useRef)([]),M=(0,r.useMemo)(()=>{let e=new g.TextureLoader().load("/images/truck.png");return e.colorSpace=g.SRGBColorSpace,e.anisotropy=8,e},[]),y=1080/948,v=(0,r.useRef)([]),b=(0,r.useRef)([]),A=(e,t,r,n,i,o)=>{if(!e||!t?.curve)return;let s=o>.02;if(e.visible=s,!s)return;let a=r[n];(void 0===a||Number.isNaN(a))&&(a=r[n]=t.offset??0),t.curve.getPointAt(a,V);let l=V.distanceTo($);t.nodes&&t.nodes.length>0&&t.nodes.forEach(e=>{let t=V.distanceTo(e);t{let t=e.material;t&&"opacity"in t&&(t.opacity=o*B(e))})},B=e=>{let t=e.material;return!t||t.map||t.wireframe||t.color&&0xffffff===t.color.getHex()||t.color&&0xef4444===t.color.getHex()?1:.2};return(0,i.useFrame)((t,r)=>{v.current.length!==l.length&&(v.current=l.map(e=>e.offset)),b.current.length!==p.length&&(b.current=p.map(e=>e.offset));let n=e.current??0,i=t.clock.elapsedTime,o=Math.min(.06,r),s=m(.1,.22,n)*(1-m(.7,.82,n))*(.85+.1*Math.sin(6*i)),a=m(.68,.82,n),c=t.camera;for(let e=0;e(0,t.jsx)("group",{ref:e=>{f.current[r]=e},children:(0,t.jsx)(F,{texture:M,tint:"#ff5a5a",width:1.61,aspect:y})},`cv${r}`)),p.map((e,r)=>(0,t.jsx)("group",{visible:!1,ref:e=>{x.current[r]=e},children:(0,t.jsx)(F,{texture:M,tint:"#d7dce4",width:1.75,aspect:y})},`ov${r}`)),p.map((e,r)=>Array.from({length:16},(i,o)=>(0,t.jsxs)("mesh",{visible:!1,ref:e=>{j.current[16*r+o]=e},children:[(0,t.jsx)("sphereGeometry",{args:[.1,8,8]}),(0,t.jsx)("meshBasicMaterial",{color:e.color,transparent:!0,opacity:0,depthWrite:!1,blending:n?g.NormalBlending:g.AdditiveBlending})]},`ot-${r}-${o}`)))]})}),N=r.default.memo(function({offset:e,index:n,progress:o,color:s}){let a=(0,r.useRef)(null),l=(0,r.useRef)(null),c=(0,r.useRef)([]),u=(0,r.useMemo)(()=>Array.from({length:3},(e,t)=>t/3),[]);(0,i.useFrame)(t=>{let r=o.current??0,i=t.clock.elapsedTime,s=m(.2,.4,r)*(1-m(.72,.85,r)),h=s>.01;a.current&&(a.current.visible=h),l.current&&h&&(l.current.opacity=s*(.15+.08*Math.sin(12*i+n))),c.current.forEach((t,r)=>{if(!t||(t.visible=h,!h))return;let o=.8+.4*d(5*n+r),a=(u[r]+o/3*i)%1;t.position.copy(e).multiplyScalar(a),t.material.opacity=s*Math.sin(a*Math.PI)*.8;let l=.04+.015*Math.sin(8*i+r);t.scale.setScalar(l/.06)})});let h=(0,r.useMemo)(()=>{let t=new g.BufferGeometry,r=new Float32Array([0,0,0,e.x,e.y,e.z]);return t.setAttribute("position",new g.BufferAttribute(r,3)),t},[e]);return(0,t.jsxs)("group",{children:[(0,t.jsx)("lineSegments",{ref:a,geometry:h,children:(0,t.jsx)("lineBasicMaterial",{ref:l,color:s,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})}),Array.from({length:3}).map((e,r)=>(0,t.jsxs)("mesh",{ref:e=>{c.current[r]=e},visible:!1,children:[(0,t.jsx)("sphereGeometry",{args:[.06,8,8]}),(0,t.jsx)("meshBasicMaterial",{color:s,transparent:!0,opacity:0,depthWrite:!1,blending:g.AdditiveBlending})]},r))]})}),Y=r.default.memo(function({progress:e}){let n=(0,r.useRef)(null),o=(0,r.useMemo)(()=>Array.from({length:5},(e,t)=>{let r=t/5*Math.PI*2+.3,n=7+3*d(7*t+1),i=Math.cos(r)*n,o=Math.sin(r)*n;return new g.Vector3(i,-3.3,o)}),[]);return(0,i.useFrame)(e=>{let t=e.clock.elapsedTime;n.current&&(n.current.position.y=3.4+.12*Math.sin(.8*t))}),(0,t.jsxs)("group",{ref:n,position:[0,3.4,0],children:[(0,t.jsxs)("mesh",{children:[(0,t.jsx)("sphereGeometry",{args:[.06,12,12]}),(0,t.jsx)("meshBasicMaterial",{color:u,blending:g.AdditiveBlending})]}),o.map((r,n)=>(0,t.jsx)(N,{offset:r,index:n,progress:e,color:n%2==0?c:u},`calc-beam-${n}`))]})}),D={radiusStart:17,radiusEnd:13,heightStart:9,heightEnd:6.5,lookAtY:2.4,fov:50},H={radiusStart:19,radiusEnd:15,heightStart:9.5,heightEnd:7,lookAtY:2.6,fov:54},K={radiusStart:16,radiusEnd:12,heightStart:8.5,heightEnd:6,lookAtY:2.3,fov:58};function U({progress:e,framing:t}){let n=(0,r.useRef)(0),s=(0,o.A)();return(0,r.useEffect)(()=>{let e=s.getState().camera;"fov"in e&&(e.fov=t.fov,e.updateProjectionMatrix())},[s,t.fov]),(0,i.useFrame)((r,i)=>{let o=e.current??0;n.current=f(n.current,o,1.5,i);let s=n.current,a=r.clock.elapsedTime,l=p(t.radiusStart,t.radiusEnd,s),c=p(-.5,.45,s)+.02*a,u=p(t.heightStart,t.heightEnd,s)+.3*Math.sin(.4*a),h=r.camera;h.position.x=Math.sin(c)*l,h.position.z=Math.cos(c)*l,h.position.y=u,h.lookAt(0,t.lookAtY,0)}),null}let L=r.default.memo(function({progress:e,reduced:r=!1,isMobile:i=!1,isTablet:o=!1,active:c=!0}){let u=i?K:o?H:D;return(0,t.jsxs)(n.Canvas,{flat:!0,dpr:[1,i||r?1.25:1.5],camera:{position:[0,u.heightStart,u.radiusStart],fov:u.fov,near:.1,far:120},gl:{antialias:!i,powerPreference:"high-performance",alpha:!1},frameloop:c?"always":"never",children:[(0,t.jsx)("color",{attach:"background",args:[l]}),(0,t.jsx)("fog",{attach:"fog",args:[l,18,52]}),(0,t.jsx)("ambientLight",{intensity:.6}),(0,t.jsx)(U,{progress:e,framing:u}),(0,t.jsx)(v,{progress:e,count:i?48:90,reduced:r}),(0,t.jsx)(z,{progress:e,reduced:r,isMobile:i}),(0,t.jsx)(W,{progress:e,reduced:r}),(0,t.jsx)(Y,{progress:e,reduced:r}),!r&&(0,t.jsx)(s.EffectComposer,{multisampling:2*!i,children:(0,t.jsx)(s.Bloom,{mipmapBlur:!0,intensity:i?.5:1,luminanceThreshold:.15,luminanceSmoothing:.04,radius:i?.55:.75,kernelSize:a.KernelSize.MEDIUM})})]})});e.s(["default",0,L],64083)},29539,e=>{e.n(e.i(64083))}]); \ No newline at end of file diff --git a/build/_next/static/chunks/0w9rs8fz9m7so.css b/build/_next/static/chunks/0w9rs8fz9m7so.css deleted file mode 100644 index 250eaf8..0000000 --- a/build/_next/static/chunks/0w9rs8fz9m7so.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:200;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:300;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:400;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:500;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:600;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:700;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/a342834df7752944-s.10ev4cu2inrn-.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/d3fe2f289711ac3f-s.0i6ci0u~g4zml.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/58c4895d0a0ef7cc-s.0x1a9yg0jkq20.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/bfc7db5c00d21bc5-s.0dyk20wuvya7a.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/6ab0db14f70d8ed6-s.0ctuso5mgh_i..woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Manrope;font-style:normal;font-weight:800;font-display:swap;src:url(../media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Manrope Fallback;src:local(Arial);ascent-override:103.31%;descent-override:29.07%;line-gap-override:0.0%;size-adjust:103.19%}.manrope_67dc055e-module__BHrBnq__className{font-family:Manrope,Manrope Fallback;font-style:normal}.manrope_67dc055e-module__BHrBnq__variable{--font-manrope:"Manrope", "Manrope Fallback"} -@font-face{font-family:Space Grotesk;font-style:normal;font-weight:400;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:400;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:400;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:500;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:500;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:500;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:600;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:600;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:600;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:700;font-display:swap;src:url(../media/32687112bd2dd8db-s.0gspg~~t9nou8.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:700;font-display:swap;src:url(../media/28868e710e86be81-s.0rx81dn62y51_.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:700;font-display:swap;src:url(../media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Space Grotesk Fallback;src:local(Arial);ascent-override:89.71%;descent-override:26.62%;line-gap-override:0.0%;size-adjust:109.69%}.space_grotesk_2e42c3c6-module__3Wl9rq__className{font-family:Space Grotesk,Space Grotesk Fallback;font-style:normal}.space_grotesk_2e42c3c6-module__3Wl9rq__variable{--font-space-grotesk:"Space Grotesk", "Space Grotesk Fallback"} -@font-face{font-family:Syne;font-style:normal;font-weight:600;font-display:swap;src:url(../media/ab624315db63c58d-s.1487dfs7-.~d~.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Syne;font-style:normal;font-weight:600;font-display:swap;src:url(../media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Syne;font-style:normal;font-weight:600;font-display:swap;src:url(../media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Syne;font-style:normal;font-weight:700;font-display:swap;src:url(../media/ab624315db63c58d-s.1487dfs7-.~d~.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Syne;font-style:normal;font-weight:700;font-display:swap;src:url(../media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Syne;font-style:normal;font-weight:700;font-display:swap;src:url(../media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Syne;font-style:normal;font-weight:800;font-display:swap;src:url(../media/ab624315db63c58d-s.1487dfs7-.~d~.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Syne;font-style:normal;font-weight:800;font-display:swap;src:url(../media/e94b8ab81811a983-s.02fsf_1p_avhz.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Syne;font-style:normal;font-weight:800;font-display:swap;src:url(../media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Syne Fallback;src:local(Arial);ascent-override:93.93%;descent-override:27.93%;line-gap-override:0.0%;size-adjust:98.47%}.syne_ef5854ac-module__2TJB3a__className{font-family:Syne,Syne Fallback;font-style:normal}.syne_ef5854ac-module__2TJB3a__variable{--font-syne:"Syne", "Syne Fallback"} -@font-face{font-family:DM Sans;font-style:normal;font-weight:400;font-display:swap;src:url(../media/c3cb240f9c892514-s.163v2i5cux7-c.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:DM Sans;font-style:normal;font-weight:400;font-display:swap;src:url(../media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:DM Sans;font-style:normal;font-weight:500;font-display:swap;src:url(../media/c3cb240f9c892514-s.163v2i5cux7-c.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:DM Sans;font-style:normal;font-weight:500;font-display:swap;src:url(../media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:DM Sans Fallback;src:local(Arial);ascent-override:94.9%;descent-override:29.66%;line-gap-override:0.0%;size-adjust:104.53%}.dm_sans_2770e922-module__TdA3fW__className{font-family:DM Sans,DM Sans Fallback;font-style:normal}.dm_sans_2770e922-module__TdA3fW__variable{--font-dm-sans:"DM Sans", "DM Sans Fallback"} -@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/5476f68d60460930-s.0wxq9webf.ew4.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/5476f68d60460930-s.0wxq9webf.ew4.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2)format("woff2");unicode-range:U+460-52F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2)format("woff2");unicode-range:U+301,U+400-45F,U+490-491,U+4B0-4B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2)format("woff2");unicode-range:U+1F??}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/5476f68d60460930-s.0wxq9webf.ew4.woff2)format("woff2");unicode-range:U+370-377,U+37A-37F,U+384-38A,U+38C,U+38E-3A1,U+3A3-3FF}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2)format("woff2");unicode-range:U+102-103,U+110-111,U+128-129,U+168-169,U+1A0-1A1,U+1AF-1B0,U+300-301,U+303-304,U+308-309,U+323,U+329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(../media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter Fallback;src:local(Arial);ascent-override:90.44%;descent-override:22.52%;line-gap-override:0.0%;size-adjust:107.12%}.inter_5dbe1e89-module__i9oJOa__className{font-family:Inter,Inter Fallback;font-style:normal}.inter_5dbe1e89-module__i9oJOa__variable{--font-inter:"Inter", "Inter Fallback"} -@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-border-style:solid;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial}}}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.container{width:100%}.\!hidden{display:none!important}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.size-full{width:100%;height:100%}.h-full{height:100%}.w-full{width:100%}.flex-shrink,.shrink{flex-shrink:1}.flex-grow,.grow{flex-grow:1}.border-collapse{border-collapse:collapse}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-\[shimmer-sweep_6s_infinite_linear\]{animation:6s linear infinite shimmer-sweep}.resize{resize:both}.columns-4{columns:4}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.overflow-hidden{overflow:hidden}.border{border-style:var(--tw-border-style);border-width:1px}.bg-\[linear-gradient\(110deg\,\#ffffff\,45\%\,\#c01227\,55\%\,\#ffffff\)\]{background-image:linear-gradient(110deg,#fff,45%,#c01227,55%,#fff)}.bg-\[length\:250\%_100\%\]{background-size:250% 100%}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.text-wrap{text-wrap:wrap}.text-transparent{color:#0000}.uppercase{text-transform:uppercase}.underline{text-decoration-line:underline}.ring{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.invert{--tw-invert:invert(100%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}html{scroll-behavior:smooth}.body-container{overflow:visible!important}:root{--space-section:clamp(40px, 5vw, 64px);--space-section-lg:clamp(52px, 6vw, 80px);--space-hero-gap:clamp(36px, 4.5vw, 64px);--dm-mobile-gutter:10px}.dm-section{padding-top:var(--space-section)!important;padding-bottom:var(--space-section)!important}.dm-section-lg{padding-top:var(--space-section-lg)!important;padding-bottom:var(--space-section-lg)!important}.elementor-86 .elementor-element.elementor-element-88745f4{margin-top:var(--space-hero-gap)!important}.elementor.elementor-61 .elementor-element.elementor-element-30fd9d1,.elementor.elementor-61 .elementor-element.elementor-element-b62c0b3,.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1,.elementor.elementor-61 .elementor-element.elementor-element-88745f4,.elementor.elementor-61 .elementor-element.elementor-element-bbc6760,.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc{margin-top:var(--space-section)!important;margin-bottom:0!important}html.lenis,html.lenis body{height:auto}.lenis.lenis-smooth{scroll-behavior:auto!important}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-stopped{overflow:hidden}.lenis.lenis-smooth iframe{pointer-events:none}*,:before,:after{font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif}:not(i):not(svg):not(path):not(canvas):not(.fa):not(.fas):not(.far):not(.fab):not([class*=fa-]):not([class*=eicon-]):not([class*=fontello]){font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizelegibility}@media (min-width:1025px){#masthead .elementor-element.elementor-element-466de1b{padding:0 28px!important;top:5px!important}#masthead .elementor-element.elementor-element-e052838{background:0 0!important;border-radius:28px!important;margin-left:1.4%!important}#masthead .elementor-element.elementor-element-d681ece{align-items:center!important;min-height:104px!important}#masthead .elementor-element.elementor-element-472172e{padding-top:18px!important;padding-bottom:18px!important}#masthead .elementor-element.elementor-element-846e53d .hfe-site-logo .hfe-site-logo-container img{width:190px!important;height:auto!important;margin-left:24px!important}#masthead .elementor-element.elementor-element-e44ee7e,#masthead .elementor-element.elementor-element-f961133{padding-top:14px!important;padding-bottom:14px!important}#masthead .elementor-element.elementor-element-0b7bf6f>.elementor-widget-container{border-radius:22px!important;align-items:center!important;height:58px!important;padding:0 42px!important;display:flex!important}#masthead .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li>a{white-space:nowrap!important;height:auto!important;min-height:auto!important;padding:6px 14px!important;font-size:15px!important;line-height:1.2!important}#masthead .header-menu-container .main-menu{gap:8px!important}#masthead .elementor-element.elementor-element-cabdb09 a.header-button{border-radius:24px!important;min-width:185px!important;min-height:58px!important;padding:0 34px!important;font-size:18px!important;line-height:58px!important}#masthead .elementor-element.elementor-element-466de1b.dm-header-scrolled{border-radius:24px!important;width:auto!important;top:15px!important;left:20px!important;right:20px!important}}.dm-contact-section{color:#fff;background:#1f1f1f;grid-template-columns:minmax(0,1fr) minmax(420px,48%);min-height:720px;margin:0;display:grid;position:relative;overflow:hidden}.dm-contact-left{min-width:0;padding:clamp(48px,5vw,76px) clamp(28px,5vw,72px);position:relative;overflow:hidden}.dm-contact-map{z-index:0;opacity:.34;pointer-events:none;-webkit-user-select:none;user-select:none;width:min(980px,112%);max-width:none;position:absolute;bottom:-1%;left:-5%}.dm-contact-kicker,.dm-contact-title,.dm-contact-copy,.dm-contact-info{z-index:1;position:relative}.dm-contact-kicker{color:#fff;margin:0 0 clamp(44px,5vw,64px);font-size:clamp(16px,1.2vw,20px);font-weight:600;line-height:1.2}.dm-contact-title{color:#fff;letter-spacing:0;text-transform:uppercase;max-width:850px;margin:0;font-size:clamp(44px,5.2vw,86px);font-weight:400;line-height:1.18}.dm-contact-copy{color:#ffffffeb;margin:clamp(36px,4.5vw,58px) 0 0;font-size:clamp(18px,1.55vw,26px);font-weight:400;line-height:1.45}.dm-contact-info{grid-template-columns:minmax(180px,.85fr) minmax(260px,1.45fr);gap:clamp(32px,5vw,74px);max-width:860px;margin-top:clamp(72px,7vw,114px);display:grid}.dm-contact-info-item h3{color:#fff;margin:0 0 32px;font-size:clamp(18px,1.5vw,25px);font-weight:800;line-height:1.2}.dm-contact-info-item p{color:#fff;margin:0;font-size:clamp(17px,1.35vw,24px);font-weight:500;line-height:1.6}.dm-contact-card{color:#1b1b1b;background:#fff;border-radius:34px 34px 0 0;align-self:stretch;min-width:0;margin:22px 34px 0 0;padding:clamp(72px,7vw,132px) clamp(42px,7.2vw,150px) clamp(50px,5.5vw,82px)}.dm-contact-card h3{color:#1b1b1b;letter-spacing:0;margin:0 0 clamp(44px,5vw,68px);font-size:clamp(34px,2.6vw,45px);font-weight:800;line-height:1.1}.dm-contact-form{flex-direction:column;gap:28px;display:flex}.dm-contact-form label{margin:0;display:block}.dm-contact-form label>span{clip:rect(0, 0, 0, 0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.dm-contact-form input,.dm-contact-form textarea{color:#1b1b1b;width:100%;box-shadow:none;background:#fff;border:1.5px solid #a9a9a9;border-radius:14px;outline:none;margin:0;font-family:inherit;font-size:clamp(17px,1.05vw,20px);font-weight:500;line-height:1.4;transition:border-color .2s,box-shadow .2s}.dm-contact-form input{height:72px;padding:0 28px}.dm-contact-form textarea{resize:vertical;min-height:250px;padding:24px 28px}.dm-contact-form input::placeholder,.dm-contact-form textarea::placeholder{color:#9c9c9c;opacity:1}.dm-contact-form input:focus,.dm-contact-form textarea:focus{border-color:#c01227;box-shadow:0 0 0 3px #c012271c}.dm-contact-status{margin:-6px 0 0;font-size:15px;font-weight:700;line-height:1.4}.dm-contact-status-success{color:#247a3d}.dm-contact-status-error{color:#c01227}.dm-contact-submit{color:#2d2d2d;cursor:pointer;background:#fff;border:1.5px solid #e31d32;border-radius:14px;align-self:flex-start;align-items:stretch;height:72px;margin-top:26px;padding:0;font-family:inherit;font-size:clamp(16px,1.02vw,19px);font-weight:800;line-height:1;transition:transform .2s,border-color .2s,color .2s;display:inline-flex;overflow:hidden}.dm-contact-submit span:first-child{justify-content:center;align-items:center;min-width:220px;padding:0 34px;display:inline-flex}.dm-contact-submit-icon{background:#c01227;width:70px;min-width:70px;display:inline-flex;position:relative}.dm-contact-submit-icon:before,.dm-contact-submit-icon:after{content:"";background:#fff;position:absolute}.dm-contact-submit-icon:before{transform-origin:100%;width:28px;height:3px;top:35px;left:23px;transform:rotate(-45deg)}.dm-contact-submit-icon:after{background:0 0;border-top:3px solid #fff;border-right:3px solid #fff;width:16px;height:16px;top:25px;right:25px}.dm-contact-submit:hover,.dm-contact-submit:focus-visible{color:#111;border-color:#c01227;transform:translateY(-1px)}.dm-contact-submit:disabled{cursor:wait;opacity:.72}@media (max-width:1200px){.dm-contact-section{grid-template-columns:1fr}.dm-contact-left{min-height:640px}.dm-contact-card{border-radius:28px;margin:0 28px 40px}}@media (max-width:720px){.dm-contact-left{min-height:auto;padding:42px 20px 58px}.dm-contact-title{font-size:clamp(38px,12vw,58px)}.dm-contact-info{grid-template-columns:1fr;gap:42px;margin-top:54px}.dm-contact-info-item h3{margin-bottom:18px}.dm-contact-card{border-radius:28px;margin:0 20px 28px;padding:28px 20px 24px}.dm-contact-card h3{margin-bottom:24px}.dm-contact-form{gap:18px}.dm-contact-form input{height:56px;padding:0 18px}.dm-contact-form textarea{min-height:170px;padding:18px}.dm-contact-submit{width:100%;height:60px}.dm-contact-submit span:first-child{flex:auto;min-width:0;padding:0 20px}.dm-contact-submit-icon{width:60px;min-width:60px}}.industry-solutions-grid{grid-template-columns:repeat(3,1fr);gap:30px;width:100%;margin:30px 0 0;display:grid}@media (max-width:1024px){.industry-solutions-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){.industry-solutions-grid{grid-template-columns:1fr}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc{--padding-left:0px!important;--padding-right:0px!important;box-sizing:border-box!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc>.e-con-inner{width:100%!important;max-width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}}@media (max-width:767px){.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc>.e-con-inner{width:100%!important;max-width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-d602f7f{box-sizing:border-box;--padding-left:20px!important;--padding-right:20px!important;width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;padding-left:20px!important;padding-right:20px!important}.elementor.elementor-61 .elementor-element.elementor-element-f64bd88,.elementor.elementor-61 .elementor-element.elementor-element-5ed2dbb,.elementor.elementor-61 .elementor-element.elementor-element-6829276{box-sizing:border-box;--padding-left:0px!important;--padding-right:0px!important;--margin-left:0px!important;--margin-right:0px!important;width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-6829276{--e-con-grid-template-columns:minmax(0, 1fr)!important;--grid-justify-content:stretch!important;--justify-items:stretch!important;grid-template-columns:minmax(0,1fr)!important;justify-content:stretch!important;justify-items:stretch!important;min-width:0!important}.elementor.elementor-61 .industry-solutions-grid,.elementor.elementor-61 .industry-card-link{width:100%;min-width:0;max-width:100%}.elementor.elementor-61 .industry-solutions-grid{margin-left:0!important;margin-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1,.elementor.elementor-86 .elementor-element.elementor-element-c2c601a,.elementor.elementor-104 .elementor-element.elementor-element-c70681e{--padding-left:var(--dm-mobile-gutter)!important;--padding-right:var(--dm-mobile-gutter)!important;padding-left:var(--dm-mobile-gutter)!important;padding-right:var(--dm-mobile-gutter)!important;box-sizing:border-box!important}.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1>.e-con-inner,.elementor.elementor-86 .elementor-element.elementor-element-c2c601a>.e-con-inner,.elementor.elementor-104 .elementor-element.elementor-element-c70681e>.e-con-inner{box-sizing:border-box!important;width:100%!important;max-width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}.elementor.elementor-61 .elementor-element.elementor-element-89a0ca1>.e-con-inner>.e-con,.elementor.elementor-86 .elementor-element.elementor-element-c2c601a>.e-con-inner>.e-con,.elementor.elementor-104 .elementor-element.elementor-element-c70681e>.e-con-inner>.e-con{--padding-left:0px!important;--padding-right:0px!important;box-sizing:border-box!important;width:100%!important;max-width:100%!important;padding-left:0!important;padding-right:0!important}.comparison-section .container{width:calc(100% - (var(--dm-mobile-gutter) * 2))!important;max-width:calc(100% - (var(--dm-mobile-gutter) * 2))!important;box-sizing:border-box!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important}.wcd-inner{box-sizing:border-box!important;width:100%!important;max-width:100%!important;padding-left:0!important;padding-right:0!important}}.industry-card-link{background:#121212;border-radius:30px;height:600px;text-decoration:none;transition:transform .4s cubic-bezier(.2,.8,.2,1),box-shadow .4s;display:block;position:relative;overflow:hidden;box-shadow:0 10px 30px #0000001f}.industry-card-link:after{content:"";z-index:6;pointer-events:none;border:1px solid #ffffff14;border-radius:30px;transition:border-color .4s;position:absolute;inset:0}@keyframes shimmer-sweep{0%{background-position:200%}to{background-position:-200%}}.industry-card-link:before{content:"";z-index:7;pointer-events:none;background:linear-gradient(90deg,#fff0 0%,#ffffff2e 50%,#fff0 100%);width:60%;height:100%;position:absolute;top:0;left:0;transform:translate(-150%)skew(-25deg)}.industry-card-link:hover:before{animation:1.2s cubic-bezier(.2,.8,.2,1) forwards shimmer-sweep}.industry-card-link:hover{transform:translateY(-5px);box-shadow:0 20px 40px #c0122740}.industry-card-link:hover:after{border-color:#ffffff40}.industry-card-bg{z-index:1;transition:transform .6s cubic-bezier(.2,.8,.2,1);position:absolute;inset:0}.industry-card-link:hover .industry-card-bg{transform:scale(1.04)}.industry-card-overlay{z-index:2;background:linear-gradient(#0000 0%,#0000004d 50%,#000000d9 100%);transition:opacity .4s cubic-bezier(.2,.8,.2,1);position:absolute;inset:0}.industry-card-link:hover .industry-card-overlay{opacity:0}.industry-card-hover-bg{z-index:3;opacity:0;background:linear-gradient(#d71428cc 0%,#c01227e0 100%);transition:opacity .4s cubic-bezier(.2,.8,.2,1);position:absolute;inset:0}.industry-card-link:hover .industry-card-hover-bg{opacity:1}.industry-card-default-content{z-index:4;opacity:1;transition:opacity .3s,transform .3s;position:absolute;bottom:40px;left:24px;transform:translateY(0)}.industry-card-link:hover .industry-card-default-content{opacity:0;transform:translateY(10px)}.industry-card-default-title{color:#fff!important;letter-spacing:-.3px!important;text-transform:none!important;font-size:22px!important;font-weight:700!important;line-height:1.2!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;margin:0!important}.industry-card-hover-content{z-index:5;opacity:0;pointer-events:none;flex-direction:column;justify-content:space-between;padding:40px 24px;transition:opacity .4s cubic-bezier(.2,.8,.2,1),transform .4s cubic-bezier(.2,.8,.2,1);display:flex;position:absolute;inset:0;transform:translateY(6px)}.industry-card-link:hover .industry-card-hover-content{opacity:1;pointer-events:auto;transform:translateY(0)}.industry-card-hover-top{flex-direction:column;gap:20px;display:flex}.industry-card-hover-top:before{content:"";background:#ffffff40;width:100%;height:1px;margin-bottom:5px;display:block}.industry-card-description{color:#fff!important;letter-spacing:-.2px!important;font-size:18px!important;font-weight:600!important;line-height:1.4!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;margin:0!important}.industry-card-section-title{color:#fff!important;letter-spacing:1.5px!important;text-transform:uppercase!important;opacity:.9!important;font-size:12px!important;font-weight:800!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;margin-bottom:10px!important}.industry-card-list{flex-direction:column!important;gap:6px!important;margin:0!important;padding:0!important;list-style:none!important;display:flex!important}.industry-card-list-item{opacity:0;transition:opacity .3s cubic-bezier(.2,.8,.2,1),transform .3s cubic-bezier(.2,.8,.2,1);transform:translateY(5px);color:#ffffffe6!important;font-size:15px!important;line-height:1.4!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;padding-left:18px!important;position:relative!important}.industry-card-link:hover .industry-card-list-item{opacity:1;transform:translateY(0)}.industry-card-list-item.bullet-1{transition-delay:40ms}.industry-card-list-item.bullet-2{transition-delay:80ms}.industry-card-list-item.bullet-3{transition-delay:.12s}.industry-card-list-item.bullet-4{transition-delay:.16s}.industry-card-list-item.bullet-5{transition-delay:.2s}.industry-card-list-item.bullet-6{transition-delay:.24s}.industry-card-list-item:before{content:""!important;background-color:#fff!important;border-radius:50%!important;width:6px!important;height:6px!important;position:absolute!important;top:7px!important;left:0!important}.industry-card-hover-bottom{align-items:center;gap:15px;display:flex}.industry-card-hover-icon{color:#c01227;background:#fff;border-radius:50%;justify-content:center;align-items:center;width:48px;height:48px;transition:transform .4s cubic-bezier(.2,.8,.2,1),background-color .3s,color .3s;display:flex;box-shadow:0 4px 10px #0000001a}.industry-card-link:hover .industry-card-hover-icon{color:#c01227;background-color:#fff;transform:scale(1.08)translateY(-2px)}.industry-card-hover-title{color:#fff!important;font-size:24px!important;font-weight:700!important;font-family:var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif!important;text-transform:none!important;letter-spacing:-.5px!important;margin:0!important}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc{display:flex}.elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc>.e-con-inner{box-sizing:border-box;flex-direction:column;width:100%;max-width:1480px;margin-left:auto;margin-right:auto;display:flex;padding-left:clamp(20px,4vw,50px)!important;padding-right:clamp(20px,4vw,50px)!important}.dm-section-container{box-sizing:border-box;width:100%;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}@media (max-width:1024px){.dm-section-container{padding-left:var(--dm-mobile-gutter,10px);padding-right:var(--dm-mobile-gutter,10px)}}@media (min-width:1025px){.wings-hero-page.elementor-element-741f56c,.af-hero-page.elementor-element-741f56c{--padding-top:20px;--padding-right:20px;--padding-bottom:20px;--padding-left:20px;padding:20px!important}}.custom-standard-hero-container{box-sizing:border-box!important;flex-direction:column!important;width:100%!important;max-width:100%!important;margin:0 auto!important;padding:20px!important;display:flex!important;position:relative!important}.custom-standard-hero-card{width:100%!important;height:800px!important;min-height:800px!important;box-shadow:none!important;background-position:50%!important;background-repeat:no-repeat!important;background-size:cover!important;border-radius:25px!important;justify-content:center!important;align-items:center!important;margin:0!important;display:flex!important;position:relative!important;overflow:hidden!important}.custom-standard-hero-card:before{content:""!important;background:var(--hero-overlay,linear-gradient(to bottom, #00000073 0%, #000000c7 55%, #000000f2 100%))!important;z-index:1!important;position:absolute!important;inset:0!important}.custom-standard-hero-card>*{z-index:2!important;position:relative!important}@media (max-width:1024px){.custom-standard-hero-container{padding:0 10px 10px!important}}@media (max-width:840px){.custom-standard-hero-card{border-radius:22px!important;height:600px!important;min-height:600px!important}body .elementor .elementor-element.elementor-element-741f56c,body .custom-standard-hero-container,body .miletruth-hero .elementor-element.elementor-element-86f3204{width:100%!important;max-width:100%!important;padding:0 var(--dm-mobile-gutter) var(--dm-mobile-gutter) var(--dm-mobile-gutter)!important;--padding-top:0px!important;--padding-right:var(--dm-mobile-gutter)!important;--padding-bottom:var(--dm-mobile-gutter)!important;--padding-left:var(--dm-mobile-gutter)!important;--padding-block-start:0px!important;box-sizing:border-box!important;border-radius:0!important;margin-top:0!important;margin-bottom:0!important;overflow:visible!important}body .elementor .elementor-element.elementor-element-6c7cbcb .owl-stage-outer,body .custom-standard-hero-card,body .miletruth-hero .miletruth-hero-container{box-sizing:border-box!important;border-radius:25px!important;width:100%!important;height:600px!important;min-height:600px!important;margin-top:0!important;margin-bottom:0!important;overflow:hidden!important}body .elementor .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item,body .elementor .elementor-element.elementor-element-6c7cbcb .content-item,body .miletruth-hero .slide-content{height:600px!important;min-height:600px!important}body .elementor .elementor-element.elementor-element-741f56c+*,body .custom-standard-hero-container+*,body .elementor-63.miletruth-hero+*{margin-top:0!important}}@media (max-width:480px){body .elementor .elementor-element.elementor-element-6c7cbcb .owl-stage-outer,body .custom-standard-hero-card,body .miletruth-hero .miletruth-hero-container{border-radius:25px!important;height:520px!important;min-height:520px!important;margin-top:7px!important}body .elementor .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item,body .elementor .elementor-element.elementor-element-6c7cbcb .content-item,body .miletruth-hero .slide-content{height:520px!important;min-height:520px!important}body .miletruth-hero .miletruth-hero-container{padding-top:60px!important;padding-bottom:60px!important}}@media (max-width:1024px){.elementor-element.elementor-element-741f56c{--padding-top:0px!important;--padding-block-start:0px!important;padding-top:0!important}.miletruth-hero-container{margin-top:0!important}.elementor-86 #women-entrepreneurship.elementor-element-bbc6760,.elementor-86 .comparison-section,.elementor-86 .elementor-element.elementor-element-bbc6760:not(#women-entrepreneurship),.elementor-86 .elementor-element.elementor-element-c2c601a,.elementor-59 .elementor-element.elementor-element-bbc6760,.elementor-104 .elementor-element.elementor-element-c70681e{margin-top:var(--space-section)!important;margin-bottom:0!important}.elementor-59 .elementor-element.elementor-element-3b4a7cc{margin-top:var(--space-hero-gap)!important;margin-bottom:0!important}.elementor-86 .elementor-element.elementor-element-88745f4:first-of-type{margin-top:var(--space-hero-gap)!important}.elementor-86 .elementor-element.elementor-element-88745f4~.elementor-element.elementor-element-88745f4{margin-top:var(--space-section)!important}}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false} diff --git a/build/_next/static/chunks/14w_kqlcp4t3-.js b/build/_next/static/chunks/14w_kqlcp4t3-.js deleted file mode 100644 index 4cc9556..0000000 --- a/build/_next/static/chunks/14w_kqlcp4t3-.js +++ /dev/null @@ -1,2 +0,0 @@ -(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,12718,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"InvariantError",{enumerable:!0,get:function(){return n}});class n extends Error{constructor(e,t){super(`Invariant: ${e.endsWith(".")?e:e+"."} This is a bug in Next.js.`,t),this.name="InvariantError"}}},64893,(e,t,r)=>{"use strict";var n=e.r(74080),a={stream:!0},l=Object.prototype.hasOwnProperty;function u(t){var r=e.r(t);return"function"!=typeof r.then||"fulfilled"===r.status?null:(r.then(function(e){r.status="fulfilled",r.value=e},function(e){r.status="rejected",r.reason=e}),r)}var i=new WeakSet,o=new WeakSet;function c(){}function s(t){for(var r=t[1],n=[],a=0;af||35===f||114===f||120===f?(h=f,f=3,c++):(h=0,f=3);continue;case 2:44===(g=o[c++])?f=4:p=p<<4|(96o.length&&(g=-1)}var v=o.byteOffset+c;if(-1{"use strict";t.exports=e.r(64893)},35326,(e,t,r)=>{"use strict";t.exports=e.r(21413)},76963,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"RedirectStatusCode",{enumerable:!0,get:function(){return a}});var n,a=((n={})[n.SeeOther=303]="SeeOther",n[n.TemporaryRedirect=307]="TemporaryRedirect",n[n.PermanentRedirect=308]="PermanentRedirect",n);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},68391,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={REDIRECT_ERROR_CODE:function(){return u},isRedirectError:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(76963),u="NEXT_REDIRECT";function i(e){if("object"!=typeof e||null===e||!("digest"in e)||"string"!=typeof e.digest)return!1;let t=e.digest.split(";"),[r,n]=t,a=t.slice(2,-2).join(";"),i=Number(t.at(-2));return r===u&&("replace"===n||"push"===n)&&"string"==typeof a&&!isNaN(i)&&i in l.RedirectStatusCode}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},90809,(e,t,r)=>{"use strict";function n(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,r=new WeakMap;return(n=function(e){return e?r:t})(e)}r._=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var r=n(t);if(r&&r.has(e))return r.get(e);var a={__proto__:null},l=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in e)if("default"!==u&&Object.prototype.hasOwnProperty.call(e,u)){var i=l?Object.getOwnPropertyDescriptor(e,u):null;i&&(i.get||i.set)?Object.defineProperty(a,u,i):a[u]=e[u]}return a.default=e,r&&r.set(e,a),a}},21768,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={ACTION_HEADER:function(){return u},FLIGHT_HEADERS:function(){return _},NEXT_ACTION_NOT_FOUND_HEADER:function(){return S},NEXT_ACTION_REVALIDATED_HEADER:function(){return O},NEXT_DID_POSTPONE_HEADER:function(){return E},NEXT_HMR_REFRESH_HASH_COOKIE:function(){return f},NEXT_HMR_REFRESH_HEADER:function(){return s},NEXT_HTML_REQUEST_ID_HEADER:function(){return T},NEXT_INSTANT_PREFETCH_HEADER:function(){return p},NEXT_INSTANT_TEST_COOKIE:function(){return y},NEXT_IS_PRERENDER_HEADER:function(){return P},NEXT_REQUEST_ID_HEADER:function(){return b},NEXT_REWRITTEN_PATH_HEADER:function(){return R},NEXT_REWRITTEN_QUERY_HEADER:function(){return m},NEXT_ROUTER_PREFETCH_HEADER:function(){return o},NEXT_ROUTER_SEGMENT_PREFETCH_HEADER:function(){return c},NEXT_ROUTER_STALE_TIME_HEADER:function(){return v},NEXT_ROUTER_STATE_TREE_HEADER:function(){return i},NEXT_RSC_UNION_QUERY:function(){return g},NEXT_URL:function(){return d},RSC_CONTENT_TYPE_HEADER:function(){return h},RSC_HEADER:function(){return l}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l="rsc",u="next-action",i="next-router-state-tree",o="next-router-prefetch",c="next-router-segment-prefetch",s="next-hmr-refresh",f="__next_hmr_refresh_hash__",d="next-url",h="text/x-component",p="next-instant-navigation-testing-prefetch",y="next-instant-navigation-testing",_=[l,i,o,s,c],g="_rsc",v="x-nextjs-stale-time",E="x-nextjs-postponed",R="x-nextjs-rewritten-path",m="x-nextjs-rewritten-query",P="x-nextjs-prerender",S="x-nextjs-action-not-found",b="x-nextjs-request-id",T="x-nextjs-html-request-id",O="x-action-revalidated";("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},39470,(e,t,r)=>{"use strict";function n(){let e,t,r=new Promise((r,n)=>{e=r,t=n});return{resolve:e,reject:t,promise:r}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"createPromiseWithResolvers",{enumerable:!0,get:function(){return n}})},51191,(e,t,r)=>{"use strict";function n(e,t=!0){return e.pathname+e.search+(t?e.hash:"")}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"createHrefFromUrl",{enumerable:!0,get:function(){return n}}),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},26935,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"HTML_LIMITED_BOT_UA_RE",{enumerable:!0,get:function(){return n}});let n=/[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i},82604,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={HTML_LIMITED_BOT_UA_RE:function(){return l.HTML_LIMITED_BOT_UA_RE},HTML_LIMITED_BOT_UA_RE_STRING:function(){return i},getBotType:function(){return s},isBot:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(26935),u=/Googlebot(?!-)|Googlebot$/i,i=l.HTML_LIMITED_BOT_UA_RE.source;function o(e){return l.HTML_LIMITED_BOT_UA_RE.test(e)}function c(e){return u.test(e)||o(e)}function s(e){return u.test(e)?"dom":o(e)?"html":void 0}},8372,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={AppRouterContext:function(){return u},GlobalLayoutRouterContext:function(){return o},LayoutRouterContext:function(){return i},MissingSlotContext:function(){return s},TemplateContext:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(55682)._(e.r(71645)),u=l.default.createContext(null),i=l.default.createContext(null),o=l.default.createContext(null),c=l.default.createContext(null),s=l.default.createContext(new Set)},88540,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a,l={ACTION_HMR_REFRESH:function(){return f},ACTION_NAVIGATE:function(){return o},ACTION_REFRESH:function(){return i},ACTION_RESTORE:function(){return c},ACTION_SERVER_ACTION:function(){return d},ACTION_SERVER_PATCH:function(){return s},PrefetchKind:function(){return h},ScrollBehavior:function(){return p}};for(var u in l)Object.defineProperty(r,u,{enumerable:!0,get:l[u]});let i="refresh",o="navigate",c="restore",s="server-patch",f="hmr-refresh",d="server-action";var h=((n={}).AUTO="auto",n.FULL="full",n),p=((a={})[a.Default=0]="Default",a[a.NoScroll=1]="NoScroll",a);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},64245,(e,t,r)=>{"use strict";function n(e){return null!==e&&"object"==typeof e&&"then"in e&&"function"==typeof e.then}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isThenable",{enumerable:!0,get:function(){return n}})},41538,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={dispatchAppRouterAction:function(){return c},dispatchGestureState:function(){return f},refreshOnInstantNavigationUnlock:function(){return o},useActionQueue:function(){return d}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(90809)._(e.r(71645)),u=e.r(64245);e.r(88540);let i=null;function o(){}function c(e){if(null===i)throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0});i(e)}let s=null;function f(e){if(null===s)throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0});s(e)}function d(e){let[t,r]=l.default.useState(e.state),[n,a]=(0,l.useOptimistic)(t);"u">typeof window&&(s=a),"u">typeof window&&(i=t=>e.dispatch(t,r));let o=(0,l.useMemo)(()=>n,[n]);return(0,u.isThenable)(o)?(0,l.use)(o):o}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},32120,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"callServer",{enumerable:!0,get:function(){return u}});let n=e.r(71645),a=e.r(88540),l=e.r(41538);async function u(e,t){return new Promise((r,u)=>{(0,n.startTransition)(()=>{(0,l.dispatchAppRouterAction)({type:a.ACTION_SERVER_ACTION,actionId:e,actionArgs:t,resolve:r,reject:u})})})}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},92245,(e,t,r)=>{"use strict";let n;Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"findSourceMapURL",{enumerable:!0,get:function(){return n}});("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},13258,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={DEFAULT_SEGMENT_KEY:function(){return f},NOT_FOUND_SEGMENT_KEY:function(){return d},PAGE_SEGMENT_KEY:function(){return s},addSearchParamsIfPageSegment:function(){return o},computeSelectedLayoutSegment:function(){return c},getSegmentValue:function(){return l},getSelectedLayoutSegmentPath:function(){return function e(t,r,n=!0,a=[]){let u;if(n)u=t[1][r];else{let e=t[1];u=e.children??Object.values(e)[0]}if(!u)return a;let i=l(u[0]);return!i||i.startsWith(s)?a:(a.push(i),e(u,r,!1,a))}},isGroupSegment:function(){return u},isParallelRouteSegment:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(e){return Array.isArray(e)?e[1]:e}function u(e){return"("===e[0]&&e.endsWith(")")}function i(e){return e.startsWith("@")&&"@children"!==e}function o(e,t){if(e.includes(s)){let e=JSON.stringify(t);return"{}"!==e?s+"?"+e:s}return e}function c(e,t){if(!e||0===e.length)return null;let r="children"===t?e[0]:e[e.length-1];return r===f?null:r}let s="__PAGE__",f="__DEFAULT__",d="/_not-found"},67764,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={HEAD_REQUEST_KEY:function(){return i},ROOT_SEGMENT_REQUEST_KEY:function(){return u},appendSegmentRequestKeyPart:function(){return c},convertSegmentPathToStaticExportFilename:function(){return d},createSegmentRequestKeyPart:function(){return o}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(13258),u="",i="/_head";function o(e){if("string"==typeof e)return e.startsWith(l.PAGE_SEGMENT_KEY)?l.PAGE_SEGMENT_KEY:"/_not-found"===e?"_not-found":f(e);let t=e[0];return"$"+e[2]+"$"+f(t)}function c(e,t,r){return e+"/"+("children"===t?r:`@${f(t)}/${r}`)}let s=/^[a-zA-Z0-9\-_@]+$/;function f(e){return s.test(e)?e:"!"+btoa(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")}function d(e){return`__next${e.replace(/\//g,".")}.txt`}},33906,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={doesStaticSegmentAppearInURL:function(){return d},getCacheKeyForDynamicParam:function(){return h},getParamValueFromCacheKey:function(){return y},getRenderedPathname:function(){return c},getRenderedSearch:function(){return o},parseDynamicParamFromURLPart:function(){return f},urlSearchParamsToParsedUrlQuery:function(){return _},urlToUrlWithoutFlightMarker:function(){return p}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(13258),u=e.r(67764),i=e.r(21768);function o(e){let t=e.headers.get(i.NEXT_REWRITTEN_QUERY_HEADER);return null!==t?""===t?"":"?"+t:p(new URL(e.url)).search}function c(e){return e.headers.get(i.NEXT_REWRITTEN_PATH_HEADER)??p(new URL(e.url)).pathname}function s(e){try{return encodeURIComponent(decodeURIComponent(e))}catch{return e}}function f(e,t,r){switch(e){case"c":return rs(e)):[];case"ci(..)(..)":case"ci(.)":case"ci(..)":case"ci(...)":{let n=e.length-2;return r0===t?s(e.slice(n)):s(e)):[]}case"oc":return rs(e)):null;case"d":if(r>=t.length)return"";return s(t[r]);case"di(..)(..)":case"di(.)":case"di(..)":case"di(...)":{let n=e.length-2;if(r>=t.length)return"";return s(t[r].slice(n))}default:return""}}function d(e){return!(e===u.ROOT_SEGMENT_REQUEST_KEY||e.startsWith(l.PAGE_SEGMENT_KEY)||"("===e[0]&&e.endsWith(")"))&&e!==l.DEFAULT_SEGMENT_KEY&&"/_not-found"!==e}function h(e,t){return"string"==typeof e?(0,l.addSearchParamsIfPageSegment)(e,Object.fromEntries(new URLSearchParams(t))):null===e?"":e.join("/")}function p(e){let t=new URL(e);if(t.searchParams.delete(i.NEXT_RSC_UNION_QUERY),t.pathname.endsWith(".txt")){let{pathname:e}=t,r=e.endsWith("/index.txt")?10:4;t.pathname=e.slice(0,-r)}return t}function y(e,t){return"c"===t||"oc"===t?e.split("/"):e}function _(e){let t={};for(let[r,n]of e.entries())void 0===t[r]?t[r]=n:Array.isArray(t[r])?t[r].push(n):t[r]=[t[r],n];return t}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},50590,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={createInitialRSCPayloadFromFallbackPrerender:function(){return c},getFlightDataPartsFromPath:function(){return o},getNextFlightSegmentPath:function(){return s},normalizeFlightData:function(){return f},prepareFlightRouterStateForRequest:function(){return d}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(13258),u=e.r(33906),i=e.r(51191);function o(e){let[t,r,n,a]=e.slice(-4),l=e.slice(0,-4);return{pathToSegment:l.slice(0,-1),segmentPath:l,segment:l[l.length-1]??"",tree:t,seedData:r,head:n,isHeadPartial:a,isRootRender:4===e.length}}function c(e,t){let r=(0,u.getRenderedPathname)(e),n=(0,u.getRenderedSearch)(e),a=(0,i.createHrefFromUrl)(new URL(location.href)),l=t.f[0],o=l[0],c={c:a.split("/"),q:n,i:t.i,f:[[function e(t,r,n,a){let l,i,o=t[0];if("string"==typeof o)l=o,i=(0,u.doesStaticSegmentAppearInURL)(o);else{let e=o[0],t=o[2],c=o[3],s=(0,u.parseDynamicParamFromURLPart)(t,n,a);l=[e,(0,u.getCacheKeyForDynamicParam)(s,r),t,c],i=!0}let c=i?a+1:a,s=t[1],f={};for(let t in s){let a=s[t];f[t]=e(a,r,n,c)}return[l,f,null,t[3],t[4]]}(o,n,r.split("/").filter(e=>""!==e),0),l[1],l[2],l[2]]],m:t.m,G:t.G,S:t.S,h:t.h};return t.b&&(c.b=t.b),c}function s(e){return e.slice(2)}function f(e){return"string"==typeof e?e:e.map(e=>o(e))}function d(e,t){return t?encodeURIComponent(JSON.stringify(e)):encodeURIComponent(JSON.stringify(function e(t){let[r,n,a,u,i]=t,o=function(e){if("string"==typeof e)return e.startsWith(l.PAGE_SEGMENT_KEY+"?")?l.PAGE_SEGMENT_KEY:e;let[t,r,n]=e;return[t,r,n,null]}(r),c={};for(let[t,r]of Object.entries(n))c[t]=e(r);let s=[o,c];return u&&(s[2]=null,s[3]=u),void 0!==i&&(s[4]=i),s}(e)))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},19921,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={djb2Hash:function(){return l},hexHash:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(e){let t=5381;for(let r=0;r>>0}function u(e){return l(e).toString(36).slice(0,5)}},86051,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={computeCacheBustingSearchParam:function(){return s},computeLegacyCacheBustingSearchParam:function(){return f}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(19921),u=new TextEncoder;function i(e){return void 0===e?"0":Array.isArray(e)?e.join(","):e}function o(e,t,r,n){return(void 0===e||"0"===e)&&void 0===t&&void 0===r&&void 0===n?null:[e??"0",i(t),i(r),i(n)].join(",")}async function c(e){var t=new Uint8Array(await globalThis.crypto.subtle.digest("SHA-256",u.encode(e))).subarray(0,12);let r="";for(let e=0;e{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={setCacheBustingSearchParam:function(){return o},setCacheBustingSearchParamWithHash:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(86051),u=e.r(21768);async function i(e){return"function"==typeof globalThis.crypto?.subtle?.digest?(0,l.computeCacheBustingSearchParam)(e[u.NEXT_ROUTER_PREFETCH_HEADER],e[u.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],e[u.NEXT_ROUTER_STATE_TREE_HEADER],e[u.NEXT_URL]):(0,l.computeLegacyCacheBustingSearchParam)(e[u.NEXT_ROUTER_PREFETCH_HEADER],e[u.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],e[u.NEXT_ROUTER_STATE_TREE_HEADER],e[u.NEXT_URL])}let o=async(e,t)=>{c(e,await i(t))},c=(e,t)=>{let r=e.search,n=(r.startsWith("?")?r.slice(1):r).split("&").filter(e=>e&&!e.startsWith(`${u.NEXT_RSC_UNION_QUERY}=`));t.length>0?n.push(`${u.NEXT_RSC_UNION_QUERY}=${t}`):n.push(`${u.NEXT_RSC_UNION_QUERY}`),e.search=n.length?`?${n.join("&")}`:""};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},32992,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={getNavigationBuildId:function(){return i},setNavigationBuildId:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l="";function u(e){l=e}function i(){return l}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},63416,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={ACTION_SUFFIX:function(){return _},APP_DIR_ALIAS:function(){return V},CACHE_ONE_YEAR_SECONDS:function(){return j},DOT_NEXT_ALIAS:function(){return k},ESLINT_DEFAULT_DIRS:function(){return ei},GSP_NO_RETURNED_VALUE:function(){return et},GSSP_COMPONENT_MEMBER_ERROR:function(){return ea},GSSP_NO_RETURNED_VALUE:function(){return er},HTML_CONTENT_TYPE_HEADER:function(){return u},INFINITE_CACHE:function(){return M},INSTRUMENTATION_HOOK_FILENAME:function(){return x},JSON_CONTENT_TYPE_HEADER:function(){return i},MATCHED_PATH_HEADER:function(){return s},MIDDLEWARE_FILENAME:function(){return I},MIDDLEWARE_LOCATION_REGEXP:function(){return D},NEXT_BODY_SUFFIX:function(){return E},NEXT_CACHE_IMPLICIT_TAG_ID:function(){return N},NEXT_CACHE_REVALIDATED_TAGS_HEADER:function(){return P},NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER:function(){return S},NEXT_CACHE_ROOT_PARAM_TAG_ID:function(){return C},NEXT_CACHE_SOFT_TAG_MAX_LENGTH:function(){return w},NEXT_CACHE_TAGS_HEADER:function(){return m},NEXT_CACHE_TAG_MAX_ITEMS:function(){return O},NEXT_CACHE_TAG_MAX_LENGTH:function(){return A},NEXT_DATA_SUFFIX:function(){return g},NEXT_INTERCEPTION_MARKER_PREFIX:function(){return c},NEXT_META_SUFFIX:function(){return v},NEXT_NAV_DEPLOYMENT_ID_HEADER:function(){return R},NEXT_QUERY_PARAM_PREFIX:function(){return o},NEXT_RESUME_HEADER:function(){return b},NEXT_RESUME_STATE_LENGTH_HEADER:function(){return T},NON_STANDARD_NODE_ENV:function(){return el},PAGES_DIR_ALIAS:function(){return L},PRERENDER_REVALIDATE_HEADER:function(){return f},PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER:function(){return d},PROXY_FILENAME:function(){return F},PROXY_LOCATION_REGEXP:function(){return U},PUBLIC_DIR_MIDDLEWARE_CONFLICT:function(){return W},ROOT_DIR_ALIAS:function(){return H},RSC_ACTION_CLIENT_WRAPPER_ALIAS:function(){return Y},RSC_ACTION_ENCRYPTION_ALIAS:function(){return q},RSC_ACTION_PROXY_ALIAS:function(){return $},RSC_ACTION_VALIDATE_ALIAS:function(){return X},RSC_CACHE_WRAPPER_ALIAS:function(){return G},RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS:function(){return K},RSC_MOD_REF_PROXY_ALIAS:function(){return B},RSC_SEGMENTS_DIR_SUFFIX:function(){return h},RSC_SEGMENT_SUFFIX:function(){return p},RSC_SUFFIX:function(){return y},SERVER_PROPS_EXPORT_ERROR:function(){return ee},SERVER_PROPS_GET_INIT_PROPS_CONFLICT:function(){return Q},SERVER_PROPS_SSG_CONFLICT:function(){return J},SERVER_RUNTIME:function(){return eo},SSG_FALLBACK_EXPORT_ERROR:function(){return eu},SSG_GET_INITIAL_PROPS_CONFLICT:function(){return z},STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR:function(){return Z},TEXT_PLAIN_CONTENT_TYPE_HEADER:function(){return l},UNSTABLE_REVALIDATE_RENAME_ERROR:function(){return en},WEBPACK_LAYERS:function(){return ef},WEBPACK_RESOURCE_QUERIES:function(){return ed},WEB_SOCKET_MAX_RECONNECTIONS:function(){return ec}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l="text/plain",u="text/html; charset=utf-8",i="application/json; charset=utf-8",o="nxtP",c="nxtI",s="x-matched-path",f="x-prerender-revalidate",d="x-prerender-revalidate-if-generated",h=".segments",p=".segment.rsc",y=".rsc",_=".action",g=".json",v=".meta",E=".body",R="x-nextjs-deployment-id",m="x-next-cache-tags",P="x-next-revalidated-tags",S="x-next-revalidate-tag-token",b="next-resume",T="x-next-resume-state-length",O=128,A=256,w=1024,N="_N_T_",C="_N_RP_",j=31536e3,M=0xfffffffe,I="middleware",D=`(?:src/)?${I}`,F="proxy",U=`(?:src/)?${F}`,x="instrumentation",L="private-next-pages",k="private-dot-next",H="private-next-root-dir",V="private-next-app-dir",B="private-next-rsc-mod-ref-proxy",X="private-next-rsc-action-validate",$="private-next-rsc-server-reference",G="private-next-rsc-cache-wrapper",K="private-next-rsc-track-dynamic-import",q="private-next-rsc-action-encryption",Y="private-next-rsc-action-client-wrapper",W="You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict",z="You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps",Q="You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.",J="You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps",Z="can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props",ee="pages with `getServerSideProps` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export",et="Your `getStaticProps` function did not return an object. Did you forget to add a `return`?",er="Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?",en="The `unstable_revalidate` property is available for general use.\nPlease use `revalidate` instead.",ea="can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member",el='You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env',eu="Pages with `fallback` enabled in `getStaticPaths` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export",ei=["app","pages","components","lib","src"],eo={edge:"edge",experimentalEdge:"experimental-edge",nodejs:"nodejs"},ec=12,es={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"},ef={...es,GROUP:{builtinReact:[es.reactServerComponents,es.actionBrowser],serverOnly:[es.reactServerComponents,es.actionBrowser,es.instrument,es.middleware],neutralTarget:[es.apiNode,es.apiEdge],clientOnly:[es.serverSideRendering,es.appPagesBrowser],bundled:[es.reactServerComponents,es.actionBrowser,es.serverSideRendering,es.appPagesBrowser,es.shared,es.instrument,es.middleware],appPages:[es.reactServerComponents,es.serverSideRendering,es.appPagesBrowser,es.actionBrowser]}},ed={edgeSSREntry:"__next_edge_ssr_entry__",metadata:"__next_metadata__",metadataRoute:"__next_metadata_route__",metadataImageMeta:"__next_metadata_image_meta__"}},6372,(e,t,r)=>{"use strict";function n(e){return(e.then(a),"fulfilled"!==e.status)?null:e.value}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"readVaryParams",{enumerable:!0,get:function(){return n}});let a=()=>{}},22744,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"PrefetchHint",{enumerable:!0,get:function(){return a}});var n,a=((n={})[n.HasRuntimePrefetch=1]="HasRuntimePrefetch",n[n.SubtreeHasInstant=2]="SubtreeHasInstant",n[n.SegmentHasLoadingBoundary=4]="SegmentHasLoadingBoundary",n[n.SubtreeHasLoadingBoundary=8]="SubtreeHasLoadingBoundary",n[n.IsRootLayout=16]="IsRootLayout",n[n.ParentInlinedIntoSelf=32]="ParentInlinedIntoSelf",n[n.InlinedIntoChild=64]="InlinedIntoChild",n[n.HeadInlinedIntoSelf=128]="HeadInlinedIntoSelf",n[n.HeadOutlined=256]="HeadOutlined",n)},56019,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"matchSegment",{enumerable:!0,get:function(){return n}});let n=(e,t)=>"string"==typeof e?"string"==typeof t&&e===t:"string"!=typeof t&&e[0]===t[0]&&e[1]===t[1];("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},77048,(e,t,r)=>{"use strict";function n(e,t){let r=new URL(e);return{pathname:r.pathname,search:r.search,nextUrl:t}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"createCacheKey",{enumerable:!0,get:function(){return n}}),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},9396,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a,l,u={FetchStrategy:function(){return s},NavigationResultTag:function(){return o},PrefetchPriority:function(){return c}};for(var i in u)Object.defineProperty(r,i,{enumerable:!0,get:u[i]});var o=((n={})[n.MPA=0]="MPA",n[n.Success=1]="Success",n[n.NoOp=2]="NoOp",n[n.Async=3]="Async",n),c=((a={})[a.Intent=2]="Intent",a[a.Default=1]="Default",a[a.Background=0]="Background",a),s=((l={})[l.LoadingBoundary=0]="LoadingBoundary",l[l.PPR=1]="PPR",l[l.PPRRuntime=2]="PPRRuntime",l[l.Full=3]="Full",l);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},511,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={Fallback:function(){return u},createCacheMap:function(){return o},deleteFromCacheMap:function(){return h},deleteMapEntry:function(){return p},getFromCacheMap:function(){return c},isValueExpired:function(){return s},setInCacheMap:function(){return f},setSizeInCacheMap:function(){return y}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(73861),u={},i={};function o(){return{parent:null,key:null,value:null,map:null,prev:null,next:null,size:0}}function c(e,t,r,n,a){let o=function e(t,r,n,a,l,o){let c,f;if(null!==a)c=a.value,f=a.parent;else if(l&&o!==i)c=i,f=null;else return null===n.value?n:s(t,r,n.value)?(p(n),null):n;let d=n.map;if(null!==d){let n=d.get(c);if(void 0!==n){let a=e(t,r,n,f,l,c);if(null!==a)return a}let a=d.get(u);if(void 0!==a)return e(t,r,a,f,l,c)}return null}(e,t,r,n,a,0);return null===o||null===o.value?null:((0,l.lruPut)(o),o.value)}function s(e,t,r){return r.staleAt<=e||r.version{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={cleanup:function(){return h},deleteFromLru:function(){return f},lruPut:function(){return c},updateLruSize:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(511),u=e.r(77709),i=null,o=0;function c(e){if(i===e)return;let t=e.prev,r=e.next;if(null===r||null===t?(o+=e.size,d()):(t.next=r,r.prev=t),null===i)e.prev=e,e.next=e;else{let t=i.prev;e.prev=t,null!==t&&(t.next=e),e.next=i,i.prev=e}i=e}function s(e,t){let r=e.size;e.size=t,null!==e.next&&(o=o-r+t,d())}function f(e){let t=e.next,r=e.prev;null!==t&&null!==r&&(o-=e.size,e.next=null,e.prev=null,i===e?t===i?i=null:(i=t,r.next=t,t.prev=r):(r.next=t,t.prev=r))}function d(){o<=0x3200000||(0,u.pingPrefetchScheduler)()}function h(){if(!(o<=0x3200000))for(;o>0x2d00000&&null!==i;){let e=i.prev;null!==e&&(0,l.deleteMapEntry)(e)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},77709,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={cancelPrefetchTask:function(){return m},isPrefetchTaskDirty:function(){return S},pingPrefetchScheduler:function(){return T},pingPrefetchTask:function(){return N},reschedulePrefetchTask:function(){return P},schedulePrefetchTask:function(){return R},startRevalidationCooldown:function(){return E}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(22744),u=e.r(56019),i=e.r(20896),o=e.r(77048),c=e.r(9396),s=e.r(13258),f=e.r(73861),d="function"==typeof queueMicrotask?queueMicrotask:e=>Promise.resolve().then(e).catch(e=>setTimeout(()=>{throw e})),h=[],p=0,y=0,_=!1,g=null,v=null;function E(){null!==v&&clearTimeout(v),v=setTimeout(()=>{v=null,T()},300)}function R(e,t,r,n,a,l){let u={key:e,treeAtTimeOfPrefetch:t,routeCacheVersion:(0,i.getCurrentRouteCacheVersion)(),segmentCacheVersion:(0,i.getCurrentSegmentCacheVersion)(),priority:n,phase:1,hasBackgroundWork:!1,spawnedRuntimePrefetches:null,fetchStrategy:r,sortId:y++,isCanceled:!1,onInvalidate:a,_heapIndex:-1};return b(u),k(h,u),T(),u}function m(e){e.isCanceled=!0,function(e,t){let r=t._heapIndex;if(-1!==r&&(t._heapIndex=-1,0!==e.length)){let n=e.pop();n!==t&&(e[r]=n,n._heapIndex=r,$(e,n,r))}}(h,e)}function P(e,t,r,n){e.isCanceled=!1,e.phase=1,e.sortId=y++,e.priority=e===g?c.PrefetchPriority.Intent:n,e.treeAtTimeOfPrefetch=t,e.fetchStrategy=r,b(e),-1!==e._heapIndex?B(h,e):k(h,e),T()}function S(e,t,r){return e.routeCacheVersion!==(0,i.getCurrentRouteCacheVersion)()||e.segmentCacheVersion!==(0,i.getCurrentSegmentCacheVersion)()||e.treeAtTimeOfPrefetch!==r||e.key.nextUrl!==t}function b(e){e.priority===c.PrefetchPriority.Intent&&e!==g&&(null!==g&&g.priority!==c.PrefetchPriority.Background&&(g.priority=c.PrefetchPriority.Default,B(h,g)),g=e)}function T(){_||(_=!0,d(C))}function O(e){return null===v&&(e.priority===c.PrefetchPriority.Intent?p<12:p<4)}function A(e){return p++,e.then(e=>null===e?(w(),null):(e.closed.then(w),e.value))}function w(){p--,T()}function N(e){e.isCanceled||-1!==e._heapIndex||(k(h,e),T())}function C(){_=!1;let e=Date.now(),t=H(h);for(;null!==t&&O(t);){t.routeCacheVersion=(0,i.getCurrentRouteCacheVersion)(),t.segmentCacheVersion=(0,i.getCurrentSegmentCacheVersion)();let r=function(e,t){let r=t.key,n=(0,i.readOrCreateRouteCacheEntry)(e,t,r),a=function(e,t,r){switch(r.status){case i.EntryStatus.Empty:A((0,i.fetchRouteOnCacheMiss)(r,t.key)),r.staleAt=e+6e4,r.status=i.EntryStatus.Pending;case i.EntryStatus.Pending:{let e=r.blockedTasks;return null===e?r.blockedTasks=new Set([t]):e.add(t),1}case i.EntryStatus.Rejected:break;case i.EntryStatus.Fulfilled:{let o;if(0!==t.phase)return 2;if(!O(t))return 0;let s=r.tree;switch(o=s.prefetchHints&l.PrefetchHint.SubtreeHasInstant?c.FetchStrategy.PPR:t.fetchStrategy===c.FetchStrategy.PPR?r.supportsPerSegmentPrefetching?c.FetchStrategy.PPR:c.FetchStrategy.LoadingBoundary:t.fetchStrategy){case c.FetchStrategy.PPR:{var n,a,u;if(D(n=e,a=t,u=r,(0,i.readOrCreateSegmentCacheEntry)(n,c.FetchStrategy.PPR,u.metadata),a.key,u.metadata),0===function e(t,r,n,a,u){let o=(0,i.readOrCreateSegmentCacheEntry)(t,r.fetchStrategy,u);D(t,r,n,o,r.key,u);let c=a[1],s=u.slots;if(null!==s)for(let a in s){if(!O(r))return 0;let u=s[a],o=u.segment,f=c[a],d=f?.[0];if(0===(void 0!==d&&x(n,o,d)?e(t,r,n,f,u):function e(t,r,n,a){if(a.prefetchHints&l.PrefetchHint.HasRuntimePrefetch)return null===r.spawnedRuntimePrefetches?r.spawnedRuntimePrefetches=new Set([a.requestKey]):r.spawnedRuntimePrefetches.add(a.requestKey),2;let u=(0,i.readOrCreateSegmentCacheEntry)(t,r.fetchStrategy,a);if(D(t,r,n,u,r.key,a),null!==a.slots){if(!O(r))return 0;for(let l in a.slots)if(0===e(t,r,n,a.slots[l]))return 0}return 2}(t,r,n,u)))return 0}return 2}(e,t,r,t.treeAtTimeOfPrefetch,s))return 0;let o=t.spawnedRuntimePrefetches;if(null!==o){let n=new Map;M(e,t,r,n,c.FetchStrategy.PPRRuntime);let a=function e(t,r,n,a,l,u){if(l.has(a.requestKey))return I(t,r,n,a,!1,u,c.FetchStrategy.PPRRuntime);let i={},o=a.slots;if(null!==o)for(let a in o){let c=o[a];i[a]=e(t,r,n,c,l,u)}return[a.segment,i,null,null]}(e,t,r,s,o,n);n.size>0&&A((0,i.fetchSegmentPrefetchesUsingDynamicRequest)(t,r,c.FetchStrategy.PPRRuntime,a,n))}return 2}case c.FetchStrategy.Full:case c.FetchStrategy.PPRRuntime:case c.FetchStrategy.LoadingBoundary:{let n=new Map;M(e,t,r,n,o);let a=function e(t,r,n,a,u,o,s){let f=a[1],d=u.slots,h={};if(null!==d)for(let a in d){let u=d[a],p=u.segment,y=f[a],_=y?.[0];if(void 0!==_&&x(n,p,_)){let l=e(t,r,n,y,u,o,s);h[a]=l}else switch(s){case c.FetchStrategy.LoadingBoundary:{let e=(u.prefetchHints&(l.PrefetchHint.SegmentHasLoadingBoundary|l.PrefetchHint.SubtreeHasLoadingBoundary))!=0?function e(t,r,n,a,u,o){let s=null===u?"inside-shared-layout":null,f=(0,i.readOrCreateSegmentCacheEntry)(t,r.fetchStrategy,a);switch(f.status){case i.EntryStatus.Empty:o.set(a.requestKey,(0,i.upgradeToPendingSegment)(f,c.FetchStrategy.LoadingBoundary)),"refetch"!==u&&(s=u="refetch");break;case i.EntryStatus.Fulfilled:if((a.prefetchHints&l.PrefetchHint.SegmentHasLoadingBoundary)!=0)return(0,i.convertRouteTreeToFlightRouterState)(a);case i.EntryStatus.Pending:case i.EntryStatus.Rejected:}let d={};if(null!==a.slots)for(let l in a.slots){let i=a.slots[l];d[l]=e(t,r,n,i,u,o)}return[a.segment,d,null,s]}(t,r,n,u,null,o):(0,i.convertRouteTreeToFlightRouterState)(u);h[a]=e;break}case c.FetchStrategy.PPRRuntime:{let e=I(t,r,n,u,!1,o,s);h[a]=e;break}case c.FetchStrategy.Full:{let e=I(t,r,n,u,!1,o,s);h[a]=e}}}return[u.segment,h,null,null]}(e,t,r,t.treeAtTimeOfPrefetch,s,n,o);return n.size>0&&A((0,i.fetchSegmentPrefetchesUsingDynamicRequest)(t,r,o,a,n)),2}}}}return 2}(e,t,n);if(0!==a&&""!==r.search){let n=new URL(r.pathname,location.origin),a=(0,o.createCacheKey)(n.href,r.nextUrl),l=(0,i.readOrCreateRouteCacheEntry)(e,t,a);switch(l.status){case i.EntryStatus.Empty:j(t)&&(l.status=i.EntryStatus.Pending,A((0,i.fetchRouteOnCacheMiss)(l,a)));case i.EntryStatus.Pending:case i.EntryStatus.Fulfilled:case i.EntryStatus.Rejected:}}return a}(e,t),n=t.hasBackgroundWork;switch(t.hasBackgroundWork=!1,t.spawnedRuntimePrefetches=null,r){case 0:return;case 1:V(h),t=H(h);continue;case 2:1===t.phase?(t.phase=0,B(h,t)):n?(t.priority=c.PrefetchPriority.Background,B(h,t)):V(h),t=H(h);continue}}null===t&&0===p&&(0,f.cleanup)()}function j(e){return e.priority===c.PrefetchPriority.Background||(e.hasBackgroundWork=!0,!1)}function M(e,t,r,n,a){I(e,t,r,r.metadata,!1,n,a===c.FetchStrategy.LoadingBoundary?c.FetchStrategy.Full:a)}function I(e,t,r,n,a,l,u){let o=(0,i.readOrCreateSegmentCacheEntry)(e,u,n),s=null;switch(o.status){case i.EntryStatus.Empty:if(u===c.FetchStrategy.Full&&null!==(0,i.attemptToFulfillDynamicSegmentFromBFCache)(e,o,n))break;s=(0,i.upgradeToPendingSegment)(o,u);break;case i.EntryStatus.Fulfilled:if(o.isPartial&&(0,i.canNewFetchStrategyProvideMoreContent)(o.fetchStrategy,u)){if(u===c.FetchStrategy.Full&&null!==(0,i.attemptToUpgradeSegmentFromBFCache)(e,n))break;s=U(e,n,u)}break;case i.EntryStatus.Pending:case i.EntryStatus.Rejected:(0,i.canNewFetchStrategyProvideMoreContent)(o.fetchStrategy,u)&&(s=U(e,n,u))}let f={};if(null!==n.slots)for(let i in n.slots){let o=n.slots[i];f[i]=I(e,t,r,o,a||null!==s,l,u)}null!==s&&l.set(n.requestKey,s);let d=a||null===s?null:"refetch";return[n.segment,f,null,d]}function D(e,t,r,n,a,l){switch(n.status){case i.EntryStatus.Empty:A((0,i.fetchSegmentOnCacheMiss)(r,(0,i.upgradeToPendingSegment)(n,c.FetchStrategy.PPR),a,l));break;case i.EntryStatus.Pending:switch(n.fetchStrategy){case c.FetchStrategy.PPR:case c.FetchStrategy.PPRRuntime:case c.FetchStrategy.Full:break;case c.FetchStrategy.LoadingBoundary:j(t)&&F(e,r,a,l);break;default:n.fetchStrategy}break;case i.EntryStatus.Rejected:switch(n.fetchStrategy){case c.FetchStrategy.PPR:case c.FetchStrategy.PPRRuntime:case c.FetchStrategy.Full:break;case c.FetchStrategy.LoadingBoundary:F(e,r,a,l);break;default:n.fetchStrategy}case i.EntryStatus.Fulfilled:}}function F(e,t,r,n){let a=(0,i.readOrCreateRevalidatingSegmentEntry)(e,c.FetchStrategy.PPR,n);switch(a.status){case i.EntryStatus.Empty:A((0,i.fetchSegmentOnCacheMiss)(t,(0,i.upgradeToPendingSegment)(a,c.FetchStrategy.PPR),r,n));case i.EntryStatus.Pending:case i.EntryStatus.Fulfilled:case i.EntryStatus.Rejected:}}function U(e,t,r){let n=(0,i.readOrCreateRevalidatingSegmentEntry)(e,r,t);if(n.status===i.EntryStatus.Empty)return(0,i.upgradeToPendingSegment)(n,r);if((0,i.canNewFetchStrategyProvideMoreContent)(n.fetchStrategy,r)){let n=(0,i.overwriteRevalidatingSegmentCacheEntry)(e,r,t);return(0,i.upgradeToPendingSegment)(n,r)}switch(n.status){case i.EntryStatus.Pending:case i.EntryStatus.Fulfilled:case i.EntryStatus.Rejected:default:return null}}function x(e,t,r){return r===s.PAGE_SEGMENT_KEY?t===(0,s.addSearchParamsIfPageSegment)(s.PAGE_SEGMENT_KEY,Object.fromEntries(new URLSearchParams(e.renderedSearch))):(0,u.matchSegment)(r,t)}function L(e,t){let r=t.priority-e.priority;if(0!==r)return r;let n=t.phase-e.phase;return 0!==n?n:t.sortId-e.sortId}function k(e,t){let r=e.length;e.push(t),t._heapIndex=r,X(e,t,r)}function H(e){return 0===e.length?null:e[0]}function V(e){if(0===e.length)return null;let t=e[0];t._heapIndex=-1;let r=e.pop();return r!==t&&(e[0]=r,r._heapIndex=0,$(e,r,0)),t}function B(e,t){let r=t._heapIndex;-1!==r&&(0===r?$(e,t,0):L(e[r-1>>>1],t)>0?X(e,t,r):$(e,t,r))}function X(e,t,r){let n=r;for(;n>0;){let r=n-1>>>1,a=e[r];if(!(L(a,t)>0))return;e[r]=t,t._heapIndex=r,e[n]=a,a._heapIndex=n,n=r}}function $(e,t,r){let n=r,a=e.length,l=a>>>1;for(;nL(l,t))uL(i,l)?(e[n]=i,i._heapIndex=n,e[u]=t,t._heapIndex=u,n=u):(e[n]=l,l._heapIndex=n,e[r]=t,t._heapIndex=r,n=r);else{if(!(uL(i,t)))return;e[n]=i,i._heapIndex=n,e[u]=t,t._heapIndex=u,n=u}}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},56655,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={appendLayoutVaryPath:function(){return s},clonePageVaryPathWithNewSearchParams:function(){return g},finalizeLayoutVaryPath:function(){return f},finalizeMetadataVaryPath:function(){return y},finalizePageVaryPath:function(){return h},getFulfilledRouteVaryPath:function(){return c},getFulfilledSegmentVaryPath:function(){return function e(t,r){return{id:t.id,value:null===t.id||r.has(t.id)?t.value:u.Fallback,parent:null===t.parent?null:e(t.parent,r)}}},getPartialLayoutVaryPath:function(){return d},getPartialPageVaryPath:function(){return p},getRenderedSearchFromVaryPath:function(){return v},getRouteVaryPath:function(){return o},getSegmentVaryPathForRequest:function(){return _}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(9396),u=e.r(511),i=e.r(67764);function o(e,t,r){return{id:null,value:e,parent:{id:"?",value:t,parent:{id:null,value:r,parent:null}}}}function c(e,t,r,n){return{id:null,value:e,parent:{id:"?",value:t,parent:{id:null,value:n?r:u.Fallback,parent:null}}}}function s(e,t,r){return{id:r,value:t,parent:e}}function f(e,t){return{id:null,value:e,parent:t}}function d(e){return e.parent}function h(e,t,r){return{id:null,value:e,parent:{id:"?",value:t,parent:r}}}function p(e){return e.parent.parent}function y(e,t,r){return{id:null,value:e+i.HEAD_REQUEST_KEY,parent:{id:"?",value:t,parent:r}}}function _(e,t){let r=t.varyPath;if(t.isPage&&e!==l.FetchStrategy.Full&&e!==l.FetchStrategy.PPRRuntime){let e=r.parent.parent;return{id:null,value:r.value,parent:{id:"?",value:u.Fallback,parent:e}}}return r}function g(e,t){let r=e.parent;return{id:null,value:e.value,parent:{id:"?",value:t,parent:r.parent}}}function v(e){let t=e.parent.value;return"string"==typeof t?t:null}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},72463,(e,t,r)=>{"use strict";function n(e){let t=e.indexOf("#"),r=e.indexOf("?"),n=r>-1&&(t<0||r-1?{pathname:e.substring(0,n?r:t),query:n?e.substring(r,t>-1?t:void 0):"",hash:t>-1?e.slice(t):""}:{pathname:e,query:"",hash:""}}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"parsePath",{enumerable:!0,get:function(){return n}})},41858,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"addPathPrefix",{enumerable:!0,get:function(){return a}});let n=e.r(72463);function a(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:a,hash:l}=(0,n.parsePath)(e);return`${t}${r}${a}${l}`}},38281,(e,t,r)=>{"use strict";function n(e){return e.replace(/\/$/,"")||"/"}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"removeTrailingSlash",{enumerable:!0,get:function(){return n}})},82823,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"normalizePathTrailingSlash",{enumerable:!0,get:function(){return l}});let n=e.r(38281),a=e.r(72463),l=e=>{if(!e.startsWith("/"))return e;let{pathname:t,query:r,hash:l}=(0,a.parsePath)(e);return`${(0,n.removeTrailingSlash)(t)}${r}${l}`};("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},5550,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"addBasePath",{enumerable:!0,get:function(){return l}});let n=e.r(41858),a=e.r(82823);function l(e,t){return(0,a.normalizePathTrailingSlash)((0,n.addPathPrefix)(e,""))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},57630,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={createPrefetchURL:function(){return o},isExternalURL:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(82604),u=e.r(5550);function i(e){return e.origin!==window.location.origin}function o(e){let t;if((0,l.isBot)(window.navigator.userAgent))return null;try{t=new URL((0,u.addBasePath)(e),window.location.href)}catch(t){throw Object.defineProperty(Error(`Cannot prefetch '${e}' because it cannot be converted to a URL.`),"__NEXT_ERROR_CODE",{value:"E234",enumerable:!1,configurable:!0})}return i(t)?null:t}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},91949,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={IDLE_LINK_STATUS:function(){return f},PENDING_LINK_STATUS:function(){return s},getLinkForCurrentNavigation:function(){return p},mountFormInstance:function(){return m},mountLinkInstance:function(){return R},onLinkVisibilityChanged:function(){return S},onNavigationIntent:function(){return b},pingVisibleLinks:function(){return O},setLinkForCurrentNavigation:function(){return d},unmountLinkForCurrentNavigation:function(){return h},unmountPrefetchableInstance:function(){return P}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(9396),u=e.r(77048),i=e.r(77709),o=e.r(71645),c=null,s={pending:!0},f={pending:!1};function d(e){(0,o.startTransition)(()=>{c?.setOptimisticLinkStatus(f),e?.setOptimisticLinkStatus(s),c=e})}function h(e){c===e&&(c=null)}function p(){return c}let y="function"==typeof WeakMap?new WeakMap:new Map,_=new Set,g="function"==typeof IntersectionObserver?new IntersectionObserver(function(e){for(let t of e){let e=t.intersectionRatio>0;S(t.target,e)}},{rootMargin:"200px"}):null;function v(e,t){void 0!==y.get(e)&&P(e),y.set(e,t),null!==g&&g.observe(e)}function E(t){if(!("u">typeof window))return null;{let{createPrefetchURL:r}=e.r(57630);try{return r(t)}catch{return("function"==typeof reportError?reportError:console.error)(`Cannot prefetch '${t}' because it cannot be converted to a URL.`),null}}}function R(e,t,r,n,a,l){if(a){let a=E(t);if(null!==a){let t={router:r,fetchStrategy:n,isVisible:!1,prefetchTask:null,prefetchHref:a.href,setOptimisticLinkStatus:l};return v(e,t),t}}return{router:r,fetchStrategy:n,isVisible:!1,prefetchTask:null,prefetchHref:null,setOptimisticLinkStatus:l}}function m(e,t,r,n){let a=E(t);null===a||v(e,{router:r,fetchStrategy:n,isVisible:!1,prefetchTask:null,prefetchHref:a.href,setOptimisticLinkStatus:null})}function P(e){let t=y.get(e);if(void 0!==t){y.delete(e),_.delete(t);let r=t.prefetchTask;null!==r&&(0,i.cancelPrefetchTask)(r)}null!==g&&g.unobserve(e)}function S(e,t){let r=y.get(e);void 0!==r&&(r.isVisible=t,t?_.add(r):_.delete(r),T(r,l.PrefetchPriority.Default))}function b(e,t){let r=y.get(e);void 0!==r&&void 0!==r&&T(r,l.PrefetchPriority.Intent)}function T(t,r){if("u">typeof window){let n=t.prefetchTask;if(!t.isVisible){null!==n&&(0,i.cancelPrefetchTask)(n);return}let{getCurrentAppRouterState:a}=e.r(99781),l=a();if(null!==l){let e=l.tree;if(null===n){let n=l.nextUrl,a=(0,u.createCacheKey)(t.prefetchHref,n);t.prefetchTask=(0,i.schedulePrefetchTask)(a,e,t.fetchStrategy,r,null)}else(0,i.reschedulePrefetchTask)(n,e,t.fetchStrategy,r)}}}function O(e,t){for(let r of _){let n=r.prefetchTask;if(null!==n&&!(0,i.isPrefetchTaskDirty)(n,e,t))continue;null!==n&&(0,i.cancelPrefetchTask)(n);let a=(0,u.createCacheKey)(r.prefetchHref,e);r.prefetchTask=(0,i.schedulePrefetchTask)(a,t,r.fetchStrategy,l.PrefetchPriority.Default,null)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},79027,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={UnknownDynamicStaleTime:function(){return i},computeDynamicStaleAt:function(){return o},invalidateBfCache:function(){return f},readFromBFCache:function(){return y},readFromBFCacheDuringRegularNavigation:function(){return _},updateBFCacheEntryStaleAt:function(){return p},writeHeadToBFCache:function(){return h},writeToBFCache:function(){return d}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(54069),u=e.r(511),i=-1;function o(e,t){return t!==i?e+1e3*t:e+l.DYNAMIC_STALETIME_MS}let c=(0,u.createCacheMap)(),s=0;function f(){"u">typeof window&&s++}function d(e,t,r,n,a,l,i){if("u"{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={discoverKnownRoute:function(){return s},matchKnownRoute:function(){return d},resetKnownRoutes:function(){return h}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(20896),u=e.r(33906),i=e.r(56655);function o(){return{staticChildren:null,dynamicChild:null,dynamicChildParamName:null,dynamicChildParamType:null,pattern:null}}let c=o();function s(e,t,r,n,a,u,i,o,s,d){let h=t.split("/").filter(e=>""!==e),p=h.length>0?h[0]:null,y=h.length>0?h.slice(1):[];if(null!==n){let h=(0,l.fulfillRouteCacheEntry)(e,n,a,u,i,o,s);return d&&(h.hasDynamicRewrite=!0),f(c,a,p,y,h,e,t,r,a,u,i,o,s,d),h}return f(c,a,p,y,null,e,t,r,a,u,i,o,s,d)}function f(e,t,r,n,a,i,c,s,d,h,p,y,_,g){let v,E,R=t.segment,m=null,P=null,S=null;"string"==typeof R?v=(0,u.doesStaticSegmentAppearInURL)(R):(m=R[0],P=R[2],S=R[3],v=!0);let b=e,T=r,O=n;if(v){if(null===m&&r!==R)return null!==a?a:(0,l.writeRouteIntoCache)(i,c,s,d,h,p,y,_);if(null!==m&&null!==P){if(b=function(e,t,r){if(null!==e.dynamicChild)return e.dynamicChild;let n=o();return e.dynamicChild=n,e.dynamicChildParamName=t,e.dynamicChildParamType=r,n}(e,m,P),null!==S)for(let t of(null===e.staticChildren&&(e.staticChildren=new Map),S))e.staticChildren.has(t)||e.staticChildren.set(t,o())}else{null===e.staticChildren&&(e.staticChildren=new Map);let t=e.staticChildren.get(r);void 0===t&&(t=o(),e.staticChildren.set(r,t)),b=t}T=n.length>0?n[0]:null,O=n.length>0?n.slice(1):[]}let A=t.slots,w=null;if(null!==A){for(let e in A){let t=A[e];null===t.refreshState&&(w=f(b,t,T,O,a,i,c,s,d,h,p,y,_,g))}return null!==w?w:null!==a?a:(0,l.writeRouteIntoCache)(i,c,s,d,h,p,y,_)}return null!==b.pattern?(g&&(b.pattern.hasDynamicRewrite=!0),b.pattern):(E=null!==a?a:(0,l.writeRouteIntoCache)(i,c,s,d,h,p,y,_),g&&(E.hasDynamicRewrite=!0),b.pattern=E,E)}function d(e,t){let r=e.split("/").filter(e=>""!==e),n=new Map,a=function e(t,r,n,a){let l=n{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a={EntryStatus:function(){return w},attemptToFulfillDynamicSegmentFromBFCache:function(){return ee},attemptToUpgradeSegmentFromBFCache:function(){return et},canNewFetchStrategyProvideMoreContent:function(){return eS},convertReusedFlightRouterStateToRouteTree:function(){return ef},convertRootFlightRouterStateToRouteTree:function(){return es},convertRouteTreeToFlightRouterState:function(){return function e(t){let r={};if(null!==t.slots)for(let n in t.slots)r[n]=e(t.slots[n]);return[t.segment,r,null,null]}},createDetachedSegmentCacheEntry:function(){return J},createMetadataRouteTree:function(){return en},deprecated_requestOptimisticRouteCacheEntry:function(){return K},fetchInlinedSegmentsOnCacheMiss:function(){return ey},fetchRouteOnCacheMiss:function(){return eh},fetchSegmentOnCacheMiss:function(){return ep},fetchSegmentPrefetchesUsingDynamicRequest:function(){return e_},fulfillRouteCacheEntry:function(){return ea},getCurrentRouteCacheVersion:function(){return F},getCurrentSegmentCacheVersion:function(){return U},getStaleAt:function(){return eT},getStaleTimeMs:function(){return A},invalidateEntirePrefetchCache:function(){return x},invalidateRouteCacheEntries:function(){return L},invalidateSegmentCacheEntries:function(){return k},markRouteEntryAsDynamicRewrite:function(){return eu},overwriteRevalidatingSegmentCacheEntry:function(){return z},pingInvalidationListeners:function(){return H},processRuntimePrefetchStream:function(){return eA},readOrCreateRevalidatingSegmentEntry:function(){return W},readOrCreateRouteCacheEntry:function(){return G},readOrCreateSegmentCacheEntry:function(){return Y},readRouteCacheEntry:function(){return V},readSegmentCacheEntry:function(){return B},stripIsPartialByte:function(){return ew},upgradeToPendingSegment:function(){return Z},upsertSegmentEntry:function(){return Q},waitForSegmentCacheEntry:function(){return X},writeDynamicRenderResponseIntoCache:function(){return ev},writeRouteIntoCache:function(){return el},writeStaticStageResponseIntoCache:function(){return eO}};for(var l in a)Object.defineProperty(r,l,{enumerable:!0,get:a[l]});let u=e.r(6372),i=e.r(21768),o=e.r(87288),c=e.r(77709),s=e.r(56655),f=e.r(51191),d=e.r(77048),h=e.r(33906),p=e.r(511),y=e.r(67764),_=e.r(50590),g=e.r(54069),v=e.r(91949),E=e.r(13258),R=e.r(9396),m=e.r(39470),P=e.r(79027),S=e.r(96167),b=e.r(60355),T=e.r(32992),O=e.r(63416);function A(e){return 1e3*Math.max(e,30)}var w=((n={})[n.Empty=0]="Empty",n[n.Pending=1]="Pending",n[n.Fulfilled=2]="Fulfilled",n[n.Rejected=3]="Rejected",n);let N=["",{},null,"metadata-only"],C=(0,p.createCacheMap)(),j=(0,p.createCacheMap)(),M=null,I=0,D=0;function F(){return I}function U(){return D}function x(e,t){I++,D++,(0,v.pingVisibleLinks)(e,t),H(e,t)}function L(e,t){I++,(0,v.pingVisibleLinks)(e,t),H(e,t)}function k(e,t){D++,(0,v.pingVisibleLinks)(e,t),H(e,t)}function H(e,t){if(null!==M){let r=M;for(let n of(M=null,r))(0,c.isPrefetchTaskDirty)(n,e,t)&&function(e){let t=e.onInvalidate;if(null!==t){e.onInvalidate=null;try{t()}catch(e){"function"==typeof reportError?reportError(e):console.error(e)}}}(n)}}function V(e,t){let r=(0,s.getRouteVaryPath)(t.pathname,t.search,t.nextUrl),n=(0,p.getFromCacheMap)(e,I,C,r,!1);return null!==n?n:null}function B(e,t){return(0,p.getFromCacheMap)(e,D,j,t,!1)}function X(e){let t=e.promise;return null===t&&(t=e.promise=(0,m.createPromiseWithResolvers)()),t.promise}function $(){return{canonicalUrl:null,status:0,blockedTasks:null,tree:null,metadata:null,couldBeIntercepted:!0,supportsPerSegmentPrefetching:!1,renderedSearch:null,ref:null,size:0,staleAt:1/0,version:I}}function G(e,t,r){null!==t.onInvalidate&&(null===M?M=new Set([t]):M.add(t));let n=V(e,r);if(null!==n)return n;let a=$(),l=(0,s.getRouteVaryPath)(r.pathname,r.search,r.nextUrl);return(0,p.setInCacheMap)(C,l,a,!1),a}function K(e,t,r){let n=t.search;if(""===n)return null;let a=new URL(t);a.search="";let l=V(e,(0,d.createCacheKey)(a.href,r));if(null===l||2!==l.status)return null;let u=new URL(l.canonicalUrl,t.origin),i=""!==u.search?u.search:n,o=""!==l.renderedSearch?l.renderedSearch:n,c=new URL(l.canonicalUrl,location.origin);return c.search=i,{canonicalUrl:(0,f.createHrefFromUrl)(c),status:2,blockedTasks:null,tree:q(l.tree,o),metadata:q(l.metadata,o),couldBeIntercepted:l.couldBeIntercepted,supportsPerSegmentPrefetching:l.supportsPerSegmentPrefetching,hasDynamicRewrite:l.hasDynamicRewrite,renderedSearch:o,ref:null,size:0,staleAt:l.staleAt,version:l.version}}function q(e,t){let r=null,n=e.slots;if(null!==n)for(let e in r={},n){let a=n[e];r[e]=q(a,t)}return e.isPage?{requestKey:e.requestKey,segment:e.segment,refreshState:e.refreshState,varyPath:(0,s.clonePageVaryPathWithNewSearchParams)(e.varyPath,t),isPage:!0,slots:r,prefetchHints:e.prefetchHints}:{requestKey:e.requestKey,segment:e.segment,refreshState:e.refreshState,varyPath:e.varyPath,isPage:!1,slots:r,prefetchHints:e.prefetchHints}}function Y(e,t,r){let n=B(e,r.varyPath);if(null!==n)return n;let a=(0,s.getSegmentVaryPathForRequest)(t,r),l=J(e);return(0,p.setInCacheMap)(j,a,l,!1),l}function W(e,t,r){var n;let a=(n=r.varyPath,(0,p.getFromCacheMap)(e,D,j,n,!0));if(null!==a)return a;let l=(0,s.getSegmentVaryPathForRequest)(t,r),u=J(e);return(0,p.setInCacheMap)(j,l,u,!0),u}function z(e,t,r){let n=(0,s.getSegmentVaryPathForRequest)(t,r),a=J(e);return(0,p.setInCacheMap)(j,n,a,!0),a}function Q(e,t,r){if((0,p.isValueExpired)(e,D,r))return null;let n=B(e,t);if(null!==n){var a;if(r.fetchStrategy!==n.fetchStrategy&&(a=n.fetchStrategy,!(ar?null:ei(Z(t,R.FetchStrategy.Full),a.rsc,r,!1)}return null}function et(e,t){let r=t.varyPath,n=(0,P.readFromBFCache)(r);if(null!==n){let r=n.navigatedAt+g.STATIC_STALETIME_MS;if(e>r)return null;let a=ei(Z(J(e),R.FetchStrategy.Full),n.rsc,r,!1),l=Q(e,(0,s.getSegmentVaryPathForRequest)(R.FetchStrategy.Full,t),a);if(null!==l&&2===l.status)return l}return null}function er(e){let t=e.blockedTasks;if(null!==t){for(let e of t)(0,c.pingPrefetchTask)(e);e.blockedTasks=null}}function en(e){return{requestKey:y.HEAD_REQUEST_KEY,segment:y.HEAD_REQUEST_KEY,refreshState:null,varyPath:e,isPage:!0,slots:null,prefetchHints:0}}function ea(e,t,r,n,a,l,u){let i=(0,s.getRenderedSearchFromVaryPath)(n)??"";return t.status=2,t.tree=r,t.metadata=en(n),t.staleAt=e+g.STATIC_STALETIME_MS,t.couldBeIntercepted=a,t.canonicalUrl=l,t.renderedSearch=i,t.supportsPerSegmentPrefetching=u,t.hasDynamicRewrite=!1,er(t),t}function el(e,t,r,n,a,l,u,i){let o=ea(e,$(),n,a,l,u,i),c=o.renderedSearch,f=(0,s.getFulfilledRouteVaryPath)(t,c,r,l);return(0,p.setInCacheMap)(C,f,o,!1),o}function eu(e){e.hasDynamicRewrite=!0}function ei(e,t,r,n){return e.status=2,e.rsc=t,e.staleAt=r,e.isPartial=n,null!==e.promise&&(e.promise.resolve(e),e.promise=null),e}function eo(e,t){e.status=3,e.staleAt=t,er(e)}function ec(e,t){e.status=3,e.staleAt=t,null!==e.promise&&(e.promise.resolve(null),e.promise=null)}function es(e,t,r){return ed(e,y.ROOT_SEGMENT_REQUEST_KEY,null,t,r)}function ef(e,t,r,n,a){let l=e.isPage?(0,s.getPartialPageVaryPath)(e.varyPath):(0,s.getPartialLayoutVaryPath)(e.varyPath),u=r[0],i=e.requestKey,o=(0,y.createSegmentRequestKeyPart)(u);return ed(r,(0,y.appendSegmentRequestKeyPart)(i,t,o),l,n,a)}function ed(e,t,r,n,a){let l,u,i,o,c=e[0],f=e[2]??null,d=null!==f?{canonicalUrl:f[0],renderedSearch:f[1]}:null,h=null!==d?d.renderedSearch:n;if(Array.isArray(c)){i=!1;let e=c[1],n=c[0];u=(0,s.appendLayoutVaryPath)(r,e,n),o=(0,s.finalizeLayoutVaryPath)(t,u),l=c}else u=r,t.endsWith(E.PAGE_SEGMENT_KEY)?(i=!0,l=E.PAGE_SEGMENT_KEY,o=(0,s.finalizePageVaryPath)(t,h,u),null===a.metadataVaryPath&&(a.metadataVaryPath=(0,s.finalizeMetadataVaryPath)(t,h,u))):(i=!1,l=c,o=(0,s.finalizeLayoutVaryPath)(t,u));let p=null,_=e[1];for(let e in _){let r=_[e],n=r[0],l=(0,y.createSegmentRequestKeyPart)(n),i=ed(r,(0,y.appendSegmentRequestKeyPart)(t,e,l),u,h,a);null===p?p={[e]:i}:p[e]=i}return{requestKey:t,segment:l,refreshState:d,varyPath:o,isPage:i,slots:p,prefetchHints:e[4]??0}}async function eh(e,t){let r=t.pathname,n=t.search,a=t.nextUrl,l="/_tree",u={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_PREFETCH_HEADER]:"1",[i.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:l};null!==a&&(u[i.NEXT_URL]=a),eb(u);try{let t,c,d=new URL(r+n,location.origin);{let r=await fetch(d,{method:"HEAD"});if(r.status<200||r.status>=400)return eo(e,Date.now()+1e4),null;c=r.redirected?new URL(r.url):d,t=await eR(eP(c,l),u)}if(!t||!t.ok||204===t.status||!t.body)return eo(e,Date.now()+1e4),null;let _=(0,f.createHrefFromUrl)(c),g=t.headers.get("vary"),v=null!==g&&g.includes(i.NEXT_URL),R=(0,m.createPromiseWithResolvers)(),P="2"===t.headers.get(i.NEXT_DID_POSTPONE_HEADER)||!0;{let n,l,{stream:i,size:c}=await em(t.body);R.resolve(),(0,p.setSizeInCacheMap)(e,c);let f=await (0,o.createFromNextReadableStream)(i,u,{allowPartialStream:!0});if((t.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??f.buildId)!==(0,T.getNavigationBuildId)())return eo(e,Date.now()+1e4),null;let d=(0,h.getRenderedPathname)(t),g=(0,h.getRenderedSearch)(t),m={metadataVaryPath:null},b=(n=d.split("/").filter(e=>""!==e),l=y.ROOT_SEGMENT_REQUEST_KEY,function e(t,r,n,a,l,u,i,o){let c,f,d=null,p=t.slots;if(null!==p)for(let t in c=!1,f=(0,s.finalizeLayoutVaryPath)(a,n),d={},p){let r,c,f,_=p[t],g=_.name,v=_.param;if(null!==v){let e=(0,h.parseDynamicParamFromURLPart)(v.type,l,u),t=null!==v.key?v.key:(0,h.getCacheKeyForDynamicParam)(e,"");f=(0,s.appendLayoutVaryPath)(n,t,g),c=[g,t,v.type,v.siblings],r=!0}else f=n,c=g,r=(0,h.doesStaticSegmentAppearInURL)(g);let E=r?u+1:u,R=(0,y.createSegmentRequestKeyPart)(c),m=(0,y.appendSegmentRequestKeyPart)(a,t,R);d[t]=e(_,c,f,m,l,E,i,o)}else a.endsWith(E.PAGE_SEGMENT_KEY)?(c=!0,f=(0,s.finalizePageVaryPath)(a,i,n),null===o.metadataVaryPath&&(o.metadataVaryPath=(0,s.finalizeMetadataVaryPath)(a,i,n))):(c=!1,f=(0,s.finalizeLayoutVaryPath)(a,n));return{requestKey:a,segment:r,refreshState:null,varyPath:f,isPage:c,slots:d,prefetchHints:t.prefetchHints}}(f.tree,l,null,y.ROOT_SEGMENT_REQUEST_KEY,n,0,g,m)),A=m.metadataVaryPath;if(null===A)return eo(e,Date.now()+1e4),null;(0,S.discoverKnownRoute)(Date.now(),r,a,e,b,A,v,_,P,!1)}if(!v){let t=(0,s.getFulfilledRouteVaryPath)(r,n,a,v);(0,p.setInCacheMap)(C,t,e,!1)}return{value:null,closed:R.promise}}catch(t){return eo(e,Date.now()+1e4),null}}async function ep(e,t,r,n){let a=new URL(e.canonicalUrl,location.origin),l=r.nextUrl,u=n.requestKey,c=u===y.ROOT_SEGMENT_REQUEST_KEY?"/_index":u,f={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_PREFETCH_HEADER]:"1",[i.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:c};null!==l&&(f[i.NEXT_URL]=l),eb(f);let d=eP(a,c);try{let e=await eR(d,f);if(!e||!e.ok||204===e.status||"2"!==e.headers.get(i.NEXT_DID_POSTPONE_HEADER)&&0||!e.body)return ec(t,Date.now()+1e4),null;let r=(0,m.createPromiseWithResolvers)(),{stream:a,size:l}=await em(e.body);r.resolve(),(0,p.setSizeInCacheMap)(t,l);let u=await (0,o.createFromNextReadableStream)(a,f,{allowPartialStream:!0});if((e.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??u.buildId)!==(0,T.getNavigationBuildId)())return ec(t,Date.now()+1e4),null;let c=Date.now(),h=c+A(u.staleTime),y=ei(t,u.rsc,h,u.isPartial);u.varyParams;let _=(0,s.getSegmentVaryPathForRequest)(t.fetchStrategy,n);return Q(c,_,y),{value:y,closed:r.promise}}catch(e){return ec(t,Date.now()+1e4),null}}async function ey(e,t,r,n){let a=new URL(e.canonicalUrl,location.origin),l=t.nextUrl,u={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_PREFETCH_HEADER]:"1",[i.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:"/"+E.PAGE_SEGMENT_KEY};null!==l&&(u[i.NEXT_URL]=l),eb(u);try{let t=await eR(a,u);if(!t||!t.ok||204===t.status||"2"!==t.headers.get(i.NEXT_DID_POSTPONE_HEADER)&&0||!t.body)return eg(n,Date.now()+1e4),null;let l=(0,m.createPromiseWithResolvers)(),{stream:c}=await em(t.body);l.resolve();let s=await (0,o.createFromNextReadableStream)(c,u,{allowPartialStream:!0});if((t.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??s.tree.segment.buildId)!==(0,T.getNavigationBuildId)())return eg(n,Date.now()+1e4),null;let f=Date.now();!function e(t,r,n,a,l){let u=a.segment,i=t+A(u.staleTime),o=l.get(n.requestKey);if(void 0!==o)ei(o,u.rsc,i,u.isPartial);else{let e=Y(t,R.FetchStrategy.PPR,n);0===e.status&&ei(Z(e,R.FetchStrategy.PPR),u.rsc,i,u.isPartial)}if(null!==n.slots&&null!==a.slots)for(let u in n.slots){let i=n.slots[u],o=a.slots[u];void 0!==o&&e(t,r,i,o,l)}}(f,e,r,s.tree,n);let d=f+A(s.head.staleTime),h=e.metadata.requestKey,p=n.get(h);if(void 0!==p)ei(p,s.head.rsc,d,s.head.isPartial);else{let t=Y(f,R.FetchStrategy.PPR,e.metadata);0===t.status&&ei(Z(t,R.FetchStrategy.PPR),s.head.rsc,d,s.head.isPartial)}return eg(n,Date.now()+1e4),{value:null,closed:l.promise}}catch(e){return eg(n,Date.now()+1e4),null}}async function e_(e,t,r,n,a){let l=e.key,c=new URL(t.canonicalUrl,location.origin),s=l.nextUrl;1===a.size&&a.has(t.metadata.requestKey)&&(n=N);let f={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_STATE_TREE_HEADER]:(0,_.prepareFlightRouterStateForRequest)(n)};switch(null!==s&&(f[i.NEXT_URL]=s),r){case R.FetchStrategy.Full:break;case R.FetchStrategy.PPRRuntime:f[i.NEXT_ROUTER_PREFETCH_HEADER]="2";break;case R.FetchStrategy.LoadingBoundary:f[i.NEXT_ROUTER_PREFETCH_HEADER]="1"}try{let e,l=await eR(c,f);if(!l||!l.ok||!l.body)return eg(a,Date.now()+1e4),null;let i=(0,h.getRenderedSearch)(l);if(i!==t.renderedSearch)return eg(a,Date.now()+1e4),null;let s=(0,m.createPromiseWithResolvers)(),v=null,E=null;if(r===R.FetchStrategy.Full){var d,y,g;let t,r;d=l.body,y=s.resolve,g=function(e){if(null===v)return;let t=e/v.length;for(let e of v)(0,p.setSizeInCacheMap)(e,t)},t=0,r=d.getReader(),e=new ReadableStream({async pull(e){for(;;){let{done:n,value:a}=await r.read();if(!n){e.enqueue(a),g(t+=a.byteLength);continue}e.close(),y();return}}})}else{let{stream:t,size:r}=await em(l.body);s.resolve(),e=t,E=r}let[S,T]=await Promise.all([(0,o.createFromNextReadableStream)(e,f,{allowPartialStream:!0}),l.cacheData]),A=S.h,w=null!==A?(0,u.readVaryParams)(A):null,N=Date.now(),C=await eT(N,S.s,l),j=r===R.FetchStrategy.PPRRuntime&&(T?.isResponsePartial??!1),M=l.headers.get(O.NEXT_NAV_DEPLOYMENT_ID_HEADER)??S.b,I=(0,_.normalizeFlightData)(S.f);if("string"==typeof I)return eg(a,Date.now()+1e4),null;let D=(0,b.convertServerPatchToFullTree)(N,n,I,i,P.UnknownDynamicStaleTime);if(v=ev(N,r,I,M,j,w,C,D,a),null!==E&&null!==v&&v.length>0){let e=E/v.length;for(let t of v)(0,p.setSizeInCacheMap)(t,e)}return{value:null,closed:s.promise}}catch(e){return eg(a,Date.now()+1e4),null}}function eg(e,t){let r=[];for(let n of e.values())1===n.status?ec(n,t):2===n.status&&r.push(n);return r}function ev(e,t,r,n,a,l,i,o,c){if(n&&n!==(0,T.getNavigationBuildId)())return null!==c&&eg(c,e+1e4),null;let s=o.routeTree,f=null!==o.metadataVaryPath?en(o.metadataVaryPath):null;for(let n of r){let r=n.seedData;if(null!==r){let l=n.segmentPath,o=s;for(let t=0;t1){t=new Uint8Array(a);let e=0;for(let r of n)t.set(r,e),e+=r.byteLength}else t=new Uint8Array(0);return{stream:new ReadableStream({start(e){e.enqueue(t),e.close()}}),size:a}}function eP(e,t){{let r=new URL(e),n=r.pathname.endsWith("/")?r.pathname.slice(0,-1):r.pathname,a=(0,y.convertSegmentPathToStaticExportFilename)(t);return r.pathname=`${n}/${a}`,r}}function eS(e,t){return ee.close()}),isPartial:!1};let a=n[0],l=35===a||126===a,u=l?n.byteLength>1?n.subarray(1):null:n;return{isPartial:!!l&&126===a,stream:new ReadableStream({start(e){u&&e.enqueue(u)},async pull(e){let r=await t.read();r.done?e.close():e.enqueue(r.value)}})}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},87288,(e,t,r)=>{"use strict";let n;Object.defineProperty(r,"__esModule",{value:!0});var a={createFetch:function(){return T},createFromNextReadableStream:function(){return O},decodeStaticStage:function(){return b},fetchServerResponse:function(){return m},processFetch:function(){return P},resolveStaticStageData:function(){return S}};for(var l in a)Object.defineProperty(r,l,{enumerable:!0,get:a[l]});let u=e.r(35326);e.r(12718);let i=e.r(21768),o=e.r(32120),c=e.r(92245),s=e.r(50590),f=e.r(88093),d=e.r(33906),h=e.r(43369),p=e.r(32992),y=e.r(63416);e.r(20896);let _=e.r(79027),g=u.createFromReadableStream,v=u.createFromFetch;function E(e){return(0,d.urlToUrlWithoutFlightMarker)(new URL(e,location.origin)).toString()}let R=!1;async function m(e,t){let{flightRouterState:r,nextUrl:n}=t,a={[i.RSC_HEADER]:"1",[i.NEXT_ROUTER_STATE_TREE_HEADER]:(0,s.prepareFlightRouterStateForRequest)(r,t.isHmrRefresh)};n&&(a[i.NEXT_URL]=n);let l=e;try{(e=new URL(e)).pathname.endsWith("/")?e.pathname+="index.txt":e.pathname+=".txt";let t=await T(e,a,"auto",!0),r=(0,d.urlToUrlWithoutFlightMarker)(new URL(t.url)),n=t.redirected?r:l,u=t.headers.get("content-type")||"",o=!!t.headers.get("vary")?.includes(i.NEXT_URL),c=!!t.headers.get(i.NEXT_DID_POSTPONE_HEADER),f=u.startsWith(i.RSC_CONTENT_TYPE_HEADER);if(f||(f=u.startsWith("text/plain")),!f||!t.ok||!t.body)return e.hash&&(r.hash=e.hash),E(r.toString());let h=t.flightResponsePromise;null===h&&(h=O(t.body,a,{allowPartialStream:c}));let[g,v]=await Promise.all([h,t.cacheData]);if((t.headers.get(y.NEXT_NAV_DEPLOYMENT_ID_HEADER)??g.b)!==(0,p.getNavigationBuildId)())return E(t.url);let R=(0,s.normalizeFlightData)(g.f);if("string"==typeof R)return E(R);let m=null!==v?await S(v,g,a):null;return{flightData:R,canonicalUrl:n,renderedSearch:g.q,couldBeIntercepted:o,supportsPerSegmentPrefetching:g.S,postponed:c,dynamicStaleTime:g.d??_.UnknownDynamicStaleTime,staticStageData:m,runtimePrefetchStream:g.p??null,responseHeaders:t.headers,debugInfo:h._debugInfo??null}}catch(e){return R||console.error(`Failed to fetch RSC payload for ${l}. Falling back to browser navigation.`,e),l.toString()}}async function P(e){return{response:e,cacheData:null}}async function S(e,t,r){let{isResponsePartial:n,responseBodyClone:a}=e;if(a){if(!n)return a.cancel(),{response:t,isResponsePartial:!1};if(void 0!==t.l)return{response:await b(a,t.l,r),isResponsePartial:!0};a.cancel()}return null}async function b(e,t,r){var n,a;let l,u;return O((n=e,a=await t,l=n.getReader(),u=a,new ReadableStream({async pull(e){if(u<=0){l.cancel(),e.close();return}let{done:t,value:r}=await l.read();t?e.close():r.byteLength<=u?(e.enqueue(r),u-=r.byteLength):(e.enqueue(r.subarray(0,u)),u=0,l.cancel(),e.close())},cancel(){l.cancel()}})),r,{allowPartialStream:!0})}async function T(e,t,r,a,l){var u,s;let d=(0,h.getDeploymentId)();d&&(t["x-deployment-id"]=d);let p=new URL(e);await (0,f.setCacheBustingSearchParam)(p,t);let y=fetch(p,{credentials:"same-origin",headers:t,priority:r||void 0,signal:l}).then(P),_=y.then(({response:e})=>e),g=a?(u=_,s=t,v(u,{callServer:o.callServer,findSourceMapURL:c.findSourceMapURL,debugChannel:n&&n(s)})):null,E=await _,R=E.redirected,m=new URL(E.url,p);return m.searchParams.delete(i.NEXT_RSC_UNION_QUERY),{url:m.href,redirected:R,ok:E.ok,headers:E.headers,body:E.body,status:E.status,flightResponsePromise:g,cacheData:y.then(({cacheData:e})=>e)}}function O(e,t,r){return g(e,{callServer:o.callServer,findSourceMapURL:c.findSourceMapURL,debugChannel:n&&n(t),unstable_allowPartialStream:r?.allowPartialStream})}"u">typeof window&&(window.addEventListener("pagehide",()=>{R=!0}),window.addEventListener("pageshow",()=>{R=!1})),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},48919,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isNavigatingToNewRootLayout",{enumerable:!0,get:function(){return function e(t,r){let a=t[0],l=r.segment;if(Array.isArray(a)&&Array.isArray(l)){if(a[0]!==l[0]||a[2]!==l[2])return!0}else if(a!==l)return!0;let u=((t[4]??0)&n.PrefetchHint.IsRootLayout)!=0,i=(r.prefetchHints&n.PrefetchHint.IsRootLayout)!=0;if(u)return!i;if(i)return!0;let o=r.slots,c=t[1];if(null!==o)for(let t in o){let r=o[t],n=c[t];if(void 0===n||e(n,r))return!0}return!1}}});let n=e.r(22744);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},94272,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={getLastCommittedTree:function(){return u},setLastCommittedTree:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=null;function u(){return l}function i(e){l=e}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},95871,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n,a={FreshnessPolicy:function(){return P},createInitialCacheNodeForHydration:function(){return b},isDeferredRsc:function(){return L},spawnDynamicRequests:function(){return I},startPPRNavigation:function(){return T}};for(var l in a)Object.defineProperty(r,l,{enumerable:!0,get:a[l]});let u=e.r(22744),i=e.r(13258),o=e.r(56019),c=e.r(51191),s=e.r(87288),f=e.r(41538),d=e.r(88540),h=e.r(48919),p=e.r(94272),y=e.r(60355),_=e.r(20896),g=e.r(9396),v=e.r(96167),E=e.r(63416),R=e.r(56655),m=e.r(79027);var P=((n={})[n.Default=0]="Default",n[n.Hydration=1]="Hydration",n[n.HistoryTraversal=2]="HistoryTraversal",n[n.RefreshAll=3]="RefreshAll",n[n.HMRRefresh=4]="HMRRefresh",n[n.Gesture=5]="Gesture",n);let S=()=>{};function b(e,t,r,n,a){return O(e,t,null,1,r,n,a,!1,{separateRefreshUrls:null,scrollRef:null})}function T(e,t,r,n,a,l,s,f,d,p,y,g,v){let E={canonicalUrl:(0,c.createHrefFromUrl)(t),renderedSearch:r};return function e(t,r,n,a,l,c,s,f,d,p,y,g,v,E,R,m){var P,S,b;let T,w,M,I,D=a[0],F=A(l);if(!(0,o.matchSegment)(F,D))return!f&&(0,h.isNavigatingToNewRootLayout)(a,l)||F===i.NOT_FOUND_SEGMENT_KEY?null:O(t,l,c,s,d,p,y,v,m);let U=l.slots,x=a[1],L=null!==d?d[1]:null,k=f||(l.prefetchHints&u.PrefetchHint.IsRootLayout)!=0,H=!1;switch(s){case 0:case 2:case 1:case 5:H=!1;break;case 3:case 4:H=!0}let V=null===U;if(void 0===n||H||V&&g){let e=C(t,l,null!==d?d[0]:null,c,p,s,y);M=e.cacheNode,I=e.needsDynamicRequest,void 0!==n&&(M.scrollRef=n.scrollRef)}else{P=!1,M=j((S=n).rsc,P?null:S.prefetchRsc,S.head,P?null:S.prefetchHead,S.scrollRef),I=!1}let B=l.refreshState,X=null!=B?B:R;I&&null!==X&&(b=m,T=X.canonicalUrl,null===(w=b.separateRefreshUrls)?b.separateRefreshUrls=new Set([T]):w.add(T));let $={},G=null,K=!1,q={},Y=null;if(null!==U){let a=void 0!==n?n.slots:null;for(let n in M.slots=Y={},G=new Map,U){let u=U[n],o=x[n];if(void 0===o)return null;let f=null!==L?L[n]:null,d=o[0],h=A(u),R=p;2!==s&&h===i.DEFAULT_SEGMENT_KEY&&d!==i.DEFAULT_SEGMENT_KEY&&(h=A(u=function(e,t,r,n){let a,l,u=n[2];null!=u?(a=u[0],l=u[1]):(a=r.canonicalUrl,l=r.renderedSearch);let i=(0,_.convertReusedFlightRouterStateToRouteTree)(e,t,n,l,{metadataVaryPath:null});return i.refreshState={canonicalUrl:a,renderedSearch:l},i}(l,n,E,o)),f=null,R=null);let P=e(t,r,null!==a?a[n]:void 0,o,u,c,s,k,f??null,R,y,g,v||I,E,X,m);if(null===P)return null;G.set(n,P),Y[n]=P.node;let S=P.route;$[n]=S;let b=P.dynamicRequestTree;null!==b?(K=!0,q[n]=b):q[n]=S}}let W=[A(l),$,null!==X?[X.canonicalUrl,X.renderedSearch]:null,null,l.prefetchHints];return{status:+!I,route:W,node:M,dynamicRequestTree:N(W,q,I,K,v),refreshState:X,children:G}}(e,t,null!==n?n:void 0,a,l,s,f,!1,d,p,y,g,!1,E,null,v)}function O(e,t,r,n,a,l,u,i,o){let c=A(t),s=t.slots,f=null!==a?a[1]:null,d=C(e,t,null!==a?a[0]:null,r,l,n,u),h=d.cacheNode,p=d.needsDynamicRequest;null===s&&function(e,t,r){switch(e){case 0:case 5:case 3:case 4:null===r.scrollRef&&(r.scrollRef={current:!0}),t.scrollRef=r.scrollRef}}(n,h,o);let y={},_=null,g=!1,v={},E=null;if(null!==s)for(let t in h.slots=E={},_=new Map,s){let a=O(e,s[t],r,n,(null!==f?f[t]:null)??null,l,u,i||p,o);_.set(t,a),E[t]=a.node;let c=a.route;y[t]=c;let d=a.dynamicRequestTree;null!==d?(g=!0,v[t]=d):v[t]=c}let R=[c,y,null,null,t.prefetchHints];return{status:+!p,route:R,node:h,dynamicRequestTree:N(R,v,p,g,i),refreshState:null,children:_}}function A(e){if(e.isPage){let t=(0,R.getRenderedSearchFromVaryPath)(e.varyPath);if(null===t)return i.PAGE_SEGMENT_KEY;let r=JSON.stringify(Object.fromEntries(new URLSearchParams(t)));return"{}"!==r?i.PAGE_SEGMENT_KEY+"?"+r:i.PAGE_SEGMENT_KEY}return e.segment}function w(e,t){let r=[e[0],t];return 2 in e&&(r[2]=e[2]),3 in e&&(r[3]=e[3]),4 in e&&(r[4]=e[4]),r}function N(e,t,r,n,a){let l=null;return r?(l=w(e,t),a||(l[3]="refetch")):l=n?w(e,t):null,l}function C(e,t,r,n,a,l,u){let i,o,c,s=t.isPage;switch(l){case 0:{let r=(0,m.readFromBFCacheDuringRegularNavigation)(e,t.varyPath);if(null!==r)return{cacheNode:j(r.rsc,r.prefetchRsc,r.head,r.prefetchHead),needsDynamicRequest:!1};break}case 1:{let l=s?a:null;return(0,m.writeToBFCache)(e,t.varyPath,r,null,l,null,u),s&&null!==n&&(0,m.writeHeadToBFCache)(e,n,l,null,u),{cacheNode:j(r,null,l,null),needsDynamicRequest:!1}}case 2:let f=(0,m.readFromBFCache)(t.varyPath);if(null!==f){let e=f.rsc,t=!L(e)||"pending"!==e.status;return{cacheNode:j(f.rsc,t?null:f.prefetchRsc,f.head,t?null:f.prefetchHead),needsDynamicRequest:!1}}}let d=null,h=!0,p=(0,_.readSegmentCacheEntry)(e,t.varyPath);if(null!==p)switch(p.status){case _.EntryStatus.Fulfilled:d=p.rsc,h=p.isPartial;break;case _.EntryStatus.Pending:d=(0,_.waitForSegmentCacheEntry)(p).then(e=>null!==e?e.rsc:null),h=p.isPartial;case _.EntryStatus.Empty:case _.EntryStatus.Rejected:}null!==r?(h?(i=d,o=r):(i=null,o=d),c=!1):(h?(i=d,o=k()):(i=null,o=d),c=h);let y=null,g=null,v=s;if(s){let t=null,r=!0;if(null!==n){let a=(0,_.readSegmentCacheEntry)(e,n);if(null!==a)switch(a.status){case _.EntryStatus.Fulfilled:t=a.rsc,r=a.isPartial;break;case _.EntryStatus.Pending:t=(0,_.waitForSegmentCacheEntry)(a).then(e=>null!==e?e.rsc:null),r=a.isPartial;case _.EntryStatus.Empty:case _.EntryStatus.Rejected:}}null!==a?(r?(y=t,g=a):(y=null,g=t),v=!1):(r?(y=t,g=k()):(y=null,g=t),v=r)}return 5!==l&&((0,m.writeToBFCache)(e,t.varyPath,o,i,g,y,u),s&&null!==n&&(0,m.writeHeadToBFCache)(e,n,g,y,u)),{cacheNode:j(o,i,g,y),needsDynamicRequest:c||v}}function j(e,t,r,n,a=null){return{rsc:e,prefetchRsc:t,head:r,prefetchHead:n,slots:null,scrollRef:a}}let M=!1;function I(e,t,r,n,a,l,u){let i=e.dynamicRequestTree;if(null===i){M=!1;return}let o=U(e,i,t,r,n,l),s=a.separateRefreshUrls,f=null;if(null!==s){f=[];let a=(0,c.createHrefFromUrl)(t);for(let t of s)t!==a&&null!==i&&f.push(U(e,i,new URL(t,location.origin),r,n,l))}D(e,r,o,f,l,u).then(S,S)}async function D(e,t,r,n,a,l){var u,i;let o=await (u=r,i=n,new Promise(e=>{let t=t=>{0===t.exitStatus?0==--n&&e(0):e(t.exitStatus)},r=()=>e(2),n=1;u.then(t,r),null!==i&&(n+=i.length,i.forEach(e=>e.then(t,r)))}));switch(0===o&&(o=function e(t,r,n){var a,l,u;let i,o,c;0===t.status?(t.status=2,a=t.node,l=r,u=n,L(o=a.rsc)&&(null===l?o.resolve(null,u):o.reject(l,u)),L(c=a.head)&&c.resolve(null,u),i=null===t.refreshState?1:2):i=0;let s=t.children;if(null!==s)for(let[,t]of s){let a=e(t,r,n);a>i&&(i=a)}return i}(e,null,null)),o){case 0:M=!1;return;case 1:{let n=await r;F(!1,n.url,t,n.seed,e.route,a,l);return}case 2:{let n=await r;F(!0,n.url,t,n.seed,e.route,a,l);return}default:return o}}function F(e,t,r,n,a,l,u){if(null!==l)(0,_.markRouteEntryAsDynamicRewrite)(l);else if(null!==n){let e=n.metadataVaryPath;if(null!==e){let a=Date.now();(0,v.discoverKnownRoute)(a,t.pathname,r,null,n.routeTree,e,!1,(0,c.createHrefFromUrl)(t),!1,!0)}}(0,_.invalidateRouteCacheEntries)(r,a),e=e||M,M=!0;let i=(0,p.getLastCommittedTree)(),o=null!==i&&a!==i?u:"replace",s={type:d.ACTION_SERVER_PATCH,previousTree:a,url:t,nextUrl:r,seed:n,mpa:e,navigateType:o};(0,f.dispatchAppRouterAction)(s)}async function U(e,t,r,n,a,l){try{let u=await (0,s.fetchServerResponse)(r,{flightRouterState:t,nextUrl:n,isHmrRefresh:4===a});if("string"==typeof u)return{exitStatus:2,url:new URL(u,location.origin),seed:null};let i=Date.now(),c=(0,y.convertServerPatchToFullTree)(i,e.route,u.flightData,u.renderedSearch,u.dynamicStaleTime);if(null!==l&&null!==u.staticStageData){let{response:e,isResponsePartial:r}=u.staticStageData;(0,_.getStaleAt)(i,e.s).then(n=>{let a=u.responseHeaders.get(E.NEXT_NAV_DEPLOYMENT_ID_HEADER)??e.b;(0,_.writeStaticStageResponseIntoCache)(i,e.f,a,e.h,n,t,u.renderedSearch,r)}).catch(()=>{})}null!==l&&null!==u.runtimePrefetchStream&&(0,_.processRuntimePrefetchStream)(i,u.runtimePrefetchStream,t,u.renderedSearch).then(e=>{null!==e&&(0,_.writeDynamicRenderResponseIntoCache)(i,g.FetchStrategy.PPRRuntime,e.flightDatas,e.buildId,e.isResponsePartial,e.headVaryParams,e.staleAt,e.navigationSeed,null)}).catch(()=>{});let f=(0,m.computeDynamicStaleAt)(i,u.dynamicStaleTime);return{exitStatus:+!!function e(t,r,n,a,l,u){0===t.status&&null!==n&&(t.status=1,function(e,t,r,n){let a=e.rsc,l=t[0];if(null===l)return;null===a?e.rsc=l:L(a)&&a.resolve(l,n);let u=e.head;L(u)&&u.resolve(r,n)}(t.node,n,a,u),(0,m.updateBFCacheEntryStaleAt)(r.varyPath,l));let i=t.children,c=r.slots,s=null!==n?n[1]:null,f=!1;if(null!==i)if(null!==c)for(let t in c){let r=c[t],n=null!==s?s[t]:null,d=i.get(t);if(void 0===d)f=!0;else{let t=d.route[0],i=A(r);(0,o.matchSegment)(i,t)&&null!=n&&e(d,r,n,a,l,u)&&(f=!0)}}else null!==c&&(f=!0);return f}(e,c.routeTree,c.data,c.head,f,u.debugInfo),url:new URL(u.canonicalUrl,location.origin),seed:c}}catch{return{exitStatus:2,url:r,seed:null}}}let x=Symbol();function L(e){return e&&"object"==typeof e&&e.tag===x}function k(){let e,t,r=[],n=new Promise((r,n)=>{e=r,t=n});return n.status="pending",n.resolve=(t,a)=>{"pending"===n.status&&(n.status="fulfilled",n.value=t,null!==a&&r.push.apply(r,a),e(t))},n.reject=(e,a)=>{"pending"===n.status&&(n.status="rejected",n.reason=e,null!==a&&r.push.apply(r,a),t(e))},n.tag=x,n._debugInfo=r,n}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},3372,(e,t,r)=>{"use strict";function n(e){return e.startsWith("/")?e:`/${e}`}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"ensureLeadingSlash",{enumerable:!0,get:function(){return n}})},74180,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={compareAppPaths:function(){return o},normalizeAppPath:function(){return i},normalizeRscURL:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(3372),u=e.r(13258);function i(e){return(0,l.ensureLeadingSlash)(e.split("/").reduce((e,t,r,n)=>!t||(0,u.isGroupSegment)(t)||"@"===t[0]||("page"===t||"route"===t)&&r===n.length-1?e:`${e}/${t}`,""))}function o(e,t){let r=e.includes("/@"),n=t.includes("/@");return r&&!n?-1:!r&&n?1:e.localeCompare(t)}function c(e){return e.replace(/\.rsc($|\?)/,"$1")}},91463,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={INTERCEPTION_ROUTE_MARKERS:function(){return u},extractInterceptionRouteInformation:function(){return o},isInterceptionRouteAppPath:function(){return i}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(74180),u=["(..)(..)","(.)","(..)","(...)"];function i(e){return void 0!==e.split("/").find(e=>u.find(t=>e.startsWith(t)))}function o(e){let t,r,n;for(let a of e.split("/"))if(r=u.find(e=>a.startsWith(e))){[t,n]=e.split(r,2);break}if(!t||!r||!n)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Must be in the format //(..|...|..)(..)/`),"__NEXT_ERROR_CODE",{value:"E269",enumerable:!1,configurable:!0});switch(t=(0,l.normalizeAppPath)(t),r){case"(.)":n="/"===t?`/${n}`:t+"/"+n;break;case"(..)":if("/"===t)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..) marker at the root level, use (.) instead.`),"__NEXT_ERROR_CODE",{value:"E207",enumerable:!1,configurable:!0});n=t.split("/").slice(0,-1).concat(n).join("/");break;case"(...)":n="/"+n;break;case"(..)(..)":let a=t.split("/");if(a.length<=2)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..)(..) marker at the root level or one level up.`),"__NEXT_ERROR_CODE",{value:"E486",enumerable:!1,configurable:!0});n=a.slice(0,-2).concat(n).join("/");break;default:throw Object.defineProperty(Error("Invariant: unexpected marker"),"__NEXT_ERROR_CODE",{value:"E112",enumerable:!1,configurable:!0})}return{interceptingRoute:t,interceptedRoute:n}}},34727,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={computeChangedPath:function(){return h},extractPathFromFlightRouterState:function(){return f},extractSourcePageFromFlightRouterState:function(){return d},getSelectedParams:function(){return function e(t,r={}){for(let n of Object.values(t[1])){let t=n[0],a=Array.isArray(t),l=a?t[1]:t;!l||l.startsWith(u.PAGE_SEGMENT_KEY)||(a&&("c"===t[2]||"oc"===t[2])?r[t[0]]=t[1].split("/"):a&&(r[t[0]]=t[1]),r=e(n,r))}return r}}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(91463),u=e.r(13258),i=e.r(56019),o=e=>"/"===e[0]?e.slice(1):e,c=e=>"string"==typeof e?"children"===e?"":e:e[1];function s(e){return e.reduce((e,t)=>""===(t=o(t))||(0,u.isGroupSegment)(t)?e:`${e}/${t}`,"")||"/"}function f(e){let t=Array.isArray(e[0])?e[0][1]:e[0];if(t===u.DEFAULT_SEGMENT_KEY||l.INTERCEPTION_ROUTE_MARKERS.some(e=>t.startsWith(e)))return;if(t.startsWith(u.PAGE_SEGMENT_KEY))return"";let r=[c(t)],n=e[1]??{},a=n.children?f(n.children):void 0;if(void 0!==a)r.push(a);else for(let[e,t]of Object.entries(n)){if("children"===e)continue;let n=f(t);void 0!==n&&r.push(n)}return s(r)}function d(e){let t=function e(t){let r=(e=>{if("string"==typeof e)return"children"===e?"":e.startsWith(u.PAGE_SEGMENT_KEY)?"page":e;let[t,,r]=e;switch(r){case"c":return`[...${t}]`;case"ci(..)(..)":return`(..)(..)[...${t}]`;case"ci(.)":return`(.)[...${t}]`;case"ci(..)":return`(..)[...${t}]`;case"ci(...)":return`(...)[...${t}]`;case"oc":return`[[...${t}]]`;case"d":default:return`[${t}]`;case"di(..)(..)":return`(..)(..)[${t}]`;case"di(.)":return`(.)[${t}]`;case"di(..)":return`(..)[${t}]`;case"di(...)":return`(...)[${t}]`}})(t[0]);if(r===u.DEFAULT_SEGMENT_KEY)return;if("page"===r)return[r];let n=t[1]??{},a=n.children?e(n.children):void 0;if(void 0!==a)return""===r?a:[o(r),...a];for(let[t,a]of Object.entries(n)){if("children"===t)continue;let n=e(a);if(void 0!==n)return""===r?n:[o(r),...n]}}(e);return t?`/${t.join("/")}`:void 0}function h(e,t){let r=function e(t,r){let[n,a]=t,[u,o]=r,s=c(n),d=c(u);if(l.INTERCEPTION_ROUTE_MARKERS.some(e=>s.startsWith(e)||d.startsWith(e)))return"";if(!(0,i.matchSegment)(n,u))return f(r)??"";for(let t in a)if(o[t]){let r=e(a[t],o[t]);if(null!==r)return`${c(u)}/${r}`}return null}(e,t);return null==r||"/"===r?r:s(r.split("/"))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},48277,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"isJavaScriptURLString",{enumerable:!0,get:function(){return a}});let n=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function a(e){return n.test(""+e)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},81400,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={isNavigationLocked:function(){return o},startListeningForInstantNavigationCookie:function(){return l},transitionToCapturedSPA:function(){return u},updateCapturedSPAToTree:function(){return i},waitForNavigationLockIfActive:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(){}function u(e,t){}function i(e,t){}function o(){return!1}async function c(){}e.r(21768),e.r(41538),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},60355,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={completeHardNavigation:function(){return P},completeSoftNavigation:function(){return S},completeTraverseNavigation:function(){return b},convertServerPatchToFullTree:function(){return T},navigate:function(){return g},navigateToKnownRoute:function(){return v}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(87288),u=e.r(95871),i=e.r(51191),o=e.r(63416),c=e.r(20896),s=e.r(96167),f=e.r(77048);e.r(77709);let d=e.r(9396);e.r(91949);let h=e.r(88540),p=e.r(34727),y=e.r(48277),_=e.r(79027);function g(e,t,r,n,a,l,u,i,o,s){return function(e,t,r,n,a,l,u,i,o,s){let d=Date.now(),h=t.href,p=(0,f.createCacheKey)(h,u),y=(0,c.readRouteCacheEntry)(d,p);if(null!==y&&y.status===c.EntryStatus.Fulfilled)return E(d,e,t,r,n,u,a,l,i,o,s,y);if(null===y||y.status!==c.EntryStatus.Rejected){let f=(0,c.deprecated_requestOptimisticRouteCacheEntry)(d,t,u);if(null!==f)return E(d,e,t,r,n,u,a,l,i,o,s,f)}return m(d,e,t,r,n,u,a,l,i,o,s).catch(()=>e)}(e,t,r,n,a,l,u,i,o,s)}function v(e,t,r,n,a,l,i,o,c,s,f,d,h,p,y){let _={separateRefreshUrls:null,scrollRef:null},g=r.href===l.href,v=(0,u.startPPRNavigation)(e,l,i,o,c,a.routeTree,a.metadataVaryPath,s,a.data,a.head,a.dynamicStaleAt,g,_);return null!==v?(s!==u.FreshnessPolicy.Gesture&&(0,u.spawnDynamicRequests)(v,r,f,s,_,y,h),S(t,r,f,v.route,v.node,a.renderedSearch,n,h,d,_.scrollRef,p)):P(t,r,h)}function E(e,t,r,n,a,l,u,i,o,c,s,f){let d=f.tree,h=f.canonicalUrl+r.hash,p={renderedSearch:f.renderedSearch,routeTree:d,metadataVaryPath:f.metadata.varyPath,data:null,head:null,dynamicStaleAt:(0,_.computeDynamicStaleAt)(e,_.UnknownDynamicStaleTime)};return v(e,t,r,h,p,n,a,u,i,o,l,c,s,null,f)}let R=["",{},null,"refetch"];async function m(e,t,r,n,a,f,h,p,y,_,g){let E;switch(y){case u.FreshnessPolicy.Default:case u.FreshnessPolicy.HistoryTraversal:case u.FreshnessPolicy.Gesture:E=p;break;case u.FreshnessPolicy.Hydration:case u.FreshnessPolicy.RefreshAll:case u.FreshnessPolicy.HMRRefresh:E=R;break;default:E=p}let m=(0,l.fetchServerResponse)(r,{flightRouterState:E,nextUrl:f}),S=await m;if("string"==typeof S)return P(t,new URL(S,location.origin),g);let{flightData:b,canonicalUrl:O,renderedSearch:A,couldBeIntercepted:w,supportsPerSegmentPrefetching:N,dynamicStaleTime:C,staticStageData:j,runtimePrefetchStream:M,responseHeaders:I,debugInfo:D}=S,F=T(e,p,b,A,C),U=F.metadataVaryPath;if(null!==U){if((0,s.discoverKnownRoute)(e,r.pathname,f,null,F.routeTree,U,w,(0,i.createHrefFromUrl)(O),N,!1),null!==j){let{response:t,isResponsePartial:r}=j;(0,c.getStaleAt)(e,t.s).then(n=>{let a=I.get(o.NEXT_NAV_DEPLOYMENT_ID_HEADER)??t.b;(0,c.writeStaticStageResponseIntoCache)(e,t.f,a,t.h,n,p,A,r)}).catch(()=>{})}null!==M&&(0,c.processRuntimePrefetchStream)(e,M,p,A).then(t=>{null!==t&&(0,c.writeDynamicRenderResponseIntoCache)(e,d.FetchStrategy.PPRRuntime,t.flightDatas,t.buildId,t.isResponsePartial,t.headVaryParams,t.staleAt,t.navigationSeed,null)}).catch(()=>{})}return v(e,t,r,(0,i.createHrefFromUrl)(O),F,n,a,h,p,y,f,_,g,D,null)}function P(e,t,r){return(0,y.isJavaScriptURLString)(t.href)?(console.error("Next.js has blocked a javascript: URL as a security precaution."),e):{canonicalUrl:t.origin===location.origin?(0,i.createHrefFromUrl)(t):t.href,pushRef:{pendingPush:"push"===r,mpaNavigation:!0,preserveCustomHistoryState:!1},renderedSearch:e.renderedSearch,focusAndScrollRef:e.focusAndScrollRef,cache:e.cache,tree:e.tree,nextUrl:e.nextUrl,previousNextUrl:e.previousNextUrl,debugInfo:null}}function S(e,t,r,n,a,l,u,i,o,c,s){let f,d,y=(0,p.computeChangedPath)(e.tree,n)||e.nextUrl,_=new URL(e.canonicalUrl,t),g=t.pathname===_.pathname&&t.search===_.search&&t.hash!==_.hash;if(o===h.ScrollBehavior.NoScroll)null!==c&&(c.current=!1),f=e.focusAndScrollRef.scrollRef,d=!1;else if(g){let t=e.focusAndScrollRef.scrollRef;null!==t&&(t.current=!1),null!==c&&(c.current=!1),f={current:!0},d=!0}else{if(f=c,null!==c){let t=e.focusAndScrollRef.scrollRef;null!==t&&(t.current=!1)}d=!1}return{canonicalUrl:u,renderedSearch:l,pushRef:{pendingPush:"push"===i,mpaNavigation:!1,preserveCustomHistoryState:!1},focusAndScrollRef:{scrollRef:f,forceScroll:d,onlyHashChange:g,hashFragment:o!==h.ScrollBehavior.NoScroll&&""!==t.hash?decodeURIComponent(t.hash.slice(1)):e.focusAndScrollRef.hashFragment},cache:a,tree:n,nextUrl:y,previousNextUrl:r,debugInfo:s}}function b(e,t,r,n,a,l){return{canonicalUrl:(0,i.createHrefFromUrl)(t),renderedSearch:r,pushRef:{pendingPush:!1,mpaNavigation:!1,preserveCustomHistoryState:!0},focusAndScrollRef:e.focusAndScrollRef,cache:n,tree:a,nextUrl:l,previousNextUrl:null,debugInfo:null}}function T(e,t,r,n,a){let l=t,u=null,i=null;if(null!==r)for(let{segmentPath:e,tree:t,seedData:a,head:o}of r){let r=function e(t,r,n,a,l,u,i){let o;if(i===l.length)return{tree:n,data:a};let c=l[i],s=t[1],f=null!==r?r[1]:null,d={},h={};for(let t in s){let r=s[t],o=null!==f?f[t]??null:null;if(t===c){let c=e(r,o,n,a,l,u,i+2);d[t]=c.tree,h[t]=c.data}else d[t]=r,h[t]=o}if(o=[t[0],d],2 in t){let e=t[2];null!=e&&(o[2]=[e[0],u])}return 3 in t&&(o[3]=t[3]),4 in t&&(o[4]=t[4]),{tree:o,data:[null,h,null,!0,null]}}(l,u,t,a,e,n,0);l=r.tree,u=r.data,i=o}let o=l,s={metadataVaryPath:null};return{routeTree:(0,c.convertRootFlightRouterStateToRouteTree)(o,n,s),metadataVaryPath:s.metadataVaryPath,data:u,renderedSearch:n,head:i,dynamicStaleAt:(0,_.computeDynamicStaleAt)(e,a)}}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},54069,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={DYNAMIC_STALETIME_MS:function(){return o},STATIC_STALETIME_MS:function(){return c},navigateReducer:function(){return s}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(60355),u=e.r(20896),i=e.r(95871),o=1e3*Number("0"),c=(0,u.getStaleTimeMs)(Number("300"));function s(e,t){let{url:r,isExternalUrl:n,navigateType:a,scrollBehavior:u}=t;if(n||document.getElementById("__next-page-redirect"))return(0,l.completeHardNavigation)(e,r,a);let o=new URL(e.canonicalUrl,location.origin),c=e.renderedSearch;return(0,l.navigate)(e,r,o,c,e.cache,e.tree,e.nextUrl,i.FreshnessPolicy.Default,u,a)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},84356,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"hasInterceptionRouteInCurrentTree",{enumerable:!0,get:function(){return function e([t,r]){if(Array.isArray(t)&&("di(..)(..)"===t[2]||"ci(..)(..)"===t[2]||"di(.)"===t[2]||"ci(.)"===t[2]||"di(..)"===t[2]||"ci(..)"===t[2]||"di(...)"===t[2]||"ci(...)"===t[2])||"string"==typeof t&&(0,n.isInterceptionRouteAppPath)(t))return!0;if(r){for(let t in r)if(e(r[t]))return!0}return!1}}});let n=e.r(91463);("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},69845,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={refreshDynamicData:function(){return d},refreshReducer:function(){return f}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(88540),u=e.r(60355),i=e.r(20896),o=e.r(84356),c=e.r(95871),s=e.r(79027);function f(e,t){{let t=e.nextUrl,r=e.tree;(0,i.invalidateSegmentCacheEntries)(t,r)}return d(e,c.FreshnessPolicy.RefreshAll)}function d(e,t){(0,s.invalidateBfCache)();let r=e.nextUrl,n=(0,o.hasInterceptionRouteInCurrentTree)(e.tree)?e.previousNextUrl||r:null,a=e.canonicalUrl,i=new URL(a,location.origin),c=e.renderedSearch,f=e.tree,d=l.ScrollBehavior.NoScroll,h=Date.now(),p=(0,u.convertServerPatchToFullTree)(h,f,null,c,s.UnknownDynamicStaleTime);return(0,u.navigateToKnownRoute)(h,e,i,a,p,i,c,e.cache,f,t,n,d,"replace",null,null)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},91668,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"serverPatchReducer",{enumerable:!0,get:function(){return o}});let n=e.r(51191),a=e.r(88540),l=e.r(60355),u=e.r(69845),i=e.r(95871);function o(e,t){let r=t.mpa,o=new URL(t.url,location.origin),c=t.seed,s=t.navigateType;if(r||null===c)return(0,l.completeHardNavigation)(e,o,s);let f=new URL(e.canonicalUrl,location.origin),d=e.renderedSearch;if(t.previousTree!==e.tree)return(0,u.refreshReducer)(e,{type:a.ACTION_REFRESH});let h=(0,n.createHrefFromUrl)(o),p=t.nextUrl,y=a.ScrollBehavior.Default,_=Date.now();return(0,l.navigateToKnownRoute)(_,e,o,h,c,f,d,e.cache,e.tree,i.FreshnessPolicy.RefreshAll,p,y,s,null,null)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},73790,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"restoreReducer",{enumerable:!0,get:function(){return i}});let n=e.r(34727),a=e.r(95871),l=e.r(60355),u=e.r(79027);function i(e,t){let r,i,o=t.historyState;o?(r=o.tree,i=o.renderedSearch):(r=e.tree,i=e.renderedSearch);let c=new URL(e.canonicalUrl,location.origin),s=t.url,f=(0,n.extractPathFromFlightRouterState)(r)??s.pathname,d=Date.now(),h={separateRefreshUrls:null,scrollRef:null},p=(0,l.convertServerPatchToFullTree)(d,r,null,i,u.UnknownDynamicStaleTime),y=(0,a.startPPRNavigation)(d,c,e.renderedSearch,e.cache,e.tree,p.routeTree,p.metadataVaryPath,a.FreshnessPolicy.HistoryTraversal,null,null,p.dynamicStaleAt,!1,h);return null===y?(0,l.completeHardNavigation)(e,s,"replace"):((0,a.spawnDynamicRequests)(y,s,f,a.FreshnessPolicy.HistoryTraversal,h,null,"replace"),(0,l.completeTraverseNavigation)(e,s,i,y.node,y.route,f))}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},86720,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"hmrRefreshReducer",{enumerable:!0,get:function(){return l}});let n=e.r(69845),a=e.r(95871);function l(e){return(0,n.refreshDynamicData)(e,a.FreshnessPolicy.HMRRefresh)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},92838,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={UnrecognizedActionError:function(){return l},unstable_isUnrecognizedActionError:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});class l extends Error{constructor(...e){super(...e),this.name="UnrecognizedActionError"}}function u(e){return!!(e&&"object"==typeof e&&e instanceof l)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},27801,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"assignLocation",{enumerable:!0,get:function(){return a}});let n=e.r(5550);function a(e,t){if(e.startsWith(".")){let r=t.origin+t.pathname;return new URL((r.endsWith("/")?r:r+"/")+e)}return new URL((0,n.addBasePath)(e),t.href)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},34457,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"actionAsyncStorageInstance",{enumerable:!0,get:function(){return n}});let n=(0,e.r(90317).createAsyncLocalStorage)()},62266,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"actionAsyncStorage",{enumerable:!0,get:function(){return n.actionAsyncStorageInstance}});let n=e.r(34457)},24063,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={getRedirectError:function(){return o},getRedirectStatusCodeFromError:function(){return h},getRedirectTypeFromError:function(){return d},getURLFromRedirectError:function(){return f},permanentRedirect:function(){return s},redirect:function(){return c}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(76963),u=e.r(68391),i="u"{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"pathHasPrefix",{enumerable:!0,get:function(){return a}});let n=e.r(72463);function a(e,t){if("string"!=typeof e)return!1;let{pathname:r}=(0,n.parsePath)(e);return r===t||r.startsWith(t+"/")}},52817,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"hasBasePath",{enumerable:!0,get:function(){return a}});let n=e.r(39584);function a(e){return(0,n.pathHasPrefix)(e,"")}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},87250,(e,t,r)=>{"use strict";function n(e){return e}Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"removeBasePath",{enumerable:!0,get:function(){return n}}),e.r(52817),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},39747,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={extractInfoFromServerReferenceId:function(){return l},omitUnusedArgs:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});function l(e){let t=parseInt(e.slice(0,2),16),r=t>>1&63,n=Array(6);for(let e=0;e<6;e++){let t=r>>5-e&1;n[e]=1===t}return{type:1==(t>>7&1)?"use-cache":"server-action",usedArgs:n,hasRestArgs:1==(1&t)}}function u(e,t){let r=Array(e.length),n=0;for(let a=0;a=6&&t.hasRestArgs)&&(r[a]=e[a],n=a+1);return r.length=n,r}},39146,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={ActionDidNotRevalidate:function(){return l},ActionDidRevalidateDynamicOnly:function(){return i},ActionDidRevalidateStaticAndDynamic:function(){return u}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=0,u=1,i=2},45794,(e,t,r)=>{"use strict";let n;Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"serverActionReducer",{enumerable:!0,get:function(){return M}});let a=e.r(32120),l=e.r(92245),u=e.r(21768),i=e.r(92838),o=e.r(35326),c=e.r(88540),s=e.r(27801),f=e.r(51191),d=e.r(84356),h=e.r(50590),p=e.r(24063),y=e.r(87250),_=e.r(52817),g=e.r(39747),v=e.r(20896),E=e.r(77709),R=e.r(43369),m=e.r(32992),P=e.r(63416),S=e.r(60355),b=e.r(96167),T=e.r(39146),O=e.r(57630),A=e.r(95871),w=e.r(87288),N=e.r(79027),C=o.createFromFetch;async function j(e,t,{actionId:r,actionArgs:c}){let f,d,p,y,_=(0,o.createTemporaryReferenceSet)(),v=(0,g.extractInfoFromServerReferenceId)(r),E=(0,g.omitUnusedArgs)(c,v),S=await (0,o.encodeReply)(E,{temporaryReferences:_}),b={Accept:u.RSC_CONTENT_TYPE_HEADER,[u.ACTION_HEADER]:r,[u.NEXT_ROUTER_STATE_TREE_HEADER]:(0,h.prepareFlightRouterStateForRequest)(e.tree)},O=(0,R.getDeploymentId)();O&&(b["x-deployment-id"]=O),t&&(b[u.NEXT_URL]=t);let A=await fetch(e.canonicalUrl,{method:"POST",headers:b,body:S});if("1"===A.headers.get(u.NEXT_ACTION_NOT_FOUND_HEADER))throw Object.defineProperty(new i.UnrecognizedActionError(`Server Action "${r}" was not found on the server. -Read more: https://nextjs.org/docs/messages/failed-to-find-server-action`),"__NEXT_ERROR_CODE",{value:"E715",enumerable:!1,configurable:!0});let N=A.headers.get("x-action-redirect"),[M,I]=N?.split(";")||[];switch(I){case"push":f="push";break;case"replace":f="replace";break;default:f=void 0}let D=!!A.headers.get(u.NEXT_IS_PRERENDER_HEADER),F=T.ActionDidNotRevalidate;try{let e=A.headers.get("x-action-revalidated");if(e){let t=JSON.parse(e);(t===T.ActionDidRevalidateStaticAndDynamic||t===T.ActionDidRevalidateDynamicOnly)&&(F=t)}}catch{}let U=M?(0,s.assignLocation)(M,new URL(e.canonicalUrl,window.location.href)):void 0,x=A.headers.get("content-type"),L=!!(x&&x.startsWith(u.RSC_CONTENT_TYPE_HEADER));if(!L&&!U)throw Object.defineProperty(Error(A.status>=400&&"text/plain"===x?await A.text():"An unexpected response was received from the server."),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0});let k=!1;if(L){let e=U?(0,w.processFetch)(A).then(({response:e})=>e):Promise.resolve(A),t=await C(e,{callServer:a.callServer,findSourceMapURL:l.findSourceMapURL,temporaryReferences:_,debugChannel:n&&n(b)});d=U?void 0:t.a,k=t.i;let r=A.headers.get(P.NEXT_NAV_DEPLOYMENT_ID_HEADER)??t.b;if(void 0!==r&&r!==(0,m.getNavigationBuildId)());else{let e=(0,h.normalizeFlightData)(t.f);""!==e&&(p=e,y=t.q)}}else d=void 0,p=void 0,y=void 0;return{actionResult:d,actionFlightData:p,actionFlightDataRenderedSearch:y,redirectLocation:U,redirectType:f,revalidationKind:F,isPrerender:D,couldBeIntercepted:k}}function M(e,t){let{resolve:r,reject:n}=t,a=(e.previousNextUrl||e.nextUrl)&&(0,d.hasInterceptionRouteInCurrentTree)(e.tree)?e.previousNextUrl||e.nextUrl:null;return j(e,a,t).then(async({revalidationKind:l,actionResult:u,actionFlightData:i,actionFlightDataRenderedSearch:o,redirectLocation:s,redirectType:d,isPrerender:h,couldBeIntercepted:p})=>{l!==T.ActionDidNotRevalidate&&((0,N.invalidateBfCache)(),t.didRevalidate=!0,l===T.ActionDidRevalidateStaticAndDynamic&&(0,v.invalidateEntirePrefetchCache)(a,e.tree),(0,E.startRevalidationCooldown)());let g=d||"push";if(void 0!==s)if((0,O.isExternalURL)(s))return n(I(s.href,g)),(0,S.completeHardNavigation)(e,s,g);else{let e=(0,f.createHrefFromUrl)(s,!1);n(I((0,_.hasBasePath)(e)?(0,y.removeBasePath)(e):e,g))}else r(u);if(void 0===s&&l===T.ActionDidNotRevalidate&&void 0===i)return e;if(void 0===i&&void 0!==s)return(0,S.completeHardNavigation)(e,s,g);if("string"==typeof i)return(0,S.completeHardNavigation)(e,new URL(i,location.origin),g);let R=new URL(e.canonicalUrl,location.origin),m=e.renderedSearch,P=void 0!==s?s:R,w=e.tree,C=c.ScrollBehavior.Default,j=l===T.ActionDidNotRevalidate?A.FreshnessPolicy.Default:A.FreshnessPolicy.RefreshAll;if(void 0!==i&&void 0!==o){let t=(0,f.createHrefFromUrl)(P),r=Date.now(),n=(0,S.convertServerPatchToFullTree)(r,w,i,o,N.UnknownDynamicStaleTime),l=n.metadataVaryPath;return null!==l&&(0,b.discoverKnownRoute)(r,P.pathname,a,null,n.routeTree,l,p,t,h,!1),(0,S.navigateToKnownRoute)(r,e,P,t,n,R,m,e.cache,w,j,a,C,g,null,null)}return(0,S.navigate)(e,P,R,m,e.cache,w,a,j,C,g)},t=>(n(t),e))}function I(e,t){let r=(0,p.getRedirectError)(e,t);return r.handled=!0,r}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},4924,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"reducer",{enumerable:!0,get:function(){return s}});let n=e.r(88540),a=e.r(54069),l=e.r(91668),u=e.r(73790),i=e.r(69845),o=e.r(86720),c=e.r(45794),s="u"{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"prefetch",{enumerable:!0,get:function(){return i}});let n=e.r(57630),a=e.r(77048),l=e.r(77709),u=e.r(9396);function i(e,t,r,i,o){let c=(0,n.createPrefetchURL)(e);if(null===c)return;let s=(0,a.createCacheKey)(c.href,t);(0,l.schedulePrefetchTask)(s,r,i,u.PrefetchPriority.Default,o)}("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)},99781,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={createMutableActionQueue:function(){return E},dispatchNavigateAction:function(){return P},dispatchTraverseAction:function(){return S},getCurrentAppRouterState:function(){return R},publicAppRouterInstance:function(){return b}};for(var a in n)Object.defineProperty(r,a,{enumerable:!0,get:n[a]});let l=e.r(88540),u=e.r(4924),i=e.r(71645),o=e.r(64245),c=e.r(9396),s=e.r(1411);e.r(60355);let f=e.r(41538);e.r(96167),e.r(95871);let d=e.r(5550),h=e.r(57630),p=e.r(91949),y=e.r(48277);function _(e,t){null!==e.pending?(e.pending=e.pending.next,null!==e.pending&&g({actionQueue:e,action:e.pending,setState:t})):e.needsRefresh&&(e.needsRefresh=!1,e.dispatch({type:l.ACTION_REFRESH},t))}async function g({actionQueue:e,action:t,setState:r}){let n=e.state;e.pending=t;let a=t.payload,u=e.action(n,a);function i(n){if(t.discarded){t.payload.type===l.ACTION_SERVER_ACTION&&t.payload.didRevalidate&&(e.needsRefresh=!0),_(e,r);return}e.state=n,_(e,r),t.resolve(n)}(0,o.isThenable)(u)?u.then(i,n=>{_(e,r),t.reject(n)}):i(u)}let v=null;function E(e,t){let r={state:e,dispatch:(e,t)=>(function(e,t,r){let n={resolve:r,reject:()=>{}};if(t.type!==l.ACTION_RESTORE){let e=new Promise((e,t)=>{n={resolve:e,reject:t}});(0,i.startTransition)(()=>{r(e)})}let a={payload:t,next:null,resolve:n.resolve,reject:n.reject};null===e.pending?(e.last=a,g({actionQueue:e,action:a,setState:r})):t.type===l.ACTION_NAVIGATE||t.type===l.ACTION_RESTORE?(e.pending.discarded=!0,a.next=e.pending.next,g({actionQueue:e,action:a,setState:r})):(null!==e.last&&(e.last.next=a),e.last=a)})(r,e,t),action:async(e,t)=>(0,u.reducer)(e,t),pending:null,last:null,onRouterTransitionStart:null!==t&&"function"==typeof t.onRouterTransitionStart?t.onRouterTransitionStart:null};if("u">typeof window){if(null!==v)throw Object.defineProperty(Error("Internal Next.js Error: createMutableActionQueue was called more than once"),"__NEXT_ERROR_CODE",{value:"E624",enumerable:!1,configurable:!0});v=r}return r}function R(){return null!==v?v.state:null}function m(){return null!==v?v.onRouterTransitionStart:null}function P(e,t,r,n,a){if(a)for(let e of a)(0,i.addTransitionType)(e);let u=new URL((0,d.addBasePath)(e),location.href);(0,p.setLinkForCurrentNavigation)(n);let o=m();null!==o&&o(e,t),(0,f.dispatchAppRouterAction)({type:l.ACTION_NAVIGATE,url:u,isExternalUrl:(0,h.isExternalURL)(u),locationSearch:location.search,scrollBehavior:r,navigateType:t})}function S(e,t){let r=m();null!==r&&r(e,"traverse"),(0,f.dispatchAppRouterAction)({type:l.ACTION_RESTORE,url:new URL(e),historyState:t})}let b={back:()=>window.history.back(),forward:()=>window.history.forward(),prefetch:(e,t)=>{let r;if((0,y.isJavaScriptURLString)(e))throw Object.defineProperty(Error("Next.js has blocked a javascript: URL as a security precaution."),"__NEXT_ERROR_CODE",{value:"E978",enumerable:!1,configurable:!0});let n=function(){if(null===v)throw Object.defineProperty(Error("Internal Next.js error: Router action dispatched before initialization."),"__NEXT_ERROR_CODE",{value:"E668",enumerable:!1,configurable:!0});return v}();switch(t?.kind??l.PrefetchKind.AUTO){case l.PrefetchKind.AUTO:r=c.FetchStrategy.PPR;break;case l.PrefetchKind.FULL:r=c.FetchStrategy.Full;break;default:r=c.FetchStrategy.PPR}(0,s.prefetch)(e,n.state.nextUrl,n.state.tree,r,t?.onInvalidate??null)},replace:(e,t)=>{if((0,y.isJavaScriptURLString)(e))throw Object.defineProperty(Error("Next.js has blocked a javascript: URL as a security precaution."),"__NEXT_ERROR_CODE",{value:"E978",enumerable:!1,configurable:!0});(0,i.startTransition)(()=>{P(e,"replace",t?.scroll===!1?l.ScrollBehavior.NoScroll:l.ScrollBehavior.Default,null,t?.transitionTypes)})},push:(e,t)=>{if((0,y.isJavaScriptURLString)(e))throw Object.defineProperty(Error("Next.js has blocked a javascript: URL as a security precaution."),"__NEXT_ERROR_CODE",{value:"E978",enumerable:!1,configurable:!0});(0,i.startTransition)(()=>{P(e,"push",t?.scroll===!1?l.ScrollBehavior.NoScroll:l.ScrollBehavior.Default,null,t?.transitionTypes)})},refresh:()=>{(0,i.startTransition)(()=>{(0,f.dispatchAppRouterAction)({type:l.ACTION_REFRESH})})},hmrRefresh:()=>{throw Object.defineProperty(Error("hmrRefresh can only be used in development mode. Please use refresh instead."),"__NEXT_ERROR_CODE",{value:"E485",enumerable:!1,configurable:!0})}};"u">typeof window&&window.next&&(window.next.router=b),("function"==typeof r.default||"object"==typeof r.default&&null!==r.default)&&void 0===r.default.__esModule&&(Object.defineProperty(r.default,"__esModule",{value:!0}),Object.assign(r.default,r),t.exports=r.default)}]); \ No newline at end of file diff --git a/build/_not-found.html b/build/_not-found.html deleted file mode 100644 index 0678dde..0000000 --- a/build/_not-found.html +++ /dev/null @@ -1,680 +0,0 @@ -404: This page could not be found.Doormile — Delivering Trust. Beyond Boundaries

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

404

This page could not be found.

\ No newline at end of file diff --git a/build/_not-found.txt b/build/_not-found.txt deleted file mode 100644 index 1fd59ca..0000000 --- a/build/_not-found.txt +++ /dev/null @@ -1,27 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -d:"$Sreact.suspense" -10:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -12:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -14:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,null]},null,false,"$@f"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14",["$L15"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -16:[] -f:"$W16" -15:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -17:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -e:null -13:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L17","7",{}]] diff --git a/build/_not-found/__next._full.txt b/build/_not-found/__next._full.txt deleted file mode 100644 index 1fd59ca..0000000 --- a/build/_not-found/__next._full.txt +++ /dev/null @@ -1,27 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -d:"$Sreact.suspense" -10:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -12:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -14:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:2:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,null]},null,false,"$@f"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L10",null,{"children":"$L11"}],["$","div",null,{"hidden":true,"children":["$","$L12",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$L13"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$14",["$L15"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -16:[] -f:"$W16" -15:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -17:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -e:null -13:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L17","7",{}]] diff --git a/build/_not-found/__next._index.txt b/build/_not-found/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/_not-found/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/_not-found/__next._not-found.txt b/build/_not-found/__next._not-found.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/_not-found/__next._not-found.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/about-us/__next._index.txt b/build/about-us/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/about-us/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/about-us/__next.about-us.txt b/build/about-us/__next.about-us.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/about-us/__next.about-us.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/air-freight.html b/build/air-freight.html deleted file mode 100644 index ab59448..0000000 --- a/build/air-freight.html +++ /dev/null @@ -1 +0,0 @@ -Doormile — Delivering Trust. Beyond Boundaries \ No newline at end of file diff --git a/build/air-freight.txt b/build/air-freight.txt deleted file mode 100644 index 45eed24..0000000 --- a/build/air-freight.txt +++ /dev/null @@ -1,32 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","air-freight"],"q":"","i":false,"f":[[["",{"children":["air-freight",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",null,["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -c:E{"digest":"NEXT_REDIRECT;replace;/doormile-wings;308;"} -16:[] -10:"$W16" -12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -17:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -f:null -14:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L17","8",{}]] diff --git a/build/air-freight/__next._full.txt b/build/air-freight/__next._full.txt deleted file mode 100644 index 45eed24..0000000 --- a/build/air-freight/__next._full.txt +++ /dev/null @@ -1,32 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -d:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -e:"$Sreact.suspense" -11:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -13:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -15:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","air-freight"],"q":"","i":false,"f":[[["",{"children":["air-freight",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":["$Lc",null,["$","$Ld",null,{"children":["$","$e",null,{"name":"Next.MetadataOutlet","children":"$@f"}]}]]}],{},null,false,null]},null,false,"$@10"]},null,false,null],["$","$1","h",{"children":[null,["$","$L11",null,{"children":"$L12"}],["$","div",null,{"hidden":true,"children":["$","$L13",null,{"children":["$","$e",null,{"name":"Next.Metadata","children":"$L14"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$15",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -c:E{"digest":"NEXT_REDIRECT;replace;/doormile-wings;308;"} -16:[] -10:"$W16" -12:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -17:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -f:null -14:[["$","title","0",{"children":"Doormile — Delivering Trust. Beyond Boundaries"}],["$","meta","1",{"name":"description","content":"Doormile powers last-mile logistics with MileTruth™ AI, providing connected miles, SLA protection, and carrier management."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/doormile-wings"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L17","8",{}]] diff --git a/build/air-freight/__next._index.txt b/build/air-freight/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/air-freight/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/air-freight/__next.air-freight.txt b/build/air-freight/__next.air-freight.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/air-freight/__next.air-freight.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog.html b/build/blog.html deleted file mode 100644 index 1e67d0c..0000000 --- a/build/blog.html +++ /dev/null @@ -1,863 +0,0 @@ -Blog – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Delivering Trust.
Beyond Boundaries

\ No newline at end of file diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub.html b/build/blog/42-less-distance-insights-from-our-hyderabad-hub.html deleted file mode 100644 index 79447c9..0000000 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub.html +++ /dev/null @@ -1,1168 +0,0 @@ -42% Less Distance: Insights from Our Hyderabad Hub – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Case Study

42% Less Distance: Insights from Our Hyderabad Hub

Doormile Team2 min read

Numbers settle arguments. At our Hyderabad hub, the goal was simple: reduce avoidable distance without missing customer commitments. The result was a 42% reduction in total distance travelled.

Hyderabad is not an easy city for delivery planning. Dense commercial areas, fast-growing suburbs, flyover work, narrow service lanes, apartment security checks, and sudden traffic build-up can all change the day.

The baseline

Before MileTruth, the hub planned routes in the usual way. Zones were drawn from experience, dispatchers sequenced stops manually, and riders adjusted on the road when something changed.

That process worked, but it carried hidden costs. Two riders might cross the same area in the same hour. A vehicle might take a longer loop to avoid one late stop. A dispatcher might hold back an order because the best vehicle was not obvious in the moment.

  • Zone-based allocation that missed nearby cross-zone drops
  • Manual stop sequencing during busy dispatch windows
  • ETAs checked after routing instead of before dispatch
  • Traffic and delay handling that depended on phone calls from riders

What changed

The main change was treating the day's orders as one connected plan instead of separate zone lists. The route plan considered distance, rider capacity, delivery windows, traffic, and vehicle availability together.

During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, we reduced missed delivery windows and improved on-time performance.

Hyderabad delivery hub routing analysis
Planning the day's deliveries together removed repeated cross-town travel.

The results

  • 42% reduction in total distance travelled across the hub
  • 37% fewer vehicles required for the same delivery volume
  • No SLA misses during the measured deployment window
  • Lower fuel use and fewer unnecessary kilometres per parcel

The improvement did not come from asking riders to work harder. It came from giving the team a better route plan before the vehicles left.

Hyderabad Hub Operations

Why this applies beyond one hub

The Hyderabad result was not a one-city exception. Most hubs deal with the same issues: overlapping routes, conservative sequencing, traffic surprises, charging constraints, and last-minute order changes.

A 42% cut in distance changes the cost of running the operation. It also gives dispatchers more breathing room when the day gets messy.

\ No newline at end of file diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._head.txt b/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._head.txt deleted file mode 100644 index 28a70ee..0000000 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"42% Less Distance: Insights from Our Hyderabad Hub – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Case Study,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","6",{"property":"og:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","7",{"property":"og:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/42-less-distance-insights-from-our-hyderabad-hub"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-15.webp"}],["$","meta","11",{"property":"og:image:alt","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-18T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"42% Less Distance: Insights from Our Hyderabad Hub"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how one Hyderabad hub reduced distance, used fewer vehicles, and protected delivery windows with better route planning."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-15.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._index.txt b/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.$d$slug.txt b/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.txt b/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/42-less-distance-insights-from-our-hyderabad-hub/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/__next._index.txt b/build/blog/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/__next.blog.txt b/build/blog/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation.html b/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation.html deleted file mode 100644 index e9505df..0000000 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation.html +++ /dev/null @@ -1,1168 +0,0 @@ -Battery Simulation: The Secret to EV Route Pre-Validation – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

EV Fleet

Battery Simulation: The Secret to EV Route Pre-Validation

Doormile Team2 min read

A stranded EV is not just a late delivery. It means a vehicle is out of service, a customer is waiting, and the hub has to arrange recovery. Range checks need to happen before dispatch.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Battery Simulation: The Secret to EV Route Pre-Validation looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Battery Simulation: The Secret to EV Route Pre-Validation
EV Fleet: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._head.txt b/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._head.txt deleted file mode 100644 index 94bdfb7..0000000 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Battery Simulation: The Secret to EV Route Pre-Validation – Doormile"}],["$","meta","1",{"name":"description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","6",{"property":"og:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","7",{"property":"og:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/battery-simulation-the-secret-to-ev-route-pre-validation"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-3.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-12T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Battery Simulation: The Secret to EV Route Pre-Validation"}],["$","meta","17",{"name":"twitter:description","content":"Before a rider leaves the hub, every EV route should be checked against real charge capacity and the expected return plan."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-3.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._index.txt b/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.$d$slug.txt b/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.txt b/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/battery-simulation-the-secret-to-ev-route-pre-validation/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics.html b/build/blog/building-a-greener-city-the-future-of-urban-logistics.html deleted file mode 100644 index 2efa575..0000000 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics.html +++ /dev/null @@ -1,1168 +0,0 @@ -Building a Greener City: The Future of Urban Logistics – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Sustainability

Building a Greener City: The Future of Urban Logistics

Doormile Team2 min read

Cleaner delivery is becoming an operating requirement, not just a brand message. It depends on EV adoption and route plans that make those vehicles practical every day.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Building a Greener City: The Future of Urban Logistics looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Building a Greener City: The Future of Urban Logistics
Sustainability: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._head.txt b/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._head.txt deleted file mode 100644 index 219a702..0000000 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Building a Greener City: The Future of Urban Logistics – Doormile"}],["$","meta","1",{"name":"description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Sustainability,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","6",{"property":"og:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","7",{"property":"og:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/building-a-greener-city-the-future-of-urban-logistics"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-6.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-10T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Building a Greener City: The Future of Urban Logistics"}],["$","meta","17",{"name":"twitter:description","content":"Cities are asking for cleaner delivery. The practical challenge is planning EV routes that can meet customer windows without wasting charge."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-6.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._index.txt b/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.$d$slug.txt b/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.txt b/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/building-a-greener-city-the-future-of-urban-logistics/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume.html b/build/blog/fleet-reduction-without-compromising-delivery-volume.html deleted file mode 100644 index 9af44cb..0000000 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume.html +++ /dev/null @@ -1,1168 +0,0 @@ -Fleet Reduction Without Compromising Delivery Volume – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Fleet Management

Fleet Reduction Without Compromising Delivery Volume

Doormile Team2 min read

Cutting vehicles usually means cutting capacity unless the removed kilometres were never needed. Better route planning turns wasted distance into operating headroom.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Fleet Reduction Without Compromising Delivery Volume looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Fleet Reduction Without Compromising Delivery Volume
Fleet Management: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._head.txt b/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._head.txt deleted file mode 100644 index 2ba8289..0000000 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Fleet Reduction Without Compromising Delivery Volume – Doormile"}],["$","meta","1",{"name":"description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Fleet Management,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","6",{"property":"og:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","7",{"property":"og:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/fleet-reduction-without-compromising-delivery-volume"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-8.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-07-24T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Fleet Reduction Without Compromising Delivery Volume"}],["$","meta","17",{"name":"twitter:description","content":"Handling the same order volume with fewer vehicles starts by removing avoidable kilometres and overlapping routes."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-8.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._index.txt b/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.$d$slug.txt b/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.txt b/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/fleet-reduction-without-compromising-delivery-volume/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery.html b/build/blog/how-ai-is-transforming-last-mile-ev-delivery.html deleted file mode 100644 index 8830acc..0000000 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery.html +++ /dev/null @@ -1,1168 +0,0 @@ -How Better Planning Improves Last-Mile EV Delivery – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Technology

How Better Planning Improves Last-Mile EV Delivery

Doormile Team2 min read

The last mile is already difficult to plan. With electric vehicles, the team also has to think about battery range, charging time, rider load, traffic, and delivery windows. Good planning turns those moving parts into a workable dispatch plan.

For a long time, last-mile planning depended on dispatchers, spreadsheets, and local experience. That experience still matters. The problem is that it gets stretched thin when order volume rises and the fleet includes EVs.

The shift from fixed rules to daily planning

A fixed-zone plan may look clean in the morning, but the road rarely follows the plan. A rider may get delayed near Hitec City, a gated community may hold a vehicle for ten extra minutes, or a battery may drain faster because the load is heavier than usual.

  • Order volumes by area, time slot, and customer type
  • Travel times based on the city's actual traffic patterns
  • Battery use by vehicle type, rider load, and route length
  • Feedback from completed deliveries, failed attempts, and late arrivals

Adjusting during the day

The first plan is only the starting point. By 11 a.m., traffic may change, a high-priority order may arrive, or one vehicle may return with less charge than expected. The dispatch team needs a way to adjust without rebuilding the whole day by hand.

During peak traffic hours in Hyderabad, some vehicles were arriving 20 to 30 minutes later than planned. By adjusting routes based on live traffic and battery levels, the hub reduced missed delivery windows and improved on-time performance.

Electric delivery vehicle routing visualisation
EV route plans need to account for range, load, traffic, and charging time before riders leave the hub.

With EVs, a route is only useful if the vehicle can finish it and still return safely.

Doormile Operations

What this means for operators

For a fleet manager, this is not about fancy software. It is about fewer emergency calls, fewer mid-route swaps, and fewer customers asking why their delivery missed the promised window.

  1. Record delivery times, failed attempts, traffic delays, and charging cycles.
  2. Build travel-time estimates from the areas your riders actually serve.
  3. Check every route against battery capacity before dispatch.
  4. Replan when traffic, orders, or vehicle availability changes.

The fleets that improve fastest are usually not the ones adding vehicles first. They are the ones removing wasted distance, planning charging properly, and giving riders routes they can complete on time.

\ No newline at end of file diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._head.txt b/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._head.txt deleted file mode 100644 index 23b2374..0000000 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"How Better Planning Improves Last-Mile EV Delivery – Doormile"}],["$","meta","1",{"name":"description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","6",{"property":"og:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","7",{"property":"og:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/how-ai-is-transforming-last-mile-ev-delivery"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-17.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-10-02T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Better Planning Improves Last-Mile EV Delivery"}],["$","meta","17",{"name":"twitter:description","content":"A practical look at how EV fleets can plan routes, manage charging, and keep delivery promises without adding unnecessary vehicles."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-17.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._index.txt b/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.$d$slug.txt b/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.txt b/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/how-ai-is-transforming-last-mile-ev-delivery/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.html b/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.html deleted file mode 100644 index 937906b..0000000 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale.html +++ /dev/null @@ -1,1168 +0,0 @@ -How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Operations

How Doormile Maintains 99.9% SLA Compliance at Scale

Doormile Team2 min read

Strong SLA performance is not luck. It comes from planning the day so late deliveries are the exception, not the expected risk.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. How Doormile Maintains 99.9% SLA Compliance at Scale looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

How Doormile Maintains 99.9% SLA Compliance at Scale
Operations: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._head.txt b/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._head.txt deleted file mode 100644 index 6be6839..0000000 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"How Doormile Maintains 99.9% SLA Compliance at Scale – Doormile"}],["$","meta","1",{"name":"description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Operations,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","6",{"property":"og:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","7",{"property":"og:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/how-doormile-maintains-99-9-sla-compliance-at-scale"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/last-mile-approach.webp"}],["$","meta","11",{"property":"og:image:alt","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-06-26T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"How Doormile Maintains 99.9% SLA Compliance at Scale"}],["$","meta","17",{"name":"twitter:description","content":"High SLA performance comes from checking ETAs before dispatch, reacting early to delays, and keeping customer commitments visible throughout the day."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/last-mile-approach.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._index.txt b/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.$d$slug.txt b/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.txt b/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/how-doormile-maintains-99-9-sla-compliance-at-scale/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch.html b/build/blog/miletruth-ai-10-stages-to-smarter-dispatch.html deleted file mode 100644 index 8b89543..0000000 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch.html +++ /dev/null @@ -1,1168 +0,0 @@ -MileTruth™: 10 Stages to Smarter Dispatch – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

MileTruth

MileTruth™: 10 Stages to Smarter Dispatch

Doormile Team2 min read

Behind every Doormile dispatch is a step-by-step route planning process. Each stage removes a common source of error before the plan reaches the rider.

A dispatch plan has to be fast, but it also has to be usable. A quick route that ignores a bad address, low battery, or tight delivery window creates problems later in the day.

The ten stages

  1. Order intake: new orders, rider availability, and vehicle status are collected.
  2. Address check: delivery points, time windows, and service notes are verified.
  3. Stop planning: each stop gets an expected service time and delivery priority.
  4. Travel-time check: routes are compared against time-of-day traffic.
  5. Constraint check: capacity, shift time, customer windows, and range are applied.
  6. Route options: several possible plans are built for the same order set.
  7. Plan selection: the lowest-cost workable route plan is selected.
  8. Battery check: EV routes are checked against real charge capacity.
  9. ETA check: promised delivery times are verified before dispatch.
  10. Dispatch output: the final route is sent to the operations team.

Why staging matters

When everything is checked in one step, small errors slip through. A wrong pin, a missing apartment note, or a low battery warning can reach the rider and become a customer issue.

MileTruth routing pipeline diagram
A staged dispatch process catches address, range, and ETA issues before riders leave.

Each stage should remove one kind of mistake. By dispatch time, the route should already be practical.

MileTruth Engineering

Comparing route options

The useful part is not only building one route. It is comparing a few workable route options before choosing the plan. One option may save distance, another may protect a tight delivery window, and another may keep an EV closer to a charger.

  • Several route plans checked before dispatch
  • Distance, time windows, capacity, and range considered together
  • Range and ETA checked before the route reaches the rider
  • Fast output that still leaves room for dispatcher review

The goal is simple: give the dispatch team a route plan they can trust before the first vehicle leaves the hub.

\ No newline at end of file diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._head.txt b/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._head.txt deleted file mode 100644 index e1f7850..0000000 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"MileTruth™: 10 Stages to Smarter Dispatch – Doormile"}],["$","meta","1",{"name":"description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"MileTruth,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","6",{"property":"og:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","7",{"property":"og:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/miletruth-ai-10-stages-to-smarter-dispatch"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-31.webp"}],["$","meta","11",{"property":"og:image:alt","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-09-05T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"MileTruth™: 10 Stages to Smarter Dispatch"}],["$","meta","17",{"name":"twitter:description","content":"From order intake to final route output, here is how a dispatch plan is checked before riders leave the hub."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-31.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._index.txt b/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.$d$slug.txt b/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.txt b/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/miletruth-ai-10-stages-to-smarter-dispatch/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.html b/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.html deleted file mode 100644 index ce7eb8e..0000000 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets.html +++ /dev/null @@ -1,1168 +0,0 @@ -The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

EV Fleet

The EV Paradox: Solving Range Anxiety for Urban Fleets

Doormile Team2 min read

Electric fleets can lower running costs, but range becomes a daily planning constraint. The route has to match the battery, the load, the traffic, and the return plan.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. The EV Paradox: Solving Range Anxiety for Urban Fleets looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

The EV Paradox: Solving Range Anxiety for Urban Fleets
EV Fleet: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._head.txt b/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._head.txt deleted file mode 100644 index 9ff2960..0000000 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"The EV Paradox: Solving Range Anxiety for Urban Fleets – Doormile"}],["$","meta","1",{"name":"description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"EV Fleet,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","6",{"property":"og:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","7",{"property":"og:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/ev-paradox.webp"}],["$","meta","11",{"property":"og:image:alt","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-21T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"The EV Paradox: Solving Range Anxiety for Urban Fleets"}],["$","meta","17",{"name":"twitter:description","content":"Electric vehicles lower running costs, but battery range changes how routes must be planned before dispatch."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/ev-paradox.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._index.txt b/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.$d$slug.txt b/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.txt b/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/the-ev-paradox-solving-range-anxiety-for-urban-fleets/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing.html b/build/blog/why-mathematical-precision-beats-heuristics-in-routing.html deleted file mode 100644 index 7ea3c0a..0000000 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing.html +++ /dev/null @@ -1,1168 +0,0 @@ -Why Mathematical Precision Beats Heuristics in Routing – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Technology

Why Mathematical Precision Beats Heuristics in Routing

Doormile Team2 min read

Simple routing rules are fast to set up, but they can quietly add distance every day. Better planning compares more route options before dispatch.

In last-mile logistics, a missed SLA is rarely caused by one big failure. It usually comes from small delays adding up across a route. Why Mathematical Precision Beats Heuristics in Routing looks at how delivery teams can spot those delays early and plan around them before vehicles leave the hub.

Why this matters for fleet teams

Every extra kilometre costs money. It uses fuel or charge, adds rider time, wears down vehicles, and increases the chance of a late delivery. When routes are built from fixed zones or old habits, those costs repeat every day.

  • Fewer vehicles needed for the same number of drops
  • Lower cost per drop through better stop sequencing
  • ETAs that match traffic, distance, and delivery windows
  • Less fuel or charge used per completed order

From orders to dispatch

A good dispatch plan starts with the basics: order locations, promised delivery windows, rider capacity, vehicle range, and known traffic trouble spots. MileTruth™ checks those inputs before dispatch so the team is not fixing avoidable mistakes on the road.

Why Mathematical Precision Beats Heuristics in Routing
Technology: route planning decisions made before dispatch.

A route should be checked before the rider leaves, not explained after the customer calls.

Doormile Operations

Putting it into practice

The best improvements usually start with simple measurements. Track distance per route, failed delivery windows, rider idle time, and orders moved between vehicles after dispatch. Those numbers show where the operation is leaking time.

  1. Benchmark today's distance, fleet size, and on-time rate.
  2. Include vehicle capacity, delivery windows, rider shifts, and battery charge.
  3. Check routes against traffic and customer commitments before dispatch.
  4. Compare the next dispatch cycle against the old plan.

Better routing is not about pushing riders harder. It is about giving them a plan that already accounts for the real day ahead.

\ No newline at end of file diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._head.txt b/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._head.txt deleted file mode 100644 index 43c123e..0000000 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._head.txt +++ /dev/null @@ -1,6 +0,0 @@ -1:"$Sreact.fragment" -2:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -3:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -4:"$Sreact.suspense" -5:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Why Mathematical Precision Beats Heuristics in Routing – Doormile"}],["$","meta","1",{"name":"description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","2",{"name":"author","content":"Doormile Team"}],["$","meta","3",{"name":"keywords","content":"Technology,last-mile logistics,EV fleet,MileTruth,route optimisation"}],["$","meta","4",{"name":"robots","content":"index, follow"}],["$","link","5",{"rel":"canonical","href":"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","6",{"property":"og:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","7",{"property":"og:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","8",{"property":"og:url","content":"https://www.doormile.com/blog/why-mathematical-precision-beats-heuristics-in-routing"}],["$","meta","9",{"property":"og:site_name","content":"Doormile"}],["$","meta","10",{"property":"og:image","content":"https://www.doormile.com/images/blog-post-pic-14.webp"}],["$","meta","11",{"property":"og:image:alt","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","12",{"property":"og:type","content":"article"}],["$","meta","13",{"property":"article:published_time","content":"2025-08-07T00:00:00.000Z"}],["$","meta","14",{"property":"article:author","content":"Doormile Team"}],["$","meta","15",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","16",{"name":"twitter:title","content":"Why Mathematical Precision Beats Heuristics in Routing"}],["$","meta","17",{"name":"twitter:description","content":"Fixed routing rules are easy to start with, but they often miss better stop sequences as order volume grows."}],["$","meta","18",{"name":"twitter:image","content":"https://www.doormile.com/images/blog-post-pic-14.webp"}],["$","link","19",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","20",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","21",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","22",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L5","23",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._index.txt b/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.$d$slug.txt b/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.$d$slug.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.$d$slug.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.txt b/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/blog/why-mathematical-precision-beats-heuristics-in-routing/__next.blog.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/contact/__next._index.txt b/build/contact/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/contact/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/contact/__next.contact.txt b/build/contact/__next.contact.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/contact/__next.contact.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/cookie-policy.html b/build/cookie-policy.html deleted file mode 100644 index 4516438..0000000 --- a/build/cookie-policy.html +++ /dev/null @@ -1,853 +0,0 @@ -Cookie Policy – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file diff --git a/build/cookie-policy/__next._index.txt b/build/cookie-policy/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/cookie-policy/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/cookie-policy/__next.cookie-policy.txt b/build/cookie-policy/__next.cookie-policy.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/cookie-policy/__next.cookie-policy.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/css/site.css b/build/css/site.css deleted file mode 100644 index 86af439..0000000 --- a/build/css/site.css +++ /dev/null @@ -1,18239 +0,0 @@ - -/* === public/css/vendor/vendor-elementor-generated-globals.css === */ -.elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #c01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; -} - -.elementor-kit-5 p { - margin-block-end: 1.7em; -} - -.elementor-kit-5 a { - color: #c01227; - text-decoration: underline; -} - -.elementor-kit-5 h1 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h2 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h3 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h4 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h5 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h6 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 button, -.elementor-kit-5 input[type="button"], -.elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; -} - -.e-con { - --container-max-width: 1380px; -} - -.elementor-widget:not(:last-child) { - margin-block-end: 0px; -} - -.elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; -} - -@media(max-width: 1200px) { - .elementor-kit-5 h1 { - font-size: 80px; - } - - .elementor-kit-5 h2 { - font-size: 60px; - } - - .elementor-kit-5 h3 { - font-size: 46px; - } - - .elementor-kit-5 h4 { - font-size: 34px; - } - - .elementor-kit-5 h5 { - font-size: 28px; - } - - .elementor-kit-5 h6 { - font-size: 22px; - } -} - -@media(max-width: 840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size: 16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - .elementor-kit-5 h1 { - font-size: 60px; - } - - .elementor-kit-5 h2 { - font-size: 50px; - } - - .elementor-kit-5 h3 { - font-size: 36px; - } - - .elementor-kit-5 h4 { - font-size: 28px; - } - - .elementor-kit-5 h5 { - font-size: 24px; - } - - .elementor-kit-5 h6 { - font-size: 20px; - } - - .e-con { - --container-max-width: 1024px; - } -} - -@media(max-width: 660px) { - .elementor-kit-5 h1 { - font-size: 40px; - } - - .elementor-kit-5 h2 { - font-size: 32px; - } - - .elementor-kit-5 h3 { - font-size: 28px; - } - - .elementor-kit-5 h4 { - font-size: 23px; - } - - .elementor-kit-5 h5 { - font-size: 20px; - } - - .elementor-kit-5 h6 { - font-size: 18px; - } -} - -@media(max-width: 480px) { - - .e-con { - --container-max-width: 767px; - } -} - -.elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #c01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; -} - -.elementor-kit-5 p { - margin-block-end: 1.7em; -} - -.elementor-kit-5 a { - color: #c01227; - text-decoration: underline; -} - -.elementor-kit-5 h1 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h2 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h3 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h4 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h5 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h6 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 button, -.elementor-kit-5 input[type="button"], -.elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; -} - -.e-con { - --container-max-width: 1380px; -} - -.elementor-widget:not(:last-child) { - margin-block-end: 0px; -} - -.elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; -} - -@media(max-width: 1200px) { - .elementor-kit-5 h1 { - font-size: 80px; - } - - .elementor-kit-5 h2 { - font-size: 60px; - } - - .elementor-kit-5 h3 { - font-size: 46px; - } - - .elementor-kit-5 h4 { - font-size: 34px; - } - - .elementor-kit-5 h5 { - font-size: 28px; - } - - .elementor-kit-5 h6 { - font-size: 22px; - } -} - -@media(max-width: 840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size: 16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - .elementor-kit-5 h1 { - font-size: 60px; - } - - .elementor-kit-5 h2 { - font-size: 50px; - } - - .elementor-kit-5 h3 { - font-size: 36px; - } - - .elementor-kit-5 h4 { - font-size: 28px; - } - - .elementor-kit-5 h5 { - font-size: 24px; - } - - .elementor-kit-5 h6 { - font-size: 20px; - } - - .e-con { - --container-max-width: 1024px; - } -} - -@media(max-width: 660px) { - .elementor-kit-5 h1 { - font-size: 40px; - } - - .elementor-kit-5 h2 { - font-size: 32px; - } - - .elementor-kit-5 h3 { - font-size: 28px; - } - - .elementor-kit-5 h4 { - font-size: 23px; - } - - .elementor-kit-5 h5 { - font-size: 20px; - } - - .elementor-kit-5 h6 { - font-size: 18px; - } -} - -@media(max-width: 480px) { - - .e-con { - --container-max-width: 767px; - } -} - -.elementor-element.elementor-element-791327c .owl-carousel.owl-theme .content-item { - height: 924px; -} - -.elementor-element.elementor-element-791327c .owl-carousel .owl-stage-outer { - border-radius: 25px 25px 25px 25px; -} - -.elementor-element.elementor-element-791327c .content-slider.nav-view-default .owl-nav { - left: 10px; - right: 10px; -} - -.elementor-element.elementor-element-791327c .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; -} - -.elementor-element.elementor-element-bbc6760 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --margin-top: 10px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-element.elementor-element-13a7637 { - width: auto; - max-width: auto; - top: 0px; - z-index: 2; -} - -body:not(.rtl) .elementor-element.elementor-element-13a7637 { - left: 20px; -} - -.elementor-element.elementor-element-13a7637 .block-decoration { - text-align: left; -} - -.elementor-element.elementor-element-13a7637 .block-decoration.block-decoration-style-1 .block-decoration-item:before { - background-color: #c01227; -} - -.elementor-element.elementor-element-13a7637 .block-decoration.block-decoration-style-1 .block-decoration-item:after { - background-color: #FFFFFF; -} - -.elementor-element.elementor-element-7da6646 { - --display: flex; - --min-height: 773px; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --background-transition: 0s; - --border-radius: 25px 25px 25px 25px; - --z-index: 1; -} - -.elementor-element.elementor-element-7da6646:not(.elementor-motion-effects-element-type-background) { - background-image: url("/images/bg-header-women.webp"); - background-position: center center; - background-repeat: no-repeat; - background-size: cover; -} - -.elementor-element.elementor-element-8b5d6e6 { - --display: flex; - --flex-direction: column; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --justify-content: flex-end; - --align-items: flex-end; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; -} - -.elementor-element.elementor-element-1f766ea { - --display: flex; - --margin-top: -298px; - --margin-bottom: -70px; - --margin-left: 0px; - --margin-right: 208px; - --z-index: 2; -} - -.elementor-element.elementor-element-3b61435 { - --display: flex; - --border-radius: 25px 25px 0px 0px; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --padding-top: 64px; - --padding-bottom: 73px; - --padding-left: 40px; - --padding-right: 38px; -} - -.elementor-element.elementor-element-3b61435:not(.elementor-motion-effects-element-type-background) { - background-color: #c01227; -} - -.elementor-element.elementor-element-c364d1c { - font-family: "Manrope", Sans-serif; - font-size: 40px; - font-weight: 700; - line-height: 1em; - letter-spacing: -0.03em; -} - -.elementor-element.elementor-element-239afbb>.elementor-widget-container { - margin: 15px 0px 0px 0px; -} - -.elementor-element.elementor-element-239afbb .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - line-height: 1em; - letter-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-element.elementor-element-0d307dd>.elementor-widget-container { - margin: 16px 0px 0px 0px; -} - -.elementor-element.elementor-element-5aea22e { - --display: flex; - --min-height: 70px; - --justify-content: center; - --align-items: center; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --border-radius: 0px 0px 25px 25px; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 40px; - --padding-right: 38px; -} - -.elementor-element.elementor-element-5aea22e:not(.elementor-motion-effects-element-type-background) { - background-color: #ffffff; -} - -.elementor-element.elementor-element-b6e14bd { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --border-radius: 0px 0px 25px 25px; - --margin-top: -25px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 186px; - --padding-bottom: 150px; - --padding-left: 0px; - --padding-right: 0px; -} - -.elementor-element.elementor-element-b6e14bd:not(.elementor-motion-effects-element-type-background) { - background-color: #1F1F1F; -} - -.elementor-element.elementor-element-90cc867 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-element.elementor-element-24c0280 { - width: 100%; - max-width: 100%; - z-index: 2; -} - -.elementor-element.elementor-element-24c0280>.elementor-widget-container { - padding: 0px 0px 13px 0px; - border-style: solid; - border-width: 0px 0px 1px 0px; - border-color: #FFFFFF; -} - -.elementor-element.elementor-element-24c0280 .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; - color: #FFFFFF; -} - -.elementor-element.elementor-element-2ed47f3 { - --display: grid; - --e-con-grid-template-columns: repeat(2, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --grid-auto-flow: row; - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-element.elementor-element-36efec7 { - --display: flex; -} - -.elementor-element.elementor-element-778840d .logico-title { - color: #FFFFFF; -} - -.elementor-element.elementor-element-bbfb67f>.elementor-widget-container { - margin: 67px 0px 0px 0px; -} - -.elementor-element.elementor-element-bbfb67f { - text-align: start; -} - -.elementor-element.elementor-element-bbfb67f img { - border-radius: 25px 25px 25px 25px; -} - -.elementor-element.elementor-element-b2c956f { - --display: flex; - --margin-top: 112px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 140px; - --padding-right: 0px; -} - -@media(max-width: 1200px) { - - .elementor-element.elementor-element-791327c .owl-carousel.owl-theme .content-item { - height: 700px; - } - - .elementor-element.elementor-element-bbc6760 { - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-7da6646 { - --min-height: 600px; - } - - .elementor-element.elementor-element-1f766ea { - --margin-top: -298px; - --margin-bottom: -70px; - --margin-left: 0px; - --margin-right: 30px; - } - - .elementor-element.elementor-element-90cc867 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-element.elementor-element-2ed47f3 { - --grid-auto-flow: row; - } - - .elementor-element.elementor-element-b2c956f { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 60px; - --padding-right: 0px; - } -} - -@media(max-width: 1020px) { - - .elementor-element.elementor-element-bbc6760 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor-element.elementor-element-7da6646 { - --min-height: 500px; - } - - .elementor-element.elementor-element-1f766ea { - --margin-top: -298px; - --margin-bottom: -70px; - --margin-left: 0px; - --margin-right: 20px; - } - - .elementor-element.elementor-element-3b61435 { - --padding-top: 40px; - --padding-bottom: 40px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-element.elementor-element-5aea22e { - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-element.elementor-element-b6e14bd { - --padding-top: 156px; - --padding-bottom: 120px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-element.elementor-element-90cc867 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-element.elementor-element-2ed47f3 { - --grid-auto-flow: row; - } - - .elementor-element.elementor-element-b2c956f { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 0px; - } -} - -@media(max-width: 840px) { - - .elementor-element.elementor-element-2ed47f3 { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } - - .elementor-element.elementor-element-bbfb67f>.elementor-widget-container { - margin: 30px 0px 0px 0px; - } - - .elementor-element.elementor-element-b2c956f { - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; - } -} - -@media(max-width: 660px) { - - .elementor-element.elementor-element-bbc6760 { - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-7da6646 { - --min-height: 320px; - --margin-top: 0px; - --margin-bottom: -25px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-1f766ea { - --margin-top: 0px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-b6e14bd { - --padding-top: 90px; - --padding-bottom: 90px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-element.elementor-element-2ed47f3 { - --grid-auto-flow: row; - } -} - -@media(max-width: 480px) { - - body:not(.rtl) .elementor-element.elementor-element-13a7637 { - left: 0px; - } - - .elementor-element.elementor-element-13a7637 { - top: 0px; - } - - .elementor-element.elementor-element-1f766ea { - --width: 100%; - --margin-top: 0px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-2ed47f3 { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } -} - -@media(min-width: 481px) { - .elementor-element.elementor-element-1f766ea { - --width: 363px; - } -} - -@media(max-width: 1020px) and (min-width:481px) { - .elementor-element.elementor-element-1f766ea { - --width: 340px; - } -} - -@media(max-width: 660px) and (min-width:481px) { - .elementor-element.elementor-element-1f766ea { - --width: 100%; - } -} - - - -/* === public/css/vendor/vendor-elementor-base.css === */ - -/* === public/css/vendor/vendor-elementor-custom.min.css === */ -:root { - --direction-multiplier: 1 -} - -.elementor-screen-only,.screen-reader-text,.screen-reader-text span { - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - top: -10000em; - width: 1px; - clip: rect(0,0,0,0); - border: 0 -} - - - -.elementor a { - box-shadow: none; - text-decoration: none -} - -.elementor img { - border: none; - border-radius: 0; - box-shadow: none; - height: auto; - max-width: 100% -} - -.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure { - margin: 0 -} - -.elementor embed,.elementor iframe,.elementor object { - border: none; - line-height: 1; - margin: 0; - max-width: 100%; - width: 100% -} - -.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute { - position: absolute -} - -/* .elementor-element { - --flex-direction: initial; - --flex-wrap: initial; - --justify-content: initial; - --align-items: initial; - --align-content: initial; - --gap: initial; - --flex-basis: initial; - --flex-grow: initial; - --flex-shrink: initial; - --order: initial; - --align-self: initial; - align-self: var(--align-self); - flex-basis: var(--flex-basis); - flex-grow: var(--flex-grow); - flex-shrink: var(--flex-shrink); - order: var(--order) -} */ - -.elementor-element.elementor-absolute { - z-index: 1 -} - -:root { - --page-title-display: block -} - -@keyframes eicon-spin { - 0% { - transform: rotate(0deg) - } - - to { - transform: rotate(359deg) - } -} - -.elementor-widget { - position: relative -} - -.elementor-widget:not(:last-child) { - margin-bottom: var(--kit-widget-spacing,20px) -} - -.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial { - margin-bottom: 0 -} - -.elementor-grid { - display: grid; - grid-column-gap: var(--grid-column-gap); - grid-row-gap: var(--grid-row-gap) -} - -.elementor-grid .elementor-grid-item { - min-width: 0 -} - -.elementor-grid-0 .elementor-grid { - display: inline-block; - margin-bottom: calc(-1 * var(--grid-row-gap)); - width: 100%; - word-spacing: var(--grid-column-gap) -} - -.elementor-grid-0 .elementor-grid .elementor-grid-item { - display: inline-block; - margin-bottom: var(--grid-row-gap); - word-break: break-word -} - -@media (prefers-reduced-motion:no-preference) { - html { - scroll-behavior: smooth - } -} - -.elementor-icon { - color: #69727d; - display: inline-block; - font-size: 50px; - line-height: 1; - text-align: center; - transition: all .3s -} - -.elementor-icon:hover { - color: #69727d -} - -.elementor-icon i,.elementor-icon svg { - display: block; - height: 1em; - position: relative; - width: 1em -} - -.elementor-icon i:before,.elementor-icon svg:before { - left: 50%; - position: absolute; - transform: translateX(-50%) -} - -.elementor-shape-square .elementor-icon { - border-radius: 0 -} - -.animated { - animation-duration: 1.25s -} - -.animated.animated-slow { - animation-duration: 2s -} - -.animated.animated-fast { - animation-duration: .75s -} - -.animated.infinite { - animation-iteration-count: infinite -} - -.animated.reverse { - animation-direction: reverse; - animation-fill-mode: forwards -} - -@media (prefers-reduced-motion:reduce) { - .animated { - animation: none!important - } -} - -@media (max-width: 480px) { - .elementor .elementor-hidden-mobile { - display:none - } -} - -@media (min-width: 481px) and (max-width:660px) { - .elementor .elementor-hidden-mobile_extra { - display:none - } -} - -@media (min-width: 661px) and (max-width:840px) { - .elementor .elementor-hidden-tablet { - display:none - } -} - -@media (min-width: 841px) and (max-width:1020px) { - .elementor .elementor-hidden-tablet_extra { - display:none - } -} - -@media (min-width: 1021px) and (max-width:1200px) { - .elementor .elementor-hidden-laptop { - display:none - } -} - -/* === public/css/vendor/vendor-theme-core.css === */ -@charset "UTF-8";@font-face { - font-display: swap; - font-family: 'fontello'; - src: url(/fonts/fontello.eot?98791691); - src: url("/fonts/fontello.eot?98791691#iefix") format("embedded-opentype"),url(/fonts/fontello.woff2?98791691) format("woff2"),url(/fonts/fontello.woff?98791691) format("woff"),url(/fonts/fontello.ttf?98791691) format("truetype"),url("/fonts/fontello.svg?98791691#fontello") format("svg"); - font-weight: 400; - font-style: normal -} - - -.fontello { - font-family: 'fontello'; - font-style: normal; - font-weight: 400; - display: inline-block; - text-decoration: inherit; - width: 1em; - text-align: center; - font-variant: normal; - text-transform: none; - line-height: 1em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale -} - -.icon-light-container:before { - content: '\e839' -} - -.icon-light-delivery:before { - content: '\e83a' -} - -.icon-light-directions:before { - content: '\e83b' -} - -.icon-light-storage:before { - content: '\e83c' -} - -.icon-air-delivery:before { - content: '\e841' -} - -.icon-container:before { - content: '\e846' -} - -.icon-half-logo:before { - content: '\e851' -} - -.icon-supply-chain:before { - content: '\e863' -} - -.icon-trolley:before { - content: '\e867' -} - -@keyframes a { - to { - transform: rotate(1turn) - } -} - -.fancybox-animated { - transition-timing-function: cubic-bezier(0,0,.25,1) -} - -@font-face { - font-family: 'Font Awesome 5 Free'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(/fonts/fa-regular-400.woff2) format("woff2"),url(/fonts/fa-regular-400.ttf) format("truetype") -} - - -.far { - font-weight: 400 -} - -@font-face { - font-family: 'Font Awesome 5 Free'; - font-style: normal; - font-weight: 900; - font-display: swap; - src: url(/fonts/fa-solid-900.woff2) format("woff2"),url(/fonts/fa-solid-900.ttf) format("truetype") -} - -@font-face { - font-family: 'Font Awesome 5 Brands'; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url(/fonts/fa-brands-400.woff2) format("woff2"),url(/fonts/fa-brands-400.ttf) format("truetype") -} - - -.fab { - font-weight: 400 -} - -.fa-linkedin-in:before { - content: "\f0e1" -} - -.far,.fab { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1 -} - -.far { - font-family: 'Font Awesome 6 Free' -} - -.fab { - font-family: 'Font Awesome 6 Brands' -} - -.owl-carousel { - display: none; - width: 100%; - -webkit-tap-highlight-color: transparent; - position: relative; - z-index: 1 -} - -.owl-carousel .owl-stage { - position: relative; - -ms-touch-action: pan-Y; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: flex-start; - -moz-align-items: flex-start; - -ms-align-items: flex-start; - align-items: flex-start -} - -.owl-carousel .owl-stage:after { - content: "."; - display: block; - clear: both; - visibility: hidden; - line-height: 0; - height: 0 -} - -.owl-carousel .owl-stage-outer { - position: relative; - overflow: hidden; - -webkit-transform: translate3d(0,0,0) -} - -.owl-carousel.slider-style-visible .owl-stage-outer { - overflow: initial -} - -.owl-carousel .owl-item { - position: relative; - min-height: 1px; - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0; - outline: none; - -webkit-backface-visibility: hidden; - -webkit-tap-highlight-color: transparent; - -webkit-touch-callout: none -} - -.owl-carousel .owl-item img { - display: inline-block; - max-width: 100%; - -webkit-transform-style: preserve-3d -} - -.owl-carousel .owl-nav.disabled,.owl-dots.disabled { - display: none!important -} - -.owl-carousel .owl-nav .owl-prev,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-dot { - cursor: pointer; - cursor: hand; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none -} - -.owl-carousel.owl-loaded { - display: block -} - -.owl-carousel.owl-loading { - opacity: 0; - display: block -} - -.owl-carousel.owl-hidden { - opacity: 0 -} - -.owl-carousel.owl-refresh .owl-item { - visibility: hidden -} - -.owl-carousel.owl-drag .owl-item { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none -} - -.owl-carousel.owl-grab { - cursor: move; - cursor: grab -} - -.owl-carousel.owl-rtl { - direction: rtl -} - -.owl-carousel.owl-rtl .owl-item { - float: right -} - -.no-js .owl-carousel { - display: block -} - -.owl-carousel .animated { - -webkit-animation-duration: 1000ms; - animation-duration: 1000ms; - -webkit-animation-fill-mode: both; - animation-fill-mode: both -} - -.owl-carousel .owl-animated-in { - z-index: 0 -} - -.owl-carousel .owl-animated-out { - z-index: 1 -} - -.owl-carousel .fadeOut { - -webkit-animation-name: fadeOut; - animation-name: fadeOut -} - -@-webkit-keyframes fadeOut { - 0% { - opacity: 1 - } - - 100% { - opacity: 0 - } -} - -@keyframes fadeOut { - 0% { - opacity: 1 - } - - 100% { - opacity: 0 - } -} - -.owl-height { - transition: height 500ms ease-in-out -} - -.owl-carousel .owl-item .owl-lazy { - opacity: 0; - transition: opacity 400ms ease -} - -.owl-carousel .owl-item img.owl-lazy { - -webkit-transform-style: preserve-3d; - transform-style: preserve-3d -} - -.owl-carousel .owl-video-wrapper { - position: relative; - height: 100%; - background: #000 -} - -.owl-carousel .owl-video-play-icon { - position: absolute; - height: 80px; - width: 80px; - left: 50%; - top: 50%; - margin-left: -40px; - margin-top: -40px; - cursor: pointer; - z-index: 1; - -webkit-backface-visibility: hidden; - transition: -webkit-transform 100ms ease; - transition: transform 100ms ease -} - -.owl-carousel .owl-video-play-icon:hover { - -webkit-transform: scale(1.3,1.3); - -ms-transform: scale(1.3,1.3); - transform: scale(1.3,1.3) -} - -.owl-carousel .owl-video-playing .owl-video-tn,.owl-carousel .owl-video-playing .owl-video-play-icon { - display: none -} - -.owl-carousel .owl-video-tn { - opacity: 0; - height: 100%; - background-position: center center; - background-repeat: no-repeat; - background-size: contain; - transition: opacity 400ms ease -} - -.owl-carousel .owl-video-frame { - position: relative; - z-index: 1; - height: 100%; - width: 100% -} - -.owl-theme .owl-nav { - margin-top: 10px; - text-align: center; - -webkit-tap-highlight-color: transparent -} - -.owl-theme .owl-nav [class*='owl-'] { - font-size: 14px; - margin: 5px; - display: inline-block; - cursor: pointer -} - -.owl-theme .owl-nav [class*='owl-']:hover { - text-decoration: none -} - -.owl-theme .owl-nav .disabled { - opacity: .5; - cursor: default -} - -.slider-footer.slider-footer-view-inside { - position: absolute; - width: 100% -} - -.slider-footer.slider-footer-view-inside.slider-footer-position-after { - bottom: 0; - margin-bottom: 30px -} - - - -.slider-pagination { - display: inline-block; - vertical-align: top -} - -.slider-progress-wrapper { - font-size: 16px; - line-height: 1.6875em; - font-weight: 500; - text-align: left; - position: relative; - z-index: 2 -} - -.slider-progress-wrapper .slider-progress-current { - font-weight: 600 -} - -.owl-dots { - -webkit-tap-highlight-color: transparent; - margin: 0 -7px -15px -8px; - position: relative; - z-index: 2; - font-size: 0; - line-height: 1 -} - -.owl-dots:not(.disabled):not(:first-child) { - margin-top: 15px -} - -.content-wrapper .owl-dots button.owl-dot,.content-wrapper .slider-dots button.owl-dot { - display: inline-block; - vertical-align: top; - zoom:1;margin: 0 7px 15px 8px; - height: 4px; - padding: 0; - cursor: pointer; - outline: none; - border: none; - background: none -} - -.content-wrapper .owl-dots button.owl-dot span,.content-wrapper .slider-dots button.owl-dot span { - width: 48px; - height: 4px; - display: block; - -webkit-backface-visibility: visible; - position: relative; - -webkit-transition: border-color 0.3s; - transition: border-color 0.3s; - -moz-box-sizing: border-box; - box-sizing: border-box; - border-bottom: solid 2px var(--logico-dark-text-color) -} - -.content-wrapper .owl-dots button.owl-dot.active span,.content-wrapper .slider-dots button.owl-dot.active span { - border-bottom: solid 4px var(--logico-accent-color) -} - -.sayit_owlCarousel.owl-carousel .owl-dot { - border: rgba(255,255,255,0) 2px solid; - border-radius: 100%; - transition: border 400ms; - margin: 0 7px -} - -.sayit_owlCarousel.owl-carousel .owl-dot.active { - border: #fff 2px solid -} - -.sayit_owlCarousel.owl-carousel .owl-dot { - border: rgba(255,255,255,0) 2px solid; - border-radius: 100% -} - -.sayit_owlCarousel.owl-carousel .owl-dot span { - border-radius: 100%; - background: rgba(255,255,255,.5); - transition: background 400ms; - width: 6px; - height: 6px; - margin: 0 -} - -.sayit_owlCarousel.owl-carousel .owl-dot.active span { - background: rgba(255,255,255,0) -} - -.sayit_owlCarousel.owl-carousel .owl-dots,.sayit_owlCarousel.owl-carousel .slider-dots { - margin: 0 0 0 0!important; - position: relative; - z-index: 5; - transform: translateY(-46px) -} - -.owl-carousel { - position: relative -} - -.owl-carousel.owl-theme .owl-nav { - height: 48px; - margin-top: 0; - position: absolute; - top: 50%; - left: 50px; - right: 50px; - opacity: 0; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-transition: all 0.3s 0.3s; - transition: all 0.3s 0.3s; - z-index: 10 -} - -.owl-carousel.owl-theme .owl-nav [class*="owl-"] { - width: 48px; - height: 48px; - margin: 0; - padding: 0; - position: absolute; - -webkit-transition: all 0.3s; - transition: all 0.3s; - -webkit-border-radius: 0; - border-radius: 0; - text-decoration: none; - outline: none; - cursor: pointer; - text-align: center; - overflow: hidden; - border: none; - background-color: var(--logico-background-color); - color: var(--logico-dark-text-color) -} - -.owl-carousel.owl-theme .owl-nav [class*="owl-"]:before { - font: 400 normal 14px/48px 'fontello' -} - -.owl-carousel.owl-theme .owl-nav [class*="owl-"]:after { - content: none; - display: none -} - -.owl-carousel.owl-theme .owl-nav [class*="owl-"].disabled { - cursor: default; - opacity: .5 -} - -.owl-carousel.owl-theme .owl-nav [class*="owl-"]:not(.disabled):hover { - color: var(--logico-dark-text-color); - background-color: var(--logico-accent-color) -} - -.owl-carousel.owl-theme .owl-nav .owl-prev { - left: 0; - right: initial -} - -.owl-carousel.owl-theme .owl-nav .owl-prev:before { - content: '\e802' -} - -.owl-carousel.owl-theme .owl-nav .owl-next { - right: 0; - left: initial -} - -.owl-carousel.owl-theme .owl-nav .owl-next:before { - content: '\e801' -} - -.owl-carousel.owl-theme .owl-nav.disabled { - display: none -} - -.owl-carousel.owl-theme:hover .owl-nav { - left: 40px; - right: 40px; - opacity: 1 -} - -body .owl-carousel { - display: block -} - -@media only screen and (max-width: 840px) { - - .slider-footer.slider-footer-position-after { - margin-top: 20px - } - - .slider-footer .slider-progress-wrapper { - text-align: inherit - } - - .slider-footer .owl-dots { - overflow: hidden; - height: 0 - } -} - - - -@-webkit-keyframes fadeIn { - from { - opacity: 0 - } - - to { - opacity: 1 - } -} - -@keyframes fadeIn { - from { - opacity: 0 - } - - to { - opacity: 1 - } -} - -@-webkit-keyframes fadeOut { - from { - opacity: 1 - } - - to { - opacity: 0 - } -} - -@keyframes fadeOut { - from { - opacity: 1 - } - - to { - opacity: 0 - } -} - -.swiper-container .swiper-pagination-bullets,.swiper .swiper-pagination-bullets { - text-align: center; - -webkit-tap-highlight-color: transparent; - margin: 45px -4px -20px; - width: auto!important; - position: relative; - bottom: initial!important; - left: initial!important; - right: initial!important; - -webkit-transform: none; - -ms-transform: none; - transform: none; - font-size: 0; - line-height: 1; - z-index: 2; - counter-reset: dots -} - -.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet,.swiper .swiper-pagination-bullets .swiper-pagination-bullet { - display: inline-block; - zoom:1;margin: 0 4px 20px!important; - opacity: 1; - padding: 0; - cursor: pointer; - outline: none; - border: none; - -webkit-backface-visibility: visible; - position: relative; - width: 33px; - height: 33px; - -webkit-border-radius: 50%; - border-radius: 50%; - -webkit-transition: color 0.3s; - transition: color 0.3s; - -moz-box-sizing: border-box; - box-sizing: border-box; - background: none; - font-weight: 400; - line-height: 31px; - text-align: center -} - -.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet:before,.swiper .swiper-pagination-bullets .swiper-pagination-bullet:before { - content: ''; - position: absolute; - display: block; - left: 0; - right: 0; - top: 0; - bottom: 0; - -webkit-transition: border-color 0.3s,border-width 0.3s; - transition: border-color 0.3s,border-width 0.3s; - border-style: solid; - border-width: 1px; - -webkit-border-radius: inherit; - border-radius: inherit -} - -.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet:after,.swiper .swiper-pagination-bullets .swiper-pagination-bullet:after { - counter-increment: dots; - content: counter(dots); - line-height: inherit -} - -.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before,.swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before { - border-width: 3px; - padding: 0 -} - -.swiper-container .elementor-swiper-button,.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet,.swiper .swiper-pagination-bullets .swiper-pagination-bullet { - cursor: pointer; - cursor: hand; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none -} - -.swiper-container .elementor-swiper-button { - width: 50px; - height: 50px -} - -.swiper-container .elementor-swiper-button i { - width: 48px; - height: 48px; - margin: 0; - padding: 0; - position: absolute; - -webkit-transition: all 0.3s; - transition: all 0.3s; - -webkit-border-radius: 0; - border-radius: 0; - text-decoration: none; - outline: none; - cursor: pointer; - text-align: center; - overflow: hidden -} - -.swiper-container .elementor-swiper-button i:before { - font: 400 normal 15px/48px 'fontello' -} - -.swiper-container .elementor-swiper-button i.disabled { - cursor: default; - opacity: .5 -} - -.swiper-container .elementor-swiper-button-prev i { - padding: 0 2px 0 0 -} - -.swiper-container .elementor-swiper-button-prev i:before { - content: '\e814' -} - -.swiper-container .elementor-swiper-button-next i { - padding: 0 0 0 2px -} - -.swiper-container .elementor-swiper-button-next i:before { - content: '\e815' -} - -@media only screen and (min-width: 1021px) { - .swiper-container .swiper-pagination-bullets,.swiper .swiper-pagination-bullets { - margin:65px -13px -20px - } - - .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet,.swiper .swiper-pagination-bullets .swiper-pagination-bullet { - margin: 0 13px 20px!important; - width: 49px; - height: 49px; - line-height: 49px - } -} - -.logico-alter-button,a.logico-alter-button { - display: inline-block; - position: relative; - text-align: center; - padding: 1em 5.21em 1em 1.71em; - min-height: calc(3.4286em + 2px); - font-size: 14px; - line-height: 1.4286em; - font-weight: 600; - letter-spacing: .01em; - text-decoration: none!important; - border-radius: var(--logico-radius-small,0); - -webkit-transition: background 0.45s ease-out,border-color 0.3s,color 0.3s,padding 0.3s; - transition: background 0.45s ease-out,border-color 0.3s,color 0.3s,padding 0.3s; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - outline: none; - cursor: default; - overflow: hidden; - height: auto; - color: var(--logico-button-text-color)!important; - border: solid 1px var(--logico-button-border-color)!important; - z-index: 2; - background: -webkit-linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - background: -moz-linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - background: linear-gradient(90deg,var(--logico-button-background-color) 50%,#c01227 50%); - -webkit-background-size: calc(200% + 4px) 100%; - -moz-background-size: calc(200% + 4px) 100%; - -o-background-size: calc(200% + 4px) 100%; - background-size: calc(200% + 4px) 100%; - background-position: -1.7857em 0; - background-repeat: no-repeat -} - -.logico-alter-button:focus,.logico-alter-button:active,a.logico-alter-button:focus,a.logico-alter-button:active { - outline: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none -} - -.logico-alter-button:before,a.logico-alter-button:before { - content: '\e80b'; - position: absolute; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -moz-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - width: .71428em; - height: .71428em; - top: 50%; - left: initial; - right: 2.04286em; - background-color: transparent; - font: 400 normal .71428em/1em 'fontello'; - -webkit-transition: all 0.55s; - transition: all 0.55s; - color: #fff ; - margin: -.15714em 0 0; - z-index: 2; -} - -.logico-alter-button:after,a.logico-alter-button:after { - content: ''; - position: absolute; - display: block; - width: 4.8em; - top: 0; - bottom: 0; - right: 0; - left: initial; - -webkit-border-radius: inherit; - border-radius: inherit; - background-color: var(--logico-button-background-hover); - font-size: .71428em -} - -.logico-alter-button:disabled,.logico-alter-button .disabled,a.logico-alter-button:disabled,a.logico-alter-button .disabled { - opacity: .5 -} - -.logico-alter-button:not(:disabled):not(.disabled):hover,a.logico-alter-button:not(:disabled):not(.disabled):hover { - background-position: calc(100% + 1px) 0; - color: #fff!important; - border-color: #c01227 !important; - padding: 1em 4.21em 1em 2.71em; - cursor: pointer -} - -.logico-alter-button:not(:disabled):not(.disabled):hover:before,a.logico-alter-button:not(:disabled):not(.disabled):hover:before { - animation: .3s linear 0s 1 normal none running button_arrows; - color: #fff -} - -.logico-alter-button:empty,.logico-alter-button:empty:not(:disabled):not(.disabled):hover,a.logico-alter-button:empty,a.logico-alter-button:empty:not(:disabled):not(.disabled):hover { - padding: 0 3.4286em 0 0 -} - -@keyframes button_arrows { - 0% { - right: 2.04286em; - left: initial; - margin-top: -.35714em; - opacity: 1 - } - - 49.9% { - right: 1.32858em; - margin-top: -1.07142em; - opacity: 0 - } - - 50% { - right: 2.75714em; - margin-top: .35714em; - opacity: 0 - } - - 100% { - right: 2.04286em; - margin-top: -.35714em; - opacity: 1 - } -} - -.logico-small-button,a.logico-small-button,.logico-front-end a.logico-small-button { - position: relative; - display: inline-block; - vertical-align: top; - font-size: 14px; - line-height: 1.9286em; - font-weight: 500; - text-decoration: none; - outline: none; - padding: 0 1.5em 0 0; - cursor: pointer; - background-color: transparent; - background-position: 100% 100%; - background-repeat: no-repeat; - background-size: var(--background-size,100%) .0625em; - background-image: linear-gradient(0deg,var(--logico-default-text-color) 0%,var(--logico-default-text-color) 100%); - transition: background-size 0.2s linear var(--background-delay,0.15s); - transform: translateZ(0); - border: none; - color: var(--logico-default-text-color) -} - -.logico-small-button:after,a.logico-small-button:after,.logico-front-end a.logico-small-button:after { - content: '\e80b'; - display: block; - font: 400 .5em/4.2857em 'fontello'; - position: absolute; - right: 0; - left: initial; - top: 0; - opacity: 1; - -webkit-transition: opacity 0.3s 0.15s; - transition: opacity 0.3s 0.15s -} - -.logico-small-button svg,a.logico-small-button svg,.logico-front-end a.logico-small-button svg { - stroke: var(--logico-default-text-color); - position: absolute; - display: block; - line-height: 1.8125em; - width: 1.375em; - height: 1.8125em; - right: 0; - left: initial; - top: 50%; - margin: -.8571em 0 0; - fill: none; - stroke-linecap: round; - stroke-linejoin: round; - stroke-width: 1px; - stroke-dasharray: 7.95 30; - stroke-dashoffset: var(--stroke-dashoffset,46); - transition: stroke-dashoffset var(--stroke-duration,0.15s) var(--stroke-easing,linear) var(--stroke-delay,0s) -} - -.logico-small-button:hover,a.logico-small-button:hover,.logico-front-end a.logico-small-button:hover { - --background-size: 0%; - --background-delay: 0s; - --stroke-dashoffset: 26; - --stroke-duration: .3s; - --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1); - --stroke-delay: .195s -} - -.logico-small-button:hover:after,a.logico-small-button:hover:after,.logico-front-end a.logico-small-button:hover:after { - opacity: 0; - transition-delay: 0s -} - -html,body { - padding: 0; - margin: 0 -} - -body { - min-height: 100vh; - background-size: 100% auto; - background-color: var(--logico-background-color); - paint-order: stroke fill -} - -code,pre { - overflow: auto; - word-wrap: break-word -} - -code { - display: inline-block; - overflow: auto; - max-width: 100% -} - -code:not(:last-child) { - margin-bottom: 1.875rem -} - -pre { - display: block -} - -pre:not(:last-child) { - margin-bottom: 1.875rem -} - -address { - margin: 0 -} - -address:not(:last-child) { - margin-bottom: 1.875rem -} - -figure { - margin: 0 -} - -dt { - font-weight: 700 -} - -p code,p code:not(:last-child),p pre,p pre:not(:last-child),li code,li code:not(:last-child),li pre,li pre:not(:last-child) { - margin-bottom: 0; - display: inline -} - -p br+code:not(:last-child),p br+pre:not(:last-child),li br+code:not(:last-child),li br+pre:not(:last-child) { - display: block -} - -a { - -webkit-transition: all .3s; - transition: all .3s; - text-decoration: underline -} - -a:hover { - text-decoration: none -} - -.body-container { - position: relative; - overflow: hidden; - min-height: 100vh; -} - -img { - max-width: 100%; - height: auto; - min-height: auto; - display: block; - align-self: flex-start -} - -button,button:active,button:focus { - outline: none -} - -form input,form textarea { - -webkit-appearance: none -} - -iframe { - border: none; - overflow: auto; - max-width: 100% -} - -.screen-reader-text { - border: 0; - clip: rect(1px,1px,1px,1px); - clip-path: inset(50%); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute!important; - width: 1px; - word-wrap: normal!important -} - -.screen-reader-text:focus { - background-color: #eee; - clip: auto!important; - clip-path: none; - color: #444; - display: block; - font-size: 1em; - height: auto; - left: 5px; - line-height: normal; - padding: 15px 23px 14px; - text-decoration: none; - top: 5px; - width: auto; - z-index: 100000 -} - -:root { - --logico-form-field-border-radius-left-top: var(--logico-radius-small, 0px); - --logico-form-field-border-radius-left-bottom: var(--logico-radius-small, 0px); - --logico-form-field-border-radius-right-top: var(--logico-radius-small, 0px); - --logico-form-field-border-radius-right-bottom: var(--logico-radius-small, 0px) -} - -.required { - color: #c01227!important -} - -.wpforms-container .logico-form-field,.logico-form-field { - position: relative; - width: 100%; - display: block; - -webkit-transition: background 0.3s; - transition: background 0.3s -} - -.wpforms-container .logico-form-field:has(.logico-label-wrapper):before,.wpforms-container .logico-form-field:has(.logico-label-wrapper):after,.logico-form-field:has(.logico-label-wrapper):before,.logico-form-field:has(.logico-label-wrapper):after { - content: ''; - position: absolute; - display: block; - width: 13px; - height: 100%; - -moz-box-sizing: border-box; - box-sizing: border-box; - border: solid 1px var(--logico-border-color); - border-bottom: none; - top: 0; - bottom: 0; - -webkit-transition: border-color 0.3s; - transition: border-color 0.3s; - z-index: 0 -} - -.wpforms-container .logico-form-field:has(.logico-label-wrapper):before,.logico-form-field:has(.logico-label-wrapper):before { - left: 0; - right: initial; - border-right: none; - border-radius: var(--logico-form-field-border-radius-left-top,0) 0 0 var(--logico-form-field-border-radius-left-bottom,0) -} - -.wpforms-container .logico-form-field:has(.logico-label-wrapper):after,.logico-form-field:has(.logico-label-wrapper):after { - left: initial; - right: 0; - border-left: none; - border-radius: 0 var(--logico-form-field-border-radius-right-top,0) var(--logico-form-field-border-radius-right-bottom,0) 0 -} - -.wpforms-container .logico-form-field:has(.logico-label-wrapper):has(.irs):before,.wpforms-container .logico-form-field:has(.logico-label-wrapper):has(.irs):after,.logico-form-field:has(.logico-label-wrapper):has(.irs):before,.logico-form-field:has(.logico-label-wrapper):has(.irs):after { - content: none; - display: none -} - -.wpforms-container .logico-form-field .logico-label-wrapper,.logico-form-field .logico-label-wrapper { - display: block; - position: relative -} - -.wpforms-container .logico-form-field .logico-label-wrapper>label,.logico-form-field .logico-label-wrapper>label { - position: absolute; - display: block; - top: 11px; - left: 21px; - right: 21px; - height: 28px; - font-size: 14px; - line-height: 28px!important; - font-weight: 400; - width: auto; - -webkit-transition: color 0.3s,font-size 0.3s,top 0.3s; - transition: color 0.3s,font-size 0.3s,top 0.3s; - color: var(--logico-light-text-color); - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden -} - -.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"],.wpforms-container .logico-form-field .logico-label-wrapper+select,.wpforms-container .logico-form-field .logico-label-wrapper+textarea,.logico-form-field .logico-label-wrapper+input[type="text"],.logico-form-field .logico-label-wrapper+input[type="email"],.logico-form-field .logico-label-wrapper+input[type="url"],.logico-form-field .logico-label-wrapper+input[type="search"],.logico-form-field .logico-label-wrapper+input[type="number"],.logico-form-field .logico-label-wrapper+input[type="time"],.logico-form-field .logico-label-wrapper+input[type="color"],.logico-form-field .logico-label-wrapper+select,.logico-form-field .logico-label-wrapper+textarea { - border: none; - border-bottom: solid 1px var(--logico-border-color) -} - -.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+select::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+select:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+textarea::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+textarea:hover::-webkit-input-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+select:-moz-placeholder,.logico-form-field .logico-label-wrapper+select:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+textarea:-moz-placeholder,.logico-form-field .logico-label-wrapper+textarea:hover:-moz-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+select::-moz-placeholder,.logico-form-field .logico-label-wrapper+select:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+textarea::-moz-placeholder,.logico-form-field .logico-label-wrapper+textarea:hover::-moz-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+select:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+textarea:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="text"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="email"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="url"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="search"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="number"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="time"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+input[type="color"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+select:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+select:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+textarea:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+textarea:hover:-ms-input-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select:hover::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea::-webkit-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div select::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div select:hover::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div textarea::-webkit-input-placeholder,.logico-form-field .logico-label-wrapper+div textarea:hover::-webkit-input-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select:hover:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea:-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]:-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div select:-moz-placeholder,.logico-form-field .logico-label-wrapper+div select:hover:-moz-placeholder,.logico-form-field .logico-label-wrapper+div textarea:-moz-placeholder,.logico-form-field .logico-label-wrapper+div textarea:hover:-moz-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select:hover::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea::-moz-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]::-moz-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div select::-moz-placeholder,.logico-form-field .logico-label-wrapper+div select:hover::-moz-placeholder,.logico-form-field .logico-label-wrapper+div textarea::-moz-placeholder,.logico-form-field .logico-label-wrapper+div textarea:hover::-moz-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="text"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="email"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="url"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="search"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="number"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="time"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div input[type="color"]:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div select:hover:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea:-ms-input-placeholder,.wpforms-container .logico-form-field .logico-label-wrapper+div textarea:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="text"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="email"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="url"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="search"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="number"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="time"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div input[type="color"]:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div select:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div select:hover:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div textarea:-ms-input-placeholder,.logico-form-field .logico-label-wrapper+div textarea:hover:-ms-input-placeholder { - opacity: 0 -} - -.wpforms-container .logico-form-field .logico-label-placeholder,.logico-form-field .logico-label-placeholder { - position: absolute; - display: block; - overflow: hidden; - top: 0; - left: 13px; - right: 13px; - height: 1px; - font-size: 0; - line-height: 1 -} - -.wpforms-container .logico-form-field .logico-label-placeholder .logico-label-placeholder-text,.logico-form-field .logico-label-placeholder .logico-label-placeholder-text { - position: relative; - padding: 0 7px; - margin: 0; - display: inline-block; - font-size: 14px; - line-height: 28px -} - -.wpforms-container .logico-form-field .logico-label-placeholder .logico-label-placeholder-text:before,.wpforms-container .logico-form-field .logico-label-placeholder .logico-label-placeholder-text:after,.logico-form-field .logico-label-placeholder .logico-label-placeholder-text:before,.logico-form-field .logico-label-placeholder .logico-label-placeholder-text:after { - content: ''; - position: absolute; - display: block; - height: 0; - top: 0; - width: 4000px; - border-top: solid 1px var(--logico-border-color); - -webkit-transition: border-color 0.3s,right 0.3s,left 0.3s; - transition: border-color 0.3s,right 0.3s,left 0.3s -} - -.wpforms-container .logico-form-field .logico-label-placeholder .logico-label-placeholder-text:before,.logico-form-field .logico-label-placeholder .logico-label-placeholder-text:before { - right: 50%; - left: initial -} - -.wpforms-container .logico-form-field .logico-label-placeholder .logico-label-placeholder-text:after,.logico-form-field .logico-label-placeholder .logico-label-placeholder-text:after { - left: 50%; - right: initial -} - -.wpforms-container .logico-form-field:focus-within .logico-label-wrapper>label,.logico-form-field:focus-within .logico-label-wrapper>label { - font-size: 14px; - top: -14px; - color: var(--logico-dark-text-color) -} - -.wpforms-container .logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:before,.wpforms-container .logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:after,.logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:before,.logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:after { - border-top-color: var(--logico-border-hover-color) -} - -.wpforms-container .logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:before,.logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:before { - right: 100%; - left: initial -} - -.wpforms-container .logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:after,.logico-form-field:focus-within .logico-label-placeholder .logico-label-placeholder-text:after { - left: 100%; - right: initial -} - -.wpforms-container .logico-form-field:focus-within input[type="text"],.wpforms-container .logico-form-field:focus-within input[type="email"],.wpforms-container .logico-form-field:focus-within input[type="url"],.wpforms-container .logico-form-field:focus-within input[type="search"],.wpforms-container .logico-form-field:focus-within input[type="number"],.wpforms-container .logico-form-field:focus-within input[type="time"],.wpforms-container .logico-form-field:focus-within input[type="color"],.wpforms-container .logico-form-field:focus-within select,.wpforms-container .logico-form-field:focus-within textarea,.logico-form-field:focus-within input[type="text"],.logico-form-field:focus-within input[type="email"],.logico-form-field:focus-within input[type="url"],.logico-form-field:focus-within input[type="search"],.logico-form-field:focus-within input[type="number"],.logico-form-field:focus-within input[type="time"],.logico-form-field:focus-within input[type="color"],.logico-form-field:focus-within select,.logico-form-field:focus-within textarea { - border-color: var(--logico-border-hover-color) -} - -.wpforms-container .logico-form-field:focus-within:before,.wpforms-container .logico-form-field:focus-within:after,.logico-form-field:focus-within:before,.logico-form-field:focus-within:after { - border-color: var(--logico-border-hover-color) -} - -.wpforms-container .logico-form-field input[type="text"],.wpforms-container .logico-form-field input[type="email"],.wpforms-container .logico-form-field input[type="url"],.wpforms-container .logico-form-field input[type="search"],.wpforms-container .logico-form-field input[type="number"],.wpforms-container .logico-form-field input[type="time"],.wpforms-container .logico-form-field input[type="color"],.wpforms-container .logico-form-field select,.wpforms-container .logico-form-field textarea,.logico-form-field input[type="text"],.logico-form-field input[type="email"],.logico-form-field input[type="url"],.logico-form-field input[type="search"],.logico-form-field input[type="number"],.logico-form-field input[type="time"],.logico-form-field input[type="color"],.logico-form-field select,.logico-form-field textarea { - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - -webkit-transition: border-color 0.3s; - transition: border-color 0.3s; - border: solid 1px var(--logico-border-color); - height: 50px; - padding: 10px 20px 10px 20px; - width: 100%; - max-width: 100%; - display: block; - outline: none!important; - font-family: inherit; - font-size: 14px; - line-height: 28px; - font-weight: 400; - position: relative; - z-index: 2; - background: none; - margin: 0; - border-radius: var(--logico-form-field-border-radius-left-top,0) var(--logico-form-field-border-radius-right-top,0) var(--logico-form-field-border-radius-right-bottom,0) var(--logico-form-field-border-radius-left-bottom,0) -} - -.wpforms-container .logico-form-field input[type="text"]::-webkit-input-placeholder,.wpforms-container .logico-form-field input[type="email"]::-webkit-input-placeholder,.wpforms-container .logico-form-field input[type="url"]::-webkit-input-placeholder,.wpforms-container .logico-form-field input[type="search"]::-webkit-input-placeholder,.wpforms-container .logico-form-field input[type="number"]::-webkit-input-placeholder,.wpforms-container .logico-form-field input[type="time"]::-webkit-input-placeholder,.wpforms-container .logico-form-field input[type="color"]::-webkit-input-placeholder,.wpforms-container .logico-form-field select::-webkit-input-placeholder,.wpforms-container .logico-form-field textarea::-webkit-input-placeholder,.logico-form-field input[type="text"]::-webkit-input-placeholder,.logico-form-field input[type="email"]::-webkit-input-placeholder,.logico-form-field input[type="url"]::-webkit-input-placeholder,.logico-form-field input[type="search"]::-webkit-input-placeholder,.logico-form-field input[type="number"]::-webkit-input-placeholder,.logico-form-field input[type="time"]::-webkit-input-placeholder,.logico-form-field input[type="color"]::-webkit-input-placeholder,.logico-form-field select::-webkit-input-placeholder,.logico-form-field textarea::-webkit-input-placeholder { - opacity: 1; - color: var(--logico-light-text-color) -} - -.wpforms-container .logico-form-field input[type="text"]:-moz-placeholder,.wpforms-container .logico-form-field input[type="email"]:-moz-placeholder,.wpforms-container .logico-form-field input[type="url"]:-moz-placeholder,.wpforms-container .logico-form-field input[type="search"]:-moz-placeholder,.wpforms-container .logico-form-field input[type="number"]:-moz-placeholder,.wpforms-container .logico-form-field input[type="time"]:-moz-placeholder,.wpforms-container .logico-form-field input[type="color"]:-moz-placeholder,.wpforms-container .logico-form-field select:-moz-placeholder,.wpforms-container .logico-form-field textarea:-moz-placeholder,.logico-form-field input[type="text"]:-moz-placeholder,.logico-form-field input[type="email"]:-moz-placeholder,.logico-form-field input[type="url"]:-moz-placeholder,.logico-form-field input[type="search"]:-moz-placeholder,.logico-form-field input[type="number"]:-moz-placeholder,.logico-form-field input[type="time"]:-moz-placeholder,.logico-form-field input[type="color"]:-moz-placeholder,.logico-form-field select:-moz-placeholder,.logico-form-field textarea:-moz-placeholder { - opacity: 1 -} - -.wpforms-container .logico-form-field input[type="text"]::-moz-placeholder,.wpforms-container .logico-form-field input[type="email"]::-moz-placeholder,.wpforms-container .logico-form-field input[type="url"]::-moz-placeholder,.wpforms-container .logico-form-field input[type="search"]::-moz-placeholder,.wpforms-container .logico-form-field input[type="number"]::-moz-placeholder,.wpforms-container .logico-form-field input[type="time"]::-moz-placeholder,.wpforms-container .logico-form-field input[type="color"]::-moz-placeholder,.wpforms-container .logico-form-field select::-moz-placeholder,.wpforms-container .logico-form-field textarea::-moz-placeholder,.logico-form-field input[type="text"]::-moz-placeholder,.logico-form-field input[type="email"]::-moz-placeholder,.logico-form-field input[type="url"]::-moz-placeholder,.logico-form-field input[type="search"]::-moz-placeholder,.logico-form-field input[type="number"]::-moz-placeholder,.logico-form-field input[type="time"]::-moz-placeholder,.logico-form-field input[type="color"]::-moz-placeholder,.logico-form-field select::-moz-placeholder,.logico-form-field textarea::-moz-placeholder { - opacity: 1 -} - -.wpforms-container .logico-form-field input[type="text"]:-ms-input-placeholder,.wpforms-container .logico-form-field input[type="email"]:-ms-input-placeholder,.wpforms-container .logico-form-field input[type="url"]:-ms-input-placeholder,.wpforms-container .logico-form-field input[type="search"]:-ms-input-placeholder,.wpforms-container .logico-form-field input[type="number"]:-ms-input-placeholder,.wpforms-container .logico-form-field input[type="time"]:-ms-input-placeholder,.wpforms-container .logico-form-field input[type="color"]:-ms-input-placeholder,.wpforms-container .logico-form-field select:-ms-input-placeholder,.wpforms-container .logico-form-field textarea:-ms-input-placeholder,.logico-form-field input[type="text"]:-ms-input-placeholder,.logico-form-field input[type="email"]:-ms-input-placeholder,.logico-form-field input[type="url"]:-ms-input-placeholder,.logico-form-field input[type="search"]:-ms-input-placeholder,.logico-form-field input[type="number"]:-ms-input-placeholder,.logico-form-field input[type="time"]:-ms-input-placeholder,.logico-form-field input[type="color"]:-ms-input-placeholder,.logico-form-field select:-ms-input-placeholder,.logico-form-field textarea:-ms-input-placeholder { - opacity: 1 -} - -.wpforms-container .logico-form-field textarea,.logico-form-field textarea { - height: 162px -} - -.wpforms-container .logico-form-field .logico-label-wrapper+input[type="text"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="email"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="url"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="search"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="number"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="time"],.wpforms-container .logico-form-field .logico-label-wrapper+input[type="color"],.wpforms-container .logico-form-field .logico-label-wrapper+textarea,.logico-form-field .logico-label-wrapper+input[type="text"],.logico-form-field .logico-label-wrapper+input[type="email"],.logico-form-field .logico-label-wrapper+input[type="url"],.logico-form-field .logico-label-wrapper+input[type="search"],.logico-form-field .logico-label-wrapper+input[type="number"],.logico-form-field .logico-label-wrapper+input[type="time"],.logico-form-field .logico-label-wrapper+input[type="color"],.logico-form-field .logico-label-wrapper+textarea { - border-top-color: transparent!important; - border-top: none; - padding-top: 11px -} - -.wpforms-container .logico-form-field textarea.wpforms-field-large { - height: 175px -} - -.logico-front-end input[type="range"] { - height: 6px; - border: none; - -webkit-border-radius: 0; - border-radius: 0; - outline: none; - width: 100%; - background-color: var(--logico-background-color); - -webkit-box-shadow: inset 0 0 0 1px var(--logico-border-color); - -moz-box-shadow: inset 0 0 0 1px var(--logico-border-color); - box-shadow: inset 0 0 0 1px var(--logico-border-color) -} - -.logico-front-end input[type="range"]::-webkit-slider-runnable-track { - width: 100%; - height: 6px; - border: none; - color: transparent -} - -.logico-front-end input[type="range"]:focus::-webkit-slider-runnable-track { - width: 100%; - height: 6px; - border: none; - color: transparent -} - -.logico-front-end input[type="range"]::-moz-range-track { - width: 100%; - height: 6px; - border: none; - color: transparent -} - -.logico-front-end input[type="range"]::-ms-track { - width: 100%; - height: 6px; - border: none; - color: transparent -} - -.logico-front-end input[type="range"]::-webkit-slider-thumb { - width: 18px; - height: 18px; - -webkit-border-radius: 50%; - border-radius: 50%; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - -moz-appearance: none; - margin: -6px 0 0 0; - border: solid 1px var(--logico-border-color); - background-color: var(--logico-background-color); - outline: none -} - -.logico-front-end input[type="range"]:focus::-webkit-slider-thumb,.logico-front-end input[type="range"]::-webkit-slider-thumb:hover { - outline: none -} - -.logico-front-end input[type="range"]::-moz-range-thumb { - width: 18px; - height: 18px; - -webkit-border-radius: 50%; - border-radius: 50%; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - -moz-appearance: none; - margin: -6px 0 0 -7px; - border: solid 1px var(--logico-border-color); - background-color: var(--logico-background-color); - outline: none -} - -.logico-front-end input[type="range"]:focus::-moz-range-thumb,.logico-front-end input[type="range"]::-moz-range-thumb:hover { - outline: none -} - -.logico-front-end input[type="range"]::-ms-thumb { - width: 18px; - height: 18px; - -webkit-border-radius: 0; - border-radius: 0; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - -moz-appearance: none; - margin: -6px 0 0 -7px; - border: solid 1px var(--logico-border-color); - background-color: var(--logico-background-color); - outline: none -} - -.logico-front-end input[type="range"]:focus::-ms-thumb,.logico-front-end input[type="range"]::-ms-thumb:hover { - outline: none -} - -.logico-front-end input[type="range"]:focus::-ms-thumb { - width: 18px; - height: 18px; - -webkit-border-radius: 50%; - border-radius: 50%; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - -moz-appearance: none; - margin: -6px 0 0 -7px; - border: solid 1px var(--logico-border-color); - background-color: var(--logico-background-color); - outline: none -} - -.content-wrapper { - color: var(--logico-default-text-color) -} - -.logico-front-end p { - margin: 0 -} - -.logico-front-end p:last-child { - margin-bottom: 0 -} - -.logico-front-end a { - color: var(--logico-accent-color) -} - -.logico-front-end ul { - padding: 0; - margin: 0 0 1.5em; - font-size: 1em; - line-height: 2em -} - -.logico-front-end ul:last-child { - margin-bottom: 0 -} - -.logico-front-end ul { - list-style: none -} - -.logico-front-end ul li { - position: relative; - padding: 0 0 0 1.7em -} - -.logico-front-end ul li:before { - content: '\e87b'; - display: inline-block; - position: absolute; - left: 0; - right: initial; - top: .0909em; - font: 400 normal .55em 'fontello'; - line-height: inherit; - color: var(--logico-accent-color) -} - -.logico-front-end h1:not([class*=logico-title-h]),.logico-front-end h3:not([class*=logico-title-h]),.logico-front-end h4:not([class*=logico-title-h]),.logico-front-end h5:not([class*=logico-title-h]),.logico-front-end h6:not([class*=logico-title-h]) { - color: var(--logico-dark-text-color); - margin: 0 0 30px -} -.logico-front-end h2{ - color:white; -} - -.logico-front-end h1:not([class*=logico-title-h]):last-child,.logico-front-end h2:not([class*=logico-title-h]):last-child,.logico-front-end h3:not([class*=logico-title-h]):last-child,.logico-front-end h4:not([class*=logico-title-h]):last-child,.logico-front-end h5:not([class*=logico-title-h]):last-child,.logico-front-end h6:not([class*=logico-title-h]):last-child { - margin-bottom: 0 -} - -.logico-front-end h1:not([class*=logico-title-h]) a,.logico-front-end h2:not([class*=logico-title-h]) a,.logico-front-end h3:not([class*=logico-title-h]) a,.logico-front-end h4:not([class*=logico-title-h]) a,.logico-front-end h5:not([class*=logico-title-h]) a,.logico-front-end h6:not([class*=logico-title-h]) a { - color: inherit -} - -.logico-front-end h1:not([class*=logico-title-h]) a:hover,.logico-front-end h2:not([class*=logico-title-h]) a:hover,.logico-front-end h3:not([class*=logico-title-h]) a:hover,.logico-front-end h4:not([class*=logico-title-h]) a:hover,.logico-front-end h5:not([class*=logico-title-h]) a:hover,.logico-front-end h6:not([class*=logico-title-h]) a:hover { - color: var(--logico-accent-color) -} - -.wp-block-title { - margin: 0 0 28px -} - -.wp-block-title:last-child { - margin-bottom: 0 -} - -.dm-block-group.has-background { - border-radius: var(--logico-radius-medium,0) -} - -.wp-block-button.is-style-theme a.wp-block-button__link { - display: inline-block; - position: relative; - text-align: center; - padding: 1em 5.21em 1em 1.71em; - min-height: calc(3.4286em + 2px); - font-size: 14px; - line-height: 1.4286em; - font-weight: 600; - letter-spacing: .01em; - text-decoration: none!important; - border-radius: var(--logico-radius-small,0); - -webkit-transition: background 0.45s ease-out,border-color 0.3s,color 0.3s,padding 0.3s; - transition: background 0.45s ease-out,border-color 0.3s,color 0.3s,padding 0.3s; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - outline: none; - cursor: default; - overflow: hidden; - height: auto; - border: solid 1px!important; - z-index: 2 -} - -.wp-block-button.is-style-theme a.wp-block-button__link:focus,.wp-block-button.is-style-theme a.wp-block-button__link:active { - outline: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none -} - -.wp-block-button.is-style-theme a.wp-block-button__link:before { - content: '\e80b'; - position: absolute; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -moz-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - width: .71428em; - height: .71428em; - top: 50%; - left: initial; - right: 2.04286em; - background-color: transparent; - font: 400 normal .71428em/1em 'fontello'; - -webkit-transition: all 0.55s; - transition: all 0.55s; - margin: -.35714em 0 0; - z-index: 2 -} - -.wp-block-button.is-style-theme a.wp-block-button__link:after { - content: ''; - position: absolute; - display: block; - width: 4.8em; - top: 0; - bottom: 0; - right: 0; - left: initial; - -webkit-border-radius: inherit; - border-radius: inherit; - font-size: .71428em -} - -.wp-block-button.is-style-theme a.wp-block-button__link:not(.has-text-color) { - color: var(--logico-button-text-color)!important -} - -.wp-block-button.is-style-theme a.wp-block-button__link:not(.has-background) { - border-color: var(--logico-button-border-color)!important; - background: -webkit-linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - background: -moz-linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - background: linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - -webkit-background-size: calc(200% + 4px) 100%; - -moz-background-size: calc(200% + 4px) 100%; - -o-background-size: calc(200% + 4px) 100%; - background-size: calc(200% + 4px) 100%; - background-position: -1.7857em 0; - background-repeat: no-repeat -} - -.wp-block-button.is-style-theme a.wp-block-button__link:not(.has-background):before { - color: #fff; -} - -.wp-block-button.is-style-theme a.wp-block-button__link:not(.has-background):after { - background-color: var(--logico-button-background-hover) -} - -.wp-block-button.is-style-theme a.wp-block-button__link:hover { - background-position: calc(100% + 1px) 0; - padding: 1em 4.21em 1em 2.71em; - cursor: pointer -} - -.wp-block-button.is-style-theme a.wp-block-button__link:hover:before { - animation: .3s linear 0s 1 normal none running button_arrows -} - -.wp-block-button.is-style-theme a.wp-block-button__link:not(.has-text-color):hover { - color: var(--logico-button-text-hover)!important -} - -.wp-block-button.is-style-theme a.wp-block-button__link:not(.has-background):hover { - border-color: var(--logico-button-border-hover)!important -} - -.wp-block-button.is-style-theme a.wp-block-button__link:not(.has-background):hover:before { - color: var(--logico-button-icon-hover) -} - -body .content-wrapper .wp-block-social-links,ul.wp-block-social-links { - margin: 0 -} - -body .content-wrapper .wp-block-social-links .wp-block-social-link,ul.wp-block-social-links .wp-block-social-link { - padding: 0 -} - -body .content-wrapper .wp-block-social-links .wp-block-social-link:before,ul.wp-block-social-links .wp-block-social-link:before { - content: none; - display: none -} - -body .content-wrapper .wp-block-social-links .wp-block-social-link:hover,ul.wp-block-social-links .wp-block-social-link:hover { - -webkit-transform: none; - -ms-transform: none; - transform: none -} - -body .content-wrapper .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg,ul.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg { - -webkit-transition: fill 0.3s,color 0.3s; - transition: fill 0.3s,color 0.3s -} - -body .content-wrapper .wp-block-social-links.is-style-logos-only,ul.wp-block-social-links.is-style-logos-only { - gap: 35px -} - -body .content-wrapper .wp-block-social-links.is-style-logos-only .wp-block-social-link,ul.wp-block-social-links.is-style-logos-only .wp-block-social-link { - background: none; - border: none; - margin-bottom: 0; - line-height: 1 -} - -body .content-wrapper .wp-block-social-links.is-style-logos-only .wp-block-social-link a,ul.wp-block-social-links.is-style-logos-only .wp-block-social-link a { - padding: 0; - width: auto; - height: auto; - -webkit-transition: color 0.3s; - transition: color 0.3s; - color: var(--logico-dark-text-color) -} - -body .content-wrapper .wp-block-social-links.is-style-logos-only .wp-block-social-link a svg,ul.wp-block-social-links.is-style-logos-only .wp-block-social-link a svg { - -webkit-transition: fill 0.3s; - transition: fill 0.3s; - fill: var(--logico-dark-text-color); - width: 18px; - height: 18px -} - -body .content-wrapper .wp-block-social-links.is-style-logos-only .wp-block-social-link a:hover,ul.wp-block-social-links.is-style-logos-only .wp-block-social-link a:hover { - color: var(--logico-accent-color) -} - -body .content-wrapper .wp-block-social-links.is-style-logos-only .wp-block-social-link a:hover svg,ul.wp-block-social-links.is-style-logos-only .wp-block-social-link a:hover svg { - fill: var(--logico-accent-color) -} - -.e-con { - --padding-top: var(--container-default-padding-top, 0); - --padding-right: var(--container-default-padding-right, 0); - --padding-bottom: var(--container-default-padding-bottom, 0); - --padding-left: var(--container-default-padding-left, 0) -} - -a.e-con { - text-decoration: none -} - -a.e-con p { - color: var(--logico-default-text-color); - -webkit-transition: color 0.3s; - transition: color 0.3s -} - -a.e-con:hover p { - color: var(--logico-accent-color) -} - -@keyframes logico_clip_right { - from { - clip-path: inset(0 100% 0 0); - -webkit-clip-path: inset(0 100% 0 0) - } - - to { - clip-path: inset(0 0 0 0); - -webkit-clip-path: inset(0 0 0 0) - } -} - -@keyframes logico_clip_left { - from { - clip-path: inset(0 0 0 100%); - -webkit-clip-path: inset(0 0 0 100%) - } - - to { - clip-path: inset(0 0 0 0); - -webkit-clip-path: inset(0 0 0 0) - } -} - -@keyframes logico_clip_down { - from { - clip-path: inset(0 0 100% 0); - -webkit-clip-path: inset(0 0 100% 0) - } - - to { - clip-path: inset(0 0 0 0); - -webkit-clip-path: inset(0 0 0 0) - } -} - -@keyframes logico_clip_up { - from { - clip-path: inset(100% 0 0 0); - -webkit-clip-path: inset(100% 0 0 0) - } - - to { - clip-path: inset(0 0 0 0); - -webkit-clip-path: inset(0 0 0 0) - } -} - -@keyframes logico_heading_animation { - from { - -webkit-transform: translateY(120%); - -ms-transform: translateY(120%); - transform: translateY(120%) - } - - to { - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0) - } -} - -.body-overlay { - position: fixed; - left: 0; - right: 0; - top: 0; - bottom: 0; - pointer-events: none; - opacity: 0; - cursor: pointer; - z-index: 100; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s; - background-color: #000 -} - -.body-overlay.active { - opacity: .5; - pointer-events: auto -} - -.content-wrapper { - margin-top: 90px; - margin-bottom: 90px; - max-width: var(--logico-content-width,1380px); - width: 100%; - -moz-box-sizing: border-box; - box-sizing: border-box; - position: relative -} - -.content-wrapper:after { - content: ''; - display: table; - clear: both -} - -.content-wrapper .content { - width: calc(100% - 40px); - margin: 0 20px -} - -.content-wrapper .content-inner:after { - content: ''; - display: table; - clear: both -} - -.archive-listing { - -webkit-transition: height 0.5s; - transition: height 0.5s -} - -.archive-listing .archive-listing-wrapper>div { - -webkit-transition: transform 0.3s,opacity 0.5s; - transition: transform 0.3s,opacity 0.5s -} - -.archive-listing.loading { - overflow: hidden -} - -.archive-listing.loading .archive-listing-wrapper>div { - -webkit-transform: scale(.95,.95); - -ms-transform: scale(.95,.95); - transform: scale(.95,.95); - opacity: .1 -} - -.elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - max-width: none; - margin-left: 0; - margin-right: 0 -} - -.elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none .content { - width: 100%; - margin: 0 -} - -.elementor-page.ehf-header .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-top: 0 -} - -.elementor-page.ehf-footer .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-bottom: 0 -} - -@media only screen and (min-width: 661px) { - - .content-wrapper { - margin-top: 120px; - margin-bottom: 120px - } - - .content-wrapper .content { - width: calc(100% - 60px); - margin: 0 30px - } - - .elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-left: 0; - margin-right: 0 - } - - .elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none .content { - width: 100%; - margin: 0 - } - - .elementor-page.ehf-header .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-top: 0 - } - - .elementor-page.ehf-footer .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-bottom: 0 - } -} - -@media only screen and (min-width: 1021px) { - - .content-wrapper { - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: flex-start; - -moz-align-items: flex-start; - -ms-align-items: flex-start; - align-items: flex-start - } - - .content-wrapper>.sidebar { - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0 - } - - .content-wrapper .content { - margin: 0 30px - } - - .content-wrapper.content-wrapper-sidebar-position-none .content { - width: calc(100% - 60px) - } - - .elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-left: 0; - margin-right: 0 - } - - .elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none .content { - width: 100%; - margin: 0 - } - - .elementor-page.ehf-header .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-top: 0 - } - - .elementor-page.ehf-footer .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-bottom: 0 - } -} - -@media only screen and (min-width: 1380px) { - - .content-wrapper { - margin: 150px auto - } - - .content-wrapper .content { - margin: 0 20px - } - - .content-wrapper.content-wrapper-sidebar-position-none .content { - width: calc(100% - 40px) - } - - .elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-left: 0; - margin-right: 0 - } - - .elementor-page .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none .content { - width: 100%; - margin: 0 - } - - .elementor-page.ehf-header .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-top: 0 - } - - .elementor-page.ehf-footer .content-wrapper.content-wrapper-may-contain-elementor-code.content-wrapper-sidebar-position-none { - margin-bottom: 0 - } -} - -.content-wrapper>.sidebar { - margin: 0; - width: 278px; - min-width: 278px -} - -@media only screen and (min-width: 1021px) { - .content-wrapper>.sidebar { - margin:0 20px; - width: 305px - } -} - -@media only screen and (max-width: 1020px) { - .sidebar { - position:fixed; - top: 0; - bottom: 0; - right: -320px; - left: auto; - -webkit-transition: right 0.3s,left 0.3s,opacity 0.3s; - transition: right 0.3s,left 0.3s,opacity 0.3s; - overflow-y: scroll; - z-index: 999999; - padding: 86px 20px 32px; - width: 278px; - max-width: none; - margin: 0!important; - border: solid 1px var(--logico-border-hover-color); - background-color: var(--logico-background-color); - opacity: 0 - } - - .sidebar.active { - right: 0; - left: auto; - opacity: 1 - } -} - -.logico-theme-style-rounded .portfolio-listing-wrapper.owl-carousel { - margin: 0 -5px; - width: calc(100% + 10px) -} - -.logico-theme-style-rounded .portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper { - padding: 0 5px -} - -.logico-theme-style-rounded .portfolio-listing-wrapper.owl-carousel.owl-theme .owl-nav { - left: 35px; - right: 35px -} - -.logico-theme-style-rounded .portfolio-listing-wrapper.owl-carousel.owl-theme:hover .owl-nav { - left: 25px; - right: 25px -} - -.portfolio-listing-wrapper.owl-carousel { - width: calc(100% + 40px); - margin: 0 -20px -} - -.portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper .portfolio-item-media-link { - padding: 130.2144% 0 0 -} - -.portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper .portfolio-item-content { - padding: 20px; - min-height: 30%; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -moz-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-end; - -moz-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - -webkit-align-items: flex-start; - -moz-align-items: flex-start; - -ms-align-items: flex-start; - align-items: flex-start -} - -.portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper.with-media-overlay .portfolio-item-media-link:before { - height: 36% -} - -.portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper.with-media-overlay:hover .portfolio-item-media-link:before { - top: 64% -} - -.portfolio-listing-wrapper.owl-carousel.custom-cursor-enable { - cursor: none -} - -.portfolio-listing-wrapper.owl-carousel.custom-cursor-enable .portfolio-item-wrapper a { - cursor: inherit -} - -.portfolio-listing-wrapper.owl-carousel.show-inactive-items .owl-stage-outer { - overflow: initial -} - -.portfolio-listing-wrapper.owl-carousel.show-inactive-items .owl-stage-outer .owl-item .portfolio-item-header,.portfolio-listing-wrapper.owl-carousel.show-inactive-items .owl-stage-outer .owl-item .portfolio-item-content { - opacity: 0; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s -} - -.portfolio-listing-wrapper.owl-carousel.show-inactive-items .owl-stage-outer .owl-item.active .portfolio-item-header,.portfolio-listing-wrapper.owl-carousel.show-inactive-items .owl-stage-outer .owl-item.active .portfolio-item-content { - opacity: 1 -} - -.portfolio-listing-wrapper.owl-carousel.item-view-indented .owl-item:nth-child(odd) { - padding-top: 30px -} - -.portfolio-listing-wrapper.owl-carousel.item-view-indented .owl-item:nth-child(even) { - padding-bottom: 30px -} - -@media only screen and (min-width: 1201px) { - .portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper .portfolio-item-content { - padding:40px - } -} - -.portfolio-post-gallery .owl-stage-outer { - overflow: initial -} - -.portfolio-post-gallery .owl-item .image-wrapper:before { - content: ''; - position: absolute; - display: block; - left: 0; - right: 0; - top: 0; - bottom: 0; - z-index: 2; - background-color: #000; - opacity: .5; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s -} - -.portfolio-post-gallery .owl-item.active .image-wrapper:before { - opacity: 0 -} - -.team-listing-wrapper.team-grid-listing { - display: block; - margin: 0 -10px -20px -} - -.team-listing-wrapper.team-grid-listing .team-item-wrapper { - width: 100%; - padding: 0 10px; - margin: 0 0 20px; - -moz-box-sizing: border-box; - box-sizing: border-box -} - -.team-listing-wrapper.team-grid-listing .team-item { - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: flex-end; - -moz-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; - position: relative -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-media { - width: 45.6522%; - position: relative; - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0; - margin: 0 20px 0 0 -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-media img { - border-radius: var(--logico-radius-large,0) -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-content { - width: 100%; - margin: 0 0 -8px -} - -.team-listing-wrapper.team-grid-listing .team-item .post-media { - position: relative; - height: 0; - padding: 143.9153% 0 0; - overflow: hidden -} - -@media (max-width: 767px) { - .team-listing-wrapper.team-grid-listing .team-item .post-media { - height: auto; - padding: 0; - } -} - -.team-listing-wrapper.team-grid-listing .team-item .post-media img { - position: absolute; - top: 0; - left: 0; - right: 0; - max-width: none; - width: 100%; - height: 100%; - -o-object-fit: cover; - object-fit: cover -} - -.team-listing-wrapper.team-grid-listing .team-item .post-title { - font-size: 25px; - line-height: 1.6em; - font-weight: 600; - letter-spacing: -.03em; - color: var(--logico-dark-text-color) -} - -.team-listing-wrapper.team-grid-listing .team-item .post-title a { - color: inherit; - text-decoration: none -} - -.team-listing-wrapper.team-grid-listing .team-item .post-title a:hover { - color: var(--logico-accent-color) -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-position { - font-size: .8889em; - line-height: 1.875em; - color: var(--logico-light-text-color) -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials { - margin: 0; - overflow: hidden -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials { - padding: 23px 0 8px; - margin: -16px -10px -100%; - position: relative; - -webkit-transition: margin 0.5s; - transition: margin 0.5s; - white-space: nowrap; - overflow: hidden -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li { - margin: 16px 10px 0; - position: relative; - top: 30px; - -webkit-transition: top 0.3s 3s; - transition: top 0.3s 3s; - padding: 0 -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:before { - content: none; - display: none -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+1) { - -webkit-transition-delay: 0.4s; - transition-delay: 0.4s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+2) { - -webkit-transition-delay: 0.5s; - transition-delay: 0.5s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+3) { - -webkit-transition-delay: 0.6s; - transition-delay: 0.6s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+4) { - -webkit-transition-delay: 0.7s; - transition-delay: 0.7s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+5) { - -webkit-transition-delay: 0.8s; - transition-delay: 0.8s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+6) { - -webkit-transition-delay: 0.9s; - transition-delay: 0.9s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+7) { - -webkit-transition-delay: 1s; - transition-delay: 1s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n) { - -webkit-transition-delay: 1.1s; - transition-delay: 1.1s -} - -.team-listing-wrapper.team-grid-listing .team-item:hover .team-item-socials .wrapper-socials { - margin: -16px -10px 0 -} - -.team-listing-wrapper.team-grid-listing .team-item:hover .team-item-socials .wrapper-socials li { - top: 0 -} - -@media only screen and (min-width: 661px) { - .team-listing-wrapper.team-grid-listing { - display:-webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -moz-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: flex-start; - -moz-align-items: flex-start; - -ms-align-items: flex-start; - align-items: flex-start - } - - .team-listing-wrapper.team-grid-listing.columns-4 .team-item-wrapper { - width: 50% - } -} - -@media only screen and (min-width: 1021px) { - .team-listing-wrapper.team-grid-listing.columns-4 .team-item-wrapper { - width:33.3333% - } -} - -@media only screen and (min-width: 1201px) { - .team-listing-wrapper.team-grid-listing { - margin:0 -10px -40px - } - - .team-listing-wrapper.team-grid-listing .team-item-wrapper { - margin-bottom: 40px - } - - .team-listing-wrapper.team-grid-listing .team-item .team-item-media { - margin: 0 38px 0 0 - } - - .team-listing-wrapper.team-grid-listing.columns-4 .team-item-wrapper { - width: 25% - } -} - -@media only screen and (min-width: 1380px) { - .team-listing-wrapper.team-grid-listing { - margin:0 -22px -78px - } - - .team-listing-wrapper.team-grid-listing .team-item-wrapper { - padding: 0 22px; - margin-bottom: 78px - } -} - -.post-media img { - border-radius: var(--logico-radius-large,0) -} - -.post-gallery-carousel.owl-carousel.owl-theme:hover .owl-nav { - left: 30px; - right: 30px -} - -.elementor-widget .owl-dots-desktop { - display: none -} - -@media only screen and (min-width: 1021px) { - - .elementor-widget .logico-heading.heading-with-pagination .owl-dots { - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0 - } - - .elementor-widget.title-alignment-left .logico-heading.heading-with-pagination .owl-dots { - margin: 0 -13px .275em 2px - } - - .elementor-widget.title-alignment-right .logico-heading.heading-with-pagination .owl-dots { - margin: 0 2px .275em -13px - } - - .elementor-widget.title-alignment-center .logico-heading.heading-with-pagination .owl-dots { - margin-top: 30px - } - - .elementor-widget .owl-dots-desktop { - display: block - } - - .elementor-widget .owl-dots-mobile { - display: none - } -} - -.elementor-widget .archive-listing-footer .owl-dots { - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0; - margin: -13px -13px 0 0 -} - -.mobile-header-menu-container .wrapper-socials,.body-container .wrapper-socials { - padding: 0; - list-style: none; - line-height: 1; - white-space: nowrap; - cursor: default; - margin: -16px -8px 0 -} - -.mobile-header-menu-container .wrapper-socials li,.body-container .wrapper-socials li { - margin: 16px 8px 0; - display: inline-block; - vertical-align: middle; - padding: 0; - font-weight: 400 -} - -.mobile-header-menu-container .wrapper-socials li:before,.body-container .wrapper-socials li:before { - content: none; - display: none -} - -.mobile-header-menu-container .wrapper-socials a,.body-container .wrapper-socials a { - text-align: center; - display: block; - -webkit-transition: color 0.3s,background-color 0.3s,border-color 0.3s; - transition: color 0.3s,background-color 0.3s,border-color 0.3s; - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - background-color: transparent; - line-height: 1em; - text-decoration: none; - color: var(--logico-default-text-color) -} - -.mobile-header-menu-container .wrapper-socials a:before,.body-container .wrapper-socials a:before { - font-size: 16px -} - -.mobile-header-menu-container .wrapper-socials a:hover,.body-container .wrapper-socials a:hover { - color: var(--logico-accent-color) -} - -.header .mobile-header-menu-container .wrapper-socials a:before,.body-container .wrapper-socials a:before { - font-family: 'Font Awesome 6 Brands' -} - -.logico-awards-widget .awards-slider .owl-stage { - -webkit-align-items: stretch; - -moz-align-items: stretch; - -ms-align-items: stretch; - align-items: stretch -} - -.logico-awards-widget .awards-slider.show-inactive-items .owl-stage-outer { - overflow: initial -} - -.logico-awards-widget .awards-slider.show-inactive-items .owl-stage-outer .owl-item { - opacity: .2; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s -} - -.logico-awards-widget .awards-slider.show-inactive-items .owl-stage-outer .owl-item.active { - opacity: 1 -} - -.elementor-widget-logico_button .button-container { - position: relative; - z-index: 2; - line-height: 1; - font-size: 0 -} - -.elementor-widget-logico_button a.logico-alter-button { - text-decoration: none -} - -.logico-content-slider-widget .content-slider.nav-view-default .owl-nav { - left: 0; - right: 0; - opacity: 1; - height: 0; - display: none -} - -.logico-content-slider-widget .content-slider.nav-view-default .owl-nav [class*="owl-"] { - width: 30px; - height: 88px; - top: -44px; - border-radius: var(--logico-radius-medium,0) -} - -.logico-content-slider-widget .content-slider.nav-view-default .owl-nav [class*="owl-"]:before { - line-height: 88px -} - -.logico-content-slider-widget .content-slider.nav-view-compact .owl-nav { - right: 0; - left: 0; - opacity: 1; - width: 96px -} - -.logico-content-slider-widget .content-slider.nav-view-compact .owl-nav [class*="owl-"]:before { - font-size: 9px; - font-weight: 700 -} - -.logico-content-slider-widget .content-slider.nav-view-compact .owl-nav .owl-next { - border-radius: 0 var(--logico-radius-medium,0) var(--logico-radius-medium,0) 0 -} - -.logico-content-slider-widget .content-slider.nav-view-compact .owl-nav .owl-prev { - border-radius: var(--logico-radius-medium,0) 0 0 var(--logico-radius-medium,0) -} - -.logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav { - right: 0; - left: 0; - opacity: 1; - width: 48px; - height: 96px -} - -.logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav [class*="owl-"] { - width: 48px; - height: 48px -} - -.logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav [class*="owl-"]:before { - font-size: 9px; - font-weight: 700 -} - -.logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav .owl-prev { - left: 0; - right: 0; - bottom: 0; - top: initial; - border-radius: 0 0 var(--logico-radius-medium,0) var(--logico-radius-medium,0) -} - -.logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav .owl-next { - left: 0; - right: 0; - bottom: initial; - top: 0; - border-radius: var(--logico-radius-medium,0) var(--logico-radius-medium,0) 0 0 -} - -.logico-content-slider-widget .content-slider.nav-h-position-left .owl-nav { - left: 0; - right: initial -} - -.logico-content-slider-widget .content-slider.nav-h-position-right .owl-nav { - right: 0; - left: initial -} - -.logico-content-slider-widget .content-slider.nav-v-position-top .owl-nav { - top: 0; - bottom: initial; - -webkit-transform: none; - -ms-transform: none; - transform: none -} - -.logico-content-slider-widget .content-slider.nav-v-position-bottom .owl-nav { - top: initial; - bottom: 0; - -webkit-transform: none; - -ms-transform: none; - transform: none -} - -.logico-content-slider-widget .content-item { - position: relative -} - -.logico-content-slider-widget .content-item:before { - content: ''; - position: absolute; - display: block; - left: 0; - right: 0; - top: 0; - bottom: 0 -} - -.logico-content-slider-widget .content-item .heading-content,.logico-content-slider-widget .content-item .text-content { - display: inline-block -} - -.logico-content-slider-widget .content-item .slide-content-inner { - padding: 0 20px; - -moz-box-sizing: content-box; - box-sizing: content-box -} - -.logico-content-slider-widget .content-item .content-slider-item-heading { - paint-order: stroke fill -} - -.logico-content-slider-widget .content-item.slide-style-standard .slide-content { - max-width: var(--logico-content-width,1380px); - margin: 0 auto; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -moz-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: flex-start; - -moz-align-items: flex-start; - -ms-align-items: flex-start; - align-items: flex-start; - position: relative; - height: 100%; - z-index: 2 -} - -.logico-content-slider-widget .content-item.slide-style-standard .content-slider-item-text { - margin: 23px 0 0 -} - -.logico-content-slider-widget h1.content-slider-item-heading { - margin: 0 -} - -.logico-content-slider-widget .logico-content-wrapper-1,.logico-content-slider-widget .logico-content-wrapper-2 { - opacity: 0; - -webkit-transform: translateY(50px); - -ms-transform: translateY(50px); - transform: translateY(50px); - -webkit-transition: all 0.9s ease-out; - transition: all 0.9s ease-out -} - -.logico-content-slider-widget .logico-content-wrapper-1 { - -webkit-transition-delay: .9s; - transition-delay: .9s -} - -.logico-content-slider-widget .logico-content-wrapper-2 { - -webkit-transition-delay: 1.2s; - transition-delay: 1.2s -} - -.logico-content-slider-widget .owl-carousel.owl-theme .owl-item { - outline: none -} - -.logico-content-slider-widget .owl-carousel.owl-theme .owl-item.active .logico-content-wrapper-1,.logico-content-slider-widget .owl-carousel.owl-theme .owl-item.active .logico-content-wrapper-2,.logico-content-slider-widget .owl-carousel.owl-theme .owl-item.active .logico-content-wrapper-3 { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0) -} - -.logico-content-slider-widget .owl-carousel.owl-theme .owl-item.active .content-item .additional-image { - opacity: 1 -} - -@media only screen and (min-width: 661px) { - .logico-content-slider-widget .content-slider.nav-view-default .owl-nav { - display:block - } - - .logico-content-slider-widget .content-slider.nav-view-default .owl-nav [class*="owl-"] { - width: 48px - } - - .logico-content-slider-widget .content-item .slide-content-inner { - padding: 0 30px - } -} - -@media only screen and (min-width: 841px) { - .logico-content-slider-widget .owl-carousel.owl-theme .slider-item { - height:600px - } -} - -@media only screen and (min-width: 1201px) { - .logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav { - width:78px; - height: 178px - } - - .logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav [class*="owl-"] { - width: 78px; - height: 89px - } - - .logico-content-slider-widget .content-slider.nav-view-vertical .owl-nav [class*="owl-"]:before { - font-size: 13px - } - - .logico-content-slider-widget .content-item .slide-content-inner { - padding: 0 20px - } -} - -.elementor-widget-logico_custom_navigation_menu ul.logico-custom-menu-widget { - list-style: none; - margin: 0; - padding: 0 -} - -.elementor-widget-logico_custom_navigation_menu ul.logico-custom-menu-widget li { - margin: 0; - padding: 0; - line-height: 1.875em -} - -.elementor-widget-logico_custom_navigation_menu ul.logico-custom-menu-widget li:before { - content: none; - display: none -} - -.elementor-widget-logico_custom_navigation_menu ul.logico-custom-menu-widget li a { - text-decoration: none; - padding-bottom: .0625em; - color: var(--logico-dark-text-color); - -webkit-transition: color 0.3s,padding 0.3s,border-color 0.3s; - transition: color 0.3s,padding 0.3s,border-color 0.3s; - border-bottom: solid .0625em transparent; - position: relative -} - -.elementor-widget-logico_custom_navigation_menu ul.logico-custom-menu-widget li a:before { - content: '/\ '; - display: block; - position: absolute; - top: -.1875em; - left: 0; - right: initial; - -webkit-transition: transform 0.3s,opacity 0.3s; - transition: transform 0.3s,opacity 0.3s; - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); - opacity: 0 -} - -.elementor-widget-logico_custom_navigation_menu ul.logico-custom-menu-widget li a:hover { - color: var(--logico-accent-color); - border-color: var(--logico-accent-color); - padding-left: .625em; - padding-right: 0 -} - -.elementor-widget-logico_custom_navigation_menu ul.logico-custom-menu-widget li a:hover:before { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - opacity: 1 -} - -.block-decoration { - font-size: 0; - line-height: 1; - display: none -} - -.block-decoration.block-decoration-style-1 .block-decoration-item { - display: inline-block; - height: 0; - position: relative; - width: 50px -} - -.block-decoration.block-decoration-style-1 .block-decoration-item:before,.block-decoration.block-decoration-style-1 .block-decoration-item:after { - content: ''; - position: absolute; - display: block; - right: 0; - left: 0; - height: 0; - padding: 0 -} - -.block-decoration.block-decoration-style-1 .block-decoration-item:before { - bottom: 0; - border-radius: var(--logico-radius-medium,0) var(--logico-radius-medium,0) 0 0 -} - -.block-decoration.block-decoration-style-1 .block-decoration-item:after { - top: 0; - border-radius: 0 0 var(--logico-radius-medium,0) var(--logico-radius-medium,0) -} - -.block-decoration.block-decoration-style-1.animation-enable .block-decoration-item:before { - -webkit-transition: padding 0.5s 1s cubic-bezier(0,0,.15,.96); - transition: padding 0.5s 1s cubic-bezier(0,0,.15,.96) -} - -.block-decoration.block-decoration-style-1.animation-enable .block-decoration-item:after { - -webkit-transition: padding 0.5s 1.5s cubic-bezier(0,0,.15,.96); - transition: padding 0.5s 1.5s cubic-bezier(0,0,.15,.96) -} - -.block-decoration.block-decoration-style-1.animated .block-decoration-item:before,.block-decoration.block-decoration-style-1.animated .block-decoration-item:after,.block-decoration.page-title-decoration.animated .block-decoration-item:before,.block-decoration.page-title-decoration.animated .block-decoration-item:after { - padding: 100% 0 0 -} - -.block-decoration.block-decoration-style-2.animated .block-decoration-item:before,.block-decoration.block-decoration-style-2.animated .block-decoration-item .decoration-accent:before { - padding: 100% 0 0 -} - -.block-decoration.block-decoration-style-2.animated .block-decoration-item .decoration-accent { - padding: 200% 0 0 -} - -.block-decoration.block-decoration-style-3.animated .block-decoration-item,.block-decoration.block-decoration-style-3.animated .block-decoration-item:before,.block-decoration.block-decoration-style-3.animated .block-decoration-item:after,.block-decoration.block-decoration-style-3.animated .block-decoration-item .decoration-accent:before { - padding: 100% 0 0 -} - -.block-decoration.block-decoration-style-3.animated .block-decoration-item .decoration-accent { - padding: 200% 0 0 -} - -.block-decoration.block-decoration-style-4.animated .block-decoration-item,.block-decoration.block-decoration-style-4.animated .block-decoration-item:before,.block-decoration.block-decoration-style-4.animated .block-decoration-item:after,.block-decoration.block-decoration-style-4.animated .block-decoration-item .decoration-accent:before { - padding: 100% 0 0 -} - -.block-decoration.block-decoration-style-4.animated .block-decoration-item .decoration-accent { - padding: 200% 0 0 -} - -@media only screen and (min-width: 841px) { - .block-decoration.block-decoration-style-1 .block-decoration-item { - width:70px - } -} - -@media only screen and (min-width: 1021px) { - .block-decoration { - display:inline-block; - font-size: 0; - line-height: 1; - vertical-align: top - } - - .block-decoration.block-decoration-style-1 .block-decoration-item { - width: 93px - } -} - -.elementor-widget-google_maps.elementor-absolute { - height: 100% -} - -.elementor-widget-google_maps.elementor-absolute .elementor-custom-embed { - height: 100% -} - -.elementor-widget-icon { - line-height: 1 -} - -@keyframes icon-pulse { - 0% { - width: 132%; - height: 132%; - left: -16%; - top: -16%; - opacity: .3 - } - - 50% { - width: 164%; - height: 164%; - left: -32%; - top: -32%; - opacity: .1 - } - - 100% { - width: 132%; - height: 132%; - left: -16%; - top: -16%; - opacity: .3 - } -} - -@-webkit-keyframes icon-pulse { - 0% { - width: 132%; - height: 132%; - left: -16%; - top: -16% - } - - 50% { - width: 164%; - height: 164%; - left: -32%; - top: -32% - } - - 100% { - width: 132%; - height: 132%; - left: -16%; - top: -16% - } -} - -#masthead .elementor-widget-icon-box .elementor-icon-box-wrapper a,.ehf-header .elementor-widget-icon-box .elementor-icon-box-wrapper a { - text-decoration: none -} - -.elementor-widget-icon-box .elementor-icon-box-icon { - line-height: 1 -} - -.elementor-widget-logico_image_carousel .image-slider.show-inactive-items .owl-stage-outer { - overflow: initial -} - -.elementor-widget-logico_image_carousel .image-slider.show-inactive-items .owl-stage-outer .owl-item { - opacity: .5; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s -} - -.elementor-widget-logico_image_carousel .image-slider.show-inactive-items .owl-stage-outer .owl-item.active { - opacity: 1 -} - -.elementor-widget-logico_image_carousel .image-slider.nav-view-default .owl-nav { - left: 20px; - right: 20px; - opacity: 1 -} - -.elementor-widget-logico_image_carousel .image-slider.nav-view-default .owl-nav [class*="owl-"] { - border-radius: var(--logico-radius-medium,0) -} - -.elementor-widget-logico_image_carousel .image-slider.nav-view-compact .owl-nav { - right: 0; - left: 0; - opacity: 1; - width: 96px -} - -.elementor-widget-logico_image_carousel .image-slider.nav-view-compact .owl-nav [class*="owl-"]:before { - font-size: 9px; - font-weight: 700 -} - -.elementor-widget-logico_image_carousel .image-slider.nav-view-compact .owl-nav .owl-prev { - border-radius: var(--logico-radius-medium,0) 0 0 var(--logico-radius-medium,0) -} - -.elementor-widget-logico_image_carousel .image-slider.nav-view-compact .owl-nav .owl-next { - border-radius: 0 var(--logico-radius-medium,0) var(--logico-radius-medium,0) 0 -} - -.elementor-widget-logico_image_carousel .image-slider.nav-h-position-left .owl-nav { - left: 0; - right: initial -} - -.elementor-widget-logico_image_carousel .image-slider.nav-h-position-right .owl-nav { - right: 0; - left: initial -} - -.elementor-widget-logico_image_carousel .image-slider.nav-v-position-top .owl-nav { - top: 0; - bottom: initial; - -webkit-transform: none; - -ms-transform: none; - transform: none -} - -.elementor-widget-logico_image_carousel .image-slider.nav-v-position-bottom .owl-nav { - top: initial; - bottom: 0; - -webkit-transform: none; - -ms-transform: none; - transform: none -} - -.elementor-widget-logico_heading .logico-title { - paint-order: stroke fill -} - -.logico-ticker-wrapper { - width: 100%; - overflow: hidden -} - -.logico-ticker-wrapper .ticker { - white-space: nowrap; - direction: ltr; - font-size: 0; - line-height: 1 -} - -.logico-ticker-wrapper .ticker-text { - font: 600 normal 50px/1.3em var(--logico-h1-font-family); - text-transform: uppercase; - letter-spacing: -.03em; - display: inline-block; - vertical-align: middle; - color: var(--logico-dark-text-color) -} - -.logico-ticker-wrapper .separator { - display: inline-block; - vertical-align: middle; - position: relative; - top: .1956em; - font-size: 31px; - padding: 0 30px; - color: #c01227; - margin: -.2128em -} - -@media only screen and (min-width: 841px) { - .logico-ticker-wrapper .ticker-text { - font-size:80px - } - - .logico-ticker-wrapper .separator { - font-size: 47px; - padding: 0 48px - } -} - -@media only screen and (min-width: 1021px) { - .logico-ticker-wrapper .ticker-text { - font-size:100px - } -} - -.elementor-widget-social-icons .elementor-icon,.elementor-widget-social-icons svg { - -webkit-transition: all 0.3s; - transition: all 0.3s -} - -.logico-steps-widget .owl-item.active+.owl-item.active .step-item:before { - content: ''; - position: absolute; - display: block; - left: 0; - right: initial; - top: 1px; - bottom: -100px; - width: 0; - border-left: solid 1px -} - -.logico-timeline-widget .timeline-slider.show-inactive-items .owl-stage-outer { - overflow: initial -} - -.wpforms-submit-container { - text-align: left -} - -.wpforms-submit-container:not(:first-child) { - padding-top: 40px -} - -.elementor-widget-container .wpforms-container { - margin: 0 -} - -.wpforms-container .wpforms-form .wpforms-field-container { - margin: 0 -10px -} - -.footer-scroll-top { - width: 32px; - height: 32px; - position: fixed; - bottom: -32px; - right: 10px; - left: initial; - z-index: 10; - text-align: center; - cursor: pointer; - opacity: 0; - -webkit-transition: all 0.3s; - transition: all 0.3s; - background-color: #c01227; - color: var(--logico-button-text-color); - border-radius: var(--logico-radius-small,0) -} - -.footer-scroll-top:before { - content: '\e803'; - font: 400 normal 16px/32px 'fontello' -} - -.footer-scroll-top.active { - opacity: .6; - bottom: 10px -} - -.footer-scroll-top:hover { - opacity: 1 -} - -@media only screen and (min-width: 841px) { - .footer-scroll-top { - right:30px; - left: initial; - width: 42px; - height: 42px; - bottom: -42px - } - - .footer-scroll-top:before { - font-size: 21px; - line-height: 42px - } - - .footer-scroll-top.active { - bottom: 30px - } -} - -@media only screen and (min-width: 1021px) { - .footer-scroll-top { - width:52px; - height: 52px; - bottom: -52px; - right: 20px; - left: initial - } - - .footer-scroll-top:before { - font-size: 26px; - line-height: 52px - } - - .footer-scroll-top.active { - bottom: 20px - } -} - -.ehf-header #masthead { - z-index: initial -} - -.sticky-container-on { - -webkit-transition: none; - transition: none -} - -.header { - position: relative; - z-index: 4; - display: none!important; - background-color: var(--logico-background-color); - color: var(--logico-default-text-color); - border-radius: var(--logico-radius-large,0) -} - -.header-menu-container { - width: 100%; - text-align: center -} - -.header-icons-container { - margin: 0 10px; - min-height: 50px; - white-space: nowrap; - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0 -} - -.header-icons-container:first-child { - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center -} - -.header-icons-container:not(:first-child) { - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-end; - -moz-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center -} - -.header-icons-container:first-child:last-child { - width: calc(100% - 40px); - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-end; - -moz-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center -} - -.header-icons-container .header-icon { - margin: 0 10px -} - -.header-icons-container .header-button-container { - white-space: nowrap; - line-height: 1; - font-size: 0; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -moz-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center -} - -.logico-theme-style-rounded .header { - margin: 10px -} - -.mobile-header-row { - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: space-between; - -moz-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center -} - -@media only screen and (min-width: 1021px) { - - .logico-theme-style-rounded .header { - margin: 11px 20px 14px - } -} - -.page-title-decoration.animated:before { - width: 0 -} - -@media only screen and (min-width: 1021px) { - - .page-title-decoration.animated:before { - width: 30px - } -} - -@media only screen and (min-width: 1380px) { - - .page-title-decoration.animated:before { - width: calc(50% - (var(--logico-content-width, 1380px) / 2) + 20px) - } -} - -.header-button-container { - text-align: center; - position: relative; - display: block; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0 -} - -.header-button-container a.header-button { - font-size: 18px; - line-height: 1.5em; - font-weight: 700; - text-decoration: none; - padding: 10px 27px; - text-align: center; - -moz-box-sizing: border-box; - box-sizing: border-box; - display: block; - min-width: 190px; - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -moz-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-transition: all 0.3s; - transition: all 0.3s; - border-radius: var(--logico-radius-large,0); - color: var(--logico-button-text-color); - background-color: var(--logico-accent-color) -} - -.header-button-container a.header-button:hover { - color: var(--logico-button-text-color) -} - -.header-button-container a.header-button.header-button-animation-fade { - min-height: 97px; - height: 100% -} - -@media only screen and (min-width: 1580px) { - .header-button-container a.header-button { - min-width:255px - } - - .logico-theme-style-rounded .header-button-container a.header-button.header-button-animation-fade { - min-width: 193px - } -} - -.page-loader { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%,-50%); - -moz-transform: translate(-50%,-50%); - -ms-transform: translate(-50%,-50%); - transform: translate(-50%,-50%); - width: 100px -} - -@-webkit-keyframes pulsate { - 50% { - -webkit-transform: scale(.85,.85); - transform: scale(.85,.85) - } - - 100% { - -webkit-transform: scale(1,1); - transform: scale(1,1) - } -} - -@keyframes pulsate { - 50% { - -webkit-transform: scale(.85,.85); - transform: scale(.85,.85) - } - - 100% { - -webkit-transform: scale(1,1); - transform: scale(1,1) - } -} - -.logo { - font-size: 0; - line-height: 1 -} - -.login-logout { - line-height: 1; - font-size: 0 -} - -.login-logout a.link-login { - display: block; - line-height: 1; - color: var(--logico-default-text-color) -} - -.login-logout a.link-login:before { - font: 400 normal 20px/1em 'fontello' -} - -.login-logout a.link-login:hover { - color: var(--logico-light-text-color) -} - -.login-logout a.link-login:before { - content: '\e869' -} - -.menu-trigger { - position: relative; - font-size: 0; - line-height: 1 -} - -.menu-trigger .menu-trigger-icon { - display: inline-block; - width: 1.375em; - height: 1.25em; - cursor: pointer; - text-align: center; - -webkit-transition: color 0.3s,background-color 0.3s; - transition: color 0.3s,background-color 0.3s; - position: relative; - font-size: 16px -} - -.menu-trigger .hamburger { - display: block; - width: 1.375em; - height: .875em; - position: absolute; - left: 50%; - right: auto; - top: 50%; - margin: -.4375em 0 0 -.6875em -} - -.menu-trigger .hamburger span { - height: .125em; - width: 100%; - display: block; - opacity: 1; - -webkit-transition: all 0.3s ease; - transition: all 0.3s ease; - background-color: var(--logico-default-text-color) -} - -.menu-trigger .hamburger span:first-child { - margin-bottom: .25em -} - -.menu-trigger .hamburger span:last-child { - margin-top: .25em -} - -.menu-close { - position: relative -} - -.menu-close .menu-close-icon { - display: block; - font: 400 normal 17px/1em 'fontello'; - cursor: pointer; - text-align: center; - -webkit-transition: color 0.3s; - transition: color 0.3s -} - -.menu-close .menu-close-icon:before { - content: '\e845' -} - -.mobile-header-menu-container { - display: block; - width: 320px; - height: calc(100vh - var(--wp-admin--admin-bar--height, 0px)); - -moz-box-sizing: border-box; - box-sizing: border-box; - position: fixed; - right: -320px; - left: auto; - opacity: 0; - -webkit-transition: all 0.3s; - transition: all 0.3s; - z-index: 110; - overflow-x: hidden; - overflow-y: auto; - top: var(--wp-admin--admin-bar--height,0); - padding: 27px 50px 86px; - background-color: var(--logico-background-color); - border: solid 1px var(--logico-border-hover-color); - border-radius: var(--logico-radius-medium,0) -} - -.mobile-header-menu-container.active { - right: 0; - left: auto; - opacity: 1 -} - -.mobile-header-menu-container .mobile-header-row { - width: 100% -} - -.mobile-header-menu-container .header-icons-container { - margin: 0 -30px; - min-height: initial -} - -.mobile-header-menu-container .header-icons-container:first-child:last-child { - width: calc(100% + 60px) -} - -.mobile-header-menu-container .header-icons-container .header-icon>a,.mobile-header-menu-container .header-icons-container .header-icon.menu-close .menu-close-icon,.mobile-header-menu-container .header-icons-container .header-icon.search-link .search-trigger-icon { - color: var(--logico-default-text-color) -} - -.mobile-header-menu-container .header-icons-container .header-icon>a:hover,.mobile-header-menu-container .header-icons-container .header-icon.menu-close .menu-close-icon:hover,.mobile-header-menu-container .header-icons-container .header-icon.search-link .search-trigger-icon:hover { - color: var(--logico-accent-color) -} - -.mobile-header-menu-container nav { - font-size: 0; - line-height: 1; - margin: 23px 0 -11px; - padding: 0 0 12px; - position: relative; - text-align: left -} - -.mobile-header-menu-container nav:after { - content: ''; - position: absolute; - display: block; - height: 0; - left: -5px; - right: -5px; - bottom: 0; - border-top: solid 1px var(--logico-border-color) -} - -.mobile-header-menu-container .header-mobile-contacts { - padding: 30px 0 0 -} - -.mobile-header-menu-container .header-mobile-contacts .contact-item+.contact-item { - margin-top: 24px -} - -.mobile-header-menu-container .header-mobile-contacts .contact-item .contact-item-label { - display: block; - font-size: 18px; - font-weight: 700; - margin: 0 0 .6111em -} - -.mobile-header-menu-container .header-mobile-contacts .contact-item .contact-item-value { - font-size: 16px; - line-height: 1.75em; - font-weight: 500 -} - -.mobile-header-menu-container .header-mobile-contacts .contact-item a { - color: var(--logico-default-text-color); - text-decoration: none -} - -.mobile-header-menu-container .header-mobile-contacts .contact-item a:hover { - color: var(--logico-accent-color) -} - -.mobile-header-menu-container .header-mobile-socials { - padding: 30px 0 0 -} - -.mobile-header-menu-container .header-mobile-socials .mobile-menu-socials { - margin: 0 -20px -7px -} - -.mobile-header-menu-container .header-mobile-socials .mobile-menu-socials li { - margin: 0 20px 7px; - padding: 0 -} - -.mobile-header-menu-container .header-mobile-socials .mobile-menu-socials li:before { - content: none; - display: none -} - -.mobile-header-menu-container .header-mobile-socials .mobile-menu-socials a { - color: var(--logico-default-text-color); - text-decoration: none -} - -.mobile-header-menu-container .header-mobile-socials .mobile-menu-socials a:hover { - color: var(--logico-accent-color) -} - -.mobile-header-menu-container .header-mobile-button { - padding: 40px 0 0; - line-height: 1; - font-size: 0 -} - -.mobile-header-menu-container .header-mobile-button a.logico-alter-button { - color: var(--logico-button-text-color); - text-decoration: none -} - -.mobile-header-menu-container .header-mobile-button a.logico-alter-button:hover { - color: var(--logico-button-text-hover) -} - -.mobile-header-menu-container ul.main-menu { - list-style: none; - margin: 0; - padding: 0 -} - -.mobile-header-menu-container ul.main-menu>li { - position: relative; - padding: 0; - font-size: 16px; - line-height: 1.5em; - font-weight: 500 -} - -.mobile-header-menu-container ul.main-menu>li:before { - content: none; - display: none -} - -.mobile-header-menu-container ul.main-menu>li>a { - display: block; - font-size: 1em; - padding: .4375em 1.9375em .5em 0; - text-decoration: none; - color: var(--logico-default-text-color) -} - -.mobile-header-menu-container ul.main-menu>li>a:before { - content: '\e808'; - font: 400 normal .625em/3.6em 'fontello'; - position: absolute; - display: none; - left: -2em; - right: initial; - top: 0; - color: var(--logico-accent-color) -} - -.mobile-header-menu-container ul.main-menu>li:hover>a { - color: var(--logico-light-text-color) -} - -.mobile-header-menu-container ul.main-menu>li.active>a,.mobile-header-menu-container ul.main-menu>li.current-menu-ancestor>a,.mobile-header-menu-container ul.main-menu>li.current-menu-item>a:not([href*="/#"]) { - color: var(--logico-light-text-color); - text-decoration: underline -} - -.mobile-header-menu-container ul.main-menu>li.active>a:before,.mobile-header-menu-container ul.main-menu>li.current-menu-ancestor>a:before,.mobile-header-menu-container ul.main-menu>li.current-menu-item>a:not([href*="/#"]):before { - display: block -} - -.logico-theme-style-rounded .mobile-header-menu-container { - width: 300px; - height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 20px); - top: calc(var(--wp-admin--admin-bar--height, 0px) + 10px); - padding: 27px 50px 86px; - border: none -} - -.logico-theme-style-rounded .mobile-header-menu-container.active { - right: 10px; - left: auto -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu,.header .header-menu-container .main-menu { - margin: 3px 0 0; - padding: 0; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 0; - line-height: 1; - -webkit-flex-wrap: wrap; - -moz-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu li,.header .header-menu-container .main-menu li { - list-style: none; - position: relative; - padding: 0 -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu li:before,.header .header-menu-container .main-menu li:before { - content: none; - display: none -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu li:not(:last-of-type),.header .header-menu-container .main-menu li:not(:last-of-type) { - margin-right: 12px -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li>a,.header .header-menu-container .main-menu>li>a { - position: relative; - display: inline-block; - text-decoration: none; - padding: 31px 0; - top: 1px; - color: var(--logico-default-text-color); - font-size: 16px; - font-family: 'Manrope', sans-serif; - line-height: 1.5em; - font-weight: 600; - letter-spacing: -.03em -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li>a:before,.header .header-menu-container .main-menu>li>a:before { - content: ''; - position: absolute; - display: block; - left: 0; - right: 0; - bottom: 1px; - height: 2px; - opacity: 0; - -webkit-transition: opaciry 0.3s; - transition: opaciry 0.3s; - background-color: var(--logico-dark-text-color) -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.current-menu-ancestor>a,.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.current-menu-item>a:not([href*="/#"]),.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.active>a,.header .header-menu-container .main-menu>li.current-menu-ancestor>a,.header .header-menu-container .main-menu>li.current-menu-item>a:not([href*="/#"]),.header .header-menu-container .main-menu>li.active>a { - color: var(--logico-light-text-color) -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.current-menu-ancestor>a:before,.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.current-menu-item>a:not([href*="/#"]):before,.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.active>a:before,.header .header-menu-container .main-menu>li.current-menu-ancestor>a:before,.header .header-menu-container .main-menu>li.current-menu-item>a:not([href*="/#"]):before,.header .header-menu-container .main-menu>li.active>a:before { - opacity: 1 -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li:hover>a,.header .header-menu-container .main-menu>li:hover>a { - color: var(--logico-light-text-color) -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.menu-item-has-children>a:before,.header .header-menu-container .main-menu>li.menu-item-has-children>a:before { - right: initial; - left: 0; - width: 0; - -webkit-transition: width 0.3s,opacity 0.3s; - transition: width 0.3s,opacity 0.3s; - opacity: 1 -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.menu-item-has-children>a:after,.header .header-menu-container .main-menu>li.menu-item-has-children>a:after { - content: '\e80c'; - display: inline-block; - font: 400 normal .3125em 'fontello'; - position: relative; - top: .4em; - margin: 0 0 0 1em; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s; - color: var(--logico-dark-text-color); - vertical-align: top; - line-height: inherit -} - -.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.menu-item-has-children.current-menu-ancestor>a:before,.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.menu-item-has-children.current-menu-item>a:not([href*="/#"]):before,.elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.menu-item-has-children.active>a:before,.header .header-menu-container .main-menu>li.menu-item-has-children.current-menu-ancestor>a:before,.header .header-menu-container .main-menu>li.menu-item-has-children.current-menu-item>a:not([href*="/#"]):before,.header .header-menu-container .main-menu>li.menu-item-has-children.active>a:before { - width: calc(100% - 16px) -} - -.elementor-widget-logico_navigation_menu nav,.header nav { - font-size: 0; - line-height: 1 -} - -.logico-theme-style-rounded .header .header-menu-container .main-menu { - margin: 0 0 -10px -} - -.logico-theme-style-rounded .header .header-menu-container .main-menu>li>a { - padding: 24px 0 34px -} - -@media only screen and (min-width: 481px) { - .logico-theme-style-rounded .mobile-header-menu-container { - width:320px - } -} - -@media only screen and (min-width: 1021px) { - .logico-theme-style-rounded .mobile-header-menu-container.active { - right:20px; - left: auto - } -} - -@media only screen and (min-width: 1520px) { - .elementor-widget-logico_navigation_menu .header-menu-container .main-menu li:not(:last-of-type),.header .header-menu-container .main-menu li:not(:last-of-type) { - margin-right:24px - } - - .elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li>a,.header .header-menu-container .main-menu>li>a { - letter-spacing: normal - } - - .elementor-widget-logico_navigation_menu .header-menu-container .main-menu>li.menu-item-has-children>a:after,.header .header-menu-container .main-menu>li.menu-item-has-children>a:after { - margin: 0 0 0 2em - } -} - -@media only screen and (min-width: 1700px) { - .elementor-widget-logico_navigation_menu .header-menu-container .main-menu li:not(:last-of-type),.header .header-menu-container .main-menu li:not(:last-of-type) { - margin-right:39px - } -} - -.elementor-widget-logico_navigation_menu .header-menu-container { - display: none -} - -.elementor-widget-logico_navigation_menu .menu-trigger,.elementor-widget-logico_navigation_menu .mobile-header-menu-container { - display: none -} - -body[data-elementor-device-mode="mobile"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .header-menu-container { - display: none -} - -body[data-elementor-device-mode="mobile"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .menu-trigger,body[data-elementor-device-mode="mobile"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .mobile-header-menu-container { - display: block -} - -body[data-elementor-device-mode="tablet"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .header-menu-container { - display: none -} - -body[data-elementor-device-mode="tablet"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .menu-trigger,body[data-elementor-device-mode="tablet"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .mobile-header-menu-container { - display: block -} - -body[data-elementor-device-mode="laptop"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .header-menu-container { - display: none -} - -body[data-elementor-device-mode="laptop"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .menu-trigger,body[data-elementor-device-mode="laptop"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .mobile-header-menu-container { - display: block -} - -body[data-elementor-device-mode="desktop"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .header-menu-container { - display: block -} - -body[data-elementor-device-mode="desktop"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .menu-trigger,body[data-elementor-device-mode="desktop"] .elementor-widget-logico_navigation_menu.logico-breakpoint-laptop .mobile-header-menu-container { - display: none -} - -.mini-cart { - position: relative -} - -.mini-cart a.mini-cart-trigger { - display: block; - position: relative; - z-index: 3; - text-align: left; - text-decoration: none; - line-height: 1; - color: var(--logico-default-text-color) -} - -.mini-cart a.mini-cart-trigger:hover { - color: var(--logico-light-text-color) -} - -.mini-cart .mini-cart-count:before { - content: '\e843'; - display: block; - font: 400 normal 20px/1em 'fontello'; - vertical-align: top -} - -.mini-cart .mini-cart-count>span { - position: absolute; - display: inline-block; - vertical-align: top; - top: -.05em; - right: -.25em; - left: initial; - width: .45em; - height: .45em; - -webkit-border-radius: 50%; - border-radius: 50%; - -webkit-transition: border-color 0.3s; - transition: border-color 0.3s; - text-indent: -100px; - color: transparent; - line-height: .45em; - font-style: normal; - overflow: hidden; - -moz-box-sizing: content-box; - box-sizing: content-box; - background-color: #FF2763 -} - -.mini-cart:hover .mini-cart-trigger { - -webkit-border-radius: 0; - border-radius: 0 -} - -a.search-link { - text-decoration: none -} - -a.search-link .search-trigger-icon { - display: block; - font: 400 normal 19px/1.0526em 'fontello'; - cursor: pointer; - -webkit-transition: color 0.3s; - transition: color 0.3s -} - -a.search-link .search-trigger-icon:before { - content: '\e85c' -} - -a.search-link .search-trigger-icon:hover { - color: var(--logico-light-text-color) -} - -.dropdown-trigger { - position: relative -} - -.dropdown-trigger .dropdown-trigger-icon { - cursor: pointer; - text-align: center; - position: relative; - width: 20px; - height: 20px; - font-size: 0; - line-height: 1; - -webkit-transition: color 0.3s; - transition: color 0.3s; - display: block -} - -.dropdown-trigger .dropdown-trigger-icon:before { - content: '\e85e'; - display: block; - position: absolute; - z-index: 1; - font: 400 normal 20px/1em 'fontello' -} - -.dropdown-trigger .dropdown-trigger-icon:after { - content: '\e85d'; - display: block; - position: absolute; - z-index: 2; - font: 400 normal 20px/1em 'fontello'; - opacity: 0; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s -} - -.dropdown-trigger .dropdown-trigger-icon:hover:after { - opacity: 1 -} - -.header .dropdown-trigger { - margin: 15px 30px -} - -.slide-sidebar-wrapper { - position: fixed; - top: var(--wp-admin--admin-bar--height,0); - z-index: 110; - width: 320px; - background-color: var(--logico-background-color); - color: var(--logico-default-text-color); - height: calc(100vh - var(--wp-admin--admin-bar--height, 0px)); - border-radius: var(--logico-radius-large,0) -} - -.slide-sidebar-wrapper a { - color: var(--logico-accent-color) -} - -.slide-sidebar-wrapper p { - font-size: 16px; - line-height: 1.75em -} - -.slide-sidebar-wrapper p a { - text-decoration: underline -} - -.slide-sidebar-wrapper p a:hover { - text-decoration: none -} - -.slide-sidebar-wrapper h1:not([class*=logico-title-h]),.slide-sidebar-wrapper h2:not([class*=logico-title-h]),.slide-sidebar-wrapper h3:not([class*=logico-title-h]),.slide-sidebar-wrapper h4:not([class*=logico-title-h]),.slide-sidebar-wrapper h5:not([class*=logico-title-h]),.slide-sidebar-wrapper h6:not([class*=logico-title-h]) { - color: var(--logico-dark-text-color); - letter-spacing: normal!important; - font-family: var(--logico-standard-font-family) -} - -.slide-sidebar-wrapper.slide-sidebar-position-left { - right: initial; - left: -320px; - -webkit-transition: left 0.6s cubic-bezier(.77,0,.175,1); - transition: left 0.6s cubic-bezier(.77,0,.175,1) -} - -.slide-sidebar-wrapper.slide-sidebar-position-left.active { - right: initial; - left: 0 -} - -.slide-sidebar-wrapper .slide-sidebar-close { - width: 22px; - height: 22px; - cursor: pointer; - position: absolute; - right: 19px; - left: initial; - top: 17px; - z-index: 110; -} - -.slide-sidebar-wrapper .slide-sidebar-close:before,.slide-sidebar-wrapper .slide-sidebar-close:after { - content: ''; - position: absolute; - display: block; - left: 0; - right: initial; - height: 2px; - width: 100%; - -webkit-transition: background-position 0.7s cubic-bezier(.45,.05,.55,.95); - transition: background-position 0.7s cubic-bezier(.45,.05,.55,.95); - background: linear-gradient(90deg,var(--logico-dark-text-color) 0 36%,transparent 36% 56%,var(--logico-dark-text-color) 56% 100%); - -webkit-background-size: 270% 100%; - background-size: 270% 100%; - background-position-x: 100%; -} - -.slide-sidebar-wrapper .slide-sidebar-close:before { - top: 10px; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg) -} - -.slide-sidebar-wrapper .slide-sidebar-close:after { - top: 9.5px; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - -webkit-transition-delay: .1s,0s,0s; - -moz-transition-delay: .1s,0s,0s; - -ms-transition-delay: .1s,0s,0s; - -o-transition-delay: .1s,0s,0s; - transition-delay: .1s,0s,0s -} - -.slide-sidebar-wrapper .slide-sidebar-close:hover:before,.slide-sidebar-wrapper .slide-sidebar-close:hover:after { - background-position-x: 0; - -webkit-transition: background-position 0.7s cubic-bezier(.22,.61,.36,1),background-color 0.3s; - transition: background-position 0.7s cubic-bezier(.22,.61,.36,1),background-color 0.3s -} - -.slide-sidebar-wrapper .slide-sidebar { - position: relative; - padding: 80px 15px 40px; - min-height: calc(100% - 120px); - max-height: 100%; - box-sizing: border-box; - overflow: auto -} - -.slide-sidebar-wrapper .wp-block-title { - margin: 0 0 18px -} - -.slide-sidebar-wrapper .wp-block-title:last-child { - margin-bottom: 0 -} - -.logico-theme-style-rounded .slide-sidebar-wrapper { - width: 300px; - top: calc(var(--wp-admin--admin-bar--height, 0px) + 10px); - height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 20px) -} - -.logico-theme-style-rounded .slide-sidebar-wrapper.slide-sidebar-position-left.active { - right: initial; - left: 10px -} - -@media only screen and (min-width: 841px) { - .slide-sidebar-wrapper { - width:360px - } - - .slide-sidebar-wrapper:before { - content: ''; - display: block; - position: absolute; - right: -62px; - left: initial; - top: 0; - width: 58px; - height: 100%; - background-color: var(--logico-background-color); - background-position: right top; - background-repeat: no-repeat; - background-size: cover; - border-radius: var(--logico-radius-large,0) - } - - .slide-sidebar-wrapper.slide-sidebar-position-left { - right: initial; - left: -472px - } - - .slide-sidebar-wrapper.slide-sidebar-position-left.active { - right: initial; - left: 0 - } - - .slide-sidebar-wrapper .slide-sidebar-close { - left: initial; - right: -43px; - z-index: 2 - } - - .slide-sidebar-wrapper .slide-sidebar { - padding: 177px 63px 60px 63px; - min-height: calc(100% - 237px) - } - - .slide-sidebar-wrapper .slide-sidebar:after { - display: block - } - - .logico-theme-style-rounded .slide-sidebar-wrapper { - width: 360px - } - - .logico-theme-style-rounded .slide-sidebar-wrapper .slide-sidebar { - padding: 135px 63px 60px 63px; - min-height: calc(100% - 279px) - } -} - -@media only screen and (min-width: 1021px) { - .logico-theme-style-rounded .slide-sidebar-wrapper.slide-sidebar-position-left.active { - right:initial; - left: 20px; - z-index: 100000 !important; - } -} - -body:not(.block-editor-page) .content-wrapper .widget p { - margin: 0 -} - -.sidebar .widget+.widget { - margin: 51px 0 0 -} - -.sidebar .widget:first-child h1:first-child,.sidebar .widget:first-child h2:first-child,.sidebar .widget:first-child h3:first-child,.sidebar .widget:first-child h4:first-child,.sidebar .widget:first-child h5:first-child,.sidebar .widget:first-child h6:first-child { - margin-top: -.25em -} - -.sidebar .widget-wrapper>.wp-block-title:not(:last-child),.sidebar .dm-block-group>.wp-block-title:not(:last-child) { - margin: 0 0 .95em -} - -.sidebar .widget-wrapper>.wp-block-title:first-child h1,.sidebar .widget-wrapper>.wp-block-title:first-child h2,.sidebar .widget-wrapper>.wp-block-title:first-child h3,.sidebar .widget-wrapper>.wp-block-title:first-child h4,.sidebar .widget-wrapper>.wp-block-title:first-child h5,.sidebar .widget-wrapper>.wp-block-title:first-child h6,.sidebar .dm-block-group>.wp-block-title:first-child h1,.sidebar .dm-block-group>.wp-block-title:first-child h2,.sidebar .dm-block-group>.wp-block-title:first-child h3,.sidebar .dm-block-group>.wp-block-title:first-child h4,.sidebar .dm-block-group>.wp-block-title:first-child h5,.sidebar .dm-block-group>.wp-block-title:first-child h6 { - margin: 0!important; - padding: 0 1.5em 1.05em 0; - border-bottom: solid 1px; - position: relative; - letter-spacing: -.03em; - text-transform: none; - font: 600 normal 20px/1.25em var(--logico-body-font-family) -} - -.sidebar .widget-wrapper>.wp-block-title:first-child h1:after,.sidebar .widget-wrapper>.wp-block-title:first-child h2:after,.sidebar .widget-wrapper>.wp-block-title:first-child h3:after,.sidebar .widget-wrapper>.wp-block-title:first-child h4:after,.sidebar .widget-wrapper>.wp-block-title:first-child h5:after,.sidebar .widget-wrapper>.wp-block-title:first-child h6:after,.sidebar .dm-block-group>.wp-block-title:first-child h1:after,.sidebar .dm-block-group>.wp-block-title:first-child h2:after,.sidebar .dm-block-group>.wp-block-title:first-child h3:after,.sidebar .dm-block-group>.wp-block-title:first-child h4:after,.sidebar .dm-block-group>.wp-block-title:first-child h5:after,.sidebar .dm-block-group>.wp-block-title:first-child h6:after { - content: '\e80a'; - display: block; - position: absolute; - width: 1em; - height: 2.4em; - font: 400 normal .5em/2.4em 'fontello'; - bottom: 2.1em; - right: 0; - left: initial -} - -.slide-sidebar-wrapper .widget+.widget { - margin: 45px 0 0 -} - -.slide-sidebar-wrapper .widget .widget-wrapper h1:not(:last-child),.slide-sidebar-wrapper .widget .widget-wrapper h2:not(:last-child),.slide-sidebar-wrapper .widget .widget-wrapper h3:not(:last-child),.slide-sidebar-wrapper .widget .widget-wrapper h4:not(:last-child),.slide-sidebar-wrapper .widget .widget-wrapper h5:not(:last-child),.slide-sidebar-wrapper .widget .widget-wrapper h6:not(:last-child) { - margin-bottom: .5em -} - -.widget a { - text-decoration: none -} - -.widget p { - margin: .75em 0 0 -} - -.widget p a { - text-decoration: underline -} - -.widget p a:hover { - text-decoration: none -} - -.widget div.wpforms-container .wpforms-submit-container:not(:first-child) { - padding-top: 20px -} - - -/* === public/css/vendor/vendor-global-overrides.css === */ -/* - Theme Name: Logico Child - Description: Logico Child Theme - Theme URI: https://example.com/themes/logico - Author: Artureanec - Author URI: https://example.com - Template: logico - Version: 1.0.0 - License: GNU General Public License version 3.0 - License URI: http://www.gnu.org/licenses/gpl-3.0.html - Text Domain: logico-child -*/ - -/* =Theme customization starts here -------------------------------------------------------- */ - -/* Hide mobile-specific logo by default */ -.logo-mobile { - display: none !important; -} - -/* ============================================================ - MOBILE & TABLET HEADER REFINEMENT (< 1024px) - Transition to mobile pill-shape earlier to prevent desktop overlap/wrapping - ============================================================ */ - -@media (max-width: 1024px) { - - /* Logo toggling */ - .logo-desktop { - display: none !important; - } - - .logo-mobile { - display: block !important; - } - - /* 1. Header Wrapper (Outer): Position & Spacing */ - .elementor-5180 .elementor-element.elementor-element-466de1b { - position: fixed !important; - top: 30px !important; - left: 0 !important; - right: 0 !important; - width: 100% !important; - padding-left: 20px !important; - padding-right: 20px !important; - height: auto !important; - z-index: 10000 !important; - background: transparent !important; - pointer-events: none; - } - - /* 2. The Header Box / Card (Inner) */ - .elementor-5180 .elementor-element.elementor-element-e052838 { - margin: 0 10px auto !important; - width: 100% !important; - max-width: 100% !important; - background-color: #ffffff !important; - border-radius: 25px !important; - overflow: hidden !important; - box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important; - pointer-events: all; - display: flex !important; - flex-direction: column !important; - } - - /* 3. Main Row Layout Container */ - .elementor-5180 .elementor-element.elementor-element-d681ece { - display: flex !important; - flex-direction: row !important; - flex-wrap: nowrap !important; - align-items: center !important; - justify-content: space-between !important; - width: 100% !important; - padding: 12px 25px !important; - min-height: 70px !important; - box-sizing: border-box !important; - gap: 0 !important; - } - - /* 4. Logo Container (Left) */ - .elementor-5180 .elementor-element.elementor-element-472172e { - flex: 1 !important; - display: flex !important; - align-items: center !important; - justify-content: flex-start !important; - padding: 0 !important; - margin: 0 !important; - } - - /* 5. Menu Container (Right / Hamburger) */ - .elementor-5180 .elementor-element.elementor-element-e44ee7e { - flex: 0 0 auto !important; - display: flex !important; - align-items: center !important; - justify-content: flex-end !important; - padding: 0 !important; - margin: 0 !important; - } - - /* 6. Logo Widget Adjustments */ - .elementor-5180 .elementor-element.elementor-element-846e53d { - width: auto !important; - margin: 0 !important; - display: flex !important; - align-items: center !important; - max-width: none !important; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .hfe-site-logo .hfe-site-logo-container img { - margin: 0 !important; - max-width: none !important; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-mobile { - width: 180px !important; - height: auto !important; - min-width: 100px !important; - } - - /* 7. Menu Trigger (Hamburger) alignment */ - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .menu-trigger { - display: flex !important; - align-items: center !important; - justify-content: flex-end !important; - padding: 5px !important; - margin: 0 !important; - } - - /* Hamburger icon customization */ - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .hamburger { - width: 30px !important; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .hamburger span { - background-color: #1f1f1f !important; - height: 2px !important; - margin-bottom: 5px !important; - } - - /* Hide desktop-only elements */ - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container, - .elementor-5180 .elementor-element.elementor-element-2f31137, - .elementor-5180 .elementor-element.elementor-element-f961133 { - display: none !important; - } -} - -/* ============================================================ - MEDIUM DESKTOP OPTIMIZATION (1025px - 1480px) - Prevents logo/menu overlap on medium screens - ============================================================ */ -@media (min-width: 1025px) and (max-width: 1480px) { - /* Reduce logo size slightly */ - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-desktop { - width: 130px !important; - height: auto !important; - } - - /* Force single line and tighten spacing */ - .elementor-5180 .main-menu { - display: flex !important; - flex-wrap: nowrap !important; - white-space: nowrap !important; - } - - .elementor-5180 .main-menu > li > a { - padding-left: 8px !important; - padding-right: 8px !important; - font-size: 13px !important; - } - - /* Reduce container spacing */ - .elementor-5180 .elementor-element.elementor-element-d681ece { - padding-left: 15px !important; - padding-right: 15px !important; - gap: 10px !important; - } - - /* Ensure the menu pill container stays compact */ - .header-menu-container { - padding-left: 8px !important; - padding-right: 8px !important; - max-width: 750px !important; - } - - /* Scale down the CTA button */ - .elementor-5180 .logico-small-button { - padding: 10px 20px !important; - font-size: 13px !important; - } -} - -/* Tablet Scaling (768px - 1024px) */ -@media (max-width: 1024px) and (min-width: 768px) { - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-mobile { - width: 210px !important; - } -} - -/* Standard Mobile Scaling */ -@media (max-width: 767px) { - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-mobile { - width: 175px !important; - } -} - -/* Extra Small Devise Optimization */ -@media (max-width: 480px) { - .elementor-5180 .elementor-element.elementor-element-466de1b { - top: 15px !important; - padding-left: 15px !important; - padding-right: 15px !important; - } - - .elementor-5180 .elementor-element.elementor-element-d681ece { - padding: 6px 20px !important; - min-height: 55px !important; /* Smaller height for small screens */ - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-mobile { - width: 155px !important; /* Scaled down for tiny screens */ - } -} - -/* ============================================================ - HOME SECTION IMAGE RESPONSIVENESS (wp-image-4481) - ============================================================ */ - -/* Fix for Tablet and Mobile */ -@media (max-width: 1024px) { - .elementor-element.elementor-element-99768ba .elementor-widget-container img.wp-image-4481 { - width: 100% !important; - max-width: 600px !important; - /* Prevent oversized/zoomed appearance on tablets */ - height: auto !important; - aspect-ratio: auto !important; - /* Maintain original proportions */ - object-fit: cover !important; - /* Ensure no cropping of important content */ - margin: 0 auto !important; - /* Centering */ - display: block !important; - padding-bottom: 0px !important; - /* Spacing below the image */ - } - - /* Ensure parent container centers the image */ - .elementor-element.elementor-element-99768ba { - text-align: center !important; - } -} - -/* Specific scaling for small mobile phones */ -@media (max-width: 767px) { - .elementor-element.elementor-element-99768ba .elementor-widget-container img.wp-image-4481 { - max-width: 100% !important; - /* Reduce scale on small screens */ - margin: 0 auto !important; - border-radius: 25px !important; - /* Consistent rounded edges */ - } -} - -/* ============================================================ - WHY CHOOSE DOORMILE SECTION RESPONSIVENESS (< 1020px) - ============================================================ */ - - - - - - -/* ============================================================ - PROBLEM SECTION - Responsive Layout Fix - Targets: "Fragmented Logistics is Broken" section only - No button styles included. - ============================================================ */ - -/* Prevent horizontal overflow on the outer container */ -.elementor-element.section-shrink-custom[data-id="30fd9d1"], -.elementor-element.section-shrink-custom[data-id="30fd9d1"] > .e-con-inner { - overflow-x: hidden !important; - box-sizing: border-box !important; -} - -@media (max-width: 1024px) { - /* Full width with padding so content doesn't touch screen edges */ - .elementor-element.section-shrink-custom[data-id="30fd9d1"] > .e-con-inner { - max-width: 100% !important; - width: 100% !important; - padding-left: 20px !important; - padding-right: 20px !important; - } - - /* The 4-icon stat grid: wrap into 2 columns on tablet */ - .elementor-element.elementor-element-e09c20e { - grid-template-columns: repeat(2, 1fr) !important; - gap: 24px !important; - } - - /* Description text: prevent overflow */ -} - -@media (max-width: 480px) { - /* Single column on small mobile */ - .elementor-element.elementor-element-e09c20e { - grid-template-columns: 1fr !important; - } -} - -/* ============================================================ - HEADER SCROLL VISIBILITY - Home page: hidden until scroll. All other pages: always visible. - ============================================================ */ - -/* Home page: header fades in after scroll (JS adds .header-visible-scrolled) */ -.is-home-page .header-hide-until-scroll { - opacity: 0 !important; - visibility: hidden !important; - transform: translateY(-20px); - transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease !important; -} - -.is-home-page .header-hide-until-scroll.header-visible-scrolled { - opacity: 1 !important; - visibility: visible !important; - transform: translateY(0) !important; -} - -/* Non-home pages: always show header */ -body:not(.is-home-page) .header-hide-until-scroll { - opacity: 1 !important; - visibility: visible !important; - transform: translateY(0) !important; -} - -/* ============================================================ - PROBLEM SECTION - Responsive Text & Layout Fix - ============================================================ */ - -/* Prevent overflow at the section container level */ -.elementor-element.section-shrink-custom[data-id="30fd9d1"] { - overflow-x: hidden !important; - max-width: 100vw !important; -} - -.elementor-element.section-shrink-custom[data-id="30fd9d1"] > .e-con-inner { - max-width: 1480px !important; - width: 100% !important; - margin-left: auto !important; - margin-right: auto !important; - box-sizing: border-box !important; -} - -/* @media (min-width: 1300px) { - - .elementor-element.section-shrink-custom[data-id="30fd9d1"] > .e-con-inner { - max-width: 1300px !important; - padding: 0px 50px 10px !important; - } -} */ - -@media (max-width: 1024px) { - .elementor-element.section-shrink-custom[data-id="30fd9d1"] > .e-con-inner { - max-width: 100% !important; - padding-left: 20px !important; - padding-right: 20px !important; - } - - /* Left column (heading + stats + text): full width */ - .elementor-element.elementor-element-03db5d7 { - width: 100% !important; - max-width: 100% !important; - box-sizing: border-box !important; - } - - /* Stats grid: 2 columns on tablet */ - .elementor-element.elementor-element-e09c20e { - display: grid !important; - grid-template-columns: repeat(2, 1fr) !important; - gap: 20px !important; - width: 100% !important; - } - - /* Description text block: prevent overflow */ - - /* Force all text to wrap properly */ - .section-shrink-custom p, - .section-shrink-custom h3, - .section-shrink-custom span { - max-width: 100% !important; - word-break: break-word !important; - overflow-wrap: break-word !important; - white-space: normal !important; - } -} - -@media (max-width: 480px) { - /* Single column stats on small phones */ - .elementor-element.elementor-element-e09c20e { - grid-template-columns: 1fr !important; - } -} - -/* ============================================================ - PAGE LOADER - Must cover header on all viewports - Header uses z-index: 10000 so loader needs higher - ============================================================ */ - -/* ============================================================ - CONNECTED LOGISTICS - India Map Image Sizing - Widen the map column to fill the gap on the right side - ============================================================ */ -@media (min-width: 1021px) { - /* Image column: force wider */ - - - /* Text column: take the remaining space */ - - - /* Map image: fill the wider container */ - -} - -/* ============================================================ - INDUSTRY SOLUTIONS - Hover Effect Override - Image fills box, content shows on hover with #c01227 shade. - ============================================================ */ - - -/* Make image fill the entire card box */ - -/* Persistent bottom overlay before hover #c01227 */ - -/* Hover background shade overlay #c01227 */ - -/* Hide content until hover (explicitly target text and lists) */ - - -/* Force text to be white and clean */ - - -/* White Circle Arrow Icon Wrapper */ - -/* Lists styling on Hover */ - -/* Push headers to bottom */ - -/* ============================================================ - FOOTER CONTACT LINKS - Contrast Fix - ============================================================ */ -.elementor-6585 a, -.elementor-6585 a::before, -.elementor-6585 a::after { - color: #FFFFFF !important; - text-decoration: none !important; - transition: all 0.4s ease-in-out !important; -} - -/* Apply red hover color only to simple links, avoiding buttons */ -.elementor-6585 a:not(.logico-alter-button):hover { - color: #c01227 !important; -} - -.elementor-6585 a.logico-alter-button:hover { - opacity: 0.9 !important; -} - -/* Specific fix for phone and email links to ensure no default theme underlines */ -.elementor-element-87be926 a, -.elementor-element-ba67644 a { - border-bottom: none !important; - text-decoration: none !important; -} - -/* ============================================================ - SOCIAL ICONS VISIBILITY FIX - Ensures both font-based and SVG icons are visible and properly sized. - Targeting the common .wrapper-socials class used across the site. - ============================================================ */ -.e-font-icon-svg { - display: inline-block; - width: 1em; - height: 1em; - fill: currentColor; - vertical-align: middle; -} - -.elementor-social-icon svg { - width: 25px; - height: 25px; -} - -.fab, .far { - display: inline-block !important; -} - -.wrapper-socials { - list-style: none !important; - padding: 0 !important; - margin: 0 !important; - display: flex !important; - flex-wrap: wrap; - gap: 10px; -} - -.wrapper-socials li { - display: inline-block !important; - margin: 0 !important; - padding: 0 !important; -} - -.wrapper-socials li:before { - content: none !important; -} - -.wrapper-socials a { - display: flex !important; - align-items: center; - justify-content: center; - width: 36px; - height: 36px; - border-radius: 50%; - background-color: rgba(0, 0, 0, 0.05); - color: inherit; - text-decoration: none !important; - transition: all 0.3s ease; - font-size: 16px; -} - -.wrapper-socials a:hover { - background-color: var(--logico-accent-color, #c01227); - color: #fff !important; -} - -.wrapper-socials a svg { - width: 18px; - height: 18px; - fill: currentColor; -} - -/* Global visibility enforcement for Elementor and other social icons */ -.elementor-social-icon, -.e-font-icon-svg, -.wrapper-socials i, -.wrapper-socials svg { - display: inline-block !important; - visibility: visible !important; - opacity: 1 !important; -} - -/* Ensure SVG icons have at least some size if not specified */ -svg.e-font-icon-svg, -.elementor-social-icon svg { - min-width: 16px; - min-height: 16px; -} - - - - - - -/* ============================================================ - REDESIGNED STEP CARDS (How It Works) - BLACK TEMPLATE - ============================================================ */ - - -/* === public/css/vendor/vendor-layout-main.css === */ -/* - Theme Name: Logico Child - Description: Logico Child Theme - Theme URI: https://example.com/themes/logico - Author: Artureanec - Author URI: https://example.com - Template: logico - Version: 1.0.0 - License: GNU General Public License version 3.0 - License URI: http://www.gnu.org/licenses/gpl-3.0.html - Text Domain: logico-child -*/ - -/* =Theme customization starts here -------------------------------------------------------- */ - -/* Hide mobile-specific logo by default */ -.logo-mobile { - display: none !important; -} - -/* ============================================================ - MOBILE & TABLET HEADER REFINEMENT (< 1024px) - Transition to mobile pill-shape earlier to prevent desktop overlap/wrapping - ============================================================ */ - -@media (max-width: 1024px) { - - /* Logo toggling */ - .logo-desktop { - display: none !important; - } - - .logo-mobile { - display: block !important; - } - - /* 1. Header Wrapper (Outer): Position & Spacing */ - .elementor-5180 .elementor-element.elementor-element-466de1b { - position: fixed !important; - top: 30px !important; - left: 0 !important; - right: 0 !important; - width: 100% !important; - padding-left: 20px !important; - padding-right: 20px !important; - height: auto !important; - z-index: 10000 !important; - background: transparent !important; - pointer-events: none; - } - - /* 2. The Header Box / Card (Inner) */ - .elementor-5180 .elementor-element.elementor-element-e052838 { - margin: 0 10px auto !important; - width: 100% !important; - max-width: 100% !important; - background-color: #ffffff !important; - border-radius: 25px !important; - overflow: hidden !important; - box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important; - pointer-events: all; - display: flex !important; - flex-direction: column !important; - } - - /* 3. Main Row Layout Container */ - .elementor-5180 .elementor-element.elementor-element-d681ece { - display: flex !important; - flex-direction: row !important; - flex-wrap: nowrap !important; - align-items: center !important; - justify-content: space-between !important; - width: 100% !important; - padding: 12px 25px !important; - min-height: 70px !important; - box-sizing: border-box !important; - gap: 0 !important; - } - - /* 4. Logo Container (Left) */ - .elementor-5180 .elementor-element.elementor-element-472172e { - flex: 1 !important; - display: flex !important; - align-items: center !important; - justify-content: flex-start !important; - padding: 0 !important; - margin: 0 !important; - } - - /* 5. Menu Container (Right / Hamburger) */ - .elementor-5180 .elementor-element.elementor-element-e44ee7e { - flex: 0 0 auto !important; - display: flex !important; - align-items: center !important; - justify-content: flex-end !important; - padding: 0 !important; - margin: 0 !important; - } - - /* 6. Logo Widget Adjustments */ - .elementor-5180 .elementor-element.elementor-element-846e53d { - width: auto !important; - margin: 0 !important; - display: flex !important; - align-items: center !important; - max-width: none !important; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .hfe-site-logo .hfe-site-logo-container img { - margin: 0 !important; - max-width: none !important; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-mobile { - width: 180px !important; - height: auto !important; - min-width: 100px !important; - } - - /* 7. Menu Trigger (Hamburger) alignment */ - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .menu-trigger { - display: flex !important; - align-items: center !important; - justify-content: flex-end !important; - padding: 5px !important; - margin: 0 !important; - } - - /* Hamburger icon customization */ - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .hamburger { - width: 30px !important; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .hamburger span { - background-color: #1f1f1f !important; - height: 2px !important; - margin-bottom: 5px !important; - } - - /* Hide desktop-only elements */ - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container, - .elementor-5180 .elementor-element.elementor-element-2f31137, - .elementor-5180 .elementor-element.elementor-element-f961133 { - display: none !important; - } -} - -/* ============================================================ - MEDIUM DESKTOP OPTIMIZATION (1025px - 1480px) - Prevents logo/menu overlap on medium screens - ============================================================ */ -@media (min-width: 1025px) and (max-width: 1480px) { - /* Reduce logo size slightly */ - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-desktop { - width: 130px !important; - height: auto !important; - } - - /* Force single line and tighten spacing */ - .elementor-5180 .main-menu { - display: flex !important; - flex-wrap: nowrap !important; - white-space: nowrap !important; - } - - .elementor-5180 .main-menu > li > a { - padding-left: 8px !important; - padding-right: 8px !important; - font-size: 13px !important; - } - - /* Reduce container spacing */ - .elementor-5180 .elementor-element.elementor-element-d681ece { - padding-left: 15px !important; - padding-right: 15px !important; - gap: 10px !important; - } - - /* Ensure the menu pill container stays compact */ - .header-menu-container { - padding-left: 8px !important; - padding-right: 8px !important; - max-width: 750px !important; - } - - /* Scale down the CTA button */ - .elementor-5180 .logico-small-button { - padding: 10px 20px !important; - font-size: 13px !important; - } -} - -/* Tablet Scaling (768px - 1024px) */ -@media (max-width: 1024px) and (min-width: 768px) { - .elementor-5180 .elementor-element.elementor-element-846e53d .logo-mobile { - width: 210px !important; - } -} - - -/* === public/css/vendor/vendor-responsive-laptops.css === */ -/* ============================================================ - LAPTOP RESPONSIVENESS FIX (1025px – 1520px) - Enforces desktop layouts strictly within laptop constraints. - Leaves Mobile (<1024px) and Ultrawide (>1520px) UNTOUCHED. - ============================================================ */ - -@media (min-width: 1025px) and (max-width: 1520px) { - - /* Hero Slider - Force Desktop Alignment */ - .logico-content-slider-widget .slide-content-inner { - text-align: left !important; - align-items: flex-start !important; - display: flex !important; - flex-direction: column !important; - } - - .logico-content-slider-widget .content-slider-item-heading, - .logico-content-slider-widget .content-slider-item-text { - text-align: center !important; - } - - /* Restore Flex & Grid container directions to desktop state */ - /* .e-con.e-parent, - .e-con.e-child { - --flex-direction: var(--flex-direction) !important; - --container-widget-width: var(--container-widget-width) !important; - --container-widget-height: var(--container-widget-height) !important; - } */ - - /* Keep the .e-con-inner container widths at desktop-equivalent max widths */ - .e-con-boxed>.e-con-inner { - max-width: min(var(--container-max-width, 1480px), 100%) !important; - margin-left: auto !important; - margin-right: auto !important; - } - - /* ─── Problem Section Specific Fixes ─── */ - .elementor-element.section-shrink-custom[data-id="30fd9d1"]>.e-con-inner { - display: flex !important; - flex-direction: row !important; - max-width: 1480px !important; - width: 100% !important; - gap: 40px !important; - } - - .elementor-element.elementor-element-03db5d7 { - flex: 1 1 0% !important; - display: flex !important; - flex-direction: column !important; - } - - .elementor-element.elementor-element-e09c20e { - display: grid !important; - grid-template-columns: repeat(4, 1fr) !important; - gap: 24px !important; - } - - /* ─── Connected Logistics Section Fixes ─── */ - .elementor-element.elementor-element-9ffed33 { - display: flex !important; - flex-direction: row !important; - flex-wrap: nowrap !important; - } - - - - -} -/* === public/css/vendor/vendor-elementor-hfe.css === */ -.footer-width-fixer { - width: 100% -} - -.bhf-hidden { - display: none -} - -.ehf-header #masthead { - z-index: 99; - position: relative -} - -/* === public/css/vendor/vendor-icons-fontello-load.css === */ -@font-face { - font-display: swap; - font-family: 'fontello'; - src: url(/fonts/fontello.woff2?98791691) format("woff2"); - font-weight: 400; - font-style: normal -} - - -/* === public/css/vendor/vendor-icons-fontello.css === */ -[class^="icon-"]:before,[class*=" icon-"]:before { - font-family: 'fontello'; - font-style: normal; - font-weight: 400; - speak: never; - display: inline-block; - text-decoration: inherit; - width: 1em; - text-align: center; - font-variant: normal; - text-transform: none; - line-height: 1em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale -} - -.icon-light-container:before { - content: '\e839' -} - -.icon-light-delivery:before { - content: '\e83a' -} - -.icon-light-directions:before { - content: '\e83b' -} - -.icon-light-storage:before { - content: '\e83c' -} - -.icon-air-delivery:before { - content: '\e841' -} - -.icon-container:before { - content: '\e846' -} - -.icon-half-logo:before { - content: '\e851' -} - -.icon-supply-chain:before { - content: '\e863' -} - -.icon-trolley:before { - content: '\e867' -} - -/* === public/css/custom-frontend.min.css === */ -:root { - --direction-multiplier: 1 -} - -.elementor-screen-only,.screen-reader-text,.screen-reader-text span { - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - top: -10000em; - width: 1px; - clip: rect(0,0,0,0); - border: 0 -} - -.elementor *,.elementor :after,.elementor :before { - box-sizing: border-box -} - -.elementor a { - box-shadow: none; - text-decoration: none -} - -.elementor img { - border: none; - border-radius: 0; - box-shadow: none; - height: auto; - max-width: 100% -} - -.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure { - margin: 0 -} - -.elementor embed,.elementor iframe,.elementor object { - border: none; - line-height: 1; - margin: 0; - max-width: 100%; - width: 100% -} - -.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute { - position: absolute -} - -.elementor-element.elementor-absolute { - z-index: 1 -} - -.elementor-element { - --flex-direction: initial; - --flex-wrap: initial; - --justify-content: initial; - --align-items: initial; - --align-content: initial; - --gap: initial; - --flex-basis: initial; - --flex-grow: initial; - --flex-shrink: initial; - --order: initial; - --align-self: initial; - align-self: var(--align-self); - flex-basis: var(--flex-basis); - flex-grow: var(--flex-grow); - flex-shrink: var(--flex-shrink); - order: var(--order) -} - -.elementor-element:where(.e-con-full,.elementor-widget) { - align-content: var(--align-content); - align-items: var(--align-items); - flex-direction: var(--flex-direction); - flex-wrap: var(--flex-wrap); - gap: var(--row-gap) var(--column-gap); - justify-content: var(--justify-content) -} - -:root { - --page-title-display: block -} - -@keyframes eicon-spin { - 0% { - transform: rotate(0deg) - } - - to { - transform: rotate(359deg) - } -} - -.elementor-widget { - position: relative -} - -.elementor-widget:not(:last-child) { - margin-block-end:var(--kit-widget-spacing,20px)} - -.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial { - margin-block-end:0 -} - -.elementor-grid { - display: grid; - grid-column-gap: var(--grid-column-gap); - grid-row-gap: var(--grid-row-gap) -} - -.elementor-grid .elementor-grid-item { - min-width: 0 -} - -.elementor-grid-0 .elementor-grid { - display: inline-block; - margin-block-end:calc(-1 * var(--grid-row-gap));width: 100%; - word-spacing: var(--grid-column-gap) -} - -.elementor-grid-0 .elementor-grid .elementor-grid-item { - display: inline-block; - margin-block-end:var(--grid-row-gap);word-break: break-word -} - -@media (prefers-reduced-motion:no-preference) { - html { - scroll-behavior: smooth - } -} - -.e-con { - --border-radius: 0; - --border-top-width: 0px; - --border-right-width: 0px; - --border-bottom-width: 0px; - --border-left-width: 0px; - --border-style: initial; - --border-color: initial; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --content-width: min(100%,var(--container-max-width,1140px)); - --width: 100%; - --min-height: initial; - --height: auto; - --text-align: initial; - --margin-top: 0px; - --margin-right: 0px; - --margin-bottom: 0px; - --margin-left: 0px; - --padding-top: var(--container-default-padding-top,10px); - --padding-right: var(--container-default-padding-right,10px); - --padding-bottom: var(--container-default-padding-bottom,10px); - --padding-left: var(--container-default-padding-left,10px); - --position: relative; - --z-index: revert; - --overflow: visible; - --gap: var(--widgets-spacing,20px); - --row-gap: var(--widgets-spacing-row,20px); - --column-gap: var(--widgets-spacing-column,20px); - --overlay-mix-blend-mode: initial; - --overlay-opacity: 1; - --overlay-transition: 0.3s; - --e-con-grid-template-columns: repeat(3,1fr); - --e-con-grid-template-rows: repeat(2,1fr); - border-radius: var(--border-radius); - height: var(--height); - min-height: var(--min-height); - min-width: 0; - overflow: var(--overflow); - position: var(--position); - width: var(--width); - z-index: var(--z-index); - --flex-wrap-mobile: wrap -} - -.e-con { - --margin-block-start: var(--margin-top); - --margin-block-end: var(--margin-bottom); - --margin-inline-start: var(--margin-left); - --margin-inline-end: var(--margin-right); - --padding-inline-start: var(--padding-left); - --padding-inline-end: var(--padding-right); - --padding-block-start: var(--padding-top); - --padding-block-end: var(--padding-bottom); - --border-block-start-width: var(--border-top-width); - --border-block-end-width: var(--border-bottom-width); - --border-inline-start-width: var(--border-left-width); - --border-inline-end-width: var(--border-right-width) -} - -.e-con { - margin-block-end:var(--margin-block-end);margin-block-start: var(--margin-block-start); - margin-inline-end:var(--margin-inline-end);margin-inline-start: var(--margin-inline-start); - padding-inline-end:var(--padding-inline-end);padding-inline-start: var(--padding-inline-start) -} - -.e-con.e-flex { - --flex-direction: column; - --flex-basis: auto; - --flex-grow: 0; - --flex-shrink: 1; - flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis) -} - -.e-con-full,.e-con>.e-con-inner { - padding-block-end:var(--padding-block-end);padding-block-start: var(--padding-block-start); - text-align: var(--text-align) -} - -.e-con-full.e-flex,.e-con.e-flex>.e-con-inner { - flex-direction: var(--flex-direction) -} - -.e-con,.e-con>.e-con-inner { - display: var(--display) -} - -.e-con.e-grid { - --grid-justify-content: start; - --grid-align-content: start; - --grid-auto-flow: row -} - -.e-con.e-grid,.e-con.e-grid>.e-con-inner { - align-content: var(--grid-align-content); - align-items: var(--align-items); - grid-auto-flow: var(--grid-auto-flow); - grid-template-columns: var(--e-con-grid-template-columns); - grid-template-rows: var(--e-con-grid-template-rows); - justify-content: var(--grid-justify-content); - justify-items: var(--justify-items) -} - -.e-con-boxed.e-flex { - align-content: normal; - align-items: normal; - flex-direction: column; - flex-wrap: nowrap; - justify-content: normal -} - -.e-con-boxed.e-grid { - grid-template-columns: 1fr; - grid-template-rows: 1fr; - justify-items: legacy -} - -.e-con-boxed { - gap: initial; - text-align: initial -} - -.e-con.e-flex>.e-con-inner { - align-content: var(--align-content); - align-items: var(--align-items); - align-self: auto; - flex-basis: auto; - flex-grow: 1; - flex-shrink: 1; - flex-wrap: var(--flex-wrap); - justify-content: var(--justify-content) -} - -.e-con.e-grid>.e-con-inner { - align-items: var(--align-items); - justify-items: var(--justify-items) -} - -.e-con>.e-con-inner { - gap: var(--row-gap) var(--column-gap); - height: 100%; - margin: 0 auto; - max-width: var(--content-width); - padding-inline-end:0;padding-inline-start:0;width: 100% -} - -:is([data-elementor-id])>.e-con { - --margin-left: auto; - --margin-right: auto; - max-width: min(100%,var(--width)) -} - -.e-con .elementor-widget.elementor-widget { - margin-block-end:0} - -.e-con:before { - border-block-end-width:var(--border-block-end-width);border-block-start-width: var(--border-block-start-width); - border-color: var(--border-color); - border-inline-end-width:var(--border-inline-end-width);border-inline-start-width: var(--border-inline-start-width); - border-radius: var(--border-radius); - border-style: var(--border-style); - content: var(--background-overlay); - display: block; - height: max(100% + var(--border-top-width) + var(--border-bottom-width),100%); - left: calc(0px - var(--border-left-width)); - mix-blend-mode: var(--overlay-mix-blend-mode); - opacity: var(--overlay-opacity); - position: absolute; - top: calc(0px - var(--border-top-width)); - transition: var(--overlay-transition,.3s); - width: max(100% + var(--border-left-width) + var(--border-right-width),100%) -} - -.e-con:before { - transition: background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s) -} - -.e-con .elementor-widget { - min-width: 0 -} - -.e-con .elementor-widget-google_maps { - width: 100% -} - -.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container { - height: 100% -} - -.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget { - max-width: 100% -} - -.e-con .elementor-widget:not(:last-child) { - --kit-widget-spacing: 0px -} - -@media (max-width: 767px) { - .e-con.e-flex { - --width:100%; - --flex-wrap: var(--flex-wrap-mobile) - } -} - -.elementor-icon { - color: #69727d; - display: inline-block; - font-size: 50px; - line-height: 1; - text-align: center; - transition: all .3s -} - -.elementor-icon:hover { - color: #69727d -} - -.elementor-icon i,.elementor-icon svg { - display: block; - height: 1em; - position: relative; - width: 1em -} - -.elementor-icon i:before,.elementor-icon svg:before { - left: 50%; - position: absolute; - transform: translateX(-50%) -} - -.elementor-shape-square .elementor-icon { - border-radius: 0 -} - -.animated { - animation-duration: 1.25s -} - -.animated.animated-slow { - animation-duration: 2s -} - -.animated.animated-fast { - animation-duration: .75s -} - -.animated.infinite { - animation-iteration-count: infinite -} - -.animated.reverse { - animation-direction: reverse; - animation-fill-mode: forwards -} - -@media (prefers-reduced-motion:reduce) { - .animated { - animation: none!important - } - - html * { - transition-delay: 0s!important; - transition-duration: 0s!important - } -} - -@media (max-width: 480px) { - .elementor .elementor-hidden-mobile { - display:none - } -} - -@media (min-width: 481px) and (max-width:660px) { - .elementor .elementor-hidden-mobile_extra { - display:none - } -} - -@media (min-width: 661px) and (max-width:840px) { - .elementor .elementor-hidden-tablet { - display:none - } -} - -@media (min-width: 841px) and (max-width:1020px) { - .elementor .elementor-hidden-tablet_extra { - display:none - } -} - -@media (min-width: 1021px) and (max-width:1200px) { - .elementor .elementor-hidden-laptop { - display:none - } -} - -.team-listing-wrapper.team-grid-listing { - display: block; - margin: 0 -10px -20px -} - -.team-listing-wrapper.team-grid-listing .team-item-wrapper { - width: 100%; - padding: 0 10px; - margin: 0 0 20px; - -moz-box-sizing: border-box; - box-sizing: border-box -} - -.team-listing-wrapper.team-grid-listing .team-item { - display: -webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -moz-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: flex-end; - -moz-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; - position: relative -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-media { - width: 45.6522%; - position: relative; - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0; - margin: 0 20px 0 0 -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-media img { - border-radius: var(--logico-radius-large,0) -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-content { - width: 100%; - margin: 0 0 -8px -} - -.team-listing-wrapper.team-grid-listing .team-item .post-media { - position: relative; - height: 0; - padding: 143.9153% 0 0; - overflow: hidden -} - -.team-listing-wrapper.team-grid-listing .team-item .post-media img { - position: absolute; - top: 0; - left: 0; - right: 0; - max-width: none; - width: 100%; - height: 100%; - -o-object-fit: cover; - object-fit: cover -} - -.team-listing-wrapper.team-grid-listing .team-item .post-title { - font-size: 25px; - line-height: 1.6em; - font-weight: 600; - letter-spacing: -.03em; - color: var(--logico-dark-text-color) -} - -.team-listing-wrapper.team-grid-listing .team-item .post-title a { - color: inherit; - text-decoration: none -} - -.team-listing-wrapper.team-grid-listing .team-item .post-title a:hover { - color: var(--logico-accent-color) -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-position { - font-size: .8889em; - line-height: 1.875em; - color: var(--logico-light-text-color) -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials { - margin: 0; - overflow: hidden -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials { - padding: 23px 0 8px; - margin: -16px -10px -100%; - position: relative; - -webkit-transition: margin 0.5s; - transition: margin 0.5s; - white-space: nowrap; - overflow: hidden -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li { - margin: 16px 10px 0; - position: relative; - top: 30px; - -webkit-transition: top 0.3s 3s; - transition: top 0.3s 3s; - padding: 0 -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:before { - content: none; - display: none -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+1) { - -webkit-transition-delay: 0.4s; - transition-delay: 0.4s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+2) { - -webkit-transition-delay: 0.5s; - transition-delay: 0.5s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+3) { - -webkit-transition-delay: 0.6s; - transition-delay: 0.6s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+4) { - -webkit-transition-delay: 0.7s; - transition-delay: 0.7s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+5) { - -webkit-transition-delay: 0.8s; - transition-delay: 0.8s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+6) { - -webkit-transition-delay: 0.9s; - transition-delay: 0.9s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n+7) { - -webkit-transition-delay: 1s; - transition-delay: 1s -} - -.team-listing-wrapper.team-grid-listing .team-item .team-item-socials .wrapper-socials li:nth-child(8n) { - -webkit-transition-delay: 1.1s; - transition-delay: 1.1s -} - -.team-listing-wrapper.team-grid-listing .team-item:hover .team-item-socials .wrapper-socials { - margin: -16px -10px 0 -} - -.team-listing-wrapper.team-grid-listing .team-item:hover .team-item-socials .wrapper-socials li { - top: 0 -} - -@media only screen and (min-width: 661px) { - .team-listing-wrapper.team-grid-listing { - display:-webkit-box; - display: -moz-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -moz-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: flex-start; - -moz-align-items: flex-start; - -ms-align-items: flex-start; - align-items: flex-start - } - - .team-listing-wrapper.team-grid-listing.columns-4 .team-item-wrapper { - width: 50% - } -} - -@media only screen and (min-width: 1021px) { - .team-listing-wrapper.team-grid-listing.columns-4 .team-item-wrapper { - width:33.3333% - } -} - -@media only screen and (min-width: 1201px) { - .team-listing-wrapper.team-grid-listing { - margin:0 -10px -40px - } - - .team-listing-wrapper.team-grid-listing .team-item-wrapper { - margin-bottom: 40px - } - - .team-listing-wrapper.team-grid-listing .team-item .team-item-media { - margin: 0 38px 0 0 - } - - .team-listing-wrapper.team-grid-listing.columns-4 .team-item-wrapper { - width: 25% - } -} - -@media only screen and (min-width: 1380px) { - .team-listing-wrapper.team-grid-listing { - margin:0 -22px -78px - } - - .team-listing-wrapper.team-grid-listing .team-item-wrapper { - padding: 0 22px; - margin-bottom: 78px - } -} - - - :root { - --we-primary: #c01227; - --we-primary-light: #e62e45; - --we-secondary: #222222; - --we-accent: #f8f9fa; - --we-text: #333333; - --we-text-light: #666666; - --we-white: #ffffff; - --we-glass: rgba(255, 255, 255, 0.9); - --we-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); - --we-radius: 24px; - --we-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); - } - - .we-container { - max-width: 1320px; - margin: 50px auto auto auto; - padding: 0px 24px; - } - - /* ─── HERO SECTION ─── */ - - /* ─── STATS SECTION ─── */ - - /* ─── INITIATIVES SECTION ─── */ - - /* ─── SUCCESS STORIES ─── */ - - /* ─── CALL TO ACTION ─── */ - .we-cta { - position: relative; - padding: 100px 0; - background: var(--we-primary); - color: var(--we-white); - border-radius: var(--we-radius); - text-align: center; - overflow: hidden; - margin-bottom: 120px; - } - - .we-cta-inner { - position: relative; - z-index: 2; - } - - .we-cta-title { - font-size: clamp(32px, 4vw, 56px); - font-weight: 800; - margin-bottom: 24px; - line-height: 1.1; - } - - .we-cta-title em { - font-style: normal; - opacity: 0.8; - } - - .we-cta-sub { - font-size: 20px; - max-width: 100%; - margin: 0 auto 40px; - opacity: 0.9; - } - - .we-cta-btns { - display: flex; - gap: 20px; - justify-content: center; - flex-wrap: wrap; - } - - .btn-we-primary { - background: var(--we-white); - color: var(--we-primary); - padding: 18px 48px; - border-radius: 100px; - font-weight: 700; - text-decoration: none; - transition: var(--we-transition); - display: inline-flex; - align-items: center; - gap: 12px; - } - - .btn-we-primary:hover { - transform: translateY(-5px); - box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); - } - - /* ─── ANIMATIONS ─── */ - @keyframes fadeInUp { - from { opacity: 0; transform: translateY(30px); } - to { opacity: 1; transform: translateY(0); } - } - - @keyframes fadeInDown { - from { opacity: 0; transform: translateY(-30px); } - to { opacity: 1; transform: translateY(0); } - } - - /* Responsive Adjustments */ - @media (max-width: 768px) { - - .we-container { - padding: 0 20px; - } - } - - - /* additional css for 2 sections */ - /* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap'); */ - -/* --- DEFAULT ROOT THEME: PREMIUM LIGHT / WHITE --- */ -:root { - --bg-darker: #f8fafc; /* Clean slate light white background */ - --bg-dark: #f1f5f9; /* Distribution slate grey background */ - --bg-card: rgba(255, 255, 255, 0.75); /* White glassmorphism backdrop */ - --bg-card-hover: rgba(255, 255, 255, 0.95); - - --primary-raw: 226, 0, 26; /* #e2001a Doormile Red */ - --primary: rgb(var(--primary-raw)); - --primary-glow: #e2001a; - --primary-glow-rgb: 226, 0, 26; - - --accent-raw: 13, 148, 136; /* Teal */ - --accent: rgb(var(--accent-raw)); - --accent-glow: #0f766e; - - --text-primary: #0f172a; /* Slate 900 for high readability */ - --text-secondary: #475569; /* Slate 600 */ - --text-muted: #94a3b8; /* Slate 400 */ - - --border-color: rgba(15, 23, 42, 0.08); /* Light grey outline border */ - --border-glow: rgba(var(--primary-raw), 0.15); - - --font-heading: 'Outfit', 'Inter', sans-serif; - --font-body: 'Inter', sans-serif; - - --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1); - --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1); - --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); - - --grid-line-color: rgba(15, 23, 42, 0.02); /* Subtle light grid pattern lines */ -} - -/* --- BASE STYLES --- */ - - -/* Layout Containers */ -.container { - max-width: 1320px; - margin: 0 auto; - padding: 0 2rem; - position: relative; - z-index: 10; -} - -section { - padding: 6rem 0; - position: relative; - overflow: hidden; -} - -h1, h2, h3 { - font-family: var(--font-heading); - font-weight: 700; - letter-spacing: -0.02em; -} - -/* Glassmorphic Panel (Elevated white glass for light theme) */ - -/* --- SECTION 1: THE ROADMAP HERO (EXACTLY #1F1F1F DARK BACKGROUND OVERRIDE) --- */ -.roadmap-hero-section { - /* Overriding default variables locally to create a gorgeous #1F1F1F dark layout! */ - --bg-darker: #1f1f1f; /* User specified solid charcoal color */ - --bg-dark: #272727; - --bg-card: rgba(15, 15, 15, 0.6); - --bg-card-hover: rgba(30, 30, 30, 0.85); - - --primary-glow: #c01227; - --text-primary: #f3f4f6; - --text-secondary: #9ca3af; - --text-muted: #5e6472; - --border-color: rgba(255, 255, 255, 0.06); - --border-glow: rgba(226, 0, 26, 0.25); - - min-height: 100vh; - border-radius: 20px; - padding: 2.5rem 0 4rem 0; - display: flex; - align-items: center; - background-color: var(--bg-darker) !important; - background-image: radial-gradient(circle at 50% 20%, rgba(226, 0, 26, 0.08) 0%, transparent 60%) !important; - position: relative; -} - -/* Concentric crimson vector curves background */ - -/* Screen Header Bar */ - -/* Capsule brand logo on white background */ - -/* Titles and subtitle layout */ -.vision-tag-top { - font-family: var(--font-heading); - font-size: 0.8rem; - font-weight: 800; - letter-spacing: 0.25em; - color: var(--primary-glow); - margin-bottom: 1.25rem; - text-transform: uppercase; -} - -/* .glowing-rose-text { - background: linear-gradient(135deg, #c01227 0%, var(#c01227) 100%); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - filter: drop-shadow(0 0 20px rgba(255, 42, 95, 0.45)); -} */ - -.vision-main-subtitle { - font-size: 1.15rem; - color: var(--text-secondary); - margin-bottom: 3.5rem; -} - -/* Timeline Horizontal Track overlay */ -.roadmap-track-container { - display: flex; - align-items: center; - justify-content: space-between; - margin-bottom: 2.25rem; - position: relative; - z-index: 10; -} - -.roadmap-track-label { - font-family: var(--font-heading); - font-weight: 800; - font-size: 0.75rem; - letter-spacing: 0.15em; - color: var(--text-secondary); - flex-shrink: 0; -} - -.timeline-horizontal-wrapper { - flex: 1; - margin: 0 2rem; - position: relative; - height: 4px; -} - -.timeline-horizontal-line { - position: absolute; - top: 50%; - left: 0; - width: 100%; - height: 2px; - background: rgba(255, 255, 255, 0.08); - transform: translateY(-50%); - border-radius: 1px; -} - -.timeline-horizontal-fill { - position: absolute; - top: 50%; - left: 0; - width: 75%; - height: 2px; - background: var(--primary-glow); - box-shadow: 0 0 10px var(--primary-glow); - transform: translateY(-50%); - border-radius: 1px; -} - -.node-dots-row { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} - -.node-dot-item { - position: absolute; - width: 10px; - height: 10px; - border-radius: 50%; - background: #1f1f1f; - border: 2px solid rgba(255, 255, 255, 0.15); - transform: translate(-50%, -50%); - top: 50%; -} - -.node-pulse-crown { - width: 100%; - height: 100%; - border-radius: 50%; - border: 2px solid var(--primary-glow); - background: #1f1f1f; - box-shadow: 0 0 15px var(--primary-glow); - position: absolute; - top: 0; - left: 0; -} - -.roadmap-complete-pct { - font-family: var(--font-heading); - font-weight: 800; - font-size: 0.75rem; - letter-spacing: 0.05em; - color: var(--primary-glow); - flex-shrink: 0; - text-shadow: 0 0 8px rgba(226, 0, 26, 0.3); -} - -/* 4-Card side-by-side grid */ -.roadmap-grid-container { - display: grid; - grid-template-columns: repeat(4, 1fr); - gap: 1.25rem; - margin-bottom: 2.5rem; - position: relative; - z-index: 10; -} - -.roadmap-col-card { - background: var(--bg-card); - backdrop-filter: blur(12px); - border: 1.5px solid var(--border-color); - border-radius: 12px; - padding: 1.5rem; - display: flex; - flex-direction: column; - min-height: 380px; - transition: var(--transition-smooth); - cursor: pointer; - position: relative; -} - -.roadmap-col-card:hover { - transform: translateY(-6px); - border-color: rgba(226, 0, 26, 0.25); - box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 0, 26, 0.05); -} - -.card-top-row { - display: flex; - justify-content: space-between; - align-items: center; - margin-bottom: 1rem; -} - -.year-num { - font-family: var(--font-heading); - font-size: 1.6rem; - font-weight: 800; - color: #fff; - line-height: 1; -} - -.card-icon-badge { - width: 24px; - height: 24px; - border-radius: 6px; - background: rgba(226, 0, 26, 0.15); - border: 1px solid rgba(226, 0, 26, 0.3); - display: flex; - align-items: center; - justify-content: center; - color: var(--primary-glow); -} - -.phase-badge-pill { - align-self: flex-start; - padding: 0.25rem 0.65rem; - border-radius: 20px; - font-family: var(--font-heading); - font-weight: 800; - font-size: 0.65rem; - letter-spacing: 0.04em; - text-transform: uppercase; - margin-bottom: 0.85rem; -} - -.phase-badge-pill.yellow { - background: rgba(234, 179, 8, 0.08); - border: 1px solid rgba(234, 179, 8, 0.2); - color: #eab308; -} - -.phase-badge-pill.green { - background: rgba(16, 185, 129, 0.08); - border: 1px solid rgba(16, 185, 129, 0.2); - color: #10b981; -} - -.phase-badge-pill.blue { - background: rgba(59, 130, 246, 0.08); - border: 1px solid rgba(59, 130, 246, 0.2); - color: #3b82f6; -} - -.card-heading { - font-size: 1.1rem; - font-weight: 800; - color: #fff; - margin-bottom: 0.5rem; -} - -.card-text { - font-size: 0.8rem; - color: var(--text-secondary); - line-height: 1.45; - margin-bottom: 1.5rem; - flex-grow: 1; -} - -.card-pills-stack { - display: flex; - flex-direction: column; - gap: 0.5rem; -} - -.card-stat-pill-mini { - background: rgba(255, 255, 255, 0.02); - border: 1px solid rgba(255, 255, 255, 0.04); - padding: 0.45rem 0.75rem; - border-radius: 6px; - font-size: 0.78rem; - font-weight: 500; - color: #d1d5db; - display: flex; - align-items: center; - gap: 0.5rem; - transition: var(--transition-fast); -} - -.card-stat-pill-mini svg { - color: var(--primary-glow); - flex-shrink: 0; -} - -.card-stat-pill-mini:hover { - background: rgba(255, 255, 255, 0.05); - color: #fff; -} - -/* Glowing Vision Card 2030 layout styling */ -.glowing-vision-card { - background: linear-gradient(135deg, #e2001a 0%, #ff2a5f 100%) !important; - border-color: #c01227 !important; - box-shadow: 0 20px 40px rgba(226, 0, 26, 0.25), 0 0 25px rgba(226, 0, 26, 0.15); -} - -.glowing-vision-card:hover { - box-shadow: 0 20px 40px rgba(226, 0, 26, 0.45), 0 0 35px rgba(226, 0, 26, 0.25) !important; - border-color: #fff !important; -} - -.glowing-vision-card .year-num, -.glowing-vision-card .card-heading { - color: #fff !important; -} - -.glowing-vision-card .card-text { - color: rgba(255, 255, 255, 0.85) !important; -} - -.glowing-vision-card .card-icon-badge.translucent-white { - background: rgba(255, 255, 255, 0.15) !important; - border-color: rgba(255, 255, 255, 0.3) !important; - color: #fff !important; -} - -.glowing-vision-card .phase-badge-pill.white-pill { - background: rgba(255, 255, 255, 0.15) !important; - border: 1px solid rgba(255, 255, 255, 0.3) !important; - color: #fff !important; -} - -.glowing-vision-card .card-stat-pill-mini.translucent-crimson { - background: rgba(10, 15, 28, 0.35) !important; - border: 1px solid rgba(255, 255, 255, 0.08) !important; - color: #fff !important; -} - -.glowing-vision-card .card-stat-pill-mini.translucent-crimson svg { - color: #fff !important; -} - -/* Screen Footer Bar */ - -/* Scroll action anchor */ - - -/* --- SECTION 2: LIVE AI ROUTING SIMULATOR (LIGHT / WHITE THEME) --- */ - -/* Simulator Grid responsive wrapper */ - -/* Light theme blur overlay hud styling */ - -/* Cockpit float slider controls */ - -/* Sidebar Metrics Dashboard styling */ - - -/* --- SECTION 3: COMPARISON MATRIX & MOAT (LIGHT / WHITE THEME) --- */ -.comparison-section { - /* background-color: var(--bg-dark); */ - background-image: radial-gradient(circle at 90% 20%, rgba(var(--primary-raw), 0.015) 0%, transparent 60%); - border-top: 1px solid var(--border-color); -} - -.table-wrapper { - overflow-x: auto; - border-radius: 16px; - border: 1px solid var(--border-color); - background: var(--bg-card); - box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03); -} - -.comparison-table { - width: 100%; - border-collapse: collapse; - text-align: left; -} - -.comparison-table th, .comparison-table td { - padding: 1.2rem 1.5rem; - border-bottom: 1px solid var(--border-color); - font-size: 0.9rem; - color: var(--text-primary); -} - -.comparison-table tr:last-child th, .comparison-table tr:last-child td { - border-bottom: none; -} - -.comparison-table th { - font-family: var(--font-heading); - font-weight: 700; - text-transform: uppercase; - font-size: 0.75rem; - letter-spacing: 0.1em; - color: var(--text-secondary); - background: rgba(15, 23, 42, 0.02); -} - -/* Doormile red primary highlight column */ -.col-highlight { - background: rgba(var(--primary-raw), 0.02); - border-left: 2px solid var(--primary); - border-right: 2px solid var(--primary); - position: relative; -} - -th.col-highlight { - background: var(--primary) !important; - color: #fff !important; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); - border-top: 2px solid var(--primary); - border-left: 2px solid var(--primary); - border-right: 2px solid var(--primary); - text-align: center; - font-weight: 800; -} - -td.col-highlight { - text-align: center; - color: var(--primary) !important; - font-weight: 700; -} - -.capability-cell { - display: flex; - align-items: center; - gap: 0.75rem; - font-weight: 600; - color: var(--text-primary); -} - -.capability-cell svg { - color: var(--text-secondary); - transition: var(--transition-fast); - flex-shrink: 0; -} - -tr:hover .capability-cell svg { - color: var(--primary); - transform: scale(1.15); -} - -.yes-badge { - display: inline-flex; - align-items: center; - gap: 0.25rem; - color: var(--primary); - font-weight: 700; - font-size: 0.85rem; -} - -.advanced-badge { - display: inline-flex; - align-items: center; - gap: 0.25rem; - background: rgba(var(--primary-raw), 0.08); - border: 1px solid var(--primary); - padding: 0.25rem 0.6rem; - border-radius: 4px; - font-size: 0.75rem; - text-transform: uppercase; - letter-spacing: 0.05em; - font-weight: 800; - color: var(--primary); -} - -.no-text { - color: var(--text-muted); -} - -.partial-text { - color: var(--text-secondary); -} - -/* Strategic Moat Panels light mode */ - - -/* --- FOOTER (LIGHT THEME) --- */ - - - -/* --- KEYFRAMES AND SYSTEM ANIMATIONS --- */ -@keyframes pulse-ring { - 0% { transform: scale(1); opacity: 0.4; } - 50% { transform: scale(2.2); opacity: 0; } - 100% { transform: scale(1); opacity: 0; } -} - -@keyframes bounce-slow { - 0%, 100% { transform: translateY(0); } - 50% { transform: translateY(5px); } -} - - -/* ========================================================================== - MANDATORY MEDIA QUERIES ("this website use in all device use mediaquery") - ========================================================================== */ - -/* --- 1. WIDESCREEN & DESKTOP (Default layout up to 1320px) --- */ -@media (max-width: 1320px) { - .container { - padding: 0 1.5rem; - } -} - -/* --- 2. NOTEBOOKS & SMALL LAPTOPS (1024px to 1200px) --- */ -@media (max-width: 1200px) { - .roadmap-grid-container { - gap: 1rem; - } - - .roadmap-col-card { - padding: 1.25rem; - min-height: 380px; - } - - .year-num { - font-size: 1.4rem; - } -} - -/* --- 3. TABLETS AND IPADS (768px to 1024px) --- */ -@media (max-width: 1024px) { - section { - padding: 4.5rem 0; - } - - /* Roadmap Hero stack adjustment */ - .roadmap-hero-section { - padding: 4rem 0; - } - - /* 4-column timeline cards collapse to 2x2 grid for tablet readability! */ - .roadmap-grid-container { - grid-template-columns: repeat(2, 1fr); - gap: 1.5rem; - } - - .roadmap-col-card { - min-height: auto; - padding: 1.5rem; - } - - /* Simulator sidebar stacks below canvas grid */ - - /* Capability matrix layout collapses to single column */ -} - -/* --- 4. LARGE PHONES & PORTRAIT TABLETS (480px to 768px) --- */ -@media (max-width: 768px) { - /* Screen Header pivots vertically to avoid overlap */ - - .vision-main-subtitle { - font-size: 1rem; - margin-bottom: 2.5rem; - } - - /* Roadmap tracking line adjustments for tight displays */ - .roadmap-track-container { - flex-direction: column; - gap: 1.25rem; - align-items: flex-start; - margin-bottom: 2rem; - } - - .timeline-horizontal-wrapper { - width: 100%; - margin: 0.5rem 0; - } - - /* Nodes stay centered above column layouts */ - .node-dots-row { - display: none; /* Hide top track nodes on pure mobile stacks for design cleanliness */ - } - - /* Side-by-side cards stack full-width for ultimate mobile legibility! */ - .roadmap-grid-container { - grid-template-columns: 1fr; - gap: 1.25rem; - } - - /* Capability Matrix table gains responsive horizontal swipe scrolls! */ - .table-wrapper { - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - - .comparison-table { - min-width: 600px; /* Forces swipe track behavior on narrow screens */ - } - -} - -/* --- 5. SMALL SMARTPHONES (Portrait, Up to 480px) --- */ -@media (max-width: 480px) { - .container { - padding: 0 1rem; - } - - .roadmap-col-card { - padding: 1.25rem; - } - - .year-num { - font-size: 1.3rem; - } - - .card-heading { - font-size: 1rem; - } - - .card-stat-pill-mini { - padding: 0.4rem 0.6rem; - font-size: 0.72rem; - } -} - -/* === public/css/all-inlined-head-styles.css === */ - -/* STYLE BLOCK 1 */ -/* Critical CSS to hide header ONLY on home page initial load/refresh */ - .is-home-page .header-hide-until-scroll:not(.header-visible-scrolled) { - opacity: 0 !important; - visibility: hidden !important; - transition: none !important; /* No transition on first load */ - } - - /* Ensure header is transparent sitewide when not sticky */ - .header-hide-until-scroll:not(.sticky-container-active) { - background-color: transparent !important; - box-shadow: none !important; - } - -/* STYLE BLOCK 2 */ -img:is([sizes=auto i]) { - contain-intrinsic-size: 3000px 1500px - } - - /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ - -/* STYLE BLOCK 3 */ - - /*# sourceURL=wp-emoji-styles-inline-css */ - -/* STYLE BLOCK 4 */ -.wp-block-button__link { - align-content: center; - box-sizing: border-box; - cursor: pointer; - display: inline-block; - height: 100%; - text-align: center; - word-break: break-word - } - - :where(.wp-block-button__link) { - border-radius: 9999px; - box-shadow: none; - padding: calc(.667em + 2px) calc(1.333em + 2px); - text-decoration: none - } - - .wp-block-button[style*=text-decoration] .wp-block-button__link { - text-decoration: inherit - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 5 */ -h1:where(.wp-block-heading).has-background, - h2:where(.wp-block-heading).has-background, - h3:where(.wp-block-heading).has-background, - h4:where(.wp-block-heading).has-background, - h5:where(.wp-block-heading).has-background, - h6:where(.wp-block-heading).has-background { - padding: 1.25em 2.375em - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 6 */ -.wp-block-image>a, - .wp-block-image>figure>a { - display: inline-block - } - - .wp-block-image img { - box-sizing: border-box; - height: auto; - max-width: 100%; - vertical-align: bottom - } - - @media not (prefers-reduced-motion) { - .wp-block-image img.hide { - visibility: hidden - } - - .wp-block-image img.show { - animation: show-content-image .4s - } - } - - .wp-block-image[style*=border-radius] img, - .wp-block-image[style*=border-radius]>a { - border-radius: inherit - } - - .wp-block-image figure { - margin: 0 - } - - @keyframes show-content-image { - 0% { - visibility: hidden - } - - 99% { - visibility: hidden - } - - to { - visibility: visible - } - } - - @keyframes turn-on-visibility { - 0% { - opacity: 0 - } - - to { - opacity: 1 - } - } - - @keyframes turn-off-visibility { - 0% { - opacity: 1; - visibility: visible - } - - 99% { - opacity: 0; - visibility: visible - } - - to { - opacity: 0; - visibility: hidden - } - } - - @keyframes lightbox-zoom-in { - 0% { - transform: translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale)) - } - - to { - transform: translate(-50%, -50%) scale(1) - } - } - - @keyframes lightbox-zoom-out { - 0% { - transform: translate(-50%, -50%) scale(1); - visibility: visible - } - - 99% { - visibility: visible - } - - to { - transform: translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale)); - visibility: hidden - } - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 7 */ -.wp-block-buttons { - box-sizing: border-box - } - - .wp-block-buttons>.wp-block-button { - display: inline-block; - margin: 0 - } - - .wp-block-buttons[style*=text-decoration] .wp-block-button, - .wp-block-buttons[style*=text-decoration] .wp-block-button__link { - text-decoration: inherit - } - - .wp-block-buttons .wp-block-button__link { - width: 100% - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 8 */ -.dm-block-group { - box-sizing: border-box - } - - :where(.dm-block-group.dm-block-group-is-layout-constrained) { - position: relative - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 9 */ - - :root :where(p.has-background) { - padding: 1.25em 2.375em - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 10 */ -.wp-block-social-links { - background: none; - box-sizing: border-box; - margin-left: 0; - padding-left: 0; - padding-right: 0; - text-indent: 0 - } - - .wp-block-social-links .wp-social-link a, - .wp-block-social-links .wp-social-link a:hover { - border-bottom: 0; - box-shadow: none; - text-decoration: none - } - - .wp-block-social-links .wp-social-link svg { - height: 1em; - width: 1em - } - - .wp-block-social-links .wp-social-link span:not(.screen-reader-text) { - font-size: .65em; - margin-left: .5em; - margin-right: .5em - } - - .wp-block-social-links { - font-size: 24px - } - - .wp-block-social-link { - border-radius: 9999px; - display: block - } - - @media not (prefers-reduced-motion) { - .wp-block-social-link { - transition: transform .1s ease - } - } - - .wp-block-social-link { - height: auto - } - - .wp-block-social-link a { - align-items: center; - display: flex; - line-height: 0 - } - - .wp-block-social-link:hover { - transform: scale(1.1) - } - - .wp-block-social-links .wp-block-social-link.wp-social-link { - display: inline-block; - margin: 0; - padding: 0 - } - - .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor, - .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg, - .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active, - .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover, - .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited { - color: currentColor; - fill: currentColor - } - - :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link { - background-color: #f0f0f0; - color: #444 - } - - :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook { - background-color: #0866ff; - color: #fff - } - - :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin { - background-color: #0d66c2; - color: #fff - } - - :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x { - background-color: #000; - color: #fff - } - - :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube { - background-color: red; - color: #fff - } - - :where(.wp-block-social-links.is-style-logos-only) .wp-social-link { - background: none - } - - :where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg { - height: 1.25em; - width: 1.25em - } - - :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook { - color: #0866ff - } - - :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin { - color: #0d66c2 - } - - :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x { - color: #000 - } - - :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube { - color: red - } - - :root :where(.wp-block-social-links .wp-social-link a) { - padding: .25em - } - - :root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) { - padding: 0 - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 11 */ -.wp-block-spacer { - clear: both - } - - /*# sourceURL=local */ - -/* STYLE BLOCK 12 */ -:root { - --wp--preset--aspect-ratio--square: 1; - --wp--preset--aspect-ratio--4-3: 4/3; - --wp--preset--aspect-ratio--3-4: 3/4; - --wp--preset--aspect-ratio--3-2: 3/2; - --wp--preset--aspect-ratio--2-3: 2/3; - --wp--preset--aspect-ratio--16-9: 16/9; - --wp--preset--aspect-ratio--9-16: 9/16; - --wp--preset--color--black: #000000; - --wp--preset--color--cyan-bluish-gray: #abb8c3; - --wp--preset--color--white: #ffffff; - --wp--preset--color--pale-pink: #f78da7; - --wp--preset--color--vivid-red: #cf2e2e; - --wp--preset--color--luminous-vivid-orange: #ff6900; - --wp--preset--color--luminous-vivid-amber: #fcb900; - --wp--preset--color--light-green-cyan: #7bdcb5; - --wp--preset--color--vivid-green-cyan: #00d084; - --wp--preset--color--pale-cyan-blue: #8ed1fc; - --wp--preset--color--vivid-cyan-blue: #0693e3; - --wp--preset--color--vivid-purple: #9b51e0; - --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%); - --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%); - --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgb(252, 185, 0) 0%, rgb(255, 105, 0) 100%); - --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgb(255, 105, 0) 0%, rgb(207, 46, 46) 100%); - --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%); - --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%); - --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%); - --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%); - --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%); - --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%); - --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%); - --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%); - --wp--preset--font-size--small: 13px; - --wp--preset--font-size--medium: 20px; - --wp--preset--font-size--large: 36px; - --wp--preset--font-size--x-large: 42px; - --wp--preset--font-family--text-font: Manrope, sans-serif; - --wp--preset--font-family--heading-font: "" Manrope", Sans-serif", sans-serif; - --wp--preset--spacing--20: 0.44rem; - --wp--preset--spacing--30: 0.67rem; - --wp--preset--spacing--40: 1rem; - --wp--preset--spacing--50: 1.5rem; - --wp--preset--spacing--60: 2.25rem; - --wp--preset--spacing--70: 3.38rem; - --wp--preset--spacing--80: 5.06rem; - --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4); - --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0); - --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0); - } - - :root { - --wp--style--global--content-size: 1340px; - --wp--style--global--wide-size: 1340px; - } - - :where(body) { - margin: 0; - } - - :where(.is-layout-flex) { - gap: 0.5em; - } - - body .is-layout-flex { - display: flex; - } - - .is-layout-flex { - flex-wrap: wrap; - align-items: center; - } - - .is-layout-flex> :is(*, div) { - margin: 0; - } - - body { - background-color: #ffffff; - color: #333333; - padding-top: 0px; - padding-right: 0px; - padding-bottom: 0px; - padding-left: 0px; - } - - h1 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 120px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h2 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 80px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h3 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 60px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h4 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 40px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h5 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 30px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h6 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 25px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - :root :where(.wp-element-button, .wp-block-button__link) { - background-color: #32373c; - border-width: 0; - color: #fff; - font-family: inherit; - font-size: inherit; - font-style: inherit; - font-weight: inherit; - letter-spacing: inherit; - line-height: inherit; - padding-top: calc(0.667em + 2px); - padding-right: calc(1.333em + 2px); - padding-bottom: calc(0.667em + 2px); - padding-left: calc(1.333em + 2px); - text-decoration: none; - text-transform: inherit; - } - - .has-white-color { - color: var(--wp--preset--color--white) !important; - } - - .has-text-font-font-family { - font-family: var(--wp--preset--font-family--text-font) !important; - } - - /*# sourceURL=global-styles-inline-css */ - -/* STYLE BLOCK 13 */ - - /*# sourceURL=woocommerce-inline-inline-css */ - -/* STYLE BLOCK 14 */ -.elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #c01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; - } - - .elementor-kit-5 p { - margin-block-end: 1.7em; - } - - - - .elementor-kit-5 h1 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h2 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h3 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h4 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h5 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h6 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 button, - .elementor-kit-5 input[type="button"], - .elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; - } - - .e-con { - --container-max-width: 1380px; - } - - .elementor-widget:not(:last-child) { - margin-block-end: 0px; - } - - .elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; - } - - @media(max-width:1200px) { - .elementor-kit-5 h1 { - font-size: 80px; - } - - .elementor-kit-5 h2 { - font-size: 60px; - } - - .elementor-kit-5 h3 { - font-size: 46px; - } - - .elementor-kit-5 h4 { - font-size: 34px; - } - - .elementor-kit-5 h5 { - font-size: 28px; - } - - .elementor-kit-5 h6 { - font-size: 22px; - } - } - - @media(max-width:840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size: 16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - .elementor-kit-5 h1 { - font-size: 60px; - } - - .elementor-kit-5 h2 { - font-size: 50px; - } - - .elementor-kit-5 h3 { - font-size: 36px; - } - - .elementor-kit-5 h4 { - font-size: 28px; - } - - .elementor-kit-5 h5 { - font-size: 24px; - } - - .elementor-kit-5 h6 { - font-size: 20px; - } - - .e-con { - --container-max-width: 1024px; - } - } - - @media(max-width:660px) { - .elementor-kit-5 h1 { - font-size: 40px; - } - - .elementor-kit-5 h2 { - font-size: 32px; - } - - .elementor-kit-5 h3 { - font-size: 28px; - } - - .elementor-kit-5 h4 { - font-size: 23px; - } - - .elementor-kit-5 h5 { - font-size: 20px; - } - - .elementor-kit-5 h6 { - font-size: 18px; - } - } - - @media(max-width:480px) { - - .e-con { - --container-max-width: 767px; - } - } - - .elementor .elementor-element.elementor-element-741f56c { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --padding-top: 32px; - --padding-bottom: 32px; - --padding-left: 32px; - --padding-right: 32px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 { - background-image: url("/images/home2-slide-1.webp"); - background-position: center; - background-repeat: no-repeat; - background-size: cover; - opacity: 1; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830:before { - content: ''; - position: absolute; - inset: 0; - background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%); - z-index: 1; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width: 88%; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content { - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - text-align: center; - position: relative; - z-index: 2; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-family: "Manrope", Sans-serif; - font-size: 80px; - line-height: 1.125em; - word-spacing: -0.03em; - color: #FFFFFF; - text-transform: uppercase; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-text { - font-size: 20px; - line-height: 1.875em; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --logico-dark-text-color: #FFFFFF; - --logico-light-text-color: #BEBEBE; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-text .text-content { - max-width: 590px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830.slide-style-standard .content-slider-item-text { - margin: 23px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 { - background-image: url("/images/home2-slide-2.webp"); - background-position: center; - background-repeat: no-repeat; - background-size: cover; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061:before { - content: ''; - position: absolute; - inset: 0; - background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 100%); - z-index: 1; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - max-width: 88%; - margin: 0 auto; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content { - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - text-align: center; - position: relative; - z-index: 2; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-family: "Manrope", Sans-serif; - font-size: 80px; - line-height: 1.125em; - word-spacing: -0.03em; - color: #FFFFFF; - text-transform: uppercase; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-text { - font-size: 20px; - line-height: 1.875em; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --logico-dark-text-color: #FFFFFF; - --logico-light-text-color: #BEBEBE; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-text .text-content { - max-width: 590px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061.slide-style-standard .content-slider-item-text { - margin: 23px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item { - height: 800px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .owl-carousel .owl-stage-outer { - border-radius: 32px 32px 32px 32px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .content-slider.nav-view-compact .owl-nav, - .elementor .elementor-element.elementor-element-6c7cbcb .content-slider.nav-view-vertical .owl-nav { - bottom: 10px; - right: 10px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer { - text-align: right; - margin-top: 0px; - margin-bottom: 31px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer .slider-pagination { - margin-right: 145px; - margin-left: 57px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .slider-progress-wrapper { - color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-9b26234 { - --display: grid; - --e-con-grid-template-columns: repeat(3, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 20px 20px; - --row-gap: 20px; - --column-gap: 20px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor .elementor-element.elementor-element-ca6bc63 { - --display: flex; - --min-height: 339px; - --justify-content: flex-end; - --align-items: flex-start; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --border-radius: 25px 25px 25px 25px; - --padding-top: 50px; - --padding-bottom: 50px; - --padding-left: 47px; - --padding-right: 45px; - } - - .elementor .elementor-element.elementor-element-ca6bc63:not(.elementor-motion-effects-element-type-background) { - background-image: linear-gradient(to right, #00000080, #00000010), url("/images/home2-banner-1.webp"); - background-position: center center; - background-repeat: no-repeat; - background-size: cover; - } - - .elementor .elementor-element.elementor-element-cc55905 { - --divider-border-style: solid; - --divider-color: #FFFFFF80; - --divider-border-width: 1px; - } - - .elementor .elementor-element.elementor-element-cc55905 .elementor-divider-separator { - width: 100%; - } - - .elementor .elementor-element.elementor-element-cc55905 .elementor-divider { - padding-block-start: 20px; - padding-block-end: 20px; - } - - .elementor .elementor-element.elementor-element-3fb5639 { - width: var(--container-widget-width, 240px); - max-width: 240px; - --container-widget-width: 240px; - --container-widget-flex-grow: 0; - } - - .elementor .elementor-element.elementor-element-3fb5639 .logico-title { - font-size: 30px; - font-weight: 600; - line-height: 1.1667em; - letter-spacing: -0.03em; - color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-94c3ff1>.elementor-widget-container { - margin: 20px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-94c3ff1 { - --logico-default-text-color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-4c0903b { - --display: flex; - --min-height: 339px; - --justify-content: flex-end; - --align-items: flex-start; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --border-radius: 25px 25px 25px 25px; - --padding-top: 50px; - --padding-bottom: 50px; - --padding-left: 47px; - --padding-right: 45px; - } - - .elementor .elementor-element.elementor-element-4c0903b:not(.elementor-motion-effects-element-type-background) { - background-color: #1F1F1F; - } - - .elementor .elementor-element.elementor-element-c8adeeb { - --divider-border-style: solid; - --divider-color: #FFFFFF80; - --divider-border-width: 1px; - } - - .elementor .elementor-element.elementor-element-c8adeeb .elementor-divider-separator { - width: 100%; - } - - .elementor .elementor-element.elementor-element-c8adeeb .elementor-divider { - padding-block-start: 20px; - padding-block-end: 20px; - } - - .elementor .elementor-element.elementor-element-5e64d7b { - width: var(--container-widget-width, 300px); - max-width: 300px; - --container-widget-width: 300px; - --container-widget-flex-grow: 0; - } - - .elementor .elementor-element.elementor-element-5e64d7b .logico-title { - font-size: 30px; - font-weight: 600; - line-height: 1.1667em; - letter-spacing: -0.03em; - color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-20db156>.elementor-widget-container { - margin: 20px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-20db156 { - --logico-default-text-color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-f003242 { - --display: flex; - --min-height: 339px; - --justify-content: flex-end; - --align-items: flex-start; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --border-radius: 25px 25px 25px 25px; - --padding-top: 50px; - --padding-bottom: 50px; - --padding-left: 47px; - --padding-right: 45px; - } - - .elementor .elementor-element.elementor-element-f003242:not(.elementor-motion-effects-element-type-background) { - background-image: url("/images/home2-banner-3.webp"); - background-position: center center; - background-repeat: no-repeat; - background-size: cover; - } - - .elementor .elementor-element.elementor-element-d58ef3c { - --divider-border-style: solid; - --divider-color: #FFFFFF80; - --divider-border-width: 1px; - } - - .elementor .elementor-element.elementor-element-d58ef3c .elementor-divider-separator { - width: 100%; - } - - .elementor .elementor-element.elementor-element-d58ef3c .elementor-divider { - padding-block-start: 20px; - padding-block-end: 20px; - } - - .elementor .elementor-element.elementor-element-d00253e { - width: var(--container-widget-width, 380px); - max-width: 380px; - --container-widget-width: 380px; - --container-widget-flex-grow: 0; - } - - .elementor .elementor-element.elementor-element-d00253e .logico-title { - font-size: 30px; - font-weight: 600; - line-height: 1.1667em; - letter-spacing: -0.03em; - color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-3481e66>.elementor-widget-container { - margin: 20px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-3481e66 { - --logico-default-text-color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-30fd9d1 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 75px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-03db5d7 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor .elementor-element.elementor-element-3fe4ca3 .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; - color: #111111; - } - - .elementor .elementor-element.elementor-element-ffd1f7d { - width: var(--container-widget-width, 55%); - max-width: 55%; - --container-widget-width: 55%; - --container-widget-flex-grow: 0; - } - - .elementor .elementor-element.elementor-element-ffd1f7d .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - letter-spacing: -0.03em; - } - - .elementor .elementor-element.elementor-element-e09c20e { - --display: grid; - --e-con-grid-template-columns: repeat(4, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 40px 40px; - --row-gap: 40px; - --column-gap: 40px; - --grid-auto-flow: row; - --margin-top: 85px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-81a7690>.elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; - } - - .elementor .elementor-element.elementor-element-81a7690 .elementor-icon-box-wrapper { - text-align: left; - } - - .elementor .elementor-element.elementor-element-81a7690 { - --icon-box-icon-margin: 100px; - } - - - .elementor .elementor-element.elementor-element-81a7690.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; - } - - .elementor .elementor-element.elementor-element-81a7690 .elementor-icon { - font-size: 61px; - } - - .elementor .elementor-element.elementor-element-81a7690 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-81a7690 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; - } - - .elementor .elementor-element.elementor-element-81a7690 .elementor-icon-box-title { - color: #111111; - } - - .elementor .elementor-element.elementor-element-0f4aa27>.elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; - } - - .elementor .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-wrapper { - text-align: left; - } - - .elementor .elementor-element.elementor-element-0f4aa27 { - --icon-box-icon-margin: 120px; - } - - - .elementor .elementor-element.elementor-element-0f4aa27.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; - } - - .elementor .elementor-element.elementor-element-0f4aa27 .elementor-icon { - font-size: 61px; - } - - .elementor .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; - } - - .elementor .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title { - color: #111111; - } - - .elementor .elementor-element.elementor-element-6cfd203>.elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; - } - - .elementor .elementor-element.elementor-element-6cfd203 .elementor-icon-box-wrapper { - text-align: left; - } - - .elementor .elementor-element.elementor-element-6cfd203 { - --icon-box-icon-margin: 120px; - } - - - .elementor .elementor-element.elementor-element-6cfd203.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; - } - - .elementor .elementor-element.elementor-element-6cfd203 .elementor-icon { - font-size: 61px; - } - - .elementor .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; - } - - .elementor .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title { - color: #111111; - } - - .elementor .elementor-element.elementor-element-0d343e1>.elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; - } - - .elementor .elementor-element.elementor-element-0d343e1 .elementor-icon-box-wrapper { - text-align: left; - } - - .elementor .elementor-element.elementor-element-0d343e1 { - --icon-box-icon-margin: 120px; - } - - - .elementor .elementor-element.elementor-element-0d343e1.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; - } - - .elementor .elementor-element.elementor-element-0d343e1 .elementor-icon { - font-size: 61px; - } - - .elementor .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; - } - - .elementor .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title { - color: #111111; - } - - .elementor .elementor-element.elementor-element-b62c0b3 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 100px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-592e9e8 { - --display: flex; - } - - .elementor .elementor-element.elementor-element-ab41b28 .ticker .ticker-text { - font-family: "Manrope", Sans-serif; - text-transform: none; - } - - .elementor .elementor-element.elementor-element-89a0ca1 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - - - - - - .elementor .elementor-element.elementor-element-99768ba { - text-align: right; - } - - - - - .elementor .elementor-element.elementor-element-0136e6e>.elementor-widget-container { - margin: 0px 0px 0px 0px; - padding: 0px 0px 13px 0px; - border-style: solid; - border-width: 0px 0px 1px 0px; - border-color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-0136e6e .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; - color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-7500280>.elementor-widget-container { - margin: 66px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-7500280 .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - letter-spacing: -0.03em; - } - - .elementor .elementor-element.elementor-element-4cc07a7>.elementor-widget-container { - margin: 25px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-4cc07a7 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - } - - .elementor .elementor-element.elementor-element-165dfa5 { - width: var(--container-widget-width, 619px); - max-width: 619px; - --container-widget-width: 619px; - --container-widget-flex-grow: 0; - } - - .elementor .elementor-element.elementor-element-165dfa5>.elementor-widget-container { - margin: 8px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-da9d310>.elementor-widget-container { - margin: 24px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-da9d310 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - } - - .elementor .elementor-element.elementor-element-3888a1e { - width: var(--container-widget-width, 526px); - max-width: 526px; - --container-widget-width: 526px; - --container-widget-flex-grow: 0; - } - - .elementor .elementor-element.elementor-element-3888a1e>.elementor-widget-container { - margin: 8px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-c0a45e4>.elementor-widget-container { - margin: 40px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-0efc59e { - width: auto; - max-width: auto; - top: 0px; - } - - body:not(.rtl) .elementor .elementor-element.elementor-element-0efc59e { - right: 0px; - } - - .elementor .elementor-element.elementor-element-0efc59e .block-decoration, - .elementor .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 108px; - } - - .elementor .elementor-element.elementor-element-0efc59e .block-decoration { - text-align: right; - } - - .elementor .elementor-element.elementor-element-0efc59e .block-decoration.block-decoration-style-1 .block-decoration-item:before { - background-color: #1F1F1F; - } - - .elementor .elementor-element.elementor-element-0efc59e .block-decoration.block-decoration-style-1 .block-decoration-item:after { - background-color: #c01227 - } - - .elementor .elementor-element.elementor-element-88745f4 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-343b363 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor .elementor-element.elementor-element-7afb238>.elementor-widget-container { - margin: 0px 0px 50px 0px; - padding: 0px 0px 14px 0px; - border-style: solid; - border-width: 0px 0px 1px 0px; - } - - .elementor .elementor-element.elementor-element-7afb238 .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; - } - - .elementor .elementor-element.elementor-element-1cc335a .logico-title { - font-family: "Manrope Alt", Sans-serif; - font-size: 180px; - font-weight: 700; - line-height: 1em; - letter-spacing: -0.03em; - color: #FFFFFF00; - -webkit-text-stroke-width: 2px; - stroke-width: 2px; - -webkit-text-stroke-color: #c01227; - stroke: #c01227; - } - - .elementor .elementor-element.elementor-element-4c3e632 { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --margin-top: 76px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-5ba6bbf { - --display: flex; - } - - .elementor .elementor-element.elementor-element-9363070 .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - letter-spacing: -0.03em; - } - - .elementor .elementor-element.elementor-element-e7609a5 { - --display: flex; - } - - - - .elementor .elementor-element.elementor-element-2d7c3ee { - --display: grid; - --e-con-grid-template-columns: repeat(4, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 60px 40px; - --row-gap: 60px; - --column-gap: 40px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor .elementor-element.elementor-element-d11b050 { - --display: flex; - } - - .elementor .elementor-element.elementor-element-3a6f50f>.elementor-widget-container { - margin: 0px 0px 30px -9px; - } - - .elementor .elementor-element.elementor-element-3a6f50f .elementor-icon-wrapper { - text-align: left; - } - - - .elementor .elementor-element.elementor-element-3a6f50f.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; - } - - - .elementor .elementor-element.elementor-element-3a6f50f.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; - } - - .elementor .elementor-element.elementor-element-3a6f50f .elementor-icon { - font-size: 70px; - } - - .elementor .elementor-element.elementor-element-3a6f50f .elementor-icon svg { - height: 70px; - } - - .elementor .elementor-element.elementor-element-1025248>.elementor-widget-container { - margin: 19px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-1025248 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; - } - - .elementor .elementor-element.elementor-element-c7c19bd>.elementor-widget-container { - margin: 14px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-2c82e54 { - --display: flex; - } - - .elementor .elementor-element.elementor-element-f51735e>.elementor-widget-container { - margin: 0px 0px 27px 0px; - } - - .elementor .elementor-element.elementor-element-f51735e .elementor-icon-wrapper { - text-align: left; - } - - - .elementor .elementor-element.elementor-element-f51735e.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; - } - - - .elementor .elementor-element.elementor-element-f51735e.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; - } - - .elementor .elementor-element.elementor-element-f51735e .elementor-icon { - font-size: 61px; - } - - .elementor .elementor-element.elementor-element-f51735e .elementor-icon svg { - height: 61px; - } - - .elementor .elementor-element.elementor-element-c682633>.elementor-widget-container { - margin: 19px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-c682633 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; - } - - .elementor .elementor-element.elementor-element-74d14e3>.elementor-widget-container { - margin: 14px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-08b9b20 { - --display: flex; - } - - .elementor .elementor-element.elementor-element-612c459>.elementor-widget-container { - margin: 8px 0px 24px 0px; - } - - .elementor .elementor-element.elementor-element-612c459 .elementor-icon-wrapper { - text-align: left; - } - - - .elementor .elementor-element.elementor-element-612c459.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; - } - - - .elementor .elementor-element.elementor-element-612c459.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; - } - - .elementor .elementor-element.elementor-element-612c459 .elementor-icon { - font-size: 68px; - } - - .elementor .elementor-element.elementor-element-612c459 .elementor-icon svg { - height: 68px; - } - - .elementor .elementor-element.elementor-element-aa49275>.elementor-widget-container { - margin: 19px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-aa49275 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; - } - - .elementor .elementor-element.elementor-element-74cfdf7>.elementor-widget-container { - margin: 14px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-04989ee { - --display: flex; - } - - .elementor .elementor-element.elementor-element-11a657e>.elementor-widget-container { - margin: 0px 0px 27px 0px; - } - - .elementor .elementor-element.elementor-element-11a657e .elementor-icon-wrapper { - text-align: left; - } - - - .elementor .elementor-element.elementor-element-11a657e.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; - } - - - .elementor .elementor-element.elementor-element-11a657e.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; - } - - .elementor .elementor-element.elementor-element-11a657e .elementor-icon { - font-size: 49px; - } - - .elementor .elementor-element.elementor-element-11a657e .elementor-icon svg { - height: 49px; - } - - .elementor .elementor-element.elementor-element-b317d31>.elementor-widget-container { - margin: 19px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-b317d31 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; - } - - .elementor .elementor-element.elementor-element-8fe5662>.elementor-widget-container { - margin: 14px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-1632aa3 .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; - } - - .elementor .elementor-element.elementor-element-1632aa3 .owl-dots .owl-dot.active span { - border-color: #c01227; - } - - .elementor .elementor-element.elementor-element-7e719d0 .owl-dots .owl-dot:not(.active) span { - border-color: #D4D4D4; - } - - .elementor .elementor-element.elementor-element-7e719d0 .owl-dots .owl-dot.active span { - border-color: #1F1F1F; - } - - @media(max-width:1200px) { - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width: 70%; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-size: 46px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - margin: 110px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-size: 46px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer { - margin-top: 0px; - margin-bottom: 9px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer .slider-pagination { - margin-right: 80px; - margin-left: 30px; - } - - .elementor .elementor-element.elementor-element-9b26234 { - --grid-auto-flow: row; - } - - .elementor .elementor-element.elementor-element-03db5d7 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor .elementor-element.elementor-element-ffd1f7d { - --container-widget-width: 65%; - --container-widget-flex-grow: 0; - width: var(--container-widget-width, 65%); - max-width: 65%; - } - - .elementor .elementor-element.elementor-element-e09c20e { - --grid-auto-flow: row; - } - - .elementor .elementor-element.elementor-element-99768ba>.elementor-widget-container { - margin: 0px 0px 0px 0px; - } - - - .elementor .elementor-element.elementor-element-7500280>.elementor-widget-container { - padding: 0% 0% 0% 0%; - } - - .elementor .elementor-element.elementor-element-0efc59e .block-decoration, - .elementor .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 97px; - } - - .elementor .elementor-element.elementor-element-343b363 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor .elementor-element.elementor-element-9363070>.elementor-widget-container { - padding: 0% 0% 0% 0%; - } - - .elementor .elementor-element.elementor-element-2d7c3ee { - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - } - - @media(max-width:1020px) { - .elementor .elementor-element.elementor-element-741f56c { - --padding-top: 10px; - --padding-bottom: 10px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width: 85%; - } - - .elementor .elementor-element.elementor-element-9b26234 { - --e-con-grid-template-columns: repeat(1, 1fr); - --gap: 10px 20px; - --row-gap: 10px; - --column-gap: 20px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor .elementor-element.elementor-element-30fd9d1 { - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-ffd1f7d { - --container-widget-width: 80%; - --container-widget-flex-grow: 0; - width: var(--container-widget-width, 80%); - max-width: 80%; - } - - .elementor .elementor-element.elementor-element-e09c20e { - --gap: 40px 20px; - --row-gap: 40px; - --column-gap: 20px; - --grid-auto-flow: row; - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-81a7690>.elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor .elementor-element.elementor-element-81a7690 { - --icon-box-icon-margin: 80px; - } - - .elementor .elementor-element.elementor-element-81a7690 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-81a7690 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor .elementor-element.elementor-element-0f4aa27>.elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor .elementor-element.elementor-element-0f4aa27 { - --icon-box-icon-margin: 80px; - } - - .elementor .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor .elementor-element.elementor-element-6cfd203>.elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor .elementor-element.elementor-element-6cfd203 { - --icon-box-icon-margin: 80px; - } - - .elementor .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor .elementor-element.elementor-element-0d343e1>.elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor .elementor-element.elementor-element-0d343e1 { - --icon-box-icon-margin: 80px; - } - - .elementor .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title, - .elementor .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor .elementor-element.elementor-element-b62c0b3 { - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-89a0ca1 { - --margin-top: 120px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 10px; - --padding-right: 10px; - } - - - - .elementor .elementor-element.elementor-element-0136e6e>.elementor-widget-container { - margin: 0px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-7500280>.elementor-widget-container { - margin: 50px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-88745f4 { - --margin-top: 120px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-7afb238>.elementor-widget-container { - margin: 0px 0px 50px 0px; - } - - .elementor .elementor-element.elementor-element-1cc335a .logico-title { - font-size: 120px; - } - - .elementor .elementor-element.elementor-element-2d7c3ee { - --e-con-grid-template-columns: repeat(2, 1fr); - --grid-auto-flow: row; - } - } - - @media(max-width:840px) { - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - margin: 0px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-size: 36px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - margin: 60px 0px 0px 0px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-size: 36px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item { - height: 600px; - } - - .elementor .elementor-element.elementor-element-9b26234 { - --grid-auto-flow: row; - } - - .elementor .elementor-element.elementor-element-e09c20e { - --e-con-grid-template-columns: repeat(2, 1fr); - --gap: 60px 20px; - --row-gap: 60px; - --column-gap: 20px; - --grid-auto-flow: row; - } - - - - .elementor .elementor-element.elementor-element-0efc59e .block-decoration, - .elementor .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 70px; - } - - .elementor .elementor-element.elementor-element-4c3e632 { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } - - .elementor .elementor-element.elementor-element-e7609a5 { - --margin-top: 30px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-2d7c3ee { - --grid-auto-flow: row; - } - } - - @media(max-width:660px) { - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-size: 28px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - max-width: 70%; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-size: 28px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer { - margin-top: 0px; - margin-bottom: 9px; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .slider-footer .slider-pagination { - margin-right: 80px; - margin-left: 20px; - } - - .elementor .elementor-element.elementor-element-9b26234 { - --grid-auto-flow: row; - } - - .elementor .elementor-element.elementor-element-30fd9d1 { - --margin-top: 45px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-03db5d7 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor .elementor-element.elementor-element-ffd1f7d { - --container-widget-width: 100%; - --container-widget-flex-grow: 0; - width: var(--container-widget-width, 100%); - max-width: 100%; - } - - .elementor .elementor-element.elementor-element-e09c20e { - --grid-auto-flow: row; - } - - .elementor .elementor-element.elementor-element-b62c0b3 { - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-89a0ca1 { - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-0efc59e .block-decoration, - .elementor .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 50px; - } - - .elementor .elementor-element.elementor-element-88745f4 { - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-343b363 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor .elementor-element.elementor-element-1cc335a .logico-title { - font-size: 80px; - } - - .elementor .elementor-element.elementor-element-e7609a5 { - --margin-top: 30px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor .elementor-element.elementor-element-2d7c3ee { - --gap: 60px 20px; - --row-gap: 60px; - --column-gap: 20px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - } - - @media(max-width:480px) { - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width: 100%; - } - - .elementor .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - max-width: 100%; - } - - .elementor .elementor-element.elementor-element-9b26234 { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } - - .elementor .elementor-element.elementor-element-e09c20e { - --e-con-grid-template-columns: repeat(1, 1fr); - --gap: 40px 20px; - --row-gap: 40px; - --column-gap: 20px; - --grid-auto-flow: row; - } - - .elementor .elementor-element.elementor-element-81a7690>.elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor .elementor-element.elementor-element-0f4aa27>.elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor .elementor-element.elementor-element-6cfd203>.elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor .elementor-element.elementor-element-0d343e1>.elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor .elementor-element.elementor-element-1cc335a .logico-title { - font-size: 56px; - } - - .elementor .elementor-element.elementor-element-2d7c3ee { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } - } - - .elementor-5180 .elementor-element.elementor-element-466de1b { - --display: flex; - --position: absolute; - --flex-direction: row; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --align-items: center; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --padding-top: 10px; - --padding-bottom: 0px; - --padding-left: 40px; - --padding-right: 40px; - - - top: 10px; - --z-index: 99; - - - /* --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --flex-wrap: nowrap; - --border-radius: 25px 25px 25px 25px; - --z-index: 1; */ - } - - body:not(.rtl) .elementor-5180 .elementor-element.elementor-element-466de1b { - left: 0px; - - } - - .elementor-5180 .elementor-element.elementor-element-e052838 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --margin-top: 0%; - --margin-bottom: 0%; - --margin-left: 2.36%; - --margin-right: 0%; - --z-index: 2; - } - - .elementor-5180 .elementor-element.elementor-element-d681ece { - --display: flex; - --flex-direction: row; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --justify-content: space-around; - --align-items: stretch; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --flex-wrap: nowrap; - --z-index: 2; - } - - .elementor-5180 .elementor-element.elementor-element-472172e { - --display: flex; - --flex-direction: row; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --justify-content: space-between; - --align-items: center; - --gap: 0px 20px; - --row-gap: 0px; - /* --column-gap: 20px; */ - --flex-wrap: nowrap; - --padding-top: 34px; - --padding-bottom: 34px; - --padding-left: 0px; - --padding-right: 0px; - --z-index: 2; - } - - .elementor-5180 .elementor-element.elementor-element-472172e.e-con { - --flex-grow: 1; - --flex-shrink: 0; - } - - #side-panel-2f31137:before { - background-image: url("/images/bg-slide-sidebar.webp"); - background-position: center center; - background-repeat: no-repeat; - background-size: cover; - } - - .elementor-5180 .elementor-element.elementor-element-2f31137.elementor-element { - --flex-grow: 0; - --flex-shrink: 1; - } - - .elementor-5180 .elementor-element.elementor-element-2f31137 .dropdown-trigger-icon { - color: #ffffff; - } - - .elementor-5180 .elementor-element.elementor-element-2f31137 .dropdown-trigger-icon:hover { - color: #ffffff; - } - - #side-panel-2f31137 .slide-sidebar { - padding: 137px 60px 60px 60px !important; - } - - #side-panel-2f31137 { - --logico-default-text-color: #ffffff; - --logico-dark-text-color: #ffffff; - --logico-light-text-color: #bebebe; - --logico-accent-color: #C01227; - --logico-accent-alter-color: #C01227; - --logico-border-color: #cbcbcb; - --logico-border-hover-color: #ffffff; - --logico-background-color: #1f1f1f; - --logico-background-alter-color: #1f1f1f; - --logico-button-text-color: #ffffff; - --logico-button-border-color: #C01227; - --logico-button-background-color: rgba(255, 255, 255, 0); - --logico-button-icon-color: #1f1f1f; - --logico-button-text-hover: #FFFFFF; - --logico-button-border-hover: #C01227; - --logico-button-background-hover: #C01227; - --logico-button-icon-hover: #FFFFFF; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .hfe-site-logo-container { - text-align: left; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .hfe-site-logo .hfe-site-logo-container img { - /* width: 153px; */ - margin-left: 30px; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d.elementor-element { - --flex-grow: 0; - --flex-shrink: 0; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .hfe-site-logo-container .hfe-site-logo-img { - border-style: none; - } - - .elementor-5180 .elementor-element.elementor-element-e44ee7e { - --display: flex; - --flex-direction: row; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --justify-content: center; - --align-items: center; - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 0px; - --padding-right: 0px; - --z-index: 1; - } - - .elementor-5180 .elementor-element.elementor-element-e44ee7e.e-con { - --flex-grow: 0; - --flex-shrink: 1; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f { - width: auto; - max-width: auto; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f>.elementor-widget-container { - background-color: #ededed30; - padding: 0px 50px 0px 50px; - border-radius: 25px 25px 25px 25px; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container nav { - text-align: center; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .menu-trigger { - text-align: right; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li>a { - padding: 22px 0px 23px 0px; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li>a:before { - background-color: #FFFFFF; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li>a, - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li.menu-item-has-children>a:after { - color: #FFFFFF; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li.current-menu-ancestor>a, - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li.current-menu-item>a:not([href *="/#"]), - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li.active>a, - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .header-menu-container .main-menu>li:hover>a { - color: #BFBFBF; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .menu-trigger .hamburger span { - background-color: #FFFFFF; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f .menu-trigger:hover .hamburger span { - background-color: #BFBFBF; - } - - #mobile-header-0b7bf6f.mobile-header-menu-container { - --logico-border-color: #D9D9D9; - --logico-button-border-color: #c01227; - --logico-button-icon-color: #333333; - --logico-button-text-hover: #FFFFFF; - --logico-button-border-hover: #C01227; - --logico-button-background-hover: #C01227; - --logico-button-icon-hover: #FFFFFF; - } - - .elementor-5180 .elementor-element.elementor-element-f961133 { - --display: flex; - --align-items: flex-end; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --margin-top: 0%; - --margin-bottom: 0%; - --margin-left: 3%; - --margin-right: 3%; - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 0px; - --padding-right: 0px; - --z-index: 1; - } - - .elementor-5180 .elementor-element.elementor-element-f961133.e-con { - --flex-grow: 1; - --flex-shrink: 0; - } - - .elementor-5180 .elementor-element.elementor-element-cabdb09 .header-button-container { - text-align: right; - } - - .elementor-5180 .elementor-element.elementor-element-cabdb09 a.header-button { - min-width: 200px; - color: #FFFFFF; - background-color: #C01227; - } - - .elementor-5180 .elementor-element.elementor-element-cabdb09 a.header-button.header-button-animation-fade { - min-height: 70px; - } - - .elementor-5180 .elementor-element.elementor-element-cabdb09 a.header-button:hover { - background-color: #c01227A7; - } - - @media(min-width:481px) { - .elementor-5180 .elementor-element.elementor-element-472172e { - --width: clamp(192px, 15vw, 15%); - } - - .elementor-5180 .elementor-element.elementor-element-f961133 { - --width: auto; - } - } - - @media(max-width:1200px) { - .elementor-5180 .elementor-element.elementor-element-e052838 { - --margin-top: 0px; - --margin-bottom: 0px; - --margin-left: 30px; - --margin-right: 30px; - } - - .elementor-5180 .elementor-element.elementor-element-472172e { - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 0px; - --padding-right: 0px; - --z-index: 1; - } - - .elementor-5180 .elementor-element.elementor-element-846e53d .hfe-site-logo-container { - text-align: left; - } - - .elementor-5180 .elementor-element.elementor-element-e44ee7e { - --justify-content: flex-end; - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f>.elementor-widget-container { - padding: 10px 10px 10px 10px; - border-radius: 15px 15px 15px 15px; - } - - .elementor-5180 .elementor-element.elementor-element-0b7bf6f { - z-index: 2; - } - } - - @media(max-width:1020px) { - .elementor-5180 .elementor-element.elementor-element-466de1b { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 10px; - --padding-right: 10px; - top: 20px; - } - - .elementor-5180 .elementor-element.elementor-element-472172e { - --padding-top: 10px; - --padding-bottom: 10px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-5180 .elementor-element.elementor-element-e44ee7e { - --padding-top: 10px; - --padding-bottom: 10px; - --padding-left: 0px; - --padding-right: 0px; - } - } - - @media(max-width:660px) { - .elementor-5180 .elementor-element.elementor-element-e052838 { - --margin-top: 0px; - --margin-bottom: 0px; - --margin-left: 20px; - --margin-right: 20px; - } - - .elementor-5180 .elementor-element.elementor-element-d681ece { - --flex-wrap: nowrap; - } - - .elementor-5180 .elementor-element.elementor-element-e44ee7e.e-con { - --flex-grow: 0; - --flex-shrink: 1; - } - } - - @media(max-width:480px) { - .elementor-5180 .elementor-element.elementor-element-d681ece { - --flex-wrap: nowrap; - } - - .elementor-5180 .elementor-element.elementor-element-472172e { - --width: auto; - } - - .elementor-5180 .elementor-element.elementor-element-472172e.e-con { - --flex-grow: 1; - --flex-shrink: 0; - } - } - - /*# sourceURL=elementor-frontend-inline-css */ - -/* STYLE BLOCK 15 */ -@font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Bold.ttf') format('truetype'); - font-weight: bold; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-ExtraBold.ttf') format('truetype'); - font-weight: 800; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-ExtraLight.ttf') format('truetype'); - font-weight: 200; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Light.ttf') format('truetype'); - font-weight: 300; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Medium.ttf') format('truetype'); - font-weight: 500; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Regular.ttf') format('truetype'); - font-weight: normal; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-SemiBold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; - } - - :root { - --logico-viewport-mobile: 480px; - --logico-viewport-mobile-extra: 660px; - --logico-viewport-tablet: 840px; - --logico-viewport-tablet-extra: 1020px; - --logico-viewport-laptop: 1200px; - --logico-viewport-widescreen: 2400px; - --logico-content-width: 1380px; - --logico-default-text-color: #333333; - --logico-dark-text-color: #111111; - --logico-light-text-color: #a3a3a3; - --logico-accent-color: #C01227; - --logico-accent-alter-color: #C01227; - --logico-border-color: #adadad; - --logico-border-hover-color: #111111; - --logico-background-color: #ffffff; - --logico-background-alter-color: #f9f7f6; - --logico-button-text-color: #333333; - --logico-button-border-color: #333333; - --logico-button-background-color: rgba(255, 255, 255, 0); - --logico-button-icon-color: #ffffff; - --logico-button-text-hover: #ffffff; - --logico-button-border-hover: #C01227; - --logico-button-background-hover: #C01227; - --logico-button-icon-hover: #ffffff; - --logico-body-font-size: 18px; - --logico-body-line-height: 1.6667em; - --logico-body-font-family: Manrope; - --logico-body-font-style: normal; - --logico-body-font-weight: 400; - --logico-body-text-decoration: none; - --logico-h1-font-size: 120px; - --logico-h1-line-height: 1.2em; - --logico-h1-letter-spacing: -0.03em; - --logico-h1-font-family: "Manrope", Sans-serif; - --logico-h1-text-transform: uppercase; - --logico-h1-font-style: normal; - --logico-h1-font-weight: 500; - --logico-h2-font-size: 80px; - --logico-h2-line-height: 1.2em; - --logico-h2-letter-spacing: -0.03em; - --logico-h2-font-family: "Manrope", Sans-serif; - --logico-h2-text-transform: uppercase; - --logico-h2-font-style: normal; - --logico-h2-font-weight: 500; - --logico-h3-font-size: 60px; - --logico-h3-line-height: 1.2em; - --logico-h3-letter-spacing: -0.03em; - --logico-h3-font-family: "Manrope", Sans-serif; - --logico-h3-text-transform: uppercase; - --logico-h3-font-style: normal; - --logico-h3-font-weight: 500; - --logico-h4-font-size: 40px; - --logico-h4-line-height: 1.2em; - --logico-h4-letter-spacing: -0.03em; - --logico-h4-font-family: "Manrope", Sans-serif; - --logico-h4-text-transform: uppercase; - --logico-h4-font-style: normal; - --logico-h4-font-weight: 500; - --logico-h5-font-size: 30px; - --logico-h5-line-height: 1.2em; - --logico-h5-letter-spacing: -0.03em; - --logico-h5-font-family: "Manrope", Sans-serif; - --logico-h5-text-transform: uppercase; - --logico-h5-font-style: normal; - --logico-h5-font-weight: 500; - --logico-h6-font-size: 25px; - --logico-h6-line-height: 1.2em; - --logico-h6-letter-spacing: -0.03em; - --logico-h6-font-family: "Manrope", Sans-serif; - --logico-h6-text-transform: uppercase; - --logico-h6-font-style: normal; - --logico-h6-font-weight: 500; - --logico-button-font-size: 14px; - --logico-button-font-family: Manrope; - --logico-button-font-weight: 600; - --logico-paragraph-spacing: 1.7em; - --logico-h1-font-size-laptop: 80px; - --logico-h2-font-size-laptop: 60px; - --logico-h3-font-size-laptop: 46px; - --logico-h4-font-size-laptop: 34px; - --logico-h5-font-size-laptop: 28px; - --logico-h6-font-size-laptop: 22px; - --logico-body-font-size-tablet: 16px; - --logico-h1-font-size-tablet: 60px; - --logico-h2-font-size-tablet: 50px; - --logico-h3-font-size-tablet: 36px; - --logico-h4-font-size-tablet: 28px; - --logico-h5-font-size-tablet: 24px; - --logico-h6-font-size-tablet: 20px; - --logico-h1-font-size-mobile-extra: 40px; - --logico-h2-font-size-mobile-extra: 32px; - --logico-h3-font-size-mobile-extra: 28px; - --logico-h4-font-size-mobile-extra: 23px; - --logico-h5-font-size-mobile-extra: 20px; - --logico-h6-font-size-mobile-extra: 18px; - --logico-radius-small: 10px; - --logico-radius-medium: 15px; - --logico-radius-large: 25px; - } - - - .logico-front-end { - font-size: 18px; - line-height: 1.6667em; - font-family: Manrope; - font-style: normal; - font-weight: 400; - text-decoration: none; - } - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 120px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 80px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 60px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 40px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 30px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 25px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - .logico-alter-button { - font-size: 14px; - font-family: Manrope; - font-weight: 600; - } - - - .logico-front-end p { - margin-bottom: 1.7em; - } - - @media only screen and (max-width: 1200px) { - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 80px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 60px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 46px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 34px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 22px; - } - } - - @media only screen and (max-width: 840px) { - - - .logico-front-end { - font-size: 16px; - } - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 60px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 50px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 36px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 24px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 20px; - } - } - - @media only screen and (max-width: 660px) { - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 40px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 32px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 23px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 20px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 18px; - } - } - - /*# sourceURL=logico-theme-inline-css */ - -/* STYLE BLOCK 16 */ - -/* STYLE BLOCK 17 */ - -/* STYLE BLOCK 18 */ - -/* STYLE BLOCK 19 */ -/* make carousel arrows turn white when hovered */ - .owl-carousel.owl-theme .owl-nav [class*="owl-"]:not(.disabled):hover { - color: #fff !important; - } - - /* always show footer scroll-top arrow white */ - .footer-scroll-top { - color: #fff !important; - } - - .footer-scroll-top:hover { - color: #fff !important; - } - -/* STYLE BLOCK 20 */ -.elementor-104 .elementor-element.elementor-element-c70681e { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 0px; - --margin-bottom: 150px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-104 .elementor-element.elementor-element-3dec5cf { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - @media(max-width:1200px) { - .elementor-104 .elementor-element.elementor-element-3dec5cf { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - } - - @media(max-width:1020px) { - .elementor-104 .elementor-element.elementor-element-c70681e { - --margin-top: 0px; - --margin-bottom: 120px; - --margin-left: 0px; - --margin-right: 0px; - } - } - - @media(max-width:660px) { - .elementor-104 .elementor-element.elementor-element-c70681e { - --margin-top: 0px; - --margin-bottom: 90px; - --margin-left: 0px; - --margin-right: 0px; - } - .elementor-104 .elementor-element.elementor-element-3dec5cf { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - } - -/* STYLE BLOCK 21 */ - -/* STYLE BLOCK 22 */ - -/* STYLE BLOCK 23 */ - -/* STYLE BLOCK 24 */ - - .elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #c01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; - } - - - .elementor-kit-5 p { - margin-block-end: 1.7em; - } - - - /* .elementor-kit-5 a { - color: #c01227; - text-decoration: underline; - } */ - - - .elementor-kit-5 h1 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - - .elementor-kit-5 h2 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - - .elementor-kit-5 h3 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - - .elementor-kit-5 h4 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - - .elementor-kit-5 h5 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - - .elementor-kit-5 h6 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - - .elementor-kit-5 button, - .elementor-kit-5 input[type="button"], - .elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; - } - - - .e-con { - --container-max-width: 1380px; - } - - - .elementor-widget:not(:last-child) { - margin-block-end: 0px; - } - - - .elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; - } - - - @media(max-width: 1200px) { - .elementor-kit-5 h1 { - font-size: 80px; - } - - - .elementor-kit-5 h2 { - font-size: 60px; - } - - - .elementor-kit-5 h3 { - font-size: 46px; - } - - - .elementor-kit-5 h4 { - font-size: 34px; - } - - - .elementor-kit-5 h5 { - font-size: 28px; - } - - - .elementor-kit-5 h6 { - font-size: 22px; - } - } - - - @media(max-width: 840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size: 16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - - .elementor-kit-5 h1 { - font-size: 60px; - } - - - .elementor-kit-5 h2 { - font-size: 50px; - } - - - .elementor-kit-5 h3 { - font-size: 36px; - } - - - .elementor-kit-5 h4 { - font-size: 28px; - } - - - .elementor-kit-5 h5 { - font-size: 24px; - } - - - .elementor-kit-5 h6 { - font-size: 20px; - } - - - .e-con { - --container-max-width: 1024px; - } - } - - - @media(max-width: 660px) { - .elementor-kit-5 h1 { - font-size: 40px; - } - - - .elementor-kit-5 h2 { - font-size: 32px; - } - - - .elementor-kit-5 h3 { - font-size: 28px; - } - - - .elementor-kit-5 h4 { - font-size: 23px; - } - - - .elementor-kit-5 h5 { - font-size: 20px; - } - - - .elementor-kit-5 h6 { - font-size: 18px; - } - } - -/* STYLE BLOCK 25 */ -.elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #c01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; - } - - .elementor-kit-5 p { - margin-block-end: 1.7em; - } - - /* .elementor-kit-5 a { - color: #c01227; - text-decoration: underline; - } */ - - .elementor-kit-5 h1 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h2 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h3 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h4 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h5 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h6 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 button, - .elementor-kit-5 input[type="button"], - .elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; - } - - .e-con { - --container-max-width: 1380px; - } - - .elementor-widget:not(:last-child) { - margin-block-end: 0px; - } - - .elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; - } - - @media(max-width: 1200px) { - .elementor-kit-5 h1 { - font-size: 80px; - } - - .elementor-kit-5 h2 { - font-size: 60px; - } - - .elementor-kit-5 h3 { - font-size: 46px; - } - - .elementor-kit-5 h4 { - font-size: 34px; - } - - .elementor-kit-5 h5 { - font-size: 28px; - } - - .elementor-kit-5 h6 { - font-size: 22px; - } - } - - @media(max-width: 840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size: 16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - .elementor-kit-5 h1 { - font-size: 60px; - } - - .elementor-kit-5 h2 { - font-size: 50px; - } - - .elementor-kit-5 h3 { - font-size: 36px; - } - - .elementor-kit-5 h4 { - font-size: 28px; - } - - .elementor-kit-5 h5 { - font-size: 24px; - } - - .elementor-kit-5 h6 { - font-size: 20px; - } - - .e-con { - --container-max-width: 1024px; - } - } - - @media(max-width: 660px) { - .elementor-kit-5 h1 { - font-size: 40px; - } - - .elementor-kit-5 h2 { - font-size: 32px; - } - - .elementor-kit-5 h3 { - font-size: 28px; - } - - .elementor-kit-5 h4 { - font-size: 23px; - } - - .elementor-kit-5 h5 { - font-size: 20px; - } - - .elementor-kit-5 h6 { - font-size: 18px; - } - } - - @media(max-width: 480px) { - - .e-con { - --container-max-width: 767px; - } - } - - - .elementor-61 .elementor-element.elementor-element-741f56c { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 { - background-image: url("/images/home2-slide-1.webp"); - background-position: bottom center; - background-repeat: no-repeat; - background-size: cover; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830:before { - background-color: #9C55551A; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width: 88%; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content { - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - text-align: center; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-family: "Manrope", Sans-serif; - font-size: 80px; - line-height: 1.125em; - word-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-text { - font-size: 16px; - line-height: 1.875em; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --logico-dark-text-color: #FFFFFF; - --logico-light-text-color: #BEBEBE; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-text .text-content { - max-width: 590px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830.slide-style-standard .content-slider-item-text { - margin: 23px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 { - background-image: url("/images/home2-slide-2.webp"); - background-position: bottom center; - background-repeat: no-repeat; - background-size: cover; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - max-width: 88%; - margin: 0 auto; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content { - -webkit-align-items: center; - -moz-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; - text-align: center; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-family: "Manrope", Sans-serif; - font-size: 80px; - line-height: 1.125em; - word-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-text { - font-size: 16px; - line-height: 1.875em; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --logico-dark-text-color: #FFFFFF; - --logico-light-text-color: #BEBEBE; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-text .text-content { - max-width: 590px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061.slide-style-standard .content-slider-item-text { - margin: 23px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item { - height: 800px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .owl-carousel .owl-stage-outer { - border-radius: 25px 25px 25px 25px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .content-slider.nav-view-compact .owl-nav, .elementor-61 .elementor-element.elementor-element-6c7cbcb .content-slider.nav-view-vertical .owl-nav { - bottom: 10px; - right: 10px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .slider-footer { - text-align: right; - margin-top: 0px; - margin-bottom: 31px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .slider-footer .slider-pagination { - margin-right: 145px; - margin-left: 57px; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .slider-progress-wrapper { - color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-6c7cbcb .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-9b26234 { - --display: grid; - --e-con-grid-template-columns: repeat(3, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 20px 20px; - --row-gap: 20px; - --column-gap: 20px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-61 .elementor-element.elementor-element-ca6bc63 { - --display: flex; - --min-height: 339px; - --justify-content: flex-end; - --align-items: flex-start; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --border-radius: 25px 25px 25px 25px; - --padding-top: 50px; - --padding-bottom: 50px; - --padding-left: 47px; - --padding-right: 45px; -} - -.elementor-61 .elementor-element.elementor-element-ca6bc63:not(.elementor-motion-effects-element-type-background) { - background-image: url("/images/home2-banner-1.webp"); - background-position: center center; - background-repeat: no-repeat; - background-size: cover; -} - -.elementor-61 .elementor-element.elementor-element-cc55905 { - --divider-border-style: solid; - --divider-color: #FFFFFF80; - --divider-border-width: 1px; -} - -.elementor-61 .elementor-element.elementor-element-cc55905 .elementor-divider-separator { - width: 100%; -} - -.elementor-61 .elementor-element.elementor-element-cc55905 .elementor-divider { - padding-block-start:20px;padding-block-end:20px;} - -.elementor-61 .elementor-element.elementor-element-3fb5639 { - width: var( --container-widget-width, 240px ); - max-width: 240px; - --container-widget-width: 240px; - --container-widget-flex-grow: 0; -} - -.elementor-61 .elementor-element.elementor-element-3fb5639 .logico-title { - font-size: 30px; - font-weight: 600; - line-height: 1.1667em; - letter-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-94c3ff1 > .elementor-widget-container { - margin: 20px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-94c3ff1 { - --logico-default-text-color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-4c0903b { - --display: flex; - --min-height: 339px; - --justify-content: flex-end; - --align-items: flex-start; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --border-radius: 25px 25px 25px 25px; - --padding-top: 50px; - --padding-bottom: 50px; - --padding-left: 47px; - --padding-right: 45px; -} - -.elementor-61 .elementor-element.elementor-element-4c0903b:not(.elementor-motion-effects-element-type-background) { - background-color: #1F1F1F; -} - -.elementor-61 .elementor-element.elementor-element-c8adeeb { - --divider-border-style: solid; - --divider-color: #FFFFFF80; - --divider-border-width: 1px; -} - -.elementor-61 .elementor-element.elementor-element-c8adeeb .elementor-divider-separator { - width: 100%; -} - -.elementor-61 .elementor-element.elementor-element-c8adeeb .elementor-divider { - padding-block-start:20px;padding-block-end:20px;} - -.elementor-61 .elementor-element.elementor-element-5e64d7b { - width: var( --container-widget-width, 300px ); - max-width: 300px; - --container-widget-width: 300px; - --container-widget-flex-grow: 0; -} - -.elementor-61 .elementor-element.elementor-element-5e64d7b .logico-title { - font-size: 30px; - font-weight: 600; - line-height: 1.1667em; - letter-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-20db156 > .elementor-widget-container { - margin: 20px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-20db156 { - --logico-default-text-color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-f003242 { - --display: flex; - --min-height: 339px; - --justify-content: flex-end; - --align-items: flex-start; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --border-radius: 25px 25px 25px 25px; - --padding-top: 50px; - --padding-bottom: 50px; - --padding-left: 47px; - --padding-right: 45px; -} - -.elementor-61 .elementor-element.elementor-element-f003242:not(.elementor-motion-effects-element-type-background) { - background-image: url("/images/home2-banner-3.webp"); - background-position: center center; - background-repeat: no-repeat; - background-size: cover; -} - -.elementor-61 .elementor-element.elementor-element-d58ef3c { - --divider-border-style: solid; - --divider-color: #FFFFFF80; - --divider-border-width: 1px; -} - -.elementor-61 .elementor-element.elementor-element-d58ef3c .elementor-divider-separator { - width: 100%; -} - -.elementor-61 .elementor-element.elementor-element-d58ef3c .elementor-divider { - padding-block-start:20px;padding-block-end:20px;} - -.elementor-61 .elementor-element.elementor-element-d00253e { - width: var( --container-widget-width, 380px ); - max-width: 380px; - --container-widget-width: 380px; - --container-widget-flex-grow: 0; -} - -.elementor-61 .elementor-element.elementor-element-d00253e .logico-title { - font-size: 30px; - font-weight: 600; - line-height: 1.1667em; - letter-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-3481e66 > .elementor-widget-container { - margin: 20px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-3481e66 { - --logico-default-text-color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-30fd9d1 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 75px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-61 .elementor-element.elementor-element-03db5d7 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-61 .elementor-element.elementor-element-3fe4ca3 .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; - color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-ffd1f7d { - width: var( --container-widget-width, 55% ); - max-width: 55%; - --container-widget-width: 55%; - --container-widget-flex-grow: 0; -} - -.elementor-61 .elementor-element.elementor-element-ffd1f7d .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - letter-spacing: -0.03em; -} - -.elementor-61 .elementor-element.elementor-element-e09c20e { - --display: grid; - --e-con-grid-template-columns: repeat(4, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 40px 40px; - --row-gap: 40px; - --column-gap: 40px; - --grid-auto-flow: row; - --margin-top: 85px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-61 .elementor-element.elementor-element-81a7690 > .elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; -} - -.elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon-box-wrapper { - text-align: start; - gap: 120px; -} - - .elementor-61 .elementor-element.elementor-element-81a7690.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon { - font-size: 61px; -} - -.elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; -} - -.elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon-box-title { - color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-0f4aa27 > .elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; -} - -.elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-wrapper { - text-align: start; - gap: 120px; -} - - .elementor-61 .elementor-element.elementor-element-0f4aa27.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon { - font-size: 61px; -} - -.elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; -} - -.elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title { - color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-6cfd203 > .elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; -} - -.elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon-box-wrapper { - text-align: start; - gap: 120px; -} - - .elementor-61 .elementor-element.elementor-element-6cfd203.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon { - font-size: 61px; -} - -.elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; -} - -.elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title { - color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-0d343e1 > .elementor-widget-container { - padding: 0px 40px 0px 0px; - border-style: solid; - border-width: 0px 1px 0px 0px; - border-color: #e5e7eb; -} - -.elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon-box-wrapper { - text-align: start; - gap: 120px; -} - - .elementor-61 .elementor-element.elementor-element-0d343e1.elementor-view-default .elementor-icon { - fill: #111111; - color: #111111; - border-color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon { - font-size: 61px; -} - -.elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title a { - font-family: "Manrope", Sans-serif; - font-size: 25px; - font-weight: 600; - text-transform: none; - line-height: 1.4em; -} - -.elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title { - color: #111111; -} - -.elementor-61 .elementor-element.elementor-element-b62c0b3 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 150px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-61 .elementor-element.elementor-element-592e9e8 { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-ab41b28 .ticker .ticker-text { - font-family: "Manrope", Sans-serif; - text-transform: none; -} - -.elementor-61 .elementor-element.elementor-element-89a0ca1 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --margin-top: 150px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-61 .elementor-element.elementor-element-9ffed33 { - --display: flex; - --flex-direction: row; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --justify-content: space-between; - --align-items: center; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --border-radius: 25px 25px 25px 25px; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --logico-dark-text-color: #FFFFFF; - --logico-light-text-color: #BEBEBE; - --logico-border-color: #CBCBCB; - --logico-border-hover-color: #FFFFFF; - --logico-background-color: #1F1F1F; - --logico-background-alter-color: #1F1F1F; - --logico-button-text-color: #FFFFFF; - --logico-button-border-color: #FFFFFF; - --logico-button-background-color: #FFFFFF00; - --logico-button-icon-color: #1F1F1F; - --logico-button-text-hover: #1F1F1F; - --logico-button-border-hover: #FFFFFF; - --logico-button-background-hover: #FFFFFF; - --logico-button-icon-hover: #1F1F1F; - --padding-top: 25px; - --padding-bottom: 25px; - --padding-left: 25px; - --padding-right: 25px; -} - -.elementor-61 .elementor-element.elementor-element-9ffed33:not(.elementor-motion-effects-element-type-background) { - background-color: #1F1F1F; - background-image: url("/images/bg-map.png"); - background-position: center right; - background-repeat: no-repeat; -} - -.elementor-61 .elementor-element.elementor-element-96343ba { - --display: flex; - --justify-content: flex-end; - --align-items: flex-start; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 40px; -} - -.elementor-61 .elementor-element.elementor-element-99768ba { - text-align: end; -} - -.elementor-61 .elementor-element.elementor-element-99768ba img { - border-radius: 25px 25px 25px 25px; -} - -.elementor-61 .elementor-element.elementor-element-71c3e1d { - --display: flex; - --justify-content: center; - --align-items: flex-start; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); -} - -.elementor-61 .elementor-element.elementor-element-fdb2e58 { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-0136e6e > .elementor-widget-container { - margin: 0px 0px 0px 0px; - padding: 0px 0px 13px 0px; - border-style: solid; - border-width: 0px 0px 1px 0px; - border-color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-0136e6e .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; - color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-7500280 > .elementor-widget-container { - margin: 66px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-7500280 .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - letter-spacing: -0.03em; -} - -.elementor-61 .elementor-element.elementor-element-4cc07a7 > .elementor-widget-container { - margin: 25px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-4cc07a7 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; -} - -.elementor-61 .elementor-element.elementor-element-165dfa5 { - width: var( --container-widget-width, 619px ); - max-width: 619px; - --container-widget-width: 619px; - --container-widget-flex-grow: 0; -} - -.elementor-61 .elementor-element.elementor-element-165dfa5 > .elementor-widget-container { - margin: 8px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-da9d310 > .elementor-widget-container { - margin: 24px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-da9d310 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; -} - -.elementor-61 .elementor-element.elementor-element-3888a1e { - width: var( --container-widget-width, 526px ); - max-width: 526px; - --container-widget-width: 526px; - --container-widget-flex-grow: 0; -} - -.elementor-61 .elementor-element.elementor-element-3888a1e > .elementor-widget-container { - margin: 8px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-c0a45e4 > .elementor-widget-container { - margin: 40px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-0efc59e { - width: auto; - max-width: auto; - top: 0px; -} - -body:not(.rtl) .elementor-61 .elementor-element.elementor-element-0efc59e { - right: 0px; -} - -.elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration, .elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 108px; -} - -.elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration { - text-align: right; -} - -.elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration.block-decoration-style-1 .block-decoration-item:before { - background-color: #1F1F1F; -} - -.elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration.block-decoration-style-1 .block-decoration-item:after { - background-color: #C01227; -} - -.elementor-61 .elementor-element.elementor-element-88745f4 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 150px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-61 .elementor-element.elementor-element-343b363 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-61 .elementor-element.elementor-element-7afb238 > .elementor-widget-container { - margin: 0px 0px 50px 0px; - padding: 0px 0px 14px 0px; - border-style: solid; - border-width: 0px 0px 1px 0px; -} - -.elementor-61 .elementor-element.elementor-element-7afb238 .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; -} - -.elementor-61 .elementor-element.elementor-element-1cc335a .logico-title { - font-family: "Manrope Alt", Sans-serif; - font-size: 180px; - font-weight: 700; - line-height: 1em; - letter-spacing: -0.03em; - color: #FFFFFF00; - -webkit-text-stroke-width: 2px; - stroke-width: 2px; - -webkit-text-stroke-color: #C01227; - stroke: #C01227; -} - -.elementor-61 .elementor-element.elementor-element-4c3e632 { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --margin-top: 76px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-61 .elementor-element.elementor-element-5ba6bbf { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-9363070 .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - letter-spacing: -0.03em; -} - -.elementor-61 .elementor-element.elementor-element-e7609a5 { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-5041fcc { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 87px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-61 .elementor-element.elementor-element-2d7c3ee { - --display: grid; - --e-con-grid-template-columns: repeat(4, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 60px 40px; - --row-gap: 60px; - --column-gap: 40px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-61 .elementor-element.elementor-element-d11b050 { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-3a6f50f > .elementor-widget-container { - margin: 0px 0px 30px -9px; -} - -.elementor-61 .elementor-element.elementor-element-3a6f50f .elementor-icon-wrapper { - text-align: start; -} - - .elementor-61 .elementor-element.elementor-element-3a6f50f.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; -} - - .elementor-61 .elementor-element.elementor-element-3a6f50f.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; -} - -.elementor-61 .elementor-element.elementor-element-3a6f50f .elementor-icon { - font-size: 70px; -} - -.elementor-61 .elementor-element.elementor-element-3a6f50f .elementor-icon svg { - height: 70px; -} - -.elementor-61 .elementor-element.elementor-element-1025248 > .elementor-widget-container { - margin: 19px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-1025248 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; -} - -.elementor-61 .elementor-element.elementor-element-c7c19bd > .elementor-widget-container { - margin: 14px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-2c82e54 { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-f51735e > .elementor-widget-container { - margin: 12px 0px 27px -1px; -} - -.elementor-61 .elementor-element.elementor-element-f51735e .elementor-icon-wrapper { - text-align: start; -} - - .elementor-61 .elementor-element.elementor-element-f51735e.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; -} - - .elementor-61 .elementor-element.elementor-element-f51735e.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; -} - -.elementor-61 .elementor-element.elementor-element-f51735e .elementor-icon { - font-size: 61px; -} - -.elementor-61 .elementor-element.elementor-element-f51735e .elementor-icon svg { - height: 61px; -} - -.elementor-61 .elementor-element.elementor-element-c682633 > .elementor-widget-container { - margin: 19px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-c682633 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; -} - -.elementor-61 .elementor-element.elementor-element-74d14e3 > .elementor-widget-container { - margin: 14px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-08b9b20 { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-612c459 > .elementor-widget-container { - margin: 8px 0px 24px 0px; -} - -.elementor-61 .elementor-element.elementor-element-612c459 .elementor-icon-wrapper { - text-align: start; -} - - .elementor-61 .elementor-element.elementor-element-612c459.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; -} - - .elementor-61 .elementor-element.elementor-element-612c459.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; -} - -.elementor-61 .elementor-element.elementor-element-612c459 .elementor-icon { - font-size: 68px; -} - -.elementor-61 .elementor-element.elementor-element-612c459 .elementor-icon svg { - height: 68px; -} - -.elementor-61 .elementor-element.elementor-element-aa49275 > .elementor-widget-container { - margin: 19px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-aa49275 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; -} - -.elementor-61 .elementor-element.elementor-element-74cfdf7 > .elementor-widget-container { - margin: 14px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-04989ee { - --display: flex; -} - -.elementor-61 .elementor-element.elementor-element-11a657e > .elementor-widget-container { - margin: 18px 0px 33px -1px; -} - -.elementor-61 .elementor-element.elementor-element-11a657e .elementor-icon-wrapper { - text-align: start; -} - - .elementor-61 .elementor-element.elementor-element-11a657e.elementor-view-default .elementor-icon { - color: #A1A1A1; - border-color: #A1A1A1; -} - - .elementor-61 .elementor-element.elementor-element-11a657e.elementor-view-default .elementor-icon svg { - fill: #A1A1A1; -} - -.elementor-61 .elementor-element.elementor-element-11a657e .elementor-icon { - font-size: 49px; -} - -.elementor-61 .elementor-element.elementor-element-11a657e .elementor-icon svg { - height: 49px; -} - -.elementor-61 .elementor-element.elementor-element-b317d31 > .elementor-widget-container { - margin: 19px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-b317d31 .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #333333; -} - -.elementor-61 .elementor-element.elementor-element-8fe5662 > .elementor-widget-container { - margin: 14px 0px 0px 0px; -} - -.elementor-61 .elementor-element.elementor-element-1632aa3 .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; -} - -.elementor-61 .elementor-element.elementor-element-1632aa3 .owl-dots .owl-dot.active span { - border-color: #C01227; -} - -.elementor-61 .elementor-element.elementor-element-7e719d0 .owl-dots .owl-dot:not(.active) span { - border-color: #D4D4D4; -} - -.elementor-61 .elementor-element.elementor-element-7e719d0 .owl-dots .owl-dot.active span { - border-color: #1F1F1F; -} - -@media(min-width: 481px) { - .elementor-61 .elementor-element.elementor-element-96343ba { - --width:auto; - } - - .elementor-61 .elementor-element.elementor-element-71c3e1d { - --width: 50%; - } - - .elementor-61 .elementor-element.elementor-element-fdb2e58 { - --width: 650px; - } -} - -@media(max-width: 1200px) and (min-width:481px) { - .elementor-61 .elementor-element.elementor-element-96343ba { - --width:50%; - } - - .elementor-61 .elementor-element.elementor-element-71c3e1d { - --width: 50%; - } - - .elementor-61 .elementor-element.elementor-element-fdb2e58 { - --width: 100%; - } -} - -@media(max-width: 840px) and (min-width:481px) { - .elementor-61 .elementor-element.elementor-element-96343ba { - --width:579px; - } - - .elementor-61 .elementor-element.elementor-element-71c3e1d { - --width: 100%; - } -} - -@media(max-width: 660px) and (min-width:481px) { - .elementor-61 .elementor-element.elementor-element-96343ba { - --width:100%; - } -} - -@media(max-width: 1200px) { - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width:70%; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-size: 46px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - margin: 110px 0px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-size: 46px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .slider-footer { - margin-top: 0px; - margin-bottom: 9px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .slider-footer .slider-pagination { - margin-right: 80px; - margin-left: 30px; - } - - .elementor-61 .elementor-element.elementor-element-9b26234 { - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-03db5d7 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-61 .elementor-element.elementor-element-ffd1f7d { - --container-widget-width: 65%; - --container-widget-flex-grow: 0; - width: var( --container-widget-width, 65% ); - max-width: 65%; - } - - .elementor-61 .elementor-element.elementor-element-e09c20e { - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-99768ba > .elementor-widget-container { - margin: 0px 0px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-71c3e1d { - --padding-top: 65px; - --padding-bottom: 65px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-7500280 > .elementor-widget-container { - padding: 0% 0% 0% 0%; - } - - .elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration, .elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 97px; - } - - .elementor-61 .elementor-element.elementor-element-343b363 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-61 .elementor-element.elementor-element-9363070 > .elementor-widget-container { - padding: 0% 0% 0% 0%; - } - - .elementor-61 .elementor-element.elementor-element-2d7c3ee { - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } -} - -@media(max-width: 1020px) { - .elementor-61 .elementor-element.elementor-element-741f56c { - --padding-top:10px; - --padding-bottom: 10px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width: 85%; - } - - .elementor-61 .elementor-element.elementor-element-9b26234 { - --e-con-grid-template-columns: repeat(1, 1fr); - --gap: 10px 20px; - --row-gap: 10px; - --column-gap: 20px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor-61 .elementor-element.elementor-element-30fd9d1 { - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-ffd1f7d { - --container-widget-width: 80%; - --container-widget-flex-grow: 0; - width: var( --container-widget-width, 80% ); - max-width: 80%; - } - - .elementor-61 .elementor-element.elementor-element-e09c20e { - --gap: 40px 20px; - --row-gap: 40px; - --column-gap: 20px; - --grid-auto-flow: row; - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-81a7690 > .elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon-box-wrapper { - gap: 80px; - } - - .elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-81a7690 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor-61 .elementor-element.elementor-element-0f4aa27 > .elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-wrapper { - gap: 80px; - } - - .elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-0f4aa27 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor-61 .elementor-element.elementor-element-6cfd203 > .elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon-box-wrapper { - gap: 80px; - } - - .elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-6cfd203 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor-61 .elementor-element.elementor-element-0d343e1 > .elementor-widget-container { - padding: 0px 20px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon-box-wrapper { - gap: 80px; - } - - .elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title, .elementor-61 .elementor-element.elementor-element-0d343e1 .elementor-icon-box-title a { - font-size: 20px; - } - - .elementor-61 .elementor-element.elementor-element-b62c0b3 { - --margin-top: 120px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-89a0ca1 { - --margin-top: 120px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor-61 .elementor-element.elementor-element-96343ba.e-con { - --align-self: center; - } - - .elementor-61 .elementor-element.elementor-element-0136e6e > .elementor-widget-container { - margin: 0px 0px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-7500280 > .elementor-widget-container { - margin: 50px 0px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-88745f4 { - --margin-top: 120px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-7afb238 > .elementor-widget-container { - margin: 0px 0px 50px 0px; - } - - .elementor-61 .elementor-element.elementor-element-1cc335a .logico-title { - font-size: 120px; - } - - .elementor-61 .elementor-element.elementor-element-2d7c3ee { - --e-con-grid-template-columns: repeat(2, 1fr); - --grid-auto-flow: row; - } -} - -@media(max-width: 840px) { - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - margin:0px 0px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-size: 36px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - margin: 60px 0px 0px 0px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-size: 36px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .owl-carousel.owl-theme .content-item { - height: 600px; - } - - .elementor-61 .elementor-element.elementor-element-9b26234 { - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-e09c20e { - --e-con-grid-template-columns: repeat(2, 1fr); - --gap: 60px 20px; - --row-gap: 60px; - --column-gap: 20px; - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-9ffed33 { - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-61 .elementor-element.elementor-element-96343ba { - --align-items: flex-end; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-96343ba.e-con { - --order: 99999 /* order end hack */; - } - - .elementor-61 .elementor-element.elementor-element-71c3e1d { - --padding-top: 70px; - --padding-bottom: 50px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration, .elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 70px; - } - - .elementor-61 .elementor-element.elementor-element-4c3e632 { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } - - .elementor-61 .elementor-element.elementor-element-e7609a5 { - --margin-top: 30px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-2d7c3ee { - --grid-auto-flow: row; - } -} - -@media(max-width: 660px) { - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .content-slider-item-heading { - font-size:28px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - max-width: 70%; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .content-slider-item-heading { - font-size: 28px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .slider-footer { - margin-top: 0px; - margin-bottom: 9px; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .slider-footer .slider-pagination { - margin-right: 80px; - margin-left: 20px; - } - - .elementor-61 .elementor-element.elementor-element-9b26234 { - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-30fd9d1 { - --margin-top: 45px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-03db5d7 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-61 .elementor-element.elementor-element-ffd1f7d { - --container-widget-width: 100%; - --container-widget-flex-grow: 0; - width: var( --container-widget-width, 100% ); - max-width: 100%; - } - - .elementor-61 .elementor-element.elementor-element-e09c20e { - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-b62c0b3 { - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-89a0ca1 { - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration, .elementor-61 .elementor-element.elementor-element-0efc59e .block-decoration .block-decoration-item { - width: 50px; - } - - .elementor-61 .elementor-element.elementor-element-88745f4 { - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-343b363 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-61 .elementor-element.elementor-element-1cc335a .logico-title { - font-size: 80px; - } - - .elementor-61 .elementor-element.elementor-element-e7609a5 { - --margin-top: 30px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-61 .elementor-element.elementor-element-2d7c3ee { - --gap: 60px 20px; - --row-gap: 60px; - --column-gap: 20px; - --grid-auto-flow: row; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } -} - -@media(max-width: 480px) { - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-3264830 .slide-content-inner { - max-width:100%; - } - - .elementor-61 .elementor-element.elementor-element-6c7cbcb .elementor-repeater-item-6867061 .slide-content-inner { - max-width: 100%; - } - - .elementor-61 .elementor-element.elementor-element-9b26234 { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-e09c20e { - --e-con-grid-template-columns: repeat(1, 1fr); - --gap: 40px 20px; - --row-gap: 40px; - --column-gap: 20px; - --grid-auto-flow: row; - } - - .elementor-61 .elementor-element.elementor-element-81a7690 > .elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor-61 .elementor-element.elementor-element-0f4aa27 > .elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor-61 .elementor-element.elementor-element-6cfd203 > .elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor-61 .elementor-element.elementor-element-0d343e1 > .elementor-widget-container { - padding: 0px 0px 40px 0px; - border-width: 0px 0px 1px 0px; - } - - .elementor-61 .elementor-element.elementor-element-1cc335a .logico-title { - font-size: 56px; - } - - .elementor-61 .elementor-element.elementor-element-2d7c3ee { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } -} - - - - - - /* Container */ - .container { - max-width: 1400px; - margin: auto; - - } - - /* Section layout */ - .section { - display: grid; - grid-template-columns: 1fr 1fr; - gap: 50px; - align-items: center; - margin-left: 50px; - margin-right: 50px; - } - - /* Image */ - .image img { - width: 100%; - border-radius: 20px; - box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); - } - - /* Comparison box */ - - /* Header */ - - /* Row */ - .row { - display: grid; - grid-template-columns: 1fr 1fr; - padding: 14px 0; - border-top: 1px solid #eee; - align-items: center; - } - - .row:first-child { - border-top: none; - } - - /* Left & Right styles */ - .left { - color: #ef4444; - display: flex; - gap: 8px; - } - - .right { - color: #22c55e; - display: flex; - gap: 8px; - } - - /* Icons */ - .icon { - font-weight: bold; - } - - /* Text */ - .text { - color: #374151; - font-size: 15px; - } - - /* Labels */ - .labels { - display: grid; - grid-template-columns: 1fr 1fr; - margin-bottom: 10px; - font-weight: 600; - } - - .labels div:last-child { - text-align: right; - } - - /* Responsive */ - @media (max-width: 768px) { - .section { - grid-template-columns: 1fr; - } - - .labels div:last-child { - text-align: left; - } - - .row { - grid-template-columns: 1fr; - gap: 8px; - } - } - -/* STYLE BLOCK 26 */ -img:is([sizes=auto i]) { - contain-intrinsic-size: 3000px 1500px - } - - /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ - -/* STYLE BLOCK 27 */ - - /*# sourceURL=wp-emoji-styles-inline-css */ - -/* STYLE BLOCK 28 */ -:root { - --wp--preset--aspect-ratio--square: 1; - --wp--preset--aspect-ratio--4-3: 4/3; - --wp--preset--aspect-ratio--3-4: 3/4; - --wp--preset--aspect-ratio--3-2: 3/2; - --wp--preset--aspect-ratio--2-3: 2/3; - --wp--preset--aspect-ratio--16-9: 16/9; - --wp--preset--aspect-ratio--9-16: 9/16; - --wp--preset--color--black: #000000; - --wp--preset--color--cyan-bluish-gray: #abb8c3; - --wp--preset--color--white: #ffffff; - --wp--preset--color--pale-pink: #f78da7; - --wp--preset--color--vivid-red: #cf2e2e; - --wp--preset--color--luminous-vivid-orange: #ff6900; - --wp--preset--color--luminous-vivid-amber: #fcb900; - --wp--preset--color--light-green-cyan: #7bdcb5; - --wp--preset--color--vivid-green-cyan: #00d084; - --wp--preset--color--pale-cyan-blue: #8ed1fc; - --wp--preset--color--vivid-cyan-blue: #0693e3; - --wp--preset--color--vivid-purple: #9b51e0; - --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%); - --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%); - --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgb(252, 185, 0) 0%, rgb(255, 105, 0) 100%); - --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgb(255, 105, 0) 0%, rgb(207, 46, 46) 100%); - --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%); - --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%); - --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%); - --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%); - --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%); - --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%); - --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%); - --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%); - --wp--preset--font-size--small: 13px; - --wp--preset--font-size--medium: 20px; - --wp--preset--font-size--large: 36px; - --wp--preset--font-size--x-large: 42px; - --wp--preset--font-family--text-font: Manrope, sans-serif; - --wp--preset--font-family--heading-font: "" Manrope", Sans-serif", sans-serif; - --wp--preset--spacing--20: 0.44rem; - --wp--preset--spacing--30: 0.67rem; - --wp--preset--spacing--40: 1rem; - --wp--preset--spacing--50: 1.5rem; - --wp--preset--spacing--60: 2.25rem; - --wp--preset--spacing--70: 3.38rem; - --wp--preset--spacing--80: 5.06rem; - --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4); - --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0); - --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0); - } - - :root { - --wp--style--global--content-size: 1340px; - --wp--style--global--wide-size: 1340px; - } - - :where(body) { - margin: 0; - } - - :where(.is-layout-flex) { - gap: 0.5em; - } - - body .is-layout-flex { - display: flex; - } - - .is-layout-flex { - flex-wrap: wrap; - align-items: center; - } - - .is-layout-flex> :is(*, div) { - margin: 0; - } - - body { - background-color: #ffffff; - color: #333333; - padding-top: 0px; - padding-right: 0px; - padding-bottom: 0px; - padding-left: 0px; - } - - h1 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 120px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h2 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 80px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h3 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 60px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h4 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 40px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h5 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 30px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h6 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 25px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - :root :where(.wp-element-button, .wp-block-button__link) { - background-color: #32373c; - border-width: 0; - color: #fff; - font-family: inherit; - font-size: inherit; - font-style: inherit; - font-weight: inherit; - letter-spacing: inherit; - line-height: inherit; - padding-top: calc(0.667em + 2px); - padding-right: calc(1.333em + 2px); - padding-bottom: calc(0.667em + 2px); - padding-left: calc(1.333em + 2px); - text-decoration: none; - text-transform: inherit; - } - - .has-white-color { - color: var(--wp--preset--color--white) !important; - } - - .has-text-font-font-family { - font-family: var(--wp--preset--font-family--text-font) !important; - } - - /*# sourceURL=global-styles-inline-css */ - -/* STYLE BLOCK 29 */ - - .elementor-element.elementor-element-cbfd9b2 .owl-carousel.owl-theme .content-item { - height: 693px; - } - - .elementor-element.elementor-element-cbfd9b2 .owl-carousel .owl-stage-outer { - border-radius: 25px 25px 25px 25px; - } - - .elementor-element.elementor-element-cbfd9b2 .owl-dots .owl-dot:not(.active) span { - border-color: #D4D4D4; - } - - .elementor-element.elementor-element-cbfd9b2 .owl-dots .owl-dot.active span { - border-color: #1F1F1F; - } - - .elementor-element.elementor-element-ead59d3 { - --display: flex; - --flex-direction: row; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --align-items: center; - --margin-top: 150px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - position: relative; - } - - .elementor-element.elementor-element-f35119c { - width: var(--container-widget-width, 58%); - max-width: 58%; - --container-widget-width: 58%; - --container-widget-flex-grow: 0; - top: 0px; - text-align: start; - } - - .elementor-element.elementor-element-f35119c>.elementor-widget-container { - margin: -16px 0px 0px 0px; - } - - body:not(.rtl) .elementor-element.elementor-element-f35119c { - left: 0%; - } - - .elementor-element.elementor-element-f35119c img { - width: 1050px; - max-width: 100%; - /* display: none; */ - } - - .elementor-element.elementor-element-56ecbb3 { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --justify-content: flex-end; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-element.elementor-element-bfe8cd1 .owl-carousel { - padding: 0px 165px 0px 0px; - } - - .elementor-element.elementor-element-bfe8cd1 .portfolio-listing-wrapper.owl-carousel { - margin: 0 calc(-90px/2); - width: calc(100% + 90px); - } - - .elementor-element.elementor-element-bfe8cd1 .portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper { - padding: 0 calc(90px/2); - } - - .elementor-element.elementor-element-bfe8cd1 .owl-carousel.owl-theme .owl-nav { - left: calc(90px/2 + 30px); - right: calc(90px/2 + 30px); - } - - .elementor-element.elementor-element-bfe8cd1 .owl-carousel.owl-theme:hover .owl-nav { - left: calc(90px/2 + 20px); - right: calc(90px/2 + 20px); - } - - .elementor-element.elementor-element-bfe8cd1 .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; - } - - .elementor-element.elementor-element-bfe8cd1 .owl-dots .owl-dot.active span { - border-color: #c01227; - } - - .elementor-element.elementor-element-298c6d6 .owl-dots .owl-dot:not(.active) span { - border-color: #D4D4D4; - } - - .elementor-element.elementor-element-298c6d6 .owl-dots .owl-dot.active span { - border-color: #1F1F1F; - } - - @media(max-width: 1200px) { - - .elementor-element.elementor-element-f35119c>.elementor-widget-container { - margin: 0px 0px 0px 0px; - - } - - .elementor-element.elementor-element-56ecbb3 { - --gap: 0px 40px; - --row-gap: 0px; - --column-gap: 40px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-element.elementor-element-bfe8cd1 .portfolio-listing-wrapper.owl-carousel { - margin: 0 calc(-40px/2); - width: calc(100% + 40px); - } - - .elementor-element.elementor-element-bfe8cd1 .portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper { - padding: 0 calc(40px/2); - } - - .elementor-element.elementor-element-bfe8cd1 .owl-carousel.owl-theme .owl-nav { - left: calc(40px/2 + 30px); - right: calc(40px/2 + 30px); - } - - .elementor-element.elementor-element-bfe8cd1 .owl-carousel.owl-theme:hover .owl-nav { - left: calc(40px/2 + 20px); - right: calc(40px/2 + 20px); - } - } - - @media(max-width: 1020px) { - - .elementor-element.elementor-element-cbfd9b2 .owl-carousel.owl-theme .content-item { - height: 600px; - } - - .elementor-element.elementor-element-ead59d3 { - --margin-top: 120px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-f35119c { - --container-widget-width: 100%; - --container-widget-flex-grow: 0; - width: var(--container-widget-width, 100%); - max-width: 100%; - } - - body:not(.rtl) .elementor-element.elementor-element-f35119c { - left: 0%; - } - - .elementor-element.elementor-element-56ecbb3 { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } - } - - @media(max-width: 840px) { - - .elementor-element.elementor-element-cbfd9b2 .owl-carousel.owl-theme .content-item { - height: 600px; - } - - .elementor-element.elementor-element-ead59d3 { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } - - .elementor-element.elementor-element-f35119c { - text-align: center; - } - } - - @media(max-width: 660px) { - - .elementor-element.elementor-element-cbfd9b2 .owl-carousel.owl-theme .content-item { - height: 540px; - } - - .elementor-element.elementor-element-ead59d3 { - --margin-top: 20px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-56ecbb3 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-element.elementor-element-bfe8cd1 .owl-carousel { - padding: 0px 100px 0px 0px; - } - } - - @media(max-width: 480px) { - - /* .elementor-element.elementor-element-abc44d7:not(.elementor-motion-effects-element-type-background), - .elementor-element.elementor-element-abc44d7>.elementor-motion-effects-container>.elementor-motion-effects-layer { - background-position: center center; - background-repeat: no-repeat; - background-size: cover; - transform: none !important; - } */ - - .elementor-element.elementor-element-f35119c img { - max-width: 100%; - } - - .elementor-element.elementor-element-bfe8cd1 .owl-carousel { - padding: 0px 60px 0px 0px; - } - } - - /*# sourceURL=elementor-frontend-inline-css */ - -/* STYLE BLOCK 30 */ -@font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Bold.ttf') format('truetype'); - font-weight: bold; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-ExtraBold.ttf') format('truetype'); - font-weight: 800; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-ExtraLight.ttf') format('truetype'); - font-weight: 200; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Light.ttf') format('truetype'); - font-weight: 300; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Medium.ttf') format('truetype'); - font-weight: 500; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Regular.ttf') format('truetype'); - font-weight: normal; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-SemiBold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; - } - - :root { - --logico-viewport-mobile: 480px; - --logico-viewport-mobile-extra: 660px; - --logico-viewport-tablet: 840px; - --logico-viewport-tablet-extra: 1020px; - --logico-viewport-laptop: 1200px; - --logico-viewport-widescreen: 2400px; - --logico-content-width: 1380px; - --logico-default-text-color: #333333; - --logico-dark-text-color: #111111; - --logico-light-text-color: #a3a3a3; - --logico-accent-color: #c01227; - --logico-accent-alter-color: #c01227; - --logico-border-color: #adadad; - --logico-border-hover-color: #111111; - --logico-background-color: #ffffff; - --logico-background-alter-color: #f9f7f6; - --logico-button-text-color: #333333; - --logico-button-border-color: #333333; - --logico-button-background-color: rgba(255, 255, 255, 0); - --logico-button-icon-color: #ffffff; - --logico-button-text-hover: #ffffff; - --logico-button-background-hover: #c01227; - --logico-button-background-hover: #c01227 - --logico-button-icon-hover: #ffffff; - --logico-body-font-size: 18px; - --logico-body-line-height: 1.6667em; - --logico-body-font-family: Manrope; - --logico-body-font-style: normal; - --logico-body-font-weight: 400; - --logico-body-text-decoration: none; - --logico-h1-font-size: 120px; - --logico-h1-line-height: 1.2em; - --logico-h1-letter-spacing: -0.03em; - --logico-h1-font-family: "Manrope", Sans-serif; - --logico-h1-text-transform: uppercase; - --logico-h1-font-style: normal; - --logico-h1-font-weight: 500; - --logico-h2-font-size: 80px; - --logico-h2-line-height: 1.2em; - --logico-h2-letter-spacing: -0.03em; - --logico-h2-font-family: "Manrope", Sans-serif; - --logico-h2-text-transform: uppercase; - --logico-h2-font-style: normal; - --logico-h2-font-weight: 500; - --logico-h3-font-size: 60px; - --logico-h3-line-height: 1.2em; - --logico-h3-letter-spacing: -0.03em; - --logico-h3-font-family: "Manrope", Sans-serif; - --logico-h3-text-transform: uppercase; - --logico-h3-font-style: normal; - --logico-h3-font-weight: 500; - --logico-h4-font-size: 40px; - --logico-h4-line-height: 1.2em; - --logico-h4-letter-spacing: -0.03em; - --logico-h4-font-family: "Manrope", Sans-serif; - --logico-h4-text-transform: uppercase; - --logico-h4-font-style: normal; - --logico-h4-font-weight: 500; - --logico-h5-font-size: 30px; - --logico-h5-line-height: 1.2em; - --logico-h5-letter-spacing: -0.03em; - --logico-h5-font-family: "Manrope", Sans-serif; - --logico-h5-text-transform: uppercase; - --logico-h5-font-style: normal; - --logico-h5-font-weight: 500; - --logico-h6-font-size: 25px; - --logico-h6-line-height: 1.2em; - --logico-h6-letter-spacing: -0.03em; - --logico-h6-font-family: "Manrope", Sans-serif; - --logico-h6-text-transform: uppercase; - --logico-h6-font-style: normal; - --logico-h6-font-weight: 500; - --logico-button-font-size: 14px; - --logico-button-font-family: Manrope; - --logico-button-font-weight: 600; - --logico-paragraph-spacing: 1.7em; - --logico-h1-font-size-laptop: 80px; - --logico-h2-font-size-laptop: 60px; - --logico-h3-font-size-laptop: 46px; - --logico-h4-font-size-laptop: 34px; - --logico-h5-font-size-laptop: 28px; - --logico-h6-font-size-laptop: 22px; - --logico-body-font-size-tablet: 16px; - --logico-h1-font-size-tablet: 60px; - --logico-h2-font-size-tablet: 50px; - --logico-h3-font-size-tablet: 36px; - --logico-h4-font-size-tablet: 28px; - --logico-h5-font-size-tablet: 24px; - --logico-h6-font-size-tablet: 20px; - --logico-h1-font-size-mobile-extra: 40px; - --logico-h2-font-size-mobile-extra: 32px; - --logico-h3-font-size-mobile-extra: 28px; - --logico-h4-font-size-mobile-extra: 23px; - --logico-h5-font-size-mobile-extra: 20px; - --logico-h6-font-size-mobile-extra: 18px; - --logico-radius-small: 10px; - --logico-radius-medium: 15px; - --logico-radius-large: 25px; - } - - - .logico-front-end { - font-size: 18px; - line-height: 1.6667em; - font-family: Manrope; - font-style: normal; - font-weight: 400; - text-decoration: none; - } - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 120px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 80px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 60px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 40px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 30px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 25px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - .logico-alter-button { - font-size: 14px; - font-family: Manrope; - font-weight: 600; - } - - - .logico-front-end p { - margin-bottom: 1.7em; - } - - @media only screen and (max-width: 1200px) { - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 80px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 60px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 46px; - padding-bottom: 20px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 34px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 22px; - } - } - - @media only screen and (max-width: 840px) { - - - .logico-front-end { - font-size: 16px; - } - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 60px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 50px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 36px; - padding-bottom: 20px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 24px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 20px; - } - } - - @media only screen and (max-width: 660px) { - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 40px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 32px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 28px; - padding-bottom: 20px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 23px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 20px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 18px; - } - } - - /*# sourceURL=logico-theme-inline-css */ - -/* STYLE BLOCK 31 */ - -/* STYLE BLOCK 32 */ - -/* STYLE BLOCK 33 */ - -/* STYLE BLOCK 34 */ -/* Center-align all card components and modular sections */ - - - /* Ensure consistent spacing between sections */ - -/* STYLE BLOCK 35 */ -*, - *::before, - *::after { - box-sizing: border-box; - margin: 0; - padding: 0; - } - - :root { - --red: #C0202A; - --red-deep: #a01820; - --red-mid: #d63c45; - --red-pale: rgba(192, 32, 42, 0.08); - --red-pale2: rgba(192, 32, 42, 0.05); - --dark: #111419; - --dark2: #1d2130; - --mid: #4d5261; - --light: #8a90a2; - --pale: #f3f4f7; - --white: #ffffff; - --card: rgba(255, 255, 255, 0.75); - } - - html { - scroll-behavior: smooth; - } - - body { - font-family: 'Manrope', sans-serif; - background: var(--pale); - color: var(--dark); - overflow-x: hidden; - } - - .hero { - position: relative; - min-height: 92vh; - display: flex; - align-items: center; - justify-content: center; - text-align: center; - padding: 140px 32px 80px; - overflow: hidden; - } - - /* layered gradient bg */ - .hero::before { - content: ''; - position: absolute; - inset: 0; - background: - radial-gradient(ellipse 100% 80% at 50% -5%, rgba(192, 32, 42, 0.13) 0%, transparent 55%), - radial-gradient(ellipse 60% 60% at 10% 80%, rgba(192, 32, 42, 0.07) 0%, transparent 55%), - radial-gradient(ellipse 55% 55% at 90% 90%, rgba(192, 32, 42, 0.06) 0%, transparent 55%), - linear-gradient(165deg, #ecedf2 0%, #f8f9fb 45%, #edf0f5 100%); - opacity: 1; - } - - /* Fix the error of the header menu container and nav bar visibility */ - .header-menu-container, - .elementor-element-e44ee7e { - display: flex !important; - visibility: visible !important; - opacity: 1 !important; - } - - - - #masthead { - z-index: 9999 !important; - } - - /* decorative arcs */ - - /* scroll indicator */ - - @keyframes scrollPulse { - - 0%, - 100% { - opacity: 0.4; - transform: scaleY(0.6) translateY(0); - } - - 50% { - opacity: 1; - transform: scaleY(1) translateY(4px); - } - } - - /* ═══════════════════════════════════════ - STATS BAR - ═══════════════════════════════════════ */ - - /* ═══════════════════════════════════════ - INITIATIVES - ═══════════════════════════════════════ */ - - /* .init-content {} */ - - /* ═══════════════════════════════════════ - SUCCESS STORIES - ═══════════════════════════════════════ */ - - /* image area */ - - /* gradient over image bottom */ - - /* ═══════════════════════════════════════ - CTA BANNER - ═══════════════════════════════════════ */ - - /* decorative circles */ - - /* ═══════════════════════════════════════ - GLOBAL ANIMATIONS - ═══════════════════════════════════════ */ - @keyframes fadeUp { - from { - opacity: 0; - transform: translateY(22px); - } - - to { - opacity: 1; - transform: translateY(0); - } - } - - @keyframes fadeDown { - from { - opacity: 0; - transform: translateY(-14px); - } - - to { - opacity: 1; - transform: translateY(0); - } - } - - .reveal { - /* opacity: 0; */ - transform: translateY(28px); - transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); - } - - .reveal.visible { - opacity: 1; - transform: translateY(0); - } - - /* ═══════════════════════════════════════ - RESPONSIVE - ═══════════════════════════════════════ */ - - @media (max-width: 560px) { - - .hero { - min-height: 80vh; - padding: 80px 20px 60px; - } - } - -/* STYLE BLOCK 36 */ -img:is([sizes=auto i]) { - contain-intrinsic-size: 3000px 1500px - } - - /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ - -/* STYLE BLOCK 37 */ - - /*# sourceURL=wp-emoji-styles-inline-css */ - -/* STYLE BLOCK 38 */ -:root { - --wp--preset--aspect-ratio--square: 1; - --wp--preset--aspect-ratio--4-3: 4/3; - --wp--preset--aspect-ratio--3-4: 3/4; - --wp--preset--aspect-ratio--3-2: 3/2; - --wp--preset--aspect-ratio--2-3: 2/3; - --wp--preset--aspect-ratio--16-9: 16/9; - --wp--preset--aspect-ratio--9-16: 9/16; - --wp--preset--color--black: #000000; - --wp--preset--color--cyan-bluish-gray: #abb8c3; - --wp--preset--color--white: #ffffff; - --wp--preset--color--pale-pink: #f78da7; - --wp--preset--color--vivid-red: #cf2e2e; - --wp--preset--color--luminous-vivid-orange: #ff6900; - --wp--preset--color--luminous-vivid-amber: #fcb900; - --wp--preset--color--light-green-cyan: #7bdcb5; - --wp--preset--color--vivid-green-cyan: #00d084; - --wp--preset--color--pale-cyan-blue: #8ed1fc; - --wp--preset--color--vivid-cyan-blue: #0693e3; - --wp--preset--color--vivid-purple: #9b51e0; - --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%); - --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%); - --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgb(252, 185, 0) 0%, rgb(255, 105, 0) 100%); - --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgb(255, 105, 0) 0%, rgb(207, 46, 46) 100%); - --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%); - --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%); - --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%); - --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%); - --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%); - --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%); - --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%); - --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%); - --wp--preset--font-size--small: 13px; - --wp--preset--font-size--medium: 20px; - --wp--preset--font-size--large: 36px; - --wp--preset--font-size--x-large: 42px; - --wp--preset--font-family--text-font: Manrope, sans-serif; - --wp--preset--font-family--heading-font: "" Manrope", Sans-serif", sans-serif; - --wp--preset--spacing--20: 0.44rem; - --wp--preset--spacing--30: 0.67rem; - --wp--preset--spacing--40: 1rem; - --wp--preset--spacing--50: 1.5rem; - --wp--preset--spacing--60: 2.25rem; - --wp--preset--spacing--70: 3.38rem; - --wp--preset--spacing--80: 5.06rem; - --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4); - --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0); - --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0); - } - - :root { - --wp--style--global--content-size: 1340px; - --wp--style--global--wide-size: 1340px; - } - - :where(body) { - margin: 0; - } - - :where(.is-layout-flex) { - gap: 0.5em; - } - - body .is-layout-flex { - display: flex; - } - - .is-layout-flex { - flex-wrap: wrap; - align-items: center; - } - - .is-layout-flex> :is(*, div) { - margin: 0; - } - - body { - background-color: #ffffff; - color: #333333; - padding-top: 0px; - padding-right: 0px; - padding-bottom: 0px; - padding-left: 0px; - } - - h1 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 120px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h2 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 80px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h3 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 60px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h4 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 40px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h5 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 30px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - h6 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 25px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; - } - - :root :where(.wp-element-button, .wp-block-button__link) { - background-color: #32373c; - border-width: 0; - color: #fff; - font-family: inherit; - font-size: inherit; - font-style: inherit; - font-weight: inherit; - letter-spacing: inherit; - line-height: inherit; - padding-top: calc(0.667em + 2px); - padding-right: calc(1.333em + 2px); - padding-bottom: calc(0.667em + 2px); - padding-left: calc(1.333em + 2px); - text-decoration: none; - text-transform: inherit; - } - - .has-white-color { - color: var(--wp--preset--color--white) !important; - } - - .has-text-font-font-family { - font-family: var(--wp--preset--font-family--text-font) !important; - } - - /* Width */ -::-webkit-scrollbar { - width: 10px; -} - -/* Track */ -::-webkit-scrollbar-track { - background: #ffffff00; -} - -/* Handle */ -::-webkit-scrollbar-thumb { - background: #C01227; - border-radius: 999px; -} - -/* Hover */ -::-webkit-scrollbar-thumb:hover { - background: #dc6271; -} - - /*# sourceURL=global-styles-inline-css */ - -/* STYLE BLOCK 39 */ - - /*# sourceURL=woocommerce-inline-inline-css */ - -/* STYLE BLOCK 40 */ -.elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #c01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; - } - - .elementor-kit-5 p { - margin-block-end: 1.7em; - } - - .elementor-kit-5 a { - color: #c01227; - text-decoration: underline; - } - - .elementor-kit-5 h1 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h2 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h3 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h4 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h5 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 h6 { - color: #111111; - font-family: "" Manrope", Sans-serif", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; - } - - .elementor-kit-5 button, - .elementor-kit-5 input[type="button"], - .elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; - } - - .e-con { - --container-max-width: 1380px; - } - - .elementor-widget:not(:last-child) { - margin-block-end: 0px; - } - - .elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; - } - - @media(max-width: 1200px) { - .elementor-kit-5 h1 { - font-size: 80px; - } - - .elementor-kit-5 h2 { - font-size: 60px; - } - - .elementor-kit-5 h3 { - font-size: 46px; - } - - .elementor-kit-5 h4 { - font-size: 34px; - } - - .elementor-kit-5 h5 { - font-size: 28px; - } - - .elementor-kit-5 h6 { - font-size: 22px; - } - } - - @media(max-width: 840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size: 16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - .elementor-kit-5 h1 { - font-size: 60px; - } - - .elementor-kit-5 h2 { - font-size: 50px; - } - - .elementor-kit-5 h3 { - font-size: 36px; - } - - .elementor-kit-5 h4 { - font-size: 28px; - } - - .elementor-kit-5 h5 { - font-size: 24px; - } - - .elementor-kit-5 h6 { - font-size: 20px; - } - - .e-con { - --container-max-width: 1024px; - } - } - - @media(max-width: 660px) { - .elementor-kit-5 h1 { - font-size: 40px; - } - - .elementor-kit-5 h2 { - font-size: 32px; - } - - .elementor-kit-5 h3 { - font-size: 28px; - } - - .elementor-kit-5 h4 { - font-size: 23px; - } - - .elementor-kit-5 h5 { - font-size: 20px; - } - - .elementor-kit-5 h6 { - font-size: 18px; - } - } - - @media(max-width: 480px) { - - .e-con { - --container-max-width: 767px; - } - } - - /*# sourceURL=elementor-frontend-inline-css */ - -/* STYLE BLOCK 41 */ -@font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Bold.ttf') format('truetype'); - font-weight: bold; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-ExtraBold.ttf') format('truetype'); - font-weight: 800; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-ExtraLight.ttf') format('truetype'); - font-weight: 200; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Light.ttf') format('truetype'); - font-weight: 300; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Medium.ttf') format('truetype'); - font-weight: 500; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-Regular.ttf') format('truetype'); - font-weight: normal; - font-style: normal; - } - - @font-face { - font-family: 'Manrope Alt'; - src: url('/assets/fonts/Manrope-SemiBold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; - } - - :root { - --logico-viewport-mobile: 480px; - --logico-viewport-mobile-extra: 660px; - --logico-viewport-tablet: 840px; - --logico-viewport-tablet-extra: 1020px; - --logico-viewport-laptop: 1200px; - --logico-viewport-widescreen: 2400px; - --logico-content-width: 1380px; - --logico-default-text-color: #333333; - --logico-dark-text-color: #111111; - --logico-light-text-color: #a3a3a3; - --logico-accent-color: #c01227; - --logico-accent-alter-color: #c01227; - --logico-border-color: #adadad; - --logico-border-hover-color: #111111; - --logico-background-color: #ffffff; - --logico-background-alter-color: #f9f7f6; - --logico-button-text-color: #333333; - --logico-button-border-color: #333333; - --logico-button-background-color: rgba(255, 255, 255, 0); - --logico-button-icon-color: #ffffff; - --logico-button-text-hover: #ffffff; - --logico-button-background-hover: #c01227; - --logico-button-background-hover: #c01227 - --logico-button-icon-hover: #ffffff; - --logico-body-font-size: 18px; - --logico-body-line-height: 1.6667em; - --logico-body-font-family: Manrope; - --logico-body-font-style: normal; - --logico-body-font-weight: 400; - --logico-body-text-decoration: none; - --logico-h1-font-size: 120px; - --logico-h1-line-height: 1.2em; - --logico-h1-letter-spacing: -0.03em; - --logico-h1-font-family: "Manrope", Sans-serif; - --logico-h1-text-transform: uppercase; - --logico-h1-font-style: normal; - --logico-h1-font-weight: 500; - --logico-h2-font-size: 80px; - --logico-h2-line-height: 1.2em; - --logico-h2-letter-spacing: -0.03em; - --logico-h2-font-family: "Manrope", Sans-serif; - --logico-h2-text-transform: uppercase; - --logico-h2-font-style: normal; - --logico-h2-font-weight: 500; - --logico-h3-font-size: 60px; - --logico-h3-line-height: 1.2em; - --logico-h3-letter-spacing: -0.03em; - --logico-h3-font-family: "Manrope", Sans-serif; - --logico-h3-text-transform: uppercase; - --logico-h3-font-style: normal; - --logico-h3-font-weight: 500; - --logico-h4-font-size: 40px; - --logico-h4-line-height: 1.2em; - --logico-h4-letter-spacing: -0.03em; - --logico-h4-font-family: "Manrope", Sans-serif; - --logico-h4-text-transform: uppercase; - --logico-h4-font-style: normal; - --logico-h4-font-weight: 500; - --logico-h5-font-size: 30px; - --logico-h5-line-height: 1.2em; - --logico-h5-letter-spacing: -0.03em; - --logico-h5-font-family: "Manrope", Sans-serif; - --logico-h5-text-transform: uppercase; - --logico-h5-font-style: normal; - --logico-h5-font-weight: 500; - --logico-h6-font-size: 25px; - --logico-h6-line-height: 1.2em; - --logico-h6-letter-spacing: -0.03em; - --logico-h6-font-family: "Manrope", Sans-serif; - --logico-h6-text-transform: uppercase; - --logico-h6-font-style: normal; - --logico-h6-font-weight: 500; - --logico-button-font-size: 14px; - --logico-button-font-family: Manrope; - --logico-button-font-weight: 600; - --logico-paragraph-spacing: 1.7em; - --logico-h1-font-size-laptop: 80px; - --logico-h2-font-size-laptop: 60px; - --logico-h3-font-size-laptop: 46px; - --logico-h4-font-size-laptop: 34px; - --logico-h5-font-size-laptop: 28px; - --logico-h6-font-size-laptop: 22px; - --logico-body-font-size-tablet: 16px; - --logico-h1-font-size-tablet: 60px; - --logico-h2-font-size-tablet: 50px; - --logico-h3-font-size-tablet: 36px; - --logico-h4-font-size-tablet: 28px; - --logico-h5-font-size-tablet: 24px; - --logico-h6-font-size-tablet: 20px; - --logico-h1-font-size-mobile-extra: 40px; - --logico-h2-font-size-mobile-extra: 32px; - --logico-h3-font-size-mobile-extra: 28px; - --logico-h4-font-size-mobile-extra: 23px; - --logico-h5-font-size-mobile-extra: 20px; - --logico-h6-font-size-mobile-extra: 18px; - --logico-radius-small: 10px; - --logico-radius-medium: 15px; - --logico-radius-large: 25px; - } - - - .logico-front-end { - font-size: 18px; - line-height: 1.6667em; - font-family: Manrope; - font-style: normal; - font-weight: 400; - text-decoration: none; - } - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 120px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 80px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 60px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 40px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 30px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 25px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; - } - - .logico-alter-button { - font-size: 14px; - font-family: Manrope; - font-weight: 600; - } - - - .logico-front-end p { - margin-bottom: 1.7em; - } - - @media only screen and (max-width: 1200px) { - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 80px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 60px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 46px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 34px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 22px; - } - } - - @media only screen and (max-width: 840px) { - - - .logico-front-end { - font-size: 16px; - } - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 60px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 50px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 36px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 24px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 20px; - } - } - - @media only screen and (max-width: 660px) { - - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 40px; - } - - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 32px; - } - - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 28px; - } - - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 23px; - } - - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 20px; - } - - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 18px; - } - } - - /*# sourceURL=logico-theme-inline-css */ - -/* STYLE BLOCK 42 */ - -/* STYLE BLOCK 43 */ - -/* STYLE BLOCK 44 */ - -/* STYLE BLOCK 45 */ - - .elementor-element.elementor-element-791327c .owl-carousel.owl-theme .content-item { - height: 924px; - } - - .elementor-element.elementor-element-791327c .owl-carousel .owl-stage-outer { - border-radius: 25px 25px 25px 25px; - } - - .elementor-element.elementor-element-791327c .content-slider.nav-view-default .owl-nav { - left: 10px; - right: 10px; - } - - .elementor-element.elementor-element-791327c .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; - } - - .elementor-element.elementor-element-bbc6760 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --margin-top: 10px; - --margin-bottom: 20px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-element.elementor-element-13a7637 { - width: auto; - max-width: auto; - top: 0px; - z-index: 2; - } - - body:not(.rtl) .elementor-element.elementor-element-13a7637 { - left: 20px; - } - - .elementor-element.elementor-element-13a7637 .block-decoration { - text-align: left; - } - - .elementor-element.elementor-element-13a7637 .block-decoration.block-decoration-style-1 .block-decoration-item:before { - background-color: #000000; - } - - .elementor-element.elementor-element-13a7637 .block-decoration.block-decoration-style-1 .block-decoration-item:after { - background-color: #c01227; - } - - .elementor-element.elementor-element-7da6646 { - --display: flex; - --min-height: 773px; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --background-transition: 0s; - --border-radius: 25px 25px 25px 25px; - --z-index: 1; - } - - .elementor-element.elementor-element-7da6646:not(.elementor-motion-effects-element-type-background) { - background-image: url("/images/bg-header-5.webp"); - background-position: center center; - background-repeat: no-repeat; - background-size: cover; - } - - .elementor-element.elementor-element-8b5d6e6 { - --display: flex; - --flex-direction: column; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --justify-content: flex-end; - --align-items: flex-end; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - } - - .elementor-element.elementor-element-1f766ea { - --display: flex; - --margin-top: -298px; - --margin-bottom: -70px; - --margin-left: 0px; - --margin-right: 208px; - --z-index: 2; - } - - .elementor-element.elementor-element-3b61435 { - --display: flex; - --border-radius: 25px 25px 0px 0px; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --padding-top: 64px; - --padding-bottom: 73px; - --padding-left: 40px; - --padding-right: 38px; - } - - .elementor-element.elementor-element-3b61435:not(.elementor-motion-effects-element-type-background) { - background-color: #c01227; - } - - .elementor-element.elementor-element-c364d1c { - font-family: "Manrope", Sans-serif; - font-size: 40px; - font-weight: 700; - line-height: 1em; - letter-spacing: -0.03em; - } - - .elementor-element.elementor-element-239afbb>.elementor-widget-container { - margin: 15px 0px 0px 0px; - } - - .elementor-element.elementor-element-239afbb .logico-title { - font-family: "Manrope", Sans-serif; - font-weight: 600; - text-transform: none; - line-height: 1em; - letter-spacing: -0.03em; - color: #FFFFFF; - } - - .elementor-element.elementor-element-0d307dd>.elementor-widget-container { - margin: 16px 0px 0px 0px; - } - - .elementor-element.elementor-element-5aea22e { - --display: flex; - --min-height: 70px; - --justify-content: center; - --align-items: center; - --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%); - --border-radius: 0px 0px 25px 25px; - --logico-default-text-color: #FFFFFF; - color: #FFFFFF; - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 40px; - --padding-right: 38px; - } - - .elementor-element.elementor-element-5aea22e:not(.elementor-motion-effects-element-type-background) { - background-color: #ffffff; - } - - .elementor-element.elementor-element-b6e14bd { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --border-radius: 0px 0px 25px 25px; - --margin-top: -25px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 186px; - --padding-bottom: 150px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-element.elementor-element-b6e14bd:not(.elementor-motion-effects-element-type-background) { - background-color: #1F1F1F; - } - - .elementor-element.elementor-element-90cc867 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-element.elementor-element-24c0280 { - width: 100%; - max-width: 100%; - z-index: 2; - } - - .elementor-element.elementor-element-24c0280>.elementor-widget-container { - padding: 0px 0px 13px 0px; - border-style: solid; - border-width: 0px 0px 1px 0px; - border-color: #FFFFFF; - } - - .elementor-element.elementor-element-24c0280 .logico-title { - font-size: 14px; - font-weight: 500; - line-height: 2.1429em; - color: #FFFFFF; - } - - .elementor-element.elementor-element-2ed47f3 { - --display: grid; - --e-con-grid-template-columns: repeat(2, 1fr); - --e-con-grid-template-rows: repeat(1, 1fr); - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --grid-auto-flow: row; - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-36efec7 { - --display: flex; - } - - .elementor-element.elementor-element-778840d .logico-title { - color: #FFFFFF; - } - - .elementor-element.elementor-element-bbfb67f>.elementor-widget-container { - margin: 67px 0px 0px 0px; - } - - .elementor-element.elementor-element-bbfb67f { - text-align: start; - } - - .elementor-element.elementor-element-bbfb67f img { - border-radius: 25px 25px 25px 25px; - } - - .elementor-element.elementor-element-b2c956f { - --display: flex; - --margin-top: 112px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 140px; - --padding-right: 0px; - } - - @media(max-width: 1200px) { - - .elementor-element.elementor-element-791327c .owl-carousel.owl-theme .content-item { - height: 700px; - } - - .elementor-element.elementor-element-bbc6760 { - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-7da6646 { - --min-height: 600px; - } - - .elementor-element.elementor-element-1f766ea { - --margin-top: -298px; - --margin-bottom: -70px; - --margin-left: 0px; - --margin-right: 30px; - } - - .elementor-element.elementor-element-90cc867 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-element.elementor-element-2ed47f3 { - --grid-auto-flow: row; - } - - .elementor-element.elementor-element-b2c956f { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 60px; - --padding-right: 0px; - } - } - - @media(max-width: 1020px) { - - .elementor-element.elementor-element-bbc6760 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor-element.elementor-element-7da6646 { - --min-height: 500px; - } - - .elementor-element.elementor-element-1f766ea { - --margin-top: -298px; - --margin-bottom: -70px; - --margin-left: 0px; - --margin-right: 20px; - } - - .elementor-element.elementor-element-3b61435 { - --padding-top: 40px; - --padding-bottom: 40px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-element.elementor-element-5aea22e { - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-element.elementor-element-b6e14bd { - --padding-top: 156px; - --padding-bottom: 120px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-element.elementor-element-90cc867 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-element.elementor-element-2ed47f3 { - --grid-auto-flow: row; - } - - .elementor-element.elementor-element-b2c956f { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 0px; - } - } - - @media(max-width: 840px) { - - .elementor-element.elementor-element-2ed47f3 { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } - - .elementor-element.elementor-element-bbfb67f>.elementor-widget-container { - margin: 30px 0px 0px 0px; - } - - .elementor-element.elementor-element-b2c956f { - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; - } - } - - @media(max-width: 660px) { - - .elementor-element.elementor-element-bbc6760 { - --margin-top: 60px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-7da6646 { - --min-height: 320px; - --margin-top: 0px; - --margin-bottom: -25px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-1f766ea { - --margin-top: 0px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-b6e14bd { - --padding-top: 90px; - --padding-bottom: 90px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-element.elementor-element-2ed47f3 { - --grid-auto-flow: row; - } - } - - @media(max-width: 480px) { - - body:not(.rtl) .elementor-element.elementor-element-13a7637 { - left: 0px; - } - - .elementor-element.elementor-element-13a7637 { - top: 0px; - } - - .elementor-element.elementor-element-1f766ea { - --width: 100%; - --margin-top: 0px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-element.elementor-element-2ed47f3 { - --e-con-grid-template-columns: repeat(1, 1fr); - --grid-auto-flow: row; - } - } - - @media(min-width: 481px) { - .elementor-element.elementor-element-1f766ea { - --width: 363px; - } - } - - @media(max-width: 1020px) and (min-width:481px) { - .elementor-element.elementor-element-1f766ea { - --width: 340px; - } - } - - @media(max-width: 660px) and (min-width:481px) { - .elementor-element.elementor-element-1f766ea { - --width: 100%; - } - } - -/* STYLE BLOCK 46 */ -/* ─── Button alignment fix ─── */ - - /* ─── LARGE DESKTOP (1440px+) ─── */ - @media (min-width: 1440px) { - .elementor-element-30fd9d1>.e-con-inner { - max-width: 1380px; - padding: 50px 82px; - } - - .elementor-element-30fd9d1 .logico-title { - font-size: 17px; - } - - .elementor-element-30fd9d1 h3.logico-title { - font-size: clamp(40px, 4.5vw, 56px); - } - - .elementor-element-30fd9d1 .elementor-icon-box-wrapper { - padding: 28px 22px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-icon .elementor-icon { - font-size: 52px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-icon svg { - width: 86px; - height: 86px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-title span { - font-size: 25px; - } - - .elementor-element-30fd9d1 .logico-alter-button, - .elementor-element-30fd9d1 .logico-small-button { - font-size: 14px; - /* padding: 14px 28px; */ - } - - .elementor-element-30fd9d1 .e-grid { - gap: 20px; - } - } - - /* ─── EXTRA-LARGE DESKTOP (1920px+) ─── */ - @media (min-width: 1920px) { - .elementor-element-30fd9d1>.e-con-inner { - max-width: 1780px; - padding: 72px 64px; - } - - .elementor-element-30fd9d1 .logico-title { - font-size: 18px; - } - - .elementor-element-30fd9d1 h3.logico-title { - font-size: clamp(46px, 4.5vw, 64px); - } - - .elementor-element-30fd9d1 .elementor-icon-box-wrapper { - padding: 32px 26px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-icon .elementor-icon { - font-size: 58px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-icon svg { - width: 94px; - height: 94px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-title span { - font-size: 18px; - } - - .elementor-element-30fd9d1 .logico-alter-button, - .elementor-element-30fd9d1 .logico-small-button { - font-size: 15px; - padding: 16px 60px; - } - - .elementor-element-30fd9d1 .e-grid { - gap: 24px; - } - } - - /* ─── ULTRA-WIDE (2560px+) ─── */ - @media (min-width: 2560px) { - .elementor-element-30fd9d1>.e-con-inner { - max-width: 2060px; - padding: 84px 80px; - } - - .elementor-element-30fd9d1 .logico-title { - font-size: 20px; - } - - .elementor-element-30fd9d1 h3.logico-title { - font-size: clamp(52px, 4.5vw, 72px); - } - - .elementor-element-30fd9d1 .elementor-icon-box-wrapper { - padding: 38px 30px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-icon .elementor-icon { - font-size: 66px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-icon svg { - width: 104px; - height: 104px; - } - - .elementor-element-30fd9d1 .elementor-icon-box-title span { - font-size: 20px; - } - - .elementor-element-30fd9d1 .logico-alter-button, - .elementor-element-30fd9d1 .logico-small-button { - font-size: 16px; - padding: 18px 70px; - } - - .elementor-element-30fd9d1 .e-grid { - gap: 28px; - } - } - -/* STYLE BLOCK 47 */ -/* ─── LARGE DESKTOP (1440px+) ─── */ - @media (min-width: 1440px) { - - /* Logos Section */ - - /* About Us Main Section */ - .elementor-element-88745f4>.e-con-inner { - max-width: 1380px; - padding: 60px 52px; - } - - .elementor-element-343b363 { - gap: 24px; - } - - .elementor-element-7afb238 .logico-title { - font-size: 14px !important; - letter-spacing: 2px; - } - - .elementor-element-1cc335a .logico-title { - font-size: clamp(80px, 8vw, 120px) !important; - line-height: 1; - } - - .elementor-element-4c3e632 { - gap: 40px; - } - - .elementor-element-9363070 h3.logico-title { - font-size: clamp(38px, 4vw, 52px) !important; - line-height: 1.1; - } - - .elementor-element-c134b96 p { - font-size: 20px; - line-height: 1.6; - } - - /* Stats Section */ - .elementor-element-5041fcc>.e-con-inner { - max-width: 1380px; - padding: 30px 25px; - } - - - .elementor-element-2d7c3ee.e-grid { - gap: 32px; - } - - .elementor-element-1025248 .logico-title, - .elementor-element-c682633 .logico-title, - .elementor-element-aa49275 .logico-title, - .elementor-element-b317d31 .logico-title { - font-size: 20px !important; - margin-bottom: 12px; - - } - - .elementor-element-c7c19bd p, - .elementor-element-74d14e3 p, - .elementor-element-74cfdf7 p, - .elementor-element-8fe5662 p { - font-size: 18px; - line-height: 1.6; - } - } - - /* ─── EXTRA-LARGE DESKTOP (1920px+) ─── */ - @media (min-width: 1920px) { - - /* Logos Section */ - - /* About Us Main Section */ - .elementor-element-88745f4>.e-con-inner { - max-width: 1480px; - padding: 0px 50px 10px; - } - - .elementor-element-343b363 { - gap: 32px; - } - - .elementor-element-7afb238 .logico-title { - font-size: 15px !important; - letter-spacing: 2.5px; - } - - .elementor-element-1cc335a .logico-title { - font-size: clamp(100px, 8vw, 150px) !important; - } - - .elementor-element-4c3e632 { - gap: 60px; - } - - .elementor-element-9363070 h3.logico-title { - font-size: clamp(48px, 4vw, 64px) !important; - } - - .elementor-element-c134b96 p { - font-size: 18px; - line-height: 1.65; - } - - /* Stats Section */ - .elementor-element-5041fcc>.e-con-inner { - max-width: 1480px; - padding: 0px 50px 50px; - } - - .elementor-element-2d7c3ee.e-grid { - gap: 48px; - } - - .elementor-element-1025248 .logico-title, - .elementor-element-c682633 .logico-title, - .elementor-element-aa49275 .logico-title, - .elementor-element-b317d31 .logico-title { - font-size: 19px !important; - margin-bottom: 16px; - } - - .elementor-element-c7c19bd p, - .elementor-element-74d14e3 p, - .elementor-element-74cfdf7 p, - .elementor-element-8fe5662 p { - font-size: 16px; - line-height: 1.65; - } - } - - /* ─── ELEMENT 07CD509 TYPOGRAPHY SCALING ─── */ - /* Optimized for readability and character count (60-75ch) */ - -/* STYLE BLOCK 48 */ -/* ══════════════════════════════════════ - SCOPED TO .mt-section — NO GLOBALS -══════════════════════════════════════ */ - - /* ══ STATS BANNER ══ */ - - /* animated diagonal shine */ - - /* ══ BODY SECTION ══ */ - - /* grid background */ - - /* ── HEADER ── */ - - /* in-view header */ - - /* ── FEATURE GRID ── */ - - /* staggered card reveals */ - - /* top accent bar on hover */ - - /* background glow */ - - /* icon */ - - /* card text */ - - /* card bottom tag */ - - /* ── RESPONSIVE ── */ - - - - -.elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #c01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; -} - -.elementor-kit-5 p { - margin-block-end:1.7em;} - -.elementor-kit-5 a { - color: #c01227; - text-decoration: underline; -} - -.elementor-kit-5 h1 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h2 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h3 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h4 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h5 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h6 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 button,.elementor-kit-5 input[type="button"],.elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; -} - -.e-con { - --container-max-width: 1380px; -} - -.elementor-widget:not(:last-child) { - margin-block-end:0px;} - -.elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; -} - -@media(max-width: 1200px) { - .elementor-kit-5 h1 { - font-size:80px; - } - - .elementor-kit-5 h2 { - font-size: 60px; - } - - .elementor-kit-5 h3 { - font-size: 46px; - } - - .elementor-kit-5 h4 { - font-size: 34px; - } - - .elementor-kit-5 h5 { - font-size: 28px; - } - - .elementor-kit-5 h6 { - font-size: 22px; - } -} - -@media(max-width: 840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size:16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - .elementor-kit-5 h1 { - font-size: 60px; - } - - .elementor-kit-5 h2 { - font-size: 50px; - } - - .elementor-kit-5 h3 { - font-size: 36px; - } - - .elementor-kit-5 h4 { - font-size: 28px; - } - - .elementor-kit-5 h5 { - font-size: 24px; - } - - .elementor-kit-5 h6 { - font-size: 20px; - } - - .e-con { - --container-max-width: 1024px; - } -} - -@media(max-width: 660px) { - .elementor-kit-5 h1 { - font-size:40px; - } - - .elementor-kit-5 h2 { - font-size: 32px; - } - - .elementor-kit-5 h3 { - font-size: 28px; - } - - .elementor-kit-5 h4 { - font-size: 23px; - } - - .elementor-kit-5 h5 { - font-size: 20px; - } - - .elementor-kit-5 h6 { - font-size: 18px; - } -} - -@media(max-width: 480px) { - - .e-con { - --container-max-width: 767px; - } -} - -.elementor-69 .elementor-element.elementor-element-b7a76bc .owl-carousel.owl-theme .content-item { - height: 975px; -} - -.elementor-69 .elementor-element.elementor-element-b7a76bc .owl-carousel .owl-stage-outer { - border-radius: 25px 25px 25px 25px; -} - -.elementor-69 .elementor-element.elementor-element-b7a76bc .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; -} - -.elementor-69 .elementor-element.elementor-element-b7a76bc .owl-dots .owl-dot.active span { - border-color: #c01227; -} - -.elementor-69 .elementor-element.elementor-element-338e860 .portfolio-listing-wrapper.owl-carousel { - margin: 0 calc(-60px/2); - width: calc(100% + 60px); -} - -.elementor-69 .elementor-element.elementor-element-338e860 .portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper { - padding: 0 calc(60px/2); -} - -.elementor-69 .elementor-element.elementor-element-338e860 .owl-carousel.owl-theme .owl-nav { - left: calc(60px/2 + 30px); - right: calc(60px/2 + 30px); -} - -.elementor-69 .elementor-element.elementor-element-338e860 .owl-carousel.owl-theme:hover .owl-nav { - left: calc(60px/2 + 20px); - right: calc(60px/2 + 20px); -} - -.elementor-69 .elementor-element.elementor-element-338e860 .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; -} - -.elementor-69 .elementor-element.elementor-element-338e860 .owl-dots .owl-dot.active span { - border-color: #c01227; -} - -.elementor-69 .elementor-element.elementor-element-3d66841 .portfolio-listing-wrapper.owl-carousel { - margin: 0 calc(-7px/2); - width: calc(100% + 7px); -} - -.elementor-69 .elementor-element.elementor-element-3d66841 .portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper { - padding: 0 calc(7px/2); -} - -.elementor-69 .elementor-element.elementor-element-3d66841 .owl-carousel.owl-theme .owl-nav { - left: calc(7px/2 + 30px); - right: calc(7px/2 + 30px); -} - -.elementor-69 .elementor-element.elementor-element-3d66841 .owl-carousel.owl-theme:hover .owl-nav { - left: calc(7px/2 + 20px); - right: calc(7px/2 + 20px); -} - -.elementor-69 .elementor-element.elementor-element-65072bf .owl-dots .owl-dot:not(.active) span { - border-color: #D4D4D4; -} - -.elementor-69 .elementor-element.elementor-element-65072bf .owl-dots .owl-dot.active span { - border-color: #1F1F1F; -} - -@media(max-width: 1200px) { - - .elementor-69 .elementor-element.elementor-element-b7a76bc .owl-carousel.owl-theme .content-item { - height: 750px; - } - - .elementor-69 .elementor-element.elementor-element-338e860 .owl-carousel { - padding: 0px 100px 0px 0px; - } - - .elementor-69 .elementor-element.elementor-element-338e860 .portfolio-listing-wrapper.owl-carousel { - margin: 0 calc(-40px/2); - width: calc(100% + 40px); - } - - .elementor-69 .elementor-element.elementor-element-338e860 .portfolio-listing-wrapper.owl-carousel .portfolio-item-wrapper { - padding: 0 calc(40px/2); - } - - .elementor-69 .elementor-element.elementor-element-338e860 .owl-carousel.owl-theme .owl-nav { - left: calc(40px/2 + 30px); - right: calc(40px/2 + 30px); - } - - .elementor-69 .elementor-element.elementor-element-338e860 .owl-carousel.owl-theme:hover .owl-nav { - left: calc(40px/2 + 20px); - right: calc(40px/2 + 20px); - } -} - -@media(max-width: 1020px) { - - .elementor-69 .elementor-element.elementor-element-b7a76bc .owl-carousel.owl-theme .content-item { - height: 500px; - } - - .elementor-69 .elementor-element.elementor-element-b7a76bc .owl-carousel .owl-stage-outer { - border-radius: 25px 25px 25px 25px; - } -} - -@media(max-width: 840px) { - - .elementor-69 .elementor-element.elementor-element-b7a76bc .owl-carousel.owl-theme .content-item { - height: 600px; - } -} - -@media(max-width: 660px) { - - .elementor-69 .elementor-element.elementor-element-b7a76bc .owl-carousel.owl-theme .content-item { - height: 540px; - } -} - -@media(max-width: 480px) { - - .elementor-69 .elementor-element.elementor-element-338e860 .owl-carousel { - padding: 0px 60px 0px 0px; - } -} - -.elementor-6585 .elementor-element.elementor-element-3cd920c { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --padding-top: 20px; - --padding-bottom: 20px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-6585 .elementor-element.elementor-element-b29b8fc { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --overflow: hidden; - --border-radius: 25px 25px 25px 25px; - --padding-top: 122px; - --padding-bottom: 62px; - --padding-left: 0px; - --padding-right: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-b29b8fc:not(.elementor-motion-effects-element-type-background) { - background-color: #1F1F1F; -} - -.elementor-6585 .elementor-element.elementor-element-ef6fa6d { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --justify-content: space-between; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-6585 .elementor-element.elementor-element-9990148 { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --padding-top: 18px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; -} - -body:not(.rtl) .elementor-6585 .elementor-element.elementor-element-8899bdf { - left: -138px; -} - -.elementor-6585 .elementor-element.elementor-element-8899bdf { - top: 185px; - z-index: 0; -} - -.elementor-6585 .elementor-element.elementor-element-8899bdf img { - width: 965px; - max-width: 965px; -} - -.elementor-6585 .elementor-element.elementor-element-a0e7516 > .elementor-widget-container { - margin: 0px 0px 21px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-a0e7516 .logico-title { - font-size: 14px; - line-height: 2.1428em; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-670d1b2 > .elementor-widget-container { - margin: 27px 50px 0px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-670d1b2 { - --logico-default-text-color: #E7E7E7; - color: #E7E7E7; -} - -.elementor-6585 .elementor-element.elementor-element-2631b42 { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --margin-top: 72px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-df89993 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-69b6892 .logico-title { - font-weight: 700; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-87be926 > .elementor-widget-container { - margin: 20px 0px 0px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-87be926 { - font-size: 16px; - line-height: 1.75em; - color: #FFFFFF ; - --logico-default-text-color: #FFFFFF; - --logico-accent-color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-f5d8e63 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-774e540 .logico-title { - font-weight: 700; - letter-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-9c1cf03 > .elementor-widget-container { - margin: 20px 0px 0px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-9c1cf03 { - font-size: 16px; - line-height: 1.75em; - color: #FFFFFF; - --logico-default-text-color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-645be8d { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --gap: 0px 40px; - --row-gap: 0px; - --column-gap: 40px; - --margin-top: 52px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-a96d151 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-37e647f .logico-title { - font-weight: 700; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-ba67644 > .elementor-widget-container { - margin: 20px 0px 0px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-ba67644 { - font-size: 16px; - line-height: 1.75em; - color: #FFFFFF; - --logico-default-text-color: #FFFFFF; - --logico-accent-color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-9ba4b82 { - --display: flex; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-e9a5d79 .logico-title { - font-weight: 700; - letter-spacing: -0.03em; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-a6bccba { - --grid-template-columns: repeat(0, auto); - --icon-size: 16px; - --grid-column-gap: 38px; - --grid-row-gap: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-a6bccba > .elementor-widget-container { - margin: 25px 0px 0px -3px; -} - -.elementor-6585 .elementor-element.elementor-element-a6bccba .elementor-social-icon { - background-color: #FFFFFF00; - --icon-padding: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-a6bccba .elementor-social-icon i { - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-a6bccba .elementor-social-icon svg { - fill: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-a6bccba .elementor-social-icon:hover i { - color: #c01227; -} - -.elementor-6585 .elementor-element.elementor-element-a6bccba .elementor-social-icon:hover svg { - fill: #c01227; -} - -.elementor-6585 .elementor-element.elementor-element-a5c503d { - --display: flex; - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --border-radius: 25px 25px 25px 25px; - --padding-top: 85px; - --padding-bottom: 75px; - --padding-left: 105px; - --padding-right: 105px; -} - -.elementor-6585 .elementor-element.elementor-element-a5c503d:not(.elementor-motion-effects-element-type-background) { - background-color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-535776a > .elementor-widget-container { - margin: 0px 0px 24px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-535776a .logico-title { - font-size: 30px; - font-weight: 600; - line-height: 1.3333em; - letter-spacing: -0.03em; - color: #111111; -} - -.elementor-6585 .elementor-element.elementor-element-0e6fedf > .elementor-widget-container { - margin: 10px 0px 0px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-0e6fedf div.wpforms-container .wpforms-form .wpforms-field-label { - font-size: 14px; -} - -.elementor-6585 .elementor-element.elementor-element-0e6fedf .wpforms-container .wpforms-submit-container { - padding-top: 28px; -} - -.elementor-6585 .elementor-element.elementor-element-e183a77 { - --display: flex; - --flex-direction: row; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --justify-content: space-between; - --align-items: flex-end; - --gap: 0px 0px; - --row-gap: 0px; - --column-gap: 0px; - --margin-top: 216px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-6585 .elementor-element.elementor-element-5219697 { - --display: flex; -} - -.elementor-6585 .elementor-element.elementor-element-e6af8aa { - width: var( --container-widget-width, 800px ); - max-width: 800px; - --container-widget-width: 800px; - --container-widget-flex-grow: 0; -} - -.elementor-6585 .elementor-element.elementor-element-e6af8aa .logico-title { - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-ba22941 { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-6585 .elementor-element.elementor-element-54629ca { - --divider-border-style: solid; - --divider-color: #CBCBCB; - --divider-border-width: 1px; -} - -.elementor-6585 .elementor-element.elementor-element-54629ca > .elementor-widget-container { - margin: 72px 0px 122px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-54629ca .elementor-divider-separator { - width: 100%; -} - -.elementor-6585 .elementor-element.elementor-element-54629ca .elementor-divider { - padding-block-start:0px;padding-block-end:0px;} - -.elementor-6585 .elementor-element.elementor-element-3f1ba7a { - --display: flex; - --flex-direction: row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --gap: 50px 20px; - --row-gap: 50px; - --column-gap: 20px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; -} - -.elementor-6585 .elementor-element.elementor-element-64e2e81 { - --display: flex; -} - -.elementor-6585 .elementor-element.elementor-element-b5c897d { - text-align: start; -} - -.elementor-6585 .elementor-element.elementor-element-b5c897d img { - width: 153px; -} - -.elementor-6585 .elementor-element.elementor-element-e4e6486 { - --grid-template-columns: repeat(0, auto); - --icon-size: 16px; - --grid-column-gap: 38px; - --grid-row-gap: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-e4e6486 > .elementor-widget-container { - margin: 40px 0px 0px -3px; -} - -.elementor-6585 .elementor-element.elementor-element-e4e6486 .elementor-social-icon { - background-color: #FFFFFF00; - --icon-padding: 0px; -} - -.elementor-6585 .elementor-element.elementor-element-e4e6486 .elementor-social-icon i { - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-e4e6486 .elementor-social-icon svg { - fill: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-e4e6486 .elementor-social-icon:hover i { - color: #c01227; -} - -.elementor-6585 .elementor-element.elementor-element-e4e6486 .elementor-social-icon:hover svg { - fill: #c01227; -} - -.elementor-6585 .elementor-element.elementor-element-5b73dd3 { - --display: flex; -} - -.elementor-6585 .elementor-element.elementor-element-10ead4d > .elementor-widget-container { - margin: 1px 0px 8px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-10ead4d .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-b2507df .logico-custom-menu-widget li { - font-size: 16px; -} - -.elementor-6585 .elementor-element.elementor-element-b2507df .logico-custom-menu-widget li, .elementor-6585 .elementor-element.elementor-element-b2507df .logico-custom-menu-widget li a { - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-b2507df .logico-custom-menu-widget li a:hover { - color: #c01227; - border-color: #c01227; -} - -.elementor-6585 .elementor-element.elementor-element-451f15c { - --display: flex; -} - -.elementor-6585 .elementor-element.elementor-element-0ec06ff > .elementor-widget-container { - margin: 1px 0px 8px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-0ec06ff .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-a219b7d .logico-custom-menu-widget li { - font-size: 16px; -} - -.elementor-6585 .elementor-element.elementor-element-a219b7d .logico-custom-menu-widget li, .elementor-6585 .elementor-element.elementor-element-a219b7d .logico-custom-menu-widget li a { - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-a219b7d .logico-custom-menu-widget li a:hover { - color: #c01227; - border-color: #c01227; -} - -.elementor-6585 .elementor-element.elementor-element-44a1f5d { - --display: flex; -} - -.elementor-6585 .elementor-element.elementor-element-0edc8fd > .elementor-widget-container { - margin: 1px 0px 8px 0px; -} - -.elementor-6585 .elementor-element.elementor-element-0edc8fd .logico-title { - font-size: 20px; - font-weight: 600; - line-height: 1.5em; - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-189484a .logico-custom-menu-widget li { - font-size: 16px; -} - -.elementor-6585 .elementor-element.elementor-element-189484a .logico-custom-menu-widget li, .elementor-6585 .elementor-element.elementor-element-189484a .logico-custom-menu-widget li a { - color: #FFFFFF; -} - -.elementor-6585 .elementor-element.elementor-element-189484a .logico-custom-menu-widget li a:hover { - color: #c01227; - border-color: #c01227; -} - -@media(min-width: 481px) { - .elementor-6585 .elementor-element.elementor-element-9990148 { - --width:45%; - } - - .elementor-6585 .elementor-element.elementor-element-df89993 { - --width: 37%; - } - - .elementor-6585 .elementor-element.elementor-element-f5d8e63 { - --width: 56%; - } - - .elementor-6585 .elementor-element.elementor-element-a96d151 { - --width: 37%; - } - - .elementor-6585 .elementor-element.elementor-element-9ba4b82 { - --width: 56%; - } - - .elementor-6585 .elementor-element.elementor-element-a5c503d { - --width: 50%; - } - - .elementor-6585 .elementor-element.elementor-element-5219697 { - --width: 70%; - } - - .elementor-6585 .elementor-element.elementor-element-64e2e81 { - --width: 50%; - } - - .elementor-6585 .elementor-element.elementor-element-5b73dd3 { - --width: 16.6667%; - } - - .elementor-6585 .elementor-element.elementor-element-451f15c { - --width: 16.6667%; - } - - .elementor-6585 .elementor-element.elementor-element-44a1f5d { - --width: 16.6667%; - } -} - -@media(max-width: 1200px) and (min-width:481px) { - .elementor-6585 .elementor-element.elementor-element-df89993 { - --width:50%; - } - - .elementor-6585 .elementor-element.elementor-element-f5d8e63 { - --width: 50%; - } - - .elementor-6585 .elementor-element.elementor-element-a96d151 { - --width: 50%; - } - - .elementor-6585 .elementor-element.elementor-element-9ba4b82 { - --width: 50%; - } - - .elementor-6585 .elementor-element.elementor-element-64e2e81 { - --width: 42%; - } -} - -@media(max-width: 1020px) and (min-width:481px) { - .elementor-6585 .elementor-element.elementor-element-9990148 { - --width:100%; - } - - .elementor-6585 .elementor-element.elementor-element-a5c503d { - --width: 100%; - } - - .elementor-6585 .elementor-element.elementor-element-5219697 { - --width: 100%; - } -} - -@media(max-width: 840px) and (min-width:481px) { - .elementor-6585 .elementor-element.elementor-element-64e2e81 { - --width:48%; - } - - .elementor-6585 .elementor-element.elementor-element-5b73dd3 { - --width: 48%; - } - - .elementor-6585 .elementor-element.elementor-element-451f15c { - --width: 48%; - } - - .elementor-6585 .elementor-element.elementor-element-44a1f5d { - --width: 48%; - } -} - -@media(max-width: 660px) and (min-width:481px) { - .elementor-6585 .elementor-element.elementor-element-64e2e81 { - --width:47%; - } - - .elementor-6585 .elementor-element.elementor-element-5b73dd3 { - --width: 47%; - } - - .elementor-6585 .elementor-element.elementor-element-451f15c { - --width: 47%; - } - - .elementor-6585 .elementor-element.elementor-element-44a1f5d { - --width: 47%; - } -} - -@media(max-width: 1200px) { - .elementor-6585 .elementor-element.elementor-element-b29b8fc { - --padding-top:120px; - --padding-bottom: 62px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-ef6fa6d { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-6585 .elementor-element.elementor-element-670d1b2 > .elementor-widget-container { - margin: 27px 0px 0px 0px; - } - - .elementor-6585 .elementor-element.elementor-element-2631b42 { - --gap: 0px 20px; - --row-gap: 0px; - --column-gap: 20px; - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-645be8d { - --gap: 0px 20px; - --row-gap: 0px; - --column-gap: 20px; - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-a5c503d { - --padding-top: 50px; - --padding-bottom: 50px; - --padding-left: 50px; - --padding-right: 50px; - } - - .elementor-6585 .elementor-element.elementor-element-e183a77 { - --margin-top: 150px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-6585 .elementor-element.elementor-element-ba22941 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } - - .elementor-6585 .elementor-element.elementor-element-54629ca > .elementor-widget-container { - margin: 72px 0px 90px 0px; - } - - .elementor-6585 .elementor-element.elementor-element-3f1ba7a { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 30px; - --padding-right: 30px; - } -} - -@media(max-width: 1020px) { - .elementor-6585 .elementor-element.elementor-element-3cd920c { - --padding-top:0px; - --padding-bottom: 10px; - --padding-left: 10px; - --padding-right: 10px; - } - - .elementor-6585 .elementor-element.elementor-element-b29b8fc { - --padding-top: 120px; - --padding-bottom: 60px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-ef6fa6d { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } - - .elementor-6585 .elementor-element.elementor-element-9990148 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 0px; - --padding-right: 0px; - } - - body:not(.rtl) .elementor-6585 .elementor-element.elementor-element-8899bdf { - left: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-8899bdf { - top: 150px; - } - - .elementor-6585 .elementor-element.elementor-element-8899bdf img { - max-width: 100%; - } - - .elementor-6585 .elementor-element.elementor-element-a5c503d { - --margin-top: 70px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 85px; - --padding-bottom: 75px; - --padding-left: 105px; - --padding-right: 105px; - } - - .elementor-6585 .elementor-element.elementor-element-e183a77 { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --margin-top: 120px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-ba22941 { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } -} - -@media(max-width: 840px) { - .elementor-6585 .elementor-element.elementor-element-2631b42 { - --flex-direction:row; - --container-widget-width: initial; - --container-widget-height: 100%; - --container-widget-flex-grow: 1; - --container-widget-align-self: stretch; - --flex-wrap-mobile: wrap; - --gap: 0px 20px; - --row-gap: 0px; - --column-gap: 20px; - --flex-wrap: nowrap; - } - - .elementor-6585 .elementor-element.elementor-element-645be8d { - --flex-wrap: nowrap; - } - - .elementor-6585 .elementor-element.elementor-element-54629ca > .elementor-widget-container { - margin: 60px 0px 60px 0px; - } -} - -@media(max-width: 660px) { - .elementor-6585 .elementor-element.elementor-element-b29b8fc { - --padding-top:70px; - --padding-bottom: 60px; - --padding-left: 0px; - --padding-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-ef6fa6d { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-6585 .elementor-element.elementor-element-a5c503d { - --padding-top: 50px; - --padding-bottom: 30px; - --padding-left: 50px; - --padding-right: 50px; - } - - .elementor-6585 .elementor-element.elementor-element-535776a .logico-title { - font-size: 24px; - } - - .elementor-6585 .elementor-element.elementor-element-e183a77 { - --flex-direction: column; - --container-widget-width: calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% ); - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - --justify-content: flex-start; - --align-items: center; - --margin-top: 90px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-6585 .elementor-element.elementor-element-e6af8aa .logico-title { - text-align: center; - } - - .elementor-6585 .elementor-element.elementor-element-ba22941 { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } - - .elementor-6585 .elementor-element.elementor-element-3f1ba7a { - --padding-top: 0px; - --padding-bottom: 0px; - --padding-left: 20px; - --padding-right: 20px; - } -} - -@media(max-width: 480px) { - .elementor-6585 .elementor-element.elementor-element-2631b42 { - --flex-direction:column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } - - .elementor-6585 .elementor-element.elementor-element-f5d8e63 { - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-645be8d { - --flex-direction: column; - --container-widget-width: 100%; - --container-widget-height: initial; - --container-widget-flex-grow: 0; - --container-widget-align-self: initial; - --flex-wrap-mobile: wrap; - } - - .elementor-6585 .elementor-element.elementor-element-9ba4b82 { - --margin-top: 50px; - --margin-bottom: 0px; - --margin-left: 0px; - --margin-right: 0px; - } - - .elementor-6585 .elementor-element.elementor-element-a5c503d { - --padding-top: 40px; - --padding-bottom: 40px; - --padding-left: 25px; - --padding-right: 25px; - } - - .elementor-6585 .elementor-element.elementor-element-535776a > .elementor-widget-container { - margin: 0px 0px 14px 0px; - } -} - - -:root { - --wp--preset--aspect-ratio--square: 1; - --wp--preset--aspect-ratio--4-3: 4/3; - --wp--preset--aspect-ratio--3-4: 3/4; - --wp--preset--aspect-ratio--3-2: 3/2; - --wp--preset--aspect-ratio--2-3: 2/3; - --wp--preset--aspect-ratio--16-9: 16/9; - --wp--preset--aspect-ratio--9-16: 9/16; - --wp--preset--color--black: #000000; - --wp--preset--color--cyan-bluish-gray: #abb8c3; - --wp--preset--color--white: #ffffff; - --wp--preset--color--pale-pink: #f78da7; - --wp--preset--color--vivid-red: #cf2e2e; - --wp--preset--color--luminous-vivid-orange: #ff6900; - --wp--preset--color--luminous-vivid-amber: #fcb900; - --wp--preset--color--light-green-cyan: #7bdcb5; - --wp--preset--color--vivid-green-cyan: #00d084; - --wp--preset--color--pale-cyan-blue: #8ed1fc; - --wp--preset--color--vivid-cyan-blue: #0693e3; - --wp--preset--color--vivid-purple: #9b51e0; - --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%); - --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%); - --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%); - --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%); - --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%); - --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%); - --wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%); - --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%); - --wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%); - --wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%); - --wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%); - --wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%); - --wp--preset--font-size--small: 13px; - --wp--preset--font-size--medium: 20px; - --wp--preset--font-size--large: 36px; - --wp--preset--font-size--x-large: 42px; - --wp--preset--font-family--text-font: Manrope, sans-serif; - --wp--preset--font-family--heading-font: "Space Grotesk", sans-serif; - --wp--preset--spacing--20: 0.44rem; - --wp--preset--spacing--30: 0.67rem; - --wp--preset--spacing--40: 1rem; - --wp--preset--spacing--50: 1.5rem; - --wp--preset--spacing--60: 2.25rem; - --wp--preset--spacing--70: 3.38rem; - --wp--preset--spacing--80: 5.06rem; - --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4); - --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0); - --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0); -} - -:root { - --wp--style--global--content-size: 1340px; - --wp--style--global--wide-size: 1340px; -} - -:where(body) { - margin: 0; -} - -:where(.is-layout-flex) { - gap: 0.5em; -} - -body .is-layout-flex { - display: flex; -} - -.is-layout-flex { - flex-wrap: wrap; - align-items: center; -} - -.is-layout-flex > :is(*, div) { - margin: 0; -} - -body { - background-color: #ffffff; - color: #333333; - padding-top: 0px; - padding-right: 0px; - padding-bottom: 0px; - padding-left: 0px; -} - -h1 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 120px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h2 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 80px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h3 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 60px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h4 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 40px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h5 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 30px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h6 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 25px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -:root :where(.wp-element-button, .wp-block-button__link) { - background-color: #32373c; - border-width: 0; - color: #fff; - font-family: inherit; - font-size: inherit; - font-style: inherit; - font-weight: inherit; - letter-spacing: inherit; - line-height: inherit; - padding-top: calc(0.667em + 2px); - padding-right: calc(1.333em + 2px); - padding-bottom: calc(0.667em + 2px); - padding-left: calc(1.333em + 2px); - text-decoration: none; - text-transform: inherit; -} - -.has-white-color { - color: var(--wp--preset--color--white) !important; -} - -.has-text-font-font-family { - font-family: var(--wp--preset--font-family--text-font) !important; -} - - - @font-face { - font-family: 'Manrope Alt'; - src: url('/fonts/Manrope-Bold.ttf') format('truetype'); - font-weight: bold; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 800; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 200; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 300; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 500; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: normal; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: url('/fonts/Manrope-SemiBold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; - } -:root { - --logico-viewport-mobile: 480px; - --logico-viewport-mobile-extra: 660px; - --logico-viewport-tablet: 840px; - --logico-viewport-tablet-extra: 1020px; - --logico-viewport-laptop: 1200px; - --logico-viewport-widescreen: 2400px; - - --logico-content-width: 1380px; - - --logico-default-text-color: #333333; - --logico-dark-text-color: #111111; - --logico-light-text-color: #a3a3a3; - --logico-accent-color: #c01227; - --logico-accent-alter-color: #c01227; - --logico-border-color: #adadad; - --logico-border-hover-color: #111111; - --logico-background-color: #ffffff; - --logico-background-alter-color: #f9f7f6; - --logico-button-text-color: #333333; - --logico-button-border-color: #333333; - --logico-button-background-color: rgba(255, 255, 255, 0); - --logico-button-icon-color: #ffffff; - --logico-button-text-hover: #ffffff; - --logico-button-background-hover: #c01227; - --logico-button-icon-hover: #ffffff; - - --logico-body-font-size: 18px; - --logico-body-line-height: 1.6667em; - --logico-body-font-family: Manrope; - --logico-body-font-style: normal; - --logico-body-font-weight: 400; - --logico-body-text-decoration: none; - - --logico-h1-font-size: 120px; - --logico-h1-line-height: 1.2em; - --logico-h1-letter-spacing: -0.03em; - --logico-h1-font-family: Space Grotesk; - --logico-h1-text-transform: uppercase; - --logico-h1-font-style: normal; - --logico-h1-font-weight: 500; - - --logico-h2-font-size: 80px; - --logico-h2-line-height: 1.2em; - --logico-h2-letter-spacing: -0.03em; - --logico-h2-font-family: Space Grotesk; - --logico-h2-text-transform: uppercase; - --logico-h2-font-style: normal; - --logico-h2-font-weight: 500; - - --logico-h3-font-size: 60px; - --logico-h3-line-height: 1.2em; - --logico-h3-letter-spacing: -0.03em; - --logico-h3-font-family: Space Grotesk; - --logico-h3-text-transform: uppercase; - --logico-h3-font-style: normal; - --logico-h3-font-weight: 500; - - --logico-h4-font-size: 40px; - --logico-h4-line-height: 1.2em; - --logico-h4-letter-spacing: -0.03em; - --logico-h4-font-family: Space Grotesk; - --logico-h4-text-transform: uppercase; - --logico-h4-font-style: normal; - --logico-h4-font-weight: 500; - - --logico-h5-font-size: 30px; - --logico-h5-line-height: 1.2em; - --logico-h5-letter-spacing: -0.03em; - --logico-h5-font-family: Space Grotesk; - --logico-h5-text-transform: uppercase; - --logico-h5-font-style: normal; - --logico-h5-font-weight: 500; - - --logico-h6-font-size: 25px; - --logico-h6-line-height: 1.2em; - --logico-h6-letter-spacing: -0.03em; - --logico-h6-font-family: Space Grotesk; - --logico-h6-text-transform: uppercase; - --logico-h6-font-style: normal; - --logico-h6-font-weight: 500; - - --logico-button-font-size: 14px; - --logico-button-font-family: Manrope; - --logico-button-font-weight: 600; - - --logico-paragraph-spacing: 1.7em; - - --logico-h1-font-size-laptop: 80px; - --logico-h2-font-size-laptop: 60px; - --logico-h3-font-size-laptop: 46px; - --logico-h4-font-size-laptop: 34px; - --logico-h5-font-size-laptop: 28px; - --logico-h6-font-size-laptop: 22px; - --logico-body-font-size-tablet: 16px; - --logico-h1-font-size-tablet: 60px; - --logico-h2-font-size-tablet: 50px; - --logico-h3-font-size-tablet: 36px; - --logico-h4-font-size-tablet: 28px; - --logico-h5-font-size-tablet: 24px; - --logico-h6-font-size-tablet: 20px; - --logico-h1-font-size-mobile-extra: 40px; - --logico-h2-font-size-mobile-extra: 32px; - --logico-h3-font-size-mobile-extra: 28px; - --logico-h4-font-size-mobile-extra: 23px; - --logico-h5-font-size-mobile-extra: 20px; - --logico-h6-font-size-mobile-extra: 18px; - - --logico-radius-small: 10px; - --logico-radius-medium: 15px; - --logico-radius-large: 25px; -} - - -.logico-front-end { - font-size: 18px; - line-height: 1.6667em; - font-family: Manrope; - font-style: normal; - font-weight: 400; - text-decoration: none; -} - -.logico-front-end h1:not([class*=logico-title-h]) { - font-size: 120px; - line-height: 1.2em; - letter-spacing: -0.03em; - /* font-family: Space Grotesk; */ - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h2:not([class*=logico-title-h]) { - font-size: 80px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: Space Grotesk; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h3:not([class*=logico-title-h]) { - font-size: 60px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h4:not([class*=logico-title-h]) { - font-size: 40px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: Space Grotesk; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h5:not([class*=logico-title-h]) { - font-size: 30px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: Space Grotesk; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h6:not([class*=logico-title-h]) { - font-size: 25px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: Space Grotesk; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} -.logico-alter-button { - font-size: 14px; - font-family: Manrope; - font-weight: 600; -} - -.logico-front-end p { - margin-bottom: 1.7em; -} -@media only screen and (max-width: 1200px) { - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 80px; - } - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 60px; - } - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 46px; - } - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 34px; - } - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 28px; - } - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 22px; - } -} -@media only screen and (max-width: 840px) { - - .logico-front-end { - font-size: 16px; - } - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 60px; - } - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 50px; - } - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 36px; - } - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 28px; - } - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 24px; - } - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 20px; - } -} -@media only screen and (max-width: 660px) { - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 40px; - } - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 32px; - } - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 28px; - } - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 23px; - } - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 20px; - } - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 18px; - } -} - -img:is([sizes=auto i]){contain-intrinsic-size:3000px 1500px} - - - - - -.elementor-kit-5 { - --e-global-color-primary: #111111; - --e-global-color-secondary: #777777; - --e-global-color-text: #333333; - --e-global-color-accent: #C01227; - --e-global-typography-primary-font-family: "Roboto"; - --e-global-typography-primary-font-weight: 600; - --e-global-typography-secondary-font-family: "Roboto Slab"; - --e-global-typography-secondary-font-weight: 400; - --e-global-typography-text-font-family: "Manrope"; - --e-global-typography-text-font-size: 18px; - --e-global-typography-text-font-weight: 400; - --e-global-typography-text-line-height: 1.6667em; - --e-global-typography-accent-font-family: "Manrope"; - --e-global-typography-accent-font-weight: 400; - --e-global-typography-accent-line-height: 1.6667em; - color: #333333; - font-family: "Manrope", Sans-serif; - font-size: 18px; - font-weight: 400; - font-style: normal; - text-decoration: none; - line-height: 1.6667em; -} - -.elementor-kit-5 p { - margin-block-end:1.7em;} - -.elementor-kit-5 a { - color: #C01227; - text-decoration: underline; -} - -.elementor-kit-5 h1 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 120px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h2 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 80px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h3 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 60px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h4 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 40px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h5 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 30px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 h6 { - color: #111111; - font-family: "Space Grotesk", Sans-serif; - font-size: 25px; - font-weight: 500; - text-transform: uppercase; - font-style: normal; - line-height: 1.2em; - letter-spacing: -0.03em; -} - -.elementor-kit-5 button,.elementor-kit-5 input[type="button"],.elementor-kit-5 input[type="submit"] { - font-family: "Manrope", Sans-serif; - font-size: 14px; - font-weight: 600; -} - -.e-con { - --container-max-width: 1380px; -} - -.elementor-widget:not(:last-child) { - margin-block-end:0px;} - -.elementor-element { - --widgets-spacing: 0px 40px; - --widgets-spacing-row: 0px; - --widgets-spacing-column: 40px; -} - -@media(max-width: 1200px) { - .elementor-kit-5 h1 { - font-size:80px; - } - - .elementor-kit-5 h2 { - font-size: 60px; - } - - .elementor-kit-5 h3 { - font-size: 46px; - } - - .elementor-kit-5 h4 { - font-size: 34px; - } - - .elementor-kit-5 h5 { - font-size: 28px; - } - - .elementor-kit-5 h6 { - font-size: 22px; - } -} - -@media(max-width: 840px) { - .elementor-kit-5 { - --e-global-typography-text-font-size:16px; - --e-global-typography-accent-font-size: 16px; - font-size: 16px; - } - - .elementor-kit-5 h1 { - font-size: 60px; - } - - .elementor-kit-5 h2 { - font-size: 50px; - } - - .elementor-kit-5 h3 { - font-size: 36px; - } - - .elementor-kit-5 h4 { - font-size: 28px; - } - - .elementor-kit-5 h5 { - font-size: 24px; - } - - .elementor-kit-5 h6 { - font-size: 20px; - } - - .e-con { - --container-max-width: 1024px; - } -} - -@media(max-width: 660px) { - .elementor-kit-5 h1 { - font-size:40px; - } - - .elementor-kit-5 h2 { - font-size: 32px; - } - - .elementor-kit-5 h3 { - font-size: 28px; - } - - .elementor-kit-5 h4 { - font-size: 23px; - } - - .elementor-kit-5 h5 { - font-size: 20px; - } - - .elementor-kit-5 h6 { - font-size: 18px; - } -} - -@media(max-width: 480px) { - - .e-con { - --container-max-width: 767px; - } -} - -.elementor-6473 .elementor-element.elementor-element-791327c .owl-carousel.owl-theme .content-item { - height: 924px; -} - -.elementor-6473 .elementor-element.elementor-element-791327c .owl-carousel .owl-stage-outer { - border-radius: 25px 25px 25px 25px; -} - -.elementor-6473 .elementor-element.elementor-element-791327c .content-slider.nav-view-default .owl-nav { - left: 10px; - right: 10px; -} - -.elementor-6473 .elementor-element.elementor-element-791327c .owl-dots .owl-dot:not(.active) span { - border-color: #FFFFFF; -} - -@media(max-width: 1200px) { - - .elementor-6473 .elementor-element.elementor-element-791327c .owl-carousel.owl-theme .content-item { - height: 700px; - } -} - - -:root { - --wp--preset--aspect-ratio--square: 1; - --wp--preset--aspect-ratio--4-3: 4/3; - --wp--preset--aspect-ratio--3-4: 3/4; - --wp--preset--aspect-ratio--3-2: 3/2; - --wp--preset--aspect-ratio--2-3: 2/3; - --wp--preset--aspect-ratio--16-9: 16/9; - --wp--preset--aspect-ratio--9-16: 9/16; - --wp--preset--color--black: #000000; - --wp--preset--color--cyan-bluish-gray: #abb8c3; - --wp--preset--color--white: #ffffff; - --wp--preset--color--pale-pink: #f78da7; - --wp--preset--color--vivid-red: #cf2e2e; - --wp--preset--color--luminous-vivid-orange: #ff6900; - --wp--preset--color--luminous-vivid-amber: #fcb900; - --wp--preset--color--light-green-cyan: #7bdcb5; - --wp--preset--color--vivid-green-cyan: #00d084; - --wp--preset--color--pale-cyan-blue: #8ed1fc; - --wp--preset--color--vivid-cyan-blue: #0693e3; - --wp--preset--color--vivid-purple: #9b51e0; - --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%); - --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%); - --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%); - --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%); - --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%); - --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%); - --wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%); - --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%); - --wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%); - --wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%); - --wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%); - --wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%); - --wp--preset--font-size--small: 13px; - --wp--preset--font-size--medium: 20px; - --wp--preset--font-size--large: 36px; - --wp--preset--font-size--x-large: 42px; - --wp--preset--font-family--text-font: Manrope, sans-serif; - --wp--preset--font-family--heading-font: "Space Grotesk", sans-serif; - --wp--preset--spacing--20: 0.44rem; - --wp--preset--spacing--30: 0.67rem; - --wp--preset--spacing--40: 1rem; - --wp--preset--spacing--50: 1.5rem; - --wp--preset--spacing--60: 2.25rem; - --wp--preset--spacing--70: 3.38rem; - --wp--preset--spacing--80: 5.06rem; - --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4); - --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0); - --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0); -} - -:root { - --wp--style--global--content-size: 1340px; - --wp--style--global--wide-size: 1340px; -} - -:where(body) { - margin: 0; -} - -:where(.is-layout-flex) { - gap: 0.5em; -} - -body .is-layout-flex { - display: flex; -} - -.is-layout-flex { - flex-wrap: wrap; - align-items: center; -} - -.is-layout-flex > :is(*, div) { - margin: 0; -} - -body { - background-color: #ffffff; - color: #333333; - padding-top: 0px; - padding-right: 0px; - padding-bottom: 0px; - padding-left: 0px; -} - -h1 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 120px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h2 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 80px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h3 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 60px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h4 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 40px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h5 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 30px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -h6 { - font-family: var(--wp--preset--font-family--heading-font); - font-size: 25px; - font-weight: 500; - letter-spacing: -0.03em; - line-height: 1.2; - text-transform: uppercase; -} - -:root :where(.wp-element-button, .wp-block-button__link) { - background-color: #32373c; - border-width: 0; - color: #fff; - font-family: inherit; - font-size: inherit; - font-style: inherit; - font-weight: inherit; - letter-spacing: inherit; - line-height: inherit; - padding-top: calc(0.667em + 2px); - padding-right: calc(1.333em + 2px); - padding-bottom: calc(0.667em + 2px); - padding-left: calc(1.333em + 2px); - text-decoration: none; - text-transform: inherit; -} - -.has-white-color { - color: var(--wp--preset--color--white) !important; -} - -.has-text-font-font-family { - font-family: var(--wp--preset--font-family--text-font) !important; -} - - - - @font-face { - font-family: 'Manrope Alt'; - src: url('/fonts/Manrope-Bold.ttf') format('truetype'); - font-weight: bold; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 800; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 200; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 300; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: 500; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: local('Manrope') format('truetype'); - font-weight: normal; - font-style: normal; - } - @font-face { - font-family: 'Manrope Alt'; - src: url('/fonts/Manrope-SemiBold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; - } -:root { - --logico-viewport-mobile: 480px; - --logico-viewport-mobile-extra: 660px; - --logico-viewport-tablet: 840px; - --logico-viewport-tablet-extra: 1020px; - --logico-viewport-laptop: 1200px; - --logico-viewport-widescreen: 2400px; - - --logico-content-width: 1380px; - - --logico-default-text-color: #333333; - --logico-dark-text-color: #111111; - --logico-light-text-color: #a3a3a3; - --logico-accent-color: #c01227; - --logico-accent-alter-color: #c01227; - --logico-border-color: #adadad; - --logico-border-hover-color: #111111; - --logico-background-color: #ffffff; - --logico-background-alter-color: #f9f7f6; - --logico-button-text-color: #333333; - --logico-button-border-color: #333333; - --logico-button-background-color: rgba(255, 255, 255, 0); - --logico-button-icon-color: #ffffff; - --logico-button-text-hover: #ffffff; - --logico-button-background-hover: #c01227; - --logico-button-background-hover: #c01227; - --logico-button-icon-hover: #ffffff; - - --logico-body-font-size: 18px; - --logico-body-line-height: 1.6667em; - --logico-body-font-family: Manrope; - --logico-body-font-style: normal; - --logico-body-font-weight: 400; - --logico-body-text-decoration: none; - - --logico-h1-font-size: 120px; - --logico-h1-line-height: 1.2em; - --logico-h1-letter-spacing: -0.03em; - --logico-h1-font-family: Space Grotesk; - --logico-h1-text-transform: uppercase; - --logico-h1-font-style: normal; - --logico-h1-font-weight: 500; - - --logico-h2-font-size: 80px; - --logico-h2-line-height: 1.2em; - --logico-h2-letter-spacing: -0.03em; - --logico-h2-font-family: Space Grotesk; - --logico-h2-text-transform: uppercase; - --logico-h2-font-style: normal; - --logico-h2-font-weight: 500; - - --logico-h3-font-size: 60px; - --logico-h3-line-height: 1.2em; - --logico-h3-letter-spacing: -0.03em; - --logico-h3-font-family: Space Grotesk; - --logico-h3-text-transform: uppercase; - --logico-h3-font-style: normal; - --logico-h3-font-weight: 500; - - --logico-h4-font-size: 40px; - --logico-h4-line-height: 1.2em; - --logico-h4-letter-spacing: -0.03em; - --logico-h4-font-family: Space Grotesk; - --logico-h4-text-transform: uppercase; - --logico-h4-font-style: normal; - --logico-h4-font-weight: 500; - - --logico-h5-font-size: 30px; - --logico-h5-line-height: 1.2em; - --logico-h5-letter-spacing: -0.03em; - --logico-h5-font-family: Space Grotesk; - --logico-h5-text-transform: uppercase; - --logico-h5-font-style: normal; - --logico-h5-font-weight: 500; - - --logico-h6-font-size: 25px; - --logico-h6-line-height: 1.2em; - --logico-h6-letter-spacing: -0.03em; - --logico-h6-font-family: Space Grotesk; - --logico-h6-text-transform: uppercase; - --logico-h6-font-style: normal; - --logico-h6-font-weight: 500; - - --logico-button-font-size: 14px; - --logico-button-font-family: Manrope; - --logico-button-font-weight: 600; - - --logico-paragraph-spacing: 1.7em; - - --logico-h1-font-size-laptop: 80px; - --logico-h2-font-size-laptop: 60px; - --logico-h3-font-size-laptop: 46px; - --logico-h4-font-size-laptop: 34px; - --logico-h5-font-size-laptop: 28px; - --logico-h6-font-size-laptop: 22px; - --logico-body-font-size-tablet: 16px; - --logico-h1-font-size-tablet: 60px; - --logico-h2-font-size-tablet: 50px; - --logico-h3-font-size-tablet: 36px; - --logico-h4-font-size-tablet: 28px; - --logico-h5-font-size-tablet: 24px; - --logico-h6-font-size-tablet: 20px; - --logico-h1-font-size-mobile-extra: 40px; - --logico-h2-font-size-mobile-extra: 32px; - --logico-h3-font-size-mobile-extra: 28px; - --logico-h4-font-size-mobile-extra: 23px; - --logico-h5-font-size-mobile-extra: 20px; - --logico-h6-font-size-mobile-extra: 18px; - - --logico-radius-small: 10px; - --logico-radius-medium: 15px; - --logico-radius-large: 25px; -} - - -.logico-front-end { - font-size: 18px; - line-height: 1.6667em; - font-family: Manrope; - font-style: normal; - font-weight: 400; - text-decoration: none; -} - -.logico-front-end h1:not([class*=logico-title-h]) { - font-size: 120px; - line-height: 1.2em; - letter-spacing: -0.03em; - /* font-family: Space Grotesk; */ - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h2:not([class*=logico-title-h]) { - font-size: 80px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: Space Grotesk; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h3:not([class*=logico-title-h]) { - font-size: 60px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h4:not([class*=logico-title-h]) { - font-size: 40px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: Space Grotesk; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h5:not([class*=logico-title-h]) { - font-size: 30px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: Space Grotesk; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} - -.logico-front-end h6:not([class*=logico-title-h]) { - font-size: 25px; - line-height: 1.2em; - letter-spacing: -0.03em; - font-family: "Manrope", Sans-serif; - text-transform: uppercase; - font-style: normal; - font-weight: 500; -} -.logico-alter-button { - font-size: 14px; - font-family: Manrope; - font-weight: 600; -} - -.logico-front-end p { - margin-bottom: 1.7em; -} -@media only screen and (max-width: 1200px) { - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 80px; - } - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 60px; - } - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 46px; - } - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 34px; - } - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 28px; - } - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 22px; - } -} -@media only screen and (max-width: 840px) { - - .logico-front-end { - font-size: 16px; - } - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 60px; - } - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 50px; - } - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 36px; - } - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 28px; - } - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 24px; - } - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 20px; - } -} -@media only screen and (max-width: 660px) { - - .logico-front-end h1:not([class*=logico-title-h]) { - font-size: 40px; - } - - .logico-front-end h2:not([class*=logico-title-h]) { - font-size: 32px; - } - - .logico-front-end h3:not([class*=logico-title-h]) { - font-size: 28px; - } - - .logico-front-end h4:not([class*=logico-title-h]) { - font-size: 23px; - } - - .logico-front-end h5:not([class*=logico-title-h]) { - font-size: 20px; - } - - .logico-front-end h6:not([class*=logico-title-h]) { - font-size: 18px; - } -} - - -img:is([sizes=auto i]){contain-intrinsic-size:3000px 1500px} - -.logico-ticker-wrapper .separator { - display: inline-block; - vertical-align: middle; - position: relative; - top: .1956em; - font-size: 31px; - padding: 0 30px; - color: #c01227; - margin: -.2128em -} - - -.logico-alter-button:after,a.logico-alter-button:after { - content: ''; - position: absolute; - display: block; - width: 4.8em; - top: 0; - bottom: 0; - right: 0; - left: initial; - -webkit-border-radius: inherit; - border-radius: inherit; - background-color:#c01227; - font-size: .71428em -} -.logico-alter-button,a.logico-alter-button -{ - display: inline-block; - position: relative; - text-align: center; - padding: 1em 5.21em 1em 1.71em; - min-height: calc(3.4286em + 2px); - font-size: 14px; - line-height: 1.4286em; - font-weight: 600; - letter-spacing: .01em; - text-decoration: none!important; - border-radius: var(--logico-radius-small,0); - -webkit-transition: background 0.45s ease-out,border-color 0.3s,color 0.3s,padding 0.3s; - transition: background 0.45s ease-out,border-color 0.3s,color 0.3s,padding 0.3s; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - outline: none; - cursor: default; - overflow: hidden; - height: auto; - color: var(--logico-button-text-color)!important; - border: solid 1px #C01227 !important; - z-index: 2; - background: -webkit-linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - background: -moz-linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - background: linear-gradient(90deg,var(--logico-button-background-color) 50%,var(--logico-button-background-hover) 50%); - -webkit-background-size: calc(200% + 4px) 100%; - -moz-background-size: calc(200% + 4px) 100%; - -o-background-size: calc(200% + 4px) 100%; - background-size: calc(200% + 4px) 100%; - background-position: -1.7857em 0; - background-repeat: no-repeat -} - -/* STYLE BLOCK 49 */ -/* Force unified style for Smart Logistics button */ - [data-id="c0a45e4"] .logico-alter-button { - background: #33333300 !important; - color: #ffffff !important; - border: 1px solid #fff !important; - padding: 1.1em 5.5em 1.1em 2em !important; - display: inline-block !important; - position: relative !important; - border-radius: 8px !important; - overflow: hidden !important; - z-index: 1 !important; - transition: all 0.4s ease !important; - } - [data-id="c0a45e4"] .logico-alter-button:after { - content: '' !important; - position: absolute !important; - top: 0 !important; - right: 0 !important; - bottom: 0 !important; - width: 4.8em !important; - background: #c01227 !important; - z-index: -1 !important; - transition: all 0.4s ease !important; - } - [data-id="c0a45e4"] .logico-alter-button:hover { - color: #ffffff !important; - } - [data-id="c0a45e4"] .logico-alter-button:hover:after { - width: 100% !important; - } - - [data-id="c0a45e4"] .logico-alter-button:before { - content: '\e80b' !important; - font-family: 'fontello' !important; - position: absolute !important; - right: 0 !important; - top: 0 !important; - bottom: 0 !important; - width: 4.8em !important; - height: 100% !important; - line-height: calc(4.8em + 2px) !important; - display: block !important; - text-align: center !important; - color: #fff !important; - z-index: 2 !important; - } - -/* STYLE BLOCK 50 */ -.howits-hero-custom-bg.elementor-repeater-item-3264830, - .howits-hero-custom-bg.elementor-repeater-item-6867061 { - background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('/images/home1-slide-1.webp') !important; - background-position: center !important; - background-repeat: no-repeat !important; - background-size: cover !important; - } - .howits-hero-custom-bg.elementor-repeater-item-6867061 { - background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('/images/home1-slide-2.webp') !important; - background-position: center !important; - background-repeat: no-repeat !important; - background-size: cover !important; - } - -/* STYLE BLOCK 51: unified mobile gutters for card/content sections */ -@media (max-width: 767px) { - :root { --dm-mobile-gutter: 10px; } - - .elementor.elementor-61 .elementor-element.elementor-element-89a0ca1, - .elementor.elementor-86 .elementor-element.elementor-element-c2c601a, - .elementor.elementor-104 .elementor-element.elementor-element-c70681e { - --padding-left: var(--dm-mobile-gutter) !important; - --padding-right: var(--dm-mobile-gutter) !important; - padding-left: var(--dm-mobile-gutter) !important; - padding-right: var(--dm-mobile-gutter) !important; - box-sizing: border-box !important; - } - - .elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc { - --padding-left: 0px !important; - --padding-right: 0px !important; - padding-left: 0px !important; - padding-right: 0px !important; - box-sizing: border-box !important; - } - - .elementor.elementor-61 .elementor-element.elementor-element-89a0ca1 > .e-con-inner, - .elementor.elementor-61 .elementor-element.elementor-element-3b4a7cc > .e-con-inner, - .elementor.elementor-86 .elementor-element.elementor-element-c2c601a > .e-con-inner, - .elementor.elementor-104 .elementor-element.elementor-element-c70681e > .e-con-inner { - width: 100% !important; - max-width: 100% !important; - margin-left: auto !important; - margin-right: auto !important; - padding-left: 0 !important; - padding-right: 0 !important; - box-sizing: border-box !important; - } - - .elementor.elementor-61 .elementor-element.elementor-element-89a0ca1 > .e-con-inner > .e-con, - .elementor.elementor-86 .elementor-element.elementor-element-c2c601a > .e-con-inner > .e-con, - .elementor.elementor-104 .elementor-element.elementor-element-c70681e > .e-con-inner > .e-con { - --padding-left: 0px !important; - --padding-right: 0px !important; - width: 100% !important; - max-width: 100% !important; - padding-left: 0 !important; - padding-right: 0 !important; - box-sizing: border-box !important; - } - - .elementor.elementor-61 .elementor-element.elementor-element-6829276 { - --e-con-grid-template-columns: minmax(0, 1fr) !important; - --grid-justify-content: stretch !important; - --justify-items: stretch !important; - grid-template-columns: minmax(0, 1fr) !important; - justify-content: stretch !important; - justify-items: stretch !important; - min-width: 0 !important; - } - - .elementor.elementor-61 .industry-solutions-grid, - .elementor.elementor-61 .industry-card-link { - width: 100% !important; - max-width: 100% !important; - min-width: 0 !important; - } - - .comparison-section .container { - width: calc(100% - (var(--dm-mobile-gutter) * 2)) !important; - max-width: calc(100% - (var(--dm-mobile-gutter) * 2)) !important; - margin-left: auto !important; - margin-right: auto !important; - padding-left: 0 !important; - padding-right: 0 !important; - box-sizing: border-box !important; - } - - .wcd-inner { - width: 100% !important; - max-width: 100% !important; - padding-left: 0 !important; - padding-right: 0 !important; - box-sizing: border-box !important; - } -} diff --git a/build/doormile-wings/__next._index.txt b/build/doormile-wings/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/doormile-wings/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/doormile-wings/__next.doormile-wings.txt b/build/doormile-wings/__next.doormile-wings.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/doormile-wings/__next.doormile-wings.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/draco/draco_decoder.js b/build/draco/draco_decoder.js deleted file mode 100644 index 7c84b0b..0000000 --- a/build/draco/draco_decoder.js +++ /dev/null @@ -1,33 +0,0 @@ - -var DracoDecoderModule = (() => { - var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; - if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; - return ( -function(DracoDecoderModule = {}) { - -var Module=typeof DracoDecoderModule!="undefined"?DracoDecoderModule:{};var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var isRuntimeInitialized=false;var isModuleParsed=false;Module["onRuntimeInitialized"]=function(){isRuntimeInitialized=true;if(isModuleParsed){if(typeof Module["onModuleLoaded"]==="function"){Module["onModuleLoaded"](Module)}}};Module["onModuleParsed"]=function(){isModuleParsed=true;if(isRuntimeInitialized){if(typeof Module["onModuleLoaded"]==="function"){Module["onModuleLoaded"](Module)}}};function isVersionSupported(versionString){if(typeof versionString!=="string")return false;const version=versionString.split(".");if(version.length<2||version.length>3)return false;if(version[0]==1&&version[1]>=0&&version[1]<=5)return true;if(version[0]!=0||version[1]>10)return false;return true}Module["isVersionSupported"]=isVersionSupported;var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;err("exiting due to exception: "+toLog)}if(ENVIRONMENT_IS_NODE){var fs=require("fs");var nodePath=require("path");if(ENVIRONMENT_IS_WORKER){scriptDirectory=nodePath.dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}read_=(filename,binary)=>{var ret=tryParseAsDataURI(filename);if(ret){return binary?ret:ret.toString()}filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror)=>{var ret=tryParseAsDataURI(filename);if(ret){onload(ret)}filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);quit_=(status,toThrow)=>{if(keepRuntimeAlive()){process["exitCode"]=status;throw toThrow}logExceptionOnExit(toThrow);process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=url=>{try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;var WebAssembly={Memory:function(opts){this.buffer=new ArrayBuffer(opts["initial"]*65536)},Module:function(binary){},Instance:function(module,info){this.exports=( -// EMSCRIPTEN_START_ASM -function instantiate(ia){function c(d){d.set=function(a,b){this[a]=b};d.get=function(a){return this[a]};return d}var e;var f=new Uint8Array(123);for(var a=25;a>=0;--a){f[48+a]=52+a;f[65+a]=a;f[97+a]=26+a}f[43]=62;f[47]=63;function l(m,n,o){var g,h,a=0,i=n,j=o.length,k=n+(j*3>>2)-(o[j-2]=="=")-(o[j-1]=="=");for(;a>4;if(i>2;if(i>2];o=F[c+12>>2];g=F[c+16>>2];a:{if((e|0)>=(o|0)&g>>>0>=I[c+8>>2]|(e|0)>(o|0)){break a}o=G[g+F[c>>2]|0];g=g+1|0;e=g?e:e+1|0;F[c+16>>2]=g;F[c+20>>2]=e;b:{switch(o|0){case 0:e=a;f=b;g=d;a=0;d=0;j=Z+-64|0;Z=j;F[j+56>>2]=0;F[j+48>>2]=0;F[j+52>>2]=0;F[j+40>>2]=0;F[j+44>>2]=0;F[j+32>>2]=0;F[j+36>>2]=0;F[j+24>>2]=0;F[j+28>>2]=0;F[j+16>>2]=0;F[j+20>>2]=0;F[j+8>>2]=0;F[j+12>>2]=0;c:{if(!Nd(j+8|0,c)){break c}if(!Md(j+8|0,c)|(F[j+20>>2]?0:e)){break c}hc(c,0,0);if(e){s=f<<2;t=F[j+36>>2];u=F[j+48>>2];x=F[j+24>>2];l=F[j+56>>2];i=F[j+52>>2];while(1){d:{if(l>>>0>16383){break d}while(1){if((i|0)<=0){break d}i=i-1|0;F[j+52>>2]=i;l=G[i+u|0]|l<<8;F[j+56>>2]=l;if(l>>>0<16384){continue}break}}a=l&4095;r=F[(a<<2)+x>>2];b=(r<<3)+t|0;l=(L(F[b>>2],l>>>12|0)+a|0)-F[b+4>>2]|0;F[j+56>>2]=l;if((f|0)>0){a=0;if(!G[c+36|0]|r>>>0>32){break c}o=d+f|0;e:{if(!r){ma(g+(d<<2)|0,0,s);break e}y=r&-2;z=r&1;b=F[c+32>>2];h=F[c+28>>2];q=F[c+24>>2];while(1){k=0;a=b;m=0;n=0;if((r|0)!=1){while(1){p=q+(a>>>3|0)|0;f:{if(p>>>0>=h>>>0){p=0;break f}p=G[p|0];b=a+1|0;F[c+32>>2]=b;p=p>>>(a&7)&1;a=b}p=p<>>3|0)|0;if(v>>>0>>0){m=G[v|0];b=a+1|0;F[c+32>>2]=b;m=m>>>(a&7)&1;a=b}v=k|1;k=k+2|0;m=p|m<>>3|0)|0;if(p>>>0>>0){p=G[p|0];b=a+1|0;F[c+32>>2]=b;a=p>>>(a&7)&1}else{a=0}m=a<>2]=m;d=d+1|0;if((o|0)!=(d|0)){continue}break}}d=o}w=f+w|0;if(e>>>0>w>>>0){continue}break}}D[c+36|0]=0;f=F[c+20>>2];a=0;m=F[c+32>>2]+7|0;a=m>>>0<7?1:a;m=a<<29|m>>>3;b=m+F[c+16>>2]|0;a=(a>>>3|0)+f|0;F[c+16>>2]=b;F[c+20>>2]=b>>>0>>0?a+1|0:a;a=1}b=F[j+36>>2];if(b){F[j+40>>2]=b;ja(b)}b=F[j+24>>2];if(b){F[j+28>>2]=b;ja(b)}b=F[j+8>>2];if(b){F[j+12>>2]=b;ja(b)}Z=j- -64|0;return a;case 1:break b;default:break a}}b=0;e=F[c+20>>2];o=F[c+12>>2];g=F[c+16>>2];g:{if((e|0)>=(o|0)&g>>>0>=I[c+8>>2]|(e|0)>(o|0)){break g}o=G[g+F[c>>2]|0];g=g+1|0;e=g?e:e+1|0;F[c+16>>2]=g;F[c+20>>2]=e;h:{switch(o-1|0){case 8:o=a;r=d;e=Z+-64|0;Z=e;F[e+56>>2]=0;F[e+48>>2]=0;F[e+52>>2]=0;F[e+40>>2]=0;F[e+44>>2]=0;F[e+32>>2]=0;F[e+36>>2]=0;F[e+24>>2]=0;F[e+28>>2]=0;F[e+16>>2]=0;F[e+20>>2]=0;F[e+8>>2]=0;F[e+12>>2]=0;h=e+8|0;i:{j:{if(!H[c+38>>1]){break j}if(!Ta(1,h+12|0,c)){break j}b=F[c+8>>2];d=F[c+16>>2];f=b-d|0;i=F[h+12>>2];b=F[c+12>>2]-(F[c+20>>2]+(b>>>0>>0)|0)|0;if(f>>>0>>6>>>0&(b|0)<=0|(b|0)<0){break j}b=F[h>>2];a=F[h+4>>2]-b>>2;k:{if(a>>>0>>0){qa(h,i-a|0);i=F[h+12>>2];break k}if(a>>>0<=i>>>0){break k}F[h+4>>2]=b+(i<<2)}g=1;if(!i){break i}f=F[c+16>>2];d=F[c+20>>2];s=F[h>>2];j=F[c+8>>2];n=F[c+12>>2];b=0;while(1){g=0;if((d|0)>=(n|0)&f>>>0>=j>>>0|(d|0)>(n|0)){break i}g=F[c>>2];p=G[g+f|0];a=d;f=f+1|0;a=f?a:a+1|0;F[c+16>>2]=f;d=a;F[c+20>>2]=a;a=p>>>2|0;l=0;l:{m:{n:{o:{t=p&3;switch(t|0){case 0:break m;case 3:break o;default:break n}}a=a+b|0;g=0;if(a>>>0>=i>>>0){break i}ma(s+(b<<2)|0,0,(p&252)+4|0);b=a;break l}while(1){if((f|0)==(j|0)&(d|0)==(n|0)){break j}i=G[f+g|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;a=i<<(l<<3|6)|a;l=l+1|0;if((t|0)!=(l|0)){continue}break}}F[s+(b<<2)>>2]=a}b=b+1|0;i=F[h+12>>2];if(b>>>0>>0){continue}break}a=h+16|0;n=F[h>>2];d=F[h+16>>2];b=F[h+20>>2]-d|0;p:{if(b>>>0<=32767){qa(a,8192-(b>>>2|0)|0);break p}if((b|0)==32768){break p}F[h+20>>2]=d+32768}d=h+28|0;b=F[d>>2];f=F[h+32>>2]-b>>3;q:{if(f>>>0>>0){_a(d,i-f|0);b=F[d>>2];break q}if(f>>>0>i>>>0){F[h+32>>2]=(i<<3)+b}if(!i){break j}}j=F[a>>2];f=0;d=0;while(1){g=n+(f<<2)|0;l=F[g>>2];h=(f<<3)+b|0;a=d;F[h+4>>2]=a;F[h>>2]=l;g=F[g>>2];d=g+a|0;if(d>>>0>8192){break j}r:{if(a>>>0>=d>>>0){break r}l=0;h=g&7;if(h){while(1){F[j+(a<<2)>>2]=f;a=a+1|0;l=l+1|0;if((h|0)!=(l|0)){continue}break}}if(g-1>>>0<=6){break r}while(1){g=j+(a<<2)|0;F[g>>2]=f;F[g+28>>2]=f;F[g+24>>2]=f;F[g+20>>2]=f;F[g+16>>2]=f;F[g+12>>2]=f;F[g+8>>2]=f;F[g+4>>2]=f;a=a+8|0;if((d|0)!=(a|0)){continue}break}}f=f+1|0;if((i|0)!=(f|0)){continue}break}k=(d|0)==8192}g=k}s:{if(!g|(F[e+20>>2]?0:o)){break s}d=0;k=Z-16|0;Z=k;t:{if(!Sa(1,k+8|0,c)){break t}a=F[c+8>>2];f=F[c+16>>2];g=a-f|0;j=F[k+12>>2];i=F[c+20>>2];a=F[c+12>>2]-(i+(a>>>0>>0)|0)|0;b=F[k+8>>2];if((j|0)==(a|0)&g>>>0>>0|a>>>0>>0){break t}a=i+j|0;g=b+f|0;a=g>>>0>>0?a+1|0:a;F[c+16>>2]=g;F[c+20>>2]=a;if((b|0)<=0){break t}a=f+F[c>>2]|0;F[e+48>>2]=a;c=b-1|0;f=c+a|0;g=G[f|0];u:{if(g>>>0<=63){F[e+52>>2]=c;a=G[f|0]&63;break u}v:{switch((g>>>6|0)-1|0){case 0:if(b>>>0<2){break t}b=b-2|0;F[e+52>>2]=b;a=a+b|0;a=G[a+1|0]<<8&16128|G[a|0];break u;case 1:if(b>>>0<3){break t}b=b-3|0;F[e+52>>2]=b;a=a+b|0;a=G[a+1|0]<<8|G[a+2|0]<<16&4128768|G[a|0];break u;default:break v}}b=b-4|0;F[e+52>>2]=b;a=a+b|0;a=(G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24))&1073741823}F[e+56>>2]=a+32768;d=a>>>0<8355840}Z=k+16|0;if(!d){break s}if(!o){m=1;break s}b=F[e+52>>2];a=F[e+56>>2];c=F[e+36>>2];d=F[e+48>>2];f=F[e+24>>2];while(1){w:{if(a>>>0>32767){break w}while(1){if((b|0)<=0){break w}b=b-1|0;F[e+52>>2]=b;a=G[b+d|0]|a<<8;F[e+56>>2]=a;if(a>>>0<32768){continue}break}}m=a&8191;k=F[f+(m<<2)>>2];g=c+(k<<3)|0;a=(L(F[g>>2],a>>>13|0)+m|0)-F[g+4>>2]|0;F[e+56>>2]=a;F[r+(q<<2)>>2]=k;m=1;q=q+1|0;if((o|0)!=(q|0)){continue}break}}a=F[e+36>>2];if(a){F[e+40>>2]=a;ja(a)}a=F[e+24>>2];if(a){F[e+28>>2]=a;ja(a)}a=F[e+8>>2];if(a){F[e+12>>2]=a;ja(a)}Z=e- -64|0;b=m;break g;case 9:o=a;r=d;g=Z+-64|0;Z=g;F[g+56>>2]=0;F[g+48>>2]=0;F[g+52>>2]=0;F[g+40>>2]=0;F[g+44>>2]=0;F[g+32>>2]=0;F[g+36>>2]=0;F[g+24>>2]=0;F[g+28>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;F[g+8>>2]=0;F[g+12>>2]=0;h=g+8|0;x:{y:{if(!H[c+38>>1]){break y}if(!Ta(1,h+12|0,c)){break y}b=F[c+8>>2];d=F[c+16>>2];f=b-d|0;i=F[h+12>>2];b=F[c+12>>2]-(F[c+20>>2]+(b>>>0>>0)|0)|0;if(f>>>0>>6>>>0&(b|0)<=0|(b|0)<0){break y}b=F[h>>2];a=F[h+4>>2]-b>>2;z:{if(a>>>0>>0){qa(h,i-a|0);i=F[h+12>>2];break z}if(a>>>0<=i>>>0){break z}F[h+4>>2]=b+(i<<2)}e=1;if(!i){break x}f=F[c+16>>2];d=F[c+20>>2];s=F[h>>2];j=F[c+8>>2];n=F[c+12>>2];b=0;while(1){e=0;if((d|0)>=(n|0)&f>>>0>=j>>>0|(d|0)>(n|0)){break x}t=F[c>>2];p=G[t+f|0];e=d;f=f+1|0;e=f?e:e+1|0;F[c+16>>2]=f;d=e;F[c+20>>2]=e;a=p>>>2|0;l=0;A:{B:{C:{D:{e=p&3;switch(e|0){case 0:break B;case 3:break D;default:break C}}a=a+b|0;e=0;if(a>>>0>=i>>>0){break x}ma(s+(b<<2)|0,0,(p&252)+4|0);b=a;break A}while(1){if((f|0)==(j|0)&(d|0)==(n|0)){break y}i=G[f+t|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;a=i<<(l<<3|6)|a;l=l+1|0;if((e|0)!=(l|0)){continue}break}}F[s+(b<<2)>>2]=a}b=b+1|0;i=F[h+12>>2];if(b>>>0>>0){continue}break}a=h+16|0;n=F[h>>2];d=F[h+16>>2];b=F[h+20>>2]-d|0;E:{if(b>>>0<=131071){qa(a,32768-(b>>>2|0)|0);break E}if((b|0)==131072){break E}F[h+20>>2]=d+131072}d=h+28|0;b=F[d>>2];f=F[h+32>>2]-b>>3;F:{if(f>>>0>>0){_a(d,i-f|0);b=F[d>>2];break F}if(f>>>0>i>>>0){F[h+32>>2]=(i<<3)+b}if(!i){break y}}j=F[a>>2];f=0;d=0;while(1){e=n+(f<<2)|0;l=F[e>>2];h=(f<<3)+b|0;a=d;F[h+4>>2]=a;F[h>>2]=l;e=F[e>>2];d=e+a|0;if(d>>>0>32768){break y}G:{if(a>>>0>=d>>>0){break G}l=0;h=e&7;if(h){while(1){F[j+(a<<2)>>2]=f;a=a+1|0;l=l+1|0;if((h|0)!=(l|0)){continue}break}}if(e-1>>>0<=6){break G}while(1){e=j+(a<<2)|0;F[e>>2]=f;F[e+28>>2]=f;F[e+24>>2]=f;F[e+20>>2]=f;F[e+16>>2]=f;F[e+12>>2]=f;F[e+8>>2]=f;F[e+4>>2]=f;a=a+8|0;if((d|0)!=(a|0)){continue}break}}f=f+1|0;if((i|0)!=(f|0)){continue}break}k=(d|0)==32768}e=k}H:{if(!e|(F[g+20>>2]?0:o)){break H}d=0;f=Z-16|0;Z=f;I:{if(!Sa(1,f+8|0,c)){break I}e=F[c+8>>2];b=F[c+16>>2];k=e-b|0;j=F[f+12>>2];i=F[c+20>>2];e=F[c+12>>2]-(i+(b>>>0>e>>>0)|0)|0;a=F[f+8>>2];if((j|0)==(e|0)&k>>>0>>0|e>>>0>>0){break I}e=i+j|0;k=a+b|0;e=k>>>0>>0?e+1|0:e;F[c+16>>2]=k;F[c+20>>2]=e;if((a|0)<=0){break I}b=b+F[c>>2]|0;F[g+48>>2]=b;c=a-1|0;e=c+b|0;k=G[e|0];J:{if(k>>>0<=63){F[g+52>>2]=c;a=G[e|0]&63;break J}K:{switch((k>>>6|0)-1|0){case 0:if(a>>>0<2){break I}a=a-2|0;F[g+52>>2]=a;a=a+b|0;a=G[a+1|0]<<8&16128|G[a|0];break J;case 1:if(a>>>0<3){break I}a=a-3|0;F[g+52>>2]=a;a=a+b|0;a=G[a+1|0]<<8|G[a+2|0]<<16&4128768|G[a|0];break J;default:break K}}a=a-4|0;F[g+52>>2]=a;a=a+b|0;a=(G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24))&1073741823}F[g+56>>2]=a+131072;d=a>>>0<33423360}Z=f+16|0;if(!d){break H}if(!o){m=1;break H}b=F[g+52>>2];a=F[g+56>>2];c=F[g+36>>2];d=F[g+48>>2];f=F[g+24>>2];while(1){L:{if(a>>>0>131071){break L}while(1){if((b|0)<=0){break L}b=b-1|0;F[g+52>>2]=b;a=G[b+d|0]|a<<8;F[g+56>>2]=a;if(a>>>0<131072){continue}break}}m=a&32767;e=F[f+(m<<2)>>2];k=c+(e<<3)|0;a=(L(F[k>>2],a>>>15|0)+m|0)-F[k+4>>2]|0;F[g+56>>2]=a;F[r+(q<<2)>>2]=e;m=1;q=q+1|0;if((o|0)!=(q|0)){continue}break}}a=F[g+36>>2];if(a){F[g+40>>2]=a;ja(a)}a=F[g+24>>2];if(a){F[g+28>>2]=a;ja(a)}a=F[g+8>>2];if(a){F[g+12>>2]=a;ja(a)}Z=g- -64|0;b=m;break g;case 10:o=a;r=d;g=Z+-64|0;Z=g;F[g+56>>2]=0;F[g+48>>2]=0;F[g+52>>2]=0;F[g+40>>2]=0;F[g+44>>2]=0;F[g+32>>2]=0;F[g+36>>2]=0;F[g+24>>2]=0;F[g+28>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;F[g+8>>2]=0;F[g+12>>2]=0;h=g+8|0;M:{N:{if(!H[c+38>>1]){break N}if(!Ta(1,h+12|0,c)){break N}b=F[c+8>>2];d=F[c+16>>2];f=b-d|0;i=F[h+12>>2];b=F[c+12>>2]-(F[c+20>>2]+(b>>>0>>0)|0)|0;if(f>>>0>>6>>>0&(b|0)<=0|(b|0)<0){break N}b=F[h>>2];a=F[h+4>>2]-b>>2;O:{if(a>>>0>>0){qa(h,i-a|0);i=F[h+12>>2];break O}if(a>>>0<=i>>>0){break O}F[h+4>>2]=b+(i<<2)}e=1;if(!i){break M}f=F[c+16>>2];d=F[c+20>>2];s=F[h>>2];j=F[c+8>>2];n=F[c+12>>2];b=0;while(1){e=0;if((d|0)>=(n|0)&f>>>0>=j>>>0|(d|0)>(n|0)){break M}t=F[c>>2];p=G[t+f|0];a=d;f=f+1|0;a=f?a:a+1|0;F[c+16>>2]=f;d=a;F[c+20>>2]=a;a=p>>>2|0;l=0;P:{Q:{R:{S:{u=p&3;switch(u|0){case 0:break Q;case 3:break S;default:break R}}a=a+b|0;e=0;if(a>>>0>=i>>>0){break M}ma(s+(b<<2)|0,0,(p&252)+4|0);b=a;break P}while(1){if((f|0)==(j|0)&(d|0)==(n|0)){break N}i=G[f+t|0];e=d;f=f+1|0;e=f?e:e+1|0;F[c+16>>2]=f;d=e;F[c+20>>2]=e;a=i<<(l<<3|6)|a;l=l+1|0;if((u|0)!=(l|0)){continue}break}}F[s+(b<<2)>>2]=a}b=b+1|0;i=F[h+12>>2];if(b>>>0>>0){continue}break}a=h+16|0;n=F[h>>2];d=F[h+16>>2];b=F[h+20>>2]-d|0;T:{if(b>>>0<=262143){qa(a,65536-(b>>>2|0)|0);break T}if((b|0)==262144){break T}F[h+20>>2]=d+262144}d=h+28|0;b=F[d>>2];f=F[h+32>>2]-b>>3;U:{if(f>>>0>>0){_a(d,i-f|0);b=F[d>>2];break U}if(f>>>0>i>>>0){F[h+32>>2]=(i<<3)+b}if(!i){break N}}j=F[a>>2];f=0;d=0;while(1){e=n+(f<<2)|0;l=F[e>>2];h=(f<<3)+b|0;a=d;F[h+4>>2]=a;F[h>>2]=l;e=F[e>>2];d=e+a|0;if(d>>>0>65536){break N}V:{if(a>>>0>=d>>>0){break V}l=0;h=e&7;if(h){while(1){F[j+(a<<2)>>2]=f;a=a+1|0;l=l+1|0;if((h|0)!=(l|0)){continue}break}}if(e-1>>>0<=6){break V}while(1){e=j+(a<<2)|0;F[e>>2]=f;F[e+28>>2]=f;F[e+24>>2]=f;F[e+20>>2]=f;F[e+16>>2]=f;F[e+12>>2]=f;F[e+8>>2]=f;F[e+4>>2]=f;a=a+8|0;if((d|0)!=(a|0)){continue}break}}f=f+1|0;if((i|0)!=(f|0)){continue}break}k=(d|0)==65536}e=k}W:{if(!e|(F[g+20>>2]?0:o)){break W}d=0;e=Z-16|0;Z=e;X:{if(!Sa(1,e+8|0,c)){break X}a=F[c+8>>2];f=F[c+16>>2];k=a-f|0;j=F[e+12>>2];i=F[c+20>>2];a=F[c+12>>2]-(i+(a>>>0>>0)|0)|0;b=F[e+8>>2];if((j|0)==(a|0)&k>>>0>>0|a>>>0>>0){break X}a=i+j|0;k=b+f|0;a=k>>>0>>0?a+1|0:a;F[c+16>>2]=k;F[c+20>>2]=a;if((b|0)<=0){break X}a=f+F[c>>2]|0;F[g+48>>2]=a;c=b-1|0;f=c+a|0;k=G[f|0];Y:{if(k>>>0<=63){F[g+52>>2]=c;a=G[f|0]&63;break Y}Z:{switch((k>>>6|0)-1|0){case 0:if(b>>>0<2){break X}b=b-2|0;F[g+52>>2]=b;a=a+b|0;a=G[a+1|0]<<8&16128|G[a|0];break Y;case 1:if(b>>>0<3){break X}b=b-3|0;F[g+52>>2]=b;a=a+b|0;a=G[a+1|0]<<8|G[a+2|0]<<16&4128768|G[a|0];break Y;default:break Z}}b=b-4|0;F[g+52>>2]=b;a=a+b|0;a=(G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24))&1073741823}F[g+56>>2]=a+262144;d=a>>>0<66846720}Z=e+16|0;if(!d){break W}if(!o){m=1;break W}b=F[g+52>>2];a=F[g+56>>2];c=F[g+36>>2];d=F[g+48>>2];f=F[g+24>>2];while(1){_:{if(a>>>0>262143){break _}while(1){if((b|0)<=0){break _}b=b-1|0;F[g+52>>2]=b;a=G[b+d|0]|a<<8;F[g+56>>2]=a;if(a>>>0<262144){continue}break}}m=a&65535;e=F[f+(m<<2)>>2];k=c+(e<<3)|0;a=(L(F[k>>2],a>>>16|0)+m|0)-F[k+4>>2]|0;F[g+56>>2]=a;F[r+(q<<2)>>2]=e;m=1;q=q+1|0;if((o|0)!=(q|0)){continue}break}}a=F[g+36>>2];if(a){F[g+40>>2]=a;ja(a)}a=F[g+24>>2];if(a){F[g+28>>2]=a;ja(a)}a=F[g+8>>2];if(a){F[g+12>>2]=a;ja(a)}Z=g- -64|0;b=m;break g;case 11:o=a;r=d;g=Z+-64|0;Z=g;F[g+56>>2]=0;F[g+48>>2]=0;F[g+52>>2]=0;F[g+40>>2]=0;F[g+44>>2]=0;F[g+32>>2]=0;F[g+36>>2]=0;F[g+24>>2]=0;F[g+28>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;F[g+8>>2]=0;F[g+12>>2]=0;h=g+8|0;$:{aa:{if(!H[c+38>>1]){break aa}if(!Ta(1,h+12|0,c)){break aa}b=F[c+8>>2];d=F[c+16>>2];f=b-d|0;i=F[h+12>>2];b=F[c+12>>2]-(F[c+20>>2]+(b>>>0>>0)|0)|0;if(f>>>0>>6>>>0&(b|0)<=0|(b|0)<0){break aa}b=F[h>>2];a=F[h+4>>2]-b>>2;ba:{if(a>>>0>>0){qa(h,i-a|0);i=F[h+12>>2];break ba}if(a>>>0<=i>>>0){break ba}F[h+4>>2]=b+(i<<2)}e=1;if(!i){break $}f=F[c+16>>2];d=F[c+20>>2];s=F[h>>2];j=F[c+8>>2];n=F[c+12>>2];b=0;while(1){e=0;if((d|0)>=(n|0)&f>>>0>=j>>>0|(d|0)>(n|0)){break $}t=F[c>>2];p=G[t+f|0];e=d;f=f+1|0;e=f?e:e+1|0;F[c+16>>2]=f;d=e;F[c+20>>2]=e;a=p>>>2|0;l=0;ca:{da:{ea:{fa:{e=p&3;switch(e|0){case 0:break da;case 3:break fa;default:break ea}}a=a+b|0;e=0;if(a>>>0>=i>>>0){break $}ma(s+(b<<2)|0,0,(p&252)+4|0);b=a;break ca}while(1){if((f|0)==(j|0)&(d|0)==(n|0)){break aa}i=G[f+t|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;a=i<<(l<<3|6)|a;l=l+1|0;if((e|0)!=(l|0)){continue}break}}F[s+(b<<2)>>2]=a}b=b+1|0;i=F[h+12>>2];if(b>>>0>>0){continue}break}a=h+16|0;n=F[h>>2];d=F[h+16>>2];b=F[h+20>>2]-d|0;ga:{if(b>>>0<=1048575){qa(a,262144-(b>>>2|0)|0);break ga}if((b|0)==1048576){break ga}F[h+20>>2]=d- -1048576}d=h+28|0;b=F[d>>2];f=F[h+32>>2]-b>>3;ha:{if(f>>>0>>0){_a(d,i-f|0);b=F[d>>2];break ha}if(f>>>0>i>>>0){F[h+32>>2]=(i<<3)+b}if(!i){break aa}}j=F[a>>2];f=0;d=0;while(1){e=n+(f<<2)|0;l=F[e>>2];h=(f<<3)+b|0;a=d;F[h+4>>2]=a;F[h>>2]=l;e=F[e>>2];d=e+a|0;if(d>>>0>262144){break aa}ia:{if(a>>>0>=d>>>0){break ia}l=0;h=e&7;if(h){while(1){F[j+(a<<2)>>2]=f;a=a+1|0;l=l+1|0;if((h|0)!=(l|0)){continue}break}}if(e-1>>>0<=6){break ia}while(1){e=j+(a<<2)|0;F[e>>2]=f;F[e+28>>2]=f;F[e+24>>2]=f;F[e+20>>2]=f;F[e+16>>2]=f;F[e+12>>2]=f;F[e+8>>2]=f;F[e+4>>2]=f;a=a+8|0;if((d|0)!=(a|0)){continue}break}}f=f+1|0;if((i|0)!=(f|0)){continue}break}k=(d|0)==262144}e=k}ja:{if(!e|(F[g+20>>2]?0:o)){break ja}d=0;f=Z-16|0;Z=f;ka:{if(!Sa(1,f+8|0,c)){break ka}e=F[c+8>>2];b=F[c+16>>2];k=e-b|0;j=F[f+12>>2];i=F[c+20>>2];e=F[c+12>>2]-(i+(b>>>0>e>>>0)|0)|0;a=F[f+8>>2];if((j|0)==(e|0)&k>>>0>>0|e>>>0>>0){break ka}e=i+j|0;k=a+b|0;e=k>>>0>>0?e+1|0:e;F[c+16>>2]=k;F[c+20>>2]=e;if((a|0)<=0){break ka}b=b+F[c>>2]|0;F[g+48>>2]=b;c=a-1|0;e=c+b|0;k=G[e|0];la:{if(k>>>0<=63){F[g+52>>2]=c;a=G[e|0]&63;break la}ma:{switch((k>>>6|0)-1|0){case 0:if(a>>>0<2){break ka}a=a-2|0;F[g+52>>2]=a;a=a+b|0;a=G[a+1|0]<<8&16128|G[a|0];break la;case 1:if(a>>>0<3){break ka}a=a-3|0;F[g+52>>2]=a;a=a+b|0;a=G[a+1|0]<<8|G[a+2|0]<<16&4128768|G[a|0];break la;default:break ma}}a=a-4|0;F[g+52>>2]=a;a=a+b|0;a=(G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24))&1073741823}F[g+56>>2]=a- -1048576;d=a>>>0<267386880}Z=f+16|0;if(!d){break ja}if(!o){m=1;break ja}b=F[g+52>>2];a=F[g+56>>2];c=F[g+36>>2];d=F[g+48>>2];f=F[g+24>>2];while(1){na:{if(a>>>0>1048575){break na}while(1){if((b|0)<=0){break na}b=b-1|0;F[g+52>>2]=b;a=G[b+d|0]|a<<8;F[g+56>>2]=a;if(a>>>0<1048576){continue}break}}m=a&262143;e=F[f+(m<<2)>>2];k=c+(e<<3)|0;a=(L(F[k>>2],a>>>18|0)+m|0)-F[k+4>>2]|0;F[g+56>>2]=a;F[r+(q<<2)>>2]=e;m=1;q=q+1|0;if((o|0)!=(q|0)){continue}break}}a=F[g+36>>2];if(a){F[g+40>>2]=a;ja(a)}a=F[g+24>>2];if(a){F[g+28>>2]=a;ja(a)}a=F[g+8>>2];if(a){F[g+12>>2]=a;ja(a)}Z=g- -64|0;b=m;break g;case 12:o=a;r=d;e=Z+-64|0;Z=e;F[e+56>>2]=0;F[e+48>>2]=0;F[e+52>>2]=0;F[e+40>>2]=0;F[e+44>>2]=0;F[e+32>>2]=0;F[e+36>>2]=0;F[e+24>>2]=0;F[e+28>>2]=0;F[e+16>>2]=0;F[e+20>>2]=0;F[e+8>>2]=0;F[e+12>>2]=0;h=e+8|0;oa:{pa:{if(!H[c+38>>1]){break pa}if(!Ta(1,h+12|0,c)){break pa}b=F[c+8>>2];d=F[c+16>>2];f=b-d|0;i=F[h+12>>2];b=F[c+12>>2]-(F[c+20>>2]+(b>>>0>>0)|0)|0;if(f>>>0>>6>>>0&(b|0)<=0|(b|0)<0){break pa}b=F[h>>2];a=F[h+4>>2]-b>>2;qa:{if(a>>>0>>0){qa(h,i-a|0);i=F[h+12>>2];break qa}if(a>>>0<=i>>>0){break qa}F[h+4>>2]=b+(i<<2)}g=1;if(!i){break oa}f=F[c+16>>2];d=F[c+20>>2];s=F[h>>2];j=F[c+8>>2];n=F[c+12>>2];b=0;while(1){g=0;if((d|0)>=(n|0)&f>>>0>=j>>>0|(d|0)>(n|0)){break oa}g=F[c>>2];p=G[g+f|0];a=d;f=f+1|0;a=f?a:a+1|0;F[c+16>>2]=f;d=a;F[c+20>>2]=a;a=p>>>2|0;l=0;ra:{sa:{ta:{ua:{t=p&3;switch(t|0){case 0:break sa;case 3:break ua;default:break ta}}a=a+b|0;g=0;if(a>>>0>=i>>>0){break oa}ma(s+(b<<2)|0,0,(p&252)+4|0);b=a;break ra}while(1){if((f|0)==(j|0)&(d|0)==(n|0)){break pa}i=G[f+g|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;a=i<<(l<<3|6)|a;l=l+1|0;if((t|0)!=(l|0)){continue}break}}F[s+(b<<2)>>2]=a}b=b+1|0;i=F[h+12>>2];if(b>>>0>>0){continue}break}a=h+16|0;n=F[h>>2];d=F[h+16>>2];b=F[h+20>>2]-d|0;va:{if(b>>>0<=2097151){qa(a,524288-(b>>>2|0)|0);break va}if((b|0)==2097152){break va}F[h+20>>2]=d+2097152}d=h+28|0;b=F[d>>2];f=F[h+32>>2]-b>>3;wa:{if(f>>>0>>0){_a(d,i-f|0);b=F[d>>2];break wa}if(f>>>0>i>>>0){F[h+32>>2]=(i<<3)+b}if(!i){break pa}}j=F[a>>2];f=0;d=0;while(1){g=n+(f<<2)|0;l=F[g>>2];h=(f<<3)+b|0;a=d;F[h+4>>2]=a;F[h>>2]=l;g=F[g>>2];d=g+a|0;if(d>>>0>524288){break pa}xa:{if(a>>>0>=d>>>0){break xa}l=0;h=g&7;if(h){while(1){F[j+(a<<2)>>2]=f;a=a+1|0;l=l+1|0;if((h|0)!=(l|0)){continue}break}}if(g-1>>>0<=6){break xa}while(1){g=j+(a<<2)|0;F[g>>2]=f;F[g+28>>2]=f;F[g+24>>2]=f;F[g+20>>2]=f;F[g+16>>2]=f;F[g+12>>2]=f;F[g+8>>2]=f;F[g+4>>2]=f;a=a+8|0;if((d|0)!=(a|0)){continue}break}}f=f+1|0;if((i|0)!=(f|0)){continue}break}k=(d|0)==524288}g=k}ya:{if(!g|(F[e+20>>2]?0:o)){break ya}d=0;k=Z-16|0;Z=k;za:{if(!Sa(1,k+8|0,c)){break za}a=F[c+8>>2];f=F[c+16>>2];g=a-f|0;j=F[k+12>>2];i=F[c+20>>2];a=F[c+12>>2]-(i+(a>>>0>>0)|0)|0;b=F[k+8>>2];if((j|0)==(a|0)&g>>>0>>0|a>>>0>>0){break za}a=i+j|0;g=b+f|0;a=g>>>0>>0?a+1|0:a;F[c+16>>2]=g;F[c+20>>2]=a;if((b|0)<=0){break za}a=f+F[c>>2]|0;F[e+48>>2]=a;c=b-1|0;f=c+a|0;g=G[f|0];Aa:{if(g>>>0<=63){F[e+52>>2]=c;a=G[f|0]&63;break Aa}Ba:{switch((g>>>6|0)-1|0){case 0:if(b>>>0<2){break za}b=b-2|0;F[e+52>>2]=b;a=a+b|0;a=G[a+1|0]<<8&16128|G[a|0];break Aa;case 1:if(b>>>0<3){break za}b=b-3|0;F[e+52>>2]=b;a=a+b|0;a=G[a+1|0]<<8|G[a+2|0]<<16&4128768|G[a|0];break Aa;default:break Ba}}b=b-4|0;F[e+52>>2]=b;a=a+b|0;a=(G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24))&1073741823}F[e+56>>2]=a+2097152;d=a>>>0<534773760}Z=k+16|0;if(!d){break ya}if(!o){m=1;break ya}b=F[e+52>>2];a=F[e+56>>2];c=F[e+36>>2];d=F[e+48>>2];f=F[e+24>>2];while(1){Ca:{if(a>>>0>2097151){break Ca}while(1){if((b|0)<=0){break Ca}b=b-1|0;F[e+52>>2]=b;a=G[b+d|0]|a<<8;F[e+56>>2]=a;if(a>>>0<2097152){continue}break}}m=a&524287;k=F[f+(m<<2)>>2];g=c+(k<<3)|0;a=(L(F[g>>2],a>>>19|0)+m|0)-F[g+4>>2]|0;F[e+56>>2]=a;F[r+(q<<2)>>2]=k;m=1;q=q+1|0;if((o|0)!=(q|0)){continue}break}}a=F[e+36>>2];if(a){F[e+40>>2]=a;ja(a)}a=F[e+24>>2];if(a){F[e+28>>2]=a;ja(a)}a=F[e+8>>2];if(a){F[e+12>>2]=a;ja(a)}Z=e- -64|0;b=m;break g;case 17:b=Ld(a,c,d);break g;case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:b=Z+-64|0;Z=b;F[b+56>>2]=0;F[b+48>>2]=0;F[b+52>>2]=0;F[b+40>>2]=0;F[b+44>>2]=0;F[b+32>>2]=0;F[b+36>>2]=0;F[b+24>>2]=0;F[b+28>>2]=0;F[b+16>>2]=0;F[b+20>>2]=0;F[b+8>>2]=0;F[b+12>>2]=0;Da:{if(!Nd(b+8|0,c)|(F[b+20>>2]?0:a)){break Da}if(!Md(b+8|0,c)){break Da}if(!a){f=1;break Da}m=F[b+52>>2];c=F[b+56>>2];e=F[b+36>>2];g=F[b+48>>2];o=F[b+24>>2];while(1){Ea:{if(c>>>0>16383){break Ea}while(1){if((m|0)<=0){break Ea}m=m-1|0;F[b+52>>2]=m;c=G[g+m|0]|c<<8;F[b+56>>2]=c;if(c>>>0<16384){continue}break}}f=c&4095;j=F[o+(f<<2)>>2];r=e+(j<<3)|0;c=(L(F[r>>2],c>>>12|0)+f|0)-F[r+4>>2]|0;F[b+56>>2]=c;F[(k<<2)+d>>2]=j;f=1;k=k+1|0;if((k|0)!=(a|0)){continue}break}}a=F[b+36>>2];if(a){F[b+40>>2]=a;ja(a)}a=F[b+24>>2];if(a){F[b+28>>2]=a;ja(a)}a=F[b+8>>2];if(a){F[b+12>>2]=a;ja(a)}Z=b- -64|0;b=f;break g;case 13:case 14:case 15:case 16:break h;default:break g}}b=Ld(a,c,d)}f=b}return f}function ih(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,J=0,K=0,M=0,N=0,O=0,P=0;u=Z+-64|0;Z=u;F[a+132>>2]=0;if(F[a+148>>2]){b=F[a+144>>2];if(b){while(1){f=F[b>>2];ja(b);b=f;if(b){continue}break}}b=0;F[a+144>>2]=0;f=F[a+140>>2];a:{if(!f){break a}if(f>>>0>=4){c=f&-4;while(1){e=b<<2;F[e+F[a+136>>2]>>2]=0;F[F[a+136>>2]+(e|4)>>2]=0;F[F[a+136>>2]+(e|8)>>2]=0;F[F[a+136>>2]+(e|12)>>2]=0;b=b+4|0;d=d+4|0;if((c|0)!=(d|0)){continue}break}}f=f&3;if(!f){break a}d=0;while(1){F[F[a+136>>2]+(b<<2)>>2]=0;b=b+1|0;d=d+1|0;if((f|0)!=(d|0)){continue}break}}F[a+148>>2]=0}b:{c:{if(!Da(1,u+60|0,F[F[a+4>>2]+32>>2])){break c}F[a+156>>2]=F[u+60>>2];if(!Da(1,u+56|0,F[F[a+4>>2]+32>>2])){break c}e=F[u+56>>2];if(e>>>0>1431655765|I[a+156>>2]>L(e,3)>>>0){break c}b=F[F[a+4>>2]+32>>2];c=F[b+8>>2];k=F[b+12>>2];d=F[b+20>>2];f=F[b+16>>2];if((k|0)<=(d|0)&f>>>0>=c>>>0|(d|0)>(k|0)){break c}k=G[f+F[b>>2]|0];f=f+1|0;d=f?d:d+1|0;F[b+16>>2]=f;F[b+20>>2]=d;if(!Da(1,u+52|0,b)){break c}q=F[u+52>>2];if(q>>>0>e>>>0|e>>>0>q+((q>>>0)/3|0)>>>0){break c}if(!Da(1,u+48|0,F[F[a+4>>2]+32>>2])){break c}d=F[u+48>>2];if(d>>>0>q>>>0){break c}F[a+28>>2]=F[a+24>>2];f=Zb(ka(88));b=F[a+8>>2];F[a+8>>2]=f;if(b){Za(b);if(!F[a+8>>2]){break c}}F[a+164>>2]=F[a+160>>2];Ib(a+160|0,e);F[a+176>>2]=F[a+172>>2];Ib(a+172|0,e);F[a- -64>>2]=0;F[a+92>>2]=-1;F[a+84>>2]=-1;F[a+88>>2]=-1;F[a+40>>2]=F[a+36>>2];F[a+52>>2]=F[a+48>>2];F[a+76>>2]=F[a+72>>2];A=a+216|0;Dd(A);Cd(A,k);if(!_c(F[a+8>>2],e,d+F[a+156>>2]|0)){break c}b=F[a+156>>2];D[u+8|0]=1;Ea(a+120|0,b+d|0,u+8|0);if((Bd(a,F[F[a+4>>2]+32>>2])|0)==-1){break c}c=a+232|0;b=c;F[b+144>>2]=a;f=F[($[F[F[a>>2]+32>>2]](a)|0)+32>>2];f=F[f>>2]+F[f+16>>2]|0;e=F[($[F[F[a>>2]+32>>2]](a)|0)+32>>2];e=F[e+8>>2]-F[e+16>>2]|0;O=b,P=H[F[($[F[F[a>>2]+32>>2]](a)|0)+32>>2]+38>>1],E[O+38>>1]=P;F[b>>2]=f;F[b+16>>2]=0;F[b+20>>2]=0;F[b+8>>2]=e;F[b+12>>2]=0;O=b,P=$[F[F[a>>2]+36>>2]](a)|0,F[O+148>>2]=P;F[a+372>>2]=k;F[a+384>>2]=d+F[a+156>>2];K=Ja(u+8|0);k=K;f=0;j=Z-16|0;Z=j;d:{if(!Aa(b+80|0,b)){break d}if(!yd(c)){break d}b=F[c+4>>2];F[k>>2]=F[c>>2];F[k+4>>2]=b;b=F[c+36>>2];F[k+32>>2]=F[c+32>>2];F[k+36>>2]=b;b=F[c+28>>2];F[k+24>>2]=F[c+24>>2];F[k+28>>2]=b;b=F[c+20>>2];F[k+16>>2]=F[c+16>>2];F[k+20>>2]=b;b=F[c+12>>2];F[k+8>>2]=F[c+8>>2];F[k+12>>2]=b;F[c+176>>2]=2;F[c+180>>2]=7;b=F[c+152>>2];if((b|0)<0){break d}F[j+12>>2]=0;f=2;h=F[c+156>>2];e=F[c+160>>2]-h>>2;e:{if(e>>>0>>0){Fa(c+156|0,b-e|0,j+12|0);f=F[c+176>>2];d=F[c+180>>2];break e}d=7;if(b>>>0>=e>>>0){break e}F[c+160>>2]=h+(b<<2)}e=c+184|0;d=(d-f|0)+1|0;b=F[c+188>>2];f=F[c+184>>2];s=(b-f|0)/12|0;f:{if(d>>>0>s>>>0){h=0;b=d-s|0;o=F[e+8>>2];f=F[e+4>>2];g:{if(b>>>0<=(o-f|0)/12>>>0){if(b){b=L(b,12)-12|0;b=(b-((b>>>0)%12|0)|0)+12|0;f=ma(f,0,b)+b|0}F[e+4>>2]=f;break g}h:{i:{j:{s=F[e>>2];g=(f-s|0)/12|0;d=g+b|0;if(d>>>0<357913942){o=(o-s|0)/12|0;i=o<<1;o=o>>>0>=178956970?357913941:d>>>0>>0?i:d;if(o){if(o>>>0>=357913942){break j}h=ka(L(o,12))}d=L(g,12)+h|0;b=L(b,12)-12|0;g=(b-((b>>>0)%12|0)|0)+12|0;b=ma(d,0,g);g=b+g|0;h=L(o,12)+h|0;if((f|0)==(s|0)){break i}while(1){d=d-12|0;f=f-12|0;F[d>>2]=F[f>>2];F[d+4>>2]=F[f+4>>2];F[d+8>>2]=F[f+8>>2];F[f+8>>2]=0;F[f>>2]=0;F[f+4>>2]=0;if((f|0)!=(s|0)){continue}break}F[e+8>>2]=h;b=F[e+4>>2];F[e+4>>2]=g;f=F[e>>2];F[e>>2]=d;if((b|0)==(f|0)){break h}while(1){d=b-12|0;h=F[d>>2];if(h){F[b-8>>2]=h;ja(h)}b=d;if((f|0)!=(b|0)){continue}break}break h}break b}oa();v()}F[e+8>>2]=h;F[e+4>>2]=g;F[e>>2]=b}if(f){ja(f)}}d=F[c+188>>2];break f}if(d>>>0>=s>>>0){d=b;break f}d=f+L(d,12)|0;if((d|0)!=(b|0)){while(1){f=b-12|0;h=F[f>>2];if(h){F[b-8>>2]=h;ja(h)}b=f;if((d|0)!=(b|0)){continue}break}}F[c+188>>2]=d}s=c+196|0;f=F[c+184>>2];b=(d-f|0)/12|0;o=F[c+196>>2];h=F[c+200>>2]-o>>2;k:{if(b>>>0>h>>>0){qa(s,b-h|0);f=F[c+184>>2];d=F[c+188>>2];break k}if(b>>>0>=h>>>0){break k}F[c+200>>2]=o+(b<<2)}if((d|0)==(f|0)){f=1;break d}b=0;while(1){l:{if(!Da(1,j+8|0,k)){break l}f=F[j+8>>2];d=F[c+148>>2];if(f>>>0>(F[d+4>>2]-F[d>>2]>>2>>>0)/3>>>0){break l}if(f){g=L(b,12);h=g+F[e>>2]|0;d=F[h>>2];o=F[h+4>>2]-d>>2;m:{if(o>>>0>>0){qa(h,f-o|0);d=F[g+F[e>>2]>>2];break m}if(f>>>0>=o>>>0){break m}F[h+4>>2]=(f<<2)+d}mc(f,1,k,d);F[F[s>>2]+(b<<2)>>2]=f}f=1;b=b+1|0;if(b>>>0<(F[c+188>>2]-F[c+184>>2]|0)/12>>>0){continue}break d}break}f=0}Z=j+16|0;n:{if(!f){break n}e=0;c=0;d=0;b=0;k=0;f=0;s=0;o=0;l=Z-96|0;Z=l;F[l+72>>2]=0;F[l+64>>2]=0;F[l+68>>2]=0;F[l+48>>2]=0;F[l+52>>2]=0;F[l+40>>2]=0;F[l+44>>2]=0;F[l+56>>2]=1065353216;F[l+32>>2]=0;F[l+24>>2]=0;F[l+28>>2]=0;j=a;C=F[a+124>>2];o:{p:{q:{r:{s:{if((q|0)<=0){break s}J=j+232|0;M=F[j+216>>2]!=F[j+220>>2];B=1;t:{while(1){h=s;s=h+1|0;u:{v:{w:{g=F[j+404>>2];if((g|0)==-1){F[j+400>>2]=7;break w}a=-1;i=F[j+428>>2]+(g<<2)|0;m=F[i>>2];g=m-1|0;F[i>>2]=g;if((m|0)<=0){break r}g=F[F[F[j+416>>2]+L(F[j+404>>2],12)>>2]+(g<<2)>>2];if(g>>>0>4){break r}i=F[(g<<2)+8896>>2];F[j+400>>2]=i;if(!g){if((b|0)==(c|0)){break r}i=-1;m=F[j+8>>2];B=F[m+24>>2];t=c-4|0;e=F[t>>2];g=-1;x:{if((e|0)==-1){break x}p=e+1|0;p=(p>>>0)%3|0?p:e-2|0;g=-1;if((p|0)==-1){break x}g=F[F[m>>2]+(p<<2)>>2]}n=F[B+(g<<2)>>2];if((n|0)!=-1){i=n+1|0;i=(i>>>0)%3|0?i:n-2|0}if((e|0)!=-1&F[F[m+12>>2]+(e<<2)>>2]!=-1|(e|0)==(i|0)){break r}n=F[m+12>>2];if((i|0)!=-1&F[n+(i<<2)>>2]!=-1){break r}p=L(h,3);h=p+1|0;F[n+(e<<2)>>2]=h;x=h<<2;F[x+n>>2]=e;r=p+2|0;F[n+(i<<2)>>2]=r;w=r<<2;F[w+n>>2]=i;n=-1;h=-1;y:{if((e|0)==-1){break y}z:{if((e>>>0)%3|0){e=e-1|0;break z}e=e+2|0;h=-1;if((e|0)==-1){break y}}h=F[F[m>>2]+(e<<2)>>2]}e=h;A:{if((i|0)==-1){break A}h=i+1|0;h=(h>>>0)%3|0?h:i-2|0;if((h|0)==-1){break A}n=F[F[m>>2]+(h<<2)>>2]}if((e|0)==(g|0)|(g|0)==(n|0)){break r}a=F[m>>2];F[a+(p<<2)>>2]=g;F[a+x>>2]=n;F[a+w>>2]=e;if((e|0)!=-1){F[B+(e<<2)>>2]=r}a=F[j+120>>2]+(g>>>3&536870908)|0;e=F[a>>2];O=a,P=oi(g)&e,F[O>>2]=P;F[t>>2]=p;e=b;kc(J,p);break u}B:{switch(i-1|0){case 2:case 4:if((b|0)==(c|0)){break r}r=c-4|0;e=F[r>>2];i=F[j+8>>2];m=F[i+12>>2];if((e|0)!=-1&F[m+(e<<2)>>2]!=-1){break r}c=L(h,3);n=(g|0)==3;g=c+(n?2:1)|0;t=g<<2;F[t+m>>2]=e;F[m+(e<<2)>>2]=g;Ma(i+24|0,8324);p=F[j+8>>2];m=F[p+24>>2];if(F[p+28>>2]-m>>2>(C|0)){break r}a=F[p>>2];w=a+t|0;p=F[i+28>>2];i=F[i+24>>2];t=(p-i>>2)-1|0;F[w>>2]=t;if((i|0)!=(p|0)){F[m+(t<<2)>>2]=g}g=n?c:c+2|0;w=a+(c+n<<2)|0;C:{if((e|0)==-1){F[a+(g<<2)>>2]=-1;i=-1;break C}D:{E:{F:{if((e>>>0)%3|0){i=e-1|0;break F}i=e+2|0;if((i|0)==-1){break E}}i=F[a+(i<<2)>>2];F[a+(g<<2)>>2]=i;if((i|0)==-1){break D}F[m+(i<<2)>>2]=g;break D}F[a+(g<<2)>>2]=-1}i=e+1|0;e=(i>>>0)%3|0?i:e-2|0;i=-1;if((e|0)==-1){break C}i=F[a+(e<<2)>>2]}F[w>>2]=i;F[r>>2]=c;e=b;break v;case 6:break w;case 0:break B;default:break r}}if((e|0)==(c|0)){break r}f=c-4|0;m=F[f>>2];F[l+68>>2]=f;n=F[l+44>>2];G:{if(!n){break G}g=F[l+40>>2];p=ni(n)>>>0>1;a=h&n+2147483647;H:{if(!p){break H}a=h;if(a>>>0>>0){break H}a=(h>>>0)%(n>>>0)|0}i=a;a=F[g+(i<<2)>>2];if(!a){break G}a=F[a>>2];if(!a){break G}I:{if(!p){g=n-1|0;while(1){n=F[a+4>>2];J:{if((n|0)!=(h|0)){if((i|0)==(g&n)){break J}break G}if((h|0)==F[a+8>>2]){break I}}a=F[a>>2];if(a){continue}break}break G}while(1){g=F[a+4>>2];K:{if((g|0)!=(h|0)){if(g>>>0>=n>>>0){g=(g>>>0)%(n>>>0)|0}if((g|0)==(i|0)){break K}break G}if((h|0)==F[a+8>>2]){break I}}a=F[a>>2];if(a){continue}break}break G}if((f|0)!=(k|0)){F[f>>2]=F[a+12>>2];F[l+68>>2]=c;f=c;break G}b=k-e|0;c=b>>2;d=c+1|0;if(d>>>0>=1073741824){break b}f=b>>>1|0;d=b>>>0>=2147483644?1073741823:d>>>0>>0?f:d;if(d){if(d>>>0>=1073741824){break p}f=ka(d<<2)}else{f=0}b=f+(c<<2)|0;F[b>>2]=F[a+12>>2];d=f+(d<<2)|0;f=b+4|0;if((e|0)!=(k|0)){while(1){b=b-4|0;k=k-4|0;F[b>>2]=F[k>>2];if((e|0)!=(k|0)){continue}break}}F[l+72>>2]=d;F[l+68>>2]=f;F[l+64>>2]=b;if(e){ja(e)}e=b;k=d}if((e|0)==(f|0)){break t}x=f-4|0;a=F[x>>2];if((a|0)==(m|0)){break t}i=(a|0)==-1;g=F[j+8>>2];if(!i&F[F[g+12>>2]+(a<<2)>>2]!=-1){break t}n=F[g+12>>2];if((m|0)!=-1&F[n+(m<<2)>>2]!=-1){break t}p=L(h,3);t=p+2|0;F[n+(a<<2)>>2]=t;c=t<<2;F[c+n>>2]=a;h=p+1|0;F[n+(m<<2)>>2]=h;w=h<<2;F[w+n>>2]=m;L:{M:{N:{if(!i){if((a>>>0)%3|0){h=a-1|0;break N}h=a+2|0;if((h|0)!=-1){break N}i=F[g>>2];h=-1;break M}h=-1;i=F[g>>2];F[i+(p<<2)>>2]=-1;r=-1;break L}i=F[g>>2];h=F[i+(h<<2)>>2]}F[(p<<2)+i>>2]=h;r=a+1|0;a=(r>>>0)%3|0?r:a-2|0;r=-1;if((a|0)==-1){break L}r=F[(a<<2)+i>>2]}F[i+w>>2]=r;O:{if((m|0)==-1){F[c+i>>2]=-1;r=-1;c=-1;break O}P:{Q:{R:{if((m>>>0)%3|0){a=m-1|0;break R}a=m+2|0;if((a|0)==-1){break Q}}a=F[(a<<2)+i>>2];F[c+i>>2]=a;if((a|0)==-1){break P}F[F[g+24>>2]+(a<<2)>>2]=t;break P}F[c+i>>2]=-1}r=-1;a=m+1|0;a=(a>>>0)%3|0?a:m-2|0;c=-1;if((a|0)==-1){break O}r=F[(a<<2)+i>>2];c=a}a=F[j+388>>2];t=h<<2;m=a+t|0;w=a;a=r<<2;F[m>>2]=F[m>>2]+F[w+a>>2];w=a;a=F[g+24>>2];m=w+a|0;if((h|0)!=-1){F[a+t>>2]=F[m>>2]}a=c;while(1){if((a|0)!=-1){F[(a<<2)+i>>2]=h;t=a+1|0;a=(t>>>0)%3|0?t:a-2|0;g=-1;S:{if((a|0)==-1){break S}a=F[n+(a<<2)>>2];g=-1;if((a|0)==-1){break S}g=a+1|0;g=(g>>>0)%3|0?g:a-2|0}a=g;if((c|0)!=(a|0)){continue}break t}break}F[m>>2]=-1;T:{U:{if(M){break U}if((y|0)!=(z|0)){F[z>>2]=r;z=z+4|0;F[l+28>>2]=z;break U}a=y-o|0;g=a>>2;c=g+1|0;if(c>>>0>=1073741824){break T}h=a>>>1|0;h=a>>>0>=2147483644?1073741823:c>>>0>>0?h:c;if(h){if(h>>>0>=1073741824){break p}c=ka(h<<2)}else{c=0}a=c+(g<<2)|0;F[a>>2]=r;z=a+4|0;if((o|0)!=(y|0)){while(1){a=a-4|0;y=y-4|0;F[a>>2]=F[y>>2];if((o|0)!=(y|0)){continue}break}}y=c+(h<<2)|0;F[l+32>>2]=y;F[l+28>>2]=z;F[l+24>>2]=a;if(o){ja(o)}o=a}F[x>>2]=p;c=f;kc(J,p);break u}break b}g=F[j+8>>2];Ma(g+24|0,8324);a=-1;k=F[j+8>>2];f=L(h,3);i=F[g+28>>2];m=F[g+24>>2];n=i-m|0;g=n>>2;p=g-1|0;F[F[k>>2]+(f<<2)>>2]=p;Ma(k+24|0,8324);r=f+1|0;F[F[k>>2]+(r<<2)>>2]=(F[k+28>>2]-F[k+24>>2]>>2)-1;k=F[j+8>>2];Ma(k+24|0,8324);t=f+2|0;F[F[k>>2]+(t<<2)>>2]=(F[k+28>>2]-F[k+24>>2]>>2)-1;x=F[j+8>>2];k=F[x+24>>2];if(F[x+28>>2]-k>>2>(C|0)){break r}V:{W:{if((i|0)!=(m|0)){F[k+(p<<2)>>2]=f;a=0;if((n|0)==-4){break W}}F[k+(g<<2)>>2]=r;a=g+1|0;if((a|0)==-1){break V}}F[k+(a<<2)>>2]=t}if((d|0)!=(c|0)){F[c>>2]=f;f=c+4|0;F[l+68>>2]=f;k=d;break v}a=d-b|0;k=a>>2;e=k+1|0;if(e>>>0>=1073741824){break b}c=a>>>1|0;a=a>>>0>=2147483644?1073741823:e>>>0>>0?c:e;if(a){if(a>>>0>=1073741824){break p}c=ka(a<<2)}else{c=0}e=c+(k<<2)|0;F[e>>2]=f;k=c+(a<<2)|0;f=e+4|0;if((b|0)!=(d|0)){while(1){e=e-4|0;d=d-4|0;F[e>>2]=F[d>>2];if((b|0)!=(d|0)){continue}break}}F[l+72>>2]=k;F[l+68>>2]=f;F[l+64>>2]=e;if(b){ja(b)}d=k;b=e}kc(J,F[f-4>>2]);a=F[j+40>>2];X:{if((a|0)==F[j+36>>2]){break X}c=a-12|0;g=F[c+4>>2];h=q+(h^-1)|0;if(g>>>0>h>>>0){break t}if((g|0)!=(h|0)){break X}i=G[a-4|0];g=F[c>>2];F[j+40>>2]=c;if((g|0)<0){break t}m=f-4|0;a=F[m>>2];F[l+20>>2]=q+(g^-1);c=l+20|0;F[l+88>>2]=c;Fb(l,l+40|0,c,l+88|0);g=F[l>>2];Y:{if(i&1){c=-1;if((a|0)==-1){break Y}c=a+1|0;c=(c>>>0)%3|0?c:a-2|0;break Y}c=-1;if((a|0)==-1){break Y}c=a-1|0;if((a>>>0)%3|0){break Y}c=a+2|0}F[g+12>>2]=c;a=F[j+40>>2];if((a|0)==F[j+36>>2]){break X}while(1){c=a-12|0;g=F[c+4>>2];if(g>>>0>h>>>0){break t}if((g|0)!=(h|0)){break X}i=G[a-4|0];g=F[c>>2];F[j+40>>2]=c;if((g|0)<0){break t}a=F[m>>2];F[l+20>>2]=q+(g^-1);c=l+20|0;F[l+88>>2]=c;Fb(l,l+40|0,c,l+88|0);g=F[l>>2];Z:{if(i&1){c=-1;if((a|0)==-1){break Z}c=a+1|0;c=(c>>>0)%3|0?c:a-2|0;break Z}c=-1;if((a|0)==-1){break Z}c=a-1|0;if((a>>>0)%3|0){break Z}c=a+2|0}F[g+12>>2]=c;a=F[j+40>>2];if((a|0)!=F[j+36>>2]){continue}break}}c=f}B=(q|0)>(s|0);if((q|0)!=(s|0)){continue}break}s=q;break s}a=-1;if(B){break r}}a=-1;c=F[j+8>>2];if(F[c+28>>2]-F[c+24>>2]>>2>(C|0)){break r}if((b|0)!=(f|0)){m=j+72|0;k=j+60|0;n=j+312|0;while(1){f=f-4|0;q=F[f>>2];F[l+68>>2]=f;_:{if(wa(n)){g=F[j+8>>2];o=F[g>>2];if(((F[g+4>>2]-o>>2>>>0)/3|0)<=(s|0)){a=-1;break r}b=-1;i=F[g+24>>2];a=-1;$:{if((q|0)==-1){break $}e=q+1|0;e=(e>>>0)%3|0?e:q-2|0;a=-1;if((e|0)==-1){break $}a=F[o+(e<<2)>>2]}e=a;a=F[i+(e<<2)>>2];aa:{if((a|0)==-1){h=1;c=-1;break aa}h=1;c=-1;d=a+1|0;a=(d>>>0)%3|0?d:a-2|0;if((a|0)==-1){break aa}h=0;b=a+1|0;b=(b>>>0)%3|0?b:a-2|0;if((b|0)!=-1){c=F[o+(b<<2)>>2]}b=a}a=-1;d=-1;i=F[i+(c<<2)>>2];if((i|0)!=-1){d=i+1|0;d=(d>>>0)%3|0?d:i-2|0}if((b|0)==(q|0)|(d|0)==(q|0)|((q|0)!=-1&F[F[g+12>>2]+(q<<2)>>2]!=-1|(b|0)==(d|0))){break r}if(!h&F[F[g+12>>2]+(b<<2)>>2]!=-1){break r}h=-1;g=F[g+12>>2];i=-1;ba:{if((d|0)==-1){break ba}if(F[g+(d<<2)>>2]!=-1){break r}a=d+1|0;a=(a>>>0)%3|0?a:d-2|0;i=-1;if((a|0)==-1){break ba}i=F[o+(a<<2)>>2]}a=L(s,3);F[l>>2]=a;F[g+(a<<2)>>2]=q;F[g+(q<<2)>>2]=a;a=F[l>>2]+1|0;F[g+(a<<2)>>2]=b;F[g+(b<<2)>>2]=a;a=F[l>>2]+2|0;F[g+(a<<2)>>2]=d;F[g+(d<<2)>>2]=a;a=F[l>>2];F[o+(a<<2)>>2]=c;b=a+1|0;d=o+(b<<2)|0;F[d>>2]=i;q=a+2|0;o=o+(q<<2)|0;F[o>>2]=e;a=F[j+120>>2];e=b?c:-1;c=a+(e>>>3&536870908)|0;g=F[c>>2];O=c,P=oi(e)&g,F[O>>2]=P;h=(b|0)!=-1?F[d>>2]:h;b=a+(h>>>3&536870908)|0;d=F[b>>2];O=b,P=oi(h)&d,F[O>>2]=P;d=-1;d=(q|0)!=-1?F[o>>2]:d;a=a+(d>>>3&536870908)|0;b=F[a>>2];O=a,P=oi(d)&b,F[O>>2]=P;D[l+88|0]=1;wd(k,l+88|0);Ma(m,l);s=s+1|0;b=F[l+64>>2];break _}d=F[j+64>>2];a=F[j+68>>2];if((d|0)==a<<5){if((d+1|0)<0){break b}if(d>>>0<=1073741822){a=a<<6;d=(d&-32)+32|0;a=a>>>0>d>>>0?a:d}else{a=2147483647}$a(k,a);d=F[j+64>>2]}F[j+64>>2]=d+1;a=F[j+60>>2]+(d>>>3&536870908)|0;e=F[a>>2];O=a,P=oi(d)&e,F[O>>2]=P;d=F[j+76>>2];if((d|0)!=F[j+80>>2]){F[d>>2]=q;F[j+76>>2]=d+4;break _}c=F[m>>2];a=d-c|0;o=a>>2;e=o+1|0;if(e>>>0>=1073741824){break b}h=a>>>1|0;h=a>>>0>=2147483644?1073741823:e>>>0>>0?h:e;if(h){if(h>>>0>=1073741824){break p}a=ka(h<<2)}else{a=0}e=a+(o<<2)|0;F[e>>2]=q;q=e+4|0;if((d|0)!=(c|0)){while(1){e=e-4|0;d=d-4|0;F[e>>2]=F[d>>2];if((d|0)!=(c|0)){continue}break}}F[j+80>>2]=a+(h<<2);F[j+76>>2]=q;F[j+72>>2]=e;if(!c){break _}ja(c)}if((b|0)!=(f|0)){continue}break}c=F[j+8>>2]}a=-1;if(((F[c+4>>2]-F[c>>2]>>2>>>0)/3|0)!=(s|0)){break r}a=F[c+28>>2]-F[c+24>>2]>>2;f=F[l+24>>2];h=F[l+28>>2];if((f|0)==(h|0)){break q}while(1){b=F[f>>2];k=F[c+24>>2];d=a-1|0;e=k+(d<<2)|0;if(F[e>>2]==-1){while(1){d=a-2|0;a=a-1|0;e=k+(d<<2)|0;if(F[e>>2]==-1){continue}break}}if(b>>>0<=d>>>0){F[l>>2]=c;e=F[e>>2];D[l+12|0]=1;F[l+8>>2]=e;F[l+4>>2]=e;if((e|0)!=-1){while(1){e=F[F[j+8>>2]>>2]+(e<<2)|0;if(F[e>>2]!=(d|0)){a=-1;break r}F[e>>2]=b;nc(l);e=F[l+8>>2];if((e|0)!=-1){continue}break}c=F[j+8>>2]}k=F[c+24>>2];e=k+(d<<2)|0;if((b|0)!=-1){F[k+(b<<2)>>2]=F[e>>2]}F[e>>2]=-1;e=1<>2];b=k+(b>>>3&536870908)|0;k=k+(d>>>3&536870908)|0;d=1<>2]&d){e=e|F[b>>2]}else{e=F[b>>2]&(e^-1)}F[b>>2]=e;F[k>>2]=F[k>>2]&(d^-1);a=a-1|0}f=f+4|0;if((h|0)!=(f|0)){continue}break}}f=F[l+24>>2]}if(f){ja(f)}b=F[l+48>>2];if(b){while(1){d=F[b>>2];ja(b);b=d;if(b){continue}break}}b=F[l+40>>2];F[l+40>>2]=0;if(b){ja(b)}b=F[l+64>>2];if(b){F[l+68>>2]=b;ja(b)}Z=l+96|0;break o}oa();v()}f=a;if((a|0)==-1){break n}a=K;b=F[a+16>>2];d=b+F[a>>2]|0;b=F[a+8>>2]-b|0;a=F[F[j+4>>2]+32>>2];E[a+38>>1]=H[a+38>>1];F[a>>2]=d;F[a+16>>2]=0;F[a+20>>2]=0;F[a+8>>2]=b;F[a+12>>2]=0;ca:{if(F[j+216>>2]==F[j+220>>2]){break ca}a=F[j+8>>2];if(F[a+4>>2]==F[a>>2]){break ca}b=0;while(1){if(Ad(j,b)){b=b+3|0;a=F[j+8>>2];if(b>>>0>2]-F[a>>2]>>2>>>0){continue}break ca}break}break n}if(G[j+308|0]){D[j+308|0]=0;d=F[j+292>>2];a=0;e=F[j+304>>2]+7|0;a=e>>>0<7?1:a;e=a<<29|e>>>3;b=e+F[j+288>>2]|0;a=(a>>>3|0)+d|0;F[j+288>>2]=b;F[j+292>>2]=b>>>0>>0?a+1|0:a}b=F[j+216>>2];if((b|0)!=F[j+220>>2]){a=0;while(1){e=L(a,144);Zc((e+b|0)+4|0,F[j+8>>2]);d=F[A>>2];c=d+e|0;b=F[c+132>>2];c=F[c+136>>2];if((b|0)!=(c|0)){while(1){Xc((e+F[A>>2]|0)+4|0,F[b>>2]);b=b+4|0;if((c|0)!=(b|0)){continue}break}d=F[A>>2]}if(!Yc((d+e|0)+4|0)){break n}a=a+1|0;b=F[j+216>>2];if(a>>>0<(F[j+220>>2]-b|0)/144>>>0){continue}break}}a=F[j+8>>2];Hb(j+184|0,F[a+28>>2]-F[a+24>>2]>>2);d=F[j+216>>2];if((d|0)!=F[j+220>>2]){b=0;while(1){a=L(b,144)+d|0;d=F[a+60>>2]-F[a+56>>2]>>2;c=a+104|0;a=F[j+8>>2];a=F[a+28>>2]-F[a+24>>2]>>2;Hb(c,(a|0)<(d|0)?d:a);b=b+1|0;d=F[j+216>>2];if(b>>>0<(F[j+220>>2]-d|0)/144>>>0){continue}break}}N=zd(j,f)}}Z=u- -64|0;return N|0}na();v()}function lh(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,J=0,K=0,M=0,N=0;t=Z+-64|0;Z=t;F[a+132>>2]=0;if(F[a+148>>2]){c=F[a+144>>2];if(c){while(1){b=F[c>>2];ja(c);c=b;if(b){continue}break}}c=0;F[a+144>>2]=0;b=F[a+140>>2];a:{if(!b){break a}if(b>>>0>=4){h=b&-4;while(1){e=c<<2;F[e+F[a+136>>2]>>2]=0;F[F[a+136>>2]+(e|4)>>2]=0;F[F[a+136>>2]+(e|8)>>2]=0;F[F[a+136>>2]+(e|12)>>2]=0;c=c+4|0;g=g+4|0;if((h|0)!=(g|0)){continue}break}}b=b&3;if(!b){break a}g=0;while(1){F[F[a+136>>2]+(c<<2)>>2]=0;c=c+1|0;g=g+1|0;if((b|0)!=(g|0)){continue}break}}F[a+148>>2]=0}b:{if(!Da(1,t+60|0,F[F[a+4>>2]+32>>2])){break b}F[a+156>>2]=F[t+60>>2];if(!Da(1,t+56|0,F[F[a+4>>2]+32>>2])){break b}e=F[t+56>>2];if(e>>>0>1431655765|I[a+156>>2]>L(e,3)>>>0){break b}c=F[F[a+4>>2]+32>>2];h=F[c+8>>2];m=F[c+12>>2];b=F[c+20>>2];g=F[c+16>>2];if((m|0)<=(b|0)&g>>>0>=h>>>0|(b|0)>(m|0)){break b}h=G[g+F[c>>2]|0];g=g+1|0;b=g?b:b+1|0;F[c+16>>2]=g;F[c+20>>2]=b;if(!Da(1,t+52|0,c)){break b}n=F[t+52>>2];if(n>>>0>e>>>0|e>>>0>n+((n>>>0)/3|0)>>>0){break b}if(!Da(1,t+48|0,F[F[a+4>>2]+32>>2])){break b}c=F[t+48>>2];if(c>>>0>n>>>0){break b}F[a+28>>2]=F[a+24>>2];g=Zb(ka(88));b=F[a+8>>2];F[a+8>>2]=g;if(b){Za(b);if(!F[a+8>>2]){break b}}F[a+164>>2]=F[a+160>>2];Ib(a+160|0,e);F[a+176>>2]=F[a+172>>2];Ib(a+172|0,e);F[a- -64>>2]=0;F[a+92>>2]=-1;F[a+84>>2]=-1;F[a+88>>2]=-1;F[a+40>>2]=F[a+36>>2];F[a+52>>2]=F[a+48>>2];F[a+76>>2]=F[a+72>>2];y=a+216|0;Dd(y);Cd(y,h);if(!_c(F[a+8>>2],e,c+F[a+156>>2]|0)){break b}b=F[a+156>>2];D[t+8|0]=1;Ea(a+120|0,b+c|0,t+8|0);if((Bd(a,F[F[a+4>>2]+32>>2])|0)==-1){break b}c=a+232|0;F[c+144>>2]=a;b=F[($[F[F[a>>2]+32>>2]](a)|0)+32>>2];b=F[b>>2]+F[b+16>>2]|0;g=F[($[F[F[a>>2]+32>>2]](a)|0)+32>>2];g=F[g+8>>2]-F[g+16>>2]|0;M=c,N=H[F[($[F[F[a>>2]+32>>2]](a)|0)+32>>2]+38>>1],E[M+38>>1]=N;F[c>>2]=b;F[c+16>>2]=0;F[c+20>>2]=0;F[c+8>>2]=g;F[c+12>>2]=0;F[a+372>>2]=h;C=Ja(t+8|0);h=C;m=0;d=Z-16|0;Z=d;b=F[c+4>>2];F[c+40>>2]=F[c>>2];F[c+44>>2]=b;b=F[c+36>>2];F[c+72>>2]=F[c+32>>2];F[c+76>>2]=b;g=F[c+28>>2];b=c- -64|0;F[b>>2]=F[c+24>>2];F[b+4>>2]=g;b=F[c+20>>2];F[c+56>>2]=F[c+16>>2];F[c+60>>2]=b;b=F[c+12>>2];F[c+48>>2]=F[c+8>>2];F[c+52>>2]=b;c:{d:{if(hc(c+40|0,1,d+8|0)){b=F[c+44>>2];F[c>>2]=F[c+40>>2];F[c+4>>2]=b;b=F[c+76>>2];F[c+32>>2]=F[c+72>>2];F[c+36>>2]=b;b=F[c+68>>2];F[c+24>>2]=F[c+64>>2];F[c+28>>2]=b;g=F[c+60>>2];f=g;b=F[c+56>>2];F[c+16>>2]=b;F[c+20>>2]=g;e=F[c+52>>2];g=F[c+48>>2];F[c+8>>2]=g;F[c+12>>2]=e;k=F[d+12>>2];i=e-((b>>>0>g>>>0)+f|0)|0;e=g-b|0;g=F[d+8>>2];if((k|0)==(i|0)&e>>>0>=g>>>0|i>>>0>k>>>0){break d}}break c}e=f+k|0;b=b+g|0;e=b>>>0>>0?e+1|0:e;F[c+16>>2]=b;F[c+20>>2]=e;if(!Aa(c+80|0,c)){break c}if(!yd(c)){break c}b=F[c+4>>2];F[h>>2]=F[c>>2];F[h+4>>2]=b;b=F[c+36>>2];F[h+32>>2]=F[c+32>>2];F[h+36>>2]=b;b=F[c+28>>2];F[h+24>>2]=F[c+24>>2];F[h+28>>2]=b;b=F[c+20>>2];F[h+16>>2]=F[c+16>>2];F[h+20>>2]=b;b=F[c+12>>2];F[h+8>>2]=F[c+8>>2];F[h+12>>2]=b;m=1}Z=d+16|0;e:{if(!m){break e}b=0;c=0;g=0;m=0;j=Z-96|0;Z=j;F[j+72>>2]=0;F[j+64>>2]=0;F[j+68>>2]=0;F[j+48>>2]=0;F[j+52>>2]=0;F[j+40>>2]=0;F[j+44>>2]=0;F[j+56>>2]=1065353216;F[j+32>>2]=0;F[j+24>>2]=0;F[j+28>>2]=0;h=a;B=F[a+124>>2];f:{g:{h:{i:{j:{k:{l:{m:{if((n|0)<=0){break m}J=F[h+216>>2]!=F[h+220>>2];z=1;while(1){e=m;m=e+1|0;n:{o:{p:{q:{r:{s:{t:{u:{v:{w:{x:{y:{z:{A:{B:{if(!G[h+308|0]){break B}k=F[h+296>>2];d=F[h+304>>2];a=k+(d>>>3|0)|0;l=F[h+300>>2];if(a>>>0>=l>>>0){break B}f=G[a|0];a=d+1|0;F[h+304>>2]=a;p=f>>>(d&7)&1;if(!p){break B}i=0;f=a>>>3|0;r=k+f|0;C:{if(r>>>0>=l>>>0){d=a;a=0;break C}r=G[r|0];d=d+2|0;F[h+304>>2]=d;f=d>>>3|0;a=r>>>(a&7)&1}f=f+k|0;if(f>>>0>>0){f=G[f|0];F[h+304>>2]=d+1;i=f>>>(d&7)<<1&2}f=-1;i=p|(a|i)<<1;switch(i-1|0){case 6:break y;case 0:break z;case 2:case 4:break A;default:break l}}if((c|0)==(g|0)){f=-1;break l}d=-1;i=F[h+8>>2];z=F[i+24>>2];r=c-4|0;b=F[r>>2];a=-1;D:{if((b|0)==-1){break D}k=b+1|0;k=(k>>>0)%3|0?k:b-2|0;a=-1;if((k|0)==-1){break D}a=F[F[i>>2]+(k<<2)>>2]}f=F[z+(a<<2)>>2];if((f|0)!=-1){d=f+1|0;d=(d>>>0)%3|0?d:f-2|0}if((b|0)==(d|0)){f=-1;break l}if((b|0)!=-1){f=-1;if(F[F[i+12>>2]+(b<<2)>>2]!=-1){break l}}k=F[i+12>>2];if((d|0)!=-1){f=-1;if(F[k+(d<<2)>>2]!=-1){break l}}l=L(e,3);e=l+1|0;F[k+(b<<2)>>2]=e;s=e<<2;F[s+k>>2]=b;p=l+2|0;F[k+(d<<2)>>2]=p;u=p<<2;F[u+k>>2]=d;k=-1;e=-1;E:{if((b|0)==-1){break E}F:{if((b>>>0)%3|0){b=b-1|0;break F}b=b+2|0;e=-1;if((b|0)==-1){break E}}e=F[F[i>>2]+(b<<2)>>2]}b=e;G:{if((d|0)==-1){break G}e=d+1|0;e=(e>>>0)%3|0?e:d-2|0;if((e|0)==-1){break G}k=F[F[i>>2]+(e<<2)>>2]}f=-1;if((a|0)==(b|0)|(a|0)==(k|0)){break l}e=F[i>>2];F[e+(l<<2)>>2]=a;F[e+s>>2]=k;F[e+u>>2]=b;if((b|0)!=-1){F[z+(b<<2)>>2]=p}b=F[h+120>>2]+(a>>>3&536870908)|0;e=F[b>>2];M=b,N=oi(a)&e,F[M>>2]=N;F[r>>2]=l;b=g;break n}if((c|0)==(g|0)){break l}r=c-4|0;b=F[r>>2];a=F[h+8>>2];d=F[a+12>>2];if((b|0)!=-1&F[d+(b<<2)>>2]!=-1){break l}l=(i|0)==5;i=L(e,3);p=(l?2:1)+i|0;s=p<<2;F[s+d>>2]=b;F[d+(b<<2)>>2]=p;Ma(a+24|0,8324);d=F[h+8>>2];k=F[d+24>>2];if(F[d+28>>2]-k>>2>(B|0)){break l}d=F[d>>2];u=d+s|0;f=F[a+28>>2];a=F[a+24>>2];s=(f-a>>2)-1|0;F[u>>2]=s;if((a|0)!=(f|0)){F[k+(s<<2)>>2]=p}f=l?i:i+2|0;l=d+(i+l<<2)|0;H:{if((b|0)==-1){F[d+(f<<2)>>2]=-1;a=-1;break H}I:{J:{K:{if((b>>>0)%3|0){a=b-1|0;break K}a=b+2|0;if((a|0)==-1){break J}}a=F[d+(a<<2)>>2];F[d+(f<<2)>>2]=a;if((a|0)==-1){break I}F[k+(a<<2)>>2]=f;break I}F[d+(f<<2)>>2]=-1}f=b+1|0;b=(f>>>0)%3|0?f:b-2|0;a=-1;if((b|0)==-1){break H}a=F[d+(b<<2)>>2]}F[l>>2]=a;F[r>>2]=i;b=g;break t}if((b|0)==(c|0)){break l}a=c-4|0;k=F[a>>2];F[j+68>>2]=a;l=F[j+44>>2];L:{if(!l){c=a;break L}f=F[j+40>>2];p=ni(l)>>>0>1;d=e&l+2147483647;M:{if(!p){break M}d=e;if(d>>>0>>0){break M}d=(e>>>0)%(l>>>0)|0}i=d;d=F[f+(i<<2)>>2];if(!d){c=a;break L}d=F[d>>2];if(!d){c=a;break L}N:{if(!p){f=l-1|0;while(1){l=F[d+4>>2];O:{if((l|0)!=(e|0)){if((i|0)==(f&l)){break O}c=a;break L}if((e|0)==F[d+8>>2]){break N}}d=F[d>>2];if(d){continue}break}c=a;break L}while(1){f=F[d+4>>2];P:{if((f|0)!=(e|0)){if(f>>>0>=l>>>0){f=(f>>>0)%(l>>>0)|0}if((f|0)==(i|0)){break P}c=a;break L}if((e|0)==F[d+8>>2]){break N}}d=F[d>>2];if(d){continue}break}c=a;break L}if((a|0)!=(q|0)){F[a>>2]=F[d+12>>2];F[j+68>>2]=c;break L}a=q-b|0;g=a>>2;c=g+1|0;if(c>>>0>=1073741824){break x}f=a>>>1|0;f=a>>>0>=2147483644?1073741823:c>>>0>>0?f:c;if(f){if(f>>>0>=1073741824){break j}a=ka(f<<2)}else{a=0}g=a+(g<<2)|0;F[g>>2]=F[d+12>>2];c=g+4|0;if((b|0)!=(q|0)){while(1){g=g-4|0;q=q-4|0;F[g>>2]=F[q>>2];if((b|0)!=(q|0)){continue}break}}q=a+(f<<2)|0;F[j+72>>2]=q;F[j+68>>2]=c;F[j+64>>2]=g;if(b){ja(b)}}if((c|0)==(g|0)){break p}s=c-4|0;b=F[s>>2];if((b|0)==(k|0)){break p}a=(b|0)==-1;f=F[h+8>>2];if(!a&F[F[f+12>>2]+(b<<2)>>2]!=-1){break p}l=F[f+12>>2];if((k|0)!=-1&F[l+(k<<2)>>2]!=-1){break p}p=L(e,3);r=p+2|0;F[l+(b<<2)>>2]=r;e=r<<2;F[e+l>>2]=b;d=p+1|0;F[l+(k<<2)>>2]=d;u=d<<2;F[u+l>>2]=k;if(a){break w}if((b>>>0)%3|0){d=b-1|0;break s}d=b+2|0;if((d|0)!=-1){break s}a=F[f>>2];d=-1;break r}i=F[h+8>>2];Ma(i+24|0,8324);d=F[h+8>>2];a=L(e,3);k=F[i+28>>2];l=F[i+24>>2];p=k-l|0;i=p>>2;r=i-1|0;F[F[d>>2]+(a<<2)>>2]=r;Ma(d+24|0,8324);s=a+1|0;F[F[d>>2]+(s<<2)>>2]=(F[d+28>>2]-F[d+24>>2]>>2)-1;d=F[h+8>>2];Ma(d+24|0,8324);u=a+2|0;F[F[d>>2]+(u<<2)>>2]=(F[d+28>>2]-F[d+24>>2]>>2)-1;A=F[h+8>>2];d=F[A+24>>2];if(F[A+28>>2]-d>>2>(B|0)){break l}Q:{R:{if((k|0)!=(l|0)){F[d+(r<<2)>>2]=a;f=0;if((p|0)==-4){break R}}F[d+(i<<2)>>2]=s;f=i+1|0;if((f|0)==-1){break Q}}F[d+(f<<2)>>2]=u}if((c|0)!=(q|0)){F[c>>2]=a;c=c+4|0;F[j+68>>2]=c;break t}g=c-b|0;i=g>>2;d=i+1|0;if(d>>>0>=1073741824){break v}f=g>>>1|0;d=g>>>0>=2147483644?1073741823:d>>>0>>0?f:d;if(d){if(d>>>0>=1073741824){break j}f=ka(d<<2)}else{f=0}g=f+(i<<2)|0;F[g>>2]=a;q=f+(d<<2)|0;a=g+4|0;if((b|0)!=(c|0)){while(1){g=g-4|0;c=c-4|0;F[g>>2]=F[c>>2];if((b|0)!=(c|0)){continue}break}}F[j+72>>2]=q;F[j+68>>2]=a;F[j+64>>2]=g;if(!b){break u}ja(b);break u}na();v()}d=-1;a=F[f>>2];F[a+(p<<2)>>2]=-1;i=-1;break q}na();v()}c=a;b=g}a=F[h+40>>2];if((a|0)==F[h+36>>2]){break n}d=a-12|0;i=F[d+4>>2];f=n+(e^-1)|0;if(i>>>0>f>>>0){break p}if((f|0)!=(i|0)){break n}i=G[a-4|0];e=F[d>>2];F[h+40>>2]=d;if((e|0)<0){break p}k=c-4|0;a=F[k>>2];F[j+20>>2]=n+(e^-1);e=j+20|0;F[j+88>>2]=e;Fb(j,j+40|0,e,j+88|0);d=F[j>>2];S:{if(i&1){e=-1;if((a|0)==-1){break S}e=a+1|0;e=(e>>>0)%3|0?e:a-2|0;break S}e=-1;if((a|0)==-1){break S}e=a-1|0;if((a>>>0)%3|0){break S}e=a+2|0}F[d+12>>2]=e;d=F[h+40>>2];if((d|0)==F[h+36>>2]){break n}while(1){a=d-12|0;e=F[a+4>>2];if(e>>>0>f>>>0){break p}if((f|0)!=(e|0)){break n}d=G[d-4|0];e=F[a>>2];F[h+40>>2]=a;if((e|0)<0){break p}a=F[k>>2];F[j+20>>2]=n+(e^-1);e=j+20|0;F[j+88>>2]=e;Fb(j,j+40|0,e,j+88|0);i=F[j>>2];T:{if(d&1){e=-1;if((a|0)==-1){break T}e=a+1|0;e=(e>>>0)%3|0?e:a-2|0;break T}e=-1;if((a|0)==-1){break T}e=a-1|0;if((a>>>0)%3|0){break T}e=a+2|0}F[i+12>>2]=e;d=F[h+40>>2];if((d|0)!=F[h+36>>2]){continue}break}break n}a=F[f>>2];d=F[a+(d<<2)>>2]}F[(p<<2)+a>>2]=d;A=b+1|0;b=(A>>>0)%3|0?A:b-2|0;i=-1;if((b|0)==-1){break q}i=F[(b<<2)+a>>2]}F[a+u>>2]=i;U:{if((k|0)==-1){F[a+e>>2]=-1;i=-1;e=-1;break U}V:{W:{X:{if((k>>>0)%3|0){b=k-1|0;break X}b=k+2|0;if((b|0)==-1){break W}}b=F[(b<<2)+a>>2];F[a+e>>2]=b;if((b|0)==-1){break V}F[F[f+24>>2]+(b<<2)>>2]=r;break V}F[a+e>>2]=-1}i=-1;b=k+1|0;b=(b>>>0)%3|0?b:k-2|0;e=-1;if((b|0)==-1){break U}i=F[(b<<2)+a>>2];e=b}b=F[f+24>>2];k=b+(i<<2)|0;if((d|0)!=-1){F[b+(d<<2)>>2]=F[k>>2]}b=e;while(1){if((b|0)==-1){break o}F[(b<<2)+a>>2]=d;r=b+1|0;b=(r>>>0)%3|0?r:b-2|0;f=-1;Y:{if((b|0)==-1){break Y}b=F[l+(b<<2)>>2];f=-1;if((b|0)==-1){break Y}f=b+1|0;f=(f>>>0)%3|0?f:b-2|0}b=f;if((e|0)!=(b|0)){continue}break}}f=-1;if(!z){break m}break l}F[k>>2]=-1;Z:{if(J){break Z}if((w|0)!=(x|0)){F[x>>2]=i;x=x+4|0;F[j+28>>2]=x;break Z}a=w-o|0;d=a>>2;b=d+1|0;if(b>>>0>=1073741824){break i}e=a>>>1|0;e=a>>>0>=2147483644?1073741823:b>>>0>>0?e:b;if(e){if(e>>>0>=1073741824){break j}a=ka(e<<2)}else{a=0}b=a+(d<<2)|0;F[b>>2]=i;x=b+4|0;if((o|0)!=(w|0)){while(1){b=b-4|0;w=w-4|0;F[b>>2]=F[w>>2];if((o|0)!=(w|0)){continue}break}}w=a+(e<<2)|0;F[j+32>>2]=w;F[j+28>>2]=x;F[j+24>>2]=b;if(o){ja(o)}o=b}F[s>>2]=p;b=g}z=(m|0)<(n|0);if((m|0)!=(n|0)){continue}break}m=n}f=-1;a=F[h+8>>2];if(F[a+28>>2]-F[a+24>>2]>>2>(B|0)){break l}if((c|0)!=(g|0)){l=h+72|0;e=h+60|0;w=h+312|0;while(1){c=c-4|0;i=F[c>>2];F[j+68>>2]=c;_:{if(wa(w)){q=F[h+8>>2];k=F[q>>2];if(((F[q+4>>2]-k>>2>>>0)/3|0)<=(m|0)){f=-1;break l}a=-1;f=-1;b=-1;x=F[q+24>>2];g=-1;$:{if((i|0)==-1){break $}n=i+1|0;n=(n>>>0)%3|0?n:i-2|0;g=-1;if((n|0)==-1){break $}g=F[k+(n<<2)>>2]}n=g;o=F[x+(n<<2)>>2];aa:{if((o|0)==-1){d=1;g=-1;break aa}d=1;p=o+1|0;o=(p>>>0)%3|0?p:o-2|0;g=-1;if((o|0)==-1){break aa}d=0;a=o;g=a+1|0;g=(g>>>0)%3|0?g:a-2|0;if((g|0)!=-1){g=F[k+(g<<2)>>2]}else{g=-1}}o=F[(g<<2)+x>>2];if((o|0)!=-1){b=o+1|0;b=(b>>>0)%3|0?b:o-2|0}if((a|0)==(i|0)|(b|0)==(i|0)|((i|0)!=-1&F[F[q+12>>2]+(i<<2)>>2]!=-1|(a|0)==(b|0))){break l}if(!d&F[F[q+12>>2]+(a<<2)>>2]!=-1){break l}d=-1;o=F[q+12>>2];q=-1;ba:{if((b|0)==-1){break ba}if(F[o+(b<<2)>>2]!=-1){break l}f=b+1|0;f=(f>>>0)%3|0?f:b-2|0;q=-1;if((f|0)==-1){break ba}q=F[k+(f<<2)>>2]}f=L(m,3);F[j>>2]=f;F[o+(f<<2)>>2]=i;F[o+(i<<2)>>2]=f;f=F[j>>2]+1|0;F[o+(f<<2)>>2]=a;F[o+(a<<2)>>2]=f;a=F[j>>2]+2|0;F[o+(a<<2)>>2]=b;F[o+(b<<2)>>2]=a;a=F[j>>2];F[k+(a<<2)>>2]=g;b=a+1|0;f=k+(b<<2)|0;F[f>>2]=q;o=a+2|0;i=k+(o<<2)|0;F[i>>2]=n;a=F[h+120>>2];g=b?g:-1;n=a+(g>>>3&536870908)|0;k=F[n>>2];M=n,N=oi(g)&k,F[M>>2]=N;d=(b|0)!=-1?F[f>>2]:d;b=a+(d>>>3&536870908)|0;g=F[b>>2];M=b,N=oi(d)&g,F[M>>2]=N;b=-1;b=(o|0)!=-1?F[i>>2]:b;a=a+(b>>>3&536870908)|0;g=F[a>>2];M=a,N=oi(b)&g,F[M>>2]=N;D[j+88|0]=1;wd(e,j+88|0);Ma(l,j);m=m+1|0;g=F[j+64>>2];break _}b=F[h+64>>2];a=F[h+68>>2];if((b|0)==a<<5){if((b+1|0)<0){break h}if(b>>>0<=1073741822){a=a<<6;b=(b&-32)+32|0;a=a>>>0>b>>>0?a:b}else{a=2147483647}$a(e,a);b=F[h+64>>2]}F[h+64>>2]=b+1;a=F[h+60>>2]+(b>>>3&536870908)|0;d=F[a>>2];M=a,N=oi(b)&d,F[M>>2]=N;b=F[h+76>>2];if((b|0)!=F[h+80>>2]){F[b>>2]=i;F[h+76>>2]=b+4;break _}f=F[l>>2];a=b-f|0;o=a>>2;d=o+1|0;if(d>>>0>=1073741824){break g}n=a>>>1|0;n=a>>>0>=2147483644?1073741823:d>>>0>>0?n:d;if(n){if(n>>>0>=1073741824){break j}a=ka(n<<2)}else{a=0}d=a+(o<<2)|0;F[d>>2]=i;o=d+4|0;if((b|0)!=(f|0)){while(1){d=d-4|0;b=b-4|0;F[d>>2]=F[b>>2];if((b|0)!=(f|0)){continue}break}}F[h+80>>2]=a+(n<<2);F[h+76>>2]=o;F[h+72>>2]=d;if(!f){break _}ja(f)}if((c|0)!=(g|0)){continue}break}a=F[h+8>>2]}f=-1;if(((F[a+4>>2]-F[a>>2]>>2>>>0)/3|0)!=(m|0)){break l}f=F[a+28>>2]-F[a+24>>2]>>2;c=F[j+24>>2];n=F[j+28>>2];if((c|0)==(n|0)){break k}while(1){g=F[c>>2];e=F[a+24>>2];b=f-1|0;d=e+(b<<2)|0;if(F[d>>2]==-1){while(1){b=f-2|0;f=f-1|0;d=e+(b<<2)|0;if(F[d>>2]==-1){continue}break}}if(b>>>0>=g>>>0){F[j>>2]=a;d=F[d>>2];D[j+12|0]=1;F[j+8>>2]=d;F[j+4>>2]=d;if((d|0)!=-1){while(1){a=F[F[h+8>>2]>>2]+(d<<2)|0;if(F[a>>2]!=(b|0)){f=-1;break l}F[a>>2]=g;nc(j);d=F[j+8>>2];if((d|0)!=-1){continue}break}a=F[h+8>>2]}m=F[a+24>>2];e=m+(b<<2)|0;if((g|0)!=-1){F[m+(g<<2)>>2]=F[e>>2]}F[e>>2]=-1;e=1<>2];g=m+(g>>>3&536870908)|0;d=1<>>3&536870908)|0;if(d&F[m>>2]){b=e|F[g>>2]}else{b=F[g>>2]&(e^-1)}F[g>>2]=b;F[m>>2]=F[m>>2]&(d^-1);f=f-1|0}c=c+4|0;if((n|0)!=(c|0)){continue}break}}c=F[j+24>>2]}if(c){ja(c)}a=F[j+48>>2];if(a){while(1){c=F[a>>2];ja(a);a=c;if(a){continue}break}}a=F[j+40>>2];F[j+40>>2]=0;if(a){ja(a)}a=F[j+64>>2];if(a){F[j+68>>2]=a;ja(a)}Z=j+96|0;a=f;break f}oa();v()}na();v()}na();v()}na();v()}b=a;if((a|0)==-1){break e}a=C;c=F[a+16>>2];g=c+F[a>>2]|0;c=F[a+8>>2]-c|0;a=F[F[h+4>>2]+32>>2];E[a+38>>1]=H[a+38>>1];F[a>>2]=g;F[a+16>>2]=0;F[a+20>>2]=0;F[a+8>>2]=c;F[a+12>>2]=0;ca:{if(F[h+216>>2]==F[h+220>>2]){break ca}a=F[h+8>>2];if(F[a+4>>2]==F[a>>2]){break ca}c=0;while(1){if(Ad(h,c)){c=c+3|0;a=F[h+8>>2];if(c>>>0>2]-F[a>>2]>>2>>>0){continue}break ca}break}break e}if(G[h+308|0]){D[h+308|0]=0;g=F[h+292>>2];a=0;e=F[h+304>>2]+7|0;a=e>>>0<7?1:a;c=a>>>3|0;m=a<<29|e>>>3;a=m+F[h+288>>2]|0;e=c+g|0;F[h+288>>2]=a;F[h+292>>2]=a>>>0>>0?e+1|0:e}c=F[h+216>>2];if((c|0)!=F[h+220>>2]){a=0;while(1){e=L(a,144);Zc((e+c|0)+4|0,F[h+8>>2]);g=F[y>>2];m=g+e|0;c=F[m+132>>2];m=F[m+136>>2];if((c|0)!=(m|0)){while(1){Xc((e+F[y>>2]|0)+4|0,F[c>>2]);c=c+4|0;if((m|0)!=(c|0)){continue}break}g=F[y>>2]}if(!Yc((g+e|0)+4|0)){break e}a=a+1|0;c=F[h+216>>2];if(a>>>0<(F[h+220>>2]-c|0)/144>>>0){continue}break}}a=F[h+8>>2];Hb(h+184|0,F[a+28>>2]-F[a+24>>2]>>2);g=F[h+216>>2];if((g|0)!=F[h+220>>2]){c=0;while(1){a=L(c,144)+g|0;g=F[a+60>>2]-F[a+56>>2]>>2;e=a+104|0;a=F[h+8>>2];a=F[a+28>>2]-F[a+24>>2]>>2;Hb(e,(a|0)<(g|0)?g:a);c=c+1|0;g=F[h+216>>2];if(c>>>0<(F[h+220>>2]-g|0)/144>>>0){continue}break}}K=zd(h,b)}}Z=t- -64|0;return K|0}function Cf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,E=0,H=0,I=0,J=0,K=0,M=0,N=0,O=0;B=c;c=0;m=Z-96|0;Z=m;l=m+16|0;ma(l,0,76);F[m+92>>2]=-1;F[m+8>>2]=0;F[m>>2]=0;F[m+4>>2]=0;r=Z-16|0;Z=r;F[l+68>>2]=0;F[l+72>>2]=0;F[l>>2]=b;s=Z-16|0;Z=s;u=b;a=F[b+20>>2];a:{if((F[b+24>>2]-a|0)<=0){break a}a=F[a>>2];if((a|0)==-1){break a}c=F[F[u+8>>2]+(a<<2)>>2]}b:{c:{d:{if(!c){a=0;break d}a=F[u+100>>2];e=F[u+96>>2];F[s+8>>2]=0;F[s>>2]=0;F[s+4>>2]=0;f=a-e|0;b=(f|0)/12|0;e:{if((a|0)==(e|0)){break e}if(b>>>0>=357913942){break c}d=ka(f);F[s>>2]=d;F[s+8>>2]=d+L(b,12);a=0;n=d;f=f-12|0;d=(f-((f>>>0)%12|0)|0)+12|0;f=ma(n,0,d);F[s+4>>2]=d+f;if(G[c+84|0]){c=b>>>0<=1?1:b;h=c&1;if(b>>>0>=2){g=c&-2;c=0;while(1){d=L(a,12);b=d+e|0;i=F[b+4>>2];j=F[b>>2];d=d+f|0;F[d+8>>2]=F[b+8>>2];F[d>>2]=j;F[d+4>>2]=i;d=L(a|1,12);b=d+e|0;i=F[b+4>>2];j=F[b>>2];d=d+f|0;F[d+8>>2]=F[b+8>>2];F[d>>2]=j;F[d+4>>2]=i;a=a+2|0;c=c+2|0;if((g|0)!=(c|0)){continue}break}}if(!h){break e}b=L(a,12);a=b+e|0;c=F[a+4>>2];e=F[a>>2];b=b+f|0;F[b+8>>2]=F[a+8>>2];F[b>>2]=e;F[b+4>>2]=c;break e}h=b>>>0<=1?1:b;a=F[c+68>>2];c=0;while(1){d=L(c,12);b=d+e|0;g=F[a+(F[b>>2]<<2)>>2];i=F[a+(F[b+4>>2]<<2)>>2];d=d+f|0;F[d+8>>2]=F[a+(F[b+8>>2]<<2)>>2];F[d+4>>2]=i;F[d>>2]=g;c=c+1|0;if((h|0)!=(c|0)){continue}break}}d=0;H=Z-16|0;Z=H;h=ka(88);Zb(h);C=Z-16|0;Z=C;F[h+80>>2]=0;F[h+84>>2]=0;a=F[h+76>>2];F[h+76>>2]=0;if(a){ja(a)}F[h+68>>2]=0;F[h+72>>2]=0;b=h- -64|0;a=F[b>>2];F[b>>2]=0;if(a){ja(a)}g=F[s+4>>2];b=F[s>>2];c=(g-b|0)/12|0;a=L(c,3);f=F[h>>2];e=F[h+4>>2]-f>>2;f:{if(a>>>0>e>>>0){nd(h,a-e|0);g=F[s+4>>2];b=F[s>>2];c=(g-b|0)/12|0;break f}if(a>>>0>=e>>>0){break f}F[h+4>>2]=f+(a<<2)}g:{if((b|0)==(g|0)){break g}e=c>>>0<=1?1:c;g=e&1;a=F[h>>2];if(c>>>0>=2){i=e&-2;c=0;while(1){e=L(d,12);j=e+a|0;f=b+e|0;F[j>>2]=F[f>>2];F[a+(e|4)>>2]=F[f+4>>2];F[j+8>>2]=F[f+8>>2];f=L(d|1,12);e=f+a|0;f=b+f|0;F[e>>2]=F[f>>2];F[e+4>>2]=F[f+4>>2];F[e+8>>2]=F[f+8>>2];d=d+2|0;c=c+2|0;if((i|0)!=(c|0)){continue}break}}if(!g){break g}c=L(d,12);a=c+a|0;b=b+c|0;F[a>>2]=F[b>>2];F[a+4>>2]=F[b+4>>2];F[a+8>>2]=F[b+8>>2]}F[C+12>>2]=-1;a=0;e=0;g=0;f=Z-32|0;Z=f;h:{i:{w=C+12|0;j:{if(!w){break j}c=F[h+4>>2];j=F[h>>2];d=c-j|0;i=d>>2;n=F[h+12>>2];b=F[h+16>>2]-n>>2;k:{if(i>>>0>b>>>0){ab(h+12|0,i-b|0,10228);c=F[h+4>>2];j=F[h>>2];d=c-j|0;i=d>>2;break k}if(b>>>0<=i>>>0){break k}F[h+16>>2]=n+(i<<2)}F[f+24>>2]=0;F[f+16>>2]=0;F[f+20>>2]=0;b=(c|0)==(j|0);if(!b){if((d|0)<0){break i}e=ka(d);F[f+20>>2]=e;F[f+16>>2]=e;F[f+24>>2]=(i<<2)+e}l:{m:{n:{o:{p:{if(d){while(1){i=F[(a<<2)+j>>2];b=F[f+20>>2]-e>>2;q:{if(i>>>0>>0){break q}F[f>>2]=0;d=i+1|0;if(d>>>0>b>>>0){Fa(f+16|0,d-b|0,f);j=F[h>>2];c=F[h+4>>2];e=F[f+16>>2];break q}if(b>>>0<=d>>>0){break q}F[f+20>>2]=(d<<2)+e}b=(i<<2)+e|0;F[b>>2]=F[b>>2]+1;a=a+1|0;d=c-j|0;i=d>>2;if(a>>>0>>0){continue}break}break p}d=0;if(!b){break o}break n}if((c|0)==(j|0)){d=0;break n}if(d>>>0>=2147483645){break m}}d=ka(d<<1);ma(d,255,i<<3)}F[f+8>>2]=0;F[f>>2]=0;F[f+4>>2]=0;b=F[f+20>>2];a=b-e|0;t=a>>2;r:{s:{if((b|0)==(e|0)){break s}if((a|0)<0){break r}q=ka(a);F[f>>2]=q;F[f+8>>2]=(t<<2)+q;b=ma(q,0,a);F[f+4>>2]=b+a;c=t>>>0<=1?1:t;n=c&3;a=0;if(c-1>>>0>=3){o=c&-4;while(1){c=g<<2;F[c+b>>2]=a;x=c|4;a=F[c+e>>2]+a|0;F[x+b>>2]=a;y=c|8;a=a+F[e+x>>2]|0;F[y+b>>2]=a;c=c|12;a=a+F[e+y>>2]|0;F[c+b>>2]=a;a=a+F[c+e>>2]|0;g=g+4|0;p=p+4|0;if((o|0)!=(p|0)){continue}break}}if(!n){break s}while(1){c=g<<2;F[c+b>>2]=a;g=g+1|0;a=F[c+e>>2]+a|0;k=k+1|0;if((n|0)!=(k|0)){continue}break}}if(!i){break l}x=F[h+40>>2];y=F[h+12>>2];n=0;while(1){I=n<<2;a=I+j|0;k=-1;c=n+1|0;b=(c>>>0)%3|0?c:n-2|0;if((b|0)!=-1){k=F[(b<<2)+j>>2]}b=F[a>>2];t:{u:{if(!((n>>>0)%3|0)){p=-1;a=n+2|0;if((a|0)!=-1){p=F[(a<<2)+j>>2]}if(!((b|0)==(k|0)|(b|0)==(p|0))&(k|0)!=(p|0)){break u}x=x+1|0;F[h+40>>2]=x;c=n+3|0;break t}p=F[a-4>>2]}a=p<<2;A=F[a+e>>2];v:{w:{if((A|0)<=0){break w}a=F[a+q>>2];g=0;while(1){o=(a<<3)+d|0;z=F[o>>2];if((z|0)==-1){break w}x:{if((k|0)!=(z|0)){break x}o=F[o+4>>2];if((o|0)!=-1){z=F[(o<<2)+j>>2]}else{z=-1}if((z|0)==(b|0)){break x}while(1){y:{b=a;g=g+1|0;if((A|0)<=(g|0)){break y}a=b+1|0;J=(a<<3)+d|0;z=F[J>>2];K=(b<<3)+d|0;F[K+4>>2]=F[J+4>>2];F[K>>2]=z;if((z|0)!=-1){continue}}break}F[(b<<3)+d>>2]=-1;if((o|0)==-1){break w}F[y+I>>2]=o;F[y+(o<<2)>>2]=n;break v}a=a+1|0;g=g+1|0;if((A|0)!=(g|0)){continue}break}}a=k<<2;k=F[a+e>>2];if((k|0)<=0){break v}a=F[a+q>>2];g=0;while(1){b=(a<<3)+d|0;if(F[b>>2]==-1){F[b>>2]=p;F[b+4>>2]=n;break v}a=a+1|0;g=g+1|0;if((k|0)!=(g|0)){continue}break}}}n=c;if(n>>>0>>0){continue}break}break l}break i}na();v()}F[w>>2]=t;if(q){ja(q)}if(d){ja(d)}a=F[f+16>>2];if(!a){break j}F[f+20>>2]=a;ja(a)}Z=f+32|0;x=(w|0)!=0;if(x){k=Z-32|0;Z=k;a=F[h>>2];g=F[h+4>>2];F[k+24>>2]=0;F[k+16>>2]=0;F[k+20>>2]=0;if((a|0)==(g|0)){c=g}else{a=g-a|0;if((a|0)<0){break i}a=a>>2;b=(a-1>>>5|0)+1|0;c=ka(b<<2);F[k+24>>2]=b;F[k+20>>2]=0;F[k+16>>2]=c;Yb(k+16|0,a);g=F[h>>2];c=F[h+4>>2]}F[k+8>>2]=0;F[k>>2]=0;while(1){z:{o=0;i=0;if((c|0)==(g|0)){break z}while(1){b=F[k+16>>2];A:{if(F[b+(i>>>3&536870908)>>2]>>>i&1){break A}c=F[k>>2];F[k+4>>2]=c;e=F[h+12>>2];a=i;while(1){B:{f=a+1|0;d=a;a=(f>>>0)%3|0?f:a-2|0;if((a|0)==-1){break B}a=F[e+(a<<2)>>2];if((a|0)==-1){break B}f=a+1|0;a=(f>>>0)%3|0?f:a-2|0;if((i|0)==(a|0)|(a|0)==-1){break B}if(!(F[b+(a>>>3&536870908)>>2]>>>a&1)){continue}}break}j=d;C:{D:{E:{while(1){a=F[k+16>>2]+(j>>>3&536870908)|0;F[a>>2]=F[a>>2]|1<>>0)%3|0?a:j-2|0;g=F[h>>2];y=(j>>>0)%3|0;b=(y?-1:2)+j|0;n=F[k>>2];A=(n|0)==(c|0);F:{if(A){break F}w=F[(f<<2)+g>>2];q=F[h+12>>2];a=n;if((b|0)!=-1){e=q+(b<<2)|0;while(1){G:{if((w|0)!=F[a>>2]){break G}p=F[a+4>>2];t=F[e>>2];if((p|0)==(t|0)){break G}e=b;c=-1;a=-1;if((p|0)==-1){break C}break D}a=a+8|0;if((c|0)!=(a|0)){continue}break}break F}while(1){if((w|0)==F[a>>2]){t=-1;e=-1;p=F[a+4>>2];if((p|0)!=-1){break D}}a=a+8|0;if((c|0)!=(a|0)){continue}break}}b=F[(b<<2)+g>>2];H:{if(F[k+8>>2]!=(c|0)){F[c>>2]=b;F[c+4>>2]=f;c=c+8|0;F[k+4>>2]=c;break H}a=c-n|0;p=a>>3;e=p+1|0;if(e>>>0>=536870912){break i}g=a>>>2|0;g=a>>>0>=2147483640?536870911:e>>>0>>0?g:e;if(g){if(g>>>0>=536870912){break E}e=ka(g<<3)}else{e=0}a=e+(p<<3)|0;F[a>>2]=b;F[a+4>>2]=f;b=a+8|0;if(!A){while(1){c=c-8|0;f=F[c+4>>2];a=a-8|0;F[a>>2]=F[c>>2];F[a+4>>2]=f;if((c|0)!=(n|0)){continue}break}c=F[k>>2]}F[k+8>>2]=e+(g<<3);F[k+4>>2]=b;F[k>>2]=a;if(c){ja(c)}c=b}I:{J:{if(y){a=j-1|0;break J}a=j+2|0;if((a|0)==-1){break I}}a=F[F[h+12>>2]+(a<<2)>>2];if((a|0)==-1){break I}j=a+((a>>>0)%3|0?-1:2)|0;if((d|0)==(j|0)){break I}if((j|0)!=-1){continue}}break}g=F[h>>2];break A}oa();v()}c=F[q+(p<<2)>>2];b=e;a=p}if((t|0)!=-1){F[q+(t<<2)>>2]=-1}if((c|0)!=-1){F[q+(c<<2)>>2]=-1}F[q+(b<<2)>>2]=-1;F[q+(a<<2)>>2]=-1;o=1}i=i+1|0;c=F[h+4>>2];if(i>>>0>2>>>0){continue}break}if(o){continue}}break}a=F[k>>2];if(a){ja(a)}a=F[k+16>>2];if(a){ja(a)}Z=k+32|0;n=0;g=Z-32|0;Z=g;e=F[C+12>>2];F[h+36>>2]=e;p=h+24|0;b=F[h+24>>2];a=F[h+28>>2]-b>>2;K:{L:{if(a>>>0>>0){ab(p,e-a|0,10228);F[g+24>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;break L}if(a>>>0>e>>>0){F[h+28>>2]=b+(e<<2)}F[g+24>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;if(!e){break K}}if((e|0)<0){break i}a=(e-1>>>5|0)+1|0;b=ka(a<<2);F[g+24>>2]=a;F[g+20>>2]=0;F[g+16>>2]=b;Yb(g+16|0,e)}a=F[h>>2];b=F[h+4>>2];F[g+8>>2]=0;F[g>>2]=0;F[g+4>>2]=0;M:{if((a|0)==(b|0)){a=b}else{a=b-a|0;if((a|0)<0){break i}a=a>>2;b=(a-1>>>5|0)+1|0;c=ka(b<<2);F[g+8>>2]=b;F[g+4>>2]=0;F[g>>2]=c;Yb(g,a);b=F[h>>2];a=F[h+4>>2]}if(a-b>>>0<12){break M}N:{while(1){q=L(n,3);d=(q<<2)+b|0;f=F[d>>2];c=-1;i=q+1|0;if((i|0)!=-1){c=F[(i<<2)+b>>2]}O:{if((c|0)==(f|0)){break O}i=f;f=F[d+8>>2];if((i|0)==(f|0)|(c|0)==(f|0)){break O}k=0;i=F[g>>2];while(1){f=k+q|0;if(!(F[(f>>>3&536870908)+i>>2]>>>f&1)){a=F[(f<<2)+b>>2];c=1<>2];b=a>>>5|0;i=F[d+(b<<2)>>2];t=c&i;if(t){c=F[h+28>>2];P:{if((c|0)!=F[h+32>>2]){F[c>>2]=-1;F[h+28>>2]=c+4;break P}i=F[p>>2];b=c-i|0;o=b>>2;d=o+1|0;if(d>>>0>=1073741824){break i}j=b>>>1|0;j=b>>>0>=2147483644?1073741823:d>>>0>>0?j:d;if(j){if(j>>>0>=1073741824){break N}b=ka(j<<2)}else{b=0}d=b+(o<<2)|0;F[d>>2]=-1;o=d+4|0;if((c|0)!=(i|0)){while(1){d=d-4|0;c=c-4|0;F[d>>2]=F[c>>2];if((c|0)!=(i|0)){continue}break}}F[h+32>>2]=b+(j<<2);F[h+28>>2]=o;F[h+24>>2]=d;if(!i){break P}ja(i)}c=F[h+52>>2];Q:{if((c|0)!=F[h+56>>2]){F[c>>2]=a;F[h+52>>2]=c+4;break Q}i=F[h+48>>2];b=c-i|0;o=b>>2;d=o+1|0;if(d>>>0>=1073741824){break i}j=b>>>1|0;j=b>>>0>=2147483644?1073741823:d>>>0>>0?j:d;if(j){if(j>>>0>=1073741824){break N}b=ka(j<<2)}else{b=0}d=b+(o<<2)|0;F[d>>2]=a;a=d+4|0;if((c|0)!=(i|0)){while(1){d=d-4|0;c=c-4|0;F[d>>2]=F[c>>2];if((c|0)!=(i|0)){continue}break}}F[h+56>>2]=b+(j<<2);F[h+52>>2]=a;F[h+48>>2]=d;if(!i){break Q}ja(i)}c=F[g+20>>2];a=F[g+24>>2];if((c|0)==a<<5){if((c+1|0)<0){break i}b=g+16|0;if(c>>>0<=1073741822){a=a<<6;c=(c&-32)+32|0;a=a>>>0>c>>>0?a:c}else{a=2147483647}$a(b,a);c=F[g+20>>2]}F[g+20>>2]=c+1;d=F[g+16>>2];a=d+(c>>>3&536870908)|0;b=F[a>>2];N=a,O=oi(c)&b,F[N>>2]=O;c=1<>>5|0;i=F[(b<<2)+d>>2];a=e;e=a+1|0}F[(b<<2)+d>>2]=c|i;o=F[h+24>>2]+(a<<2)|0;j=F[h+12>>2];b=F[h>>2];i=F[g>>2];c=f;R:{S:{T:{while(1){if((c|0)==-1){break T}d=(c>>>3&536870908)+i|0;F[d>>2]=F[d>>2]|1<>2]=c;if(t){F[(c<<2)+b>>2]=a}w=c+1|0;c=(w>>>0)%3|0?w:c-2|0;d=-1;U:{if((c|0)==-1){break U}c=F[j+(c<<2)>>2];d=-1;if((c|0)==-1){break U}d=c+1|0;d=(d>>>0)%3|0?d:c-2|0}c=d;if((f|0)!=(c|0)){continue}break}if((f|0)!=-1){break R}c=1;break S}if((f>>>0)%3|0){c=f-1|0;break S}c=f+2|0;if((c|0)==-1){break R}}c=F[j+(c<<2)>>2];if((c|0)==-1){break R}V:{if((c>>>0)%3|0){c=c-1|0;break V}c=c+2|0;if((c|0)==-1){break R}}f=F[h+12>>2];b=F[h>>2];while(1){d=(c>>>3&536870908)+i|0;F[d>>2]=F[d>>2]|1<>2]=a}W:{if((c>>>0)%3|0){c=c-1|0;break W}c=c+2|0;if((c|0)==-1){break R}}c=F[f+(c<<2)>>2];if((c|0)==-1){break R}c=c+((c>>>0)%3|0?-1:2)|0;if((c|0)!=-1){continue}break}}}k=k+1|0;if((k|0)!=3){continue}break}b=F[h>>2];a=F[h+4>>2]}n=n+1|0;if(n>>>0<(a-b>>2>>>0)/3>>>0){continue}break}break M}oa();v()}c=0;F[h+44>>2]=0;a=F[g+16>>2];b=F[g+20>>2];if(b){e=b&31;b=(b>>>3&536870908)+a|0;d=a;i=0;while(1){if(!(F[d>>2]>>>c&1)){i=i+1|0;F[h+44>>2]=i}f=(c|0)==31;c=f?0:c+1|0;d=(f<<2)+d|0;if((b|0)!=(d|0)|(c|0)!=(e|0)){continue}break}}b=F[g>>2];if(b){ja(b);a=F[g+16>>2]}if(a){ja(a)}Z=g+32|0}Z=C+16|0;if(!x){F[H+8>>2]=0;Za(h);h=0}Z=H+16|0;a=h;break h}na();v()}b=F[s>>2];if(!b){break d}F[s+4>>2]=b;ja(b)}Z=s+16|0;break b}na();v()}c=F[l+4>>2];b=a;F[l+4>>2]=a;if(c){Za(c);b=F[l+4>>2]}X:{if(!b){break X}a=F[u+100>>2];c=F[u+96>>2];D[r+12|0]=0;Ea(l+56|0,(a-c|0)/12|0,r+12|0);a=F[u+100>>2];c=F[u+96>>2];if((a|0)==(c|0)){break X}while(1){if(!(F[F[l+56>>2]+(E>>>3&536870908)>>2]>>>E&1)){a=L(E,3);Vb(l,0,a);c=F[l+8>>2];e=F[l+12>>2];Vb(l,1,a+1|0);f=F[l+20>>2];d=F[l+24>>2];Vb(l,2,a+2|0);n=(c|0)==(e|0)?-1:0;a=d-f>>2;c=e-c>>2;e=a>>>0>c>>>0;c=F[l+36>>2]-F[l+32>>2]>>2>>>0>(e?a:c)>>>0?2:e?1:n;Y:{if(F[l+68>>2]<=0){break Y}F[r+12>>2]=F[l+76>>2];F[r+8>>2]=m;Qa(r+8|0,r+12|0);a=F[((c<<2)+l|0)+44>>2];if((a|0)<0){a=-1}else{e=(a>>>0)/3|0;a=F[(F[F[l>>2]+96>>2]+L(e,12)|0)+(a-L(e,3)<<2)>>2]}F[r+12>>2]=a;F[r+8>>2]=m;Qa(r+8|0,r+12|0);e=F[l+72>>2];F[l+72>>2]=e+2;if(!(e&1)){break Y}F[r+12>>2]=a;F[r+8>>2]=m;Qa(r+8|0,r+12|0);F[l+72>>2]=F[l+72>>2]+1}d=0;e=Z-16|0;Z=e;F[l+68>>2]=F[l+68>>2]+1;a=L(c,12)+l|0;a=F[a+12>>2]-F[a+8>>2]|0;if((a|0)>0){a=a>>>2|0;h=a>>>0<=1?1:a;c=F[((c<<2)+l|0)+44>>2];while(1){a=c;f=(a>>>0)/3|0;c=(a|0)==-1;g=c?-1:f;i=F[l+56>>2]+(g>>>3&536870908)|0;F[i>>2]=F[i>>2]|1<>2]=F[l+72>>2]+1;Z:{_:{$:{aa:{ba:{if(!d){ca:{if((a|0)>=0){F[e+12>>2]=F[(F[F[l>>2]+96>>2]+L(f,12)|0)+((a>>>0)%3<<2)>>2];F[e+8>>2]=m;Qa(e+8|0,e+12|0);break ca}F[e+12>>2]=-1;F[e+8>>2]=m;Qa(e+8|0,e+12|0);if(c){break ba}}c=-1;f=a+1|0;f=(f>>>0)%3|0?f:a-2|0;if((f|0)>=0){g=(f>>>0)/3|0;f=F[(F[F[l>>2]+96>>2]+L(g,12)|0)+(f-L(g,3)<<2)>>2]}else{f=-1}F[e+12>>2]=f;F[e+8>>2]=m;Qa(e+8|0,e+12|0);f=((a>>>0)%3|0?-1:2)+a|0;if((f|0)<0){break aa}c=(f>>>0)/3|0;c=F[(F[F[l>>2]+96>>2]+L(c,12)|0)+(f-L(c,3)<<2)>>2];break aa}c=(a|0)<0?-1:F[(F[F[l>>2]+96>>2]+L(f,12)|0)+((a>>>0)%3<<2)>>2];F[l+76>>2]=c;F[e+12>>2]=c;F[e+8>>2]=m;Qa(e+8|0,e+12|0);if(d&1){c=-1;if((a|0)==-1){break Z}if((L(f,3)|0)!=(a|0)){a=a-1|0;break _}a=a+2|0;break $}c=-1;if((a|0)==-1){break Z}c=a+1|0;a=(c>>>0)%3|0?c:a-2|0;break $}c=-1;F[e+12>>2]=-1;F[e+8>>2]=m;Qa(e+8|0,e+12|0)}F[l+76>>2]=c;F[e+12>>2]=c;F[e+8>>2]=m;Qa(e+8|0,e+12|0)}c=-1;if((a|0)==-1){break Z}}c=F[F[F[l+4>>2]+12>>2]+(a<<2)>>2]}d=d+1|0;if((h|0)!=(d|0)){continue}break}}Z=e+16|0;c=F[u+96>>2];a=F[u+100>>2]}E=E+1|0;if(E>>>0<(a-c|0)/12>>>0){continue}break}}Z=r+16|0;da:{if(b){a=F[B>>2];if(a){F[B+4>>2]=a;ja(a)}F[B>>2]=F[m>>2];F[B+4>>2]=F[m+4>>2];F[B+8>>2]=F[m+8>>2];M=F[m+84>>2];break da}a=F[m>>2];if(!a){break da}F[m+4>>2]=a;ja(a)}a=F[m+72>>2];if(a){ja(a)}a=F[m+48>>2];if(a){F[m+52>>2]=a;ja(a)}a=F[m+36>>2];if(a){F[m+40>>2]=a;ja(a)}a=F[m+24>>2];if(a){F[m+28>>2]=a;ja(a)}a=F[m+20>>2];F[m+20>>2]=0;if(a){Za(a)}Z=m+96|0;return M|0}function sf(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0;i=b;a=0;b=0;a:{b:{switch(d-1|0){case 0:j=F[i+80>>2];h=G[c+24|0];c:{if((L(j,h)|0)!=(e|0)){break c}d=F[c+28>>2]!=1;b=G[c+84|0];if(!(d|!b)){la(f,F[F[c>>2]>>2]+F[c+48>>2]|0,e);b=1;break c}if(h){a=ka(h);ma(a,0,h)}d:{if(!j){b=1;break d}if(!d){if(h){d=0;e=0;while(1){i=d+f|0;k=F[F[c>>2]>>2];m=F[c+48>>2];g=F[c+40>>2];b=ki(g,F[c+44>>2],G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],0);n=b;b=b+m|0;la(i,la(a,b+k|0,g),h);d=d+h|0;b=1;e=e+1|0;if((j|0)!=(e|0)){continue}break}break d}if(b){b=1;h=F[c>>2];e=F[c+48>>2];f=F[c+40>>2];i=F[c+44>>2];if((j|0)!=1){g=j&-2;c=0;d=0;while(1){k=F[h>>2];m=ki(f,i,c,0)+e|0;k=la(a,k+m|0,f);m=F[h>>2];n=ki(f,i,c|1,0)+e|0;la(k,m+n|0,f);c=c+2|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}g=c}if(!(j&1)){break d}c=F[h>>2];d=ki(g,0,f,i)+e|0;la(a,c+d|0,f);break d}b=1;h=F[c>>2];e=F[c+48>>2];g=F[c+68>>2];f=F[c+40>>2];i=F[c+44>>2];c=0;if((j|0)!=1){k=j&-2;d=0;while(1){m=F[h>>2];n=c<<2;l=ki(f,i,F[n+g>>2],0)+e|0;m=la(a,m+l|0,f);l=F[h>>2];n=ki(f,i,F[g+(n|4)>>2],0)+e|0;la(m,l+n|0,f);c=c+2|0;d=d+2|0;if((k|0)!=(d|0)){continue}break}}if(!(j&1)){break d}d=F[h>>2];c=ki(f,i,F[g+(c<<2)>>2],0)+e|0;la(a,c+d|0,f);break d}b=0;if(!h){d=0;while(1){if(!Cb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],a)){break d}d=d+1|0;b=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}break d}d=0;e=0;while(1){if(!Cb(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],a)){break d}la(d+f|0,a,h);d=d+h|0;e=e+1|0;b=j>>>0<=e>>>0;if((e|0)!=(j|0)){continue}break}}if(!a){break c}ja(a)}break a;case 2:n=G[c+24|0];l=n<<1;j=F[i+80>>2];e:{if((L(l,j)|0)!=(e|0)){break e}i=F[c+28>>2]!=3;d=G[c+84|0];if(!(i|!d)){la(f,F[F[c>>2]>>2]+F[c+48>>2]|0,e);a=1;break e}f:{if(!n){e=0;break f}e=ka(l);ma(e,0,l)}g:{if(!j){a=1;break g}if(!i){o=F[c+68>>2];k=F[c>>2];b=F[c+48>>2];i=F[c+40>>2];m=F[c+44>>2];if(n){if(!d){c=0;d=0;while(1){a=1;g=F[k>>2];p=ki(i,m,F[o+(d<<2)>>2],0)+b|0;la((c<<1)+f|0,la(e,g+p|0,i),l);c=c+n|0;d=d+1|0;if((j|0)!=(d|0)){continue}break}break g}c=0;while(1){a=1;o=F[k>>2];p=ki(g,h,i,m)+b|0;la((c<<1)+f|0,la(e,o+p|0,i),l);c=c+n|0;d=h;g=g+1|0;d=g?d:d+1|0;h=d;if((j|0)!=(g|0)|d){continue}break}break g}if(!d){a=1;c=0;if((j|0)!=1){f=j&-2;d=0;while(1){h=F[k>>2];g=c<<2;n=ki(i,m,F[g+o>>2],0)+b|0;h=la(e,h+n|0,i);n=F[k>>2];g=ki(i,m,F[o+(g|4)>>2],0)+b|0;la(h,g+n|0,i);c=c+2|0;d=d+2|0;if((f|0)!=(d|0)){continue}break}}if(!(j&1)){break g}d=F[k>>2];b=ki(i,m,F[o+(c<<2)>>2],0)+b|0;la(e,b+d|0,i);break g}n=j&1;a=1;if((j|0)!=1){j=j&-2;f=0;c=0;while(1){d=F[k>>2];l=ki(g,h,i,m)+b|0;d=la(e,d+l|0,i);l=F[k>>2];o=ki(i,m,g|1,h)+b|0;la(d,l+o|0,i);g=g+2|0;h=g>>>0<2?h+1|0:h;f=f+2|0;d=f>>>0<2?c+1|0:c;c=d;if((f|0)!=(j|0)|c){continue}break}}if(!n){break g}c=F[k>>2];b=ki(g,h,i,m)+b|0;la(e,b+c|0,i);break g}if(!n){d=0;while(1){if(!Ab(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break g}d=d+1|0;a=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}break g}d=0;while(1){if(!Ab(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break g}la((b<<1)+f|0,e,l);b=b+n|0;d=d+1|0;a=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}}if(!e){break e}ja(e)}b=a;break a;case 4:l=G[c+24|0];o=l<<2;j=F[i+80>>2];h:{if((L(o,j)|0)!=(e|0)){break h}i=F[c+28>>2]!=5;d=G[c+84|0];if(!(i|!d)){la(f,F[F[c>>2]>>2]+F[c+48>>2]|0,e);b=1;break h}i:{if(!l){e=0;break i}e=ka(o);ma(e,0,o)}b=1;j:{if(!j){break j}if(!i){a=F[c+68>>2];m=F[c>>2];i=F[c+48>>2];k=F[c+40>>2];n=F[c+44>>2];if(l){if(!d){c=0;d=0;while(1){g=F[m>>2];p=ki(k,n,F[a+(d<<2)>>2],0)+i|0;la((c<<2)+f|0,la(e,g+p|0,k),o);c=c+l|0;d=d+1|0;if((j|0)!=(d|0)){continue}break}break j}c=0;while(1){d=F[m>>2];p=ki(g,h,k,n)+i|0;la((c<<2)+f|0,la(e,d+p|0,k),o);c=c+l|0;g=g+1|0;a=g?h:h+1|0;h=a;if((j|0)!=(g|0)|h){continue}break}break j}if(!d){c=0;if((j|0)!=1){f=j&-2;d=0;while(1){h=F[m>>2];g=c<<2;l=ki(k,n,F[g+a>>2],0)+i|0;h=la(e,h+l|0,k);l=F[m>>2];g=ki(k,n,F[a+(g|4)>>2],0)+i|0;la(h,g+l|0,k);c=c+2|0;d=d+2|0;if((f|0)!=(d|0)){continue}break}}if(!(j&1)){break j}d=F[m>>2];a=ki(k,n,F[a+(c<<2)>>2],0)+i|0;la(e,a+d|0,k);break j}l=j&1;if((j|0)!=1){j=j&-2;f=0;c=0;while(1){a=F[m>>2];d=ki(g,h,k,n)+i|0;a=la(e,a+d|0,k);d=F[m>>2];o=ki(k,n,g|1,h)+i|0;la(a,d+o|0,k);d=h;g=g+2|0;h=g>>>0<2?d+1|0:d;f=f+2|0;a=f>>>0<2?c+1|0:c;c=a;if((f|0)!=(j|0)|c){continue}break}}if(!l){break j}a=F[m>>2];c=ki(g,h,k,n)+i|0;la(e,a+c|0,k);break j}b=0;if(!l){d=0;while(1){if(!yb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break j}d=d+1|0;b=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}break j}d=0;while(1){if(!yb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break j}la((a<<2)+f|0,e,o);a=a+l|0;d=d+1|0;b=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}}if(!e){break h}ja(e)}break a;case 1:j=F[i+80>>2];h=G[c+24|0];k:{if((L(j,h)|0)!=(e|0)){break k}d=F[c+28>>2]!=2;b=G[c+84|0];if(!(d|!b)){la(f,F[F[c>>2]>>2]+F[c+48>>2]|0,e);b=1;break k}if(h){a=ka(h);ma(a,0,h)}l:{if(!j){b=1;break l}if(!d){if(h){d=0;e=0;while(1){i=d+f|0;k=F[F[c>>2]>>2];m=F[c+48>>2];g=F[c+40>>2];b=ki(g,F[c+44>>2],G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],0);n=b;b=b+m|0;la(i,la(a,b+k|0,g),h);d=d+h|0;b=1;e=e+1|0;if((j|0)!=(e|0)){continue}break}break l}if(b){b=1;h=F[c>>2];e=F[c+48>>2];f=F[c+40>>2];i=F[c+44>>2];if((j|0)!=1){g=j&-2;c=0;d=0;while(1){k=F[h>>2];m=ki(f,i,c,0)+e|0;k=la(a,k+m|0,f);m=F[h>>2];n=ki(f,i,c|1,0)+e|0;la(k,m+n|0,f);c=c+2|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}g=c}if(!(j&1)){break l}c=F[h>>2];d=ki(g,0,f,i)+e|0;la(a,c+d|0,f);break l}b=1;h=F[c>>2];e=F[c+48>>2];g=F[c+68>>2];f=F[c+40>>2];i=F[c+44>>2];c=0;if((j|0)!=1){k=j&-2;d=0;while(1){m=F[h>>2];n=c<<2;l=ki(f,i,F[n+g>>2],0)+e|0;m=la(a,m+l|0,f);l=F[h>>2];n=ki(f,i,F[g+(n|4)>>2],0)+e|0;la(m,l+n|0,f);c=c+2|0;d=d+2|0;if((k|0)!=(d|0)){continue}break}}if(!(j&1)){break l}d=F[h>>2];c=ki(f,i,F[g+(c<<2)>>2],0)+e|0;la(a,c+d|0,f);break l}b=0;if(!h){d=0;while(1){if(!Bb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],a)){break l}d=d+1|0;b=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}break l}d=0;e=0;while(1){if(!Bb(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],a)){break l}la(d+f|0,a,h);d=d+h|0;e=e+1|0;b=j>>>0<=e>>>0;if((e|0)!=(j|0)){continue}break}}if(!a){break k}ja(a)}break a;case 3:n=G[c+24|0];l=n<<1;j=F[i+80>>2];m:{if((L(l,j)|0)!=(e|0)){break m}i=F[c+28>>2]!=4;d=G[c+84|0];if(!(i|!d)){la(f,F[F[c>>2]>>2]+F[c+48>>2]|0,e);a=1;break m}n:{if(!n){e=0;break n}e=ka(l);ma(e,0,l)}o:{if(!j){a=1;break o}if(!i){o=F[c+68>>2];k=F[c>>2];b=F[c+48>>2];i=F[c+40>>2];m=F[c+44>>2];if(n){if(!d){c=0;d=0;while(1){a=1;g=F[k>>2];p=ki(i,m,F[o+(d<<2)>>2],0)+b|0;la((c<<1)+f|0,la(e,g+p|0,i),l);c=c+n|0;d=d+1|0;if((j|0)!=(d|0)){continue}break}break o}c=0;while(1){a=1;o=F[k>>2];p=ki(g,h,i,m)+b|0;la((c<<1)+f|0,la(e,o+p|0,i),l);c=c+n|0;d=h;g=g+1|0;d=g?d:d+1|0;h=d;if((j|0)!=(g|0)|d){continue}break}break o}if(!d){a=1;c=0;if((j|0)!=1){f=j&-2;d=0;while(1){h=F[k>>2];g=c<<2;n=ki(i,m,F[g+o>>2],0)+b|0;h=la(e,h+n|0,i);n=F[k>>2];g=ki(i,m,F[o+(g|4)>>2],0)+b|0;la(h,g+n|0,i);c=c+2|0;d=d+2|0;if((f|0)!=(d|0)){continue}break}}if(!(j&1)){break o}d=F[k>>2];b=ki(i,m,F[o+(c<<2)>>2],0)+b|0;la(e,b+d|0,i);break o}n=j&1;a=1;if((j|0)!=1){j=j&-2;f=0;c=0;while(1){d=F[k>>2];l=ki(g,h,i,m)+b|0;d=la(e,d+l|0,i);l=F[k>>2];o=ki(i,m,g|1,h)+b|0;la(d,l+o|0,i);g=g+2|0;h=g>>>0<2?h+1|0:h;f=f+2|0;d=f>>>0<2?c+1|0:c;c=d;if((f|0)!=(j|0)|c){continue}break}}if(!n){break o}c=F[k>>2];b=ki(g,h,i,m)+b|0;la(e,b+c|0,i);break o}if(!n){d=0;while(1){if(!zb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break o}d=d+1|0;a=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}break o}d=0;while(1){if(!zb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break o}la((b<<1)+f|0,e,l);b=b+n|0;d=d+1|0;a=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}}if(!e){break m}ja(e)}b=a;break a;case 5:l=G[c+24|0];o=l<<2;j=F[i+80>>2];p:{if((L(o,j)|0)!=(e|0)){break p}i=F[c+28>>2]!=6;d=G[c+84|0];if(!(i|!d)){la(f,F[F[c>>2]>>2]+F[c+48>>2]|0,e);b=1;break p}q:{if(!l){e=0;break q}e=ka(o);ma(e,0,o)}b=1;r:{if(!j){break r}if(!i){a=F[c+68>>2];m=F[c>>2];i=F[c+48>>2];k=F[c+40>>2];n=F[c+44>>2];if(l){if(!d){c=0;d=0;while(1){g=F[m>>2];p=ki(k,n,F[a+(d<<2)>>2],0)+i|0;la((c<<2)+f|0,la(e,g+p|0,k),o);c=c+l|0;d=d+1|0;if((j|0)!=(d|0)){continue}break}break r}c=0;while(1){d=F[m>>2];p=ki(g,h,k,n)+i|0;la((c<<2)+f|0,la(e,d+p|0,k),o);c=c+l|0;g=g+1|0;a=g?h:h+1|0;h=a;if((j|0)!=(g|0)|h){continue}break}break r}if(!d){c=0;if((j|0)!=1){f=j&-2;d=0;while(1){h=F[m>>2];g=c<<2;l=ki(k,n,F[g+a>>2],0)+i|0;h=la(e,h+l|0,k);l=F[m>>2];g=ki(k,n,F[a+(g|4)>>2],0)+i|0;la(h,g+l|0,k);c=c+2|0;d=d+2|0;if((f|0)!=(d|0)){continue}break}}if(!(j&1)){break r}d=F[m>>2];a=ki(k,n,F[a+(c<<2)>>2],0)+i|0;la(e,a+d|0,k);break r}l=j&1;if((j|0)!=1){j=j&-2;f=0;c=0;while(1){a=F[m>>2];d=ki(g,h,k,n)+i|0;a=la(e,a+d|0,k);d=F[m>>2];o=ki(k,n,g|1,h)+i|0;la(a,d+o|0,k);d=h;g=g+2|0;h=g>>>0<2?d+1|0:d;f=f+2|0;a=f>>>0<2?c+1|0:c;c=a;if((f|0)!=(j|0)|c){continue}break}}if(!l){break r}a=F[m>>2];c=ki(g,h,k,n)+i|0;la(e,a+c|0,k);break r}b=0;if(!l){d=0;while(1){if(!xb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break r}d=d+1|0;b=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}break r}d=0;while(1){if(!xb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],e)){break r}la((a<<2)+f|0,e,o);a=a+l|0;d=d+1|0;b=j>>>0<=d>>>0;if((d|0)!=(j|0)){continue}break}}if(!e){break p}ja(e)}break a;case 8:p=G[c+24|0];q=p<<2;k=F[i+80>>2];s:{if((L(q,k)|0)!=(e|0)){break s}i=F[c+28>>2];t:{if(!p){break t}a=ka(q);d=a;m=q-4|0;l=(m>>>2|0)+1&7;if(l){e=0;while(1){F[d>>2]=-1073741824;d=d+4|0;e=e+1|0;if((l|0)!=(e|0)){continue}break}}if(m>>>0<28){break t}e=(p<<2)+a|0;while(1){F[d+24>>2]=-1073741824;F[d+28>>2]=-1073741824;F[d+16>>2]=-1073741824;F[d+20>>2]=-1073741824;F[d+8>>2]=-1073741824;F[d+12>>2]=-1073741824;F[d>>2]=-1073741824;F[d+4>>2]=-1073741824;d=d+32|0;if((e|0)!=(d|0)){continue}break}}u:{if(!k){b=1;break u}if((i|0)==9){r=F[c+68>>2];l=F[c>>2];i=F[c+48>>2];s=G[c+84|0];m=F[c+44>>2];c=F[c+40>>2];o=c;if(p){e=0;d=0;while(1){h=(e<<2)+f|0;g=F[l>>2];b=ki(c,m,s?d:F[r+(d<<2)>>2],0)+i|0;la(h,la(a,b+g|0,o),q);e=e+p|0;b=1;d=d+1|0;if((k|0)!=(d|0)){continue}break}break u}if(!s){b=1;d=0;if((k|0)!=1){f=k&-2;e=0;while(1){h=F[l>>2];g=d<<2;j=ki(c,m,F[g+r>>2],0)+i|0;h=la(a,h+j|0,o);j=F[l>>2];g=ki(c,m,F[r+(g|4)>>2],0)+i|0;la(h,j+g|0,o);d=d+2|0;e=e+2|0;if((f|0)!=(e|0)){continue}break}}if(!(k&1)){break u}e=F[l>>2];c=ki(c,m,F[r+(d<<2)>>2],0)+i|0;la(a,c+e|0,o);break u}f=k&1;b=1;if((k|0)!=1){k=k&-2;while(1){d=F[l>>2];e=ki(g,h,c,m)+i|0;d=la(a,d+e|0,o);e=F[l>>2];p=ki(c,m,g|1,h)+i|0;la(d,e+p|0,o);g=g+2|0;h=g>>>0<2?h+1|0:h;d=j;e=n+2|0;d=e>>>0<2?d+1|0:d;n=e;j=d;if((e|0)!=(k|0)|d){continue}break}}if(!f){break u}d=F[l>>2];c=ki(g,h,c,m)+i|0;la(a,c+d|0,o);break u}if(!p){d=0;while(1){if(!lb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],a)){break u}d=d+1|0;b=k>>>0<=d>>>0;if((d|0)!=(k|0)){continue}break}break u}e=0;d=0;while(1){if(!lb(c,G[c+84|0]?d:F[F[c+68>>2]+(d<<2)>>2],D[c+24|0],a)){break u}la((e<<2)+f|0,a,q);e=e+p|0;d=d+1|0;b=k>>>0<=d>>>0;if((d|0)!=(k|0)){continue}break}}if(!a){break s}ja(a)}a=b;break;default:break b}}b=a}return b|0}function Pd(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;h=Z-80|0;Z=h;e=F[c+36>>2];F[h+72>>2]=F[c+32>>2];F[h+76>>2]=e;f=F[c+28>>2];e=h- -64|0;F[e>>2]=F[c+24>>2];F[e+4>>2]=f;e=F[c+20>>2];F[h+56>>2]=F[c+16>>2];F[h+60>>2]=e;e=F[c+12>>2];F[h+48>>2]=F[c+8>>2];F[h+52>>2]=e;e=F[c+4>>2];F[h+40>>2]=F[c>>2];F[h+44>>2]=e;jc(a,h+40|0,h+24|0);a:{if(F[a>>2]){break a}if(D[a+15|0]<0){ja(F[a+4>>2])}if(G[h+31|0]!=1){b=ka(32);D[b+20|0]=0;c=G[1446]|G[1447]<<8|(G[1448]<<16|G[1449]<<24);D[b+16|0]=c;D[b+17|0]=c>>>8;D[b+18|0]=c>>>16;D[b+19|0]=c>>>24;c=G[1442]|G[1443]<<8|(G[1444]<<16|G[1445]<<24);d=G[1438]|G[1439]<<8|(G[1440]<<16|G[1441]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1434]|G[1435]<<8|(G[1436]<<16|G[1437]<<24);d=G[1430]|G[1431]<<8|(G[1432]<<16|G[1433]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;F[a>>2]=-1;ra(a+4|0,b,20);ja(b);break a}j=Z-16|0;Z=j;b:{c:{switch(G[h+32|0]){case 0:e=Kd(ka(48));F[e>>2]=9864;F[h+8>>2]=0;F[h+12>>2]=0;F[h>>2]=0;F[h+4>>2]=0;F[h+16>>2]=e;break b;case 1:e=Kd(ka(52));F[e+48>>2]=0;F[e>>2]=8176;F[h+8>>2]=0;F[h+12>>2]=0;F[h>>2]=0;F[h+4>>2]=0;F[h+16>>2]=e;break b;default:break c}}f=ka(32);D[f+28|0]=0;e=G[1520]|G[1521]<<8|(G[1522]<<16|G[1523]<<24);D[f+24|0]=e;D[f+25|0]=e>>>8;D[f+26|0]=e>>>16;D[f+27|0]=e>>>24;e=G[1516]|G[1517]<<8|(G[1518]<<16|G[1519]<<24);g=G[1512]|G[1513]<<8|(G[1514]<<16|G[1515]<<24);D[f+16|0]=g;D[f+17|0]=g>>>8;D[f+18|0]=g>>>16;D[f+19|0]=g>>>24;D[f+20|0]=e;D[f+21|0]=e>>>8;D[f+22|0]=e>>>16;D[f+23|0]=e>>>24;e=G[1508]|G[1509]<<8|(G[1510]<<16|G[1511]<<24);g=G[1504]|G[1505]<<8|(G[1506]<<16|G[1507]<<24);D[f+8|0]=g;D[f+9|0]=g>>>8;D[f+10|0]=g>>>16;D[f+11|0]=g>>>24;D[f+12|0]=e;D[f+13|0]=e>>>8;D[f+14|0]=e>>>16;D[f+15|0]=e>>>24;e=G[1500]|G[1501]<<8|(G[1502]<<16|G[1503]<<24);g=G[1496]|G[1497]<<8|(G[1498]<<16|G[1499]<<24);D[f|0]=g;D[f+1|0]=g>>>8;D[f+2|0]=g>>>16;D[f+3|0]=g>>>24;D[f+4|0]=e;D[f+5|0]=e>>>8;D[f+6|0]=e>>>16;D[f+7|0]=e>>>24;F[j>>2]=-1;e=j|4;ra(e,f,28);k=D[j+15|0];F[h>>2]=F[j>>2];g=h+4|0;d:{if((k|0)>=0){k=F[e+4>>2];F[g>>2]=F[e>>2];F[g+4>>2]=k;F[g+8>>2]=F[e+8>>2];F[h+16>>2]=0;break d}ra(g,F[j+4>>2],F[j+8>>2]);e=D[j+15|0];F[h+16>>2]=0;if((e|0)>=0){break d}ja(F[j+4>>2])}ja(f)}Z=j+16|0;e=F[h>>2];e:{if(e){F[a>>2]=e;a=a+4|0;if(D[h+15|0]>=0){b=h|4;c=F[b+4>>2];F[a>>2]=F[b>>2];F[a+4>>2]=c;F[a+8>>2]=F[b+8>>2];break e}ra(a,F[h+4>>2],F[h+8>>2]);break e}e=F[h+16>>2];F[h+16>>2]=0;F[e+44>>2]=d;f=Z-32|0;Z=f;F[e+32>>2]=c;F[e+40>>2]=b;F[e+4>>2]=d;jc(a,c,f+16|0);f:{if(F[a>>2]){break f}if(D[a+15|0]<0){ja(F[a+4>>2])}b=G[f+23|0];if(($[F[F[e>>2]+8>>2]](e)|0)!=(b|0)){b=ka(64);D[b+50|0]=0;c=G[1304]|G[1305]<<8;D[b+48|0]=c;D[b+49|0]=c>>>8;c=G[1300]|G[1301]<<8|(G[1302]<<16|G[1303]<<24);d=G[1296]|G[1297]<<8|(G[1298]<<16|G[1299]<<24);D[b+40|0]=d;D[b+41|0]=d>>>8;D[b+42|0]=d>>>16;D[b+43|0]=d>>>24;D[b+44|0]=c;D[b+45|0]=c>>>8;D[b+46|0]=c>>>16;D[b+47|0]=c>>>24;c=G[1292]|G[1293]<<8|(G[1294]<<16|G[1295]<<24);d=G[1288]|G[1289]<<8|(G[1290]<<16|G[1291]<<24);D[b+32|0]=d;D[b+33|0]=d>>>8;D[b+34|0]=d>>>16;D[b+35|0]=d>>>24;D[b+36|0]=c;D[b+37|0]=c>>>8;D[b+38|0]=c>>>16;D[b+39|0]=c>>>24;c=G[1284]|G[1285]<<8|(G[1286]<<16|G[1287]<<24);d=G[1280]|G[1281]<<8|(G[1282]<<16|G[1283]<<24);D[b+24|0]=d;D[b+25|0]=d>>>8;D[b+26|0]=d>>>16;D[b+27|0]=d>>>24;D[b+28|0]=c;D[b+29|0]=c>>>8;D[b+30|0]=c>>>16;D[b+31|0]=c>>>24;c=G[1276]|G[1277]<<8|(G[1278]<<16|G[1279]<<24);d=G[1272]|G[1273]<<8|(G[1274]<<16|G[1275]<<24);D[b+16|0]=d;D[b+17|0]=d>>>8;D[b+18|0]=d>>>16;D[b+19|0]=d>>>24;D[b+20|0]=c;D[b+21|0]=c>>>8;D[b+22|0]=c>>>16;D[b+23|0]=c>>>24;c=G[1268]|G[1269]<<8|(G[1270]<<16|G[1271]<<24);d=G[1264]|G[1265]<<8|(G[1266]<<16|G[1267]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1260]|G[1261]<<8|(G[1262]<<16|G[1263]<<24);d=G[1256]|G[1257]<<8|(G[1258]<<16|G[1259]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;F[a>>2]=-1;ra(a+4|0,b,50);ja(b);break f}c=G[f+21|0];D[e+36|0]=c;d=G[f+22|0];D[e+37|0]=d;if((c|0)!=2){b=ka(32);D[b+26|0]=0;c=G[1427]|G[1428]<<8;D[b+24|0]=c;D[b+25|0]=c>>>8;c=G[1423]|G[1424]<<8|(G[1425]<<16|G[1426]<<24);d=G[1419]|G[1420]<<8|(G[1421]<<16|G[1422]<<24);D[b+16|0]=d;D[b+17|0]=d>>>8;D[b+18|0]=d>>>16;D[b+19|0]=d>>>24;D[b+20|0]=c;D[b+21|0]=c>>>8;D[b+22|0]=c>>>16;D[b+23|0]=c>>>24;c=G[1415]|G[1416]<<8|(G[1417]<<16|G[1418]<<24);d=G[1411]|G[1412]<<8|(G[1413]<<16|G[1414]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1407]|G[1408]<<8|(G[1409]<<16|G[1410]<<24);d=G[1403]|G[1404]<<8|(G[1405]<<16|G[1406]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;F[a>>2]=-5;ra(a+4|0,b,26);ja(b);break f}b=b?2:3;if((b|0)!=(d|0)){b=ka(32);D[b+26|0]=0;c=G[1400]|G[1401]<<8;D[b+24|0]=c;D[b+25|0]=c>>>8;c=G[1396]|G[1397]<<8|(G[1398]<<16|G[1399]<<24);d=G[1392]|G[1393]<<8|(G[1394]<<16|G[1395]<<24);D[b+16|0]=d;D[b+17|0]=d>>>8;D[b+18|0]=d>>>16;D[b+19|0]=d>>>24;D[b+20|0]=c;D[b+21|0]=c>>>8;D[b+22|0]=c>>>16;D[b+23|0]=c>>>24;c=G[1388]|G[1389]<<8|(G[1390]<<16|G[1391]<<24);d=G[1384]|G[1385]<<8|(G[1386]<<16|G[1387]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1380]|G[1381]<<8|(G[1382]<<16|G[1383]<<24);d=G[1376]|G[1377]<<8|(G[1378]<<16|G[1379]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;F[a>>2]=-5;ra(a+4|0,b,26);ja(b);break f}E[F[e+32>>2]+38>>1]=b|512;g:{if(E[f+26>>1]>=0){break g}j=Z-16|0;Z=j;d=ka(36);b=d;F[b+4>>2]=0;F[b+8>>2]=0;F[b+24>>2]=0;F[b+28>>2]=0;b=b+16|0;F[b>>2]=0;F[b+4>>2]=0;F[d>>2]=d+4;F[d+32>>2]=0;F[d+12>>2]=b;F[j>>2]=0;c=F[e+32>>2];k=Z-16|0;Z=k;b=0;h:{if(!d){break h}F[j>>2]=c;F[k+12>>2]=0;b=0;if(!fb(1,k+12|0,c)){break h}n=F[k+12>>2];if(n){while(1){i:{if(fb(1,k+8|0,F[j>>2])){b=ka(28);F[b+4>>2]=0;F[b+8>>2]=0;c=b+16|0;F[c>>2]=0;F[c+4>>2]=0;F[b>>2]=b+4;F[b+12>>2]=c;F[b+24>>2]=F[k+8>>2];if(Vc(j,b)){break i}Ca(b+12|0,F[b+16>>2]);Ba(b,F[b+4>>2]);ja(b)}b=0;break h}g=Z-16|0;Z=g;F[g+8>>2]=b;j:{if(!b){break j}c=F[d+28>>2];k:{if(c>>>0>2]){F[g+8>>2]=0;F[c>>2]=b;F[d+28>>2]=c+4;break k}c=0;l:{m:{n:{i=F[d+24>>2];m=F[d+28>>2]-i>>2;b=m+1|0;if(b>>>0<1073741824){i=F[d+32>>2]-i|0;l=i>>>1|0;i=i>>>0>=2147483644?1073741823:b>>>0>>0?l:b;if(i){if(i>>>0>=1073741824){break n}c=ka(i<<2)}l=F[g+8>>2];F[g+8>>2]=0;b=(m<<2)+c|0;F[b>>2]=l;i=(i<<2)+c|0;m=b+4|0;c=F[d+28>>2];l=F[d+24>>2];if((c|0)==(l|0)){break m}while(1){c=c-4|0;p=F[c>>2];F[c>>2]=0;b=b-4|0;F[b>>2]=p;if((c|0)!=(l|0)){continue}break}F[d+32>>2]=i;i=F[d+28>>2];F[d+28>>2]=m;c=F[d+24>>2];F[d+24>>2]=b;if((c|0)==(i|0)){break l}while(1){i=i-4|0;b=F[i>>2];F[i>>2]=0;if(b){Ca(b+12|0,F[b+16>>2]);Ba(b,F[b+4>>2]);ja(b)}if((c|0)!=(i|0)){continue}break}break l}na();v()}oa();v()}F[d+32>>2]=i;F[d+28>>2]=m;F[d+24>>2]=b}if(c){ja(c)}}b=F[g+8>>2];F[g+8>>2]=0;if(!b){break j}Ca(b+12|0,F[b+16>>2]);Ba(b,F[b+4>>2]);ja(b)}Z=g+16|0;o=o+1|0;if((n|0)!=(o|0)){continue}break}}b=Vc(j,d)}Z=k+16|0;o:{if(b){c=F[e+4>>2];b=F[c+4>>2];F[c+4>>2]=d;if(b){ic(b)}F[a>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a+12>>2]=0;break o}b=ka(32);D[b+26|0]=0;c=G[1549]|G[1550]<<8;D[b+24|0]=c;D[b+25|0]=c>>>8;c=G[1545]|G[1546]<<8|(G[1547]<<16|G[1548]<<24);g=G[1541]|G[1542]<<8|(G[1543]<<16|G[1544]<<24);D[b+16|0]=g;D[b+17|0]=g>>>8;D[b+18|0]=g>>>16;D[b+19|0]=g>>>24;D[b+20|0]=c;D[b+21|0]=c>>>8;D[b+22|0]=c>>>16;D[b+23|0]=c>>>24;c=G[1537]|G[1538]<<8|(G[1539]<<16|G[1540]<<24);g=G[1533]|G[1534]<<8|(G[1535]<<16|G[1536]<<24);D[b+8|0]=g;D[b+9|0]=g>>>8;D[b+10|0]=g>>>16;D[b+11|0]=g>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1529]|G[1530]<<8|(G[1531]<<16|G[1532]<<24);g=G[1525]|G[1526]<<8|(G[1527]<<16|G[1528]<<24);D[b|0]=g;D[b+1|0]=g>>>8;D[b+2|0]=g>>>16;D[b+3|0]=g>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;F[a>>2]=-1;ra(a+4|0,b,26);ja(b);F[j+8>>2]=0;ic(d)}Z=j+16|0;if(F[a>>2]){break f}if(D[a+15|0]>=0){break g}ja(F[a+4>>2])}if(!($[F[F[e>>2]+12>>2]](e)|0)){b=ka(48);D[b+33|0]=0;D[b+32|0]=G[1374];c=G[1370]|G[1371]<<8|(G[1372]<<16|G[1373]<<24);d=G[1366]|G[1367]<<8|(G[1368]<<16|G[1369]<<24);D[b+24|0]=d;D[b+25|0]=d>>>8;D[b+26|0]=d>>>16;D[b+27|0]=d>>>24;D[b+28|0]=c;D[b+29|0]=c>>>8;D[b+30|0]=c>>>16;D[b+31|0]=c>>>24;c=G[1362]|G[1363]<<8|(G[1364]<<16|G[1365]<<24);d=G[1358]|G[1359]<<8|(G[1360]<<16|G[1361]<<24);D[b+16|0]=d;D[b+17|0]=d>>>8;D[b+18|0]=d>>>16;D[b+19|0]=d>>>24;D[b+20|0]=c;D[b+21|0]=c>>>8;D[b+22|0]=c>>>16;D[b+23|0]=c>>>24;c=G[1354]|G[1355]<<8|(G[1356]<<16|G[1357]<<24);d=G[1350]|G[1351]<<8|(G[1352]<<16|G[1353]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1346]|G[1347]<<8|(G[1348]<<16|G[1349]<<24);d=G[1342]|G[1343]<<8|(G[1344]<<16|G[1345]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;F[a>>2]=-1;ra(a+4|0,b,33);ja(b);break f}if(!($[F[F[e>>2]+20>>2]](e)|0)){b=Eb(f,1552);F[a>>2]=-1;c=a+4|0;if(D[b+11|0]>=0){d=F[b+4>>2];F[c>>2]=F[b>>2];F[c+4>>2]=d;F[c+8>>2]=F[b+8>>2];break f}ra(c,F[b>>2],F[b+4>>2]);if(D[b+11|0]>=0){break f}ja(F[b>>2]);break f}if(!($[F[F[e>>2]+24>>2]](e)|0)){b=Eb(f,1307);F[a>>2]=-1;c=a+4|0;if(D[b+11|0]>=0){d=F[b+4>>2];F[c>>2]=F[b>>2];F[c+4>>2]=d;F[c+8>>2]=F[b+8>>2];break f}ra(c,F[b>>2],F[b+4>>2]);if(D[b+11|0]>=0){break f}ja(F[b>>2]);break f}F[a>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a+12>>2]=0}Z=f+32|0;if(!F[a>>2]){if(D[a+15|0]<0){ja(F[a+4>>2])}F[a>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a+12>>2]=0}$[F[F[e>>2]+4>>2]](e)}a=F[h+16>>2];F[h+16>>2]=0;if(a){$[F[F[a>>2]+4>>2]](a)}if(D[h+15|0]>=0){break a}ja(F[h+4>>2])}Z=h+80|0}function Ub(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;l=Z-16|0;Z=l;a:{b:{c:{d:{e:{f:{g:{h:{i:{if(a>>>0<=244){g=F[2941];h=a>>>0<11?16:a+11&-8;c=h>>>3|0;b=g>>>c|0;if(b&3){c=c+((b^-1)&1)|0;a=c<<3;b=a+11804|0;d=F[a+11812>>2];a=F[d+8>>2];j:{if((b|0)==(a|0)){m=11764,n=oi(c)&g,F[m>>2]=n;break j}F[a+12>>2]=b;F[b+8>>2]=a}a=d+8|0;b=c<<3;F[d+4>>2]=b|3;b=b+d|0;F[b+4>>2]=F[b+4>>2]|1;break a}k=F[2943];if(k>>>0>=h>>>0){break i}if(b){a=2<>2];a=F[e+8>>2];k:{if((b|0)==(a|0)){g=oi(d)&g;F[2941]=g;break k}F[a+12>>2]=b;F[b+8>>2]=a}F[e+4>>2]=h|3;c=e+h|0;a=d<<3;d=a-h|0;F[c+4>>2]=d|1;F[a+e>>2]=d;if(k){b=(k&-8)+11804|0;f=F[2946];a=1<<(k>>>3);l:{if(!(a&g)){F[2941]=a|g;a=b;break l}a=F[b+8>>2]}F[b+8>>2]=f;F[a+12>>2]=f;F[f+12>>2]=b;F[f+8>>2]=a}a=e+8|0;F[2946]=c;F[2943]=d;break a}j=F[2942];if(!j){break i}c=F[(ji(0-j&j)<<2)+12068>>2];f=(F[c+4>>2]&-8)-h|0;b=c;while(1){m:{a=F[b+16>>2];if(!a){a=F[b+20>>2];if(!a){break m}}b=(F[a+4>>2]&-8)-h|0;d=b>>>0>>0;f=d?b:f;c=d?a:c;b=a;continue}break}i=F[c+24>>2];d=F[c+12>>2];if((d|0)!=(c|0)){a=F[c+8>>2];F[a+12>>2]=d;F[d+8>>2]=a;break b}b=c+20|0;a=F[b>>2];if(!a){a=F[c+16>>2];if(!a){break h}b=c+16|0}while(1){e=b;d=a;b=a+20|0;a=F[b>>2];if(a){continue}b=d+16|0;a=F[d+16>>2];if(a){continue}break}F[e>>2]=0;break b}h=-1;if(a>>>0>4294967231){break i}a=a+11|0;h=a&-8;j=F[2942];if(!j){break i}f=0-h|0;g=0;n:{if(h>>>0<256){break n}g=31;if(h>>>0>16777215){break n}a=O(a>>>8|0);g=((h>>>38-a&1)-(a<<1)|0)+62|0}b=F[(g<<2)+12068>>2];o:{p:{q:{if(!b){a=0;break q}a=0;c=h<<((g|0)!=31?25-(g>>>1|0)|0:0);while(1){r:{e=(F[b+4>>2]&-8)-h|0;if(e>>>0>=f>>>0){break r}d=b;f=e;if(e){break r}f=0;a=b;break p}e=F[b+20>>2];b=F[((c>>>29&4)+b|0)+16>>2];a=e?(e|0)==(b|0)?a:e:a;c=c<<1;if(b){continue}break}}if(!(a|d)){d=0;a=2<>2]}if(!a){break o}}while(1){b=(F[a+4>>2]&-8)-h|0;c=b>>>0>>0;f=c?b:f;d=c?a:d;b=F[a+16>>2];if(b){a=b}else{a=F[a+20>>2]}if(a){continue}break}}if(!d|F[2943]-h>>>0<=f>>>0){break i}g=F[d+24>>2];c=F[d+12>>2];if((d|0)!=(c|0)){a=F[d+8>>2];F[a+12>>2]=c;F[c+8>>2]=a;break c}b=d+20|0;a=F[b>>2];if(!a){a=F[d+16>>2];if(!a){break g}b=d+16|0}while(1){e=b;c=a;b=a+20|0;a=F[b>>2];if(a){continue}b=c+16|0;a=F[c+16>>2];if(a){continue}break}F[e>>2]=0;break c}a=F[2943];if(a>>>0>=h>>>0){d=F[2946];b=a-h|0;s:{if(b>>>0>=16){c=d+h|0;F[c+4>>2]=b|1;F[a+d>>2]=b;F[d+4>>2]=h|3;break s}F[d+4>>2]=a|3;a=a+d|0;F[a+4>>2]=F[a+4>>2]|1;c=0;b=0}F[2943]=b;F[2946]=c;a=d+8|0;break a}i=F[2944];if(i>>>0>h>>>0){b=i-h|0;F[2944]=b;c=F[2947];a=c+h|0;F[2947]=a;F[a+4>>2]=b|1;F[c+4>>2]=h|3;a=c+8|0;break a}a=0;j=h+47|0;if(F[3059]){c=F[3061]}else{F[3062]=-1;F[3063]=-1;F[3060]=4096;F[3061]=4096;F[3059]=l+12&-16^1431655768;F[3064]=0;F[3052]=0;c=4096}e=j+c|0;f=0-c|0;b=e&f;if(b>>>0<=h>>>0){break a}d=F[3051];if(d){c=F[3049];g=c+b|0;if(d>>>0>>0|c>>>0>=g>>>0){break a}}t:{if(!(G[12208]&4)){u:{v:{w:{x:{d=F[2947];if(d){a=12212;while(1){c=F[a>>2];if(c>>>0<=d>>>0&d>>>0>2]>>>0){break x}a=F[a+8>>2];if(a){continue}break}}c=eb(0);if((c|0)==-1){break u}g=b;d=F[3060];a=d-1|0;if(a&c){g=(b-c|0)+(a+c&0-d)|0}if(g>>>0<=h>>>0){break u}d=F[3051];if(d){a=F[3049];f=a+g|0;if(d>>>0>>0|a>>>0>=f>>>0){break u}}a=eb(g);if((c|0)!=(a|0)){break w}break t}g=f&e-i;c=eb(g);if((c|0)==(F[a>>2]+F[a+4>>2]|0)){break v}a=c}if((a|0)==-1){break u}if(h+48>>>0<=g>>>0){c=a;break t}c=F[3061];c=c+(j-g|0)&0-c;if((eb(c)|0)==-1){break u}g=c+g|0;c=a;break t}if((c|0)!=-1){break t}}F[3052]=F[3052]|4}c=eb(b);a=eb(0);if((c|0)==-1|(a|0)==-1|a>>>0<=c>>>0){break d}g=a-c|0;if(g>>>0<=h+40>>>0){break d}}a=F[3049]+g|0;F[3049]=a;if(a>>>0>I[3050]){F[3050]=a}y:{e=F[2947];if(e){a=12212;while(1){d=F[a>>2];b=F[a+4>>2];if((d+b|0)==(c|0)){break y}a=F[a+8>>2];if(a){continue}break}break f}a=F[2945];if(!(a>>>0<=c>>>0?a:0)){F[2945]=c}a=0;F[3054]=g;F[3053]=c;F[2949]=-1;F[2950]=F[3059];F[3056]=0;while(1){d=a<<3;b=d+11804|0;F[d+11812>>2]=b;F[d+11816>>2]=b;a=a+1|0;if((a|0)!=32){continue}break}d=g-40|0;a=c+8&7?-8-c&7:0;b=d-a|0;F[2944]=b;a=a+c|0;F[2947]=a;F[a+4>>2]=b|1;F[(c+d|0)+4>>2]=40;F[2948]=F[3063];break e}if(G[a+12|0]&8|d>>>0>e>>>0|c>>>0<=e>>>0){break f}F[a+4>>2]=b+g;a=e+8&7?-8-e&7:0;c=a+e|0;F[2947]=c;b=F[2944]+g|0;a=b-a|0;F[2944]=a;F[c+4>>2]=a|1;F[(b+e|0)+4>>2]=40;F[2948]=F[3063];break e}d=0;break b}c=0;break c}if(I[2945]>c>>>0){F[2945]=c}b=c+g|0;a=12212;z:{A:{B:{C:{D:{E:{while(1){if((b|0)!=F[a>>2]){a=F[a+8>>2];if(a){continue}break E}break}if(!(G[a+12|0]&8)){break D}}a=12212;while(1){b=F[a>>2];if(b>>>0<=e>>>0){f=b+F[a+4>>2]|0;if(f>>>0>e>>>0){break C}}a=F[a+8>>2];continue}}F[a>>2]=c;F[a+4>>2]=F[a+4>>2]+g;j=(c+8&7?-8-c&7:0)+c|0;F[j+4>>2]=h|3;g=b+(b+8&7?-8-b&7:0)|0;i=h+j|0;a=g-i|0;if((e|0)==(g|0)){F[2947]=i;a=F[2944]+a|0;F[2944]=a;F[i+4>>2]=a|1;break A}if(F[2946]==(g|0)){F[2946]=i;a=F[2943]+a|0;F[2943]=a;F[i+4>>2]=a|1;F[a+i>>2]=a;break A}f=F[g+4>>2];if((f&3)==1){e=f&-8;F:{if(f>>>0<=255){d=F[g+8>>2];b=f>>>3|0;c=F[g+12>>2];if((c|0)==(d|0)){m=11764,n=F[2941]&oi(b),F[m>>2]=n;break F}F[d+12>>2]=c;F[c+8>>2]=d;break F}h=F[g+24>>2];c=F[g+12>>2];G:{if((g|0)!=(c|0)){b=F[g+8>>2];F[b+12>>2]=c;F[c+8>>2]=b;break G}H:{f=g+20|0;b=F[f>>2];if(b){break H}f=g+16|0;b=F[f>>2];if(b){break H}c=0;break G}while(1){d=f;c=b;f=c+20|0;b=F[f>>2];if(b){continue}f=c+16|0;b=F[c+16>>2];if(b){continue}break}F[d>>2]=0}if(!h){break F}d=F[g+28>>2];b=(d<<2)+12068|0;I:{if(F[b>>2]==(g|0)){F[b>>2]=c;if(c){break I}m=11768,n=F[2942]&oi(d),F[m>>2]=n;break F}F[h+(F[h+16>>2]==(g|0)?16:20)>>2]=c;if(!c){break F}}F[c+24>>2]=h;b=F[g+16>>2];if(b){F[c+16>>2]=b;F[b+24>>2]=c}b=F[g+20>>2];if(!b){break F}F[c+20>>2]=b;F[b+24>>2]=c}g=e+g|0;f=F[g+4>>2];a=a+e|0}F[g+4>>2]=f&-2;F[i+4>>2]=a|1;F[a+i>>2]=a;if(a>>>0<=255){b=(a&-8)+11804|0;c=F[2941];a=1<<(a>>>3);J:{if(!(c&a)){F[2941]=a|c;a=b;break J}a=F[b+8>>2]}F[b+8>>2]=i;F[a+12>>2]=i;F[i+12>>2]=b;F[i+8>>2]=a;break A}f=31;if(a>>>0<=16777215){b=O(a>>>8|0);f=((a>>>38-b&1)-(b<<1)|0)+62|0}F[i+28>>2]=f;F[i+16>>2]=0;F[i+20>>2]=0;b=(f<<2)+12068|0;d=F[2942];c=1<>2]=i;break K}f=a<<((f|0)!=31?25-(f>>>1|0)|0:0);c=F[b>>2];while(1){b=c;if((F[c+4>>2]&-8)==(a|0)){break B}c=f>>>29|0;f=f<<1;d=(c&4)+b|0;c=F[d+16>>2];if(c){continue}break}F[d+16>>2]=i}F[i+24>>2]=b;F[i+12>>2]=i;F[i+8>>2]=i;break A}d=g-40|0;a=c+8&7?-8-c&7:0;b=d-a|0;F[2944]=b;a=a+c|0;F[2947]=a;F[a+4>>2]=b|1;F[(c+d|0)+4>>2]=40;F[2948]=F[3063];a=(f+(f-39&7?39-f&7:0)|0)-47|0;d=a>>>0>>0?e:a;F[d+4>>2]=27;a=F[3056];F[d+16>>2]=F[3055];F[d+20>>2]=a;a=F[3054];F[d+8>>2]=F[3053];F[d+12>>2]=a;F[3055]=d+8;F[3054]=g;F[3053]=c;F[3056]=0;a=d+24|0;while(1){F[a+4>>2]=7;b=a+8|0;a=a+4|0;if(b>>>0>>0){continue}break}if((d|0)==(e|0)){break e}F[d+4>>2]=F[d+4>>2]&-2;f=d-e|0;F[e+4>>2]=f|1;F[d>>2]=f;if(f>>>0<=255){b=(f&-8)+11804|0;c=F[2941];a=1<<(f>>>3);L:{if(!(c&a)){F[2941]=a|c;a=b;break L}a=F[b+8>>2]}F[b+8>>2]=e;F[a+12>>2]=e;F[e+12>>2]=b;F[e+8>>2]=a;break e}a=31;if(f>>>0<=16777215){a=O(f>>>8|0);a=((f>>>38-a&1)-(a<<1)|0)+62|0}F[e+28>>2]=a;F[e+16>>2]=0;F[e+20>>2]=0;b=(a<<2)+12068|0;d=F[2942];c=1<>2]=e;break M}a=f<<((a|0)!=31?25-(a>>>1|0)|0:0);d=F[b>>2];while(1){b=d;if((f|0)==(F[b+4>>2]&-8)){break z}c=a>>>29|0;a=a<<1;c=(c&4)+b|0;d=F[c+16>>2];if(d){continue}break}F[c+16>>2]=e}F[e+24>>2]=b;F[e+12>>2]=e;F[e+8>>2]=e;break e}a=F[b+8>>2];F[a+12>>2]=i;F[b+8>>2]=i;F[i+24>>2]=0;F[i+12>>2]=b;F[i+8>>2]=a}a=j+8|0;break a}a=F[b+8>>2];F[a+12>>2]=e;F[b+8>>2]=e;F[e+24>>2]=0;F[e+12>>2]=b;F[e+8>>2]=a}a=F[2944];if(a>>>0<=h>>>0){break d}b=a-h|0;F[2944]=b;c=F[2947];a=c+h|0;F[2947]=a;F[a+4>>2]=b|1;F[c+4>>2]=h|3;a=c+8|0;break a}F[2940]=48;a=0;break a}N:{if(!g){break N}b=F[d+28>>2];a=(b<<2)+12068|0;O:{if(F[a>>2]==(d|0)){F[a>>2]=c;if(c){break O}j=oi(b)&j;F[2942]=j;break N}F[g+(F[g+16>>2]==(d|0)?16:20)>>2]=c;if(!c){break N}}F[c+24>>2]=g;a=F[d+16>>2];if(a){F[c+16>>2]=a;F[a+24>>2]=c}a=F[d+20>>2];if(!a){break N}F[c+20>>2]=a;F[a+24>>2]=c}P:{if(f>>>0<=15){a=f+h|0;F[d+4>>2]=a|3;a=a+d|0;F[a+4>>2]=F[a+4>>2]|1;break P}F[d+4>>2]=h|3;e=d+h|0;F[e+4>>2]=f|1;F[e+f>>2]=f;if(f>>>0<=255){b=(f&-8)+11804|0;c=F[2941];a=1<<(f>>>3);Q:{if(!(c&a)){F[2941]=a|c;a=b;break Q}a=F[b+8>>2]}F[b+8>>2]=e;F[a+12>>2]=e;F[e+12>>2]=b;F[e+8>>2]=a;break P}a=31;if(f>>>0<=16777215){a=O(f>>>8|0);a=((f>>>38-a&1)-(a<<1)|0)+62|0}F[e+28>>2]=a;F[e+16>>2]=0;F[e+20>>2]=0;b=(a<<2)+12068|0;R:{c=1<>2]=e;break S}a=f<<((a|0)!=31?25-(a>>>1|0)|0:0);h=F[b>>2];while(1){b=h;if((F[b+4>>2]&-8)==(f|0)){break R}c=a>>>29|0;a=a<<1;c=(c&4)+b|0;h=F[c+16>>2];if(h){continue}break}F[c+16>>2]=e}F[e+24>>2]=b;F[e+12>>2]=e;F[e+8>>2]=e;break P}a=F[b+8>>2];F[a+12>>2]=e;F[b+8>>2]=e;F[e+24>>2]=0;F[e+12>>2]=b;F[e+8>>2]=a}a=d+8|0;break a}T:{if(!i){break T}b=F[c+28>>2];a=(b<<2)+12068|0;U:{if(F[a>>2]==(c|0)){F[a>>2]=d;if(d){break U}m=11768,n=oi(b)&j,F[m>>2]=n;break T}F[i+(F[i+16>>2]==(c|0)?16:20)>>2]=d;if(!d){break T}}F[d+24>>2]=i;a=F[c+16>>2];if(a){F[d+16>>2]=a;F[a+24>>2]=d}a=F[c+20>>2];if(!a){break T}F[d+20>>2]=a;F[a+24>>2]=d}V:{if(f>>>0<=15){a=f+h|0;F[c+4>>2]=a|3;a=a+c|0;F[a+4>>2]=F[a+4>>2]|1;break V}F[c+4>>2]=h|3;d=c+h|0;F[d+4>>2]=f|1;F[d+f>>2]=f;if(k){b=(k&-8)+11804|0;e=F[2946];a=1<<(k>>>3);W:{if(!(a&g)){F[2941]=a|g;a=b;break W}a=F[b+8>>2]}F[b+8>>2]=e;F[a+12>>2]=e;F[e+12>>2]=b;F[e+8>>2]=a}F[2946]=d;F[2943]=f}a=c+8|0}Z=l+16|0;return a|0}function Vc(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0;m=Z-32|0;Z=m;o=ka(12);F[o+8>>2]=0;F[o+4>>2]=b;F[o>>2]=0;s=o+12|0;b=s;a:{b:{c:{while(1){b=b-12|0;w=F[b+8>>2];j=F[b+4>>2];t=F[b>>2];if(t){if((w|0)>1e3){break a}F[m+24>>2]=0;F[m+16>>2]=0;F[m+20>>2]=0;d=1;c=F[a>>2];e=F[c+8>>2];h=F[c+12>>2];g=F[c+20>>2];f=F[c+16>>2];d:{if((h|0)<=(g|0)&f>>>0>=e>>>0|(g|0)>(h|0)){break d}e=G[f+F[c>>2]|0];h=c;c=g;f=f+1|0;c=f?c:c+1|0;F[h+16>>2]=f;F[h+20>>2]=c;Sb(m+16|0,e);if(e){c=F[a>>2];n=Tb(m+16|0);p=F[c+8>>2];g=F[c+12>>2];h=F[c+20>>2];f=F[c+16>>2];k=f+e|0;h=k>>>0>>0?h+1|0:h;if((g|0)<=(h|0)&k>>>0>p>>>0|(g|0)<(h|0)){break d}la(n,f+F[c>>2]|0,e);d=F[c+20>>2];f=e;e=e+F[c+16>>2]|0;d=f>>>0>e>>>0?d+1|0:d;F[c+16>>2]=e;F[c+20>>2]=d}j=ka(24);c=j;F[c+4>>2]=0;F[c+8>>2]=0;c=c+16|0;F[c>>2]=0;F[c+4>>2]=0;F[j>>2]=j+4;F[j+12>>2]=c;e=Z-32|0;Z=e;h=t+12|0;c=m+16|0;u=Ya(h,c);i=t+16|0;e:{if((u|0)==(i|0)){F[e+16>>2]=c;f:{g:{d=F[h+4>>2];h:{if(!d){f=h+4|0;c=f;break h}f=G[c+11|0];g=f<<24>>24<0;n=g?F[c>>2]:c;g=g?F[c+4>>2]:f;while(1){c=d;d=G[c+27|0];f=d<<24>>24<0;d=f?F[c+20>>2]:d;p=d>>>0>>0;i:{j:{k:{l:{k=p?d:g;m:{if(k){f=f?F[c+16>>2]:c+16|0;q=sa(n,f,k);if(!q){if(d>>>0>g>>>0){break m}break l}if((q|0)>=0){break l}break m}if(d>>>0<=g>>>0){break k}}f=c;d=F[c>>2];if(d){continue}break h}d=sa(f,n,k);if(d){break j}}if(p){break i}break g}if((d|0)>=0){break g}}d=F[c+4>>2];if(d){continue}break}f=c+4|0}d=ka(32);n=d+16|0;g=F[e+16>>2];n:{if(D[g+11|0]>=0){p=F[g+4>>2];F[n>>2]=F[g>>2];F[n+4>>2]=p;F[n+8>>2]=F[g+8>>2];break n}ra(n,F[g>>2],F[g+4>>2])}F[d+8>>2]=c;F[d>>2]=0;F[d+4>>2]=0;F[d+28>>2]=0;F[f>>2]=d;c=d;g=F[F[h>>2]>>2];if(g){F[h>>2]=g;c=F[f>>2]}nb(F[h+4>>2],c);F[h+8>>2]=F[h+8>>2]+1;c=1;break f}d=c;c=0}D[e+28|0]=c;F[e+24>>2]=d;d=F[e+24>>2];c=F[d+28>>2];F[d+28>>2]=j;if(!c){break e}Ca(c+12|0,F[c+16>>2]);Ba(c,F[c+4>>2]);ja(c);break e}if(!j){break e}Ca(j+12|0,F[j+16>>2]);Ba(j,F[j+4>>2]);ja(j)}Z=e+32|0;d=(i|0)!=(u|0)}if(D[m+27|0]<0){ja(F[m+16>>2])}if(d){break a}}if(!j){break a}F[m+16>>2]=0;if(!fb(1,m+16|0,F[a>>2])){break a}q=0;x=F[m+16>>2];if(x){while(1){d=0;i=Z-32|0;Z=i;F[i+24>>2]=0;F[i+16>>2]=0;F[i+20>>2]=0;c=F[a>>2];f=F[c+8>>2];o:{p:{h=F[c+12>>2];g=F[c+20>>2];e=F[c+16>>2];q:{if((h|0)<=(g|0)&e>>>0>=f>>>0|(g|0)>(h|0)){break q}f=G[e+F[c>>2]|0];h=c;c=g;e=e+1|0;c=e?c:c+1|0;F[h+16>>2]=e;F[h+20>>2]=c;Sb(i+16|0,f);if(f){e=F[a>>2];n=Tb(i+16|0);p=F[e+8>>2];g=F[e+12>>2];c=F[e+20>>2];h=F[e+16>>2];k=h+f|0;c=k>>>0>>0?c+1|0:c;if(k>>>0>p>>>0&(c|0)>=(g|0)|(c|0)>(g|0)){break q}la(n,h+F[e>>2]|0,f);c=F[e+20>>2];g=f;f=f+F[e+16>>2]|0;c=g>>>0>f>>>0?c+1|0:c;F[e+16>>2]=f;F[e+20>>2]=c}F[i+12>>2]=0;if(!fb(1,i+12|0,F[a>>2])){break q}f=F[i+12>>2];if(!f){break q}e=F[a>>2];c=F[e+8>>2];h=F[e+16>>2];g=c-h|0;c=F[e+12>>2]-(F[e+20>>2]+(c>>>0>>0)|0)|0;if((c|0)<=0&f>>>0>g>>>0|(c|0)<0){break q}F[i+8>>2]=0;F[i>>2]=0;F[i+4>>2]=0;if((f|0)<0){break p}d=ka(f);F[i>>2]=d;c=d+f|0;F[i+8>>2]=c;l=ma(d,0,f);F[i+4>>2]=c;h=F[e+12>>2];y=h;p=F[e+8>>2];c=F[e+20>>2];k=F[e+16>>2];g=f+k|0;c=g>>>0>>0?c+1|0:c;u=g;n=c;r:{if((c|0)<=(h|0)&g>>>0<=p>>>0|(c|0)<(h|0)){la(l,F[e>>2]+k|0,f);d=F[e+20>>2];c=f+F[e+16>>2]|0;d=c>>>0>>0?d+1|0:d;F[e+16>>2]=c;F[e+20>>2]=d;h=Z-48|0;Z=h;e=Ya(j,i+16|0);if((e|0)!=(j+4|0)){c=F[e+4>>2];s:{if(!c){c=e;while(1){d=F[c+8>>2];f=F[d>>2]!=(c|0);c=d;if(f){continue}break}break s}while(1){d=c;c=F[c>>2];if(c){continue}break}}if((e|0)==F[j>>2]){F[j>>2]=d}F[j+8>>2]=F[j+8>>2]-1;f=F[j+4>>2];t:{u:{g=e;d=e;e=F[d>>2];if(e){c=F[g+4>>2];if(!c){break u}while(1){d=c;c=F[c>>2];if(c){continue}break}}e=F[d+4>>2];if(e){break u}e=0;k=1;break t}F[e+8>>2]=F[d+8>>2];k=0}l=F[d+8>>2];c=F[l>>2];v:{if((d|0)==(c|0)){F[l>>2]=e;if((d|0)==(f|0)){c=0;f=e;break v}c=F[l+4>>2];break v}F[l+4>>2]=e}r=!G[d+12|0];if((d|0)!=(g|0)){l=F[g+8>>2];F[d+8>>2]=l;F[l+(((g|0)!=F[F[g+8>>2]>>2])<<2)>>2]=d;l=F[g>>2];F[d>>2]=l;F[l+8>>2]=d;l=F[g+4>>2];F[d+4>>2]=l;if(l){F[l+8>>2]=d}D[d+12|0]=G[g+12|0];f=(f|0)==(g|0)?d:f}w:{if(r|!f){break w}if(k){while(1){e=G[c+12|0];x:{d=F[c+8>>2];if(F[d>>2]!=(c|0)){if(!e){D[c+12|0]=1;D[d+12|0]=0;e=F[d+4>>2];k=F[e>>2];F[d+4>>2]=k;if(k){F[k+8>>2]=d}F[e+8>>2]=F[d+8>>2];k=F[d+8>>2];F[(((d|0)!=F[k>>2])<<2)+k>>2]=e;F[e>>2]=d;F[d+8>>2]=e;d=c;c=F[c>>2];f=(c|0)==(f|0)?d:f;c=F[c+4>>2]}y:{z:{d=F[c>>2];A:{if(!(G[d+12|0]?0:d)){e=F[c+4>>2];if(G[e+12|0]?0:e){break A}D[c+12|0]=0;c=F[c+8>>2];B:{if((f|0)==(c|0)){c=f;break B}if(G[c+12|0]){break x}}D[c+12|0]=1;break w}e=F[c+4>>2];if(!e){break z}}if(G[e+12|0]){break z}d=c;break y}D[d+12|0]=1;D[c+12|0]=0;e=F[d+4>>2];F[c>>2]=e;if(e){F[e+8>>2]=c}F[d+8>>2]=F[c+8>>2];e=F[c+8>>2];F[((F[e>>2]!=(c|0))<<2)+e>>2]=d;F[d+4>>2]=c;F[c+8>>2]=d;e=c}c=F[d+8>>2];D[d+12|0]=G[c+12|0];D[c+12|0]=1;D[e+12|0]=1;d=F[c+4>>2];e=F[d>>2];F[c+4>>2]=e;if(e){F[e+8>>2]=c}F[d+8>>2]=F[c+8>>2];e=F[c+8>>2];F[(((c|0)!=F[e>>2])<<2)+e>>2]=d;F[d>>2]=c;F[c+8>>2]=d;break w}if(!e){D[c+12|0]=1;D[d+12|0]=0;e=F[c+4>>2];F[d>>2]=e;if(e){F[e+8>>2]=d}F[c+8>>2]=F[d+8>>2];e=F[d+8>>2];F[(((d|0)!=F[e>>2])<<2)+e>>2]=c;F[c+4>>2]=d;F[d+8>>2]=c;f=(d|0)==(f|0)?c:f;c=F[d>>2]}e=F[c>>2];C:{if(!(!e|G[e+12|0])){d=c;break C}d=F[c+4>>2];if(!(G[d+12|0]?0:d)){D[c+12|0]=0;c=F[c+8>>2];if((c|0)!=(f|0)?G[c+12|0]:0){break x}D[c+12|0]=1;break w}if(e){if(!G[e+12|0]){d=c;break C}d=F[c+4>>2]}D[d+12|0]=1;D[c+12|0]=0;e=F[d>>2];F[c+4>>2]=e;if(e){F[e+8>>2]=c}F[d+8>>2]=F[c+8>>2];e=F[c+8>>2];F[((F[e>>2]!=(c|0))<<2)+e>>2]=d;F[d>>2]=c;F[c+8>>2]=d;e=c}c=F[d+8>>2];D[d+12|0]=G[c+12|0];D[c+12|0]=1;D[e+12|0]=1;d=F[c>>2];e=F[d+4>>2];F[c>>2]=e;if(e){F[e+8>>2]=c}F[d+8>>2]=F[c+8>>2];e=F[c+8>>2];F[(((c|0)!=F[e>>2])<<2)+e>>2]=d;F[d+4>>2]=c;F[c+8>>2]=d;break w}d=c;c=F[c+8>>2];c=F[(((d|0)==F[c>>2])<<2)+c>>2];continue}}D[e+12|0]=1}c=F[g+28>>2];if(c){F[g+32>>2]=c;ja(c)}if(D[g+27|0]<0){ja(F[g+16>>2])}ja(g)}F[h+8>>2]=0;F[h>>2]=0;F[h+4>>2]=0;c=F[i+4>>2];d=F[i>>2];f=c-d|0;e=0;D:{E:{if((c|0)!=(d|0)){if((f|0)<0){break E}e=ka(f);c=ma(e,0,f);g=c+f|0;F[h+8>>2]=g;F[h+4>>2]=g;F[h>>2]=c;c=d}la(e,c,f);F:{if(D[i+27|0]>=0){F[h+24>>2]=F[i+24>>2];c=F[i+20>>2];F[h+16>>2]=F[i+16>>2];F[h+20>>2]=c;break F}ra(h+16|0,F[i+16>>2],F[i+20>>2])}Tc(h+28|0,h);f=h+16|0;c=f;G:{H:{d=F[j+4>>2];I:{if(!d){e=j+4|0;c=e;break I}e=G[c+11|0];g=e<<24>>24<0;k=g?F[c>>2]:c;g=g?F[c+4>>2]:e;while(1){c=d;d=G[c+27|0];e=d<<24>>24<0;d=e?F[c+20>>2]:d;l=d>>>0>>0;J:{K:{L:{M:{r=l?d:g;N:{if(r){e=e?F[c+16>>2]:c+16|0;z=sa(k,e,r);if(!z){if(d>>>0>g>>>0){break N}break M}if((z|0)>=0){break M}break N}if(d>>>0<=g>>>0){break L}}e=c;d=F[c>>2];if(d){continue}break I}d=sa(e,k,r);if(d){break K}}if(l){break J}break H}if((d|0)>=0){break H}}d=F[c+4>>2];if(d){continue}break}e=c+4|0}d=ka(40);F[d+24>>2]=F[f+8>>2];g=F[f+4>>2];F[d+16>>2]=F[f>>2];F[d+20>>2]=g;F[f>>2]=0;F[f+4>>2]=0;F[f+8>>2]=0;Tc(d+28|0,f+12|0);F[d+8>>2]=c;F[d>>2]=0;F[d+4>>2]=0;F[e>>2]=d;c=d;f=F[F[j>>2]>>2];if(f){F[j>>2]=f;c=F[e>>2]}nb(F[j+4>>2],c);F[j+8>>2]=F[j+8>>2]+1;c=1;break G}d=c;c=0}D[h+44|0]=c;F[h+40>>2]=d;c=F[h+28>>2];if(c){F[h+32>>2]=c;ja(c)}if(D[h+27|0]<0){ja(F[h+16>>2])}c=F[h>>2];if(c){F[h+4>>2]=c;ja(c)}Z=h+48|0;break D}na();v()}d=F[i>>2];if(!d){break r}}F[i+4>>2]=d;ja(d)}d=(n|0)<=(y|0)&p>>>0>=u>>>0|(n|0)<(y|0)}if(D[i+27|0]<0){ja(F[i+16>>2])}Z=i+32|0;break o}na();v()}if(!d){break a}q=q+1|0;if((x|0)!=(q|0)){continue}break}}F[m+12>>2]=0;if(!fb(1,m+12|0,F[a>>2])){break a}c=F[a>>2];e=F[c+8>>2];f=F[c+16>>2];h=e-f|0;d=F[m+12>>2];c=F[c+12>>2]-(F[c+20>>2]+(e>>>0>>0)|0)|0;if(h>>>0>>0&(c|0)<=0|(c|0)<0){break a}if(d){q=0;h=((t|0)!=0)+w|0;while(1){O:{if(b>>>0>>0){F[b+8>>2]=h;F[b+4>>2]=0;F[b>>2]=j;b=b+12|0;d=F[m+12>>2];break O}c=b-o|0;g=(c|0)/12|0;b=g+1|0;if(b>>>0>=357913942){break c}e=(s-o|0)/12|0;f=e<<1;e=e>>>0>=178956970?357913941:b>>>0>>0?f:b;if(e){if(e>>>0>=357913942){break b}f=ka(L(e,12))}else{f=0}b=f+L(g,12)|0;F[b+8>>2]=h;F[b+4>>2]=0;F[b>>2]=j;c=pa(b+L((c|0)/-12|0,12)|0,o,c);s=f+L(e,12)|0;b=b+12|0;if(o){ja(o)}o=c}q=q+1|0;if(q>>>0>>0){continue}break}}if((b|0)!=(o|0)){continue}break}A=1;break a}na();v()}oa();v()}if(o){ja(o)}Z=m+32|0;return A}function me(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0;h=Z-48|0;Z=h;a:{if((c|0)!=1){break a}i=F[a+4>>2];c=F[a+12>>2];F[h+40>>2]=0;F[h+32>>2]=0;F[h+36>>2]=0;F[h+24>>2]=0;F[h+28>>2]=0;F[h+16>>2]=0;F[h+20>>2]=0;F[h+8>>2]=0;F[h+12>>2]=0;d=h+8|0;b:{if((b|0)==-2){break b}k=F[F[F[i+4>>2]+8>>2]+(c<<2)>>2];if(($[F[F[i>>2]+8>>2]](i)|0)==1){j=Z-32|0;Z=j;l=F[F[F[i+4>>2]+8>>2]+(c<<2)>>2];c:{d:{e:{if(($[F[F[i>>2]+8>>2]](i)|0)!=1|b-1>>>0>5){break e}g=$[F[F[i>>2]+36>>2]](i)|0;f=$[F[F[i>>2]+44>>2]](i,c)|0;if(!g|!f){break e}c=$[F[F[i>>2]+40>>2]](i,c)|0;if(c){a=F[i+44>>2];F[j+12>>2]=c;F[j+8>>2]=a;F[j+20>>2]=f;F[j+16>>2]=f+12;f=j+8|0;a=0;f:{g:{switch(b-1|0){case 0:b=ka(60);F[b+4>>2]=l;F[b>>2]=2960;a=F[d+4>>2];F[b+8>>2]=F[d>>2];F[b+12>>2]=a;a=F[d+12>>2];F[b+16>>2]=F[d+8>>2];F[b+20>>2]=a;a=F[d+20>>2];F[b+24>>2]=F[d+16>>2];F[b+28>>2]=a;F[b+40>>2]=0;F[b+32>>2]=0;F[b+36>>2]=0;a=F[d+24>>2];g=F[d+28>>2];if((a|0)!=(g|0)){c=g-a|0;if((c|0)<0){break d}e=ka(c);F[b+32>>2]=e;F[b+40>>2]=(c&-4)+e;while(1){F[e>>2]=F[a>>2];e=e+4|0;a=a+4|0;if((g|0)!=(a|0)){continue}break}F[b+36>>2]=e}a=F[f+4>>2];F[b+44>>2]=F[f>>2];F[b+48>>2]=a;a=F[f+12>>2];F[b+52>>2]=F[f+8>>2];F[b+56>>2]=a;F[b>>2]=2252;a=b;break f;case 3:b=ka(112);F[b+4>>2]=l;F[b>>2]=2960;a=F[d+4>>2];F[b+8>>2]=F[d>>2];F[b+12>>2]=a;a=F[d+12>>2];F[b+16>>2]=F[d+8>>2];F[b+20>>2]=a;a=F[d+20>>2];F[b+24>>2]=F[d+16>>2];F[b+28>>2]=a;F[b+40>>2]=0;F[b+32>>2]=0;F[b+36>>2]=0;a=F[d+24>>2];g=F[d+28>>2];if((a|0)!=(g|0)){c=g-a|0;if((c|0)<0){break d}e=ka(c);F[b+32>>2]=e;F[b+40>>2]=(c&-4)+e;while(1){F[e>>2]=F[a>>2];e=e+4|0;a=a+4|0;if((g|0)!=(a|0)){continue}break}F[b+36>>2]=e}a=F[f+4>>2];F[b+44>>2]=F[f>>2];F[b+48>>2]=a;a=F[f+12>>2];F[b+52>>2]=F[f+8>>2];F[b+56>>2]=a;F[b+60>>2]=0;F[b+64>>2]=0;F[b>>2]=3016;F[b+68>>2]=0;F[b+72>>2]=0;F[b+76>>2]=0;F[b+80>>2]=0;F[b+84>>2]=0;F[b+88>>2]=0;F[b+92>>2]=0;F[b+96>>2]=0;F[b+100>>2]=0;F[b+104>>2]=0;F[b+108>>2]=0;a=b;break f;case 4:b=ka(104);F[b+4>>2]=l;F[b>>2]=2960;a=F[d+4>>2];F[b+8>>2]=F[d>>2];F[b+12>>2]=a;a=F[d+12>>2];F[b+16>>2]=F[d+8>>2];F[b+20>>2]=a;a=F[d+20>>2];F[b+24>>2]=F[d+16>>2];F[b+28>>2]=a;F[b+40>>2]=0;F[b+32>>2]=0;F[b+36>>2]=0;a=F[d+24>>2];g=F[d+28>>2];if((a|0)!=(g|0)){c=g-a|0;if((c|0)<0){break d}e=ka(c);F[b+32>>2]=e;F[b+40>>2]=(c&-4)+e;while(1){F[e>>2]=F[a>>2];e=e+4|0;a=a+4|0;if((g|0)!=(a|0)){continue}break}F[b+36>>2]=e}a=F[f+4>>2];F[b+44>>2]=F[f>>2];F[b+48>>2]=a;a=F[f+12>>2];F[b+52>>2]=F[f+8>>2];F[b+56>>2]=a;F[b+84>>2]=0;F[b+76>>2]=0;F[b+80>>2]=0;F[b+60>>2]=0;F[b+64>>2]=0;F[b>>2]=3264;a=F[f+4>>2];F[b+88>>2]=F[f>>2];F[b+92>>2]=a;a=F[f+12>>2];F[b+96>>2]=F[f+8>>2];F[b+100>>2]=a;a=b;break f;case 5:break g;default:break f}}a=ka(128);F[a+4>>2]=l;F[a>>2]=2960;b=F[d+4>>2];F[a+8>>2]=F[d>>2];F[a+12>>2]=b;b=F[d+12>>2];F[a+16>>2]=F[d+8>>2];F[a+20>>2]=b;b=F[d+20>>2];F[a+24>>2]=F[d+16>>2];F[a+28>>2]=b;F[a+40>>2]=0;F[a+32>>2]=0;F[a+36>>2]=0;h:{i:{c=F[d+28>>2];b=F[d+24>>2];if((c|0)!=(b|0)){c=c-b|0;if((c|0)<0){break i}b=ka(c);F[a+36>>2]=b;F[a+32>>2]=b;F[a+40>>2]=(c&-4)+b;e=F[d+24>>2];c=F[d+28>>2];if((e|0)!=(c|0)){while(1){F[b>>2]=F[e>>2];b=b+4|0;e=e+4|0;if((c|0)!=(e|0)){continue}break}}F[a+36>>2]=b}F[a>>2]=2904;b=F[f+4>>2];F[a+44>>2]=F[f>>2];F[a+48>>2]=b;b=F[f+12>>2];F[a+52>>2]=F[f+8>>2];F[a+56>>2]=b;b=a- -64|0;F[b>>2]=0;F[b+4>>2]=0;F[a+60>>2]=4128;F[a>>2]=3500;b=F[f+4>>2];F[a+72>>2]=F[f>>2];F[a+76>>2]=b;b=F[f+12>>2];F[a+80>>2]=F[f+8>>2];F[a+84>>2]=b;F[a+104>>2]=1065353216;F[a+108>>2]=-1;F[a+96>>2]=-1;F[a+100>>2]=-1;F[a+88>>2]=1;F[a+92>>2]=-1;F[a+60>>2]=3736;F[a+112>>2]=0;F[a+116>>2]=0;D[a+117|0]=0;D[a+118|0]=0;D[a+119|0]=0;D[a+120|0]=0;D[a+121|0]=0;D[a+122|0]=0;D[a+123|0]=0;D[a+124|0]=0;break h}na();v()}break f}e=a;break e}a=F[i+44>>2];F[j+12>>2]=g;F[j+8>>2]=a;F[j+20>>2]=f;F[j+16>>2]=f+12;f=j+8|0;a=0;j:{k:{switch(b-1|0){case 0:b=ka(60);F[b+4>>2]=l;F[b>>2]=2960;a=F[d+4>>2];F[b+8>>2]=F[d>>2];F[b+12>>2]=a;a=F[d+12>>2];F[b+16>>2]=F[d+8>>2];F[b+20>>2]=a;a=F[d+20>>2];F[b+24>>2]=F[d+16>>2];F[b+28>>2]=a;F[b+40>>2]=0;F[b+32>>2]=0;F[b+36>>2]=0;a=F[d+24>>2];g=F[d+28>>2];if((a|0)!=(g|0)){c=g-a|0;if((c|0)<0){break d}e=ka(c);F[b+32>>2]=e;F[b+40>>2]=(c&-4)+e;while(1){F[e>>2]=F[a>>2];e=e+4|0;a=a+4|0;if((g|0)!=(a|0)){continue}break}F[b+36>>2]=e}a=F[f+4>>2];F[b+44>>2]=F[f>>2];F[b+48>>2]=a;a=F[f+12>>2];F[b+52>>2]=F[f+8>>2];F[b+56>>2]=a;F[b>>2]=4156;a=b;break j;case 3:b=ka(112);F[b+4>>2]=l;F[b>>2]=2960;a=F[d+4>>2];F[b+8>>2]=F[d>>2];F[b+12>>2]=a;a=F[d+12>>2];F[b+16>>2]=F[d+8>>2];F[b+20>>2]=a;a=F[d+20>>2];F[b+24>>2]=F[d+16>>2];F[b+28>>2]=a;F[b+40>>2]=0;F[b+32>>2]=0;F[b+36>>2]=0;a=F[d+24>>2];g=F[d+28>>2];if((a|0)!=(g|0)){c=g-a|0;if((c|0)<0){break d}e=ka(c);F[b+32>>2]=e;F[b+40>>2]=(c&-4)+e;while(1){F[e>>2]=F[a>>2];e=e+4|0;a=a+4|0;if((g|0)!=(a|0)){continue}break}F[b+36>>2]=e}a=F[f+4>>2];F[b+44>>2]=F[f>>2];F[b+48>>2]=a;a=F[f+12>>2];F[b+52>>2]=F[f+8>>2];F[b+56>>2]=a;F[b+60>>2]=0;F[b+64>>2]=0;F[b>>2]=4580;F[b+68>>2]=0;F[b+72>>2]=0;F[b+76>>2]=0;F[b+80>>2]=0;F[b+84>>2]=0;F[b+88>>2]=0;F[b+92>>2]=0;F[b+96>>2]=0;F[b+100>>2]=0;F[b+104>>2]=0;F[b+108>>2]=0;a=b;break j;case 4:b=ka(104);F[b+4>>2]=l;F[b>>2]=2960;a=F[d+4>>2];F[b+8>>2]=F[d>>2];F[b+12>>2]=a;a=F[d+12>>2];F[b+16>>2]=F[d+8>>2];F[b+20>>2]=a;a=F[d+20>>2];F[b+24>>2]=F[d+16>>2];F[b+28>>2]=a;F[b+40>>2]=0;F[b+32>>2]=0;F[b+36>>2]=0;a=F[d+24>>2];g=F[d+28>>2];if((a|0)!=(g|0)){c=g-a|0;if((c|0)<0){break d}e=ka(c);F[b+32>>2]=e;F[b+40>>2]=(c&-4)+e;while(1){F[e>>2]=F[a>>2];e=e+4|0;a=a+4|0;if((g|0)!=(a|0)){continue}break}F[b+36>>2]=e}a=F[f+4>>2];F[b+44>>2]=F[f>>2];F[b+48>>2]=a;a=F[f+12>>2];F[b+52>>2]=F[f+8>>2];F[b+56>>2]=a;F[b+84>>2]=0;F[b+76>>2]=0;F[b+80>>2]=0;F[b+60>>2]=0;F[b+64>>2]=0;F[b>>2]=4816;a=F[f+4>>2];F[b+88>>2]=F[f>>2];F[b+92>>2]=a;a=F[f+12>>2];F[b+96>>2]=F[f+8>>2];F[b+100>>2]=a;a=b;break j;case 5:break k;default:break j}}a=ka(128);F[a+4>>2]=l;F[a>>2]=2960;b=F[d+4>>2];F[a+8>>2]=F[d>>2];F[a+12>>2]=b;b=F[d+12>>2];F[a+16>>2]=F[d+8>>2];F[a+20>>2]=b;b=F[d+20>>2];F[a+24>>2]=F[d+16>>2];F[a+28>>2]=b;F[a+40>>2]=0;F[a+32>>2]=0;F[a+36>>2]=0;l:{m:{c=F[d+28>>2];b=F[d+24>>2];if((c|0)!=(b|0)){c=c-b|0;if((c|0)<0){break m}b=ka(c);F[a+36>>2]=b;F[a+32>>2]=b;F[a+40>>2]=(c&-4)+b;e=F[d+24>>2];c=F[d+28>>2];if((e|0)!=(c|0)){while(1){F[b>>2]=F[e>>2];b=b+4|0;e=e+4|0;if((c|0)!=(e|0)){continue}break}}F[a+36>>2]=b}F[a>>2]=4524;b=F[f+4>>2];F[a+44>>2]=F[f>>2];F[a+48>>2]=b;b=F[f+12>>2];F[a+52>>2]=F[f+8>>2];F[a+56>>2]=b;b=a- -64|0;F[b>>2]=0;F[b+4>>2]=0;F[a+60>>2]=5624;F[a>>2]=5040;b=F[f+4>>2];F[a+72>>2]=F[f>>2];F[a+76>>2]=b;b=F[f+12>>2];F[a+80>>2]=F[f+8>>2];F[a+84>>2]=b;F[a+104>>2]=1065353216;F[a+108>>2]=-1;F[a+96>>2]=-1;F[a+100>>2]=-1;F[a+88>>2]=1;F[a+92>>2]=-1;F[a+60>>2]=5260;F[a+112>>2]=0;F[a+116>>2]=0;D[a+117|0]=0;D[a+118|0]=0;D[a+119|0]=0;D[a+120|0]=0;D[a+121|0]=0;D[a+122|0]=0;D[a+123|0]=0;D[a+124|0]=0;break l}na();v()}break j}e=a}Z=j+32|0;break c}na();v()}if(e){break b}}e=ka(44);F[e+4>>2]=k;F[e>>2]=2960;a=F[d+4>>2];F[e+8>>2]=F[d>>2];F[e+12>>2]=a;a=F[d+12>>2];F[e+16>>2]=F[d+8>>2];F[e+20>>2]=a;a=F[d+20>>2];F[e+24>>2]=F[d+16>>2];F[e+28>>2]=a;F[e+40>>2]=0;F[e+32>>2]=0;F[e+36>>2]=0;n:{c=F[d+24>>2];b=F[d+28>>2];if((c|0)!=(b|0)){a=b-c|0;if((a|0)<0){break n}k=ka(a);F[e+32>>2]=k;F[e+40>>2]=(a&-4)+k;while(1){F[k>>2]=F[c>>2];k=k+4|0;c=c+4|0;if((b|0)!=(c|0)){continue}break}F[e+36>>2]=k}F[e>>2]=5652;break b}na();v()}k=e;a=F[h+32>>2];if(!a){break a}F[h+36>>2]=a;ja(a)}Z=h+48|0;return k|0}function rf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0;m=Z-16|0;Z=m;F[m+12>>2]=b;b=ka(32);F[m>>2]=b;F[m+4>>2]=24;F[m+8>>2]=-2147483616;c=G[1196]|G[1197]<<8|(G[1198]<<16|G[1199]<<24);d=G[1192]|G[1193]<<8|(G[1194]<<16|G[1195]<<24);D[b+16|0]=d;D[b+17|0]=d>>>8;D[b+18|0]=d>>>16;D[b+19|0]=d>>>24;D[b+20|0]=c;D[b+21|0]=c>>>8;D[b+22|0]=c>>>16;D[b+23|0]=c>>>24;c=G[1188]|G[1189]<<8|(G[1190]<<16|G[1191]<<24);d=G[1184]|G[1185]<<8|(G[1186]<<16|G[1187]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1180]|G[1181]<<8|(G[1182]<<16|G[1183]<<24);d=G[1176]|G[1177]<<8|(G[1178]<<16|G[1179]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;D[b+24|0]=0;l=Z-48|0;Z=l;f=F[m+12>>2];d=a;a=a+16|0;b=F[a>>2];a:{b:{if(!b){break b}c=a;while(1){e=(f|0)>F[b+16>>2];c=e?c:b;b=F[(e?b+4|0:b)>>2];if(b){continue}break}if((a|0)==(c|0)){break b}if((f|0)>=F[c+16>>2]){break a}}F[l+28>>2]=0;F[l+32>>2]=0;y=l+24|0;F[l+24>>2]=y|4;a=l+16|0;F[a>>2]=0;F[a+4>>2]=0;F[l+8>>2]=f;F[l+12>>2]=a;t=l+8|0;a=t;x=Z-16|0;Z=x;u=d+12|0;c=F[u+4>>2];c:{d:{if(!c){o=u+4|0;d=o;break d}a=F[a>>2];while(1){d=c;b=F[c+16>>2];if((b|0)>(a|0)){o=d;c=F[d>>2];if(c){continue}break d}if((a|0)<=(b|0)){g=d;a=0;break c}c=F[d+4>>2];if(c){continue}break}o=d+4|0}g=ka(32);b=F[t>>2];q=g+24|0;a=q;F[a>>2]=0;F[a+4>>2]=0;F[g+16>>2]=b;r=g+20|0;F[r>>2]=a;c=F[t+4>>2];z=t+8|0;if((c|0)!=(z|0)){while(1){p=Z-16|0;Z=p;a=p+8|0;k=c+16|0;e:{f:{g:{h:{i:{j:{k:{f=q;e=r+4|0;l:{if((f|0)==(e|0)){break l}b=G[f+27|0];h=b<<24>>24<0;i=G[k+11|0];n=i<<24>>24;j=(n|0)<0;i=j?F[k+4>>2]:i;b=h?F[f+20>>2]:b;s=i>>>0>b>>>0;w=s?b:i;if(w){j=j?F[k>>2]:k;h=h?F[f+16>>2]:f+16|0;A=sa(j,h,w);if(!A){if(b>>>0>i>>>0){break l}break k}if((A|0)>=0){break k}break l}if(b>>>0<=i>>>0){break j}}h=F[f>>2];m:{a=f;n:{if((a|0)==F[r>>2]){break n}o:{if(!h){b=f;while(1){a=F[b+8>>2];i=F[a>>2]==(b|0);b=a;if(i){continue}break}break o}b=h;while(1){a=b;b=F[b+4>>2];if(b){continue}break}}i=G[k+11|0];s=i<<24>>24;b=(s|0)<0;j=G[a+27|0];n=j<<24>>24<0;p:{i=b?F[k+4>>2]:i;j=n?F[a+20>>2]:j;w=i>>>0>>0?i:j;if(w){b=sa(n?F[a+16>>2]:a+16|0,b?F[k>>2]:k,w);if(b){break p}}if(i>>>0>j>>>0){break n}break m}if((b|0)>=0){break m}}if(!h){F[p+12>>2]=f;a=f;break e}F[p+12>>2]=a;a=a+4|0;break e}b=F[e>>2];if(!b){F[p+12>>2]=e;a=e;break e}h=(s|0)<0?F[k>>2]:k;f=e;while(1){a=b;b=G[b+27|0];e=b<<24>>24<0;b=e?F[a+20>>2]:b;k=b>>>0>>0;q:{r:{s:{t:{n=k?b:i;u:{if(n){e=e?F[a+16>>2]:a+16|0;j=sa(h,e,n);if(!j){if(b>>>0>i>>>0){break u}break t}if((j|0)>=0){break t}break u}if(b>>>0<=i>>>0){break s}}f=a;b=F[a>>2];if(b){continue}break g}b=sa(e,h,n);if(b){break r}}if(k){break q}break g}if((b|0)>=0){break g}}f=a+4|0;b=F[a+4>>2];if(b){continue}break}break g}b=sa(h,j,w);if(b){break i}}if(s){break h}break f}if((b|0)>=0){break f}}h=F[f+4>>2];v:{if(!h){b=f;while(1){a=F[b+8>>2];j=F[a>>2]!=(b|0);b=a;if(j){continue}break}break v}b=h;while(1){a=b;b=F[b>>2];if(b){continue}break}}w:{x:{if((a|0)==(e|0)){break x}j=G[a+27|0];b=j<<24>>24<0;y:{j=b?F[a+20>>2]:j;s=i>>>0>j>>>0?j:i;if(s){b=sa((n|0)<0?F[k>>2]:k,b?F[a+16>>2]:a+16|0,s);if(b){break y}}if(i>>>0>>0){break x}break w}if((b|0)>=0){break w}}if(!h){F[p+12>>2]=f;a=f+4|0;break e}F[p+12>>2]=a;break e}b=F[e>>2];if(!b){F[p+12>>2]=e;a=e;break e}h=(n|0)<0?F[k>>2]:k;f=e;while(1){a=b;b=G[b+27|0];e=b<<24>>24<0;b=e?F[a+20>>2]:b;k=b>>>0>>0;z:{A:{B:{C:{n=k?b:i;D:{if(n){e=e?F[a+16>>2]:a+16|0;j=sa(h,e,n);if(!j){if(b>>>0>i>>>0){break D}break C}if((j|0)>=0){break C}break D}if(b>>>0<=i>>>0){break B}}f=a;b=F[a>>2];if(b){continue}break g}b=sa(e,h,n);if(b){break A}}if(k){break z}break g}if((b|0)>=0){break g}}f=a+4|0;b=F[a+4>>2];if(b){continue}break}}F[p+12>>2]=a;a=f;break e}F[p+12>>2]=f;F[a>>2]=f}f=a;a=F[a>>2];if(a){b=0}else{a=ka(40);b=a+16|0;E:{if(D[c+27|0]>=0){e=F[c+20>>2];F[b>>2]=F[c+16>>2];F[b+4>>2]=e;F[b+8>>2]=F[c+24>>2];break E}ra(b,F[c+16>>2],F[c+20>>2])}b=a+28|0;F:{if(D[c+39|0]>=0){e=F[c+32>>2];F[b>>2]=F[c+28>>2];F[b+4>>2]=e;F[b+8>>2]=F[c+36>>2];break F}ra(b,F[c+28>>2],F[c+32>>2])}F[a+8>>2]=F[p+12>>2];F[a>>2]=0;F[a+4>>2]=0;F[f>>2]=a;b=a;e=F[F[r>>2]>>2];if(e){F[r>>2]=e;b=F[f>>2]}nb(F[r+4>>2],b);F[r+8>>2]=F[r+8>>2]+1;b=1}D[x+12|0]=b;F[x+8>>2]=a;Z=p+16|0;b=F[c+4>>2];G:{if(b){while(1){c=b;b=F[b>>2];if(b){continue}break G}}while(1){a=c;c=F[c+8>>2];if((a|0)!=F[c>>2]){continue}break}}if((c|0)!=(z|0)){continue}break}}F[g+8>>2]=d;F[g>>2]=0;F[g+4>>2]=0;F[o>>2]=g;c=g;a=F[F[u>>2]>>2];if(a){F[u>>2]=a;c=F[o>>2]}nb(F[u+4>>2],c);F[u+8>>2]=F[u+8>>2]+1;a=1}D[l+44|0]=a;F[l+40>>2]=g;Z=x+16|0;c=F[l+40>>2];ib(t|4,F[l+16>>2]);ib(y,F[l+28>>2])}f=Z-48|0;Z=f;d=f+8|0;g=Z-32|0;Z=g;o=g+32|0;b=o;a=g+21|0;H:{if((b|0)==(a|0)){break H}}e=b-a|0;I:{if((e|0)<=9){h=61;if((e|0)<(I[2684]<=1|0)){break I}}D[a|0]=49;b=a+1|0;h=0}F[g+12>>2]=h;F[g+8>>2]=b;h=Z-16|0;Z=h;e=Z-16|0;Z=e;J:{q=F[g+8>>2];g=q-a|0;if(g>>>0<=2147483631){K:{if(g>>>0<11){D[d+11|0]=g|G[d+11|0]&128;D[d+11|0]=G[d+11|0]&127;b=d;break K}t=e+8|0;if(g>>>0>=11){k=g+16&-16;b=k-1|0;b=(b|0)==11?k:b}else{b=10}sb(t,b+1|0);b=F[e+8>>2];F[d>>2]=b;F[d+8>>2]=F[d+8>>2]&-2147483648|F[e+12>>2]&2147483647;F[d+8>>2]=F[d+8>>2]|-2147483648;F[d+4>>2]=g}while(1){if((a|0)!=(q|0)){D[b|0]=G[a|0];b=b+1|0;a=a+1|0;continue}break}D[e+7|0]=0;D[b|0]=G[e+7|0];Z=e+16|0;break J}za();v()}Z=h+16|0;Z=o;F[f+32>>2]=m;L:{M:{a=c+20|0;d=F[a+4>>2];N:{if(!d){g=a+4|0;c=g;break N}b=G[m+11|0];c=b<<24>>24<0;e=c?F[m>>2]:m;b=c?F[m+4>>2]:b;while(1){c=d;d=G[c+27|0];g=d<<24>>24<0;d=g?F[c+20>>2]:d;o=d>>>0>>0;O:{P:{Q:{R:{h=o?d:b;S:{if(h){g=g?F[c+16>>2]:c+16|0;q=sa(e,g,h);if(!q){if(b>>>0>>0){break S}break R}if((q|0)>=0){break R}break S}if(b>>>0>=d>>>0){break Q}}g=c;d=F[c>>2];if(d){continue}break N}d=sa(g,e,h);if(d){break P}}if(o){break O}break M}if((d|0)>=0){break M}}d=F[c+4>>2];if(d){continue}break}g=c+4|0}d=ka(40);e=d+16|0;b=F[f+32>>2];T:{if(D[b+11|0]>=0){o=F[b+4>>2];F[e>>2]=F[b>>2];F[e+4>>2]=o;F[e+8>>2]=F[b+8>>2];break T}ra(e,F[b>>2],F[b+4>>2])}F[d+8>>2]=c;F[d>>2]=0;F[d+4>>2]=0;F[d+36>>2]=0;F[d+28>>2]=0;F[d+32>>2]=0;F[g>>2]=d;c=d;b=F[F[a>>2]>>2];if(b){F[a>>2]=b;c=F[g>>2]}nb(F[a+4>>2],c);F[a+8>>2]=F[a+8>>2]+1;a=1;break L}d=c;a=0}D[f+44|0]=a;F[f+40>>2]=d;a=F[f+40>>2];if(D[a+39|0]<0){ja(F[a+28>>2])}b=F[f+12>>2];F[a+28>>2]=F[f+8>>2];F[a+32>>2]=b;F[a+36>>2]=F[f+16>>2];Z=f+48|0;Z=l+48|0;if(D[m+11|0]<0){ja(F[m>>2])}Z=m+16|0}function zd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0;h=Z-32|0;Z=h;g=F[F[a+4>>2]+44>>2];c=F[a+8>>2];d=F[c>>2];c=F[c+4>>2];F[h+24>>2]=0;F[h+16>>2]=0;F[h+20>>2]=0;d=(c-d>>2>>>0)/3|0;c=F[g+96>>2];f=(F[g+100>>2]-c|0)/12|0;a:{if(d>>>0>f>>>0){e=d-f|0;i=F[g+104>>2];c=F[g+100>>2];if(e>>>0<=(i-c|0)/12>>>0){b:{if(!e){break b}d=c;f=L(e,12)-12|0;i=((f>>>0)/12|0)+1&3;if(i){while(1){l=F[h+20>>2];F[d>>2]=F[h+16>>2];F[d+4>>2]=l;F[d+8>>2]=F[h+24>>2];d=d+12|0;j=j+1|0;if((i|0)!=(j|0)){continue}break}}c=L(e,12)+c|0;if(f>>>0<36){break b}while(1){f=F[h+20>>2];F[d>>2]=F[h+16>>2];F[d+4>>2]=f;F[d+8>>2]=F[h+24>>2];F[d+20>>2]=F[h+24>>2];f=F[h+20>>2];F[d+12>>2]=F[h+16>>2];F[d+16>>2]=f;F[d+32>>2]=F[h+24>>2];f=F[h+20>>2];F[d+24>>2]=F[h+16>>2];F[d+28>>2]=f;f=F[h+20>>2];F[d+36>>2]=F[h+16>>2];F[d+40>>2]=f;F[d+44>>2]=F[h+24>>2];d=d+48|0;if((d|0)!=(c|0)){continue}break}}F[g+100>>2]=c;break a}c:{f=F[g+96>>2];n=(c-f|0)/12|0;d=n+e|0;if(d>>>0<357913942){f=(i-f|0)/12|0;i=f<<1;i=f>>>0>=178956970?357913941:d>>>0>>0?i:d;if(i){if(i>>>0>=357913942){break c}l=ka(L(i,12))}f=L(n,12)+l|0;d=f;e=L(e,12);n=e-12|0;q=((n>>>0)/12|0)+1&3;if(q){while(1){r=F[h+20>>2];F[d>>2]=F[h+16>>2];F[d+4>>2]=r;F[d+8>>2]=F[h+24>>2];d=d+12|0;j=j+1|0;if((q|0)!=(j|0)){continue}break}}e=e+f|0;if(n>>>0>=36){while(1){j=F[h+20>>2];F[d>>2]=F[h+16>>2];F[d+4>>2]=j;F[d+8>>2]=F[h+24>>2];F[d+20>>2]=F[h+24>>2];j=F[h+20>>2];F[d+12>>2]=F[h+16>>2];F[d+16>>2]=j;F[d+32>>2]=F[h+24>>2];j=F[h+20>>2];F[d+24>>2]=F[h+16>>2];F[d+28>>2]=j;j=F[h+20>>2];F[d+36>>2]=F[h+16>>2];F[d+40>>2]=j;F[d+44>>2]=F[h+24>>2];d=d+48|0;if((e|0)!=(d|0)){continue}break}}j=F[g+96>>2];if((j|0)!=(c|0)){while(1){c=c-12|0;n=F[c+4>>2];f=f-12|0;d=f;F[d>>2]=F[c>>2];F[d+4>>2]=n;F[d+8>>2]=F[c+8>>2];if((c|0)!=(j|0)){continue}break}c=F[g+96>>2]}F[g+104>>2]=L(i,12)+l;F[g+100>>2]=e;F[g+96>>2]=f;if(c){ja(c)}break a}na();v()}oa();v()}if(d>>>0>=f>>>0){break a}F[g+100>>2]=c+L(d,12)}d:{if(F[a+216>>2]==F[a+220>>2]){j=F[a+4>>2];c=F[j+44>>2];d=F[c+100>>2];f=F[c+96>>2];if((d|0)!=(f|0)){c=(d-f|0)/12|0;o=c>>>0<=1?1:c;c=0;while(1){d=F[a+8>>2];i=f+L(c,12)|0;g=L(c,3);e:{f:{if((g|0)==-1){e=F[(F[d>>2]+(g<<2)|0)+4>>2];k=-1;g=1;break f}e=-1;k=F[F[d>>2]+(g<<2)>>2];l=g+1|0;if((l|0)==-1){g=0;break f}e=F[F[d>>2]+(l<<2)>>2];g=g+2|0;m=-1;if((g|0)==-1){break e}}m=F[F[d>>2]+(g<<2)>>2]}F[i+8>>2]=m;F[i+4>>2]=e;F[i>>2]=k;c=c+1|0;if((o|0)!=(c|0)){continue}break}}F[F[j+4>>2]+80>>2]=b;c=1;break d}d=0;F[h+24>>2]=0;F[h+16>>2]=0;F[h+20>>2]=0;l=F[a+8>>2];c=F[l>>2];g=F[l+4>>2];F[h+8>>2]=0;F[h>>2]=0;F[h+4>>2]=0;b=0;g:{h:{i:{j:{k:{l:{if((c|0)!=(g|0)){c=g-c|0;if((c|0)<0){break l}b=ka(c);F[h>>2]=b;F[h+8>>2]=(c&-4)+b;u=h,w=ma(b,0,c)+c|0,F[u+4>>2]=w}c=F[l+24>>2];if((F[l+28>>2]-c|0)<4){break h}f=0;while(1){g=F[(p<<2)+c>>2];m:{if((g|0)==-1){break m}n:{if(F[F[a+120>>2]+(p>>>3&536870908)>>2]>>>p&1){break n}n=F[a+216>>2];c=F[a+220>>2];if((n|0)==(c|0)){break n}e=g+2|0;i=(g>>>0)%3|0;q=i?g-1|0:e;c=(c-n|0)/144|0;r=c>>>0<=1?1:c;j=0;t=(i|0)!=0|(e|0)!=-1;while(1){s=g<<2;i=L(j,144)+n|0;c=F[s+F[F[i+68>>2]>>2]>>2];o:{if(!(F[F[i+16>>2]+(c>>>3&536870908)>>2]>>>c&1)){break o}c=-1;p:{if(!t){break p}e=F[F[l+12>>2]+(q<<2)>>2];c=-1;if((e|0)==-1){break p}c=e-1|0;if((e>>>0)%3|0){break p}c=e+2|0}if((g|0)==(c|0)){break o}e=s;s=F[i+32>>2];i=F[e+s>>2];while(1){e=0;if((c|0)==-1){break g}if((i|0)!=F[s+(c<<2)>>2]){g=c;break n}q:{r:{if((c>>>0)%3|0){e=c-1|0;break r}e=c+2|0;m=-1;if((e|0)==-1){break q}}c=F[F[l+12>>2]+(e<<2)>>2];m=-1;if((c|0)==-1){break q}m=c-1|0;if((c>>>0)%3|0){break q}m=c+2|0}c=m;if((g|0)!=(c|0)){continue}break}}j=j+1|0;if((r|0)!=(j|0)){continue}break}}i=k-f|0;e=i>>2;F[(g<<2)+b>>2]=e;s:{if(k>>>0>>0){F[k>>2]=g;k=k+4|0;F[h+20>>2]=k;break s}c=e+1|0;if(c>>>0>=1073741824){break k}d=o-f|0;k=d>>>1|0;c=d>>>0>=2147483644?1073741823:c>>>0>>0?k:c;if(c){if(c>>>0>=1073741824){break j}d=ka(c<<2)}else{d=0}e=d+(e<<2)|0;F[e>>2]=g;m=c<<2;c=pa(d,f,i);o=m+c|0;F[h+24>>2]=o;k=e+4|0;F[h+20>>2]=k;F[h+16>>2]=c;if(f){ja(f);l=F[a+8>>2]}f=c}if((g|0)==-1){break m}t:{if((g>>>0)%3|0){c=g-1|0;break t}c=g+2|0;if((c|0)==-1){break m}}c=F[F[l+12>>2]+(c<<2)>>2];if((c|0)==-1){break m}c=c+((c>>>0)%3|0?-1:2)|0;if((c|0)==-1){break m}e=g;if((c|0)==(g|0)){break m}while(1){i=c;u:{v:{c=F[a+220>>2];j=F[a+216>>2];if((c|0)==(j|0)){break v}c=(c-j|0)/144|0;n=c>>>0<=1?1:c;c=0;while(1){q=F[(j+L(c,144)|0)+32>>2];r=i<<2;if(F[q+r>>2]==F[q+(e<<2)>>2]){c=c+1|0;if((n|0)!=(c|0)){continue}break v}break}j=k-d|0;e=j>>2;F[b+r>>2]=e;if(k>>>0>>0){F[k>>2]=i;k=k+4|0;F[h+20>>2]=k;f=d;break u}c=e+1|0;if(c>>>0>=1073741824){break i}f=o-d|0;k=f>>>1|0;c=f>>>0>=2147483644?1073741823:c>>>0>>0?k:c;if(c){if(c>>>0>=1073741824){break j}f=ka(c<<2)}else{f=0}e=f+(e<<2)|0;F[e>>2]=i;m=c<<2;c=pa(f,d,j);o=m+c|0;F[h+24>>2]=o;k=e+4|0;F[h+20>>2]=k;F[h+16>>2]=c;if(!d){d=c;break u}ja(d);l=F[a+8>>2];d=c;break u}F[(i<<2)+b>>2]=F[(e<<2)+b>>2]}if((i|0)==-1){break m}w:{if((i>>>0)%3|0){c=i-1|0;break w}c=i+2|0;if((c|0)==-1){break m}}c=F[F[l+12>>2]+(c<<2)>>2];if((c|0)==-1){break m}c=c+((c>>>0)%3|0?-1:2)|0;if((c|0)==-1){break m}e=i;if((c|0)!=(g|0)){continue}break}}p=p+1|0;c=F[l+24>>2];if((p|0)>2]-c>>2){continue}break}break h}na();v()}na();v()}oa();v()}na();v()}i=F[a+4>>2];a=F[i+44>>2];c=F[a+100>>2];a=F[a+96>>2];x:{if((c|0)==(a|0)){break x}g=(c-a|0)/12|0;f=g>>>0<=1?1:g;l=f&1;c=0;if(g>>>0>=2){j=f&-2;g=0;while(1){e=L(c,12);f=e+b|0;o=F[f>>2];p=F[f+4>>2];e=a+e|0;F[e+8>>2]=F[f+8>>2];F[e>>2]=o;F[e+4>>2]=p;e=L(c|1,12);f=e+b|0;o=F[f>>2];p=F[f+4>>2];e=a+e|0;F[e+8>>2]=F[f+8>>2];F[e>>2]=o;F[e+4>>2]=p;c=c+2|0;g=g+2|0;if((j|0)!=(g|0)){continue}break}}if(!l){break x}g=L(c,12);c=g+b|0;f=F[c>>2];e=F[c+4>>2];a=a+g|0;F[a+8>>2]=F[c+8>>2];F[a>>2]=f;F[a+4>>2]=e}F[F[i+4>>2]+80>>2]=k-d>>2;e=1}c=e;if(b){ja(b)}if(!d){break d}F[h+20>>2]=d;ja(d)}Z=h+32|0;return c}function de(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,G=0,H=0,I=0,J=0,K=0,M=0,N=0,O=0,P=0;g=Z+-64|0;Z=g;F[a+8>>2]=e;y=a+32|0;f=F[y>>2];d=F[a+36>>2]-f>>2;a:{b:{if(d>>>0>>0){qa(y,e-d|0);F[g+56>>2]=0;F[g+60>>2]=0;F[g+48>>2]=0;F[g+52>>2]=0;F[g+40>>2]=0;F[g+44>>2]=0;F[g+32>>2]=0;F[g+36>>2]=0;F[g+24>>2]=0;F[g+28>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;F[g>>2]=0;break b}if(d>>>0>e>>>0){F[a+36>>2]=f+(e<<2)}F[g+56>>2]=0;F[g+60>>2]=0;F[g+48>>2]=0;F[g+52>>2]=0;F[g+40>>2]=0;F[g+44>>2]=0;F[g+32>>2]=0;F[g+36>>2]=0;F[g+24>>2]=0;F[g+28>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;F[g>>2]=0;d=0;if(!e){break a}}Fa(g+16|0,e,g);h=F[g+28>>2];d=F[g+32>>2]}F[g>>2]=0;d=d-h>>2;c:{if(d>>>0>=e>>>0){if(d>>>0<=e>>>0){break c}F[g+32>>2]=(e<<2)+h;break c}Fa(g+16|12,e-d|0,g)}F[g>>2]=0;f=F[g+40>>2];d=F[g+44>>2]-f>>2;d:{if(d>>>0>=e>>>0){if(d>>>0<=e>>>0){break d}F[g+44>>2]=f+(e<<2);break d}Fa(g+40|0,e-d|0,g)}F[g>>2]=0;f=F[g+52>>2];d=F[g+56>>2]-f>>2;e:{if(d>>>0>=e>>>0){if(d>>>0<=e>>>0){break e}F[g+56>>2]=f+(e<<2);break e}Fa(g+52|0,e-d|0,g)}f:{if(F[a+8>>2]<=0){break f}i=F[g+16>>2];j=F[a+32>>2];h=0;while(1){d=h<<2;f=F[d+i>>2];m=F[a+16>>2];g:{if((f|0)>(m|0)){F[d+j>>2]=m;break g}d=d+j|0;m=F[a+12>>2];if((m|0)>(f|0)){F[d>>2]=m;break g}F[d>>2]=f}h=h+1|0;d=F[a+8>>2];if((h|0)<(d|0)){continue}break}if((d|0)<=0){break f}d=0;while(1){i=d<<2;f=i+c|0;i=F[b+i>>2]+F[j+i>>2]|0;F[f>>2]=i;h:{if((i|0)>F[a+16>>2]){i=i-F[a+20>>2]|0}else{if((i|0)>=F[a+12>>2]){break h}i=i+F[a+20>>2]|0}F[f>>2]=i}d=d+1|0;if((d|0)>2]){continue}break}}H=F[a+52>>2];t=F[a+48>>2];z=ka(16);d=z;F[d>>2]=0;F[d+4>>2]=0;F[d+8>>2]=0;F[d+12>>2]=0;F[g+8>>2]=0;F[g>>2]=0;F[g+4>>2]=0;i:{if(e){if(e>>>0>=1073741824){break i}d=e<<2;r=ka(d);F[g>>2]=r;F[g+8>>2]=d+r;ma(r,0,d)}A=1;d=F[a+56>>2];B=F[d>>2];d=F[d+4>>2]-B|0;j:{if((d|0)<8){break j}w=d>>2;I=(w|0)<=2?2:w;J=w>>>0<=1?1:w;C=e&-2;D=e&1;K=e&-4;E=e&3;G=e-1|0;M=e<<2;N=e>>>0<4;A=0;m=1;while(1){k:{l:{m:{n:{if((m|0)!=(J|0)){o:{p:{f=F[(m<<2)+B>>2];if((f|0)==-1){break p}k=1;d=f+2|0;j=(f>>>0)%3|0;x=j?f-1|0:d;s=1<>2];O=n+(x>>>3&536870908)|0;i=0;P=(j|0)!=0|(d|0)!=-1;d=f;q:{while(1){r:{if(F[n+(d>>>3&536870908)>>2]>>>d&1){break r}j=F[F[F[t+64>>2]+12>>2]+(d<<2)>>2];if((j|0)==-1){break r}l=F[H>>2];h=F[t+28>>2];p=F[l+(F[h+(j<<2)>>2]<<2)>>2];if((p|0)>=(m|0)){break r}q=j+1|0;q=F[l+(F[h+(((q>>>0)%3|0?q:j-2|0)<<2)>>2]<<2)>>2];if((q|0)>=(m|0)){break r}h=F[l+(F[h+(j+((j>>>0)%3|0?-1:2)<<2)>>2]<<2)>>2];if((h|0)>=(m|0)){break r}s:{if(!e){break s}j=F[(g+16|0)+L(i,12)>>2];l=L(e,h);q=L(e,q);p=L(e,p);h=0;o=0;if(G){while(1){F[j+(h<<2)>>2]=(F[(h+l<<2)+c>>2]+F[(h+q<<2)+c>>2]|0)-F[(h+p<<2)+c>>2];u=h|1;F[j+(u<<2)>>2]=(F[(l+u<<2)+c>>2]+F[(q+u<<2)+c>>2]|0)-F[(p+u<<2)+c>>2];h=h+2|0;o=o+2|0;if((C|0)!=(o|0)){continue}break}}if(!D){break s}F[j+(h<<2)>>2]=(F[(h+l<<2)+c>>2]+F[(h+q<<2)+c>>2]|0)-F[(h+p<<2)+c>>2]}j=4;i=i+1|0;if((i|0)==4){break q}}t:{if(k&1){h=d-2|0;j=d+1|0;d=-1;j=(j>>>0)%3|0?j:h;if((j|0)==-1|F[n+(j>>>3&536870908)>>2]>>>j&1){break t}j=F[F[F[t+64>>2]+12>>2]+(j<<2)>>2];if((j|0)==-1){break t}d=j+1|0;d=(d>>>0)%3|0?d:j-2|0;break t}u:{if((d>>>0)%3|0){h=d-1|0;break u}h=d+2|0;d=-1;if((h|0)==-1){break t}}d=-1;if(F[n+(h>>>3&536870908)>>2]>>>h&1){break t}j=F[F[F[t+64>>2]+12>>2]+(h<<2)>>2];if((j|0)==-1){break t}if((j>>>0)%3|0){d=j-1|0;break t}d=j+2|0}v:{if((d|0)==(f|0)){break v}if((d|0)==-1&k){if(!P|s&F[O>>2]){break v}d=F[F[F[t+64>>2]+12>>2]+(x<<2)>>2];if((d|0)==-1){break v}k=0;d=(d>>>0)%3|0?d-1|0:d+2|0}if((d|0)!=-1){continue}}break}j=i;if((j|0)<=0){break p}}if(e){ma(r,0,M)}d=j-1|0;q=(d<<2)+z|0;d=L(d,12)+a|0;u=d;x=F[d- -64>>2];k=0;d=F[g>>2];f=0;while(1){i=F[q>>2];F[q>>2]=i+1;if(i>>>0>=x>>>0){break j}w:{if(F[F[u+60>>2]+(i>>>3&536870908)>>2]>>>i&1){break w}f=f+1|0;if(!e){break w}n=F[(g+16|0)+L(k,12)>>2];i=0;h=0;p=0;if(!N){while(1){l=h<<2;o=l+d|0;F[o>>2]=F[l+n>>2]+F[o>>2];o=l|4;s=o+d|0;F[s>>2]=F[n+o>>2]+F[s>>2];o=l|8;s=o+d|0;F[s>>2]=F[n+o>>2]+F[s>>2];l=l|12;o=l+d|0;F[o>>2]=F[l+n>>2]+F[o>>2];h=h+4|0;p=p+4|0;if((K|0)!=(p|0)){continue}break}}if(!E){break w}while(1){l=h<<2;p=l+d|0;F[p>>2]=F[l+n>>2]+F[p>>2];h=h+1|0;i=i+1|0;if((E|0)!=(i|0)){continue}break}}k=k+1|0;if((k|0)!=(j|0)){continue}break}i=L(e,m);if(!f){break o}if(!e){break l}h=0;d=0;if(G){break n}break m}i=L(e,m)}if(F[a+8>>2]<=0){break k}k=(L(m-1|0,e)<<2)+c|0;j=F[y>>2];h=0;while(1){d=h<<2;f=F[d+k>>2];n=F[a+16>>2];x:{if((f|0)>(n|0)){F[d+j>>2]=n;break x}d=d+j|0;n=F[a+12>>2];if((n|0)>(f|0)){F[d>>2]=n;break x}F[d>>2]=f}h=h+1|0;f=F[a+8>>2];if((h|0)<(f|0)){continue}break}d=0;if((f|0)<=0){break k}f=i<<2;h=f+c|0;k=b+f|0;while(1){i=d<<2;f=i+h|0;i=F[i+k>>2]+F[j+i>>2]|0;F[f>>2]=i;y:{if((i|0)>F[a+16>>2]){i=i-F[a+20>>2]|0}else{if((i|0)>=F[a+12>>2]){break y}i=i+F[a+20>>2]|0}F[f>>2]=i}d=d+1|0;if((d|0)>2]){continue}break}break k}ta();v()}while(1){j=h<<2;k=j+r|0;F[k>>2]=F[k>>2]/(f|0);j=(j|4)+r|0;F[j>>2]=F[j>>2]/(f|0);h=h+2|0;d=d+2|0;if((C|0)!=(d|0)){continue}break}}if(!D){break l}d=(h<<2)+r|0;F[d>>2]=F[d>>2]/(f|0)}if(F[a+8>>2]<=0){break k}j=F[y>>2];h=0;while(1){d=h<<2;f=F[d+r>>2];k=F[a+16>>2];z:{if((f|0)>(k|0)){F[d+j>>2]=k;break z}d=d+j|0;k=F[a+12>>2];if((k|0)>(f|0)){F[d>>2]=k;break z}F[d>>2]=f}h=h+1|0;f=F[a+8>>2];if((h|0)<(f|0)){continue}break}d=0;if((f|0)<=0){break k}f=i<<2;h=f+c|0;k=b+f|0;while(1){i=d<<2;f=i+h|0;i=F[i+k>>2]+F[j+i>>2]|0;F[f>>2]=i;A:{if((i|0)>F[a+16>>2]){i=i-F[a+20>>2]|0}else{if((i|0)>=F[a+12>>2]){break A}i=i+F[a+20>>2]|0}F[f>>2]=i}d=d+1|0;if((d|0)>2]){continue}break}}m=m+1|0;A=(w|0)<=(m|0);if((m|0)!=(I|0)){continue}break}}a=F[g>>2];if(a){ja(a)}ja(z);a=F[g+52>>2];if(a){F[g+56>>2]=a;ja(a)}a=F[g+40>>2];if(a){F[g+44>>2]=a;ja(a)}a=F[g+28>>2];if(a){F[g+32>>2]=a;ja(a)}a=F[g+16>>2];if(a){F[g+20>>2]=a;ja(a)}Z=g- -64|0;return A|0}na();v()}function $h(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,G=0,H=0,I=0,J=0,K=0,M=0,N=0;h=Z+-64|0;Z=h;F[a+8>>2]=e;x=a+32|0;f=F[x>>2];d=F[a+36>>2]-f>>2;a:{b:{if(d>>>0>>0){qa(x,e-d|0);F[h+56>>2]=0;F[h+60>>2]=0;F[h+48>>2]=0;F[h+52>>2]=0;F[h+40>>2]=0;F[h+44>>2]=0;F[h+32>>2]=0;F[h+36>>2]=0;F[h+24>>2]=0;F[h+28>>2]=0;F[h+16>>2]=0;F[h+20>>2]=0;F[h>>2]=0;break b}if(d>>>0>e>>>0){F[a+36>>2]=f+(e<<2)}F[h+56>>2]=0;F[h+60>>2]=0;F[h+48>>2]=0;F[h+52>>2]=0;F[h+40>>2]=0;F[h+44>>2]=0;F[h+32>>2]=0;F[h+36>>2]=0;F[h+24>>2]=0;F[h+28>>2]=0;F[h+16>>2]=0;F[h+20>>2]=0;F[h>>2]=0;d=0;if(!e){break a}}Fa(h+16|0,e,h);i=F[h+28>>2];d=F[h+32>>2]}F[h>>2]=0;d=d-i>>2;c:{if(d>>>0>=e>>>0){if(d>>>0<=e>>>0){break c}F[h+32>>2]=(e<<2)+i;break c}Fa(h+16|12,e-d|0,h)}F[h>>2]=0;f=F[h+40>>2];d=F[h+44>>2]-f>>2;d:{if(d>>>0>=e>>>0){if(d>>>0<=e>>>0){break d}F[h+44>>2]=f+(e<<2);break d}Fa(h+40|0,e-d|0,h)}F[h>>2]=0;f=F[h+52>>2];d=F[h+56>>2]-f>>2;e:{if(d>>>0>=e>>>0){if(d>>>0<=e>>>0){break e}F[h+56>>2]=f+(e<<2);break e}Fa(h+52|0,e-d|0,h)}f:{if(F[a+8>>2]<=0){break f}g=F[h+16>>2];j=F[a+32>>2];i=0;while(1){d=i<<2;f=F[d+g>>2];m=F[a+16>>2];g:{if((f|0)>(m|0)){F[d+j>>2]=m;break g}d=d+j|0;m=F[a+12>>2];if((m|0)>(f|0)){F[d>>2]=m;break g}F[d>>2]=f}i=i+1|0;d=F[a+8>>2];if((i|0)<(d|0)){continue}break}if((d|0)<=0){break f}d=0;while(1){g=d<<2;f=g+c|0;g=F[b+g>>2]+F[g+j>>2]|0;F[f>>2]=g;h:{if((g|0)>F[a+16>>2]){g=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break h}g=g+F[a+20>>2]|0}F[f>>2]=g}d=d+1|0;if((d|0)>2]){continue}break}}H=F[a+52>>2];A=F[a+48>>2];y=ka(16);d=y;F[d>>2]=0;F[d+4>>2]=0;F[d+8>>2]=0;F[d+12>>2]=0;F[h+8>>2]=0;F[h>>2]=0;F[h+4>>2]=0;i:{if(e){if(e>>>0>=1073741824){break i}d=e<<2;t=ka(d);F[h>>2]=t;F[h+8>>2]=d+t;ma(t,0,d)}z=1;d=F[a+56>>2];B=F[d>>2];d=F[d+4>>2]-B|0;j:{if((d|0)<8){break j}w=d>>2;I=(w|0)<=2?2:w;J=w>>>0<=1?1:w;C=e&-2;D=e&1;K=e&-4;E=e&3;G=e-1|0;M=e<<2;N=e>>>0<4;z=0;m=1;while(1){k:{l:{m:{n:{if((m|0)!=(J|0)){o:{p:{f=F[(m<<2)+B>>2];if((f|0)==-1){break p}n=F[A+12>>2];d=f+2|0;g=(f>>>0)%3|0;q=n+((g?f-1|0:d)<<2)|0;j=0;u=(g|0)!=0|(d|0)!=-1;k=1;d=f;q:{while(1){g=F[n+(d<<2)>>2];r:{if((g|0)==-1){break r}l=-1;p=F[H>>2];r=F[A>>2];i=p+(F[r+(g<<2)>>2]<<2)|0;o=g+1|0;o=(o>>>0)%3|0?o:g-2|0;if((o|0)!=-1){l=F[r+(o<<2)>>2]}o=F[i>>2];s:{t:{if((g>>>0)%3|0){i=g-1|0;break t}i=g+2|0;s=-1;if((i|0)==-1){break s}}s=F[r+(i<<2)>>2]}if((m|0)<=(o|0)){break r}i=F[p+(l<<2)>>2];if((i|0)>=(m|0)){break r}l=F[p+(s<<2)>>2];if((l|0)>=(m|0)){break r}g=F[(h+16|0)+L(j,12)>>2];u:{if(!e){break u}l=L(e,l);r=L(e,i);p=L(e,o);i=0;s=0;if(G){while(1){F[g+(i<<2)>>2]=(F[(i+l<<2)+c>>2]+F[(i+r<<2)+c>>2]|0)-F[(i+p<<2)+c>>2];o=i|1;F[g+(o<<2)>>2]=(F[(l+o<<2)+c>>2]+F[(o+r<<2)+c>>2]|0)-F[(o+p<<2)+c>>2];i=i+2|0;s=s+2|0;if((C|0)!=(s|0)){continue}break}}if(!D){break u}F[g+(i<<2)>>2]=(F[(i+l<<2)+c>>2]+F[(i+r<<2)+c>>2]|0)-F[(i+p<<2)+c>>2]}g=4;j=j+1|0;if((j|0)==4){break q}}v:{if(k&1){i=d+1|0;d=(i>>>0)%3|0?i:d-2|0;g=-1;if((d|0)==-1){break v}d=F[n+(d<<2)>>2];g=-1;if((d|0)==-1){break v}g=d+1|0;g=(g>>>0)%3|0?g:d-2|0;break v}w:{if((d>>>0)%3|0){i=d-1|0;break w}i=d+2|0;g=-1;if((i|0)==-1){break v}}d=F[n+(i<<2)>>2];g=-1;if((d|0)==-1){break v}g=d-1|0;if((d>>>0)%3|0){break v}g=d+2|0}d=g;x:{if((f|0)==(d|0)){break x}if((d|0)==-1&k){if(!u){break x}d=F[q>>2];if((d|0)==-1){break x}k=0;d=(d>>>0)%3|0?d-1|0:d+2|0}if((d|0)!=-1){continue}}break}g=j;if((g|0)<=0){break p}}if(e){ma(t,0,M)}d=g-1|0;r=(d<<2)+y|0;d=L(d,12)+a|0;o=d;s=F[d- -64>>2];k=0;d=F[h>>2];f=0;while(1){j=F[r>>2];F[r>>2]=j+1;if(j>>>0>=s>>>0){break j}y:{if(F[F[o+60>>2]+(j>>>3&536870908)>>2]>>>j&1){break y}f=f+1|0;if(!e){break y}j=F[(h+16|0)+L(k,12)>>2];l=0;i=0;p=0;if(!N){while(1){n=i<<2;q=n+d|0;F[q>>2]=F[j+n>>2]+F[q>>2];q=n|4;u=q+d|0;F[u>>2]=F[j+q>>2]+F[u>>2];q=n|8;u=q+d|0;F[u>>2]=F[j+q>>2]+F[u>>2];n=n|12;q=n+d|0;F[q>>2]=F[j+n>>2]+F[q>>2];i=i+4|0;p=p+4|0;if((K|0)!=(p|0)){continue}break}}if(!E){break y}while(1){n=i<<2;p=n+d|0;F[p>>2]=F[j+n>>2]+F[p>>2];i=i+1|0;l=l+1|0;if((E|0)!=(l|0)){continue}break}}k=k+1|0;if((k|0)!=(g|0)){continue}break}g=L(e,m);if(!f){break o}if(!e){break l}i=0;d=0;if(G){break n}break m}g=L(e,m)}if(F[a+8>>2]<=0){break k}k=(L(m-1|0,e)<<2)+c|0;j=F[x>>2];i=0;while(1){d=i<<2;f=F[d+k>>2];l=F[a+16>>2];z:{if((f|0)>(l|0)){F[d+j>>2]=l;break z}d=d+j|0;l=F[a+12>>2];if((l|0)>(f|0)){F[d>>2]=l;break z}F[d>>2]=f}i=i+1|0;f=F[a+8>>2];if((i|0)<(f|0)){continue}break}d=0;if((f|0)<=0){break k}f=g<<2;i=f+c|0;k=b+f|0;while(1){g=d<<2;f=g+i|0;g=F[g+k>>2]+F[g+j>>2]|0;F[f>>2]=g;A:{if((g|0)>F[a+16>>2]){g=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break A}g=g+F[a+20>>2]|0}F[f>>2]=g}d=d+1|0;if((d|0)>2]){continue}break}break k}ta();v()}while(1){j=i<<2;k=j+t|0;F[k>>2]=F[k>>2]/(f|0);j=(j|4)+t|0;F[j>>2]=F[j>>2]/(f|0);i=i+2|0;d=d+2|0;if((C|0)!=(d|0)){continue}break}}if(!D){break l}d=(i<<2)+t|0;F[d>>2]=F[d>>2]/(f|0)}if(F[a+8>>2]<=0){break k}j=F[x>>2];i=0;while(1){d=i<<2;f=F[d+t>>2];k=F[a+16>>2];B:{if((f|0)>(k|0)){F[d+j>>2]=k;break B}d=d+j|0;k=F[a+12>>2];if((k|0)>(f|0)){F[d>>2]=k;break B}F[d>>2]=f}i=i+1|0;f=F[a+8>>2];if((i|0)<(f|0)){continue}break}d=0;if((f|0)<=0){break k}f=g<<2;i=f+c|0;k=b+f|0;while(1){g=d<<2;f=g+i|0;g=F[g+k>>2]+F[g+j>>2]|0;F[f>>2]=g;C:{if((g|0)>F[a+16>>2]){g=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break C}g=g+F[a+20>>2]|0}F[f>>2]=g}d=d+1|0;if((d|0)>2]){continue}break}}m=m+1|0;z=(w|0)<=(m|0);if((m|0)!=(I|0)){continue}break}}a=F[h>>2];if(a){ja(a)}ja(y);a=F[h+52>>2];if(a){F[h+56>>2]=a;ja(a)}a=F[h+40>>2];if(a){F[h+44>>2]=a;ja(a)}a=F[h+28>>2];if(a){F[h+32>>2]=a;ja(a)}a=F[h+16>>2];if(a){F[h+20>>2]=a;ja(a)}Z=h- -64|0;return z|0}na();v()}function Yh(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,E=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,$=0,aa=0;a:{b:{if((e|0)!=2){break b}F[a+8>>2]=2;F[a- -64>>2]=f;M=a+32|0;e=F[M>>2];d=F[a+36>>2]-e|0;c:{if(d>>>0<=7){qa(M,2-(d>>>2|0)|0);break c}if((d|0)==8){break c}F[a+36>>2]=e+8}i=1;d=F[a+56>>2];d=F[d+4>>2]-F[d>>2]|0;if((d|0)<=0){break b}o=a+60|0;d=d>>>2|0;X=d>>>0<=1?1:d;Y=a+68|0;d=0;while(1){f=F[a+56>>2];e=F[f>>2];if(F[f+4>>2]-e>>2>>>0<=d>>>0){break a}k=Z-80|0;Z=k;f=-1;d:{e:{e=F[e+(d<<2)>>2];if((e|0)==-1){break e}i=F[o+32>>2];g=e+1|0;g=(g>>>0)%3|0?g:e-2|0;if((g|0)!=-1){f=F[F[i>>2]+(g<<2)>>2]}p=-1;e=e+((e>>>0)%3|0?-1:2)|0;if((e|0)!=-1){p=F[F[i>>2]+(e<<2)>>2]}i=F[o+36>>2];e=F[i>>2];i=F[i+4>>2]-e>>2;if(i>>>0<=f>>>0|i>>>0<=p>>>0){break e}f:{g:{h:{i:{j:{k:{j=F[e+(p<<2)>>2];f=F[e+(f<<2)>>2];if((j|0)>=(d|0)|(f|0)>=(d|0)){break k}i=(j<<3)+c|0;w=F[i+4>>2];g=(f<<3)+c|0;e=F[g+4>>2];l=F[i>>2];i=F[g>>2];if(!((l|0)!=(i|0)|(e|0)!=(w|0))){F[o+8>>2]=i;F[o+12>>2]=e;break j}p=F[F[o+4>>2]+(d<<2)>>2];F[k+72>>2]=0;F[k+76>>2]=0;g=k- -64|0;F[g>>2]=0;F[g+4>>2]=0;F[k+56>>2]=0;F[k+60>>2]=0;g=F[o>>2];if(!G[g+84|0]){p=F[F[g+68>>2]+(p<<2)>>2]}Ga(g,p,D[g+24|0],k+56|0);p=F[F[o+4>>2]+(f<<2)>>2];F[k+48>>2]=0;F[k+52>>2]=0;F[k+40>>2]=0;F[k+44>>2]=0;F[k+32>>2]=0;F[k+36>>2]=0;g=F[o>>2];if(!G[g+84|0]){p=F[F[g+68>>2]+(p<<2)>>2]}Ga(g,p,D[g+24|0],k+32|0);p=F[F[o+4>>2]+(j<<2)>>2];F[k+24>>2]=0;F[k+28>>2]=0;F[k+16>>2]=0;F[k+20>>2]=0;F[k+8>>2]=0;F[k+12>>2]=0;g=F[o>>2];if(!G[g+84|0]){p=F[F[g+68>>2]+(p<<2)>>2]}Ga(g,p,D[g+24|0],k+8|0);g=F[k+16>>2];n=F[k+40>>2];x=g-n|0;N=F[k+44>>2];g=F[k+20>>2]-(N+(g>>>0>>0)|0)|0;H=g;j=ki(x,g,x,g);q=_;g=F[k+8>>2];z=F[k+32>>2];A=g-z|0;O=F[k+36>>2];g=F[k+12>>2]-(O+(g>>>0>>0)|0)|0;I=g;h=j;j=ki(A,g,A,g);g=h+j|0;h=_+q|0;h=g>>>0>>0?h+1|0:h;j=F[k+24>>2];B=F[k+48>>2];C=j-B|0;P=F[k+52>>2];j=F[k+28>>2]-(P+(j>>>0>>0)|0)|0;J=j;m=g;g=ki(C,j,C,j);r=m+g|0;h=_+h|0;s=g>>>0>r>>>0?h+1|0:h;if(!(s|r)){break k}p=0;E=mi(-1,2147483647,r,s);f=i>>31;R=f;h=f>>31;Q=i;g=h;q=i^g;i=q-g|0;f=(f^g)-((g>>>0>q>>>0)+g|0)|0;g=f;f=e>>31;S=f;K=e;e=f>>31;q=K^e;m=q-e|0;h=f>>31;e=(h^f)-((e>>>0>q>>>0)+h|0)|0;f=(g|0)==(e|0)&i>>>0>m>>>0|e>>>0>>0;i=f?i:m;j=_;e=f?g:e;if((j|0)==(e|0)&i>>>0>E>>>0|e>>>0>j>>>0){break f}i=F[k+64>>2];T=F[k+68>>2];e=ki(i-n|0,T-((i>>>0>>0)+N|0)|0,x,H);f=_;g=F[k+56>>2];U=F[k+60>>2];j=ki(g-z|0,U-((g>>>0>>0)+O|0)|0,A,I);e=j+e|0;h=_+f|0;h=e>>>0>>0?h+1|0:h;f=e;m=F[k+72>>2];V=F[k+76>>2];e=ki(m-B|0,V-((m>>>0>>0)+P|0)|0,C,J);j=f+e|0;f=_+h|0;q=e>>>0>j>>>0?f+1|0:f;e=l;E=e-Q|0;e=(e>>31)-((e>>>0>>0)+R|0)|0;W=e;l=e>>31;y=l^E;f=y-l|0;h=e>>31;e=(h^e)-((l>>>0>y>>>0)+h|0)|0;h=e;y=w-K|0;e=(w>>31)-((w>>>0>>0)+S|0)|0;w=e;l=f;t=e>>31;u=t^y;L=u-t|0;f=e>>31;e=(f^e)-((t>>>0>u>>>0)+f|0)|0;f=(h|0)==(e|0)&l>>>0>L>>>0|e>>>0>>0;f=mi(-1,2147483647,f?l:L,f?h:e)>>>0>>0;e=_;if(f&(e|0)<=(q|0)|(e|0)<(q|0)){break f}e=I>>31;f=e;l=e^A;e=l-e|0;f=(f^I)-((f>>>0>l>>>0)+f|0)|0;h=H>>31;t=h^x;u=t-h|0;l=(h^H)-((h>>>0>t>>>0)+h|0)|0;h=(f|0)==(l|0)&e>>>0>u>>>0|f>>>0>l>>>0;e=h?e:u;f=h?f:l;h=J>>31;L=e;t=h^C;u=t-h|0;l=(h^J)-((h>>>0>t>>>0)+h|0)|0;e=(f|0)==(l|0)&e>>>0>u>>>0|f>>>0>l>>>0;f=mi(-1,2147483647,e?L:u,e?f:l)>>>0>>0;e=_;if(f&(e|0)<=(q|0)|(e|0)<(q|0)){break f}l=1;e=0;f=n;n=li(ki(j,q,x,H),_,r,s);f=f+n|0;h=_+N|0;h=f>>>0>>0?h+1|0:h;n=i-f|0;f=T-((f>>>0>i>>>0)+h|0)|0;n=ki(n,f,n,f);x=_;f=g;h=li(ki(j,q,A,I),_,r,s);i=h+z|0;g=_+O|0;g=h>>>0>i>>>0?g+1|0:g;h=f-i|0;f=U-((f>>>0>>0)+g|0)|0;g=ki(h,f,h,f);i=g+n|0;f=_+x|0;f=g>>>0>i>>>0?f+1|0:f;n=i;g=li(ki(j,q,C,J),_,r,s);i=g+B|0;h=_+P|0;h=g>>>0>i>>>0?h+1|0:h;g=m-i|0;i=V-((i>>>0>m>>>0)+h|0)|0;m=ki(g,i,g,i);i=m+n|0;g=_+f|0;f=ki(i,i>>>0>>0?g+1|0:g,r,s);i=_;m=i;if(!i&f>>>0<=1){break i}h=f;while(1){g=e<<1|l>>>31;l=l<<1;e=g;n=!i&h>>>0>7|(i|0)!=0;h=(i&3)<<30|h>>>2;i=i>>>2|0;if(n){continue}break}break h}if((d|0)>(f|0)){e=f<<1}else{if((d|0)<=0){F[o+8>>2]=0;F[o+12>>2]=0;break j}e=(d<<1)-2|0}e=(e<<2)+c|0;F[o+8>>2]=F[e>>2];F[o+12>>2]=F[e+4>>2]}p=1;break f}e=m;l=f;if(f-1|0){break g}}while(1){i=mi(f,m,l,e);h=e+_|0;e=i+l|0;h=e>>>0>>0?h+1|0:h;l=(h&1)<<31|e>>>1;e=h>>>1|0;i=ki(l,e,l,e);g=_;if((m|0)==(g|0)&f>>>0>>0|g>>>0>m>>>0){continue}break}}f=F[o+20>>2];if(!f){break f}g=f-1|0;h=F[F[o+16>>2]+(g>>>3&536870908)>>2];F[o+20>>2]=g;p=1;f=ki(j,q,y,w);i=_;n=ki(r,s,K,S);m=n+f|0;f=_+i|0;f=m>>>0>>0?f+1|0:f;i=ki(l,e,E,W);g=h>>>g&1;h=g?0-i|0:i;m=h+m|0;n=f;f=_;i=n+(g?0-(f+((i|0)!=0)|0)|0:f)|0;$=o,aa=li(m,h>>>0>m>>>0?i+1|0:i,r,s),F[$+12>>2]=aa;f=ki(j,q,E,W);i=_;j=ki(r,s,Q,R);f=j+f|0;h=_+i|0;e=ki(l,e,y,w);i=0-e|0;l=_;h=(f>>>0>>0?h+1|0:h)+(g?l:0-(((e|0)!=0)+l|0)|0)|0;i=g?e:i;f=i+f|0;$=o,aa=li(f,f>>>0>>0?h+1|0:h,r,s),F[$+8>>2]=aa}Z=k+80|0;e=p;break d}ta();v()}i=e;if(!e){return 0}l:{if(F[a+8>>2]<=0){break l}l=F[M>>2];e=0;while(1){f=e<<2;g=F[f+Y>>2];j=F[a+16>>2];m:{if((g|0)>(j|0)){F[f+l>>2]=j;break m}f=f+l|0;j=F[a+12>>2];if((j|0)>(g|0)){F[f>>2]=j;break m}F[f>>2]=g}e=e+1|0;g=F[a+8>>2];if((e|0)<(g|0)){continue}break}f=0;if((g|0)<=0){break l}e=d<<3;j=e+c|0;q=b+e|0;while(1){g=f<<2;e=g+j|0;g=F[g+q>>2]+F[g+l>>2]|0;F[e>>2]=g;n:{if((g|0)>F[a+16>>2]){g=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break n}g=g+F[a+20>>2]|0}F[e>>2]=g}f=f+1|0;if((f|0)>2]){continue}break}}d=d+1|0;if((X|0)!=(d|0)){continue}break}}return i|0}ta();v()}function hi(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,E=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,$=0,aa=0;a:{b:{if((e|0)!=2){break b}F[a+8>>2]=2;F[a- -64>>2]=f;M=a+32|0;e=F[M>>2];d=F[a+36>>2]-e|0;c:{if(d>>>0<=7){qa(M,2-(d>>>2|0)|0);break c}if((d|0)==8){break c}F[a+36>>2]=e+8}p=1;d=F[a+56>>2];d=F[d+4>>2]-F[d>>2]|0;if((d|0)<=0){break b}o=a+60|0;d=d>>>2|0;X=d>>>0<=1?1:d;Y=a+68|0;d=0;while(1){e=F[a+56>>2];h=F[e>>2];if(F[e+4>>2]-h>>2>>>0<=d>>>0){break a}k=Z-80|0;Z=k;f=-1;h=F[h+(d<<2)>>2];e=-1;d:{if((h|0)==-1){break d}e=h+1|0;f=(e>>>0)%3|0?e:h-2|0;e=h-1|0;if((h>>>0)%3|0){break d}e=h+2|0}g=F[o+36>>2];h=F[g>>2];e:{f:{g:{h:{i:{g=F[g+4>>2]-h>>2;i=f<<2;f=F[F[o+32>>2]+28>>2];j=F[i+f>>2];if(g>>>0<=j>>>0){break i}e=F[f+(e<<2)>>2];if(e>>>0>=g>>>0){break i}j:{k:{l=F[h+(e<<2)>>2];f=F[h+(j<<2)>>2];if((l|0)>=(d|0)|(f|0)>=(d|0)){break k}h=(l<<3)+c|0;w=F[h+4>>2];g=(f<<3)+c|0;e=F[g+4>>2];j=F[h>>2];h=F[g>>2];if(!((j|0)!=(h|0)|(e|0)!=(w|0))){F[o+8>>2]=h;F[o+12>>2]=e;break j}p=F[F[o+4>>2]+(d<<2)>>2];F[k+72>>2]=0;F[k+76>>2]=0;g=k- -64|0;F[g>>2]=0;F[g+4>>2]=0;F[k+56>>2]=0;F[k+60>>2]=0;g=F[o>>2];if(!G[g+84|0]){p=F[F[g+68>>2]+(p<<2)>>2]}Ga(g,p,D[g+24|0],k+56|0);p=F[F[o+4>>2]+(f<<2)>>2];F[k+48>>2]=0;F[k+52>>2]=0;F[k+40>>2]=0;F[k+44>>2]=0;F[k+32>>2]=0;F[k+36>>2]=0;g=F[o>>2];if(!G[g+84|0]){p=F[F[g+68>>2]+(p<<2)>>2]}Ga(g,p,D[g+24|0],k+32|0);p=F[F[o+4>>2]+(l<<2)>>2];F[k+24>>2]=0;F[k+28>>2]=0;F[k+16>>2]=0;F[k+20>>2]=0;F[k+8>>2]=0;F[k+12>>2]=0;g=F[o>>2];if(!G[g+84|0]){p=F[F[g+68>>2]+(p<<2)>>2]}Ga(g,p,D[g+24|0],k+8|0);g=F[k+16>>2];n=F[k+40>>2];x=g-n|0;N=F[k+44>>2];g=F[k+20>>2]-(N+(g>>>0>>0)|0)|0;H=g;l=ki(x,g,x,g);q=_;g=F[k+8>>2];z=F[k+32>>2];A=g-z|0;O=F[k+36>>2];g=F[k+12>>2]-(O+(g>>>0>>0)|0)|0;I=g;i=l;l=ki(A,g,A,g);g=i+l|0;i=_+q|0;i=g>>>0>>0?i+1|0:i;l=F[k+24>>2];B=F[k+48>>2];C=l-B|0;P=F[k+52>>2];l=F[k+28>>2]-(P+(l>>>0>>0)|0)|0;J=l;m=g;g=ki(C,l,C,l);r=m+g|0;i=_+i|0;s=g>>>0>r>>>0?i+1|0:i;if(!(s|r)){break k}p=0;E=mi(-1,2147483647,r,s);f=h>>31;R=f;i=f>>31;Q=h;g=i;q=h^g;h=q-g|0;f=(f^g)-((g>>>0>q>>>0)+g|0)|0;g=f;f=e>>31;S=f;K=e;e=f>>31;q=K^e;m=q-e|0;i=f>>31;e=(i^f)-((e>>>0>q>>>0)+i|0)|0;f=(g|0)==(e|0)&h>>>0>m>>>0|e>>>0>>0;h=f?h:m;l=_;e=f?g:e;if((l|0)==(e|0)&h>>>0>E>>>0|e>>>0>l>>>0){break e}h=F[k+64>>2];T=F[k+68>>2];e=ki(h-n|0,T-((h>>>0>>0)+N|0)|0,x,H);f=_;g=F[k+56>>2];U=F[k+60>>2];l=ki(g-z|0,U-((g>>>0>>0)+O|0)|0,A,I);e=l+e|0;i=_+f|0;i=e>>>0>>0?i+1|0:i;f=e;m=F[k+72>>2];V=F[k+76>>2];e=ki(m-B|0,V-((m>>>0>>0)+P|0)|0,C,J);l=f+e|0;f=_+i|0;q=e>>>0>l>>>0?f+1|0:f;e=j;E=e-Q|0;e=(e>>31)-((e>>>0>>0)+R|0)|0;W=e;j=e>>31;y=j^E;f=y-j|0;i=e>>31;e=(i^e)-((j>>>0>y>>>0)+i|0)|0;i=e;y=w-K|0;e=(w>>31)-((w>>>0>>0)+S|0)|0;w=e;j=f;t=e>>31;u=t^y;L=u-t|0;f=e>>31;e=(f^e)-((t>>>0>u>>>0)+f|0)|0;f=(i|0)==(e|0)&j>>>0>L>>>0|e>>>0>>0;f=mi(-1,2147483647,f?j:L,f?i:e)>>>0>>0;e=_;if(f&(e|0)<=(q|0)|(e|0)<(q|0)){break e}e=I>>31;f=e;j=e^A;e=j-e|0;f=(f^I)-((f>>>0>j>>>0)+f|0)|0;i=H>>31;t=i^x;u=t-i|0;j=(i^H)-((i>>>0>t>>>0)+i|0)|0;i=(f|0)==(j|0)&e>>>0>u>>>0|f>>>0>j>>>0;e=i?e:u;f=i?f:j;i=J>>31;L=e;t=i^C;u=t-i|0;j=(i^J)-((i>>>0>t>>>0)+i|0)|0;e=(f|0)==(j|0)&e>>>0>u>>>0|f>>>0>j>>>0;f=mi(-1,2147483647,e?L:u,e?f:j)>>>0>>0;e=_;if(f&(e|0)<=(q|0)|(e|0)<(q|0)){break e}j=1;e=0;f=n;n=li(ki(l,q,x,H),_,r,s);f=f+n|0;i=_+N|0;i=f>>>0>>0?i+1|0:i;n=h-f|0;f=T-((f>>>0>h>>>0)+i|0)|0;n=ki(n,f,n,f);x=_;f=g;i=li(ki(l,q,A,I),_,r,s);h=i+z|0;g=_+O|0;g=h>>>0>>0?g+1|0:g;i=f-h|0;f=U-((f>>>0>>0)+g|0)|0;g=ki(i,f,i,f);h=g+n|0;f=_+x|0;f=h>>>0>>0?f+1|0:f;n=h;g=li(ki(l,q,C,J),_,r,s);h=g+B|0;i=_+P|0;i=h>>>0>>0?i+1|0:i;g=m-h|0;h=V-((h>>>0>m>>>0)+i|0)|0;m=ki(g,h,g,h);h=m+n|0;g=_+f|0;f=ki(h,h>>>0>>0?g+1|0:g,r,s);h=_;m=h;if(!h&f>>>0<=1){break h}i=f;while(1){g=e<<1|j>>>31;j=j<<1;e=g;n=!h&i>>>0>7|(h|0)!=0;i=(h&3)<<30|i>>>2;h=h>>>2|0;if(n){continue}break}break g}if((d|0)>(f|0)){e=f<<1}else{if((d|0)<=0){F[o+8>>2]=0;F[o+12>>2]=0;break j}e=(d<<1)-2|0}e=(e<<2)+c|0;F[o+8>>2]=F[e>>2];F[o+12>>2]=F[e+4>>2]}p=1;break e}ta();v()}e=m;j=f;if(f-1|0){break f}}while(1){h=mi(f,m,j,e);i=e+_|0;e=h+j|0;i=e>>>0>>0?i+1|0:i;j=(i&1)<<31|e>>>1;e=i>>>1|0;h=ki(j,e,j,e);g=_;if((m|0)==(g|0)&f>>>0>>0|g>>>0>m>>>0){continue}break}}f=F[o+20>>2];if(!f){break e}g=f-1|0;i=F[F[o+16>>2]+(g>>>3&536870908)>>2];F[o+20>>2]=g;p=1;f=ki(l,q,y,w);h=_;n=ki(r,s,K,S);m=n+f|0;f=_+h|0;f=m>>>0>>0?f+1|0:f;h=ki(j,e,E,W);g=i>>>g&1;i=g?0-h|0:h;m=i+m|0;n=f;f=_;h=n+(g?0-(f+((h|0)!=0)|0)|0:f)|0;$=o,aa=li(m,i>>>0>m>>>0?h+1|0:h,r,s),F[$+12>>2]=aa;f=ki(l,q,E,W);h=_;l=ki(r,s,Q,R);f=l+f|0;i=_+h|0;e=ki(j,e,y,w);h=0-e|0;j=_;i=(f>>>0>>0?i+1|0:i)+(g?j:0-(((e|0)!=0)+j|0)|0)|0;h=g?e:h;f=h+f|0;$=o,aa=li(f,f>>>0>>0?i+1|0:i,r,s),F[$+8>>2]=aa}Z=k+80|0;if(!p){return 0}l:{if(F[a+8>>2]<=0){break l}g=F[M>>2];e=0;while(1){f=e<<2;h=F[f+Y>>2];j=F[a+16>>2];m:{if((h|0)>(j|0)){F[f+g>>2]=j;break m}f=f+g|0;j=F[a+12>>2];if((j|0)>(h|0)){F[f>>2]=j;break m}F[f>>2]=h}e=e+1|0;h=F[a+8>>2];if((e|0)<(h|0)){continue}break}f=0;if((h|0)<=0){break l}e=d<<3;j=e+c|0;l=b+e|0;while(1){h=f<<2;e=h+j|0;h=F[h+l>>2]+F[h+g>>2]|0;F[e>>2]=h;n:{if((h|0)>F[a+16>>2]){i=h-F[a+20>>2]|0}else{if((h|0)>=F[a+12>>2]){break n}i=h+F[a+20>>2]|0}F[e>>2]=i}f=f+1|0;if((f|0)>2]){continue}break}}d=d+1|0;if((X|0)!=(d|0)){continue}break}}return p|0}ta();v()}function Gd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;n=Z-96|0;Z=n;m=F[a+4>>2];d=F[m+32>>2];j=F[d+8>>2];i=F[d+12>>2];e=i;c=F[d+20>>2];f=F[d+16>>2];a:{if((e|0)<=(c|0)&f>>>0>=j>>>0|(c|0)>(e|0)){break a}o=F[d>>2];h=G[o+f|0];g=f+1|0;e=g?c:c+1|0;F[d+16>>2]=g;F[d+20>>2]=e;if((e|0)>=(i|0)&g>>>0>=j>>>0|(e|0)>(i|0)){break a}p=G[g+o|0];g=f+2|0;e=g>>>0<2?c+1|0:c;F[d+16>>2]=g;F[d+20>>2]=e;l=h<<24>>24;b:{if((l|0)>=0){k=F[a+216>>2];if(h>>>0>=(F[a+220>>2]-k|0)/144>>>0){break a}k=k+L(h,144)|0;if(F[k>>2]<0){break b}break a}if(F[a+212>>2]>=0){break a}k=a+212|0}F[k>>2]=b;c:{d:{e:{f:{g:{h:{k=H[m+36>>1];i:{if(((k<<8|k>>>8)&65535)>>>0>=258){if((e|0)>=(i|0)&g>>>0>=j>>>0|(e|0)>(i|0)){break a}e=G[g+o|0];f=f+3|0;c=f>>>0<3?c+1|0:c;F[d+16>>2]=f;F[d+20>>2]=c;if(e>>>0>1){break a}d=e>>>0<2?e:0;if(!p){break i}if(!d){break h}break a}if(p){break g}d=0}if((l|0)<0){e=a+184|0}else{c=F[a+216>>2]+L(h,144)|0;D[c+100|0]=0;e=c+104|0}if((d|0)!=1){break e}c=Z-112|0;Z=c;g=F[F[a+4>>2]+44>>2];d=ka(120);F[d>>2]=8924;F[d+4>>2]=0;F[d+116>>2]=0;F[d+112>>2]=e;F[d+108>>2]=g;F[d+12>>2]=0;F[d+16>>2]=0;F[d+20>>2]=0;F[d+24>>2]=0;F[d+28>>2]=0;F[d+32>>2]=0;F[d+36>>2]=0;F[d+40>>2]=0;F[d+44>>2]=0;F[d+48>>2]=0;F[d+52>>2]=0;F[d+56>>2]=0;F[d+60>>2]=0;F[d+8>>2]=9136;f=d- -64|0;F[f>>2]=0;F[f+4>>2]=0;F[d+72>>2]=0;F[d+76>>2]=0;F[d+80>>2]=0;F[d+84>>2]=0;F[d+88>>2]=0;F[d+104>>2]=0;F[d+96>>2]=0;F[d+100>>2]=0;f=F[a+8>>2];F[c+48>>2]=0;F[c+52>>2]=0;F[c+40>>2]=0;F[c+44>>2]=0;j=c+32|0;F[j>>2]=0;F[j+4>>2]=0;F[c+24>>2]=0;F[c+28>>2]=0;h=c- -64|0;F[h>>2]=0;F[h+4>>2]=0;F[c+72>>2]=0;F[c+76>>2]=0;F[c+80>>2]=0;F[c+84>>2]=0;F[c+88>>2]=0;F[c+104>>2]=0;F[c+16>>2]=0;F[c+20>>2]=0;F[c+56>>2]=0;F[c+60>>2]=0;F[c+8>>2]=9136;F[c+96>>2]=0;F[c+100>>2]=0;F[c+12>>2]=f;h=F[f>>2];i=F[f+4>>2];D[c+111|0]=0;k=j;j=c+111|0;Ea(k,(i-h>>2>>>0)/3|0,j);h=F[c+12>>2];i=F[h+28>>2];h=F[h+24>>2];D[c+111|0]=0;Ea(c+44|0,i-h>>2,j);F[c+28>>2]=d;F[c+24>>2]=g;F[c+20>>2]=e;F[c+16>>2]=f;f=d+8|0;e=c+8|0;lc(f,e);j:{if((e|0)==(f|0)){F[d+92>>2]=F[e+84>>2];break j}gb(d+56|0,F[e+48>>2],F[e+52>>2]);gb(d+68|0,F[e+60>>2],F[e- -64>>2]);gb(d+80|0,F[e+72>>2],F[e+76>>2]);F[d+92>>2]=F[e+84>>2];k:{h=F[e+92>>2];j=F[e+88>>2];i=h-j|0;e=i>>2;f=F[d+104>>2];g=F[d+96>>2];if(e>>>0<=f-g>>2>>>0){i=F[d+100>>2]-g|0;f=i+j|0;m=i>>2;i=e>>>0>m>>>0?f:h;l=i-j|0;if((i|0)!=(j|0)){pa(g,j,l)}if(e>>>0>m>>>0){e=F[d+100>>2];if((h|0)!=(i|0)){while(1){F[e>>2]=F[f>>2];e=e+4|0;f=f+4|0;if((h|0)!=(f|0)){continue}break}}F[d+100>>2]=e;break k}F[d+100>>2]=g+l;break k}if(g){F[d+100>>2]=g;ja(g);F[d+104>>2]=0;F[d+96>>2]=0;F[d+100>>2]=0;f=0}l:{if((i|0)<0){break l}g=f>>>1|0;e=f>>>0>=2147483644?1073741823:e>>>0>>0?g:e;if(e>>>0>=1073741824){break l}f=e<<2;e=ka(f);F[d+96>>2]=e;F[d+104>>2]=e+f;if((h|0)!=(j|0)){f=e;e=(i-4&-4)+4|0;e=la(f,j,e)+e|0}F[d+100>>2]=e;break k}na();v()}}F[c+8>>2]=9136;e=F[c+96>>2];if(e){F[c+100>>2]=e;ja(e)}e=F[c+80>>2];if(e){F[c+84>>2]=e;ja(e)}e=F[c+68>>2];if(e){F[c+72>>2]=e;ja(e)}e=F[c+56>>2];if(e){F[c+60>>2]=e;ja(e)}F[c+8>>2]=9372;e=F[c+44>>2];if(e){ja(e)}e=F[c+32>>2];if(e){ja(e)}Z=c+112|0;break d}if((l|0)>=0){break f}break a}if((l|0)<0){break a}}e=F[a+216>>2];c=F[m+44>>2];d=ka(80);F[d>>2]=9684;F[d+4>>2]=0;F[d+76>>2]=0;F[d+68>>2]=c;F[d+8>>2]=8624;F[d+12>>2]=0;F[d+16>>2]=0;F[d+20>>2]=0;F[d+24>>2]=0;F[d+28>>2]=0;F[d+32>>2]=0;F[d+36>>2]=0;F[d+40>>2]=0;F[d+44>>2]=0;F[d+48>>2]=0;F[d+52>>2]=0;e=e+L(h,144)|0;f=e+104|0;F[d+72>>2]=f;F[d- -64>>2]=0;F[d+56>>2]=0;F[d+60>>2]=0;F[n+24>>2]=c;c=n;F[c+68>>2]=0;F[c+72>>2]=0;F[c+60>>2]=0;F[c+64>>2]=0;F[c+52>>2]=0;F[c+56>>2]=0;F[c+44>>2]=0;F[c+48>>2]=0;F[c+84>>2]=0;F[c+88>>2]=0;F[c+76>>2]=0;F[c+80>>2]=0;F[c+28>>2]=d;g=F[c+28>>2];F[c+8>>2]=F[c+24>>2];F[c+12>>2]=g;F[c+20>>2]=f;f=e+4|0;F[c+16>>2]=f;F[c+36>>2]=0;F[c+40>>2]=0;F[c+32>>2]=8624;e=F[c+20>>2];F[c>>2]=F[c+16>>2];F[c+4>>2]=e;e=c+32|0;Fd(e,f,c);c=d+8|0;lc(c,e);if((c|0)!=(e|0)){gb(d+56|0,F[e+48>>2],F[e+52>>2])}Ed(e);break c}c=Z+-64|0;Z=c;g=F[F[a+4>>2]+44>>2];d=ka(80);F[d>>2]=9392;F[d+4>>2]=0;F[d+76>>2]=0;F[d+72>>2]=e;F[d+68>>2]=g;F[d+8>>2]=9556;F[d+12>>2]=0;F[d+16>>2]=0;F[d+20>>2]=0;F[d+24>>2]=0;F[d+28>>2]=0;F[d+32>>2]=0;F[d+36>>2]=0;F[d+40>>2]=0;F[d+44>>2]=0;F[d+48>>2]=0;F[d+52>>2]=0;F[d- -64>>2]=0;j=d+56|0;f=j;F[f>>2]=0;F[f+4>>2]=0;f=F[a+8>>2];F[c+40>>2]=0;F[c+44>>2]=0;F[c+32>>2]=0;F[c+36>>2]=0;h=c+24|0;F[h>>2]=0;F[h+4>>2]=0;F[c+16>>2]=0;F[c+20>>2]=0;F[c+56>>2]=0;F[c+8>>2]=0;F[c+12>>2]=0;F[c+48>>2]=0;F[c+52>>2]=0;F[c>>2]=9556;F[c+4>>2]=f;i=F[f>>2];l=F[f+4>>2];D[c+63|0]=0;k=h;h=c+63|0;Ea(k,(l-i>>2>>>0)/3|0,h);i=F[c+4>>2];l=F[i+28>>2];i=F[i+24>>2];D[c+63|0]=0;Ea(c+36|0,l-i>>2,h);F[c+20>>2]=d;F[c+16>>2]=g;F[c+12>>2]=e;F[c+8>>2]=f;lc(d+8|0,c);gb(j,F[c+48>>2],F[c+52>>2]);F[c>>2]=9556;e=F[c+48>>2];if(e){F[c+52>>2]=e;ja(e)}F[c>>2]=9372;e=F[c+36>>2];if(e){ja(e)}e=F[c+24>>2];if(e){ja(e)}Z=c- -64|0}if(!d){break a}}d=yc(ka(64),d);c=F[a+4>>2];a=d;d=b;m:{n:{if((d|0)>=0){g=c+8|0;b=F[c+12>>2];j=F[c+8>>2];e=b-j>>2;o:{if((e|0)>(d|0)){break o}f=d+1|0;if(d>>>0>=e>>>0){Pb(g,f-e|0);break o}if(e>>>0<=f>>>0){break o}f=j+(f<<2)|0;if((f|0)!=(b|0)){while(1){b=b-4|0;e=F[b>>2];F[b>>2]=0;if(e){$[F[F[e>>2]+4>>2]](e)}if((b|0)!=(f|0)){continue}break}}F[c+12>>2]=f}c=F[g>>2]+(d<<2)|0;b=F[c>>2];F[c>>2]=a;if(b){break n}break m}b=a;if(!a){break m}}$[F[F[b>>2]+4>>2]](b)}q=(d^-1)>>>31|0}Z=n+96|0;return q|0}function Ab(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=M(0),n=M(0),o=0;a:{b:{if(!d){break b}c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}E[(g<<1)+d>>1]=D[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}E[(g<<1)+d>>1]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}E[(g<<1)+d>>1]=H[b>>1];b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){return 0}e=E[b>>1];if((e|0)<0){break b}E[(g<<1)+d>>1]=e;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}e=F[b>>2];if(e+32768>>>0>65535){break b}E[(g<<1)+d>>1]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}e=F[b>>2];if(e>>>0>32767){break b}E[(g<<1)+d>>1]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;k=F[e+4>>2];while(1){if(b>>>0>=k>>>0){break b}h=F[b+4>>2];e=F[b>>2];i=e+32768|0;h=i>>>0<32768?h+1|0:h;if(!h&i>>>0>65535|h){break b}E[(g<<1)+d>>1]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}k=F[b+4>>2];e=F[b>>2];if(!k&e>>>0>32767|k){break b}E[(g<<1)+d>>1]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 8:d:{e:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break e}e=F[a>>2];j=F[e>>2];g=j;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-j|0;if(!G[a+32|0]){j=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(32767)|m>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}j=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(32767)|mM(1)){break d}e=(b<<1)+d|0;l=R(+m*32767+.5);f:{if(N(l)<2147483648){i=~~l;break f}i=-2147483648}E[e>>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}j=1;if(c>>>0<=e>>>0){break d}ma((e<<1)+d|0,0,c-e<<1)}return j;case 9:g:{h:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break h}e=F[a>>2];j=F[e>>2];g=j;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-j|0;if(!G[a+32|0]){j=0;if((b|0)>=(e|0)){break g}b=0;while(1){l=K[g>>3];if(l>=32767|l<-32768|l!=l){break g}o=N(l);if(o==Infinity){break g}e=(b<<1)+d|0;if(o<2147483648){i=~~l}else{i=-2147483648}E[e>>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}j=0;if((b|0)>=(e|0)){break g}b=0;while(1){l=K[g>>3];if(l>=32767|l<-32768|(N(l)==Infinity|l!=l)){break g}if(l<0|l>1){break g}e=(b<<1)+d|0;l=R(l*32767+.5);i:{if(N(l)<2147483648){i=~~l;break i}i=-2147483648}E[e>>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}j=1;if(c>>>0<=e>>>0){break g}ma((e<<1)+d|0,0,c-e<<1)}return j;case 10:break c;default:break b}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}E[(g<<1)+d>>1]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}ma((e<<1)+d|0,0,(c&255)-e<<1)}return j}ma((e<<1)+d|0,0,(c&255)-e<<1);return 1}function yb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=M(0),n=M(0),o=0;a:{b:{if(!d){break b}c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=D[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=E[b>>1];b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=H[b>>1];b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=F[b>>2];b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){return 0}e=F[b>>2];if((e|0)<0){break b}F[(g<<2)+d>>2]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;k=F[e+4>>2];while(1){if(b>>>0>=k>>>0){break b}h=F[b+4>>2];e=F[b>>2];if(e- -2147483648>>>0<2147483648?h+1|0:h){break b}F[(g<<2)+d>>2]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}k=F[b+4>>2];e=F[b>>2];if(!k&e>>>0>2147483647|k){break b}F[(g<<2)+d>>2]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}break a;case 8:d:{e:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break e}e=F[a>>2];j=F[e>>2];g=j;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-j|0;if(!G[a+32|0]){j=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(2147483648)|m>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}j=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(2147483648)|mM(1)){break d}e=(b<<2)+d|0;l=R(+m*2147483647+.5);f:{if(N(l)<2147483648){i=~~l;break f}i=-2147483648}F[e>>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}j=1;if(c>>>0<=e>>>0){break d}ma((e<<2)+d|0,0,c-e<<2)}return j;case 9:g:{h:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break h}e=F[a>>2];j=F[e>>2];g=j;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-j|0;if(!G[a+32|0]){j=0;if((b|0)>=(e|0)){break g}b=0;while(1){l=K[g>>3];if(l>=2147483647|l<-2147483648|l!=l){break g}o=N(l);if(o==Infinity){break g}e=(b<<2)+d|0;if(o<2147483648){i=~~l}else{i=-2147483648}F[e>>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}j=0;if((b|0)>=(e|0)){break g}b=0;while(1){l=K[g>>3];if(l>=2147483647|l<-2147483648|(N(l)==Infinity|l!=l)){break g}if(l<0|l>1){break g}e=(b<<2)+d|0;l=R(l*2147483647+.5);i:{if(N(l)<2147483648){i=~~l;break i}i=-2147483648}F[e>>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}j=1;if(c>>>0<=e>>>0){break g}ma((e<<2)+d|0,0,c-e<<2)}return j;case 10:break c;default:break b}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}j=1;if(e>>>0>=f>>>0){break b}ma((e<<2)+d|0,0,(c&255)-e<<2)}return j}ma((e<<2)+d|0,0,(c&255)-e<<2);return 1}function zb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=M(0);a:{b:{if(!d){break b}c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){return 0}e=D[b|0];if((e|0)<0){break b}E[(g<<1)+d>>1]=e&255;b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}E[(g<<1)+d>>1]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){return 0}e=E[b>>1];if((e|0)<0){break b}E[(g<<1)+d>>1]=e;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}E[(g<<1)+d>>1]=H[b>>1];b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}e=F[b>>2];if(e>>>0>65535){break b}E[(g<<1)+d>>1]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}e=F[b>>2];if(e>>>0>65535){break b}E[(g<<1)+d>>1]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}k=F[b+4>>2];e=F[b>>2];if(!k&e>>>0>65535|k){break b}E[(g<<1)+d>>1]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}k=F[b+4>>2];e=F[b>>2];if(!k&e>>>0>65535|k){break b}E[(g<<1)+d>>1]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}break a;case 8:d:{e:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break e}e=F[a>>2];l=F[e>>2];g=l;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-l|0;if(!G[a+32|0]){l=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(65535)|m=M(0)){i=~~m>>>0}else{i=0}E[e>>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}l=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(65535)|mM(1)){break d}e=(b<<1)+d|0;j=R(+m*65535+.5);f:{if(j<4294967296&j>=0){i=~~j>>>0;break f}i=0}E[e>>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}l=1;if(c>>>0<=e>>>0){break d}ma((e<<1)+d|0,0,c-e<<1)}return l;case 9:g:{h:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break h}e=F[a>>2];l=F[e>>2];g=l;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-l|0;if(!G[a+32|0]){l=0;if((b|0)>=(e|0)){break g}b=0;while(1){j=K[g>>3];if(j>=65535|j<0|(N(j)==Infinity|j!=j)){break g}e=(b<<1)+d|0;if(j<4294967296&j>=0){i=~~j>>>0}else{i=0}E[e>>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}l=0;if((b|0)>=(e|0)){break g}b=0;while(1){j=K[g>>3];if(j>=65535|j<0|(N(j)==Infinity|j!=j)){break g}if(j>1){break g}e=(b<<1)+d|0;j=R(j*65535+.5);i:{if(j<4294967296&j>=0){i=~~j>>>0;break i}i=0}E[e>>1]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}l=1;if(c>>>0<=e>>>0){break g}ma((e<<1)+d|0,0,c-e<<1)}return l;case 10:break c;default:break b}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];k=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+k|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}E[(g<<1)+d>>1]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break b}ma((e<<1)+d|0,0,(c&255)-e<<1)}return l}ma((e<<1)+d|0,0,(c&255)-e<<1);return 1}function Ga(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=M(0),l=0,m=0,n=M(0),o=0;a:{if(!d){break a}b:{c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=(g<<3)+d|0;i=D[b|0];F[e>>2]=i;F[e+4>>2]=i>>31;b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=(g<<3)+d|0;F[e>>2]=G[b|0];F[e+4>>2]=0;b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=(g<<3)+d|0;i=E[b>>1];F[e>>2]=i;F[e+4>>2]=i>>31;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=(g<<3)+d|0;F[e>>2]=H[b>>1];F[e+4>>2]=0;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=(g<<3)+d|0;i=F[b>>2];F[e>>2]=i;F[e+4>>2]=i>>31;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=(g<<3)+d|0;F[e>>2]=F[b>>2];F[e+4>>2]=0;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}i=F[b+4>>2];e=(g<<3)+d|0;F[e>>2]=F[b>>2];F[e+4>>2]=i;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=F[b>>2];i=F[b+4>>2];if((i|0)<0){break a}j=(g<<3)+d|0;F[j>>2]=e;F[j+4>>2]=i;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 8:d:{e=G[a+24|0];f=c&255;if(!(e>>>0>>0?e:f)){break d}if(G[a+32|0]){break a}e=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+e|0;e=F[a>>2];i=F[e+4>>2];e=F[e>>2];if((b|0)>=(i-e|0)){break a}g=b+e|0;h=c&255;b=0;while(1){k=J[g>>2];if(k>=M(0x8000000000000000)|k=M(1)?~~(k>M(0)?M(P(M(R(M(k*M(2.3283064365386963e-10)))),M(4294967296))):M(S(M(M(k-M(~~k>>>0>>>0))*M(2.3283064365386963e-10)))))>>>0:0;m=~~k>>>0;break e}j=-2147483648;m=0}F[e>>2]=m;F[e+4>>2]=j;b=b+1|0;e=G[a+24|0];if(b>>>0>=(e>>>0>>0?e:h)>>>0){break d}g=g+4|0;if(i>>>0>g>>>0){continue}break}break a}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 9:f:{e=G[a+24|0];f=c&255;if(!(e>>>0>>0?e:f)){break f}if(G[a+32|0]){break a}e=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+e|0;e=F[a>>2];i=F[e+4>>2];e=F[e>>2];if((b|0)>=(i-e|0)){break a}g=b+e|0;h=c&255;b=0;while(1){l=K[g>>3];if(l>=0x8000000000000000|l<-0x8000000000000000|l!=l){break a}o=N(l);if(o==Infinity){break a}e=(b<<3)+d|0;g:{if(o<0x8000000000000000){j=N(l)>=1?~~(l>0?P(R(l*2.3283064365386963e-10),4294967295):S((l-+(~~l>>>0>>>0))*2.3283064365386963e-10))>>>0:0;m=~~l>>>0;break g}j=-2147483648;m=0}F[e>>2]=m;F[e+4>>2]=j;b=b+1|0;e=G[a+24|0];if(b>>>0>=(e>>>0>>0?e:h)>>>0){break f}g=g+8|0;if(i>>>0>g>>>0){continue}break}break a}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0;break b;case 10:break c;default:break a}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);j=b;b=b+i|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break a}e=(g<<3)+d|0;F[e>>2]=G[b|0];F[e+4>>2]=0;b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}if(e>>>0>=f>>>0){break a}d=(e<<3)+d|0;a=(c&255)-e|0}ma(d,0,a<<3)}}function le(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;j=a;a:{b:{c:{d:{e:{f:{g:{h:{a=F[a+8>>2];switch(F[a+28>>2]-1|0){case 4:break c;case 5:break d;case 2:break e;case 3:break f;case 0:break g;case 1:break h;default:break a}}f=G[a+24|0];c=ka(f);a=F[j+16>>2];if(F[a+80>>2]){g=F[F[a>>2]>>2]+F[a+48>>2]|0}else{g=0}if(!b){break b}if(f){o=f&252;l=f&3;h=f>>>0<4;while(1){a=0;e=0;if(!h){while(1){k=g+(d<<2)|0;D[a+c|0]=F[k>>2];D[(a|1)+c|0]=F[k+4>>2];D[(a|2)+c|0]=F[k+8>>2];D[(a|3)+c|0]=F[k+12>>2];a=a+4|0;d=d+4|0;e=e+4|0;if((o|0)!=(e|0)){continue}break}}e=0;if(l){while(1){D[a+c|0]=F[g+(d<<2)>>2];a=a+1|0;d=d+1|0;e=e+1|0;if((l|0)!=(e|0)){continue}break}}la(F[F[F[j+8>>2]+64>>2]>>2]+m|0,c,f);m=f+m|0;n=n+1|0;if((n|0)!=(b|0)){continue}break}break b}a=0;if((b|0)!=1){g=b&-2;while(1){la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,f);a=a+f|0;la(a+F[F[F[j+8>>2]+64>>2]>>2]|0,c,f);a=a+f|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}}if(!(b&1)){break b}la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,f);break b}f=G[a+24|0];c=ka(f);a=F[j+16>>2];if(F[a+80>>2]){g=F[F[a>>2]>>2]+F[a+48>>2]|0}else{g=0}if(!b){break b}if(f){o=f&252;l=f&3;h=f>>>0<4;while(1){a=0;e=0;if(!h){while(1){k=g+(d<<2)|0;D[a+c|0]=F[k>>2];D[(a|1)+c|0]=F[k+4>>2];D[(a|2)+c|0]=F[k+8>>2];D[(a|3)+c|0]=F[k+12>>2];a=a+4|0;d=d+4|0;e=e+4|0;if((o|0)!=(e|0)){continue}break}}e=0;if(l){while(1){D[a+c|0]=F[g+(d<<2)>>2];a=a+1|0;d=d+1|0;e=e+1|0;if((l|0)!=(e|0)){continue}break}}la(F[F[F[j+8>>2]+64>>2]>>2]+m|0,c,f);m=f+m|0;n=n+1|0;if((n|0)!=(b|0)){continue}break}break b}a=0;if((b|0)!=1){g=b&-2;while(1){la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,f);a=a+f|0;la(a+F[F[F[j+8>>2]+64>>2]>>2]|0,c,f);a=a+f|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}}if(!(b&1)){break b}la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,f);break b}h=G[a+24|0];i=h<<1;c=ka(i);a=F[j+16>>2];if(F[a+80>>2]){g=F[F[a>>2]>>2]+F[a+48>>2]|0}else{g=0}if(!b){break b}if(h){o=h&252;l=h&3;h=h>>>0<4;while(1){a=0;e=0;if(!h){while(1){f=a<<1;k=g+(d<<2)|0;E[f+c>>1]=F[k>>2];E[(f|2)+c>>1]=F[k+4>>2];E[(f|4)+c>>1]=F[k+8>>2];E[(f|6)+c>>1]=F[k+12>>2];a=a+4|0;d=d+4|0;e=e+4|0;if((o|0)!=(e|0)){continue}break}}e=0;if(l){while(1){E[(a<<1)+c>>1]=F[g+(d<<2)>>2];a=a+1|0;d=d+1|0;e=e+1|0;if((l|0)!=(e|0)){continue}break}}la(F[F[F[j+8>>2]+64>>2]>>2]+n|0,c,i);n=i+n|0;m=m+1|0;if((m|0)!=(b|0)){continue}break}break b}a=0;if((b|0)!=1){g=b&-2;while(1){la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i);a=a+i|0;la(a+F[F[F[j+8>>2]+64>>2]>>2]|0,c,i);a=a+i|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}}if(!(b&1)){break b}la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i);break b}h=G[a+24|0];i=h<<1;c=ka(i);a=F[j+16>>2];if(F[a+80>>2]){g=F[F[a>>2]>>2]+F[a+48>>2]|0}else{g=0}if(!b){break b}if(h){o=h&252;l=h&3;h=h>>>0<4;while(1){a=0;e=0;if(!h){while(1){f=a<<1;k=g+(d<<2)|0;E[f+c>>1]=F[k>>2];E[(f|2)+c>>1]=F[k+4>>2];E[(f|4)+c>>1]=F[k+8>>2];E[(f|6)+c>>1]=F[k+12>>2];a=a+4|0;d=d+4|0;e=e+4|0;if((o|0)!=(e|0)){continue}break}}e=0;if(l){while(1){E[(a<<1)+c>>1]=F[g+(d<<2)>>2];a=a+1|0;d=d+1|0;e=e+1|0;if((l|0)!=(e|0)){continue}break}}la(F[F[F[j+8>>2]+64>>2]>>2]+n|0,c,i);n=i+n|0;m=m+1|0;if((m|0)!=(b|0)){continue}break}break b}a=0;if((b|0)!=1){g=b&-2;while(1){la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i);a=a+i|0;la(a+F[F[F[j+8>>2]+64>>2]>>2]|0,c,i);a=a+i|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}}if(!(b&1)){break b}la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i);break b}h=G[a+24|0];i=h<<2;c=ka(i);a=F[j+16>>2];if(F[a+80>>2]){g=F[F[a>>2]>>2]+F[a+48>>2]|0}else{g=0}if(!b){break b}if(h){o=h&252;l=h&3;h=h>>>0<4;while(1){a=0;e=0;if(!h){while(1){f=a<<2;k=g+(d<<2)|0;F[f+c>>2]=F[k>>2];F[(f|4)+c>>2]=F[k+4>>2];F[(f|8)+c>>2]=F[k+8>>2];F[(f|12)+c>>2]=F[k+12>>2];a=a+4|0;d=d+4|0;e=e+4|0;if((o|0)!=(e|0)){continue}break}}e=0;if(l){while(1){F[(a<<2)+c>>2]=F[g+(d<<2)>>2];a=a+1|0;d=d+1|0;e=e+1|0;if((l|0)!=(e|0)){continue}break}}la(F[F[F[j+8>>2]+64>>2]>>2]+n|0,c,i);n=i+n|0;m=m+1|0;if((m|0)!=(b|0)){continue}break}break b}a=0;if((b|0)!=1){g=b&-2;while(1){la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i);a=a+i|0;la(a+F[F[F[j+8>>2]+64>>2]>>2]|0,c,i);a=a+i|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}}if(!(b&1)){break b}la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i);break b}h=G[a+24|0];i=h<<2;c=ka(i);a=F[j+16>>2];if(F[a+80>>2]){g=F[F[a>>2]>>2]+F[a+48>>2]|0}else{g=0}if(!b){break b}if(h){o=h&252;l=h&3;h=h>>>0<4;while(1){a=0;e=0;if(!h){while(1){f=a<<2;k=g+(d<<2)|0;F[f+c>>2]=F[k>>2];F[(f|4)+c>>2]=F[k+4>>2];F[(f|8)+c>>2]=F[k+8>>2];F[(f|12)+c>>2]=F[k+12>>2];a=a+4|0;d=d+4|0;e=e+4|0;if((o|0)!=(e|0)){continue}break}}e=0;if(l){while(1){F[(a<<2)+c>>2]=F[g+(d<<2)>>2];a=a+1|0;d=d+1|0;e=e+1|0;if((l|0)!=(e|0)){continue}break}}la(F[F[F[j+8>>2]+64>>2]>>2]+n|0,c,i);n=i+n|0;m=m+1|0;if((m|0)!=(b|0)){continue}break}break b}a=0;if((b|0)!=1){g=b&-2;while(1){la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i);a=a+i|0;la(a+F[F[F[j+8>>2]+64>>2]>>2]|0,c,i);a=a+i|0;d=d+2|0;if((g|0)!=(d|0)){continue}break}}if(!(b&1)){break b}la(F[F[F[j+8>>2]+64>>2]>>2]+a|0,c,i)}ja(c);c=1}return c|0}function xb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=M(0);a:{b:{if(!d){break b}c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=D[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=E[b>>1];b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=H[b>>1];b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=F[b>>2];b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=F[b>>2];b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}e=F[b>>2];if(F[b+4>>2]){break b}F[(g<<2)+d>>2]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}e=F[b>>2];if(F[b+4>>2]){break b}F[(g<<2)+d>>2]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 8:d:{e:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break e}e=F[a>>2];k=F[e>>2];g=k;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-k|0;if(!G[a+32|0]){k=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(4294967296)|m=M(0)){i=~~m>>>0}else{i=0}F[e>>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}k=0;if((b|0)>=(e|0)){break d}b=0;while(1){m=J[g>>2];if(m>=M(4294967296)|mM(1)){break d}e=(b<<2)+d|0;j=R(+m*4294967295+.5);f:{if(j<4294967296&j>=0){i=~~j>>>0;break f}i=0}F[e>>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break e}g=g+4|0;if(f>>>0>g>>>0){continue}break}break d}k=1;if(c>>>0<=e>>>0){break d}ma((e<<2)+d|0,0,c-e<<2)}return k;case 9:g:{h:{e=G[a+24|0];c=c&255;if(!(c>>>0>e>>>0?e:c)){break h}e=F[a>>2];k=F[e>>2];g=k;f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+f|0;g=b+g|0;f=F[e+4>>2];e=f-k|0;if(!G[a+32|0]){k=0;if((b|0)>=(e|0)){break g}b=0;while(1){j=K[g>>3];if(j>=4294967295|j<0|(N(j)==Infinity|j!=j)){break g}e=(b<<2)+d|0;if(j<4294967296&j>=0){i=~~j>>>0}else{i=0}F[e>>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}k=0;if((b|0)>=(e|0)){break g}b=0;while(1){j=K[g>>3];if(j>=4294967295|j<0|(N(j)==Infinity|j!=j)){break g}if(j>1){break g}e=(b<<2)+d|0;j=R(j*4294967295+.5);i:{if(j<4294967296&j>=0){i=~~j>>>0;break i}i=0}F[e>>2]=i;b=b+1|0;e=G[a+24|0];if(b>>>0>=(c>>>0>e>>>0?e:c)>>>0){break h}g=g+8|0;if(f>>>0>g>>>0){continue}break}break g}k=1;if(c>>>0<=e>>>0){break g}ma((e<<2)+d|0,0,c-e<<2)}return k;case 10:break c;default:break b}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];h=F[e>>2];l=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);i=b;b=b+l|0;b=b+h|0;h=F[e+4>>2];while(1){if(b>>>0>=h>>>0){break b}F[(g<<2)+d>>2]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}ma((e<<2)+d|0,0,(c&255)-e<<2)}return k}ma((e<<2)+d|0,0,(c&255)-e<<2);return 1}function rd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0;a:{b:{c:{d:{e:{if(F[a+92>>2]==F[a+88>>2]){break e}c=F[a+52>>2];f:{if((c|0)!=F[a+56>>2]){F[c>>2]=b;F[a+52>>2]=c+4;break f}h=F[a+48>>2];g=c-h|0;d=g>>2;f=d+1|0;if(f>>>0>=1073741824){break a}e=g>>>1|0;g=g>>>0>=2147483644?1073741823:f>>>0>>0?e:f;if(g){if(g>>>0>=1073741824){break d}e=ka(g<<2)}else{e=0}f=e+(d<<2)|0;F[f>>2]=b;d=f+4|0;if((c|0)!=(h|0)){while(1){f=f-4|0;c=c-4|0;F[f>>2]=F[c>>2];if((c|0)!=(h|0)){continue}break}}F[a+56>>2]=e+(g<<2);F[a+52>>2]=d;F[a+48>>2]=f;if(!h){break f}ja(h)}F[a+84>>2]=0;c=-1;e=-1;g:{if((b|0)==-1){break g}d=F[a+4>>2];e=b+1|0;e=(e>>>0)%3|0?e:b-2|0;if((e|0)!=-1){c=F[F[d>>2]+(e<<2)>>2]}h:{if((b>>>0)%3|0){l=b-1|0;break h}l=b+2|0;e=-1;if((l|0)==-1){break g}}e=F[F[d>>2]+(l<<2)>>2]}i=e>>>3&536870908;d=F[a+36>>2];h=d+(c>>>3&536870908)|0;g=F[h>>2];f=1<>2]=f|g;f=a+8|0;if((b|0)!=-1){d=b+1|0;d=(d>>>0)%3|0?d:b-2|0}else{d=-1}Ka(f,c,d);d=F[a+36>>2]}f=d+i|0;d=F[f>>2];c=1<>2]=c|d;d=a+8|0;c=-1;i:{if((b|0)==-1){break i}c=b-1|0;if((b>>>0)%3|0){break i}c=b+2|0}Ka(d,e,c)}c=-1;c=(b|0)!=-1?F[F[F[a+4>>2]>>2]+(b<<2)>>2]:c;f=F[a+36>>2]+(c>>>3&536870908)|0;d=F[f>>2];e=1<>2]=d|e;Ka(a+8|0,c,b)}d=F[a+84>>2];if((d|0)>2){break e}while(1){e=L(d,12)+a|0;b=F[e+52>>2];if((b|0)==F[e+48>>2]){d=d+1|0;if((d|0)!=3){continue}break e}b=b-4|0;c=F[b>>2];F[e+52>>2]=b;F[a+84>>2]=d;if((c|0)==-1){break e}f=F[a+24>>2];b=(c>>>0)/3|0;j:{if(F[f+(b>>>3&268435452)>>2]>>>b&1){break j}k:{while(1){k=(c>>>0)/3|0;b=(k>>>3&268435452)+f|0;F[b>>2]=F[b>>2]|1<>2]>>2]+(c<<2)>>2]:d;f=F[a+36>>2]+(d>>>3&536870908)|0;e=F[f>>2];b=1<>2]=b|e;i=F[(F[F[a+16>>2]+96>>2]+L(k,12)|0)+((c>>>0)%3<<2)>>2];l=F[F[a+20>>2]+4>>2];f=F[l+4>>2];t:{if((f|0)!=F[l+8>>2]){F[f>>2]=i;F[l+4>>2]=f+4;break t}j=F[l>>2];h=f-j|0;g=h>>2;e=g+1|0;if(e>>>0>=1073741824){break s}b=h>>>1|0;h=h>>>0>=2147483644?1073741823:b>>>0>e>>>0?b:e;if(h){if(h>>>0>=1073741824){break d}e=ka(h<<2)}else{e=0}b=e+(g<<2)|0;F[b>>2]=i;g=b+4|0;if((f|0)!=(j|0)){while(1){b=b-4|0;f=f-4|0;F[b>>2]=F[f>>2];if((f|0)!=(j|0)){continue}break}}F[l+8>>2]=e+(h<<2);F[l+4>>2]=g;F[l>>2]=b;if(!j){break t}ja(j)}j=F[a+12>>2];f=F[j+4>>2];u:{if((f|0)!=F[j+8>>2]){F[f>>2]=c;F[j+4>>2]=f+4;break u}i=F[j>>2];h=f-i|0;g=h>>2;e=g+1|0;if(e>>>0>=1073741824){break r}b=h>>>1|0;h=h>>>0>=2147483644?1073741823:b>>>0>e>>>0?b:e;if(h){if(h>>>0>=1073741824){break d}e=ka(h<<2)}else{e=0}b=e+(g<<2)|0;F[b>>2]=c;g=b+4|0;if((f|0)!=(i|0)){while(1){b=b-4|0;f=f-4|0;F[b>>2]=F[f>>2];if((f|0)!=(i|0)){continue}break}}F[j+8>>2]=e+(h<<2);F[j+4>>2]=g;F[j>>2]=b;if(!i){break u}ja(i)}b=F[a+12>>2];F[F[b+12>>2]+(d<<2)>>2]=F[b+24>>2];F[b+24>>2]=F[b+24>>2]+1}if((c|0)==-1){break k}g=F[a+4>>2];f=-1;b=c+1|0;b=(b>>>0)%3|0?b:c-2|0;if((b|0)!=-1){f=F[F[g+12>>2]+(b<<2)>>2]}v:{w:{if((L(k,3)|0)!=(c|0)){d=c-1|0;break w}d=c+2|0;c=-1;if((d|0)==-1){break v}}c=F[F[g+12>>2]+(d<<2)>>2]}d=(c|0)==-1;e=(c>>>0)/3|0;if((f|0)!=-1){b=(f>>>0)/3|0;b=F[F[a+24>>2]+(b>>>3&268435452)>>2]&1<>2]+(b>>>3&536870908)>>2]>>>b&1){break x}k=0;b=F[F[g>>2]+(c<<2)>>2];if(!(F[F[a+36>>2]+(b>>>3&536870908)>>2]>>>b&1)){b=F[a+88>>2]+(b<<2)|0;e=F[b>>2];F[b>>2]=e+1;k=(e|0)<=0?2:1}if(F[a+84>>2]>=(k|0)&l){break m}j=L(k,12)+a|0;b=F[j+52>>2];y:{if((b|0)!=F[j+56>>2]){F[b>>2]=c;F[j+52>>2]=b+4;break y}i=F[j+48>>2];h=b-i|0;d=h>>2;g=d+1|0;if(g>>>0>=1073741824){break c}e=h>>>1|0;g=h>>>0>=2147483644?1073741823:e>>>0>g>>>0?e:g;if(g){if(g>>>0>=1073741824){break d}e=ka(g<<2)}else{e=0}d=e+(d<<2)|0;F[d>>2]=c;c=d+4|0;if((b|0)!=(i|0)){while(1){d=d-4|0;b=b-4|0;F[d>>2]=F[b>>2];if((b|0)!=(i|0)){continue}break}}F[j+48>>2]=d;F[j+52>>2]=c;F[j+56>>2]=e+(g<<2);if(!i){break y}ja(i)}if(F[a+84>>2]<=(k|0)){break x}F[a+84>>2]=k}if(l){break k}c=-1;if((f|0)==-1){break n}}c=F[F[F[a+4>>2]>>2]+(f<<2)>>2]}b=0;if(!(F[F[a+36>>2]+(c>>>3&536870908)>>2]>>>c&1)){b=F[a+88>>2]+(c<<2)|0;c=F[b>>2];F[b>>2]=c+1;b=(c|0)<=0?2:1}if(F[a+84>>2]<(b|0)){break l}c=f}f=F[a+24>>2];continue}break}k=L(b,12)+a|0;c=F[k+52>>2];z:{if((c|0)!=F[k+56>>2]){F[c>>2]=f;F[k+52>>2]=c+4;break z}i=F[k+48>>2];h=c-i|0;d=h>>2;g=d+1|0;if(g>>>0>=1073741824){break b}e=h>>>1|0;g=h>>>0>=2147483644?1073741823:e>>>0>g>>>0?e:g;if(g){if(g>>>0>=1073741824){break d}e=ka(g<<2)}else{e=0}d=e+(d<<2)|0;F[d>>2]=f;f=d+4|0;if((c|0)!=(i|0)){while(1){d=d-4|0;c=c-4|0;F[d>>2]=F[c>>2];if((c|0)!=(i|0)){continue}break}}F[k+48>>2]=d;F[k+52>>2]=f;F[k+56>>2]=e+(g<<2);if(!i){break z}ja(i)}d=F[a+84>>2];if((d|0)<=(b|0)){break j}F[a+84>>2]=b;d=b;break j}d=F[a+84>>2]}if((d|0)<3){continue}break}}return 1}oa();v()}na();v()}na();v()}na();v()}function Mc(a){var b=0,c=0,d=0,e=0,f=0,g=0;e=Z-16|0;Z=e;F[e+12>>2]=a;a:{if(a>>>0<=211){d=F[Lc(10352,10544,e+12|0)>>2];break a}if(a>>>0>=4294967292){V();v()}f=(a>>>0)/210|0;d=L(f,210);F[e+8>>2]=a-d;g=Lc(10544,10736,e+8|0)-10544>>2;while(1){d=F[(g<<2)+10544>>2]+d|0;a=5;while(1){b:{if((a|0)==47){a=211;while(1){b=(d>>>0)/(a>>>0)|0;if(b>>>0>>0){break a}if((L(a,b)|0)==(d|0)){break b}b=a+10|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+12|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+16|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+18|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+22|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+28|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+30|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+36|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+40|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+42|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+46|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+52|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+58|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+60|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+66|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+70|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+72|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+78|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+82|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+88|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+96|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+100|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+102|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+106|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+108|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+112|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+120|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+126|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+130|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+136|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+138|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+142|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+148|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+150|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+156|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+162|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+166|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+168|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+172|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+178|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+180|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+186|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+190|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+192|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+196|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+198|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}if((L(b,c)|0)==(d|0)){break b}b=a+208|0;c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}a=a+210|0;if((L(b,c)|0)!=(d|0)){continue}break}break b}b=F[(a<<2)+10352>>2];c=(d>>>0)/(b>>>0)|0;if(b>>>0>c>>>0){break a}a=a+1|0;if((L(b,c)|0)!=(d|0)){continue}}break}d=g+1|0;a=(d|0)==48;g=a?0:d;f=a+f|0;d=L(f,210);continue}}Z=e+16|0;return d}function lb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=M(0),k=0,l=0;a:{if(!d){break a}b:{c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(D[b|0]);J[(h<<2)+d>>2]=i?M(j/M(127)):j;b=b+1|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(G[b|0]);J[(h<<2)+d>>2]=i?M(j/M(255)):j;b=b+1|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(E[b>>1]);J[(h<<2)+d>>2]=i?M(j/M(32767)):j;b=b+2|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(H[b>>1]);J[(h<<2)+d>>2]=i?M(j/M(65535)):j;b=b+2|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(F[b>>2]);J[(h<<2)+d>>2]=i?M(j*M(4.656612873077393e-10)):j;b=b+4|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(I[b>>2]);J[(h<<2)+d>>2]=i?M(j*M(2.3283064365386963e-10)):j;b=b+4|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(+I[b>>2]+ +F[b+4>>2]*4294967296);J[(h<<2)+d>>2]=i?M(j*M(10842021724855044e-35)):j;b=b+8|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];i=G[a+32|0];while(1){if(b>>>0>=g>>>0){break a}j=M(+I[b>>2]+ +I[b+4>>2]*4294967296);J[(h<<2)+d>>2]=i?M(j*M(5.421010862427522e-20)):j;b=b+8|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 8:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];while(1){if(b>>>0>=g>>>0){break a}J[(h<<2)+d>>2]=J[b>>2];b=b+4|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 9:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];while(1){if(b>>>0>=g>>>0){break a}J[(h<<2)+d>>2]=K[b>>3];b=b+8|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0;break b;case 10:break c;default:break a}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[a>>2];g=F[e>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);k=b;b=b+i|0;b=b+g|0;g=F[e+4>>2];while(1){if(b>>>0>=g>>>0){break a}J[(h<<2)+d>>2]=G[b|0]?M(1):M(0);b=b+1|0;h=h+1|0;e=G[a+24|0];if(h>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}l=1;if(e>>>0>=f>>>0){break a}d=(e<<2)+d|0;a=(c&255)-e|0}ma(d,0,a<<2)}return l}function Cb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=M(0),m=M(0);a:{b:{if(!d){break b}c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}D[d+g|0]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){return 0}e=D[b|0];if((e|0)<0){break b}D[d+g|0]=e;b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=H[b>>1];if((e+128&65535)>>>0>255){break b}D[d+g|0]=e;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=H[b>>1];if(e>>>0>127){break b}D[d+g|0]=e;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=F[b>>2];if(e+128>>>0>255){break b}D[d+g|0]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=F[b>>2];if(e>>>0>127){break b}D[d+g|0]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}i=F[b+4>>2];e=F[b>>2];h=e+128|0;i=h>>>0<128?i+1|0:i;if(!i&h>>>0>255|i){break b}D[d+g|0]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}i=F[b+4>>2];e=F[b>>2];if(!i&e>>>0>127|i){break b}D[d+g|0]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 8:e=G[a+24|0];c=c&255;d:{if(c>>>0>e>>>0?e:c){e=F[F[a>>2]>>2];f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+f|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break d}l=J[b>>2];if(l>=M(127)|lM(1)){break d}j=R(+l*127+.5);if(!(N(j)<2147483648)){break f}h=~~j;break e}if(!(m>>0<(c>>>0>e>>>0?e:c)>>>0){continue}break}}k=1;if(c>>>0<=e>>>0){break d}ma(d+e|0,0,c-e|0)}return k;case 9:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}j=K[b>>3];if(j>=127|j<-128|(N(j)==Infinity|j!=j)){break b}e=d+g|0;if(G[a+32|0]){if(j<0|j>1){break b}j=R(j*127+.5)}g:{if(N(j)<2147483648){h=~~j;break g}h=-2147483648}D[e|0]=h;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 10:break c;default:break b}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}D[d+g|0]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}ma(d+e|0,0,(c&255)-e|0)}return k}ma(d+e|0,0,(c&255)-e|0);return 1}function Bb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=M(0);a:{b:{if(!d){break b}c:{switch(F[a+28>>2]-1|0){case 0:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){return 0}e=D[b|0];if((e|0)<0){break b}D[d+g|0]=e;b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 1:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}D[d+g|0]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 2:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=H[b>>1];if(e>>>0>255){break b}D[d+g|0]=e;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 3:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=H[b>>1];if(e>>>0>255){break b}D[d+g|0]=e;b=b+2|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 4:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=F[b>>2];if(e>>>0>255){break b}D[d+g|0]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 5:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}e=F[b>>2];if(e>>>0>255){break b}D[d+g|0]=e;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 6:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}i=F[b+4>>2];e=F[b>>2];if(!i&e>>>0>255|i){break b}D[d+g|0]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 7:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}i=F[b+4>>2];e=F[b>>2];if(!i&e>>>0>255|i){break b}D[d+g|0]=e;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 8:e=G[a+24|0];c=c&255;d:{if(c>>>0>e>>>0?e:c){e=F[F[a>>2]>>2];f=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+f|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break d}l=J[b>>2];if(l>=M(255)|lM(1)){break d}j=R(+l*255+.5);if(!(j<4294967296&j>=0)){break f}h=~~j>>>0;break e}if(!(l=M(0))){break f}h=~~l>>>0;break e}h=0}D[e|0]=h;b=b+4|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(c>>>0>e>>>0?e:c)>>>0){continue}break}}k=1;if(c>>>0<=e>>>0){break d}ma(d+e|0,0,c-e|0)}return k;case 9:e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}j=K[b>>3];if(j>=255|j<0|(N(j)==Infinity|j!=j)){break b}e=d+g|0;if(G[a+32|0]){if(j>1){break b}j=R(j*255+.5)}g:{if(j<4294967296&j>=0){h=~~j>>>0;break g}h=0}D[e|0]=h;b=b+8|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}break a;case 10:break c;default:break b}}e=G[a+24|0];f=c&255;if(e>>>0>>0?e:f){e=F[F[a>>2]>>2];i=F[a+48>>2];b=ki(F[a+40>>2],F[a+44>>2],b,0);h=b;b=b+i|0;b=b+e|0;while(1){if(I[F[a>>2]+4>>2]<=b>>>0){break b}D[d+g|0]=G[b|0];b=b+1|0;g=g+1|0;e=G[a+24|0];if(g>>>0<(e>>>0>>0?e:f)>>>0){continue}break}}k=1;if(e>>>0>=f>>>0){break b}ma(d+e|0,0,(c&255)-e|0)}return k}ma(d+e|0,0,(c&255)-e|0);return 1}function jc(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0;e=Z-48|0;Z=e;f=H[5053]|H[5054]<<16;d=H[5051]|H[5052]<<16;E[e+38>>1]=d;E[e+40>>1]=d>>>16;E[e+42>>1]=f;E[e+44>>1]=f>>>16;d=F[2525];F[e+32>>2]=F[2524];F[e+36>>2]=d;d=F[2523];F[e+24>>2]=F[2522];F[e+28>>2]=d;d=F[2521];F[e+16>>2]=F[2520];F[e+20>>2]=d;g=F[b+8>>2];i=F[b+12>>2];h=F[b+20>>2];d=F[b+16>>2];f=d+5|0;h=f>>>0<5?h+1|0:h;a:{b:{if(g>>>0>>0&(h|0)>=(i|0)|(h|0)>(i|0)){d=ya(e+16|0);if(d>>>0>=2147483632){break a}c:{d:{if(d>>>0>=11){b=(d|15)+1|0;c=ka(b);F[e+8>>2]=b|-2147483648;F[e>>2]=c;F[e+4>>2]=d;b=c+d|0;break d}D[e+11|0]=d;b=d+e|0;c=e;if(!d){break c}}la(c,e+16|0,d)}D[b|0]=0;F[a>>2]=-2;b=a+4|0;if(D[e+11|0]>=0){a=F[e+4>>2];F[b>>2]=F[e>>2];F[b+4>>2]=a;F[b+8>>2]=F[e+8>>2];break b}ra(b,F[e>>2],F[e+4>>2]);if(D[e+11|0]>=0){break b}ja(F[e>>2]);break b}f=d+F[b>>2]|0;d=G[f|0]|G[f+1|0]<<8|(G[f+2|0]<<16|G[f+3|0]<<24);D[c|0]=d;D[c+1|0]=d>>>8;D[c+2|0]=d>>>16;D[c+3|0]=d>>>24;D[c+4|0]=G[f+4|0];d=F[b+20>>2];f=F[b+16>>2]+5|0;d=f>>>0<5?d+1|0:d;F[b+16>>2]=f;F[b+20>>2]=d;if(sa(c,1250,5)){d=ka(32);D[d+17|0]=0;D[d+16|0]=G[1494];c=G[1490]|G[1491]<<8|(G[1492]<<16|G[1493]<<24);b=G[1486]|G[1487]<<8|(G[1488]<<16|G[1489]<<24);D[d+8|0]=b;D[d+9|0]=b>>>8;D[d+10|0]=b>>>16;D[d+11|0]=b>>>24;D[d+12|0]=c;D[d+13|0]=c>>>8;D[d+14|0]=c>>>16;D[d+15|0]=c>>>24;c=G[1482]|G[1483]<<8|(G[1484]<<16|G[1485]<<24);b=G[1478]|G[1479]<<8|(G[1480]<<16|G[1481]<<24);D[d|0]=b;D[d+1|0]=b>>>8;D[d+2|0]=b>>>16;D[d+3|0]=b>>>24;D[d+4|0]=c;D[d+5|0]=c>>>8;D[d+6|0]=c>>>16;D[d+7|0]=c>>>24;F[a>>2]=-1;ra(a+4|0,d,17);ja(d);break b}g=F[b+12>>2];if((g|0)<=(d|0)&I[b+8>>2]<=f>>>0|(d|0)>(g|0)){d=ya(e+16|0);if(d>>>0>=2147483632){break a}e:{f:{if(d>>>0>=11){b=(d|15)+1|0;c=ka(b);F[e+8>>2]=b|-2147483648;F[e>>2]=c;F[e+4>>2]=d;b=c+d|0;break f}D[e+11|0]=d;b=d+e|0;c=e;if(!d){break e}}la(c,e+16|0,d)}D[b|0]=0;F[a>>2]=-2;b=a+4|0;if(D[e+11|0]>=0){a=F[e+4>>2];F[b>>2]=F[e>>2];F[b+4>>2]=a;F[b+8>>2]=F[e+8>>2];break b}ra(b,F[e>>2],F[e+4>>2]);if(D[e+11|0]>=0){break b}ja(F[e>>2]);break b}D[c+5|0]=G[f+F[b>>2]|0];g=F[b+20>>2];d=F[b+16>>2]+1|0;g=d?g:g+1|0;F[b+16>>2]=d;F[b+20>>2]=g;f=F[b+12>>2];if((f|0)<=(g|0)&I[b+8>>2]<=d>>>0|(g|0)>(f|0)){d=ya(e+16|0);if(d>>>0>=2147483632){break a}g:{h:{if(d>>>0>=11){b=(d|15)+1|0;c=ka(b);F[e+8>>2]=b|-2147483648;F[e>>2]=c;F[e+4>>2]=d;b=c+d|0;break h}D[e+11|0]=d;b=d+e|0;c=e;if(!d){break g}}la(c,e+16|0,d)}D[b|0]=0;F[a>>2]=-2;b=a+4|0;if(D[e+11|0]>=0){a=F[e+4>>2];F[b>>2]=F[e>>2];F[b+4>>2]=a;F[b+8>>2]=F[e+8>>2];break b}ra(b,F[e>>2],F[e+4>>2]);if(D[e+11|0]>=0){break b}ja(F[e>>2]);break b}D[c+6|0]=G[d+F[b>>2]|0];h=F[b+20>>2];d=F[b+16>>2]+1|0;h=d?h:h+1|0;F[b+16>>2]=d;F[b+20>>2]=h;f=F[b+12>>2];if((f|0)<=(h|0)&I[b+8>>2]<=d>>>0|(f|0)<(h|0)){d=ya(e+16|0);if(d>>>0>=2147483632){break a}i:{j:{if(d>>>0>=11){b=(d|15)+1|0;c=ka(b);F[e+8>>2]=b|-2147483648;F[e>>2]=c;F[e+4>>2]=d;b=c+d|0;break j}D[e+11|0]=d;b=d+e|0;c=e;if(!d){break i}}la(c,e+16|0,d)}D[b|0]=0;F[a>>2]=-2;b=a+4|0;if(D[e+11|0]>=0){a=F[e+4>>2];F[b>>2]=F[e>>2];F[b+4>>2]=a;F[b+8>>2]=F[e+8>>2];break b}ra(b,F[e>>2],F[e+4>>2]);if(D[e+11|0]>=0){break b}ja(F[e>>2]);break b}D[c+7|0]=G[d+F[b>>2]|0];g=F[b+20>>2];d=F[b+16>>2]+1|0;g=d?g:g+1|0;F[b+16>>2]=d;F[b+20>>2]=g;f=F[b+12>>2];if((f|0)<=(g|0)&I[b+8>>2]<=d>>>0|(g|0)>(f|0)){c=Eb(e,e+16|0);F[a>>2]=-2;b=a+4|0;if(D[c+11|0]>=0){a=F[c+4>>2];F[b>>2]=F[c>>2];F[b+4>>2]=a;F[b+8>>2]=F[c+8>>2];break b}ra(b,F[c>>2],F[c+4>>2]);if(D[c+11|0]>=0){break b}ja(F[c>>2]);break b}D[c+8|0]=G[d+F[b>>2]|0];d=F[b+20>>2];g=F[b+16>>2];f=g+1|0;i=f?d:d+1|0;F[b+16>>2]=f;F[b+20>>2]=i;i=F[b+8>>2];h=F[b+12>>2];g=g+3|0;d=g>>>0<3?d+1|0:d;if(g>>>0>i>>>0&(d|0)>=(h|0)|(d|0)>(h|0)){c=Eb(e,e+16|0);F[a>>2]=-2;b=a+4|0;if(D[c+11|0]>=0){a=F[c+4>>2];F[b>>2]=F[c>>2];F[b+4>>2]=a;F[b+8>>2]=F[c+8>>2];break b}ra(b,F[c>>2],F[c+4>>2]);if(D[c+11|0]>=0){break b}ja(F[c>>2]);break b}d=c;c=F[b>>2]+f|0;E[d+10>>1]=G[c|0]|G[c+1|0]<<8;g=F[b+20>>2];c=F[b+16>>2]+2|0;g=c>>>0<2?g+1|0:g;F[b+16>>2]=c;F[b+20>>2]=g;F[a+8>>2]=0;F[a+12>>2]=0;F[a>>2]=0;F[a+4>>2]=0}Z=e+48|0;return}za();v()}function Mb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0;e=Z-96|0;Z=e;f=F[a+16>>2];D[e+92|0]=1;F[e+88>>2]=b;F[e+84>>2]=b;F[e+80>>2]=f;j=F[a+20>>2];d=F[j>>2];a:{b:{f=F[F[f+28>>2]+(b<<2)>>2];if(f>>>0>2]-d>>2>>>0){d=F[F[a+8>>2]+(F[d+(f<<2)>>2]<<2)>>2];f=F[a+4>>2];if(!G[f+84|0]){d=F[F[f+68>>2]+(d<<2)>>2]}F[e+72>>2]=0;F[e+76>>2]=0;j=e- -64|0;F[j>>2]=0;F[j+4>>2]=0;F[e+56>>2]=0;F[e+60>>2]=0;Ga(f,d,D[f+24|0],e+56|0);if((b|0)!=-1){f=b+1|0;j=(f>>>0)%3|0?f:b-2|0;m=((b>>>0)%3|0?-1:2)+b|0;while(1){d=j;f=m;c:{if(!F[a+28>>2]){break c}f=b+1|0;d=(f>>>0)%3|0?f:b-2|0;f=b-1|0;if((b>>>0)%3|0){break c}f=b+2|0}n=F[a+20>>2];b=F[n>>2];d=F[F[F[a+16>>2]+28>>2]+(d<<2)>>2];if(d>>>0>=F[n+4>>2]-b>>2>>>0){break b}d=F[F[a+8>>2]+(F[b+(d<<2)>>2]<<2)>>2];b=F[a+4>>2];if(!G[b+84|0]){d=F[F[b+68>>2]+(d<<2)>>2]}F[e+48>>2]=0;F[e+52>>2]=0;F[e+40>>2]=0;F[e+44>>2]=0;F[e+32>>2]=0;F[e+36>>2]=0;Ga(b,d,D[b+24|0],e+32|0);d=F[a+20>>2];b=F[d>>2];f=F[F[F[a+16>>2]+28>>2]+(f<<2)>>2];if(f>>>0>=F[d+4>>2]-b>>2>>>0){break a}d=F[F[a+8>>2]+(F[b+(f<<2)>>2]<<2)>>2];b=F[a+4>>2];if(!G[b+84|0]){d=F[F[b+68>>2]+(d<<2)>>2]}F[e+24>>2]=0;F[e+28>>2]=0;F[e+16>>2]=0;F[e+20>>2]=0;F[e+8>>2]=0;F[e+12>>2]=0;Ga(b,d,D[b+24|0],e+8|0);g=F[e+8>>2];b=F[e+56>>2];d=g-b|0;p=F[e+60>>2];t=F[e+12>>2]-(p+(b>>>0>g>>>0)|0)|0;h=F[e+40>>2];f=F[e+64>>2];n=h-f|0;u=F[e+68>>2];y=F[e+44>>2]-(u+(f>>>0>h>>>0)|0)|0;g=ki(d,t,n,y);w=o-g|0;x=i-(_+(g>>>0>o>>>0)|0)|0;i=w;h=F[e+16>>2];g=h-f|0;u=F[e+20>>2]-((f>>>0>h>>>0)+u|0)|0;k=F[e+32>>2];h=k-b|0;w=F[e+36>>2]-((b>>>0>k>>>0)+p|0)|0;b=ki(g,u,h,w);o=i+b|0;i=_+x|0;i=b>>>0>o>>>0?i+1|0:i;b=l;l=d;p=t;k=F[e+48>>2];f=F[e+72>>2];d=k-f|0;t=F[e+76>>2];x=F[e+52>>2]-(t+(f>>>0>k>>>0)|0)|0;l=ki(l,p,d,x);k=b+l|0;b=_+q|0;b=k>>>0>>0?b+1|0:b;l=F[e+24>>2];p=l-f|0;f=F[e+28>>2]-((f>>>0>l>>>0)+t|0)|0;q=ki(p,f,h,w);l=k-q|0;q=b-(_+(k>>>0>>0)|0)|0;b=ki(g,u,d,x);d=r-b|0;b=s-(_+(b>>>0>r>>>0)|0)|0;s=ki(p,f,n,y);r=s+d|0;b=_+b|0;s=r>>>0>>0?b+1|0:b;b=F[e+88>>2];f=F[e+80>>2];d:{if(G[e+92|0]){e:{f:{g:{h:{if((b|0)==-1){break h}d=b+1|0;b=(d>>>0)%3|0?d:b-2|0;if((b|0)==-1|F[F[f>>2]+(b>>>3&536870908)>>2]>>>b&1){break h}b=F[F[F[f+64>>2]+12>>2]+(b<<2)>>2];if((b|0)!=-1){break g}}F[e+88>>2]=-1;break f}d=b+1|0;b=(d>>>0)%3|0?d:b-2|0;F[e+88>>2]=b;if((b|0)!=-1){break e}}b=F[e+84>>2];d=-1;i:{if((b|0)==-1){break i}j:{if((b>>>0)%3|0){b=b-1|0;break j}b=b+2|0;d=-1;if((b|0)==-1){break i}}d=-1;if(F[F[f>>2]+(b>>>3&536870908)>>2]>>>b&1){break i}b=F[F[F[f+64>>2]+12>>2]+(b<<2)>>2];d=-1;if((b|0)==-1){break i}d=b-1|0;if((b>>>0)%3|0){break i}d=b+2|0}D[e+92|0]=0;F[e+88>>2]=d;break d}if((b|0)!=F[e+84>>2]){break d}F[e+88>>2]=-1;break d}d=-1;k:{if((b|0)==-1){break k}l:{if((b>>>0)%3|0){b=b-1|0;break l}b=b+2|0;d=-1;if((b|0)==-1){break k}}d=-1;if(F[F[f>>2]+(b>>>3&536870908)>>2]>>>b&1){break k}b=F[F[F[f+64>>2]+12>>2]+(b<<2)>>2];d=-1;if((b|0)==-1){break k}d=b-1|0;if((b>>>0)%3|0){break k}d=b+2|0}F[e+88>>2]=d}b=F[e+88>>2];if((b|0)!=-1){continue}break}}b=s>>31;f=b^r;d=f-b|0;b=(b^s)-((b>>>0>f>>>0)+b|0)|0;m=-1;f=2147483647;g=q>>31;h=g^l;j=h-g|0;n=(g^q)-((h>>>0>>0)+g|0)|0;h=n;k=j^-1;g=h^2147483647;n=i;m:{n:{if(!F[a+28>>2]){if((b|0)==(g|0)&d>>>0>k>>>0|b>>>0>g>>>0){break m}b=b+h|0;a=d+j|0;b=a>>>0>>0?b+1|0:b;f=a;g=i;a=g>>31;d=a;m=d^o;a=m-d|0;i=a;d=(d^g)-((d>>>0>m>>>0)+d|0)|0;a=a+f|0;d=d^2147483647;i=(d|0)==(b|0)&(i^-1)>>>0>>0|b>>>0>d>>>0;a=i?-1:a;if(!(i&0)&(a|0)<=536870912|(a|0)<536870912){break m}b=0;a=a>>>29|0;break n}o:{if((b|0)==(g|0)&d>>>0>k>>>0|b>>>0>g>>>0){break o}b=b+h|0;a=d+j|0;b=a>>>0>>0?b+1|0:b;k=i;d=i>>31;h=d^o;i=h-d|0;j=(d^k)-((d>>>0>h>>>0)+d|0)|0;g=j^2147483647;d=a;a=i;if((g|0)==(b|0)&d>>>0>(a^-1)>>>0|b>>>0>g>>>0){break o}b=b+j|0;m=a+d|0;b=m>>>0>>0?b+1|0:b;f=b;if(!b&m>>>0<536870913){break m}}b=f>>>29|0;a=(f&536870911)<<3|m>>>29}o=li(o,n,a,b);l=li(l,q,a,b);r=li(r,s,a,b)}F[c+8>>2]=o;F[c+4>>2]=l;F[c>>2]=r;Z=e+96|0;return}ta();v()}ta();v()}ta();v()}function te(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;g=Z-16|0;Z=g;f=1;m=$[F[F[a>>2]+24>>2]](a)|0;a:{if((m|0)<=0){break a}r=a+48|0;f=0;while(1){b:{c:{if(!F[($[F[F[a>>2]+28>>2]](a)|0)+40>>2]){break c}o=l<<2;d=F[o+F[a+36>>2]>>2];c=F[d+8>>2];e=bb(d);if(!e){break c}h=F[($[F[F[a>>2]+28>>2]](a)|0)+40>>2];F[g+12>>2]=F[c+56>>2];d=ka(32);F[g>>2]=d;F[g+4>>2]=24;F[g+8>>2]=-2147483616;c=G[1196]|G[1197]<<8|(G[1198]<<16|G[1199]<<24);b=G[1192]|G[1193]<<8|(G[1194]<<16|G[1195]<<24);D[d+16|0]=b;D[d+17|0]=b>>>8;D[d+18|0]=b>>>16;D[d+19|0]=b>>>24;D[d+20|0]=c;D[d+21|0]=c>>>8;D[d+22|0]=c>>>16;D[d+23|0]=c>>>24;c=G[1188]|G[1189]<<8|(G[1190]<<16|G[1191]<<24);b=G[1184]|G[1185]<<8|(G[1186]<<16|G[1187]<<24);D[d+8|0]=b;D[d+9|0]=b>>>8;D[d+10|0]=b>>>16;D[d+11|0]=b>>>24;D[d+12|0]=c;D[d+13|0]=c>>>8;D[d+14|0]=c>>>16;D[d+15|0]=c>>>24;c=G[1180]|G[1181]<<8|(G[1182]<<16|G[1183]<<24);b=G[1176]|G[1177]<<8|(G[1178]<<16|G[1179]<<24);D[d|0]=b;D[d+1|0]=b>>>8;D[d+2|0]=b>>>16;D[d+3|0]=b>>>24;D[d+4|0]=c;D[d+5|0]=c>>>8;D[d+6|0]=c>>>16;D[d+7|0]=c>>>24;D[d+24|0]=0;c=h+16|0;b=F[c>>2];d:{e:{if(!b){break e}i=F[g+12>>2];d=c;while(1){k=(i|0)>F[b+16>>2];d=k?d:b;b=F[(k?b+4|0:b)>>2];if(b){continue}break}if((c|0)==(d|0)|(i|0)>2]){break e}b=F[d+24>>2];if(!b){break e}i=d+20|0;d=G[g+11|0];c=d<<24>>24<0;k=c?F[g>>2]:g;d=c?F[g+4>>2]:d;while(1){c=G[b+27|0];j=c<<24>>24<0;c=j?F[b+20>>2]:c;p=c>>>0>>0;f:{g:{h:{i:{j:{k:{n=p?c:d;if(n){j=j?F[b+16>>2]:b+16|0;q=sa(k,j,n);if(q){break k}if(c>>>0<=d>>>0){break j}break f}if(c>>>0<=d>>>0){break i}break f}if((q|0)<0){break f}}c=sa(j,k,n);if(c){break h}}if(p){break g}d=gc(i,g);break d}if((c|0)<0){break g}d=gc(i,g);break d}b=b+4|0}b=F[b>>2];if(b){continue}break}}d=gc(h,g)}if(D[g+11|0]<0){ja(F[g>>2])}if(!d){break c}d=0;c=F[F[o+F[a+36>>2]>>2]+8>>2];if(!F[c+64>>2]){b=ka(32);F[b+16>>2]=0;F[b+20>>2]=0;F[b+8>>2]=0;F[b>>2]=0;F[b+4>>2]=0;F[b+24>>2]=0;F[b+28>>2]=0;f=F[c+64>>2];F[c+64>>2]=b;if(f){b=F[f>>2];if(b){F[f+4>>2]=b;ja(b)}ja(f);b=F[c+64>>2]}F[c>>2]=b;f=F[b+20>>2];F[c+8>>2]=F[b+16>>2];F[c+12>>2]=f;f=F[b+24>>2];b=F[b+28>>2];F[c+48>>2]=0;F[c+52>>2]=0;F[c+40>>2]=0;F[c+44>>2]=0;F[c+16>>2]=f;F[c+20>>2]=b}l:{D[c+24|0]=G[e+24|0];F[c+28>>2]=F[e+28>>2];D[c+32|0]=G[e+32|0];b=F[e+44>>2];F[c+40>>2]=F[e+40>>2];F[c+44>>2]=b;b=F[e+52>>2];F[c+48>>2]=F[e+48>>2];F[c+52>>2]=b;F[c+56>>2]=F[e+56>>2];b=F[e+12>>2];F[c+8>>2]=F[e+8>>2];F[c+12>>2]=b;b=F[e+20>>2];F[c+16>>2]=F[e+16>>2];F[c+20>>2]=b;F[c+60>>2]=F[e+60>>2];f=F[e>>2];m:{if(!f){F[c>>2]=0;b=1;break m}h=F[c>>2];b=0;if(!h){break m}b=F[f>>2];f=F[f+4>>2]-b|0;md(h,b,f,0);b=1}if(!b){break l}D[c+84|0]=G[e+84|0];F[c+80>>2]=F[e+80>>2];if((c|0)!=(e|0)){gb(c+68|0,F[e+68>>2],F[e+72>>2])}n:{h=F[e+88>>2];o:{if(h){f=ka(40);e=F[h>>2];F[f+16>>2]=0;F[f+8>>2]=0;F[f+12>>2]=0;F[f>>2]=e;e=F[h+12>>2];b=F[h+8>>2];if((e|0)!=(b|0)){b=e-b|0;if((b|0)<0){break n}e=ka(b);F[f+12>>2]=e;F[f+8>>2]=e;F[f+16>>2]=b+e;b=F[h+8>>2];i=F[h+12>>2];p:{if((b|0)==(i|0)){break p}k=i+(b^-1)|0;j=i-b&7;if(j){while(1){D[e|0]=G[b|0];e=e+1|0;b=b+1|0;d=d+1|0;if((j|0)!=(d|0)){continue}break}}if(k>>>0<7){break p}while(1){D[e|0]=G[b|0];D[e+1|0]=G[b+1|0];D[e+2|0]=G[b+2|0];D[e+3|0]=G[b+3|0];D[e+4|0]=G[b+4|0];D[e+5|0]=G[b+5|0];D[e+6|0]=G[b+6|0];D[e+7|0]=G[b+7|0];e=e+8|0;b=b+8|0;if((i|0)!=(b|0)){continue}break}}F[f+12>>2]=e}d=F[h+36>>2];F[f+32>>2]=F[h+32>>2];F[f+36>>2]=d;d=F[h+28>>2];F[f+24>>2]=F[h+24>>2];F[f+28>>2]=d;e=F[c+88>>2];F[c+88>>2]=f;if(e){break o}break l}e=F[c+88>>2];F[c+88>>2]=0;if(!e){break l}}d=F[e+8>>2];if(d){F[e+12>>2]=d;ja(d)}ja(e);break l}na();v()}break b}d=F[F[a+36>>2]+(l<<2)>>2];if(!($[F[F[d>>2]+24>>2]](d,r)|0)){break a}}l=l+1|0;f=(m|0)<=(l|0);if((l|0)!=(m|0)){continue}break}}Z=g+16|0;return f|0}function Jg(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;f=Z-32|0;Z=f;a:{if(!hb(1,f+28|0,F[a+32>>2])){break a}if(!hb(1,f+24|0,F[a+32>>2])){break a}l=F[f+28>>2];if(l>>>0>1431655765){break a}d=F[a+32>>2];c=d;i=F[c+8>>2];b=F[c+16>>2];h=F[c+12>>2];c=F[c+20>>2];g=li(i-b|0,h-(c+(b>>>0>i>>>0)|0)|0,3,0);if(!_&g>>>0>>0){break a}n=F[f+24>>2];g=ki(l,0,3,0);if(!_&g>>>0>>0|((c|0)>=(h|0)&b>>>0>=i>>>0|(c|0)>(h|0))){break a}i=G[b+F[d>>2]|0];b=b+1|0;c=b?c:c+1|0;F[d+16>>2]=b;F[d+20>>2]=c;b:{c:{if(!i){d=0;c=Z-32|0;Z=c;F[c+24>>2]=0;F[c+16>>2]=0;F[c+20>>2]=0;d:{e:{b=L(l,3);if(b){if(b>>>0>=1073741824){break e}i=L(l,12);d=ka(i);ma(d,0,i)}b=mc(b,1,F[a+32>>2],d);f:{g:{if(!(!l|!b)){i=0;while(1){h:{g=e;b=(i<<2)+d|0;h=F[b>>2];e=h>>>1|0;h=g+(h&1?0-e|0:e)|0;if((h|0)<0){break h}F[c>>2]=h;e=F[b+4>>2];g=e>>>1|0;h=h+(e&1?0-g|0:g)|0;if((h|0)<0){break h}F[c+4>>2]=h;b=F[b+8>>2];e=b>>>1|0;e=h+(b&1?0-e|0:e)|0;if((e|0)<0){break h}F[c+8>>2]=e;mb(F[a+44>>2]+96|0,c);i=i+3|0;b=1;j=j+1|0;if((j|0)!=(l|0)){continue}break g}break}b=0;break g}if(!d){break f}}ja(d)}Z=c+32|0;break d}na();v()}if(b){break c}break a}if(n>>>0<=255){if(!l){break c}while(1){i:{F[f+16>>2]=0;F[f+8>>2]=0;F[f+12>>2]=0;d=F[a+32>>2];b=d;i=F[b+16>>2];e=F[b+8>>2];c=F[b+20>>2];g=F[b+12>>2];b=g;if(e>>>0<=i>>>0&(c|0)>=(b|0)|(b|0)<(c|0)){break i}j=F[d>>2];m=G[j+i|0];b=c;h=i+1|0;b=h?b:b+1|0;F[d+16>>2]=h;F[d+20>>2]=b;F[f+8>>2]=m;m=e>>>0>>0&(c|0)>=(g|0)|(c|0)>(g|0);e=m?i:e;g=m?c:g;if((e|0)==(h|0)&(g|0)==(b|0)){break i}m=G[h+j|0];b=c;h=i+2|0;b=h>>>0<2?b+1|0:b;F[d+16>>2]=h;F[d+20>>2]=b;F[f+12>>2]=m;if((e|0)==(h|0)&(b|0)==(g|0)){break i}h=G[h+j|0];b=c;c=i+3|0;b=c>>>0<3?b+1|0:b;F[d+16>>2]=c;F[d+20>>2]=b;F[f+16>>2]=h;mb(F[a+44>>2]+96|0,f+8|0);k=k+1|0;if((l|0)!=(k|0)){continue}break c}break}k=0;break a}if(n>>>0<=65535){if(!l){break c}while(1){j:{F[f+16>>2]=0;F[f+8>>2]=0;F[f+12>>2]=0;j=F[a+32>>2];b=j;c=F[b+8>>2];d=F[b+12>>2];h=F[b+16>>2];b=F[b+20>>2];i=b;e=h+2|0;b=e>>>0<2?b+1|0:b;if(c>>>0>>0&(b|0)>=(d|0)|(b|0)>(d|0)){break j}m=F[j>>2];g=m+h|0;g=G[g|0]|G[g+1|0]<<8;F[j+16>>2]=e;F[j+20>>2]=b;F[f+8>>2]=g;b=i;g=h+4|0;b=g>>>0<4?b+1|0:b;if(c>>>0>>0&(b|0)>=(d|0)|(b|0)>(d|0)){break j}e=e+m|0;e=G[e|0]|G[e+1|0]<<8;F[j+16>>2]=g;F[j+20>>2]=b;F[f+12>>2]=e;e=c;b=i;c=h+6|0;b=c>>>0<6?b+1|0:b;if(c>>>0>e>>>0&(b|0)>=(d|0)|(b|0)>(d|0)){break j}d=g+m|0;d=G[d|0]|G[d+1|0]<<8;F[j+16>>2]=c;F[j+20>>2]=b;F[f+16>>2]=d;mb(F[a+44>>2]+96|0,f+8|0);k=k+1|0;if((l|0)!=(k|0)){continue}break c}break}k=0;break a}k:{if(n>>>0>2097151){break k}b=H[a+36>>1];if(((b<<8|b>>>8)&65535)>>>0<514){break k}if(!l){break c}while(1){l:{F[f+16>>2]=0;F[f+8>>2]=0;F[f+12>>2]=0;if(!hb(1,f+4|0,F[a+32>>2])){break l}F[f+8>>2]=F[f+4>>2];if(!hb(1,f+4|0,F[a+32>>2])){break l}F[f+12>>2]=F[f+4>>2];if(!hb(1,f+4|0,F[a+32>>2])){break l}F[f+16>>2]=F[f+4>>2];mb(F[a+44>>2]+96|0,f+8|0);k=k+1|0;if((l|0)!=(k|0)){continue}break c}break}k=0;break a}if(!l){break c}while(1){F[f+16>>2]=0;F[f+8>>2]=0;F[f+12>>2]=0;j=F[a+32>>2];b=j;c=F[b+8>>2];d=F[b+12>>2];h=F[b+16>>2];b=F[b+20>>2];i=b;e=h+4|0;b=e>>>0<4?b+1|0:b;if(c>>>0>>0&(b|0)>=(d|0)|(b|0)>(d|0)){break b}m=F[j>>2];g=m+h|0;g=G[g|0]|G[g+1|0]<<8|(G[g+2|0]<<16|G[g+3|0]<<24);F[j+16>>2]=e;F[j+20>>2]=b;F[f+8>>2]=g;b=i;g=h+8|0;b=g>>>0<8?b+1|0:b;if(c>>>0>>0&(b|0)>=(d|0)|(b|0)>(d|0)){break b}e=e+m|0;e=G[e|0]|G[e+1|0]<<8|(G[e+2|0]<<16|G[e+3|0]<<24);F[j+16>>2]=g;F[j+20>>2]=b;F[f+12>>2]=e;e=c;b=i;c=h+12|0;b=c>>>0<12?b+1|0:b;if(c>>>0>e>>>0&(b|0)>=(d|0)|(b|0)>(d|0)){break b}d=g+m|0;d=G[d|0]|G[d+1|0]<<8|(G[d+2|0]<<16|G[d+3|0]<<24);F[j+16>>2]=c;F[j+20>>2]=b;F[f+16>>2]=d;mb(F[a+44>>2]+96|0,f+8|0);k=k+1|0;if((l|0)!=(k|0)){continue}break}}F[F[a+4>>2]+80>>2]=n;k=1;break a}k=0}Z=f+32|0;return k|0}function Ld(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;g=Z+-64|0;Z=g;F[g+56>>2]=0;F[g+48>>2]=0;F[g+52>>2]=0;F[g+40>>2]=0;F[g+44>>2]=0;F[g+32>>2]=0;F[g+36>>2]=0;F[g+24>>2]=0;F[g+28>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;F[g+8>>2]=0;F[g+12>>2]=0;h=g+8|0;a:{b:{if(!H[b+38>>1]){break b}if(!Ta(1,h+12|0,b)){break b}e=F[b+8>>2];f=F[b+16>>2];j=e-f|0;k=F[h+12>>2];e=F[b+12>>2]-(F[b+20>>2]+(e>>>0>>0)|0)|0;if(j>>>0>>6>>>0&(e|0)<=0|(e|0)<0){break b}e=F[h>>2];d=F[h+4>>2]-e>>2;c:{if(d>>>0>>0){qa(h,k-d|0);k=F[h+12>>2];break c}if(d>>>0<=k>>>0){break c}F[h+4>>2]=e+(k<<2)}i=1;if(!k){break a}e=F[b+16>>2];d=F[b+20>>2];r=F[h>>2];l=F[b+8>>2];o=F[b+12>>2];j=0;while(1){i=0;if((d|0)>=(o|0)&e>>>0>=l>>>0|(d|0)>(o|0)){break a}i=F[b>>2];p=G[i+e|0];e=e+1|0;d=e?d:d+1|0;F[b+16>>2]=e;F[b+20>>2]=d;f=p>>>2|0;m=0;d:{e:{f:{g:{s=p&3;switch(s|0){case 3:break g;case 0:break e;default:break f}}f=f+j|0;i=0;if(f>>>0>=k>>>0){break a}ma(r+(j<<2)|0,0,(p&252)+4|0);j=f;break d}while(1){if((e|0)==(l|0)&(d|0)==(o|0)){break b}k=G[e+i|0];e=e+1|0;d=e?d:d+1|0;F[b+16>>2]=e;F[b+20>>2]=d;f=k<<(m<<3|6)|f;m=m+1|0;if((s|0)!=(m|0)){continue}break}}F[r+(j<<2)>>2]=f}j=j+1|0;k=F[h+12>>2];if(j>>>0>>0){continue}break}d=h+16|0;o=F[h>>2];f=F[h+16>>2];e=F[h+20>>2]-f|0;h:{if(e>>>0<=4194303){qa(d,1048576-(e>>>2|0)|0);break h}if((e|0)==4194304){break h}F[h+20>>2]=f+4194304}e=h+28|0;j=F[e>>2];f=F[h+32>>2]-j>>3;i:{if(f>>>0>>0){_a(e,k-f|0);j=F[e>>2];break i}if(f>>>0>k>>>0){F[h+32>>2]=(k<<3)+j}if(!k){break b}}l=F[d>>2];d=0;i=0;while(1){e=o+(d<<2)|0;h=F[e>>2];m=(d<<3)+j|0;f=i;F[m+4>>2]=f;F[m>>2]=h;e=F[e>>2];i=e+f|0;if(i>>>0>1048576){break b}j:{if(f>>>0>=i>>>0){break j}m=0;h=e&7;if(h){while(1){F[l+(f<<2)>>2]=d;f=f+1|0;m=m+1|0;if((h|0)!=(m|0)){continue}break}}if(e-1>>>0<=6){break j}while(1){e=l+(f<<2)|0;F[e>>2]=d;F[e+28>>2]=d;F[e+24>>2]=d;F[e+20>>2]=d;F[e+16>>2]=d;F[e+12>>2]=d;F[e+8>>2]=d;F[e+4>>2]=d;f=f+8|0;if((i|0)!=(f|0)){continue}break}}d=d+1|0;if((k|0)!=(d|0)){continue}break}n=(i|0)==1048576}i=n}k:{if(!i|(F[g+20>>2]?0:a)){break k}i=0;j=Z-16|0;Z=j;l:{if(!Sa(1,j+8|0,b)){break l}d=F[b+8>>2];f=F[b+16>>2];l=d-f|0;n=F[j+12>>2];h=F[b+20>>2];d=F[b+12>>2]-(h+(d>>>0>>0)|0)|0;e=F[j+8>>2];if((n|0)==(d|0)&e>>>0>l>>>0|d>>>0>>0){break l}d=h+n|0;l=e+f|0;d=l>>>0>>0?d+1|0:d;F[b+16>>2]=l;F[b+20>>2]=d;if((e|0)<=0){break l}b=f+F[b>>2]|0;F[g+48>>2]=b;d=e-1|0;f=d+b|0;l=G[f|0];m:{if(l>>>0<=63){F[g+52>>2]=d;b=G[f|0]&63;break m}n:{switch((l>>>6|0)-1|0){case 0:if(e>>>0<2){break l}d=e-2|0;F[g+52>>2]=d;b=b+d|0;b=G[b+1|0]<<8&16128|G[b|0];break m;case 1:if(e>>>0<3){break l}d=e-3|0;F[g+52>>2]=d;b=b+d|0;b=G[b+1|0]<<8|G[b+2|0]<<16&4128768|G[b|0];break m;default:break n}}d=e-4|0;F[g+52>>2]=d;b=b+d|0;b=(G[b|0]|G[b+1|0]<<8|(G[b+2|0]<<16|G[b+3|0]<<24))&1073741823}F[g+56>>2]=b+4194304;i=b>>>0<1069547520}Z=j+16|0;if(!i){break k}if(!a){t=1;break k}b=F[g+52>>2];f=F[g+56>>2];d=F[g+36>>2];e=F[g+48>>2];j=F[g+24>>2];while(1){o:{if(f>>>0>4194303){break o}while(1){if((b|0)<=0){break o}b=b-1|0;F[g+52>>2]=b;f=G[b+e|0]|f<<8;F[g+56>>2]=f;if(f>>>0<4194304){continue}break}}i=f&1048575;l=F[j+(i<<2)>>2];n=d+(l<<3)|0;f=(L(F[n>>2],f>>>20|0)+i|0)-F[n+4>>2]|0;F[g+56>>2]=f;F[(q<<2)+c>>2]=l;t=1;q=q+1|0;if((q|0)!=(a|0)){continue}break}}a=F[g+36>>2];if(a){F[g+40>>2]=a;ja(a)}a=F[g+24>>2];if(a){F[g+28>>2]=a;ja(a)}a=F[g+8>>2];if(a){F[g+12>>2]=a;ja(a)}Z=g- -64|0;return t}function kh(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=M(0),f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=M(0),p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0;if(F[c>>2]==F[c+4>>2]){m=F[d+80>>2];u=Z-16|0;Z=u;g=F[a+4>>2];k=G[b+24|0];h=F[d+48>>2];n=F[F[d>>2]>>2];c=u+8|0;F[c>>2]=1065353216;d=c;J[c>>2]=M(-1<>2];c=ka(k<<2);a:{if(!m|!k){break a}p=h+n|0;o=J[d>>2];n=F[a+8>>2];v=F[b>>2];d=F[b+48>>2];g=F[b+40>>2];w=F[b+44>>2];if(!G[b+84|0]){f=F[b+68>>2];s=k&254;t=k&1;a=0;while(1){b=F[v>>2];l=ki(g,w,F[f+(i<<2)>>2],0)+d|0;h=la(c,b+l|0,g);b=0;q=0;if((k|0)!=1){while(1){l=p+(a<<2)|0;j=b<<2;e=M(R(M(M(o*M(J[j+h>>2]-J[n+j>>2]))+M(.5))));b:{if(M(N(e))>2]=r;j=j|4;e=M(R(M(M(o*M(J[j+h>>2]-J[n+j>>2]))+M(.5))));c:{if(M(N(e))>2]=j;b=b+2|0;a=a+2|0;q=q+2|0;if((s|0)!=(q|0)){continue}break}}if(t){l=p+(a<<2)|0;b=b<<2;e=M(R(M(M(o*M(J[b+h>>2]-J[b+n>>2]))+M(.5))));d:{if(M(N(e))>2]=b;a=a+1|0}i=i+1|0;if((m|0)!=(i|0)){continue}break}break a}s=k&254;t=k&1;a=0;while(1){b=F[v>>2];h=ki(g,w,i,l)+d|0;j=la(c,b+h|0,g);b=0;q=0;if((k|0)!=1){while(1){h=p+(a<<2)|0;f=b<<2;e=M(R(M(M(o*M(J[f+j>>2]-J[f+n>>2]))+M(.5))));e:{if(M(N(e))>2]=r;f=f|4;e=M(R(M(M(o*M(J[f+j>>2]-J[f+n>>2]))+M(.5))));f:{if(M(N(e))>2]=f;b=b+2|0;a=a+2|0;q=q+2|0;if((s|0)!=(q|0)){continue}break}}if(t){h=p+(a<<2)|0;b=b<<2;e=M(R(M(M(o*M(J[b+j>>2]-J[b+n>>2]))+M(.5))));g:{if(M(N(e))>2]=b;a=a+1|0}b=l;i=i+1|0;b=i?b:b+1|0;l=b;if((i|0)!=(m|0)|b){continue}break}}ja(c);Z=u+16|0;return 1}j=Z-16|0;Z=j;m=F[a+4>>2];i=G[b+24|0];g=F[d+48>>2];h=F[F[d>>2]>>2];d=j+8|0;F[d>>2]=1065353216;l=d;J[d>>2]=M(-1<>2];d=ka(i<<2);m=F[c+4>>2];q=F[c>>2];h:{if(!i|(m|0)==(q|0)){break h}n=h+g|0;c=m-q>>2;u=c>>>0<=1?1:c;o=J[l>>2];h=F[a+8>>2];v=F[b>>2];l=F[b+48>>2];m=F[b+40>>2];w=F[b+44>>2];if(G[b+84|0]){s=i&254;t=i&1;a=0;c=0;while(1){b=F[v>>2];g=ki(m,w,F[q+(c<<2)>>2],0)+l|0;p=la(d,b+g|0,m);b=0;k=0;if((i|0)!=1){while(1){g=n+(a<<2)|0;f=b<<2;e=M(R(M(M(o*M(J[f+p>>2]-J[h+f>>2]))+M(.5))));i:{if(M(N(e))>2]=r;f=f|4;e=M(R(M(M(o*M(J[f+p>>2]-J[h+f>>2]))+M(.5))));j:{if(M(N(e))>2]=f;b=b+2|0;a=a+2|0;k=k+2|0;if((s|0)!=(k|0)){continue}break}}if(t){g=n+(a<<2)|0;b=b<<2;e=M(R(M(M(o*M(J[b+p>>2]-J[b+h>>2]))+M(.5))));k:{if(M(N(e))>2]=b;a=a+1|0}c=c+1|0;if((u|0)!=(c|0)){continue}break}break h}s=F[b+68>>2];t=i&254;x=i&1;a=0;c=0;while(1){b=F[v>>2];g=ki(m,w,F[s+(F[q+(c<<2)>>2]<<2)>>2],0)+l|0;p=la(d,b+g|0,m);b=0;k=0;if((i|0)!=1){while(1){g=n+(a<<2)|0;f=b<<2;e=M(R(M(M(o*M(J[f+p>>2]-J[h+f>>2]))+M(.5))));l:{if(M(N(e))>2]=r;f=f|4;e=M(R(M(M(o*M(J[f+p>>2]-J[h+f>>2]))+M(.5))));m:{if(M(N(e))>2]=f;b=b+2|0;a=a+2|0;k=k+2|0;if((t|0)!=(k|0)){continue}break}}if(x){g=n+(a<<2)|0;b=b<<2;e=M(R(M(M(o*M(J[b+p>>2]-J[b+h>>2]))+M(.5))));n:{if(M(N(e))>2]=b;a=a+1|0}c=c+1|0;if((u|0)!=(c|0)){continue}break}}ja(d);Z=j+16|0;return 1} -function Cd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;c=F[a+4>>2];e=F[a>>2];f=(c-e|0)/144|0;if(f>>>0>>0){e=a;b=b-f|0;h=F[a+8>>2];c=F[a+4>>2];a:{if(b>>>0<=(h-c|0)/144>>>0){b:{if(!b){break b}a=c;f=b&7;if(f){while(1){va(a);a=a+144|0;d=d+1|0;if((f|0)!=(d|0)){continue}break}}c=L(b,144)+c|0;if((b-1&268435455)>>>0<7){break b}while(1){va(a);va(a+144|0);va(a+288|0);va(a+432|0);va(a+576|0);va(a+720|0);va(a+864|0);va(a+1008|0);a=a+1152|0;if((c|0)!=(a|0)){continue}break}}F[e+4>>2]=c;break a}c:{d:{e:{a=c;c=F[e>>2];i=(a-c|0)/144|0;a=i+b|0;if(a>>>0<29826162){c=(h-c|0)/144|0;f=c<<1;f=c>>>0>=14913080?29826161:a>>>0>>0?f:a;if(f){if(f>>>0>=29826162){break e}g=ka(L(f,144))}c=L(i,144)+g|0;a=c;h=b&7;if(h){while(1){va(a);a=a+144|0;d=d+1|0;if((h|0)!=(d|0)){continue}break}}h=L(b,144)+c|0;if((b-1&268435455)>>>0>=7){while(1){va(a);va(a+144|0);va(a+288|0);va(a+432|0);va(a+576|0);va(a+720|0);va(a+864|0);va(a+1008|0);a=a+1152|0;if((h|0)!=(a|0)){continue}break}}b=L(f,144)+g|0;d=F[e+4>>2];f=F[e>>2];if((d|0)==(f|0)){break d}while(1){c=c-144|0;d=d-144|0;a=d;F[c>>2]=F[a>>2];F[c+4>>2]=F[a+4>>2];F[c+8>>2]=F[a+8>>2];F[c+12>>2]=F[a+12>>2];F[a+12>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[c+16>>2]=F[a+16>>2];F[c+20>>2]=F[a+20>>2];F[c+24>>2]=F[a+24>>2];F[a+24>>2]=0;F[a+16>>2]=0;F[a+20>>2]=0;g=G[a+28|0];F[c+40>>2]=0;F[c+32>>2]=0;F[c+36>>2]=0;D[c+28|0]=g;F[c+32>>2]=F[a+32>>2];F[c+36>>2]=F[a+36>>2];F[c+40>>2]=F[a+40>>2];F[a+40>>2]=0;F[a+32>>2]=0;F[a+36>>2]=0;F[c+52>>2]=0;F[c+44>>2]=0;F[c+48>>2]=0;F[c+44>>2]=F[a+44>>2];F[c+48>>2]=F[a+48>>2];F[c+52>>2]=F[a+52>>2];F[a+52>>2]=0;F[a+44>>2]=0;F[a+48>>2]=0;g=c- -64|0;F[g>>2]=0;F[c+56>>2]=0;F[c+60>>2]=0;F[c+56>>2]=F[a+56>>2];F[c+60>>2]=F[a+60>>2];i=g;g=a- -64|0;F[i>>2]=F[g>>2];F[g>>2]=0;F[a+56>>2]=0;F[a+60>>2]=0;F[c+68>>2]=F[a+68>>2];g=F[a+72>>2];F[c+84>>2]=0;F[c+76>>2]=0;F[c+80>>2]=0;F[c+72>>2]=g;F[c+76>>2]=F[a+76>>2];F[c+80>>2]=F[a+80>>2];F[c+84>>2]=F[a+84>>2];F[a+84>>2]=0;F[a+76>>2]=0;F[a+80>>2]=0;F[c+96>>2]=0;F[c+88>>2]=0;F[c+92>>2]=0;F[c+88>>2]=F[a+88>>2];F[c+92>>2]=F[a+92>>2];F[c+96>>2]=F[a+96>>2];F[a+96>>2]=0;F[a+88>>2]=0;F[a+92>>2]=0;g=G[a+100|0];F[c+112>>2]=0;F[c+104>>2]=0;F[c+108>>2]=0;D[c+100|0]=g;F[c+104>>2]=F[a+104>>2];F[c+108>>2]=F[a+108>>2];F[c+112>>2]=F[a+112>>2];F[a+112>>2]=0;F[a+104>>2]=0;F[a+108>>2]=0;F[c+124>>2]=0;F[c+116>>2]=0;F[c+120>>2]=0;F[c+116>>2]=F[a+116>>2];F[c+120>>2]=F[a+120>>2];F[c+124>>2]=F[a+124>>2];F[a+124>>2]=0;F[a+116>>2]=0;F[a+120>>2]=0;g=F[a+128>>2];F[c+140>>2]=0;F[c+132>>2]=0;F[c+136>>2]=0;F[c+128>>2]=g;F[c+132>>2]=F[a+132>>2];F[c+136>>2]=F[a+136>>2];F[c+140>>2]=F[a+140>>2];F[a+140>>2]=0;F[a+132>>2]=0;F[a+136>>2]=0;if((a|0)!=(f|0)){continue}break}F[e+8>>2]=b;a=F[e+4>>2];F[e+4>>2]=h;d=F[e>>2];F[e>>2]=c;if((a|0)==(d|0)){break c}while(1){b=a-144|0;c=F[b+132>>2];if(c){F[a-8>>2]=c;ja(c)}c=F[a-28>>2];if(c){F[a-24>>2]=c;ja(c)}c=F[a-40>>2];if(c){F[a-36>>2]=c;ja(c)}Gb(a-140|0);a=b;if((d|0)!=(a|0)){continue}break}break c}na();v()}oa();v()}F[e+8>>2]=b;F[e+4>>2]=h;F[e>>2]=c}if(d){ja(d)}}return}if(b>>>0>>0){e=e+L(b,144)|0;if((e|0)!=(c|0)){while(1){b=c-144|0;d=F[b+132>>2];if(d){F[c-8>>2]=d;ja(d)}d=F[c-28>>2];if(d){F[c-24>>2]=d;ja(d)}d=F[c-40>>2];if(d){F[c-36>>2]=d;ja(d)}Gb(c-140|0);c=b;if((e|0)!=(c|0)){continue}break}}F[a+4>>2]=e}}function Yc(a){var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0;F[a+56>>2]=F[a+52>>2];F[a+44>>2]=F[a+40>>2];b=F[a+64>>2];c=F[b+24>>2];if((c|0)==F[b+28>>2]){return 1}a:{b:{c:{while(1){g=i;i=F[(k<<2)+c>>2];d:{if((i|0)==-1){i=g;break d}b=F[a+56>>2];e:{if((b|0)!=F[a+60>>2]){F[b>>2]=g;F[a+56>>2]=b+4;break e}d=F[a+52>>2];e=b-d|0;h=e>>2;c=h+1|0;if(c>>>0>=1073741824){break c}f=e>>>1|0;f=e>>>0>=2147483644?1073741823:c>>>0>>0?f:c;if(f){if(f>>>0>=1073741824){break b}e=ka(f<<2)}else{e=0}c=e+(h<<2)|0;F[c>>2]=g;h=c+4|0;if((b|0)!=(d|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(d|0)){continue}break}}F[a+60>>2]=e+(f<<2);F[a+56>>2]=h;F[a+52>>2]=c;if(!d){break e}ja(d)}f:{g:{if(!(F[F[a+12>>2]+(k>>>3&536870908)>>2]>>>k&1)){break g}e=i+1|0;e=(e>>>0)%3|0?e:i-2|0;if((e|0)==-1|F[F[a>>2]+(e>>>3&536870908)>>2]>>>e&1){break g}e=F[F[F[a+64>>2]+12>>2]+(e<<2)>>2];if((e|0)==-1){break g}b=e+1|0;b=(b>>>0)%3|0?b:e-2|0;if((b|0)==-1){break g}c=F[a+64>>2];f=F[a>>2];while(1){e=b;b=-1;d=e+1|0;d=(d>>>0)%3|0?d:e-2|0;h:{if((d|0)==-1|F[f+(d>>>3&536870908)>>2]>>>d&1){break h}d=F[F[c+12>>2]+(d<<2)>>2];if((d|0)==-1){break h}b=d+1|0;b=(b>>>0)%3|0?b:d-2|0}if((b|0)!=(i|0)){if((b|0)==-1){break f}continue}break}return 0}e=i}F[F[a+28>>2]+(e<<2)>>2]=g;b=F[a+44>>2];i:{if((b|0)!=F[a+48>>2]){F[b>>2]=e;F[a+44>>2]=b+4;break i}d=F[a+40>>2];i=b-d|0;h=i>>2;c=h+1|0;if(c>>>0>=1073741824){break a}f=i>>>1|0;f=i>>>0>=2147483644?1073741823:c>>>0>>0?f:c;if(f){if(f>>>0>=1073741824){break b}i=ka(f<<2)}else{i=0}c=i+(h<<2)|0;F[c>>2]=e;h=c+4|0;if((b|0)!=(d|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(d|0)){continue}break}}F[a+48>>2]=i+(f<<2);F[a+44>>2]=h;F[a+40>>2]=c;if(!d){break i}ja(d)}i=g+1|0;b=F[a+64>>2];if((e|0)==-1){break d}j:{if((e>>>0)%3|0){c=e-1|0;break j}c=e+2|0;if((c|0)==-1){break d}}d=F[F[b+12>>2]+(c<<2)>>2];if((d|0)==-1){break d}f=d+((d>>>0)%3|0?-1:2)|0;if((f|0)==-1|(e|0)==(f|0)){break d}while(1){b=f+1|0;b=(b>>>0)%3|0?b:f-2|0;if(F[F[a>>2]+(b>>>3&536870908)>>2]>>>b&1){b=F[a+56>>2];k:{if((b|0)!=F[a+60>>2]){F[b>>2]=i;F[a+56>>2]=b+4;break k}d=F[a+52>>2];g=b-d|0;j=g>>2;c=j+1|0;if(c>>>0>=1073741824){break c}h=g>>>1|0;h=g>>>0>=2147483644?1073741823:c>>>0>>0?h:c;if(h){if(h>>>0>=1073741824){break b}g=ka(h<<2)}else{g=0}c=g+(j<<2)|0;F[c>>2]=i;j=c+4|0;if((b|0)!=(d|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(d|0)){continue}break}}F[a+60>>2]=g+(h<<2);F[a+56>>2]=j;F[a+52>>2]=c;if(!d){break k}ja(d)}d=i+1|0;b=F[a+44>>2];l:{if((b|0)!=F[a+48>>2]){F[b>>2]=f;F[a+44>>2]=b+4;break l}h=F[a+40>>2];g=b-h|0;l=g>>2;c=l+1|0;if(c>>>0>=1073741824){break a}j=g>>>1|0;j=g>>>0>=2147483644?1073741823:c>>>0>>0?j:c;if(j){if(j>>>0>=1073741824){break b}g=ka(j<<2)}else{g=0}c=g+(l<<2)|0;F[c>>2]=f;l=c+4|0;if((b|0)!=(h|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(h|0)){continue}break}}F[a+48>>2]=g+(j<<2);F[a+44>>2]=l;F[a+40>>2]=c;if(!h){break l}ja(h)}g=i;i=d}F[F[a+28>>2]+(f<<2)>>2]=g;b=F[a+64>>2];m:{if((f>>>0)%3|0){c=f-1|0;break m}c=f+2|0;if((c|0)==-1){break d}}d=F[F[b+12>>2]+(c<<2)>>2];if((d|0)==-1){break d}f=d+((d>>>0)%3|0?-1:2)|0;if((f|0)==-1){break d}if((e|0)!=(f|0)){continue}break}}k=k+1|0;c=F[b+24>>2];if(k>>>0>2]-c>>2>>>0){continue}break}return 1}na();v()}oa();v()}na();v()}function Kb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=0;f=Z-96|0;Z=f;e=F[a+16>>2];D[f+92|0]=1;F[f+88>>2]=b;F[f+84>>2]=b;F[f+80>>2]=e;a:{if((b|0)==-1){break a}j=F[a+20>>2];d=F[j>>2];e=F[F[e>>2]+(b<<2)>>2];if(e>>>0>=F[j+4>>2]-d>>2>>>0){break a}e=F[F[a+8>>2]+(F[d+(e<<2)>>2]<<2)>>2];d=F[a+4>>2];if(!G[d+84|0]){e=F[F[d+68>>2]+(e<<2)>>2]}F[f+72>>2]=0;F[f+76>>2]=0;j=f- -64|0;F[j>>2]=0;F[j+4>>2]=0;F[f+56>>2]=0;F[f+60>>2]=0;Ga(d,e,D[d+24|0],f+56|0);e=b+1|0;j=(e>>>0)%3|0?e:b-2|0;n=((b>>>0)%3|0?-1:2)+b|0;b:{c:{while(1){d=j;e=n;d:{if(!F[a+28>>2]){break d}e=b+1|0;d=(e>>>0)%3|0?e:b-2|0;e=b-1|0;if((b>>>0)%3|0){break d}e=b+2|0}if((d|0)==-1){break b}m=F[a+20>>2];b=F[m>>2];d=F[F[F[a+16>>2]>>2]+(d<<2)>>2];if(d>>>0>=F[m+4>>2]-b>>2>>>0){break b}d=F[F[a+8>>2]+(F[(d<<2)+b>>2]<<2)>>2];b=F[a+4>>2];if(!G[b+84|0]){d=F[F[b+68>>2]+(d<<2)>>2]}F[f+48>>2]=0;F[f+52>>2]=0;F[f+40>>2]=0;F[f+44>>2]=0;F[f+32>>2]=0;F[f+36>>2]=0;Ga(b,d,D[b+24|0],f+32|0);if((e|0)==-1){break c}d=F[a+20>>2];b=F[d>>2];e=F[F[F[a+16>>2]>>2]+(e<<2)>>2];if(e>>>0>=F[d+4>>2]-b>>2>>>0){break c}d=F[F[a+8>>2]+(F[b+(e<<2)>>2]<<2)>>2];b=F[a+4>>2];if(!G[b+84|0]){d=F[F[b+68>>2]+(d<<2)>>2]}F[f+24>>2]=0;F[f+28>>2]=0;F[f+16>>2]=0;F[f+20>>2]=0;F[f+8>>2]=0;F[f+12>>2]=0;Ga(b,d,D[b+24|0],f+8|0);g=F[f+8>>2];b=F[f+56>>2];d=g-b|0;p=F[f+60>>2];t=F[f+12>>2]-(p+(b>>>0>g>>>0)|0)|0;i=F[f+40>>2];e=F[f+64>>2];m=i-e|0;u=F[f+68>>2];y=F[f+44>>2]-(u+(e>>>0>i>>>0)|0)|0;g=ki(d,t,m,y);w=o-g|0;x=h-(_+(g>>>0>o>>>0)|0)|0;h=w;i=F[f+16>>2];g=i-e|0;u=F[f+20>>2]-((e>>>0>i>>>0)+u|0)|0;k=F[f+32>>2];i=k-b|0;w=F[f+36>>2]-((b>>>0>k>>>0)+p|0)|0;b=ki(g,u,i,w);o=h+b|0;h=_+x|0;h=b>>>0>o>>>0?h+1|0:h;b=l;l=d;p=t;k=F[f+48>>2];e=F[f+72>>2];d=k-e|0;t=F[f+76>>2];x=F[f+52>>2]-(t+(e>>>0>k>>>0)|0)|0;l=ki(l,p,d,x);k=b+l|0;b=_+q|0;b=k>>>0>>0?b+1|0:b;l=F[f+24>>2];p=l-e|0;e=F[f+28>>2]-((e>>>0>l>>>0)+t|0)|0;q=ki(p,e,i,w);l=k-q|0;q=b-(_+(k>>>0>>0)|0)|0;b=ki(g,u,d,x);d=r-b|0;b=s-(_+(b>>>0>r>>>0)|0)|0;s=ki(p,e,m,y);r=s+d|0;b=_+b|0;s=r>>>0>>0?b+1|0:b;nc(f+80|0);b=F[f+88>>2];if((b|0)!=-1){continue}break}b=s>>31;e=b^r;d=e-b|0;b=(b^s)-((b>>>0>e>>>0)+b|0)|0;n=-1;e=2147483647;m=q>>31;g=m;i=g^l;j=i-g|0;m=(g^q)-((i>>>0>>0)+g|0)|0;i=m;k=j^-1;g=i^2147483647;m=h;e:{f:{if(!F[a+28>>2]){if((b|0)==(g|0)&d>>>0>k>>>0|b>>>0>g>>>0){break e}b=b+i|0;a=d+j|0;b=a>>>0>>0?b+1|0:b;e=a;g=h;a=g>>31;d=a;n=d^o;a=n-d|0;h=a;d=(d^g)-((d>>>0>n>>>0)+d|0)|0;a=a+e|0;d=d^2147483647;h=(d|0)==(b|0)&(h^-1)>>>0>>0|b>>>0>d>>>0;a=h?-1:a;if(!(h&0)&(a|0)<=536870912|(a|0)<536870912){break e}b=0;a=a>>>29|0;break f}g:{if((b|0)==(g|0)&d>>>0>k>>>0|b>>>0>g>>>0){break g}b=b+i|0;a=d+j|0;b=a>>>0>>0?b+1|0:b;k=h;h=h>>31;g=h;i=g^o;h=i-g|0;j=(g^k)-((g>>>0>i>>>0)+g|0)|0;g=j^2147483647;d=a;a=h;if((g|0)==(b|0)&d>>>0>(a^-1)>>>0|b>>>0>g>>>0){break g}b=b+j|0;n=a+d|0;b=n>>>0>>0?b+1|0:b;e=b;if(!b&n>>>0<536870913){break e}}b=e>>>29|0;a=(e&536870911)<<3|n>>>29}o=li(o,m,a,b);l=li(l,q,a,b);r=li(r,s,a,b)}F[c+8>>2]=o;F[c+4>>2]=l;F[c>>2]=r;Z=f+96|0;return}ta();v()}ta();v()}ta();v()}function Nc(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;a:{if((b|0)<0){break a}c=F[a+12>>2];d=F[a+8>>2];if(c-d>>2>>>0<=b>>>0){break a}d=d+(b<<2)|0;e=F[d>>2];i=F[e+60>>2];f=F[e+56>>2];e=d+4|0;if((e|0)!=(c|0)){while(1){h=F[e>>2];F[e>>2]=0;g=F[d>>2];F[d>>2]=h;if(g){xa(g)}d=d+4|0;e=e+4|0;if((e|0)!=(c|0)){continue}break}c=F[a+12>>2]}if((c|0)!=(d|0)){while(1){c=c-4|0;e=F[c>>2];F[c>>2]=0;if(e){xa(e)}if((c|0)!=(d|0)){continue}break}}F[a+12>>2]=d;g=F[a+4>>2];b:{if(!g|(i|0)<0){break b}c=F[g+24>>2];d=F[g+28>>2];if((c|0)==(d|0)){break b}while(1){if((i|0)==F[F[c>>2]+24>>2]){d=c+4|0;i=F[g+28>>2];if((d|0)!=(i|0)){while(1){h=F[d>>2];F[d>>2]=0;e=F[c>>2];F[c>>2]=h;if(e){Ca(e+12|0,F[e+16>>2]);Ba(e,F[e+4>>2]);ja(e)}c=c+4|0;d=d+4|0;if((i|0)!=(d|0)){continue}break}d=F[g+28>>2]}if((c|0)!=(d|0)){while(1){d=d-4|0;e=F[d>>2];F[d>>2]=0;if(e){Ca(e+12|0,F[e+16>>2]);Ba(e,F[e+4>>2]);ja(e)}if((c|0)!=(d|0)){continue}break}}F[g+28>>2]=c;break b}c=c+4|0;if((d|0)!=(c|0)){continue}break}}c:{if((f|0)>4){break c}d:{e=L(f,12)+a|0;c=F[e+20>>2];d=F[e+24>>2];if((c|0)==(d|0)){break d}while(1){if(F[c>>2]==(b|0)){break d}c=c+4|0;if((d|0)!=(c|0)){continue}break}break c}if((c|0)==(d|0)){break c}f=c;c=c+4|0;pa(f,c,d-c|0);F[e+24>>2]=d-4}c=F[a+24>>2];d=F[a+20>>2];e:{if((c|0)==(d|0)){break e}e=c-d|0;c=e>>2;g=c>>>0<=1?1:c;i=g&1;c=0;if(e>>>0>=8){g=g&-2;e=0;while(1){f=c<<2;h=f+d|0;j=F[h>>2];if((j|0)>(b|0)){F[h>>2]=j-1}f=d+(f|4)|0;h=F[f>>2];if((h|0)>(b|0)){F[f>>2]=h-1}c=c+2|0;e=e+2|0;if((g|0)!=(e|0)){continue}break}}if(!i){break e}c=d+(c<<2)|0;d=F[c>>2];if((d|0)<=(b|0)){break e}F[c>>2]=d-1}c=F[a+36>>2];d=F[a+32>>2];f:{if((c|0)==(d|0)){break f}e=c-d|0;c=e>>2;g=c>>>0<=1?1:c;i=g&1;c=0;if(e>>>0>=8){g=g&-2;e=0;while(1){f=c<<2;h=f+d|0;j=F[h>>2];if((j|0)>(b|0)){F[h>>2]=j-1}f=d+(f|4)|0;h=F[f>>2];if((h|0)>(b|0)){F[f>>2]=h-1}c=c+2|0;e=e+2|0;if((g|0)!=(e|0)){continue}break}}if(!i){break f}c=d+(c<<2)|0;d=F[c>>2];if((d|0)<=(b|0)){break f}F[c>>2]=d-1}c=F[a+48>>2];d=F[a+44>>2];g:{if((c|0)==(d|0)){break g}e=c-d|0;c=e>>2;g=c>>>0<=1?1:c;i=g&1;c=0;if(e>>>0>=8){g=g&-2;e=0;while(1){f=c<<2;h=f+d|0;j=F[h>>2];if((j|0)>(b|0)){F[h>>2]=j-1}f=d+(f|4)|0;h=F[f>>2];if((h|0)>(b|0)){F[f>>2]=h-1}c=c+2|0;e=e+2|0;if((g|0)!=(e|0)){continue}break}}if(!i){break g}c=d+(c<<2)|0;d=F[c>>2];if((d|0)<=(b|0)){break g}F[c>>2]=d-1}c=F[a+60>>2];d=F[a+56>>2];h:{if((c|0)==(d|0)){break h}e=c-d|0;c=e>>2;g=c>>>0<=1?1:c;i=g&1;c=0;if(e>>>0>=8){g=g&-2;e=0;while(1){f=c<<2;h=f+d|0;j=F[h>>2];if((j|0)>(b|0)){F[h>>2]=j-1}f=d+(f|4)|0;h=F[f>>2];if((h|0)>(b|0)){F[f>>2]=h-1}c=c+2|0;e=e+2|0;if((g|0)!=(e|0)){continue}break}}if(!i){break h}c=d+(c<<2)|0;d=F[c>>2];if((d|0)<=(b|0)){break h}F[c>>2]=d-1}c=F[a+72>>2];a=F[a+68>>2];if((c|0)==(a|0)){break a}d=c-a|0;c=d>>2;e=c>>>0<=1?1:c;g=e&1;c=0;if(d>>>0>=8){d=e&-2;e=0;while(1){i=c<<2;f=i+a|0;h=F[f>>2];if((h|0)>(b|0)){F[f>>2]=h-1}i=a+(i|4)|0;f=F[i>>2];if((f|0)>(b|0)){F[i>>2]=f-1}c=c+2|0;e=e+2|0;if((d|0)!=(e|0)){continue}break}}if(!g){break a}f=b;a=a+(c<<2)|0;b=F[a>>2];if((f|0)>=(b|0)){break a}F[a>>2]=b-1}}function ja(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;a:{if(!a){break a}d=a-8|0;b=F[a-4>>2];a=b&-8;f=d+a|0;b:{if(b&1){break b}if(!(b&3)){break a}b=F[d>>2];d=d-b|0;if(d>>>0>>0<=255){e=F[d+8>>2];b=b>>>3|0;c=F[d+12>>2];if((c|0)==(e|0)){i=11764,j=F[2941]&oi(b),F[i>>2]=j;break b}F[e+12>>2]=c;F[c+8>>2]=e;break b}h=F[d+24>>2];b=F[d+12>>2];c:{if((d|0)!=(b|0)){c=F[d+8>>2];F[c+12>>2]=b;F[b+8>>2]=c;break c}d:{e=d+20|0;c=F[e>>2];if(c){break d}e=d+16|0;c=F[e>>2];if(c){break d}b=0;break c}while(1){g=e;b=c;e=b+20|0;c=F[e>>2];if(c){continue}e=b+16|0;c=F[b+16>>2];if(c){continue}break}F[g>>2]=0}if(!h){break b}e=F[d+28>>2];c=(e<<2)+12068|0;e:{if(F[c>>2]==(d|0)){F[c>>2]=b;if(b){break e}i=11768,j=F[2942]&oi(e),F[i>>2]=j;break b}F[h+(F[h+16>>2]==(d|0)?16:20)>>2]=b;if(!b){break b}}F[b+24>>2]=h;c=F[d+16>>2];if(c){F[b+16>>2]=c;F[c+24>>2]=b}c=F[d+20>>2];if(!c){break b}F[b+20>>2]=c;F[c+24>>2]=b;break b}b=F[f+4>>2];if((b&3)!=3){break b}F[2943]=a;F[f+4>>2]=b&-2;F[d+4>>2]=a|1;F[a+d>>2]=a;return}if(d>>>0>=f>>>0){break a}b=F[f+4>>2];if(!(b&1)){break a}f:{if(!(b&2)){if(F[2947]==(f|0)){F[2947]=d;a=F[2944]+a|0;F[2944]=a;F[d+4>>2]=a|1;if(F[2946]!=(d|0)){break a}F[2943]=0;F[2946]=0;return}if(F[2946]==(f|0)){F[2946]=d;a=F[2943]+a|0;F[2943]=a;F[d+4>>2]=a|1;F[a+d>>2]=a;return}a=(b&-8)+a|0;g:{if(b>>>0<=255){e=F[f+8>>2];b=b>>>3|0;c=F[f+12>>2];if((c|0)==(e|0)){i=11764,j=F[2941]&oi(b),F[i>>2]=j;break g}F[e+12>>2]=c;F[c+8>>2]=e;break g}h=F[f+24>>2];b=F[f+12>>2];h:{if((f|0)!=(b|0)){c=F[f+8>>2];F[c+12>>2]=b;F[b+8>>2]=c;break h}i:{e=f+20|0;c=F[e>>2];if(c){break i}e=f+16|0;c=F[e>>2];if(c){break i}b=0;break h}while(1){g=e;b=c;e=b+20|0;c=F[e>>2];if(c){continue}e=b+16|0;c=F[b+16>>2];if(c){continue}break}F[g>>2]=0}if(!h){break g}e=F[f+28>>2];c=(e<<2)+12068|0;j:{if(F[c>>2]==(f|0)){F[c>>2]=b;if(b){break j}i=11768,j=F[2942]&oi(e),F[i>>2]=j;break g}F[h+(F[h+16>>2]==(f|0)?16:20)>>2]=b;if(!b){break g}}F[b+24>>2]=h;c=F[f+16>>2];if(c){F[b+16>>2]=c;F[c+24>>2]=b}c=F[f+20>>2];if(!c){break g}F[b+20>>2]=c;F[c+24>>2]=b}F[d+4>>2]=a|1;F[a+d>>2]=a;if(F[2946]!=(d|0)){break f}F[2943]=a;return}F[f+4>>2]=b&-2;F[d+4>>2]=a|1;F[a+d>>2]=a}if(a>>>0<=255){b=(a&-8)+11804|0;c=F[2941];a=1<<(a>>>3);k:{if(!(c&a)){F[2941]=a|c;a=b;break k}a=F[b+8>>2]}F[b+8>>2]=d;F[a+12>>2]=d;F[d+12>>2]=b;F[d+8>>2]=a;return}e=31;if(a>>>0<=16777215){b=O(a>>>8|0);e=((a>>>38-b&1)-(b<<1)|0)+62|0}F[d+28>>2]=e;F[d+16>>2]=0;F[d+20>>2]=0;g=(e<<2)+12068|0;l:{m:{c=F[2942];b=1<>2]=d;F[d+24>>2]=g;break n}e=a<<((e|0)!=31?25-(e>>>1|0)|0:0);b=F[g>>2];while(1){c=b;if((F[b+4>>2]&-8)==(a|0)){break m}b=e>>>29|0;e=e<<1;g=c+(b&4)|0;b=F[g+16>>2];if(b){continue}break}F[g+16>>2]=d;F[d+24>>2]=c}F[d+12>>2]=d;F[d+8>>2]=d;break l}a=F[c+8>>2];F[a+12>>2]=d;F[c+8>>2]=d;F[d+24>>2]=0;F[d+12>>2]=c;F[d+8>>2]=a}a=F[2949]-1|0;F[2949]=a?a:-1}}function di(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0;F[a+8>>2]=e;n=a+32|0;h=F[n>>2];f=F[a+36>>2]-h>>2;a:{if(f>>>0>>0){qa(n,e-f|0);d=F[a+8>>2];break a}d=e;if(d>>>0>=f>>>0){break a}F[a+36>>2]=h+(e<<2);d=e}s=F[a+52>>2];p=F[a+48>>2];f=0;h=e>>>0>1073741823?-1:e<<2;m=ma(ka(h),0,h);b:{if((d|0)<=0){break b}g=F[a+32>>2];while(1){d=f<<2;h=F[d+m>>2];j=F[a+16>>2];c:{if((h|0)>(j|0)){F[d+g>>2]=j;break c}d=d+g|0;j=F[a+12>>2];if((j|0)>(h|0)){F[d>>2]=j;break c}F[d>>2]=h}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}if((d|0)<=0){break b}f=0;while(1){h=f<<2;d=h+c|0;h=F[b+h>>2]+F[g+h>>2]|0;F[d>>2]=h;d:{if((h|0)>F[a+16>>2]){i=h-F[a+20>>2]|0}else{if((h|0)>=F[a+12>>2]){break d}i=h+F[a+20>>2]|0}F[d>>2]=i}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}}f=F[a+56>>2];q=F[f>>2];f=F[f+4>>2]-q|0;if((f|0)>=5){o=f>>>2|0;t=o>>>0<=2?2:o;u=e&-2;w=e&1;h=1;while(1){e:{f:{if((h|0)!=(o|0)){r=L(e,h);f=F[(h<<2)+q>>2];if((f|0)==-1){break f}f=F[F[p+12>>2]+(f<<2)>>2];if((f|0)==-1){break f}j=F[s>>2];g=F[p>>2];k=F[j+(F[g+(f<<2)>>2]<<2)>>2];i=f+1|0;i=(i>>>0)%3|0?i:f-2|0;if((i|0)!=-1){i=F[g+(i<<2)>>2]}else{i=-1}g:{h:{if((f>>>0)%3|0){f=f-1|0;break h}f=f+2|0;l=-1;if((f|0)==-1){break g}}l=F[g+(f<<2)>>2]}if((h|0)<=(k|0)){break f}f=F[(i<<2)+j>>2];if((f|0)>=(h|0)){break f}g=F[j+(l<<2)>>2];if((g|0)>=(h|0)){break f}i:{if((e|0)<=0){break i}g=L(e,g);j=L(e,f);k=L(e,k);f=0;l=0;if((e|0)!=1){while(1){F[(f<<2)+m>>2]=(F[(f+g<<2)+c>>2]+F[(f+j<<2)+c>>2]|0)-F[(f+k<<2)+c>>2];i=f|1;F[(i<<2)+m>>2]=(F[(g+i<<2)+c>>2]+F[(j+i<<2)+c>>2]|0)-F[(i+k<<2)+c>>2];f=f+2|0;l=l+2|0;if((u|0)!=(l|0)){continue}break}}if(!w){break i}F[(f<<2)+m>>2]=(F[(f+g<<2)+c>>2]+F[(f+j<<2)+c>>2]|0)-F[(f+k<<2)+c>>2]}if((d|0)<=0){break e}j=F[n>>2];f=0;while(1){d=f<<2;g=F[d+m>>2];k=F[a+16>>2];j:{if((g|0)>(k|0)){F[d+j>>2]=k;break j}d=d+j|0;k=F[a+12>>2];if((k|0)>(g|0)){F[d>>2]=k;break j}F[d>>2]=g}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}f=0;if((d|0)<=0){break e}d=r<<2;k=d+c|0;i=b+d|0;while(1){g=f<<2;d=g+k|0;g=F[g+i>>2]+F[g+j>>2]|0;F[d>>2]=g;k:{if((g|0)>F[a+16>>2]){l=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break k}l=g+F[a+20>>2]|0}F[d>>2]=l}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}break e}ta();v()}if((d|0)<=0){break e}k=(L(h-1|0,e)<<2)+c|0;j=F[n>>2];f=0;while(1){d=f<<2;g=F[d+k>>2];i=F[a+16>>2];l:{if((g|0)>(i|0)){F[d+j>>2]=i;break l}d=d+j|0;i=F[a+12>>2];if((i|0)>(g|0)){F[d>>2]=i;break l}F[d>>2]=g}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}f=0;if((d|0)<=0){break e}d=r<<2;k=d+c|0;i=b+d|0;while(1){g=f<<2;d=g+k|0;g=F[g+i>>2]+F[g+j>>2]|0;F[d>>2]=g;m:{if((g|0)>F[a+16>>2]){l=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break m}l=g+F[a+20>>2]|0}F[d>>2]=l}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}}h=h+1|0;if((t|0)!=(h|0)){continue}break}}ja(m);return 1}function od(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;if((b|0)==-1){return 1}g=(b>>>0)/3|0;if(!(F[F[a+24>>2]+(g>>>3&268435452)>>2]>>>g&1)){e=F[a+48>>2];F[a+52>>2]=e;a:{if((e|0)!=F[a+56>>2]){F[e>>2]=b;F[a+52>>2]=e+4;break a}d=ka(4);F[d>>2]=b;c=d+4|0;F[a+56>>2]=c;F[a+52>>2]=c;F[a+48>>2]=d;if(!e){break a}ja(e)}c=b+1|0;i=(c>>>0)%3|0?c:b-2|0;c=F[F[a+4>>2]+28>>2];k=F[(i<<2)+c>>2];if((k|0)==-1){return 0}e=(b-L(g,3)|0?-1:2)+b|0;j=F[c+(e<<2)>>2];if((j|0)==-1){return 0}b=F[a+36>>2];g=b+(k>>>3&536870908)|0;d=F[g>>2];c=1<>2]=c|d;Ka(a+8|0,k,i);b=F[a+36>>2]}d=(j>>>3&536870908)+b|0;c=F[d>>2];b=1<>2]=b|c;Ka(a+8|0,j,e)}f=F[a+52>>2];if((f|0)==F[a+48>>2]){return 1}k=a+8|0;while(1){b:{c:{f=f-4|0;b=F[f>>2];if((b|0)==-1){break c}c=(b>>>0)/3|0;g=F[a+24>>2]+(c>>>3&268435452)|0;d=F[g>>2];c=1<>2]=c|d;h=F[a+4>>2];c=F[F[h+28>>2]+(b<<2)>>2];if((c|0)==-1){return 0}while(1){d=b;d:{e:{j=F[a+36>>2]+(c>>>3&536870908)|0;i=F[j>>2];e=1<>2]+(c<<2)>>2];g:{if((g|0)==-1){break g}b=g+1|0;b=(b>>>0)%3|0?b:g-2|0;if((b|0)==-1|F[F[h>>2]+(b>>>3&536870908)>>2]>>>b&1){break g}g=F[F[F[h+64>>2]+12>>2]+(b<<2)>>2];if((g|0)!=-1){break f}}F[j>>2]=e|i;Ka(k,c,d);h=F[a+4>>2];break e}F[j>>2]=e|i;Ka(k,c,d);h=F[a+4>>2];b=g+1|0;if((((b>>>0)%3|0?b:g-2|0)|0)==-1){break e}b=-1;h:{if((d|0)==-1){break h}c=d+1|0;c=(c>>>0)%3|0?c:d-2|0;if((c|0)==-1|F[F[h>>2]+(c>>>3&536870908)>>2]>>>c&1){break h}b=F[F[F[h+64>>2]+12>>2]+(c<<2)>>2]}c=(b>>>0)/3|0;d=1<>2];e=c>>>5|0;j=F[f+(e<<2)>>2];break d}i:{j:{if((d|0)==-1){break j}c=-1;b=d+1|0;b=(b>>>0)%3|0?b:d-2|0;if(!((b|0)==-1|F[F[h>>2]+(b>>>3&536870908)>>2]>>>b&1)){c=F[F[F[h+64>>2]+12>>2]+(b<<2)>>2]}k:{l:{if((d>>>0)%3|0){f=d-1|0;break l}f=d+2|0;b=-1;if((f|0)==-1){break k}}b=-1;if(F[F[h>>2]+(f>>>3&536870908)>>2]>>>f&1){break k}b=F[F[F[h+64>>2]+12>>2]+(f<<2)>>2]}g=(b|0)==-1;i=g?-1:(b>>>0)/3|0;if((c|0)!=-1){f=F[a+24>>2];d=(c>>>0)/3|0;e=d>>>5|0;j=F[f+(e<<2)>>2];d=1<>2];e=i>>>5|0;j=F[f+(e<<2)>>2];if(!(d&j)){break d}}f=F[a+52>>2]-4|0;F[a+52>>2]=f;break b}if(g){b=c;break d}if(F[(i>>>3&536870908)+f>>2]>>>i&1){b=c;break d}h=F[a+52>>2];F[h-4>>2]=b;if(F[a+56>>2]!=(h|0)){F[h>>2]=c;f=h+4|0;break c}m:{i=F[a+48>>2];e=h-i|0;g=e>>2;d=g+1|0;if(d>>>0<1073741824){b=e>>>1|0;e=e>>>0>=2147483644?1073741823:b>>>0>d>>>0?b:d;if(e){if(e>>>0>=1073741824){break m}d=ka(e<<2)}else{d=0}b=d+(g<<2)|0;F[b>>2]=c;f=b+4|0;if((h|0)!=(i|0)){while(1){b=b-4|0;h=h-4|0;F[b>>2]=F[h>>2];if((h|0)!=(i|0)){continue}break}}F[a+56>>2]=d+(e<<2);F[a+52>>2]=f;F[a+48>>2]=b;if(!i){break b}ja(i);f=F[a+52>>2];break b}na();v()}oa();v()}F[(e<<2)+f>>2]=d|j;c=F[F[h+28>>2]+(b<<2)>>2];if((c|0)!=-1){continue}break}return 0}F[a+52>>2]=f}if(F[a+48>>2]!=(f|0)){continue}break}}return 1}function he(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0;F[a+8>>2]=e;m=a+32|0;h=F[m>>2];f=F[a+36>>2]-h>>2;a:{if(f>>>0>>0){qa(m,e-f|0);d=F[a+8>>2];break a}d=e;if(d>>>0>=f>>>0){break a}F[a+36>>2]=h+(e<<2);d=e}s=F[a+52>>2];n=F[a+48>>2];f=0;h=e>>>0>1073741823?-1:e<<2;l=ma(ka(h),0,h);b:{if((d|0)<=0){break b}g=F[a+32>>2];while(1){d=f<<2;h=F[d+l>>2];i=F[a+16>>2];c:{if((h|0)>(i|0)){F[d+g>>2]=i;break c}d=d+g|0;i=F[a+12>>2];if((i|0)>(h|0)){F[d>>2]=i;break c}F[d>>2]=h}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}if((d|0)<=0){break b}f=0;while(1){h=f<<2;d=h+c|0;h=F[b+h>>2]+F[g+h>>2]|0;F[d>>2]=h;d:{if((h|0)>F[a+16>>2]){h=h-F[a+20>>2]|0}else{if((h|0)>=F[a+12>>2]){break d}h=h+F[a+20>>2]|0}F[d>>2]=h}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}}f=F[a+56>>2];q=F[f>>2];f=F[f+4>>2]-q|0;if((f|0)>=5){o=f>>>2|0;t=o>>>0<=2?2:o;u=e&-2;w=e&1;h=1;while(1){e:{f:{if((h|0)!=(o|0)){r=L(e,h);f=F[(h<<2)+q>>2];if((f|0)==-1|F[F[n>>2]+(f>>>3&536870908)>>2]>>>f&1){break f}f=F[F[F[n+64>>2]+12>>2]+(f<<2)>>2];if((f|0)==-1){break f}i=F[s>>2];g=F[n+28>>2];k=F[i+(F[g+(f<<2)>>2]<<2)>>2];if((k|0)>=(h|0)){break f}j=f+1|0;j=F[i+(F[g+(((j>>>0)%3|0?j:f-2|0)<<2)>>2]<<2)>>2];if((j|0)>=(h|0)){break f}f=F[i+(F[g+(f+((f>>>0)%3|0?-1:2)<<2)>>2]<<2)>>2];if((f|0)>=(h|0)){break f}g:{if((e|0)<=0){break g}g=L(e,f);i=L(e,j);k=L(e,k);f=0;p=0;if((e|0)!=1){while(1){F[(f<<2)+l>>2]=(F[(f+g<<2)+c>>2]+F[(f+i<<2)+c>>2]|0)-F[(f+k<<2)+c>>2];j=f|1;F[(j<<2)+l>>2]=(F[(g+j<<2)+c>>2]+F[(i+j<<2)+c>>2]|0)-F[(k+j<<2)+c>>2];f=f+2|0;p=p+2|0;if((u|0)!=(p|0)){continue}break}}if(!w){break g}F[(f<<2)+l>>2]=(F[(f+g<<2)+c>>2]+F[(f+i<<2)+c>>2]|0)-F[(f+k<<2)+c>>2]}if((d|0)<=0){break e}i=F[m>>2];f=0;while(1){d=f<<2;g=F[d+l>>2];k=F[a+16>>2];h:{if((g|0)>(k|0)){F[d+i>>2]=k;break h}d=d+i|0;k=F[a+12>>2];if((k|0)>(g|0)){F[d>>2]=k;break h}F[d>>2]=g}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}f=0;if((d|0)<=0){break e}d=r<<2;k=d+c|0;j=b+d|0;while(1){g=f<<2;d=g+k|0;g=F[g+j>>2]+F[g+i>>2]|0;F[d>>2]=g;i:{if((g|0)>F[a+16>>2]){g=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break i}g=g+F[a+20>>2]|0}F[d>>2]=g}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}break e}ta();v()}if((d|0)<=0){break e}k=(L(h-1|0,e)<<2)+c|0;i=F[m>>2];f=0;while(1){d=f<<2;g=F[d+k>>2];j=F[a+16>>2];j:{if((g|0)>(j|0)){F[d+i>>2]=j;break j}d=d+i|0;j=F[a+12>>2];if((j|0)>(g|0)){F[d>>2]=j;break j}F[d>>2]=g}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}f=0;if((d|0)<=0){break e}d=r<<2;k=d+c|0;j=b+d|0;while(1){g=f<<2;d=g+k|0;g=F[g+j>>2]+F[g+i>>2]|0;F[d>>2]=g;k:{if((g|0)>F[a+16>>2]){g=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break k}g=g+F[a+20>>2]|0}F[d>>2]=g}d=F[a+8>>2];f=f+1|0;if((d|0)>(f|0)){continue}break}}h=h+1|0;if((t|0)!=(h|0)){continue}break}}ja(l);return 1}function Fb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=M(0),k=0,l=0,m=M(0);i=F[c>>2];a:{b:{f=F[b+4>>2];if(!f){break b}g=ni(f);c:{if(g>>>0>=2){e=i;if(f>>>0<=e>>>0){e=(i>>>0)%(f>>>0)|0}c=F[F[b>>2]+(e<<2)>>2];if(!c){break b}if(g>>>0<=1){break c}while(1){c=F[c>>2];if(!c){break b}g=F[c+4>>2];if((g|0)!=(i|0)){if(f>>>0<=g>>>0){g=(g>>>0)%(f>>>0)|0}if((e|0)!=(g|0)){break b}}if(F[c+8>>2]!=(i|0)){continue}break}b=0;break a}e=f-1&i;c=F[F[b>>2]+(e<<2)>>2];if(!c){break b}}h=f-1|0;while(1){c=F[c>>2];if(!c){break b}g=F[c+4>>2];if((g|0)!=(i|0)&(g&h)!=(e|0)){break b}if(F[c+8>>2]!=(i|0)){continue}break}b=0;break a}c=ka(16);d=F[F[d>>2]>>2];F[c+12>>2]=0;F[c+8>>2]=d;F[c+4>>2]=i;F[c>>2]=0;m=M(F[b+12>>2]+1>>>0);j=J[b+16>>2];d:{if(m>M(j*M(f>>>0))?0:f){break d}e=2;d=(f-1&f)!=0|f>>>0<3|f<<1;j=M(S(M(m/j)));e:{if(j=M(0)){g=~~j>>>0;break e}g=0}d=d>>>0>g>>>0?d:g;f:{if((d|0)==1){break f}if(!(d&d-1)){e=d;break f}e=Mc(d);f=F[b+4>>2]}g:{if(e>>>0<=f>>>0){if(e>>>0>=f>>>0){break g}g=f>>>0<3;j=M(S(M(M(I[b+12>>2])/J[b+16>>2])));h:{if(j=M(0)){d=~~j>>>0;break h}d=0}i:{j:{if(g){break j}if(ni(f)>>>0>1){break j}d=d>>>0<2?d:1<<32-O(d-1|0);break i}d=Mc(d)}e=d>>>0>>0?e:d;if(f>>>0<=e>>>0){break g}}f=0;g=0;h=e;k:{l:{m:{n:{if(e){if(h>>>0>=1073741824){break n}d=ka(h<<2);e=F[b>>2];F[b>>2]=d;if(e){ja(e)}F[b+4>>2]=h;d=0;if(h>>>0>=4){e=h&-4;while(1){k=d<<2;F[k+F[b>>2]>>2]=0;F[F[b>>2]+(k|4)>>2]=0;F[F[b>>2]+(k|8)>>2]=0;F[F[b>>2]+(k|12)>>2]=0;d=d+4|0;g=g+4|0;if((e|0)!=(g|0)){continue}break}}e=h&3;if(e){while(1){F[F[b>>2]+(d<<2)>>2]=0;d=d+1|0;f=f+1|0;if((e|0)!=(f|0)){continue}break}}e=F[b+8>>2];if(!e){break k}d=b+8|0;f=F[e+4>>2];g=ni(h);if(g>>>0<2){break m}f=f>>>0>=h>>>0?(f>>>0)%(h>>>0)|0:f;F[F[b>>2]+(f<<2)>>2]=d;d=F[e>>2];if(!d){break k}if(g>>>0<=1){break l}while(1){g=F[d+4>>2];if(h>>>0<=g>>>0){g=(g>>>0)%(h>>>0)|0}o:{if((f|0)==(g|0)){e=d;break o}l=g<<2;k=l+F[b>>2]|0;if(!F[k>>2]){F[k>>2]=e;e=d;f=g;break o}F[e>>2]=F[d>>2];F[d>>2]=F[F[l+F[b>>2]>>2]>>2];F[F[l+F[b>>2]>>2]>>2]=d}d=F[e>>2];if(d){continue}break}break k}d=F[b>>2];F[b>>2]=0;if(d){ja(d)}F[b+4>>2]=0;break k}oa();v()}f=h-1&f;F[F[b>>2]+(f<<2)>>2]=d;d=F[e>>2];if(!d){break k}}k=h-1|0;while(1){g=k&F[d+4>>2];p:{if((g|0)==(f|0)){e=d;break p}l=g<<2;h=l+F[b>>2]|0;if(F[h>>2]){F[e>>2]=F[d>>2];F[d>>2]=F[F[l+F[b>>2]>>2]>>2];F[F[l+F[b>>2]>>2]>>2]=d;break p}F[h>>2]=e;e=d;f=g}d=F[e>>2];if(d){continue}break}}}f=F[b+4>>2];d=f-1|0;if(!(d&f)){e=d&i;break d}if(f>>>0>i>>>0){e=i;break d}e=(i>>>0)%(f>>>0)|0}e=F[b>>2]+(e<<2)|0;d=F[e>>2];q:{r:{if(!d){d=b+8|0;F[c>>2]=F[d>>2];F[b+8>>2]=c;F[e>>2]=d;d=F[c>>2];if(!d){break q}d=F[d+4>>2];e=f-1|0;s:{if(!(e&f)){d=d&e;break s}if(d>>>0>>0){break s}d=(d>>>0)%(f>>>0)|0}d=F[b>>2]+(d<<2)|0;break r}F[c>>2]=F[d>>2]}F[d>>2]=c}F[b+12>>2]=F[b+12>>2]+1;b=1}D[a+4|0]=b;F[a>>2]=c}function Vb(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;j=L(b,12)+a|0;F[j+12>>2]=F[j+8>>2];m=(c|0)==-1?-1:(c>>>0)/3|0;d=1;k=c;a:{b:{c:{while(1){d:{l=d;if(!d){if((k|0)==-1){break d}if((Wc(a,((k>>>0)%3|0?-1:2)+k|0)|0)==-1){break a}c=k+1|0;d=(c>>>0)%3|0?c:k-2|0;if((d|0)==-1){break a}c=d+1|0;c=(c>>>0)%3|0?c:d-2|0;if((c|0)==-1){break a}d=F[F[F[a+4>>2]+12>>2]+(c<<2)>>2];if((d|0)==-1){break a}c=d+1|0;c=(c>>>0)%3|0?c:d-2|0;if((c|0)==-1){break a}m=(c>>>0)/3|0}e:{d=F[a+56>>2]+(m>>>3&536870908)|0;h=F[d>>2];e=1<>2]=e|h;d=F[j+12>>2];f:{if((d|0)!=F[j+16>>2]){F[d>>2]=m;F[j+12>>2]=d+4;break f}n=F[j+8>>2];h=d-n|0;e=h>>2;i=e+1|0;if(i>>>0>=1073741824){break c}g=h>>>1|0;i=h>>>0>=2147483644?1073741823:i>>>0>>0?g:i;if(i){if(i>>>0>=1073741824){break b}g=ka(i<<2)}else{g=0}h=g+(e<<2)|0;F[h>>2]=m;e=h+4|0;if((d|0)!=(n|0)){while(1){h=h-4|0;d=d-4|0;F[h>>2]=F[d>>2];if((d|0)!=(n|0)){continue}break}}F[j+8>>2]=h;F[j+12>>2]=e;F[j+16>>2]=g+(i<<2);if(!n){break f}ja(n)}g=f+1|0;g:{h:{i:{if(!f){break i}if(g&1){if((c|0)==-1){c=-1;break g}d=c+1|0;c=(d>>>0)%3|0?d:c-2|0;break i}k=l?k:c;if((c|0)==-1){c=-1;break g}if((c>>>0)%3|0){d=c-1|0;break h}c=c+2|0}d=c;c=-1;if((d|0)==-1){break g}}c=F[F[F[a+4>>2]+12>>2]+(d<<2)>>2];h=-1;f=-1;e=d+1|0;e=(e>>>0)%3|0?e:d-2|0;if((e|0)>=0){f=(e>>>0)/3|0;f=F[(F[F[a>>2]+96>>2]+L(f,12)|0)+(e-L(f,3)<<2)>>2]}j:{if((c|0)==-1){break j}i=((c>>>0)%3|0?-1:2)+c|0;if((i|0)<0){break j}e=(i>>>0)/3|0;h=F[(F[F[a>>2]+96>>2]+L(e,12)|0)+(i-L(e,3)<<2)>>2]}if((f|0)!=(h|0)){c=-1;break g}k:{l:{f=((d>>>0)%3|0?-1:2)+d|0;if((f|0)>=0){d=(f>>>0)/3|0;if((c|0)!=-1){break l}c=-1;break g}d=-1;if((c|0)!=-1){break k}c=-1;break g}d=F[(F[F[a>>2]+96>>2]+L(d,12)|0)+(f-L(d,3)<<2)>>2]}f=c+1|0;e=(f>>>0)%3|0?f:c-2|0;if((e|0)>=0){f=(e>>>0)/3|0;f=F[(F[F[a>>2]+96>>2]+L(f,12)|0)+(e-L(f,3)<<2)>>2]}else{f=-1}if((f|0)!=(d|0)){c=-1;break g}f=g;m=(c>>>0)/3|0;d=F[a+56>>2]+(m>>>3&268435452)|0;h=F[d>>2];e=1<>2]-4|0;g=F[l>>2];d=F[a+56>>2]+(g>>>3&536870908)|0;c=F[d>>2];o=d,p=oi(g)&c,F[o>>2]=p;F[j+12>>2]=l;break a}d=0;if(l){continue}break a}break}k=-1;Wc(a,-1);break a}na();v()}oa();v()}F[((b<<2)+a|0)+44>>2]=k;b=F[j+12>>2];i=F[j+8>>2];m:{if((b|0)==(i|0)){break m}c=b-i|0;b=c>>2;b=b>>>0<=1?1:b;k=b&1;e=F[a+56>>2];d=0;if(c>>>0>=8){f=b&-2;c=0;while(1){l=d<<2;g=F[l+i>>2];b=e+(g>>>3&536870908)|0;a=F[b>>2];o=b,p=oi(g)&a,F[o>>2]=p;g=F[i+(l|4)>>2];b=e+(g>>>3&536870908)|0;a=F[b>>2];o=b,p=oi(g)&a,F[o>>2]=p;d=d+2|0;c=c+2|0;if((f|0)!=(c|0)){continue}break}}if(!k){break m}c=F[i+(d<<2)>>2];b=e+(c>>>3&536870908)|0;a=F[b>>2];o=b,p=oi(c)&a,F[o>>2]=p}}function pd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;if((b|0)==-1){return 1}g=(b>>>0)/3|0;if(!(F[F[a+24>>2]+(g>>>3&268435452)>>2]>>>g&1)){f=F[a+48>>2];F[a+52>>2]=f;a:{if((f|0)!=F[a+56>>2]){F[f>>2]=b;F[a+52>>2]=f+4;break a}d=ka(4);F[d>>2]=b;c=d+4|0;F[a+56>>2]=c;F[a+52>>2]=c;F[a+48>>2]=d;if(!f){break a}ja(f)}e=-1;d=F[a+4>>2];c=b+1|0;i=(c>>>0)%3|0?c:b-2|0;if((i|0)!=-1){e=F[F[d>>2]+(i<<2)>>2]}b:{h=b-L(g,3)|0;if(h){c=b-1|0;break b}c=b+2|0;if((c|0)!=-1){break b}return 0}if((e|0)==-1){return 0}j=F[F[d>>2]+(c<<2)>>2];if((j|0)==-1){return 0}c=F[a+36>>2];f=c+(e>>>3&536870908)|0;g=F[f>>2];d=1<>2]=d|g;Ka(a+8|0,e,i);c=F[a+36>>2]}g=(j>>>3&536870908)+c|0;d=F[g>>2];c=1<>2]=c|d;Ka(a+8|0,j,(h?-1:2)+b|0)}c=F[a+52>>2];if((c|0)==F[a+48>>2]){return 1}j=a+8|0;while(1){c:{d:{c=c-4|0;b=F[c>>2];if((b|0)==-1){break d}d=(b>>>0)/3|0;f=F[a+24>>2]+(d>>>3&268435452)|0;g=F[f>>2];d=1<>2]=d|g;while(1){i=F[a+4>>2];e=F[F[i>>2]+(b<<2)>>2];if((e|0)==-1){return 0}e:{f:{h=F[a+36>>2]+(e>>>3&536870908)|0;f=F[h>>2];g=1<>2]+(e<<2)>>2];h:{if((d|0)==-1){break h}c=d+1|0;c=(c>>>0)%3|0?c:d-2|0;if((c|0)==-1){break h}d=F[F[i+12>>2]+(c<<2)>>2];if((d|0)!=-1){break g}}F[h>>2]=f|g;Ka(j,e,b);break f}F[h>>2]=f|g;Ka(j,e,b);c=d+1|0;if((((c>>>0)%3|0?c:d-2|0)|0)==-1){break f}c=b-2|0;d=b+1|0;b=-1;c=(d>>>0)%3|0?d:c;if((c|0)!=-1){b=F[F[F[a+4>>2]+12>>2]+(c<<2)>>2]}c=(b>>>0)/3|0;d=1<>2];f=c>>>5|0;i=F[e+(f<<2)>>2];break e}c=-1;g=F[a+4>>2];d=b+1|0;d=(d>>>0)%3|0?d:b-2|0;if((d|0)!=-1){c=F[F[g+12>>2]+(d<<2)>>2]}i:{j:{if((b>>>0)%3|0){e=b-1|0;break j}e=b+2|0;b=-1;if((e|0)==-1){break i}}b=F[F[g+12>>2]+(e<<2)>>2]}g=(b|0)==-1;h=g?-1:(b>>>0)/3|0;k:{if((c|0)!=-1){e=F[a+24>>2];d=(c>>>0)/3|0;f=d>>>5|0;i=F[e+(f<<2)>>2];d=1<>2];f=h>>>5|0;i=F[e+(f<<2)>>2];if(!(d&i)){break e}}c=F[a+52>>2]-4|0;F[a+52>>2]=c;break c}if(g){b=c;break e}if(F[(h>>>3&536870908)+e>>2]>>>h&1){b=c;break e}e=F[a+52>>2];F[e-4>>2]=b;if(F[a+56>>2]!=(e|0)){F[e>>2]=c;c=e+4|0;break d}l:{h=F[a+48>>2];f=e-h|0;g=f>>2;d=g+1|0;if(d>>>0<1073741824){b=f>>>1|0;f=f>>>0>=2147483644?1073741823:b>>>0>d>>>0?b:d;if(f){if(f>>>0>=1073741824){break l}d=ka(f<<2)}else{d=0}b=d+(g<<2)|0;F[b>>2]=c;c=b+4|0;if((e|0)!=(h|0)){while(1){b=b-4|0;e=e-4|0;F[b>>2]=F[e>>2];if((e|0)!=(h|0)){continue}break}}F[a+56>>2]=d+(f<<2);F[a+52>>2]=c;F[a+48>>2]=b;if(!h){break c}ja(h);c=F[a+52>>2];break c}na();v()}oa();v()}F[(f<<2)+e>>2]=d|i;if((b|0)!=-1){continue}break}return 0}F[a+52>>2]=c}if(F[a+48>>2]!=(c|0)){continue}break}}return 1}function ee(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;h=Z-32|0;Z=h;a:{b:{if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[F[a+48>>2]+64>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}c:{if(d){Na(a+60|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[F[a+48>>2]+64>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}if(d){e=0;Na(a+72|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[F[a+48>>2]+64>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}if(d){e=0;Na(a+84|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[F[a+48>>2]+64>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}if(d){e=0;Na(a+96|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}e=0;c=F[b+8>>2];f=F[b+12>>2];d=c;c=F[b+20>>2];i=c;g=F[b+16>>2];j=g+4|0;c=j>>>0<4?c+1|0:c;if(d>>>0>>0&(c|0)>=(f|0)|(c|0)>(f|0)){break a}m=F[b>>2];k=m+g|0;l=G[k|0]|G[k+1|0]<<8|(G[k+2|0]<<16|G[k+3|0]<<24);F[b+16>>2]=j;F[b+20>>2]=c;k=d;d=f;c=i;f=g+8|0;c=f>>>0<8?c+1|0:c;if(f>>>0>k>>>0&(c|0)>=(d|0)|(c|0)>(d|0)){break a}d=j+m|0;d=G[d|0]|G[d+1|0]<<8|(G[d+2|0]<<16|G[d+3|0]<<24);F[b+16>>2]=f;F[b+20>>2]=c;if((d|0)<(l|0)){break a}F[a+16>>2]=d;F[a+12>>2]=l;c=(d>>31)-((l>>31)+(d>>>0>>0)|0)|0;b=d-l|0;if(!c&b>>>0>2147483646|c){break a}e=1;b=b+1|0;F[a+20>>2]=b;c=b>>>1|0;F[a+24>>2]=c;F[a+28>>2]=0-c;if(b&1){break a}F[a+24>>2]=c-1;break a}}e=0}Z=h+32|0;return e|0}function ai(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;h=Z-32|0;Z=h;a:{b:{if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[a+48>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}c:{if(d){Na(a+60|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[a+48>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}if(d){e=0;Na(a+72|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[a+48>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}if(d){e=0;Na(a+84|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}if(!Oa(1,h+28|0,b)){break b}d=F[h+28>>2];c=F[a+48>>2];if(d>>>0>F[c+4>>2]-F[c>>2]>>2>>>0){break b}if(d){e=0;Na(a+96|0,d);c=h+8|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;if(!Aa(c,b)){break c}while(1){f=1<>2]+(e>>>3&536870908)|0;if(j){i=f|F[g>>2]}else{i=F[g>>2]&(f^-1)}F[g>>2]=i;e=e+1|0;if((d|0)!=(e|0)){continue}break}}e=0;c=F[b+8>>2];f=F[b+12>>2];d=c;c=F[b+20>>2];i=c;g=F[b+16>>2];j=g+4|0;c=j>>>0<4?c+1|0:c;if(d>>>0>>0&(c|0)>=(f|0)|(c|0)>(f|0)){break a}m=F[b>>2];k=m+g|0;l=G[k|0]|G[k+1|0]<<8|(G[k+2|0]<<16|G[k+3|0]<<24);F[b+16>>2]=j;F[b+20>>2]=c;k=d;d=f;c=i;f=g+8|0;c=f>>>0<8?c+1|0:c;if(f>>>0>k>>>0&(c|0)>=(d|0)|(c|0)>(d|0)){break a}d=j+m|0;d=G[d|0]|G[d+1|0]<<8|(G[d+2|0]<<16|G[d+3|0]<<24);F[b+16>>2]=f;F[b+20>>2]=c;if((d|0)<(l|0)){break a}F[a+16>>2]=d;F[a+12>>2]=l;c=(d>>31)-((l>>31)+(d>>>0>>0)|0)|0;b=d-l|0;if(!c&b>>>0>2147483646|c){break a}e=1;b=b+1|0;F[a+20>>2]=b;c=b>>>1|0;F[a+24>>2]=c;F[a+28>>2]=0-c;if(b&1){break a}F[a+24>>2]=c-1;break a}}e=0}Z=h+32|0;return e|0}function uh(a){a=a|0;var b=0,c=0,d=0,e=0;c=F[a+32>>2];d=F[c+16>>2];e=F[c+12>>2];b=F[c+20>>2];if(I[c+8>>2]>d>>>0&(e|0)>=(b|0)|(b|0)<(e|0)){e=G[F[c>>2]+d|0];d=d+1|0;b=d?b:b+1|0;F[c+16>>2]=d;F[c+20>>2]=b;b=F[a+48>>2];F[a+48>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}a:{b:{c:{d:{switch(e|0){case 0:b=ka(384);F[b>>2]=8284;ma(b+4|0,0,80);F[b+96>>2]=0;F[b+100>>2]=0;F[b+92>>2]=-1;F[b+84>>2]=-1;F[b+88>>2]=-1;F[b+104>>2]=0;F[b+108>>2]=0;F[b+112>>2]=0;F[b+116>>2]=0;F[b+120>>2]=0;F[b+124>>2]=0;F[b+128>>2]=0;F[b+132>>2]=0;F[b+136>>2]=0;F[b+140>>2]=0;F[b+144>>2]=0;F[b+148>>2]=0;F[b+156>>2]=0;F[b+160>>2]=0;F[b+152>>2]=1065353216;F[b+164>>2]=0;F[b+168>>2]=0;F[b+172>>2]=0;F[b+176>>2]=0;F[b+180>>2]=0;F[b+184>>2]=0;F[b+188>>2]=0;F[b+192>>2]=0;F[b+196>>2]=0;F[b+200>>2]=0;F[b+204>>2]=0;F[b+208>>2]=0;F[b+212>>2]=-1;F[b+216>>2]=0;F[b+220>>2]=0;F[b+224>>2]=0;Ja(b+232|0);Ja(b+272|0);c=b+312|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;Ja(b+328|0);F[b+376>>2]=0;F[b+368>>2]=0;F[b+372>>2]=0;break c;case 2:break d;default:break b}}b=ka(440);F[b>>2]=8336;ma(b+4|0,0,80);F[b+96>>2]=0;F[b+100>>2]=0;F[b+92>>2]=-1;F[b+84>>2]=-1;F[b+88>>2]=-1;F[b+104>>2]=0;F[b+108>>2]=0;F[b+112>>2]=0;F[b+116>>2]=0;F[b+120>>2]=0;F[b+124>>2]=0;F[b+128>>2]=0;F[b+132>>2]=0;F[b+136>>2]=0;F[b+140>>2]=0;F[b+144>>2]=0;F[b+148>>2]=0;F[b+156>>2]=0;F[b+160>>2]=0;F[b+152>>2]=1065353216;F[b+164>>2]=0;F[b+168>>2]=0;F[b+172>>2]=0;F[b+176>>2]=0;F[b+180>>2]=0;F[b+184>>2]=0;F[b+188>>2]=0;F[b+192>>2]=0;F[b+196>>2]=0;F[b+200>>2]=0;F[b+204>>2]=0;F[b+208>>2]=0;F[b+212>>2]=-1;F[b+216>>2]=0;F[b+220>>2]=0;F[b+224>>2]=0;Ja(b+232|0);Ja(b+272|0);c=b+312|0;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;Ja(b+328|0);F[b+392>>2]=0;F[b+396>>2]=0;F[b+384>>2]=0;F[b+388>>2]=0;F[b+376>>2]=0;F[b+380>>2]=0;F[b+368>>2]=0;F[b+372>>2]=0;F[b+416>>2]=0;F[b+420>>2]=0;F[b+408>>2]=2;F[b+412>>2]=7;F[b+400>>2]=-1;F[b+404>>2]=-1;F[b+424>>2]=0;F[b+428>>2]=0;F[b+432>>2]=0;F[b+436>>2]=0}c=F[a+48>>2];F[a+48>>2]=b;if(!c){break a}$[F[F[c>>2]+4>>2]](c)}b=F[a+48>>2];if(b){break a}return 0}a=$[F[F[b>>2]+8>>2]](b,a)|0}else{a=0}return a|0}function ei(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;g=Z-32|0;Z=g;F[a+68>>2]=f;d=F[a+56>>2];e=F[d>>2];d=F[d+4>>2];F[g+24>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;a:{d=d-e|0;if((d|0)>0){m=a+60|0;d=d>>>2|0;n=d>>>0<=1?1:d;o=a+112|0;while(1){e=F[a+56>>2];d=F[e>>2];if(F[e+4>>2]-d>>2>>>0<=j>>>0){break a}Mb(m,F[d+(j<<2)>>2],g+16|0);i=F[g+20>>2];d=i>>31;h=F[g+16>>2];e=h>>31;f=(d^i)-d+((e^h)-e)|0;k=F[g+24>>2];d=k>>31;e=(d^k)-d|0;d=0;l=e;e=e+f|0;d=l>>>0>e>>>0?1:d;b:{if(!(d|e)){F[g+16>>2]=F[a+108>>2];break b}f=F[a+108>>2];l=f>>31;h=li(ki(f,l,h,h>>31),_,e,d);F[g+16>>2]=h;d=li(ki(f,l,i,i>>31),_,e,d);F[g+20>>2]=d;e=d;d=d>>31;e=(e^d)-d|0;d=h>>31;d=e+((d^h)-d|0)|0;if((k|0)>=0){F[g+24>>2]=f-d;break b}F[g+24>>2]=d-f}d=wa(o);f=F[g+16>>2];c:{if(d){F[g+24>>2]=0-F[g+24>>2];e=0-F[g+20>>2]|0;F[g+20>>2]=e;f=0-f|0;F[g+16>>2]=f;break c}e=F[g+20>>2]}d:{if((f|0)>=0){f=F[a+108>>2];d=f+F[g+24>>2]|0;f=e+f|0;break d}e:{if((e|0)<0){d=F[g+24>>2];f=d>>31;f=(d^f)-f|0;break e}d=F[g+24>>2];f=d>>31;f=F[a+100>>2]+(f-(d^f)|0)|0}if((d|0)<0){d=e>>31;d=(d^e)-d|0;break d}d=e>>31;d=F[a+100>>2]+(d-(d^e)|0)|0}e=F[a+100>>2];f:{if(!(d|f)){d=e;f=d;break f}if(!((d|0)!=(e|0)|f)){f=d;break f}if(!((e|0)!=(f|0)|d)){d=f;break f}g:{if(f){break g}i=F[a+108>>2];if((i|0)>=(d|0)){break g}d=(i<<1)-d|0;f=0;break f}h:{if((e|0)!=(f|0)){break h}i=F[a+108>>2];if((i|0)<=(d|0)){break h}d=(i<<1)-d|0;break f}i:{if((d|0)!=(e|0)){break i}e=F[a+108>>2];if((e|0)<=(f|0)){break i}f=(e<<1)-f|0;break f}if(d){break f}d=0;e=F[a+108>>2];if((e|0)>=(f|0)){break f}f=(e<<1)-f|0}F[g+12>>2]=d;F[g+8>>2]=f;j:{if(F[a+8>>2]<=0){break j}i=F[a+32>>2];f=0;while(1){d=f<<2;e=F[d+(g+8|0)>>2];h=F[a+16>>2];k:{if((e|0)>(h|0)){F[d+i>>2]=h;break k}d=d+i|0;h=F[a+12>>2];if((h|0)>(e|0)){F[d>>2]=h;break k}F[d>>2]=e}f=f+1|0;e=F[a+8>>2];if((f|0)<(e|0)){continue}break}d=0;if((e|0)<=0){break j}e=j<<3;h=e+c|0;k=b+e|0;while(1){f=d<<2;e=f+h|0;f=F[f+k>>2]+F[f+i>>2]|0;F[e>>2]=f;l:{if((f|0)>F[a+16>>2]){f=f-F[a+20>>2]|0}else{if((f|0)>=F[a+12>>2]){break l}f=f+F[a+20>>2]|0}F[e>>2]=f}d=d+1|0;if((d|0)>2]){continue}break}}j=j+1|0;if((n|0)!=(j|0)){continue}break}}Z=g+32|0;return 1}ta();v()}function Vh(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;g=Z-32|0;Z=g;F[a+68>>2]=f;d=F[a+56>>2];e=F[d>>2];d=F[d+4>>2];F[g+24>>2]=0;F[g+16>>2]=0;F[g+20>>2]=0;a:{d=d-e|0;if((d|0)>0){m=a+60|0;d=d>>>2|0;n=d>>>0<=1?1:d;o=a+112|0;while(1){e=F[a+56>>2];d=F[e>>2];if(F[e+4>>2]-d>>2>>>0<=j>>>0){break a}Kb(m,F[d+(j<<2)>>2],g+16|0);i=F[g+20>>2];d=i>>31;h=F[g+16>>2];e=h>>31;f=(d^i)-d+((e^h)-e)|0;k=F[g+24>>2];d=k>>31;e=(d^k)-d|0;d=0;l=e;e=e+f|0;d=l>>>0>e>>>0?1:d;b:{if(!(d|e)){F[g+16>>2]=F[a+108>>2];break b}f=F[a+108>>2];l=f>>31;h=li(ki(f,l,h,h>>31),_,e,d);F[g+16>>2]=h;d=li(ki(f,l,i,i>>31),_,e,d);F[g+20>>2]=d;e=d;d=d>>31;e=(e^d)-d|0;d=h>>31;d=e+((d^h)-d|0)|0;if((k|0)>=0){F[g+24>>2]=f-d;break b}F[g+24>>2]=d-f}d=wa(o);f=F[g+16>>2];c:{if(d){F[g+24>>2]=0-F[g+24>>2];e=0-F[g+20>>2]|0;F[g+20>>2]=e;f=0-f|0;F[g+16>>2]=f;break c}e=F[g+20>>2]}d:{if((f|0)>=0){f=F[a+108>>2];d=f+F[g+24>>2]|0;f=e+f|0;break d}e:{if((e|0)<0){d=F[g+24>>2];f=d>>31;f=(d^f)-f|0;break e}d=F[g+24>>2];f=d>>31;f=F[a+100>>2]+(f-(d^f)|0)|0}if((d|0)<0){d=e>>31;d=(d^e)-d|0;break d}d=e>>31;d=F[a+100>>2]+(d-(d^e)|0)|0}e=F[a+100>>2];f:{if(!(d|f)){d=e;f=d;break f}if(!((d|0)!=(e|0)|f)){f=d;break f}if(!((e|0)!=(f|0)|d)){d=f;break f}g:{if(f){break g}i=F[a+108>>2];if((i|0)>=(d|0)){break g}d=(i<<1)-d|0;f=0;break f}h:{if((e|0)!=(f|0)){break h}i=F[a+108>>2];if((i|0)<=(d|0)){break h}d=(i<<1)-d|0;break f}i:{if((d|0)!=(e|0)){break i}e=F[a+108>>2];if((e|0)<=(f|0)){break i}f=(e<<1)-f|0;break f}if(d){break f}d=0;e=F[a+108>>2];if((e|0)>=(f|0)){break f}f=(e<<1)-f|0}F[g+12>>2]=d;F[g+8>>2]=f;j:{if(F[a+8>>2]<=0){break j}i=F[a+32>>2];f=0;while(1){d=f<<2;e=F[d+(g+8|0)>>2];h=F[a+16>>2];k:{if((e|0)>(h|0)){F[d+i>>2]=h;break k}d=d+i|0;h=F[a+12>>2];if((h|0)>(e|0)){F[d>>2]=h;break k}F[d>>2]=e}f=f+1|0;e=F[a+8>>2];if((f|0)<(e|0)){continue}break}d=0;if((e|0)<=0){break j}e=j<<3;h=e+c|0;k=b+e|0;while(1){f=d<<2;e=f+h|0;f=F[f+k>>2]+F[f+i>>2]|0;F[e>>2]=f;l:{if((f|0)>F[a+16>>2]){f=f-F[a+20>>2]|0}else{if((f|0)>=F[a+12>>2]){break l}f=f+F[a+20>>2]|0}F[e>>2]=f}d=d+1|0;if((d|0)>2]){continue}break}}j=j+1|0;if((n|0)!=(j|0)){continue}break}}Z=g+32|0;return 1}ta();v()}function $a(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;h=Z-32|0;Z=h;a:{b:{if(F[a+8>>2]<<5>>>0>=b>>>0){break b}if((b|0)<0){break a}b=(b-1>>>5|0)+1|0;c=ka(b<<2);F[h+24>>2]=b;F[h+20>>2]=0;F[h+16>>2]=c;b=F[a>>2];F[h+12>>2]=0;F[h+8>>2]=b;c=F[a+4>>2];F[h+4>>2]=c&31;F[h>>2]=b+(c>>>3&536870908);e=Z-32|0;Z=e;i=F[h+4>>2];g=F[h+12>>2];j=F[h>>2];d=F[h+8>>2];b=(i-g|0)+(j-d<<3)|0;f=F[h+20>>2];c=b+f|0;F[h+20>>2]=c;if(!((c-1^f-1)>>>0<32?f:0)){F[F[h+16>>2]+((c>>>0>=33?c-1>>>5|0:0)<<2)>>2]=0}c=F[h+16>>2]+(f>>>3&536870908)|0;f=f&31;c:{if((f|0)==(g|0)){if((b|0)<=0){break c}if(g){i=32-g|0;f=(b|0)<(i|0)?b:i;i=-1<>>i-f;F[c>>2]=F[c>>2]&(i^-1)|i&F[d>>2];d=d+4|0;c=(g+f>>>3&536870908)+c|0;b=b-f|0}g=(b|0)/32|0;if(b+31>>>0>=63){pa(c,d,g<<2)}b=b-(g<<5)|0;if((b|0)<=0){break c}f=c;c=g<<2;g=f+c|0;b=-1>>>32-b|0;F[g>>2]=F[g>>2]&(b^-1)|b&F[c+d>>2];break c}F[e+28>>2]=g;F[e+24>>2]=d;F[e+20>>2]=i;F[e+16>>2]=j;F[e+12>>2]=f;F[e+8>>2]=c;b=F[e+28>>2];c=F[e+24>>2];g=(F[e+20>>2]-b|0)+(F[e+16>>2]-c<<3)|0;d:{if((g|0)<=0){b=F[e+12>>2];d=F[e+8>>2];break d}e:{if(!b){b=F[e+12>>2];break e}d=F[e+12>>2];j=32-d|0;k=32-b|0;f=(g|0)<(k|0)?g:k;i=f>>>0>j>>>0?j:f;l=F[e+8>>2];m=F[l>>2]&(-1<>>j-i^-1);j=F[c>>2]&(-1<>>k-f);F[l>>2]=m|(b>>>0>>0?j<>>b-d|0);c=d+i|0;b=c&31;F[e+12>>2]=b;d=l+(c>>>3&536870908)|0;F[e+8>>2]=d;c=f-i|0;if((c|0)>0){F[d>>2]=F[d>>2]&(-1>>>32-c^-1)|j>>>i+F[e+28>>2];F[e+12>>2]=c;b=c}g=g-f|0;c=F[e+24>>2]+4|0;F[e+24>>2]=c}i=-1<=32){j=i^-1;while(1){d=F[e+8>>2];c=F[c>>2];F[d>>2]=j&F[d>>2]|c<>2]=d+4;F[d+4>>2]=i&F[d+4>>2]|c>>>f;c=F[e+24>>2]+4|0;F[e+24>>2]=c;d=g>>>0>63;g=g-32|0;if(d){continue}break}}d=F[e+8>>2];if((g|0)<=0){break d}j=f;f=(g|0)>(f|0)?f:g;j=F[d>>2]&(i&-1>>>j-f^-1);i=F[c>>2]&-1>>>32-g;F[d>>2]=j|i<>2]=c;d=(b>>>3&536870908)+d|0;F[e+8>>2]=d;b=g-f|0;if((b|0)<=0){b=c;break d}F[d>>2]=F[d>>2]&(-1>>>32-b^-1)|i>>>f;F[e+12>>2]=b}F[e+4>>2]=b;F[e>>2]=d}Z=e+32|0;b=F[a>>2];F[a>>2]=F[h+16>>2];F[h+16>>2]=b;c=F[a+4>>2];F[a+4>>2]=F[h+20>>2];F[h+20>>2]=c;c=F[a+8>>2];F[a+8>>2]=F[h+24>>2];F[h+24>>2]=c;if(!b){break b}ja(b)}Z=h+32|0;return}na();v()}function xc(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;n=$[F[F[a>>2]+44>>2]](a)|0;a:{if((n|0)<=0){break a}i=F[b+4>>2]-F[b>>2]>>2;e=Z+-64|0;Z=e;f=kb(e);d=L(F[2541],n);cc(f,F[F[a+8>>2]+56>>2],n&255,5,0,d,d>>31);f=bc(ka(96),f);D[f+84|0]=1;F[f+72>>2]=F[f+68>>2];ac(f,i);F[f+60>>2]=F[F[a+8>>2]+60>>2];d=F[a+16>>2];F[a+16>>2]=f;if(d){xa(d)}Z=e- -64|0;h=F[a+16>>2];if(!F[h+80>>2]){break a}j=F[F[h>>2]>>2];if(!j){break a}m=F[c+12>>2];e=m;d=F[c+20>>2];g=F[c+8>>2];k=F[c+16>>2];if((e|0)<=(d|0)&g>>>0<=k>>>0|(d|0)>(e|0)){break a}l=L(i,n);i=j+F[h+48>>2]|0;h=F[c>>2];j=G[h+k|0];e=k+1|0;f=e?d:d+1|0;F[c+16>>2]=e;F[c+20>>2]=f;b:{c:{if(j){if(mc(l,n,c,i)){break c}break a}if((f|0)>=(m|0)&e>>>0>=g>>>0|(f|0)>(m|0)){break a}g=G[e+h|0];f=k+2|0;d=f>>>0<2?d+1|0:d;F[c+16>>2]=f;F[c+20>>2]=d;d=F[F[a+16>>2]+64>>2];d=F[d+4>>2]-F[d>>2]|0;if((g|0)==F[2541]){e=l<<2;if(e>>>0>d>>>0){break a}g=F[c+8>>2];k=F[c+12>>2];j=F[c+20>>2];d=F[c+16>>2];f=e+d|0;j=f>>>0>>0?j+1|0:j;if(f>>>0>g>>>0&(j|0)>=(k|0)|(j|0)>(k|0)){break a}la(i,d+F[c>>2]|0,e);f=F[c+20>>2];d=e+F[c+16>>2]|0;f=d>>>0>>0?f+1|0:f;F[c+16>>2]=d;F[c+20>>2]=f;break c}if(d>>>0>>0){break a}d=F[c+8>>2];f=F[c+16>>2];e=d-f|0;m=d>>>0>>0;d=F[c+20>>2];k=F[c+12>>2]-(m+d|0)|0;m=ki(g,0,l,0)>>>0>e>>>0;e=_;if(m&(e|0)>=(k|0)|(e|0)>(k|0)){break a}e=1;if(!l){break b}h=0;while(1){k=F[c+8>>2];j=F[c+12>>2];e=f+g|0;d=e>>>0>>0?d+1|0:d;if(e>>>0>k>>>0&(d|0)>=(j|0)|(d|0)>(j|0)){return 0}la(i+(h<<2)|0,F[c>>2]+f|0,g);d=F[c+20>>2];f=g+F[c+16>>2]|0;d=f>>>0>>0?d+1|0:d;F[c+16>>2]=f;F[c+20>>2]=d;h=h+1|0;if((l|0)!=(h|0)){continue}break}}e=1;if(!l){break b}d=F[a+20>>2];if(d){e=0;if($[F[F[d>>2]+32>>2]](d)|0){break b}}g=0;h=0;d:{if((l|0)<=0){break d}if((l|0)!=1){f=l&-2;while(1){e=g<<2;d=F[e+i>>2];F[e+i>>2]=0-(d&1)^d>>>1;d=e|4;e=F[d+i>>2];F[d+i>>2]=0-(e&1)^e>>>1;g=g+2|0;h=h+2|0;if((f|0)!=(h|0)){continue}break}}if(!(l&1)){break d}d=g<<2;f=F[d+i>>2];F[d+i>>2]=0-(f&1)^f>>>1}e=0}d=e;f=F[a+20>>2];e:{if(!f){break e}if(!($[F[F[f>>2]+40>>2]](f,c)|0)){break a}if(d){break e}a=F[a+20>>2];if(!($[F[F[a>>2]+44>>2]](a,i,i,l,n,F[b>>2])|0)){break a}}o=1}return o|0}function Lh(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;g=Z-48|0;Z=g;d=F[a+8>>2];if(d-2>>>0<=28){F[a+76>>2]=d;e=-1<>2]=d;F[a+80>>2]=e^-1;F[a+92>>2]=(d|0)/2;J[a+88>>2]=M(2)/M(d|0)}F[a+52>>2]=f;d=F[a+40>>2];e=F[d>>2];d=F[d+4>>2];F[g+16>>2]=0;F[g+8>>2]=0;F[g+12>>2]=0;a:{d=d-e|0;if((d|0)>0){m=a+8|0;n=a+44|0;d=d>>>2|0;o=d>>>0<=1?1:d;p=a+96|0;while(1){e=F[a+40>>2];d=F[e>>2];if(F[e+4>>2]-d>>2>>>0<=j>>>0){break a}Mb(n,F[d+(j<<2)>>2],g+8|0);h=F[g+12>>2];d=h>>31;i=F[g+8>>2];e=i>>31;f=(d^h)-d+((e^i)-e)|0;l=F[g+16>>2];d=l>>31;e=(d^l)-d|0;d=0;k=e;e=e+f|0;d=k>>>0>e>>>0?1:d;b:{if(!(d|e)){F[g+8>>2]=F[a+92>>2];break b}f=F[a+92>>2];k=f>>31;i=li(ki(f,k,i,i>>31),_,e,d);F[g+8>>2]=i;d=li(ki(f,k,h,h>>31),_,e,d);F[g+12>>2]=d;e=d>>31;e=(d^e)-e|0;d=i>>31;d=e+((d^i)-d|0)|0;if((l|0)>=0){F[g+16>>2]=f-d;break b}F[g+16>>2]=d-f}d=wa(p);f=F[g+8>>2];c:{if(d){F[g+16>>2]=0-F[g+16>>2];e=0-F[g+12>>2]|0;F[g+12>>2]=e;f=0-f|0;F[g+8>>2]=f;break c}e=F[g+12>>2]}d:{if((f|0)>=0){f=F[a+92>>2];d=f+F[g+16>>2]|0;f=e+f|0;break d}e:{if((e|0)<0){d=F[g+16>>2];f=d>>31;f=(d^f)-f|0;break e}d=F[g+16>>2];f=d>>31;f=F[a+84>>2]+(f-(d^f)|0)|0}if((d|0)<0){d=e>>31;d=(d^e)-d|0;break d}d=e>>31;d=F[a+84>>2]+(d-(d^e)|0)|0}e=F[a+84>>2];f:{if(!(d|f)){d=e;f=d;break f}if(!((d|0)!=(e|0)|f)){f=d;break f}if(!((e|0)!=(f|0)|d)){d=f;break f}g:{if(f){break g}h=F[a+92>>2];if((h|0)>=(d|0)){break g}d=(h<<1)-d|0;f=0;break f}h:{if((e|0)!=(f|0)){break h}h=F[a+92>>2];if((h|0)<=(d|0)){break h}d=(h<<1)-d|0;break f}i:{if((d|0)!=(e|0)){break i}e=F[a+92>>2];if((e|0)<=(f|0)){break i}f=(e<<1)-f|0;break f}if(d){break f}d=0;e=F[a+92>>2];if((e|0)>=(f|0)){break f}f=(e<<1)-f|0}e=j<<3;h=e+b|0;i=F[h>>2];h=F[h+4>>2];F[g+36>>2]=d;F[g+32>>2]=f;F[g+24>>2]=i;F[g+28>>2]=h;Jb(g+40|0,m,g+32|0,g+24|0);d=c+e|0;F[d>>2]=F[g+40>>2];F[d+4>>2]=F[g+44>>2];j=j+1|0;if((o|0)!=(j|0)){continue}break}}Z=g+48|0;return 1}ta();v()}function Hh(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;g=Z-48|0;Z=g;d=F[a+8>>2];if(d-2>>>0<=28){F[a+76>>2]=d;e=-1<>2]=d;F[a+80>>2]=e^-1;F[a+92>>2]=(d|0)/2;J[a+88>>2]=M(2)/M(d|0)}F[a+52>>2]=f;d=F[a+40>>2];e=F[d>>2];d=F[d+4>>2];F[g+16>>2]=0;F[g+8>>2]=0;F[g+12>>2]=0;a:{d=d-e|0;if((d|0)>0){m=a+8|0;n=a+44|0;d=d>>>2|0;o=d>>>0<=1?1:d;p=a+96|0;while(1){e=F[a+40>>2];d=F[e>>2];if(F[e+4>>2]-d>>2>>>0<=j>>>0){break a}Kb(n,F[d+(j<<2)>>2],g+8|0);h=F[g+12>>2];d=h>>31;i=F[g+8>>2];e=i>>31;f=(d^h)-d+((e^i)-e)|0;l=F[g+16>>2];d=l>>31;e=(d^l)-d|0;d=0;k=e;e=e+f|0;d=k>>>0>e>>>0?1:d;b:{if(!(d|e)){F[g+8>>2]=F[a+92>>2];break b}f=F[a+92>>2];k=f>>31;i=li(ki(f,k,i,i>>31),_,e,d);F[g+8>>2]=i;d=li(ki(f,k,h,h>>31),_,e,d);F[g+12>>2]=d;e=d>>31;e=(d^e)-e|0;d=i>>31;d=e+((d^i)-d|0)|0;if((l|0)>=0){F[g+16>>2]=f-d;break b}F[g+16>>2]=d-f}d=wa(p);f=F[g+8>>2];c:{if(d){F[g+16>>2]=0-F[g+16>>2];e=0-F[g+12>>2]|0;F[g+12>>2]=e;f=0-f|0;F[g+8>>2]=f;break c}e=F[g+12>>2]}d:{if((f|0)>=0){f=F[a+92>>2];d=f+F[g+16>>2]|0;f=e+f|0;break d}e:{if((e|0)<0){d=F[g+16>>2];f=d>>31;f=(d^f)-f|0;break e}d=F[g+16>>2];f=d>>31;f=F[a+84>>2]+(f-(d^f)|0)|0}if((d|0)<0){d=e>>31;d=(d^e)-d|0;break d}d=e>>31;d=F[a+84>>2]+(d-(d^e)|0)|0}e=F[a+84>>2];f:{if(!(d|f)){d=e;f=d;break f}if(!((d|0)!=(e|0)|f)){f=d;break f}if(!((e|0)!=(f|0)|d)){d=f;break f}g:{if(f){break g}h=F[a+92>>2];if((h|0)>=(d|0)){break g}d=(h<<1)-d|0;f=0;break f}h:{if((e|0)!=(f|0)){break h}h=F[a+92>>2];if((h|0)<=(d|0)){break h}d=(h<<1)-d|0;break f}i:{if((d|0)!=(e|0)){break i}e=F[a+92>>2];if((e|0)<=(f|0)){break i}f=(e<<1)-f|0;break f}if(d){break f}d=0;e=F[a+92>>2];if((e|0)>=(f|0)){break f}f=(e<<1)-f|0}e=j<<3;h=e+b|0;i=F[h>>2];h=F[h+4>>2];F[g+36>>2]=d;F[g+32>>2]=f;F[g+24>>2]=i;F[g+28>>2]=h;Jb(g+40|0,m,g+32|0,g+24|0);d=c+e|0;F[d>>2]=F[g+40>>2];F[d+4>>2]=F[g+44>>2];j=j+1|0;if((o|0)!=(j|0)){continue}break}}Z=g+48|0;return 1}ta();v()}function Nd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;a:{if(!H[b+38>>1]){break a}if(!Ta(1,a+12|0,b)){break a}d=F[b+8>>2];e=F[b+16>>2];g=d-e|0;f=F[a+12>>2];d=F[b+12>>2]-(F[b+20>>2]+(d>>>0>>0)|0)|0;if(g>>>0>>6>>>0&(d|0)<=0|(d|0)<0){break a}d=F[a>>2];c=F[a+4>>2]-d>>2;b:{if(c>>>0>>0){qa(a,f-c|0);f=F[a+12>>2];break b}if(c>>>0<=f>>>0){break b}F[a+4>>2]=d+(f<<2)}if(!f){return 1}d=F[b+16>>2];c=F[b+20>>2];l=F[a>>2];j=F[b+8>>2];i=F[b+12>>2];g=0;while(1){if((c|0)>=(i|0)&d>>>0>=j>>>0|(c|0)>(i|0)){return 0}m=F[b>>2];k=G[m+d|0];d=d+1|0;c=d?c:c+1|0;F[b+16>>2]=d;F[b+20>>2]=c;e=k>>>2|0;h=0;c:{d:{e:{f:{n=k&3;switch(n|0){case 3:break f;case 0:break d;default:break e}}e=e+g|0;if(e>>>0>=f>>>0){return 0}ma(l+(g<<2)|0,0,(k&252)+4|0);g=e;break c}while(1){if((d|0)==(j|0)&(c|0)==(i|0)){break a}f=G[d+m|0];d=d+1|0;c=d?c:c+1|0;F[b+16>>2]=d;F[b+20>>2]=c;e=f<<(h<<3|6)|e;h=h+1|0;if((n|0)!=(h|0)){continue}break}}F[l+(g<<2)>>2]=e}f=F[a+12>>2];g=g+1|0;if(f>>>0>g>>>0){continue}break}b=a+16|0;j=F[a>>2];d=F[a+16>>2];c=F[a+20>>2]-d|0;g:{if(c>>>0<=16383){qa(b,4096-(c>>>2|0)|0);break g}if((c|0)==16384){break g}F[a+20>>2]=d+16384}c=a+28|0;g=F[c>>2];d=F[a+32>>2]-g>>3;h:{if(d>>>0>>0){_a(c,f-d|0);g=F[c>>2];break h}if(d>>>0>f>>>0){F[a+32>>2]=(f<<3)+g}if(!f){break a}}d=F[b>>2];b=0;a=0;while(1){c=j+(b<<2)|0;h=F[c>>2];e=a;i=(b<<3)+g|0;F[i+4>>2]=a;F[i>>2]=h;c=F[c>>2];a=c+a|0;if(a>>>0>4096){break a}i:{if(a>>>0<=e>>>0){break i}h=0;i=c&7;if(i){while(1){F[d+(e<<2)>>2]=b;e=e+1|0;h=h+1|0;if((i|0)!=(h|0)){continue}break}}if(c-1>>>0<=6){break i}while(1){c=d+(e<<2)|0;F[c>>2]=b;F[c+28>>2]=b;F[c+24>>2]=b;F[c+20>>2]=b;F[c+16>>2]=b;F[c+12>>2]=b;F[c+8>>2]=b;F[c+4>>2]=b;e=e+8|0;if((e|0)!=(a|0)){continue}break}}b=b+1|0;if((f|0)!=(b|0)){continue}break}o=(a|0)==4096}return o}function qf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0;f=Z-32|0;Z=f;e=f+8|0;c=Z-80|0;Z=c;a=F[b+36>>2];F[c+72>>2]=F[b+32>>2];F[c+76>>2]=a;d=F[b+28>>2];a=c- -64|0;F[a>>2]=F[b+24>>2];F[a+4>>2]=d;a=F[b+20>>2];F[c+56>>2]=F[b+16>>2];F[c+60>>2]=a;a=F[b+12>>2];F[c+48>>2]=F[b+8>>2];F[c+52>>2]=a;a=F[b+4>>2];F[c+40>>2]=F[b>>2];F[c+44>>2]=a;jc(c+8|0,c+40|0,c+24|0);a=F[c+8>>2];a:{if(a){F[e>>2]=a;a=e+4|0;if(D[c+23|0]>=0){b=c+8|4;e=F[b+4>>2];F[a>>2]=F[b>>2];F[a+4>>2]=e;F[a+8>>2]=F[b+8>>2];break a}ra(a,F[c+12>>2],F[c+16>>2]);if(D[c+23|0]>=0){break a}ja(F[c+12>>2]);break a}if(D[c+23|0]<0){ja(F[c+12>>2])}a=G[c+31|0];if(a>>>0>=2){b=ka(32);D[b+26|0]=0;a=G[1475]|G[1476]<<8;D[b+24|0]=a;D[b+25|0]=a>>>8;a=G[1471]|G[1472]<<8|(G[1473]<<16|G[1474]<<24);d=G[1467]|G[1468]<<8|(G[1469]<<16|G[1470]<<24);D[b+16|0]=d;D[b+17|0]=d>>>8;D[b+18|0]=d>>>16;D[b+19|0]=d>>>24;D[b+20|0]=a;D[b+21|0]=a>>>8;D[b+22|0]=a>>>16;D[b+23|0]=a>>>24;a=G[1463]|G[1464]<<8|(G[1465]<<16|G[1466]<<24);d=G[1459]|G[1460]<<8|(G[1461]<<16|G[1462]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=a;D[b+13|0]=a>>>8;D[b+14|0]=a>>>16;D[b+15|0]=a>>>24;a=G[1455]|G[1456]<<8|(G[1457]<<16|G[1458]<<24);d=G[1451]|G[1452]<<8|(G[1453]<<16|G[1454]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=a;D[b+5|0]=a>>>8;D[b+6|0]=a>>>16;D[b+7|0]=a>>>24;F[c+8>>2]=-1;a=c+8|4;ra(a,b,26);d=D[c+23|0];F[e>>2]=F[c+8>>2];e=e+4|0;if((d|0)>=0){d=F[a+4>>2];F[e>>2]=F[a>>2];F[e+4>>2]=d;F[e+8>>2]=F[a+8>>2];ja(b);break a}ra(e,F[c+12>>2],F[c+16>>2]);if(D[c+23|0]<0){ja(F[c+12>>2])}ja(b);break a}F[e>>2]=0;F[e+4>>2]=0;F[e+16>>2]=a;F[e+8>>2]=0;F[e+12>>2]=0}Z=c+80|0;a=F[f+24>>2];if(D[f+23|0]<0){ja(F[f+12>>2])}Z=f+32|0;return a|0}function Ph(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0;e=Z-32|0;Z=e;a:{if((c|0)!=3){break a}c=F[a+4>>2];f=F[a+12>>2];F[e+24>>2]=-1;F[e+16>>2]=-1;F[e+20>>2]=1065353216;F[e+8>>2]=-1;F[e+12>>2]=-1;if((b|0)==-2){break a}i=F[F[F[c+4>>2]+8>>2]+(f<<2)>>2];if(($[F[F[c>>2]+8>>2]](c)|0)==1){h=F[F[F[c+4>>2]+8>>2]+(f<<2)>>2];b:{if(($[F[F[c>>2]+8>>2]](c)|0)!=1|b-1>>>0>5){break b}g=$[F[F[c>>2]+36>>2]](c)|0;a=$[F[F[c>>2]+44>>2]](c,f)|0;if(!g|!a){break b}f=$[F[F[c>>2]+40>>2]](c,f)|0;c:{if(f){if((b|0)!=6){break b}b=F[c+44>>2];d=ka(112);F[d+4>>2]=h;c=F[e+12>>2];F[d+8>>2]=F[e+8>>2];F[d+12>>2]=c;c=F[e+20>>2];F[d+16>>2]=F[e+16>>2];F[d+20>>2]=c;F[d+24>>2]=F[e+24>>2];F[d+40>>2]=a;c=a+12|0;F[d+36>>2]=c;F[d+32>>2]=f;F[d+28>>2]=b;F[d+68>>2]=a;F[d- -64>>2]=c;F[d+60>>2]=f;F[d+56>>2]=b;F[d+48>>2]=0;F[d+52>>2]=0;F[d>>2]=5928;F[d+88>>2]=1065353216;F[d+92>>2]=-1;F[d+80>>2]=-1;F[d+84>>2]=-1;F[d+72>>2]=1;F[d+76>>2]=-1;F[d+44>>2]=6492;a=d+96|0;break c}if((b|0)!=6){break b}b=F[c+44>>2];d=ka(112);F[d+4>>2]=h;c=F[e+12>>2];F[d+8>>2]=F[e+8>>2];F[d+12>>2]=c;c=F[e+20>>2];F[d+16>>2]=F[e+16>>2];F[d+20>>2]=c;F[d+24>>2]=F[e+24>>2];F[d+40>>2]=a;c=a+12|0;F[d+36>>2]=c;F[d+32>>2]=g;F[d+28>>2]=b;F[d+68>>2]=a;F[d- -64>>2]=c;F[d+60>>2]=g;F[d+56>>2]=b;F[d+48>>2]=0;F[d+52>>2]=0;F[d>>2]=6932;F[d+88>>2]=1065353216;F[d+92>>2]=-1;F[d+80>>2]=-1;F[d+84>>2]=-1;F[d+72>>2]=1;F[d+76>>2]=-1;F[d+44>>2]=7352;a=d+96|0}F[a>>2]=0;F[a+4>>2]=0;D[a+5|0]=0;D[a+6|0]=0;D[a+7|0]=0;D[a+8|0]=0;D[a+9|0]=0;D[a+10|0]=0;D[a+11|0]=0;D[a+12|0]=0}if(d){break a}}d=ka(28);F[d+4>>2]=i;a=F[e+12>>2];F[d+8>>2]=F[e+8>>2];F[d+12>>2]=a;a=F[e+20>>2];F[d+16>>2]=F[e+16>>2];F[d+20>>2]=a;F[d+24>>2]=F[e+24>>2];F[d>>2]=7764}Z=e+32|0;return d|0}function $c(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;f=Z-80|0;Z=f;a:{if(!Wb(1,f+76|0,b)){break a}k=F[f+76>>2];if(!k){break a}c=F[b+8>>2];e=F[b+16>>2];c=ki(c-e|0,F[b+12>>2]-(F[b+20>>2]+(c>>>0>>0)|0)|0,5,0);e=_;if(c>>>0>>0&(e|0)<=0|(e|0)<0){break a}c=F[a+4>>2];d=F[a+8>>2]-c>>2;b:{if(d>>>0>>0){qa(a+4|0,k-d|0);break b}if(d>>>0<=k>>>0){break b}F[a+8>>2]=c+(k<<2)}p=a+16|0;l=F[a+32>>2];while(1){g=F[b+12>>2];c=g;d=F[b+20>>2];h=F[b+8>>2];e=F[b+16>>2];if((c|0)<=(d|0)&h>>>0<=e>>>0|(c|0)<(d|0)){d=0;break a}m=F[b>>2];q=G[m+e|0];c=d;i=e+1|0;c=i?c:c+1|0;F[b+16>>2]=i;F[b+20>>2]=c;if(h>>>0<=i>>>0&(c|0)>=(g|0)|(c|0)>(g|0)){d=0;break a}i=G[i+m|0];c=d;j=e+2|0;c=j>>>0<2?c+1|0:c;F[b+16>>2]=j;F[b+20>>2]=c;if(h>>>0<=j>>>0&(c|0)>=(g|0)|(c|0)>(g|0)){d=0;break a}j=G[j+m|0];c=d;n=e+3|0;c=n>>>0<3?c+1|0:c;F[b+16>>2]=n;F[b+20>>2]=c;if(h>>>0<=n>>>0&(c|0)>=(g|0)|(c|0)>(g|0)){d=0;break a}h=G[m+n|0];c=d;d=e+4|0;c=d>>>0<4?c+1|0:c;F[b+16>>2]=d;F[b+20>>2]=c;if(q>>>0>4){d=0;break a}if((i-12&255)>>>0<245){d=0;break a}if(!j){d=0;break a}c=kb(f+8|0);g=(h|0)!=0;d=i-1|0;if(d>>>0<=10){d=F[(d<<2)+10148>>2]}else{d=-1}d=L(d,j);cc(c,q,j,i,g,d,d>>31);if(Wb(1,f+4|0,b)){e=F[f+4>>2];F[f+68>>2]=e;d=bc(ka(96),c);$[F[F[l>>2]+8>>2]](l,F[l+12>>2]-F[l+8>>2]>>2,d);d=(F[l+12>>2]-F[l+8>>2]>>2)-1|0;h=d<<2;F[F[h+F[l+8>>2]>>2]+60>>2]=e;F[F[a+4>>2]+(o<<2)>>2]=d;c=F[a+16>>2];e=F[a+20>>2]-c>>2;c:{if((e|0)>(d|0)){break c}F[f>>2]=-1;d=d+1|0;if(d>>>0>e>>>0){Fa(p,d-e|0,f);c=F[p>>2];break c}if(d>>>0>=e>>>0){break c}F[a+20>>2]=(d<<2)+c}F[c+h>>2]=o;d=1;o=o+1|0;if((o|0)!=(k|0)){continue}break a}break}d=0}Z=f+80|0;return d|0}function Oc(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;k=Z-16|0;Z=k;F[k+8>>2]=c;h=F[a+12>>2];d=F[a+8>>2];g=h-d>>2;a:{if((g|0)>(b|0)){break a}e=b+1|0;if(e>>>0>g>>>0){l=e-g|0;f=F[a+16>>2];d=F[a+12>>2];if(l>>>0<=f-d>>2>>>0){if(l){e=d;d=l<<2;d=ma(e,0,d)+d|0}F[a+12>>2]=d;break a}b:{c:{d:{m=F[a+8>>2];g=d-m>>2;i=g+l|0;if(i>>>0<1073741824){e=f-m|0;f=e>>>1|0;e=e>>>0>=2147483644?1073741823:f>>>0>i>>>0?f:i;if(e){if(e>>>0>=1073741824){break d}j=ka(e<<2)}h=(g<<2)+j|0;f=l<<2;i=ma(h,0,f);g=f+i|0;e=(e<<2)+j|0;if((d|0)==(m|0)){break c}while(1){d=d-4|0;f=F[d>>2];F[d>>2]=0;h=h-4|0;F[h>>2]=f;if((d|0)!=(m|0)){continue}break}F[a+16>>2]=e;e=F[a+12>>2];F[a+12>>2]=g;d=F[a+8>>2];F[a+8>>2]=h;if((d|0)==(e|0)){break b}while(1){e=e-4|0;f=F[e>>2];F[e>>2]=0;if(f){xa(f)}if((d|0)!=(e|0)){continue}break}break b}na();v()}oa();v()}F[a+16>>2]=e;F[a+12>>2]=g;F[a+8>>2]=i}if(d){ja(d)}break a}if(e>>>0>=g>>>0){break a}d=d+(e<<2)|0;if((d|0)!=(h|0)){while(1){h=h-4|0;c=F[h>>2];F[h>>2]=0;if(c){xa(c)}if((d|0)!=(h|0)){continue}break}c=F[k+8>>2]}F[a+12>>2]=d}e:{f:{d=F[c+56>>2];g:{if((d|0)>4){break g}j=L(d,12)+a|0;d=F[j+24>>2];if((d|0)!=F[j+28>>2]){F[d>>2]=b;F[j+24>>2]=d+4;break g}i=F[j+20>>2];g=d-i|0;f=g>>2;e=f+1|0;if(e>>>0>=1073741824){break f}d=g>>>1|0;e=g>>>0>=2147483644?1073741823:d>>>0>e>>>0?d:e;if(e){if(e>>>0>=1073741824){break e}d=ka(e<<2)}else{d=0}f=d+(f<<2)|0;F[f>>2]=b;d=pa(d,i,g);F[j+20>>2]=d;F[j+24>>2]=f+4;F[j+28>>2]=d+(e<<2);if(!i){break g}ja(i)}F[c+60>>2]=b;a=F[a+8>>2];F[k+8>>2]=0;a=a+(b<<2)|0;b=F[a>>2];F[a>>2]=c;if(b){xa(b)}a=F[k+8>>2];F[k+8>>2]=0;if(a){xa(a)}Z=k+16|0;return}na();v()}oa();v()}function Pf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;i=c;d=a;a:{if(F[a+12>>2]==(b|0)){break a}a=b;b=F[d+4>>2];e=F[d>>2];if((b|0)!=(e|0)){while(1){c=b-12|0;if(D[b-1|0]<0){ja(F[c>>2])}b=c;if((e|0)!=(b|0)){continue}break}}F[d+12>>2]=a;F[d+4>>2]=e;c=F[a>>2];j=a+4|0;if((c|0)==(j|0)){break a}while(1){a=F[d+4>>2];b:{if((a|0)!=F[d+8>>2]){c:{if(D[c+27|0]>=0){b=F[c+20>>2];F[a>>2]=F[c+16>>2];F[a+4>>2]=b;F[a+8>>2]=F[c+24>>2];break c}ra(a,F[c+16>>2],F[c+20>>2])}F[d+4>>2]=a+12;break b}g=0;d:{e:{f:{a=F[d+4>>2];e=F[d>>2];f=(a-e|0)/12|0;b=f+1|0;if(b>>>0<357913942){h=(F[d+8>>2]-e|0)/12|0;k=h<<1;b=h>>>0>=178956970?357913941:b>>>0>>0?k:b;if(b){if(b>>>0>=357913942){break f}g=ka(L(b,12))}h=L(b,12);b=L(f,12)+g|0;g:{if(D[c+27|0]>=0){f=F[c+20>>2];F[b>>2]=F[c+16>>2];F[b+4>>2]=f;F[b+8>>2]=F[c+24>>2];break g}ra(b,F[c+16>>2],F[c+20>>2]);e=F[d>>2];a=F[d+4>>2]}g=g+h|0;f=b+12|0;if((a|0)==(e|0)){break e}while(1){a=a-12|0;h=F[a+4>>2];b=b-12|0;F[b>>2]=F[a>>2];F[b+4>>2]=h;F[b+8>>2]=F[a+8>>2];F[a>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;if((a|0)!=(e|0)){continue}break}F[d+8>>2]=g;a=F[d+4>>2];F[d+4>>2]=f;e=F[d>>2];F[d>>2]=b;if((a|0)==(e|0)){break d}while(1){b=a-12|0;if(D[a-1|0]<0){ja(F[b>>2])}a=b;if((e|0)!=(b|0)){continue}break}break d}na();v()}oa();v()}F[d+8>>2]=g;F[d+4>>2]=f;F[d>>2]=b}if(e){ja(e)}}b=F[c+4>>2];h:{if(b){while(1){a=b;b=F[b>>2];if(b){continue}break h}}while(1){a=F[c+8>>2];b=F[a>>2]!=(c|0);c=a;if(b){continue}break}}c=a;if((j|0)!=(a|0)){continue}break}}a=0;i:{if((i|0)<0){break i}b=F[d>>2];if((F[d+4>>2]-b|0)/12>>>0<=i>>>0){break i}a=b+L(i,12)|0;a=D[a+11|0]<0?F[a>>2]:a}return a|0}function Ad(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;i=Z-16|0;Z=i;F[i>>2]=b;f=-1;a:{if((b|0)==-1){F[i+4>>2]=-1;break a}f=b+1|0;F[i+4>>2]=(f>>>0)%3|0?f:b-2|0;if((b>>>0)%3|0){f=b-1|0;break a}f=b+2|0}F[i+8>>2]=f;n=(b>>>0)/3|0;b:{c:{d:{while(1){e:{f:{j=F[(l<<2)+i>>2];if((j|0)!=-1){f=F[F[F[a+8>>2]+12>>2]+(j<<2)>>2];if((f|0)!=-1){break f}}f=0;g=F[a+216>>2];if((g|0)==F[a+220>>2]){break e}while(1){g=L(f,144)+g|0;d=F[g+136>>2];c=F[g+140>>2];g:{if(d>>>0>>0){F[d>>2]=j;F[g+136>>2]=d+4;break g}e=d;d=F[g+132>>2];k=e-d|0;e=k>>2;h=e+1|0;if(h>>>0>=1073741824){break d}m=e<<2;c=c-d|0;e=c>>>1|0;h=c>>>0>=2147483644?1073741823:h>>>0>>0?e:h;if(h){if(h>>>0>=1073741824){break c}c=ka(h<<2)}else{c=0}e=m+c|0;F[e>>2]=j;c=pa(c,d,k);F[g+132>>2]=c;F[g+136>>2]=e+4;F[g+140>>2]=c+(h<<2);if(!d){break g}ja(d)}f=f+1|0;g=F[a+216>>2];if(f>>>0<(F[a+220>>2]-g|0)/144>>>0){continue}break}break e}if((b|0)==-1|(f>>>0)/3>>>0>>0){break e}f=0;if(F[a+220>>2]==F[a+216>>2]){break e}while(1){h:{if(!wa(F[a+368>>2]+(f<<4)|0)){break h}g=F[a+216>>2]+L(f,144)|0;d=F[g+136>>2];c=F[g+140>>2];if(d>>>0>>0){F[d>>2]=j;F[g+136>>2]=d+4;break h}e=d;d=F[g+132>>2];k=e-d|0;e=k>>2;h=e+1|0;if(h>>>0>=1073741824){break b}m=e<<2;c=c-d|0;e=c>>>1|0;h=c>>>0>=2147483644?1073741823:h>>>0>>0?e:h;if(h){if(h>>>0>=1073741824){break c}c=ka(h<<2)}else{c=0}e=m+c|0;F[e>>2]=j;c=pa(c,d,k);F[g+132>>2]=c;F[g+136>>2]=e+4;F[g+140>>2]=c+(h<<2);if(!d){break h}ja(d)}f=f+1|0;if(f>>>0<(F[a+220>>2]-F[a+216>>2]|0)/144>>>0){continue}break}}l=l+1|0;if((l|0)!=3){continue}break}Z=i+16|0;return 1}na();v()}oa();v()}na();v()}function Bd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;h=Z-16|0;Z=h;m=-1;a:{b:{c:{if(!Da(1,h+12|0,b)){break c}j=F[h+12>>2];if(j){c=F[a+8>>2];if((F[c+4>>2]-F[c>>2]>>2>>>0)/3>>>0>>0){break c}while(1){if(!Da(1,h+8|0,b)){break c}c=F[h+8>>2];if(!Da(1,h+8|0,b)){break c}g=c+g|0;c=F[h+8>>2];if(g>>>0>>0){break c}e=g-c|0;c=F[a+40>>2];d:{if((c|0)!=F[a+44>>2]){F[c+4>>2]=g;F[c>>2]=e;F[a+40>>2]=c+12;j=F[h+12>>2];break d}d=c;c=F[a+36>>2];l=d-c|0;d=(l|0)/12|0;f=d+1|0;if(f>>>0>=357913942){break b}i=d<<1;f=d>>>0>=178956970?357913941:f>>>0>>0?i:f;if(f){if(f>>>0>=357913942){break a}i=ka(L(f,12))}else{i=0}d=i+L(d,12)|0;F[d+4>>2]=g;F[d>>2]=e;e=pa(d+L((l|0)/-12|0,12)|0,c,l);F[a+44>>2]=i+L(f,12);F[a+40>>2]=d+12;F[a+36>>2]=e;if(!c){break d}ja(c)}k=k+1|0;if(k>>>0>>0){continue}break}g=0;hc(b,0,0);if(j){while(1){c=G[b+36|0];d=H[F[a+4>>2]+36>>1];e:{f:{if(((d<<8|d>>>8)&65535)>>>0<=513){if(!c){break e}e=0;d=F[b+32>>2];k=d>>>3|0;f=F[b+24>>2];c=k+f|0;i=F[b+28>>2];g:{if(c>>>0>=i>>>0){c=d;break g}e=G[c|0];c=d+1|0;F[b+32>>2]=c;k=c>>>3|0;e=e>>>(d&7)&1}if(i>>>0>f+k>>>0){break f}break e}if(!c){break e}e=0;c=F[b+32>>2];d=F[b+24>>2]+(c>>>3|0)|0;if(d>>>0>=I[b+28>>2]){break e}e=G[d|0]>>>(c&7)&1}F[b+32>>2]=c+1}c=F[a+36>>2]+L(g,12)|0;D[c+8|0]=G[c+8|0]&254|e&1;g=g+1|0;if((j|0)!=(g|0)){continue}break}}D[b+36|0]=0;d=F[b+20>>2];a=0;e=F[b+32>>2]+7|0;a=e>>>0<7?1:a;e=a<<29|e>>>3;c=e+F[b+16>>2]|0;a=(a>>>3|0)+d|0;F[b+16>>2]=c;F[b+20>>2]=c>>>0>>0?a+1|0:a}m=F[b+16>>2]}Z=h+16|0;return m}na();v()}oa();v()}function xf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;m=Z-16|0;Z=m;l=F[b+80>>2];e=G[c+24|0];a=L(l,e);a:{b:{c:{d:{b=F[c+28>>2];if(!(!G[c+84|0]|(b|0)!=1&(b|0)!=2)){b=F[c+48>>2];c=F[F[c>>2]>>2];F[m+8>>2]=0;F[m>>2]=0;F[m+4>>2]=0;if(a){if((a|0)<0){break d}f=ka(a);h=la(f,b+c|0,a)+a|0}a=F[d>>2];if(a){F[d+4>>2]=a;ja(a)}F[d+8>>2]=h;F[d+4>>2]=h;F[d>>2]=f;b=1;break a}if(e){f=ka(e);ma(f,0,e)}e:{i=F[d+4>>2];b=F[d>>2];g=i-b|0;f:{if(g>>>0>>0){k=a-g|0;j=F[d+8>>2];if(k>>>0<=j-i>>>0){n=d,o=ma(i,0,k)+k|0,F[n+4>>2]=o;break f}if((a|0)<0){break e}i=j-b|0;j=i<<1;i=i>>>0>=1073741823?2147483647:a>>>0>>0?j:a;j=ka(i);ma(j+g|0,0,k);g=pa(j,b,g);F[d+8>>2]=g+i;F[d+4>>2]=a+g;F[d>>2]=g;if(!b){break f}ja(b);break f}if(a>>>0>=g>>>0){break f}F[d+4>>2]=a+b}if(!l){b=1;break c}if(!e){b=0;a=0;while(1){if(!Cb(c,G[c+84|0]?a:F[F[c+68>>2]+(a<<2)>>2],D[c+24|0],f)){break c}a=a+1|0;b=l>>>0<=a>>>0;if((a|0)!=(l|0)){continue}break}break c}i=e&252;g=e&3;b=0;j=e>>>0<4;e=0;while(1){if(!Cb(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],f)){break c}b=0;a=0;k=0;if(!j){while(1){D[F[d>>2]+h|0]=G[a+f|0];D[(F[d>>2]+h|0)+1|0]=G[(a|1)+f|0];D[(F[d>>2]+h|0)+2|0]=G[(a|2)+f|0];D[(F[d>>2]+h|0)+3|0]=G[(a|3)+f|0];a=a+4|0;h=h+4|0;k=k+4|0;if((i|0)!=(k|0)){continue}break}}if(g){while(1){D[F[d>>2]+h|0]=G[a+f|0];a=a+1|0;h=h+1|0;b=b+1|0;if((g|0)!=(b|0)){continue}break}}e=e+1|0;b=l>>>0<=e>>>0;if((e|0)!=(l|0)){continue}break}break b}na();v()}na();v()}if(!f){break a}}ja(f)}Z=m+16|0;return b&1}function wf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;m=Z-16|0;Z=m;l=F[b+80>>2];e=G[c+24|0];a=L(l,e);a:{b:{c:{d:{b=F[c+28>>2];if(!(!G[c+84|0]|(b|0)!=1&(b|0)!=2)){b=F[c+48>>2];c=F[F[c>>2]>>2];F[m+8>>2]=0;F[m>>2]=0;F[m+4>>2]=0;if(a){if((a|0)<0){break d}f=ka(a);h=la(f,b+c|0,a)+a|0}a=F[d>>2];if(a){F[d+4>>2]=a;ja(a)}F[d+8>>2]=h;F[d+4>>2]=h;F[d>>2]=f;b=1;break a}if(e){f=ka(e);ma(f,0,e)}e:{i=F[d+4>>2];b=F[d>>2];g=i-b|0;f:{if(g>>>0>>0){k=a-g|0;j=F[d+8>>2];if(k>>>0<=j-i>>>0){n=d,o=ma(i,0,k)+k|0,F[n+4>>2]=o;break f}if((a|0)<0){break e}i=j-b|0;j=i<<1;i=i>>>0>=1073741823?2147483647:a>>>0>>0?j:a;j=ka(i);ma(j+g|0,0,k);g=pa(j,b,g);F[d+8>>2]=g+i;F[d+4>>2]=a+g;F[d>>2]=g;if(!b){break f}ja(b);break f}if(a>>>0>=g>>>0){break f}F[d+4>>2]=a+b}if(!l){b=1;break c}if(!e){b=0;a=0;while(1){if(!Bb(c,G[c+84|0]?a:F[F[c+68>>2]+(a<<2)>>2],D[c+24|0],f)){break c}a=a+1|0;b=l>>>0<=a>>>0;if((a|0)!=(l|0)){continue}break}break c}i=e&252;g=e&3;b=0;j=e>>>0<4;e=0;while(1){if(!Bb(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],f)){break c}b=0;a=0;k=0;if(!j){while(1){D[F[d>>2]+h|0]=G[a+f|0];D[(F[d>>2]+h|0)+1|0]=G[(a|1)+f|0];D[(F[d>>2]+h|0)+2|0]=G[(a|2)+f|0];D[(F[d>>2]+h|0)+3|0]=G[(a|3)+f|0];a=a+4|0;h=h+4|0;k=k+4|0;if((i|0)!=(k|0)){continue}break}}if(g){while(1){D[F[d>>2]+h|0]=G[a+f|0];a=a+1|0;h=h+1|0;b=b+1|0;if((g|0)!=(b|0)){continue}break}}e=e+1|0;b=l>>>0<=e>>>0;if((e|0)!=(l|0)){continue}break}break b}na();v()}na();v()}if(!f){break a}}ja(f)}Z=m+16|0;return b&1}function Jb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;k=F[b+16>>2];h=F[c+4>>2]-k|0;e=F[c>>2]-k|0;F[c>>2]=e;f=h;F[c+4>>2]=f;l=F[b+16>>2];f=f>>31;g=(h^f)-f|0;f=e>>31;m=l>>>0>=g+((f^e)-f|0)>>>0;a:{if(m){f=h;break a}b:{c:{if((e|0)>=0){g=1;j=1;if((h|0)>=0){break b}i=1;g=-1;j=-1;if(e){break c}break b}i=-1;g=-1;j=-1;if((h|0)<=0){break b}}g=(h|0)<=0?-1:1;j=i}n=L(j,l);f=(e<<1)-n|0;i=(L(g,j)|0)>=0;e=L(g,l);f=((i?0-f|0:f)+e|0)/2|0;F[c+4>>2]=f;e=(h<<1)-e|0;e=((i?0-e|0:e)+n|0)/2|0;F[c>>2]=e}d:{e:{f:{g:{h:{i:{j:{if(e){if((e|0)<0){break j}if((f|0)>=0){break i}break f}if(f){break h}j=1;g=0;f=0;i=0;break d}j=1;if((f|0)>0){break g}i=(f|0)>0?3:0;g=f;f=e;break d}g=0-f|0;f=0-e|0;i=2;break e}if((f|0)<=0){break f}}f=0-f|0;g=e;i=3;break e}g=0-e|0;i=1}F[c>>2]=f;F[c+4>>2]=g;j=0}e=F[d>>2]+f|0;h=F[b+16>>2];k:{if((e|0)>(h|0)){e=e-F[b+4>>2]|0;break k}if((0-h|0)<=(e|0)){break k}e=F[b+4>>2]+e|0}c=F[d+4>>2]+g|0;l:{if((h|0)<(c|0)){c=c-F[b+4>>2]|0;break l}if((0-h|0)<=(c|0)){break l}c=F[b+4>>2]+c|0}m:{if(j){b=c;break m}b=c;n:{o:{p:{d=4-i|0;switch((d>>>0<4?d:0-i|0)-1|0){case 2:break n;case 1:break o;case 0:break p;default:break m}}b=0-e|0;e=c;break m}b=0-c|0;e=0-e|0;break m}b=e;e=0-c|0}q:{if(m){c=b;break q}r:{s:{if((e|0)>=0){c=1;f=1;if((b|0)>=0){break r}d=1;c=-1;f=-1;if(e){break s}break r}d=-1;c=-1;f=-1;if((b|0)<=0){break r}}c=(b|0)<=0?-1:1;f=d}d=e<<1;e=L(f,h);d=d-e|0;f=(L(c,f)|0)>=0;g=f?0-d|0:d;d=L(c,h);c=(g+d|0)/2|0;b=(b<<1)-d|0;e=(e+(f?0-b|0:b)|0)/2|0}b=a;F[b>>2]=e+k;F[b+4>>2]=c+k}function Uh(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;F[a+8>>2]=e;m=a+32|0;h=F[m>>2];g=F[a+36>>2]-h>>2;a:{if(g>>>0>>0){qa(m,e-g|0);f=F[a+8>>2];break a}f=e;if(f>>>0>=g>>>0){break a}F[a+36>>2]=h+(e<<2);f=e}g=e>>>0>1073741823?-1:e<<2;n=ma(ka(g),0,g);b:{if((f|0)<=0){break b}h=F[a+32>>2];while(1){f=i<<2;g=F[f+n>>2];j=F[a+16>>2];c:{if((g|0)>(j|0)){F[f+h>>2]=j;break c}f=f+h|0;j=F[a+12>>2];if((j|0)>(g|0)){F[f>>2]=j;break c}F[f>>2]=g}f=F[a+8>>2];i=i+1|0;if((f|0)>(i|0)){continue}break}if((f|0)<=0){break b}i=0;while(1){g=i<<2;f=g+c|0;g=F[b+g>>2]+F[g+h>>2]|0;F[f>>2]=g;d:{if((g|0)>F[a+16>>2]){g=g-F[a+20>>2]|0}else{if((g|0)>=F[a+12>>2]){break d}g=g+F[a+20>>2]|0}F[f>>2]=g}f=F[a+8>>2];i=i+1|0;if((f|0)>(i|0)){continue}break}}if(!((d|0)<=(e|0)|(f|0)<=0)){p=0-e<<2;g=e;while(1){e:{if((f|0)<=0){break e}l=g<<2;o=l+c|0;q=o+p|0;j=F[m>>2];i=0;while(1){f=i<<2;h=F[f+q>>2];k=F[a+16>>2];f:{if((h|0)>(k|0)){F[f+j>>2]=k;break f}f=f+j|0;k=F[a+12>>2];if((k|0)>(h|0)){F[f>>2]=k;break f}F[f>>2]=h}f=F[a+8>>2];i=i+1|0;if((f|0)>(i|0)){continue}break}i=0;if((f|0)<=0){break e}l=b+l|0;while(1){h=i<<2;f=h+o|0;h=F[h+l>>2]+F[h+j>>2]|0;F[f>>2]=h;g:{if((h|0)>F[a+16>>2]){h=h-F[a+20>>2]|0}else{if((h|0)>=F[a+12>>2]){break g}h=h+F[a+20>>2]|0}F[f>>2]=h}f=F[a+8>>2];i=i+1|0;if((f|0)>(i|0)){continue}break}}g=e+g|0;if((g|0)<(d|0)){continue}break}}ja(n);return 1}function yf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;j=F[b+80>>2];b=G[c+24|0];g=L(j,b);a:{if(!b){break a}h=b<<2;f=ka(h);a=f;k=b&7;if(k){while(1){F[a>>2]=-1073741824;a=a+4|0;e=e+1|0;if((k|0)!=(e|0)){continue}break}}if((b-1&1073741823)>>>0<7){break a}e=f+h|0;while(1){F[a+24>>2]=-1073741824;F[a+28>>2]=-1073741824;F[a+16>>2]=-1073741824;F[a+20>>2]=-1073741824;F[a+8>>2]=-1073741824;F[a+12>>2]=-1073741824;F[a>>2]=-1073741824;F[a+4>>2]=-1073741824;a=a+32|0;if((e|0)!=(a|0)){continue}break}}e=F[d>>2];a=F[d+4>>2]-e>>2;b:{if(a>>>0>>0){qa(d,g-a|0);break b}if(a>>>0<=g>>>0){break b}F[d+4>>2]=e+(g<<2)}c:{d:{e:{if(!j){i=1;break e}if(!b){a=0;while(1){if(!lb(c,G[c+84|0]?a:F[F[c+68>>2]+(a<<2)>>2],D[c+24|0],f)){break e}a=a+1|0;i=j>>>0<=a>>>0;if((a|0)!=(j|0)){continue}break}break e}n=b&252;k=b&3;o=b>>>0<4;e=0;b=0;while(1){if(!lb(c,G[c+84|0]?b:F[F[c+68>>2]+(b<<2)>>2],D[c+24|0],f)){break e}m=F[d>>2];i=0;a=0;l=0;if(!o){while(1){g=(e<<2)+m|0;h=a<<2;J[g>>2]=J[h+f>>2];J[g+4>>2]=J[(h|4)+f>>2];J[g+8>>2]=J[(h|8)+f>>2];J[g+12>>2]=J[(h|12)+f>>2];a=a+4|0;e=e+4|0;l=l+4|0;if((n|0)!=(l|0)){continue}break}}if(k){while(1){J[(e<<2)+m>>2]=J[(a<<2)+f>>2];a=a+1|0;e=e+1|0;i=i+1|0;if((k|0)!=(i|0)){continue}break}}b=b+1|0;i=j>>>0<=b>>>0;if((b|0)!=(j|0)){continue}break}break d}if(!f){break c}}ja(f)}return i|0}function $d(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;k=Z-16|0;Z=k;c=F[b+20>>2];d=F[b+16>>2];e=d+4|0;c=e>>>0<4?c+1|0:c;g=F[b+12>>2];a:{if(I[b+8>>2]>>0&(g|0)<=(c|0)|(c|0)>(g|0)){break a}d=d+F[b>>2]|0;h=G[d|0]|G[d+1|0]<<8|(G[d+2|0]<<16|G[d+3|0]<<24);F[b+16>>2]=e;F[b+20>>2]=c;if((h|0)<0){break a}Na(a+76|0,h);c=k;F[c>>2]=0;F[c+4>>2]=0;D[c+5|0]=0;D[c+6|0]=0;D[c+7|0]=0;D[c+8|0]=0;D[c+9|0]=0;D[c+10|0]=0;D[c+11|0]=0;D[c+12|0]=0;b:{if(!Aa(c,b)){break b}if(h){g=1;while(1){d=1<>2]+(i>>>3&536870908)|0;e=e^g;if(e&1){d=F[f>>2]&(d^-1)}else{d=d|F[f>>2]}g=e^1;F[f>>2]=d;i=i+1|0;if((h|0)!=(i|0)){continue}break}}i=0;c=F[b+8>>2];e=F[b+12>>2];f=e;e=F[b+20>>2];g=e;l=F[b+16>>2];d=l+4|0;e=d>>>0<4?e+1|0:e;h=d;if(d>>>0>c>>>0&(e|0)>=(f|0)|(e|0)>(f|0)){break b}m=F[b>>2];d=m+l|0;j=G[d|0]|G[d+1|0]<<8|(G[d+2|0]<<16|G[d+3|0]<<24);F[b+16>>2]=h;F[b+20>>2]=e;d=c;c=g;e=l+8|0;c=e>>>0<8?c+1|0:c;if(d>>>0>>0&(c|0)>=(f|0)|(c|0)>(f|0)){break b}d=h+m|0;d=G[d|0]|G[d+1|0]<<8|(G[d+2|0]<<16|G[d+3|0]<<24);F[b+16>>2]=e;F[b+20>>2]=c;if((d|0)<(j|0)){break b}F[a+16>>2]=d;F[a+12>>2]=j;c=(d>>31)-((j>>31)+(d>>>0>>0)|0)|0;b=d-j|0;if(!c&b>>>0>2147483646|c){break b}i=1;c=b+1|0;F[a+20>>2]=c;b=c>>>1|0;F[a+24>>2]=b;F[a+28>>2]=0-b;if(c&1){break b}F[a+24>>2]=b-1}}Z=k+16|0;return i|0}function tf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;a=0;k=Z-16|0;Z=k;j=F[b+80>>2];e=G[c+24|0];b=L(j,e);a:{b:{c:{d:{f=F[c+28>>2];if(!(!G[c+84|0]|(f|0)!=5&(f|0)!=6)){e=F[c+48>>2];c=F[F[c>>2]>>2];F[k+8>>2]=0;F[k>>2]=0;F[k+4>>2]=0;if(b){if((b|0)<0){break d}b=b<<2;a=ka(b);g=la(a,c+e|0,b)+b|0}b=F[d>>2];if(b){F[d+4>>2]=b;ja(b)}F[d+8>>2]=g;F[d+4>>2]=g;F[d>>2]=a;h=1;break a}if(e){f=e<<2;a=ka(f);ma(a,0,f)}i=F[d>>2];f=F[d+4>>2]-i>>2;e:{if(f>>>0>>0){qa(d,b-f|0);break e}if(b>>>0>=f>>>0){break e}F[d+4>>2]=i+(b<<2)}if(!j){h=1;break c}if(!e){b=0;while(1){if(!xb(c,G[c+84|0]?b:F[F[c+68>>2]+(b<<2)>>2],D[c+24|0],a)){break c}b=b+1|0;h=j>>>0<=b>>>0;if((b|0)!=(j|0)){continue}break}break c}o=e&252;m=e&3;p=e>>>0<4;e=0;while(1){if(!xb(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],a)){break c}n=F[d>>2];l=0;b=0;h=0;if(!p){while(1){f=(g<<2)+n|0;i=b<<2;F[f>>2]=F[i+a>>2];F[f+4>>2]=F[(i|4)+a>>2];F[f+8>>2]=F[(i|8)+a>>2];F[f+12>>2]=F[(i|12)+a>>2];b=b+4|0;g=g+4|0;h=h+4|0;if((o|0)!=(h|0)){continue}break}}if(m){while(1){F[(g<<2)+n>>2]=F[(b<<2)+a>>2];b=b+1|0;g=g+1|0;l=l+1|0;if((l|0)!=(m|0)){continue}break}}e=e+1|0;h=j>>>0<=e>>>0;if((e|0)!=(j|0)){continue}break}break b}na();v()}if(!a){break a}}ja(a)}Z=k+16|0;return h|0}function cd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;a=0;k=Z-16|0;Z=k;j=F[b+80>>2];e=G[c+24|0];b=L(j,e);a:{b:{c:{d:{f=F[c+28>>2];if(!(!G[c+84|0]|(f|0)!=5&(f|0)!=6)){e=F[c+48>>2];c=F[F[c>>2]>>2];F[k+8>>2]=0;F[k>>2]=0;F[k+4>>2]=0;if(b){if((b|0)<0){break d}b=b<<2;a=ka(b);g=la(a,c+e|0,b)+b|0}b=F[d>>2];if(b){F[d+4>>2]=b;ja(b)}F[d+8>>2]=g;F[d+4>>2]=g;F[d>>2]=a;h=1;break a}if(e){f=e<<2;a=ka(f);ma(a,0,f)}i=F[d>>2];f=F[d+4>>2]-i>>2;e:{if(f>>>0>>0){qa(d,b-f|0);break e}if(b>>>0>=f>>>0){break e}F[d+4>>2]=i+(b<<2)}if(!j){h=1;break c}if(!e){b=0;while(1){if(!yb(c,G[c+84|0]?b:F[F[c+68>>2]+(b<<2)>>2],D[c+24|0],a)){break c}b=b+1|0;h=j>>>0<=b>>>0;if((b|0)!=(j|0)){continue}break}break c}o=e&252;m=e&3;p=e>>>0<4;e=0;while(1){if(!yb(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],a)){break c}n=F[d>>2];l=0;b=0;h=0;if(!p){while(1){f=(g<<2)+n|0;i=b<<2;F[f>>2]=F[i+a>>2];F[f+4>>2]=F[(i|4)+a>>2];F[f+8>>2]=F[(i|8)+a>>2];F[f+12>>2]=F[(i|12)+a>>2];b=b+4|0;g=g+4|0;h=h+4|0;if((o|0)!=(h|0)){continue}break}}if(m){while(1){F[(g<<2)+n>>2]=F[(b<<2)+a>>2];b=b+1|0;g=g+1|0;l=l+1|0;if((l|0)!=(m|0)){continue}break}}e=e+1|0;h=j>>>0<=e>>>0;if((e|0)!=(j|0)){continue}break}break b}na();v()}if(!a){break a}}ja(a)}Z=k+16|0;return h|0}function vf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;a=0;k=Z-16|0;Z=k;j=F[b+80>>2];e=G[c+24|0];b=L(j,e);a:{b:{c:{d:{f=F[c+28>>2];if(!(!G[c+84|0]|(f|0)!=3&(f|0)!=4)){e=F[c+48>>2];c=F[F[c>>2]>>2];F[k+8>>2]=0;F[k>>2]=0;F[k+4>>2]=0;if(b){if((b|0)<0){break d}b=b<<1;a=ka(b);g=la(a,c+e|0,b)+b|0}b=F[d>>2];if(b){F[d+4>>2]=b;ja(b)}F[d+8>>2]=g;F[d+4>>2]=g;F[d>>2]=a;h=1;break a}if(e){f=e<<1;a=ka(f);ma(a,0,f)}i=F[d>>2];f=F[d+4>>2]-i>>1;e:{if(f>>>0>>0){kd(d,b-f|0);break e}if(b>>>0>=f>>>0){break e}F[d+4>>2]=i+(b<<1)}if(!j){h=1;break c}if(!e){b=0;while(1){if(!Ab(c,G[c+84|0]?b:F[F[c+68>>2]+(b<<2)>>2],D[c+24|0],a)){break c}b=b+1|0;h=j>>>0<=b>>>0;if((b|0)!=(j|0)){continue}break}break c}o=e&252;m=e&3;p=e>>>0<4;e=0;while(1){if(!Ab(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],a)){break c}n=F[d>>2];l=0;b=0;h=0;if(!p){while(1){f=(g<<1)+n|0;i=b<<1;E[f>>1]=H[i+a>>1];E[f+2>>1]=H[(i|2)+a>>1];E[f+4>>1]=H[(i|4)+a>>1];E[f+6>>1]=H[(i|6)+a>>1];b=b+4|0;g=g+4|0;h=h+4|0;if((o|0)!=(h|0)){continue}break}}if(m){while(1){E[(g<<1)+n>>1]=H[(b<<1)+a>>1];b=b+1|0;g=g+1|0;l=l+1|0;if((l|0)!=(m|0)){continue}break}}e=e+1|0;h=j>>>0<=e>>>0;if((e|0)!=(j|0)){continue}break}break b}na();v()}if(!a){break a}}ja(a)}Z=k+16|0;return h|0}function uf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;a=0;k=Z-16|0;Z=k;j=F[b+80>>2];e=G[c+24|0];b=L(j,e);a:{b:{c:{d:{f=F[c+28>>2];if(!(!G[c+84|0]|(f|0)!=3&(f|0)!=4)){e=F[c+48>>2];c=F[F[c>>2]>>2];F[k+8>>2]=0;F[k>>2]=0;F[k+4>>2]=0;if(b){if((b|0)<0){break d}b=b<<1;a=ka(b);g=la(a,c+e|0,b)+b|0}b=F[d>>2];if(b){F[d+4>>2]=b;ja(b)}F[d+8>>2]=g;F[d+4>>2]=g;F[d>>2]=a;h=1;break a}if(e){f=e<<1;a=ka(f);ma(a,0,f)}i=F[d>>2];f=F[d+4>>2]-i>>1;e:{if(f>>>0>>0){kd(d,b-f|0);break e}if(b>>>0>=f>>>0){break e}F[d+4>>2]=i+(b<<1)}if(!j){h=1;break c}if(!e){b=0;while(1){if(!zb(c,G[c+84|0]?b:F[F[c+68>>2]+(b<<2)>>2],D[c+24|0],a)){break c}b=b+1|0;h=j>>>0<=b>>>0;if((b|0)!=(j|0)){continue}break}break c}o=e&252;m=e&3;p=e>>>0<4;e=0;while(1){if(!zb(c,G[c+84|0]?e:F[F[c+68>>2]+(e<<2)>>2],D[c+24|0],a)){break c}n=F[d>>2];l=0;b=0;h=0;if(!p){while(1){f=(g<<1)+n|0;i=b<<1;E[f>>1]=H[i+a>>1];E[f+2>>1]=H[(i|2)+a>>1];E[f+4>>1]=H[(i|4)+a>>1];E[f+6>>1]=H[(i|6)+a>>1];b=b+4|0;g=g+4|0;h=h+4|0;if((o|0)!=(h|0)){continue}break}}if(m){while(1){E[(g<<1)+n>>1]=H[(b<<1)+a>>1];b=b+1|0;g=g+1|0;l=l+1|0;if((l|0)!=(m|0)){continue}break}}e=e+1|0;h=j>>>0<=e>>>0;if((e|0)!=(j|0)){continue}break}break b}na();v()}if(!a){break a}}ja(a)}Z=k+16|0;return h|0}function kc(a,b){var c=0,d=0,e=0,f=0,g=0;f=-1;d=-1;a:{if((b|0)==-1){break a}d=b+1|0;f=(d>>>0)%3|0?d:b-2|0;d=b-1|0;if((b>>>0)%3|0){break a}d=b+2|0}b:{c:{d:{switch(F[a+168>>2]){case 0:case 1:e=F[a+148>>2];c=1;b=F[a+156>>2];g=b+(((f|0)==-1?-1:F[F[e>>2]+(f<<2)>>2])<<2)|0;F[g>>2]=F[g>>2]+1;b=(((d|0)==-1?-1:F[F[e>>2]+(d<<2)>>2])<<2)+b|0;break c;case 5:e=F[a+148>>2];c=-1;c=((b|0)!=-1?F[F[e>>2]+(b<<2)>>2]:c)<<2;b=F[a+156>>2];c=c+b|0;F[c>>2]=F[c>>2]+1;c=(((f|0)==-1?-1:F[F[e>>2]+(f<<2)>>2])<<2)+b|0;F[c>>2]=F[c>>2]+1;c=2;b=(((d|0)==-1?-1:F[F[e>>2]+(d<<2)>>2])<<2)+b|0;break c;case 3:e=F[a+148>>2];c=-1;c=((b|0)!=-1?F[F[e>>2]+(b<<2)>>2]:c)<<2;b=F[a+156>>2];c=c+b|0;F[c>>2]=F[c>>2]+1;c=(((f|0)==-1?-1:F[F[e>>2]+(f<<2)>>2])<<2)+b|0;F[c>>2]=F[c>>2]+2;c=1;b=(((d|0)==-1?-1:F[F[e>>2]+(d<<2)>>2])<<2)+b|0;break c;case 7:break d;default:break b}}e=F[a+148>>2];c=-1;c=((b|0)!=-1?F[F[e>>2]+(b<<2)>>2]:c)<<2;b=F[a+156>>2];c=c+b|0;F[c>>2]=F[c>>2]+2;c=(((f|0)==-1?-1:F[F[e>>2]+(f<<2)>>2])<<2)+b|0;F[c>>2]=F[c>>2]+2;c=2;b=(((d|0)==-1?-1:F[F[e>>2]+(d<<2)>>2])<<2)+b|0}F[b>>2]=F[b>>2]+c}c=a;b=F[F[a+156>>2]+(((f|0)==-1?-1:F[F[F[a+148>>2]>>2]+(f<<2)>>2])<<2)>>2];d=F[a+180>>2];a=F[a+176>>2];F[c+172>>2]=(a|0)<=(b|0)?((b|0)<(d|0)?b:d)-a|0:0}function Dg(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;a:{b=F[a+32>>2];f=F[b+8>>2];h=F[b+12>>2];g=F[b+20>>2];c=F[b+16>>2];e=0;b:{if((h|0)<=(g|0)&c>>>0>=f>>>0|(g|0)>(h|0)){break b}f=G[F[b>>2]+c|0];e=b;b=g;c=c+1|0;b=c?b:b+1|0;F[e+16>>2]=c;F[e+20>>2]=b;c:{if(!f){break c}while(1){if($[F[F[a>>2]+16>>2]](a,d)|0){d=d+1|0;if((f|0)!=(d|0)){continue}break c}break}return 0}d=F[a+8>>2];b=F[a+12>>2];if((d|0)!=(b|0)){while(1){c=F[d>>2];if(!($[F[F[c>>2]+8>>2]](c,a,F[a+4>>2])|0)){break a}d=d+4|0;if((b|0)!=(d|0)){continue}break}}d:{if(!f){break d}d=0;while(1){b=F[F[a+8>>2]+(d<<2)>>2];if(!($[F[F[b>>2]+12>>2]](b,F[a+32>>2])|0)){break a}d=d+1|0;if((f|0)!=(d|0)){continue}break}if(!f){break d}i=a+20|0;b=0;while(1){d=0;j=b<<2;c=F[j+F[a+8>>2]>>2];k=$[F[F[c>>2]+24>>2]](c)|0;if((k|0)>0){while(1){c=F[F[a+8>>2]+j>>2];c=$[F[F[c>>2]+20>>2]](c,d)|0;e=F[a+20>>2];g=F[a+24>>2]-e>>2;e:{if(c>>>0>>0){break e}h=c+1|0;if(h>>>0>g>>>0){qa(i,h-g|0);e=F[i>>2];break e}if(g>>>0<=h>>>0){break e}F[a+24>>2]=(h<<2)+e}F[(c<<2)+e>>2]=b;d=d+1|0;if((k|0)!=(d|0)){continue}break}}b=b+1|0;if((f|0)!=(b|0)){continue}break}}e=0;if(!($[F[F[a>>2]+28>>2]](a)|0)){break b}e=$[F[F[a>>2]+32>>2]](a)|0}return e|0}return 0}function Ye(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0;Oc(a,b,c);c=F[a+84>>2];d=F[a+88>>2]-c>>2;a:{if((d|0)>(b|0)){break a}b=b+1|0;if(b>>>0>d>>>0){b:{d=b-d|0;e=F[a+92>>2];c=F[a+88>>2];if(d>>>0<=e-c>>2>>>0){c:{if(!d){break c}b=c;e=d&7;if(e){while(1){F[b>>2]=1;b=b+4|0;f=f+1|0;if((e|0)!=(f|0)){continue}break}}c=(d<<2)+c|0;if((d-1&1073741823)>>>0<7){break c}while(1){F[b+24>>2]=1;F[b+28>>2]=1;F[b+16>>2]=1;F[b+20>>2]=1;F[b+8>>2]=1;F[b+12>>2]=1;F[b>>2]=1;F[b+4>>2]=1;b=b+32|0;if((c|0)!=(b|0)){continue}break}}F[a+88>>2]=c;break b}d:{b=c;c=F[a+84>>2];i=b-c|0;g=i>>2;b=g+d|0;if(b>>>0<1073741824){e=e-c|0;h=e>>>1|0;e=e>>>0>=2147483644?1073741823:b>>>0>>0?h:b;if(e){if(e>>>0>=1073741824){break d}j=ka(e<<2)}g=(g<<2)+j|0;b=g;h=d&7;if(h){while(1){F[b>>2]=1;b=b+4|0;f=f+1|0;if((h|0)!=(f|0)){continue}break}}f=g+(d<<2)|0;if((d-1&1073741823)>>>0>=7){while(1){F[b+24>>2]=1;F[b+28>>2]=1;F[b+16>>2]=1;F[b+20>>2]=1;F[b+8>>2]=1;F[b+12>>2]=1;F[b>>2]=1;F[b+4>>2]=1;b=b+32|0;if((f|0)!=(b|0)){continue}break}}b=pa(j,c,i);F[a+88>>2]=f;F[a+84>>2]=b;F[a+92>>2]=b+(e<<2);if(c){ja(c)}break b}na();v()}oa();v()}return}if(b>>>0>=d>>>0){break a}F[a+88>>2]=c+(b<<2)}}function ab(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;d=F[a+8>>2];e=F[a+4>>2];if(d-e>>2>>>0>=b>>>0){a:{if(!b){break a}d=e;g=b&7;if(g){while(1){F[d>>2]=F[c>>2];d=d+4|0;f=f+1|0;if((g|0)!=(f|0)){continue}break}}e=(b<<2)+e|0;if((b-1&1073741823)>>>0<7){break a}while(1){F[d>>2]=F[c>>2];F[d+4>>2]=F[c>>2];F[d+8>>2]=F[c>>2];F[d+12>>2]=F[c>>2];F[d+16>>2]=F[c>>2];F[d+20>>2]=F[c>>2];F[d+24>>2]=F[c>>2];F[d+28>>2]=F[c>>2];d=d+32|0;if((e|0)!=(d|0)){continue}break}}F[a+4>>2]=e;return}b:{i=F[a>>2];f=e-i>>2;h=f+b|0;if(h>>>0<1073741824){j=d-i|0;d=j>>>1|0;h=j>>>0>=2147483644?1073741823:d>>>0>h>>>0?d:h;if(h){if(h>>>0>=1073741824){break b}k=ka(h<<2)}f=(f<<2)+k|0;d=f;j=b&7;if(j){while(1){F[d>>2]=F[c>>2];d=d+4|0;g=g+1|0;if((j|0)!=(g|0)){continue}break}}g=(b<<2)+f|0;if((b-1&1073741823)>>>0>=7){while(1){F[d>>2]=F[c>>2];F[d+4>>2]=F[c>>2];F[d+8>>2]=F[c>>2];F[d+12>>2]=F[c>>2];F[d+16>>2]=F[c>>2];F[d+20>>2]=F[c>>2];F[d+24>>2]=F[c>>2];F[d+28>>2]=F[c>>2];d=d+32|0;if((g|0)!=(d|0)){continue}break}}if((e|0)!=(i|0)){while(1){f=f-4|0;e=e-4|0;F[f>>2]=F[e>>2];if((e|0)!=(i|0)){continue}break}}F[a+8>>2]=(h<<2)+k;F[a+4>>2]=g;F[a>>2]=f;if(i){ja(i)}return}na();v()}oa();v()}function Xb(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;d=F[a+8>>2];e=F[a>>2];if(d-e>>2>>>0>=b>>>0){f=F[a+4>>2];h=f-e>>2;i=b>>>0>h>>>0?h:b;a:{if(!i){break a}d=e;g=i;j=g&7;if(j){while(1){F[d>>2]=F[c>>2];g=g-1|0;d=d+4|0;k=k+1|0;if((k|0)!=(j|0)){continue}break}}if(i>>>0<8){break a}while(1){F[d>>2]=F[c>>2];F[d+4>>2]=F[c>>2];F[d+8>>2]=F[c>>2];F[d+12>>2]=F[c>>2];F[d+16>>2]=F[c>>2];F[d+20>>2]=F[c>>2];F[d+24>>2]=F[c>>2];F[d+28>>2]=F[c>>2];d=d+32|0;g=g-8|0;if(g){continue}break}}if(b>>>0>h>>>0){b=(b-h<<2)+f|0;while(1){F[f>>2]=F[c>>2];f=f+4|0;if((b|0)!=(f|0)){continue}break}F[a+4>>2]=b;return}F[a+4>>2]=e+(b<<2);return}if(e){F[a+4>>2]=e;ja(e);F[a+8>>2]=0;F[a>>2]=0;F[a+4>>2]=0;d=0}b:{if(b>>>0>=1073741824){break b}e=d>>>1|0;d=d>>>0>=2147483644?1073741823:b>>>0>>0?e:b;if(d>>>0>=1073741824){break b}d=d<<2;e=ka(d);F[a>>2]=e;F[a+8>>2]=d+e;c=F[c>>2];d=e;g=b&7;if(g){while(1){F[d>>2]=c;d=d+4|0;f=f+1|0;if((g|0)!=(f|0)){continue}break}}e=e+(b<<2)|0;if((b-1&1073741823)>>>0>=7){while(1){F[d+28>>2]=c;F[d+24>>2]=c;F[d+20>>2]=c;F[d+16>>2]=c;F[d+12>>2]=c;F[d+8>>2]=c;F[d+4>>2]=c;F[d>>2]=c;d=d+32|0;if((e|0)!=(d|0)){continue}break}}F[a+4>>2]=e;return}na();v()}function Ka(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;f=(c>>>0)/3|0;j=F[(F[F[a+8>>2]+96>>2]+L(f,12)|0)+(c-L(f,3)<<2)>>2];a:{h=F[F[a+12>>2]+4>>2];e=F[h+4>>2];if((e|0)!=F[h+8>>2]){F[e>>2]=j;F[h+4>>2]=e+4;break a}b:{i=F[h>>2];f=e-i|0;g=f>>2;d=g+1|0;if(d>>>0<1073741824){k=g<<2;g=f>>>1|0;g=f>>>0>=2147483644?1073741823:d>>>0>>0?g:d;if(g){if(g>>>0>=1073741824){break b}f=ka(g<<2)}else{f=0}d=k+f|0;F[d>>2]=j;j=d+4|0;if((e|0)!=(i|0)){while(1){d=d-4|0;e=e-4|0;F[d>>2]=F[e>>2];if((e|0)!=(i|0)){continue}break}}F[h+8>>2]=f+(g<<2);F[h+4>>2]=j;F[h>>2]=d;if(i){ja(i)}break a}na();v()}oa();v()}c:{d:{h=F[a+4>>2];e=F[h+4>>2];e:{if((e|0)!=F[h+8>>2]){F[e>>2]=c;F[h+4>>2]=e+4;break e}i=F[h>>2];f=e-i|0;j=f>>2;d=j+1|0;if(d>>>0>=1073741824){break d}g=f>>>1|0;g=f>>>0>=2147483644?1073741823:d>>>0>>0?g:d;if(g){if(g>>>0>=1073741824){break c}f=ka(g<<2)}else{f=0}d=f+(j<<2)|0;F[d>>2]=c;c=d+4|0;if((e|0)!=(i|0)){while(1){d=d-4|0;e=e-4|0;F[d>>2]=F[e>>2];if((e|0)!=(i|0)){continue}break}}F[h+8>>2]=f+(g<<2);F[h+4>>2]=c;F[h>>2]=d;if(!i){break e}ja(i)}a=F[a+4>>2];F[F[a+12>>2]+(b<<2)>>2]=F[a+24>>2];F[a+24>>2]=F[a+24>>2]+1;return}na();v()}oa();v()}function pb(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0;h=d-c|0;if((h|0)<=0){return}a:{e=F[a+8>>2];i=F[a+4>>2];if((e-i|0)>=(h|0)){j=i-b|0;if((j|0)>=(h|0)){f=i;g=d;break a}f=i;g=c+j|0;if((g|0)!=(d|0)){e=g;while(1){D[f|0]=G[e|0];f=f+1|0;e=e+1|0;if((e|0)!=(d|0)){continue}break}}F[a+4>>2]=f;if((j|0)>0){break a}return}k=F[a>>2];g=(i-k|0)+h|0;if((g|0)>=0){j=b-k|0;f=e-k|0;e=f<<1;f=f>>>0>=1073741823?2147483647:e>>>0>g>>>0?e:g;if(f){e=ka(f)}else{e=0}g=j+e|0;if((c|0)!=(d|0)){g=la(g,c,h)+h|0}d=pa(e,k,j);c=i-b|0;b=pa(g,b,c);F[a+8>>2]=e+f;F[a+4>>2]=b+c;F[a>>2]=d;if(k){ja(k)}return}na();v()}e=f;d=e-h|0;if(i>>>0>d>>>0){while(1){D[e|0]=G[d|0];e=e+1|0;d=d+1|0;if(i>>>0>d>>>0){continue}break}}F[a+4>>2]=e;a=b+h|0;if((a|0)!=(f|0)){a=f-a|0;pa(f-a|0,b,a)}if((c|0)==(g|0)){return}f=(c^-1)+g|0;a=g-c&7;b:{if(!a){e=b;break b}d=0;e=b;while(1){D[e|0]=G[c|0];e=e+1|0;c=c+1|0;d=d+1|0;if((a|0)!=(d|0)){continue}break}}if(f>>>0<7){return}while(1){D[e|0]=G[c|0];D[e+1|0]=G[c+1|0];D[e+2|0]=G[c+2|0];D[e+3|0]=G[c+3|0];D[e+4|0]=G[c+4|0];D[e+5|0]=G[c+5|0];D[e+6|0]=G[c+6|0];D[e+7|0]=G[c+7|0];e=e+8|0;c=c+8|0;if((g|0)!=(c|0)){continue}break}}function la(a,b,c){var d=0,e=0,f=0;if(c>>>0>=512){Y(a|0,b|0,c|0);return a}e=a+c|0;a:{if(!((a^b)&3)){b:{if(!(a&3)){c=a;break b}if(!c){c=a;break b}c=a;while(1){D[c|0]=G[b|0];b=b+1|0;c=c+1|0;if(!(c&3)){break b}if(c>>>0>>0){continue}break}}d=e&-4;c:{if(d>>>0<64){break c}f=d+-64|0;if(f>>>0>>0){break c}while(1){F[c>>2]=F[b>>2];F[c+4>>2]=F[b+4>>2];F[c+8>>2]=F[b+8>>2];F[c+12>>2]=F[b+12>>2];F[c+16>>2]=F[b+16>>2];F[c+20>>2]=F[b+20>>2];F[c+24>>2]=F[b+24>>2];F[c+28>>2]=F[b+28>>2];F[c+32>>2]=F[b+32>>2];F[c+36>>2]=F[b+36>>2];F[c+40>>2]=F[b+40>>2];F[c+44>>2]=F[b+44>>2];F[c+48>>2]=F[b+48>>2];F[c+52>>2]=F[b+52>>2];F[c+56>>2]=F[b+56>>2];F[c+60>>2]=F[b+60>>2];b=b- -64|0;c=c- -64|0;if(f>>>0>=c>>>0){continue}break}}if(c>>>0>=d>>>0){break a}while(1){F[c>>2]=F[b>>2];b=b+4|0;c=c+4|0;if(d>>>0>c>>>0){continue}break}break a}if(e>>>0<4){c=a;break a}d=e-4|0;if(d>>>0>>0){c=a;break a}c=a;while(1){D[c|0]=G[b|0];D[c+1|0]=G[b+1|0];D[c+2|0]=G[b+2|0];D[c+3|0]=G[b+3|0];b=b+4|0;c=c+4|0;if(d>>>0>=c>>>0){continue}break}}if(c>>>0>>0){while(1){D[c|0]=G[b|0];b=b+1|0;c=c+1|0;if((e|0)!=(c|0)){continue}break}}return a}function sd(a){a=a|0;var b=0,c=0,d=0,e=0,f=0;F[a>>2]=8336;d=a+232|0;b=F[d+196>>2];if(b){F[d+200>>2]=b;ja(b)}c=F[d+184>>2];if(c){b=c;e=F[d+188>>2];if((b|0)!=(e|0)){while(1){b=e-12|0;f=F[b>>2];if(f){F[e-8>>2]=f;ja(f)}e=b;if((b|0)!=(c|0)){continue}break}b=F[d+184>>2]}F[d+188>>2]=c;ja(b)}b=F[d+156>>2];if(b){F[d+160>>2]=b;ja(b)}c=F[d+136>>2];F[d+136>>2]=0;if(c){e=c-4|0;b=F[e>>2];if(b){b=c+(b<<4)|0;while(1){b=b-16|0;if((c|0)!=(b|0)){continue}break}}ja(e)}td(a+216|0);b=F[a+196>>2];if(b){F[a+200>>2]=b;ja(b)}b=F[a+184>>2];if(b){F[a+188>>2]=b;ja(b)}b=F[a+172>>2];if(b){F[a+176>>2]=b;ja(b)}b=F[a+160>>2];if(b){F[a+164>>2]=b;ja(b)}b=F[a+144>>2];if(b){while(1){c=F[b>>2];ja(b);b=c;if(b){continue}break}}b=F[a+136>>2];F[a+136>>2]=0;if(b){ja(b)}b=F[a+120>>2];if(b){ja(b)}b=F[a+108>>2];if(b){ja(b)}b=F[a+96>>2];if(b){ja(b)}b=F[a+72>>2];if(b){F[a+76>>2]=b;ja(b)}b=F[a+60>>2];if(b){ja(b)}b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}b=F[a+36>>2];if(b){F[a+40>>2]=b;ja(b)}b=F[a+24>>2];if(b){F[a+28>>2]=b;ja(b)}b=F[a+12>>2];if(b){F[a+16>>2]=b;ja(b)}b=F[a+8>>2];F[a+8>>2]=0;if(b){Za(b)}return a|0}function Fa(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;d=F[a+8>>2];e=F[a+4>>2];if(d-e>>2>>>0>=b>>>0){a:{if(!b){break a}d=e;f=b&7;if(f){while(1){F[d>>2]=F[c>>2];d=d+4|0;h=h+1|0;if((f|0)!=(h|0)){continue}break}}e=(b<<2)+e|0;if((b-1&1073741823)>>>0<7){break a}while(1){F[d>>2]=F[c>>2];F[d+4>>2]=F[c>>2];F[d+8>>2]=F[c>>2];F[d+12>>2]=F[c>>2];F[d+16>>2]=F[c>>2];F[d+20>>2]=F[c>>2];F[d+24>>2]=F[c>>2];F[d+28>>2]=F[c>>2];d=d+32|0;if((e|0)!=(d|0)){continue}break}}F[a+4>>2]=e;return}b:{i=F[a>>2];j=e-i|0;f=j>>2;g=f+b|0;if(g>>>0<1073741824){d=d-i|0;e=d>>>1|0;g=d>>>0>=2147483644?1073741823:e>>>0>g>>>0?e:g;if(g){if(g>>>0>=1073741824){break b}k=ka(g<<2)}f=(f<<2)+k|0;d=f;e=b&7;if(e){while(1){F[d>>2]=F[c>>2];d=d+4|0;h=h+1|0;if((e|0)!=(h|0)){continue}break}}e=f+(b<<2)|0;if((b-1&1073741823)>>>0>=7){while(1){F[d>>2]=F[c>>2];F[d+4>>2]=F[c>>2];F[d+8>>2]=F[c>>2];F[d+12>>2]=F[c>>2];F[d+16>>2]=F[c>>2];F[d+20>>2]=F[c>>2];F[d+24>>2]=F[c>>2];F[d+28>>2]=F[c>>2];d=d+32|0;if((e|0)!=(d|0)){continue}break}}b=pa(k,i,j);F[a+4>>2]=e;F[a>>2]=b;F[a+8>>2]=b+(g<<2);if(i){ja(i)}return}na();v()}oa();v()}function Sb(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;if(G[a+11|0]>>>7|0){d=F[a+4>>2]}else{d=G[a+11|0]&127}if(d>>>0>>0){h=Z-16|0;Z=h;b=b-d|0;if(b){g=G[a+11|0]>>>7|0?(F[a+8>>2]&2147483647)-1|0:10;if(G[a+11|0]>>>7|0){d=F[a+4>>2]}else{d=G[a+11|0]&127}i=d+b|0;if(g-d>>>0>>0){a:{e=Z-16|0;Z=e;c=i-g|0;if(c>>>0<=2147483631-g>>>0){if(G[a+11|0]>>>7|0){f=F[a>>2]}else{f=a}if(g>>>0<1073741799){F[e+12>>2]=g<<1;F[e>>2]=c+g;c=Z-16|0;Z=c;Z=c+16|0;c=e+12|0;c=F[(I[e>>2]>2]?c:e)>>2];if(c>>>0>=11){j=c+16&-16;c=j-1|0;c=(c|0)==11?j:c}else{c=10}c=c+1|0}else{c=2147483631}sb(e,c);c=F[e>>2];if(d){db(c,f,d)}if((g|0)!=10){ja(f)}F[a>>2]=c;F[a+8>>2]=F[a+8>>2]&-2147483648|F[e+4>>2]&2147483647;F[a+8>>2]=F[a+8>>2]|-2147483648;Z=e+16|0;break a}za();v()}}f=d;if(G[a+11|0]>>>7|0){d=F[a>>2]}else{d=a}f=f+d|0;e=Z-16|0;Z=e;D[e+15|0]=0;while(1){if(b){D[f|0]=G[e+15|0];b=b-1|0;f=f+1|0;continue}break}Z=e+16|0;Ic(a,i);D[h+15|0]=0;D[d+i|0]=G[h+15|0]}Z=h+16|0;return}if(G[a+11|0]>>>7|0){d=F[a>>2]}else{d=a}f=Z-16|0;Z=f;Ic(a,b);D[f+15|0]=0;D[b+d|0]=G[f+15|0];Z=f+16|0}function Zc(a,b){var c=0,d=0,e=0,f=0,g=0,h=0;g=Z-16|0;Z=g;a:{b:{if(b){F[a+88>>2]=0;F[a+92>>2]=0;d=F[a+84>>2];F[a+84>>2]=0;if(d){ja(d)}F[a+76>>2]=0;F[a+80>>2]=0;d=F[a+72>>2];F[a+72>>2]=0;if(d){ja(d)}d=F[b>>2];c=F[b+4>>2];D[g+15|0]=0;Ea(a,c-d>>2,g+15|0);d=F[b+28>>2];c=F[b+24>>2];D[g+14|0]=0;Ea(a+12|0,d-c>>2,g+14|0);Xb(a+28|0,F[b+4>>2]-F[b>>2]>>2,10284);c=F[b+28>>2]-F[b+24>>2]|0;f=c>>2;e=F[a+52>>2];c:{if(f>>>0<=F[a+60>>2]-e>>2>>>0){break c}if((c|0)<0){break b}d=F[a+56>>2];c=ka(c);f=c+(f<<2)|0;h=c+(d-e&-4)|0;c=h;if((d|0)!=(e|0)){while(1){c=c-4|0;d=d-4|0;F[c>>2]=F[d>>2];if((d|0)!=(e|0)){continue}break}}F[a+60>>2]=f;F[a+56>>2]=h;F[a+52>>2]=c;if(!e){break c}ja(e)}c=F[b+28>>2]-F[b+24>>2]|0;f=c>>2;e=F[a+40>>2];d:{if(f>>>0<=F[a+48>>2]-e>>2>>>0){break d}if((c|0)<0){break a}d=F[a+44>>2];c=ka(c);f=c+(f<<2)|0;h=c+(d-e&-4)|0;c=h;if((d|0)!=(e|0)){while(1){c=c-4|0;d=d-4|0;F[c>>2]=F[d>>2];if((d|0)!=(e|0)){continue}break}}F[a+48>>2]=f;F[a+44>>2]=h;F[a+40>>2]=c;if(!e){break d}ja(e)}D[a+24|0]=1;F[a+64>>2]=b}Z=g+16|0;return}na();v()}na();v()}function nb(a,b){var c=0,d=0,e=0;c=(a|0)==(b|0);D[b+12|0]=c;a:{if(c){break a}while(1){d=F[b+8>>2];if(G[d+12|0]){break a}b:{c=F[d+8>>2];e=F[c>>2];if((e|0)==(d|0)){e=F[c+4>>2];if(!(!e|G[e+12|0])){break b}c:{if(F[d>>2]==(b|0)){b=d;break c}b=F[d+4>>2];a=F[b>>2];F[d+4>>2]=a;if(a){F[a+8>>2]=d;c=F[d+8>>2]}F[b+8>>2]=c;a=F[d+8>>2];F[((F[a>>2]!=(d|0))<<2)+a>>2]=b;F[b>>2]=d;F[d+8>>2]=b;c=F[b+8>>2];d=F[c>>2]}D[b+12|0]=1;D[c+12|0]=0;a=F[d+4>>2];F[c>>2]=a;if(a){F[a+8>>2]=c}F[d+8>>2]=F[c+8>>2];a=F[c+8>>2];F[((F[a>>2]!=(c|0))<<2)+a>>2]=d;F[d+4>>2]=c;F[c+8>>2]=d;return}if(!(G[e+12|0]|!e)){break b}d:{if(F[d>>2]!=(b|0)){b=d;break d}a=F[b+4>>2];F[d>>2]=a;if(a){F[a+8>>2]=d;c=F[d+8>>2]}F[b+8>>2]=c;a=F[d+8>>2];F[((F[a>>2]!=(d|0))<<2)+a>>2]=b;F[b+4>>2]=d;F[d+8>>2]=b;c=F[b+8>>2]}D[b+12|0]=1;D[c+12|0]=0;a=F[c+4>>2];b=F[a>>2];F[c+4>>2]=b;if(b){F[b+8>>2]=c}F[a+8>>2]=F[c+8>>2];b=F[c+8>>2];F[((F[b>>2]!=(c|0))<<2)+b>>2]=a;F[a>>2]=c;F[c+8>>2]=a;break a}D[d+12|0]=1;D[c+12|0]=(a|0)==(c|0);D[e+12|0]=1;b=c;if((c|0)!=(a|0)){continue}break}}}function mi(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;a:{b:{c:{d:{e:{f:{g:{h:{i:{j:{k:{if(b){if(!c){break k}if(!d){break j}e=O(d)-O(b)|0;if(e>>>0<=31){break i}break c}if((d|0)==1|d>>>0>1){break c}_=0;a=(a>>>0)/(c>>>0)|0;break a}if(!a){break h}if(!d|d-1&d){break g}a=b>>>ji(d)|0;_=0;break a}if(!(c-1&c)){break f}h=(O(c)+33|0)-O(b)|0;g=0-h|0;break d}h=e+1|0;g=63-e|0;break d}_=0;a=(b>>>0)/(d>>>0)|0;break a}e=O(d)-O(b)|0;if(e>>>0<31){break e}break c}if((c|0)==1){break b}d=ji(c);c=d&31;if((d&63)>>>0>=32){a=b>>>c|0}else{e=b>>>c|0;a=((1<>>c}_=e;break a}h=e+1|0;g=63-e|0}e=h&63;f=e&31;if(e>>>0>=32){e=0;i=b>>>f|0}else{e=b>>>f|0;i=((1<>>f}g=g&63;f=g&31;if(g>>>0>=32){b=a<>>32-f|b<>>31;e=i<<1|b>>>31;f=m-(j+(e>>>0>g>>>0)|0)>>31;k=c&f;i=e-k|0;e=j-((d&f)+(e>>>0>>0)|0)|0;b=b<<1|a>>>31;a=l|a<<1;l=f&1;h=h-1|0;if(h){continue}break}}_=b<<1|a>>>31;a=l|a<<1;break a}a=0;b=0}_=b}return a}function yh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;c=F[b+88>>2];if(!(!c|F[c>>2]!=1)){e=F[c+8>>2];F[a+4>>2]=G[e|0]|G[e+1|0]<<8|(G[e+2|0]<<16|G[e+3|0]<<24);f=a+8|0;d=G[b+24|0];h=F[a+8>>2];g=F[a+12>>2]-h>>2;a:{if(d>>>0>g>>>0){qa(f,d-g|0);d=G[b+24|0];e=F[c+8>>2];break a}if(d>>>0>=g>>>0){break a}F[a+12>>2]=h+(d<<2)}b:{if(!d){b=4;break b}h=d&3;f=F[f>>2];c:{if(d-1>>>0<3){b=4;d=0;break c}k=d&252;d=0;b=4;while(1){g=d<<2;c=b+e|0;F[g+f>>2]=G[c|0]|G[c+1|0]<<8|(G[c+2|0]<<16|G[c+3|0]<<24);F[f+(g|4)>>2]=G[c+4|0]|G[c+5|0]<<8|(G[c+6|0]<<16|G[c+7|0]<<24);F[f+(g|8)>>2]=G[c+8|0]|G[c+9|0]<<8|(G[c+10|0]<<16|G[c+11|0]<<24);F[f+(g|12)>>2]=G[c+12|0]|G[c+13|0]<<8|(G[c+14|0]<<16|G[c+15|0]<<24);d=d+4|0;b=b+16|0;i=i+4|0;if((k|0)!=(i|0)){continue}break}}if(!h){break b}while(1){c=b+e|0;F[f+(d<<2)>>2]=G[c|0]|G[c+1|0]<<8|(G[c+2|0]<<16|G[c+3|0]<<24);d=d+1|0;b=b+4|0;j=j+1|0;if((h|0)!=(j|0)){continue}break}}d=a;a=b+e|0;F[d+20>>2]=G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24);d=1}return d|0}function Yg(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0;g=Z-16|0;Z=g;e=F[a+4>>2];d=F[e>>2];a:{b=F[a+12>>2];c=F[b+28>>2]-F[b+24>>2]|0;f=c>>2;b:{if(f>>>0<=F[e+8>>2]-d>>2>>>0){break b}if((c|0)<0){break a}b=F[e+4>>2];c=ka(c);f=c+(f<<2)|0;h=c+(b-d&-4)|0;c=h;if((b|0)!=(d|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(d|0)){continue}break}}F[e+8>>2]=f;F[e+4>>2]=h;F[e>>2]=c;if(!d){break b}ja(d)}b=F[a+12>>2];c=F[b+28>>2];b=F[b+24>>2];F[g+12>>2]=0;b=c-b>>2;d=a+96|0;e=F[d>>2];c=F[a+100>>2]-e>>2;c:{if(b>>>0>c>>>0){Fa(d,b-c|0,g+12|0);break c}if(b>>>0>=c>>>0){break c}F[a+100>>2]=e+(b<<2)}e=a+8|0;b=F[a+116>>2];d:{if(b){d=F[b>>2];if((d|0)==F[b+4>>2]){c=1;break d}b=0;while(1){c=rd(e,F[(b<<2)+d>>2]);if(!c){break d}f=F[a+116>>2];d=F[f>>2];b=b+1|0;if(b>>>0>2]-d>>2>>>0){continue}break}break d}c=1;a=F[a+12>>2];a=F[a+4>>2]-F[a>>2]|0;if(a>>>0<12){break d}a=(a>>2>>>0)/3|0;b=0;while(1){c=rd(e,L(b,3));if(!c){break d}b=b+1|0;if((a|0)!=(b|0)){continue}break}}Z=g+16|0;return c|0}na();v()}function md(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0;a:{b:{c:{if(!b){if((d|0)<0){break a}f=F[a+4>>2];b=F[a>>2];d=f-b|0;if(c>>>0>d>>>0){g=c-d|0;e=F[a+8>>2];if(g>>>0<=e-f>>>0){i=a,j=ma(f,0,g)+g|0,F[i+4>>2]=j;break c}if((c|0)<0){break b}f=e-b|0;e=f<<1;f=f>>>0>=1073741823?2147483647:c>>>0>>0?e:c;e=ka(f);ma(e+d|0,0,g);d=pa(e,b,d);F[a+8>>2]=d+f;F[a+4>>2]=c+d;F[a>>2]=d;if(!b){break c}ja(b);break c}if(c>>>0>=d>>>0){break c}F[a+4>>2]=b+c;break c}if((d|0)<0){break a}e=F[a+4>>2];f=F[a>>2];g=e-f|0;d:{if((d|0)<=0&c>>>0<=g>>>0|(d|0)<0){break d}if(c>>>0>g>>>0){d=c-g|0;h=F[a+8>>2];if(d>>>0<=h-e>>>0){i=a,j=ma(e,0,d)+d|0,F[i+4>>2]=j;break d}if((c|0)<0){break b}e=h-f|0;h=e<<1;e=e>>>0>=1073741823?2147483647:c>>>0>>0?h:c;h=ka(e);ma(h+g|0,0,d);d=pa(h,f,g);F[a+8>>2]=d+e;F[a+4>>2]=c+d;F[a>>2]=d;if(!f){break d}ja(f);break d}if(c>>>0>=g>>>0){break d}F[a+4>>2]=c+f}if(!c){break c}pa(F[a>>2],b,c)}b=F[a+28>>2];c=F[a+24>>2]+1|0;b=c?b:b+1|0;F[a+24>>2]=c;F[a+28>>2]=b;g=1;break a}na();v()}return g}function Lg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;k=F[a+12>>2];c=F[a+68>>2];d=F[c+80>>2];D[b+84|0]=0;n=b+68|0;i=F[b+68>>2];e=F[b+72>>2]-i>>2;a:{if(e>>>0>>0){ab(n,d-e|0,9124);c=F[a+68>>2];d=F[c+80>>2];break a}if(d>>>0>=e>>>0){break a}F[b+72>>2]=i+(d<<2)}b=F[c+100>>2];e=F[c+96>>2];i=(b-e|0)/12|0;m=1;b:{if((b|0)==(e|0)){break b}k=F[k+28>>2];f=F[k>>2];if((f|0)==-1){return 0}o=i>>>0<=1?1:i;c=e;b=0;m=0;while(1){g=F[c>>2];if(g>>>0>=d>>>0){break b}j=F[F[a+72>>2]+12>>2];h=F[j+(f<<2)>>2];if(h>>>0>=d>>>0){break b}f=F[n>>2];F[f+(g<<2)>>2]=h;g=k+(l<<2)|0;h=F[g+4>>2];if((h|0)==-1){break b}l=F[c+4>>2];if(l>>>0>=d>>>0){break b}h=F[(h<<2)+j>>2];if(h>>>0>=d>>>0){break b}F[f+(l<<2)>>2]=h;g=F[g+8>>2];if((g|0)==-1){break b}c=F[c+8>>2];if(c>>>0>=d>>>0){break b}j=F[(g<<2)+j>>2];if(j>>>0>=d>>>0){break b}F[f+(c<<2)>>2]=j;b=b+1|0;m=i>>>0<=b>>>0;if((b|0)==(o|0)){break b}c=e+L(b,12)|0;l=L(b,3);f=F[k+(l<<2)>>2];if((f|0)!=-1){continue}break}}return m|0}function ag(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;h=F[d+80>>2];e=Z-48|0;Z=e;a=F[a+4>>2];m=a-2|0;a:{if(m>>>0>28){break a}j=F[F[d>>2]>>2]+F[d+48>>2]|0;F[e+16>>2]=a;a=-1<>2]=a^-1;a=-2-a|0;F[e+24>>2]=a;F[e+32>>2]=(a|0)/2;J[e+28>>2]=M(2)/M(a|0);f=F[c>>2];if((f|0)!=F[c+4>>2]){a=0;d=0;while(1){g=F[(d<<2)+f>>2];h=e+36|0;k=F[F[b>>2]>>2];l=F[b+48>>2];f=F[b+40>>2];i=F[b+44>>2];if(!G[b+84|0]){g=F[F[b+68>>2]+(g<<2)>>2]}g=ki(f,i,g,0);i=g;g=g+l|0;la(h,g+k|0,f);Kc(e+16|0,h,e+12|0,e+8|0);f=a<<2;F[f+j>>2]=F[e+12>>2];F[(f|4)+j>>2]=F[e+8>>2];a=a+2|0;d=d+1|0;f=F[c>>2];if(d>>>0>2]-f>>2>>>0){continue}break}break a}if(!h){break a}d=0;a=0;while(1){k=e+36|0;l=F[F[b>>2]>>2];i=F[b+48>>2];c=F[b+40>>2];f=ki(c,F[b+44>>2],G[b+84|0]?a:F[F[b+68>>2]+(a<<2)>>2],0);g=f;f=f+i|0;la(k,f+l|0,c);Kc(e+16|0,k,e+12|0,e+8|0);c=d<<2;F[c+j>>2]=F[e+12>>2];F[(c|4)+j>>2]=F[e+8>>2];d=d+2|0;a=a+1|0;if((h|0)!=(a|0)){continue}break}}Z=e+48|0;return m>>>0<29|0}function Zg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;c=F[a+12>>2];d=F[a+108>>2];e=F[d+80>>2];D[b+84|0]=0;m=b+68|0;h=F[b+68>>2];f=F[b+72>>2]-h>>2;a:{if(f>>>0>>0){ab(m,e-f|0,9124);d=F[a+108>>2];e=F[d+80>>2];break a}if(e>>>0>=f>>>0){break a}F[b+72>>2]=h+(e<<2)}b=F[d+100>>2];f=F[d+96>>2];h=(b-f|0)/12|0;k=1;b:{if((b|0)==(f|0)){break b}n=h>>>0<=1?1:h;o=F[c>>2];c=0;d=f;b=0;k=0;while(1){c=(c<<2)+o|0;i=F[c>>2];if((i|0)==-1){break b}g=F[d>>2];if(g>>>0>=e>>>0){break b}l=F[F[a+112>>2]+12>>2];j=F[l+(i<<2)>>2];if(j>>>0>=e>>>0){break b}i=F[m>>2];F[i+(g<<2)>>2]=j;g=F[c+4>>2];if((g|0)==-1){break b}j=F[d+4>>2];if(j>>>0>=e>>>0){break b}g=F[(g<<2)+l>>2];if(g>>>0>=e>>>0){break b}F[i+(j<<2)>>2]=g;c=F[c+8>>2];if((c|0)==-1){break b}d=F[d+8>>2];if(d>>>0>=e>>>0){break b}c=F[(c<<2)+l>>2];if(c>>>0>=e>>>0){break b}F[i+(d<<2)>>2]=c;b=b+1|0;k=h>>>0<=b>>>0;if((b|0)==(n|0)){break b}c=L(b,3);d=f+L(b,12)|0;if((b|0)!=1431655765){continue}break}}return k|0}function xd(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=M(0),j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0;k=Z-16|0;Z=k;if(F[c+28>>2]==9){d=F[a+4>>2];h=G[c+24|0];e=h<<2;f=ka(e);l=k+8|0;F[l>>2]=1065353216;i=J[a+20>>2];d=-1<0){J[l>>2]=i/M(d|0)}o=(d|0)>0;a:{if(!o){break a}j=F[c+80>>2];if(!j){break a}if(h){p=F[F[b>>2]>>2]+F[b+48>>2]|0;t=h&254;u=h&1;b=0;while(1){m=F[a+8>>2];i=J[l>>2];d=0;n=0;if((h|0)!=1){while(1){g=d<<2;q=(b<<2)+p|0;J[g+f>>2]=M(i*M(F[q>>2]))+J[g+m>>2];g=g|4;J[g+f>>2]=M(i*M(F[q+4>>2]))+J[g+m>>2];d=d+2|0;b=b+2|0;n=n+2|0;if((t|0)!=(n|0)){continue}break}}if(u){d=d<<2;J[d+f>>2]=M(i*M(F[(b<<2)+p>>2]))+J[d+m>>2];b=b+1|0}la(F[F[c+64>>2]>>2]+r|0,f,e);r=e+r|0;s=s+1|0;if((s|0)!=(j|0)){continue}break}break a}b=0;if((j|0)!=1){a=j&-2;d=0;while(1){la(F[F[c+64>>2]>>2]+b|0,f,e);b=b+e|0;la(b+F[F[c+64>>2]>>2]|0,f,e);b=b+e|0;d=d+2|0;if((a|0)!=(d|0)){continue}break}}if(!(j&1)){break a}la(F[F[c+64>>2]>>2]+b|0,f,e)}ja(f)}Z=k+16|0;return o|0}function Rg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;c=F[a+12>>2];d=F[a+68>>2];e=F[d+80>>2];D[b+84|0]=0;m=b+68|0;h=F[b+68>>2];f=F[b+72>>2]-h>>2;a:{if(f>>>0>>0){ab(m,e-f|0,9124);d=F[a+68>>2];e=F[d+80>>2];break a}if(e>>>0>=f>>>0){break a}F[b+72>>2]=h+(e<<2)}b=F[d+100>>2];f=F[d+96>>2];h=(b-f|0)/12|0;k=1;b:{if((b|0)==(f|0)){break b}n=h>>>0<=1?1:h;o=F[c>>2];c=0;d=f;b=0;k=0;while(1){c=(c<<2)+o|0;i=F[c>>2];if((i|0)==-1){break b}g=F[d>>2];if(g>>>0>=e>>>0){break b}l=F[F[a+72>>2]+12>>2];j=F[l+(i<<2)>>2];if(j>>>0>=e>>>0){break b}i=F[m>>2];F[i+(g<<2)>>2]=j;g=F[c+4>>2];if((g|0)==-1){break b}j=F[d+4>>2];if(j>>>0>=e>>>0){break b}g=F[(g<<2)+l>>2];if(g>>>0>=e>>>0){break b}F[i+(j<<2)>>2]=g;c=F[c+8>>2];if((c|0)==-1){break b}d=F[d+8>>2];if(d>>>0>=e>>>0){break b}c=F[(c<<2)+l>>2];if(c>>>0>=e>>>0){break b}F[i+(d<<2)>>2]=c;b=b+1|0;k=h>>>0<=b>>>0;if((b|0)==(n|0)){break b}c=L(b,3);d=f+L(b,12)|0;if((b|0)!=1431655765){continue}break}}return k|0}function Na(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;d=Z-16|0;Z=d;a:{f=F[a+4>>2];b:{if(f>>>0>>0){e=b-f|0;c=F[a+8>>2];g=c<<5;c:{if(!(e>>>0>g>>>0|f>>>0>g-e>>>0)){F[a+4>>2]=b;h=f&31;b=F[a>>2]+(f>>>3&536870908)|0;break c}F[d+8>>2]=0;F[d>>2]=0;F[d+4>>2]=0;if((b|0)<0){break a}if(g>>>0<=1073741822){c=c<<6;b=b+31&-32;b=b>>>0>>0?c:b}else{b=2147483647}$a(d,b);f=F[a+4>>2];F[d+4>>2]=f+e;i=F[a>>2];b=F[d>>2];d:{if((f|0)<=0){break d}c=f>>>5|0;if(f>>>0>=32){pa(b,i,c<<2)}g=c<<2;b=g+b|0;h=f&31;if(h){c=-1>>>32-h|0;F[b>>2]=F[b>>2]&(c^-1)|F[i+g>>2]&c}i=F[a>>2]}F[a>>2]=F[d>>2];F[d>>2]=i;c=F[a+4>>2];F[a+4>>2]=F[d+4>>2];F[d+4>>2]=c;c=F[a+8>>2];F[a+8>>2]=F[d+8>>2];F[d+8>>2]=c;if(!i){break c}ja(i)}if(!e){break b}if(h){c=32-h|0;a=c>>>0>>0?c:e;F[b>>2]=F[b>>2]&(-1<>>c-a^-1);e=e-a|0;b=b+4|0}a=e>>>5|0;if(e>>>0>=32){ma(b,0,a<<2)}if((e&-32)==(e|0)){break b}a=(a<<2)+b|0;F[a>>2]=F[a>>2]&(-1>>>32-(e&31)^-1);break b}F[a+4>>2]=b}Z=d+16|0;return}na();v()}function Aa(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0;i=Z-16|0;Z=i;f=F[b+20>>2];h=F[b+12>>2];c=F[b+16>>2];a:{if((f|0)>=(h|0)&c>>>0>=I[b+8>>2]|(f|0)>(h|0)){break a}D[a+12|0]=G[c+F[b>>2]|0];c=F[b+20>>2];f=F[b+16>>2]+1|0;c=f?c:c+1|0;F[b+16>>2]=f;F[b+20>>2]=c;if(!Qd(1,i+12|0,b)){break a}h=F[b+8>>2];f=F[b+16>>2];g=h-f|0;c=F[i+12>>2];d=f>>>0>h>>>0;h=F[b+20>>2];e=F[b+12>>2]-(d+h|0)|0;if(g>>>0>>0&(e|0)<=0|(e|0)<0|(c|0)<=0){break a}g=f+F[b>>2]|0;F[a>>2]=g;b:{c:{e=c-1|0;j=e+g|0;d=G[j|0];d:{if(d>>>0<=63){F[a+4>>2]=e;d=G[j|0]&63;break d}e:{switch((d>>>6|0)-1|0){case 1:break c;case 0:break e;default:break a}}if(c>>>0<2){break a}e=c-2|0;F[a+4>>2]=e;g=g+e|0;d=G[g+1|0]<<8&16128|G[g|0]}F[a+8>>2]=d+4096;break b}if(c>>>0<3){break a}e=c-3|0;F[a+4>>2]=e;d=a;a=g+e|0;a=G[a+1|0]<<8|G[a+2|0]<<16&4128768|G[a|0];F[d+8>>2]=a+4096;if(a>>>0>1044479){break a}}a=h;d=c;c=c+f|0;a=d>>>0>c>>>0?a+1|0:a;F[b+16>>2]=c;F[b+20>>2]=a;k=1}Z=i+16|0;return k}function qd(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0;e=F[a+12>>2];i=F[a+8>>2];d=e-i>>2;b=G[b+24|0];a:{if(d>>>0>>0){qa(a+8|0,b-d|0);i=F[a+8>>2];e=F[a+12>>2];break a}if(b>>>0>=d>>>0){break a}e=(b<<2)+i|0;F[a+12>>2]=e}b=0;f=F[c+8>>2];h=F[c+12>>2];j=F[c+20>>2];e=e-i|0;d=F[c+16>>2];g=e+d|0;j=e>>>0>g>>>0?j+1|0:j;b:{if(f>>>0>>0&(h|0)<=(j|0)|(h|0)<(j|0)){break b}la(i,d+F[c>>2]|0,e);d=F[c+20>>2];g=e;e=e+F[c+16>>2]|0;d=g>>>0>e>>>0?d+1|0:d;F[c+16>>2]=e;F[c+20>>2]=d;f=F[c+8>>2];h=F[c+12>>2];g=e+4|0;d=g>>>0<4?d+1|0:d;if(f>>>0>>0&(d|0)>=(h|0)|(d|0)>(h|0)){break b}d=e+F[c>>2]|0;F[a+20>>2]=G[d|0]|G[d+1|0]<<8|(G[d+2|0]<<16|G[d+3|0]<<24);d=F[c+20>>2];g=d;f=d;e=F[c+16>>2];d=e+4|0;f=d>>>0<4?f+1|0:f;F[c+16>>2]=d;F[c+20>>2]=f;h=F[c+12>>2];if((f|0)>=(h|0)&d>>>0>=I[c+8>>2]|(f|0)>(h|0)){break b}f=G[d+F[c>>2]|0];d=g;e=e+5|0;d=e>>>0<5?d+1|0:d;F[c+16>>2]=e;F[c+20>>2]=d;if(f-1>>>0>29){break b}F[a+4>>2]=f;b=1}return b|0}function Kc(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;j=+J[b>>2];k=+J[b+4>>2];l=+J[b+8>>2];g=N(j)+N(k)+N(l);a:{if(!(g>1e-6)){j=1;k=0;e=0;break a}g=1/g;k=g*k;j=g*j;e=g*l<0}h=F[a+16>>2];l=+(h|0);g=R(j*l+.5);b:{if(N(g)<2147483648){m=~~g;break b}m=-2147483648}f=m>>31;i=(f^m)-f|0;g=R(k*l+.5);c:{if(N(g)<2147483648){f=~~g;break c}f=-2147483648}b=f>>31;b=h-(i+((f^b)-b|0)|0)|0;i=(b|0)>0?b:0;e=e?0-i|0:i;f=f+(b>>31&((f|0)>0?b:0-b|0))|0;d:{if((m|0)>=0){b=e+h|0;a=F[a+8>>2];e=h+f|0;break d}b=f>>31;b=(b^f)-b|0;a=F[a+8>>2];b=(e|0)<0?b:a-b|0;e=(f|0)<0?i:a-i|0}e:{if(!(b|e)){b=a;break e}if(!((a|0)!=(b|0)|e)){b=a;break e}if(!((a|0)!=(e|0)|b)){b=a;break e}if(!((b|0)<=(h|0)|e)){b=(h<<1)-b|0;a=0;break e}if(!((a|0)!=(e|0)|(b|0)>=(h|0))){b=(h<<1)-b|0;break e}if(!((a|0)!=(b|0)|(e|0)>=(h|0))){b=a;a=(h<<1)-e|0;break e}if(b){a=e;break e}b=0;if((e|0)<=(h|0)){a=e;break e}a=(h<<1)-e|0}F[c>>2]=a;F[d>>2]=b}function ye(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;a:{if(!$c(a,b)){break a}h=a+36|0;g=$[F[F[a>>2]+24>>2]](a)|0;e=F[a+40>>2];d=F[a+36>>2];c=e-d>>2;b:{if(g>>>0>c>>>0){Pb(h,g-c|0);break b}if(c>>>0<=g>>>0){break b}d=d+(g<<2)|0;if((d|0)!=(e|0)){while(1){e=e-4|0;c=F[e>>2];F[e>>2]=0;if(c){$[F[F[c>>2]+4>>2]](c)}if((d|0)!=(e|0)){continue}break}}F[a+40>>2]=d}c=1;if((g|0)<=0){break a}e=0;while(1){c:{c=F[b+20>>2];f=F[b+12>>2];d=F[b+16>>2];if((c|0)>=(f|0)&d>>>0>=I[b+8>>2]|(c|0)>(f|0)){break c}f=G[F[b>>2]+d|0];d=d+1|0;c=d?c:c+1|0;F[b+16>>2]=d;F[b+20>>2]=c;d=$[F[F[a>>2]+48>>2]](a,f)|0;f=e<<2;i=f+F[a+36>>2]|0;c=F[i>>2];F[i>>2]=d;if(c){$[F[F[c>>2]+4>>2]](c)}c=F[F[h>>2]+f>>2];if(!c){break c}if(!(k=c,l=$[F[F[a>>2]+28>>2]](a)|0,m=$[F[F[a>>2]+20>>2]](a,e)|0,j=F[F[c>>2]+8>>2],$[j](k|0,l|0,m|0)|0)){break c}c=1;e=e+1|0;if((g|0)!=(e|0)){continue}break a}break}c=0}return c|0}function Xc(a,b){var c=0,d=0,e=0,f=0,g=0,h=0;g=F[a>>2];c=g+(b>>>3&536870908)|0;F[c>>2]=F[c>>2]|1<>2];e=(b|0)==-1;d=-1;a:{if(e){break a}c=b+1|0;c=(c>>>0)%3|0?c:b-2|0;d=-1;if((c|0)==-1){break a}d=F[F[f>>2]+(c<<2)>>2]}c=F[a+12>>2];h=(d>>>3&536870908)+c|0;F[h>>2]=F[h>>2]|1<>>0)%3|0){e=b-1|0;break e}e=b+2|0;d=-1;if((e|0)==-1){break d}}d=F[F[f>>2]+(e<<2)>>2]}e=(d>>>3&536870908)+c|0;F[e>>2]=F[e>>2]|1<>2]+(b<<2)>>2];if((b|0)==-1){break b}D[a+24|0]=0;a=(b>>>3&536870908)+g|0;F[a>>2]=F[a>>2]|1<>>0)%3|0?a:b-2|0;if((a|0)!=-1){d=F[F[f>>2]+(a<<2)>>2]}a=c+(d>>>3&536870908)|0;F[a>>2]=F[a>>2]|1<>>0)%3|0){b=b-1|0;break g}b=b+2|0;a=-1;if((b|0)==-1){break f}}a=F[F[f>>2]+(b<<2)>>2]}b=1<>>3&536870908)|0;c=F[a>>2];break c}a=c+536870908|0;b=F[c+536870908>>2];c=-2147483648}F[a>>2]=b|c}}function zc(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=M(0),f=M(0),g=M(0),h=M(0),i=M(0),j=0,k=M(0),l=M(0),m=M(0),n=M(0),o=0;a:{if(F[c+28>>2]!=9|G[c+24|0]!=3){break a}a=F[a+4>>2];if(a-2>>>0>28){break a}o=1;j=F[c+80>>2];if(!j){break a}k=M(M(2)/M((1<>2]>>2]+F[c+48>>2]|0;a=F[F[b>>2]>>2]+F[b+48>>2]|0;b=0;while(1){g=M(0);l=M(0);m=M(0);e=M(M(M(F[a>>2])*k)+M(-1));f=M(M(M(F[a+4>>2])*k)+M(-1));i=M(M(M(1)-M(N(e)))-M(N(f)));h=M(Q(M(-i),M(0)));n=M(-h);f=M(f+(f>>8;D[c+10|0]=d>>>16;D[c+11|0]=d>>>24;d=(w(l),y(2));D[c+4|0]=d;D[c+5|0]=d>>>8;D[c+6|0]=d>>>16;D[c+7|0]=d>>>24;d=(w(g),y(2));D[c|0]=d;D[c+1|0]=d>>>8;D[c+2|0]=d>>>16;D[c+3|0]=d>>>24;c=c+12|0;b=b+1|0;if((j|0)!=(b|0)){continue}break}}return o|0}function Md(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;g=Z-16|0;Z=g;a:{if(!Sa(1,g+8|0,b)){break a}d=F[b+8>>2];e=F[b+16>>2];f=d-e|0;h=F[g+12>>2];c=d>>>0>>0;d=F[b+20>>2];i=F[b+12>>2]-(c+d|0)|0;c=F[g+8>>2];if((h|0)==(i|0)&c>>>0>f>>>0|h>>>0>i>>>0){break a}d=d+h|0;f=c+e|0;d=f>>>0>>0?d+1|0:d;F[b+16>>2]=f;F[b+20>>2]=d;if((c|0)<=0){break a}b=F[b>>2]+e|0;F[a+40>>2]=b;e=c-1|0;d=b+e|0;f=G[d|0];b:{if(f>>>0<=63){F[a+44>>2]=e;b=G[d|0]&63;break b}c:{switch((f>>>6|0)-1|0){case 0:if(c>>>0<2){break a}c=c-2|0;F[a+44>>2]=c;b=b+c|0;b=G[b+1|0]<<8&16128|G[b|0];break b;case 1:if(c>>>0<3){break a}c=c-3|0;F[a+44>>2]=c;b=b+c|0;b=G[b+1|0]<<8|G[b+2|0]<<16&4128768|G[b|0];break b;default:break c}}c=c-4|0;F[a+44>>2]=c;b=b+c|0;b=(G[b|0]|G[b+1|0]<<8|(G[b+2|0]<<16|G[b+3|0]<<24))&1073741823}F[a+48>>2]=b+16384;j=b>>>0<4177920}Z=g+16|0;return j}function Tf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0;a:{a=Z-32|0;Z=a;e=ya(c);if(e>>>0<2147483632){b:{c:{if(e>>>0>=11){g=(e|15)+1|0;f=ka(g);F[a+24>>2]=g|-2147483648;F[a+16>>2]=f;F[a+20>>2]=e;g=e+f|0;break c}D[a+27|0]=e;f=a+16|0;g=e+f|0;if(!e){break b}}la(f,c,e)}D[g|0]=0;F[a+8>>2]=0;F[a>>2]=0;F[a+4>>2]=0;d:{c=Ya(b,a+16|0);if((c|0)==(b+4|0)){break d}b=F[c+28>>2];e=F[c+32>>2];if((b|0)==(e|0)){break d}b=e-b|0;if(b&3){break d}e=b>>>2|0;f=F[a+4>>2];b=F[a>>2];g=f-b>>2;e:{if(e>>>0>g>>>0){qa(a,e-g|0);b=F[a>>2];f=F[a+4>>2];break e}if(e>>>0>=g>>>0){break e}f=(e<<2)+b|0;F[a+4>>2]=f}if((b|0)!=(f|0)){e=b;b=F[c+28>>2];la(e,b,F[c+32>>2]-b|0);break d}ta();v()}b=F[d>>2];if(b){F[d+4>>2]=b;ja(b)}F[d>>2]=F[a>>2];F[d+4>>2]=F[a+4>>2];F[d+8>>2]=F[a+8>>2];if(D[a+27|0]<0){ja(F[a+16>>2])}Z=a+32|0;break a}za();v()}}function ud(a){a=a|0;var b=0,c=0,d=0,e=0;F[a>>2]=8284;d=F[a+368>>2];F[a+368>>2]=0;if(d){e=d-4|0;b=F[e>>2];if(b){c=(b<<4)+d|0;while(1){c=c-16|0;if((d|0)!=(c|0)){continue}break}}ja(e)}td(a+216|0);b=F[a+196>>2];if(b){F[a+200>>2]=b;ja(b)}b=F[a+184>>2];if(b){F[a+188>>2]=b;ja(b)}b=F[a+172>>2];if(b){F[a+176>>2]=b;ja(b)}b=F[a+160>>2];if(b){F[a+164>>2]=b;ja(b)}c=F[a+144>>2];if(c){while(1){b=F[c>>2];ja(c);c=b;if(b){continue}break}}b=F[a+136>>2];F[a+136>>2]=0;if(b){ja(b)}b=F[a+120>>2];if(b){ja(b)}b=F[a+108>>2];if(b){ja(b)}b=F[a+96>>2];if(b){ja(b)}b=F[a+72>>2];if(b){F[a+76>>2]=b;ja(b)}b=F[a+60>>2];if(b){ja(b)}b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}b=F[a+36>>2];if(b){F[a+40>>2]=b;ja(b)}b=F[a+24>>2];if(b){F[a+28>>2]=b;ja(b)}b=F[a+12>>2];if(b){F[a+16>>2]=b;ja(b)}b=F[a+8>>2];F[a+8>>2]=0;if(b){Za(b)}return a|0}function Vf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0;d=Z-16|0;Z=d;a:{e=ya(c);if(e>>>0<2147483632){b:{c:{if(e>>>0>=11){f=(e|15)+1|0;a=ka(f);F[d+8>>2]=f|-2147483648;F[d>>2]=a;F[d+4>>2]=e;f=a+e|0;break c}D[d+11|0]=e;f=d+e|0;a=d;if(!e){break b}}la(a,c,e)}D[f|0]=0;c=G[d+11|0];e=c<<24>>24;b=F[b+4>>2];a=0;d:{if(!b){break d}a=c;c=(e|0)<0;a=c?F[d+4>>2]:a;f=c?F[d>>2]:d;while(1){c=G[b+27|0];g=c<<24>>24<0;c=g?F[b+20>>2]:c;i=c>>>0>>0;e:{f:{g:{h:{i:{j:{h=i?c:a;if(h){g=g?F[b+16>>2]:b+16|0;j=sa(f,g,h);if(j){break j}if(a>>>0>=c>>>0){break i}break e}if(a>>>0>=c>>>0){break h}break e}if((j|0)<0){break e}}c=sa(g,f,h);if(c){break g}}if(i){break f}a=1;break d}if((c|0)<0){break f}a=1;break d}b=b+4|0}b=F[b>>2];if(b){continue}break}a=0}if((e|0)<0){ja(F[d>>2])}Z=d+16|0;break a}za();v()}return a|0}function lc(a,b){var c=0,d=0;c=F[b+8>>2];F[a+4>>2]=F[b+4>>2];F[a+8>>2]=c;F[a+20>>2]=F[b+20>>2];c=F[b+16>>2];F[a+12>>2]=F[b+12>>2];F[a+16>>2]=c;a:{b:{if((a|0)!=(b|0)){c=F[b+28>>2];if(c){d=F[a+24>>2];if(F[a+32>>2]<<5>>>0>>0){if(d){ja(d);F[a+32>>2]=0;F[a+24>>2]=0;F[a+28>>2]=0;c=F[b+28>>2]}if((c|0)<0){break b}c=(c-1>>>5|0)+1|0;d=ka(c<<2);F[a+32>>2]=c;F[a+28>>2]=0;F[a+24>>2]=d;c=F[b+28>>2]}pa(d,F[b+24>>2],(c-1>>>3&536870908)+4|0);c=F[b+28>>2]}else{c=0}F[a+28>>2]=c;c=F[b+40>>2];if(c){d=F[a+36>>2];if(F[a+44>>2]<<5>>>0>>0){if(d){ja(d);F[a+44>>2]=0;F[a+36>>2]=0;F[a+40>>2]=0;c=F[b+40>>2]}if((c|0)<0){break a}c=(c-1>>>5|0)+1|0;d=ka(c<<2);F[a+44>>2]=c;F[a+40>>2]=0;F[a+36>>2]=d;c=F[b+40>>2]}pa(d,F[b+36>>2],(c-1>>>3&536870908)+4|0);b=F[b+40>>2]}else{b=0}F[a+40>>2]=b}return}na();v()}na();v()}function nc(a){var b=0,c=0,d=0;b=F[a+8>>2];d=F[a>>2];a:{if(G[a+12|0]){b:{c:{d:{e:{if((b|0)==-1){break e}c=b+1|0;b=(c>>>0)%3|0?c:b-2|0;if((b|0)==-1){break e}b=F[F[d+12>>2]+(b<<2)>>2];if((b|0)!=-1){break d}}F[a+8>>2]=-1;break c}c=b+1|0;b=(c>>>0)%3|0?c:b-2|0;F[a+8>>2]=b;if((b|0)!=-1){break b}}c=F[a+4>>2];b=-1;f:{if((c|0)==-1){break f}g:{if((c>>>0)%3|0){c=c-1|0;break g}c=c+2|0;b=-1;if((c|0)==-1){break f}}c=F[F[d+12>>2]+(c<<2)>>2];b=-1;if((c|0)==-1){break f}b=c-1|0;if((c>>>0)%3|0){break f}b=c+2|0}D[a+12|0]=0;F[a+8>>2]=b;return}if((b|0)!=F[a+4>>2]){break a}F[a+8>>2]=-1;return}c=-1;h:{if((b|0)==-1){break h}i:{if((b>>>0)%3|0){b=b-1|0;break i}b=b+2|0;c=-1;if((b|0)==-1){break h}}b=F[F[d+12>>2]+(b<<2)>>2];c=-1;if((b|0)==-1){break h}c=b-1|0;if((b>>>0)%3|0){break h}c=b+2|0}F[a+8>>2]=c}}function Od(a){var b=0,c=0,d=0;b=ka(32);D[b+26|0]=0;c=G[1475]|G[1476]<<8;D[b+24|0]=c;D[b+25|0]=c>>>8;c=G[1471]|G[1472]<<8|(G[1473]<<16|G[1474]<<24);d=G[1467]|G[1468]<<8|(G[1469]<<16|G[1470]<<24);D[b+16|0]=d;D[b+17|0]=d>>>8;D[b+18|0]=d>>>16;D[b+19|0]=d>>>24;D[b+20|0]=c;D[b+21|0]=c>>>8;D[b+22|0]=c>>>16;D[b+23|0]=c>>>24;c=G[1463]|G[1464]<<8|(G[1465]<<16|G[1466]<<24);d=G[1459]|G[1460]<<8|(G[1461]<<16|G[1462]<<24);D[b+8|0]=d;D[b+9|0]=d>>>8;D[b+10|0]=d>>>16;D[b+11|0]=d>>>24;D[b+12|0]=c;D[b+13|0]=c>>>8;D[b+14|0]=c>>>16;D[b+15|0]=c>>>24;c=G[1455]|G[1456]<<8|(G[1457]<<16|G[1458]<<24);d=G[1451]|G[1452]<<8|(G[1453]<<16|G[1454]<<24);D[b|0]=d;D[b+1|0]=d>>>8;D[b+2|0]=d>>>16;D[b+3|0]=d>>>24;D[b+4|0]=c;D[b+5|0]=c>>>8;D[b+6|0]=c>>>16;D[b+7|0]=c>>>24;F[a>>2]=-1;ra(a+4|0,b,26);ja(b)}function Kg(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0;e=F[a+4>>2];d=F[e>>2];a:{b=F[a+12>>2];c=F[b+56>>2]-F[b+52>>2]|0;f=c>>2;b:{if(f>>>0<=F[e+8>>2]-d>>2>>>0){break b}if((c|0)<0){break a}b=F[e+4>>2];c=ka(c);f=c+(f<<2)|0;g=c+(b-d&-4)|0;c=g;if((b|0)!=(d|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(d|0)){continue}break}}F[e+8>>2]=f;F[e+4>>2]=g;F[e>>2]=c;if(!d){break b}ja(d)}e=a+8|0;b=F[a+76>>2];c:{if(b){d=F[b>>2];if((d|0)==F[b+4>>2]){return 1}b=0;while(1){c=od(e,F[(b<<2)+d>>2]);if(!c){break c}f=F[a+76>>2];d=F[f>>2];b=b+1|0;if(b>>>0>2]-d>>2>>>0){continue}break}break c}c=1;a=F[F[a+12>>2]+64>>2];a=F[a+4>>2]-F[a>>2]|0;if(a>>>0<12){break c}a=(a>>2>>>0)/3|0;b=0;while(1){c=od(e,L(b,3));if(!c){break c}b=b+1|0;if((a|0)!=(b|0)){continue}break}}return c|0}na();v()}function Qg(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0;e=F[a+4>>2];d=F[e>>2];a:{b=F[a+12>>2];c=F[b+28>>2]-F[b+24>>2]|0;f=c>>2;b:{if(f>>>0<=F[e+8>>2]-d>>2>>>0){break b}if((c|0)<0){break a}b=F[e+4>>2];c=ka(c);f=c+(f<<2)|0;g=c+(b-d&-4)|0;c=g;if((b|0)!=(d|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(d|0)){continue}break}}F[e+8>>2]=f;F[e+4>>2]=g;F[e>>2]=c;if(!d){break b}ja(d)}e=a+8|0;b=F[a+76>>2];c:{if(b){d=F[b>>2];if((d|0)==F[b+4>>2]){return 1}b=0;while(1){c=pd(e,F[(b<<2)+d>>2]);if(!c){break c}f=F[a+76>>2];d=F[f>>2];b=b+1|0;if(b>>>0>2]-d>>2>>>0){continue}break}break c}c=1;a=F[a+12>>2];a=F[a+4>>2]-F[a>>2]|0;if(a>>>0<12){break c}a=(a>>2>>>0)/3|0;b=0;while(1){c=pd(e,L(b,3));if(!c){break c}b=b+1|0;if((a|0)!=(b|0)){continue}break}}return c|0}na();v()}function pa(a,b,c){var d=0,e=0;a:{if((a|0)==(b|0)){break a}e=a+c|0;if(b-e>>>0<=0-(c<<1)>>>0){return la(a,b,c)}d=(a^b)&3;b:{c:{if(a>>>0>>0){if(d){d=a;break b}if(!(a&3)){d=a;break c}d=a;while(1){if(!c){break a}D[d|0]=G[b|0];b=b+1|0;c=c-1|0;d=d+1|0;if(d&3){continue}break}break c}d:{if(d){break d}if(e&3){while(1){if(!c){break a}c=c-1|0;d=c+a|0;D[d|0]=G[b+c|0];if(d&3){continue}break}}if(c>>>0<=3){break d}while(1){c=c-4|0;F[c+a>>2]=F[b+c>>2];if(c>>>0>3){continue}break}}if(!c){break a}while(1){c=c-1|0;D[c+a|0]=G[b+c|0];if(c){continue}break}break a}if(c>>>0<=3){break b}while(1){F[d>>2]=F[b>>2];b=b+4|0;d=d+4|0;c=c-4|0;if(c>>>0>3){continue}break}}if(!c){break a}while(1){D[d|0]=G[b|0];d=d+1|0;b=b+1|0;c=c-1|0;if(c){continue}break}}return a}function Pb(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;d=F[a+8>>2];c=F[a+4>>2];if(d-c>>2>>>0>=b>>>0){if(b){b=b<<2;c=ma(c,0,b)+b|0}F[a+4>>2]=c;return}a:{b:{c:{g=F[a>>2];f=c-g>>2;e=f+b|0;if(e>>>0<1073741824){d=d-g|0;h=d>>>1|0;e=d>>>0>=2147483644?1073741823:e>>>0>>0?h:e;if(e){if(e>>>0>=1073741824){break c}i=ka(e<<2)}d=(f<<2)+i|0;f=b<<2;b=ma(d,0,f);f=b+f|0;e=(e<<2)+i|0;if((c|0)==(g|0)){break b}while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;d=d-4|0;F[d>>2]=b;if((c|0)!=(g|0)){continue}break}F[a+8>>2]=e;b=F[a+4>>2];F[a+4>>2]=f;c=F[a>>2];F[a>>2]=d;if((b|0)==(c|0)){break a}while(1){b=b-4|0;a=F[b>>2];F[b>>2]=0;if(a){$[F[F[a>>2]+4>>2]](a)}if((b|0)!=(c|0)){continue}break}break a}na();v()}oa();v()}F[a+8>>2]=e;F[a+4>>2]=f;F[a>>2]=b}if(c){ja(c)}}function Yd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0;e=F[b+8>>2];d=F[b+12>>2];g=d;d=F[b+20>>2];k=d;h=F[b+16>>2];c=h+4|0;d=c>>>0<4?d+1|0:d;i=c;a:{if(c>>>0>e>>>0&(d|0)>=(g|0)|(d|0)>(g|0)){break a}j=F[b>>2];c=j+h|0;f=G[c|0]|G[c+1|0]<<8|(G[c+2|0]<<16|G[c+3|0]<<24);F[b+16>>2]=i;F[b+20>>2]=d;c=e;e=k;d=h+8|0;e=d>>>0<8?e+1|0:e;if(c>>>0>>0&(e|0)>=(g|0)|(e|0)>(g|0)){break a}c=i+j|0;c=G[c|0]|G[c+1|0]<<8|(G[c+2|0]<<16|G[c+3|0]<<24);F[b+16>>2]=d;F[b+20>>2]=e;if((c|0)<(f|0)){break a}F[a+16>>2]=c;F[a+12>>2]=f;d=(c>>31)-((f>>31)+(c>>>0>>0)|0)|0;e=c-f|0;if(!d&e>>>0>2147483646|d){break a}d=e+1|0;F[a+20>>2]=d;e=d>>>1|0;F[a+24>>2]=e;F[a+28>>2]=0-e;if(!(d&1)){F[a+24>>2]=e-1}l=Aa(a+112|0,b)}return l|0}function Wc(a,b){var c=0,d=0,e=0,f=0;d=-1;e=-1;f=-1;a:{b:{if((b|0)==-1){break b}e=F[F[F[a+4>>2]+12>>2]+(b<<2)>>2];c=b+1|0;c=(c>>>0)%3|0?c:b-2|0;if((c|0)>=0){f=(c>>>0)/3|0;f=F[(F[F[a>>2]+96>>2]+L(f,12)|0)+(c-L(f,3)<<2)>>2]}c:{if((e|0)==-1){break c}c=((e>>>0)%3|0?-1:2)+e|0;if((c|0)<0){break c}d=(c>>>0)/3|0;d=F[(F[F[a>>2]+96>>2]+L(d,12)|0)+(c-L(d,3)<<2)>>2]}c=-1;if((d|0)!=(f|0)){break a}f=-1;d:{b=((b>>>0)%3|0?-1:2)+b|0;if((b|0)>=0){d=(b>>>0)/3|0;d=F[(F[F[a>>2]+96>>2]+L(d,12)|0)+(b-L(d,3)<<2)>>2];if((e|0)==-1){break b}break d}d=-1;if((e|0)!=-1){break d}break b}b=e+1|0;b=(b>>>0)%3|0?b:e-2|0;if((b|0)<0){break b}c=F[F[a>>2]+96>>2];a=(b>>>0)/3|0;f=F[(c+L(a,12)|0)+(b-L(a,3)<<2)>>2]}c=(d|0)!=(f|0)?-1:e}return c}function Fc(a,b){var c=0,d=0,e=0;c=Z+-64|0;Z=c;d=F[a>>2];e=F[d-4>>2];d=F[d-8>>2];F[c+32>>2]=0;F[c+36>>2]=0;F[c+40>>2]=0;F[c+44>>2]=0;F[c+48>>2]=0;F[c+52>>2]=0;D[c+55|0]=0;D[c+56|0]=0;D[c+57|0]=0;D[c+58|0]=0;D[c+59|0]=0;D[c+60|0]=0;D[c+61|0]=0;D[c+62|0]=0;F[c+24>>2]=0;F[c+28>>2]=0;F[c+20>>2]=0;F[c+16>>2]=11020;F[c+12>>2]=a;F[c+8>>2]=b;a=a+d|0;d=0;a:{if(La(e,b,0)){F[c+56>>2]=1;$[F[F[e>>2]+20>>2]](e,c+8|0,a,a,1,0);d=F[c+32>>2]==1?a:0;break a}$[F[F[e>>2]+24>>2]](e,c+8|0,a,1,0);b:{switch(F[c+44>>2]){case 0:d=F[c+48>>2]==1?F[c+36>>2]==1?F[c+40>>2]==1?F[c+28>>2]:0:0:0;break a;case 1:break b;default:break a}}if(F[c+32>>2]!=1){if(F[c+48>>2]|F[c+36>>2]!=1|F[c+40>>2]!=1){break a}}d=F[c+24>>2]}Z=c- -64|0;return d}function ma(a,b,c){var d=0,e=0,f=0,g=0;a:{if(!c){break a}D[a|0]=b;d=a+c|0;D[d-1|0]=b;if(c>>>0<3){break a}D[a+2|0]=b;D[a+1|0]=b;D[d-3|0]=b;D[d-2|0]=b;if(c>>>0<7){break a}D[a+3|0]=b;D[d-4|0]=b;if(c>>>0<9){break a}d=0-a&3;e=d+a|0;b=L(b&255,16843009);F[e>>2]=b;d=c-d&-4;c=d+e|0;F[c-4>>2]=b;if(d>>>0<9){break a}F[e+8>>2]=b;F[e+4>>2]=b;F[c-8>>2]=b;F[c-12>>2]=b;if(d>>>0<25){break a}F[e+24>>2]=b;F[e+20>>2]=b;F[e+16>>2]=b;F[e+12>>2]=b;F[c-16>>2]=b;F[c-20>>2]=b;F[c-24>>2]=b;F[c-28>>2]=b;g=e&4|24;c=d-g|0;if(c>>>0<32){break a}d=ki(b,0,1,1);f=_;b=e+g|0;while(1){F[b+24>>2]=d;F[b+28>>2]=f;F[b+16>>2]=d;F[b+20>>2]=f;F[b+8>>2]=d;F[b+12>>2]=f;F[b>>2]=d;F[b+4>>2]=f;b=b+32|0;c=c-32|0;if(c>>>0>31){continue}break}}return a}function ie(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0;d=F[b+8>>2];e=F[b+12>>2];g=e;e=F[b+20>>2];k=e;h=F[b+16>>2];c=h+4|0;e=c>>>0<4?e+1|0:e;i=c;a:{if(c>>>0>d>>>0&(e|0)>=(g|0)|(e|0)>(g|0)){break a}j=F[b>>2];c=j+h|0;f=G[c|0]|G[c+1|0]<<8|(G[c+2|0]<<16|G[c+3|0]<<24);F[b+16>>2]=i;F[b+20>>2]=e;c=d;d=k;e=h+8|0;d=e>>>0<8?d+1|0:d;if(c>>>0>>0&(d|0)>=(g|0)|(d|0)>(g|0)){break a}c=i+j|0;c=G[c|0]|G[c+1|0]<<8|(G[c+2|0]<<16|G[c+3|0]<<24);F[b+16>>2]=e;F[b+20>>2]=d;if((c|0)<(f|0)){break a}F[a+16>>2]=c;F[a+12>>2]=f;d=(c>>31)-((f>>31)+(c>>>0>>0)|0)|0;b=c-f|0;if(!d&b>>>0>2147483646|d){break a}l=1;d=b+1|0;F[a+20>>2]=d;b=d>>>1|0;F[a+24>>2]=b;F[a+28>>2]=0-b;if(d&1){break a}F[a+24>>2]=b-1}return l|0}function Uc(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0;d=Z-16|0;Z=d;f=F[a+24>>2];k=F[a+28>>2];a:{if((f|0)!=(k|0)){while(1){F[d+8>>2]=0;F[d>>2]=0;F[d+4>>2]=0;a=Sc(F[f>>2],b,d);g=G[d+11|0];h=g<<24>>24;i=3;b:{c:{d:{if(!a){break d}i=0;a=G[c+11|0];e=a<<24>>24;j=(h|0)<0?F[d+4>>2]:g;if((j|0)!=(((e|0)<0?F[c+4>>2]:a)|0)){break d}a=(e|0)<0?F[c>>2]:c;e=(h|0)<0;e:{if(!e){e=d;if(!h){break e}while(1){if(G[e|0]!=G[a|0]){break d}a=a+1|0;e=e+1|0;g=g-1|0;if(g){continue}break}break e}if(!j){break e}if(sa(e?F[d>>2]:d,a,j)){break c}}l=F[f>>2];i=1}if((h|0)>=0){break b}}ja(F[d>>2])}f:{switch(i|0){case 0:case 3:break f;default:break a}}f=f+4|0;if((k|0)!=(f|0)){continue}break}}l=0}Z=d+16|0;return l}function gb(a,b,c){var d=0,e=0,f=0,g=0,h=0,i=0;f=c-b|0;h=f>>2;d=F[a+8>>2];e=F[a>>2];if(h>>>0<=d-e>>2>>>0){d=F[a+4>>2];g=d-e|0;f=g+b|0;i=g>>2;g=i>>>0>>0?f:c;if((g|0)!=(b|0)){while(1){F[e>>2]=F[b>>2];e=e+4|0;b=b+4|0;if((g|0)!=(b|0)){continue}break}}if(h>>>0>i>>>0){if((c|0)!=(g|0)){while(1){F[d>>2]=F[f>>2];d=d+4|0;f=f+4|0;if((f|0)!=(c|0)){continue}break}}F[a+4>>2]=d;return}F[a+4>>2]=e;return}if(e){F[a+4>>2]=e;ja(e);F[a+8>>2]=0;F[a>>2]=0;F[a+4>>2]=0;d=0}a:{if((f|0)<0){break a}e=d>>>1|0;d=d>>>0>=2147483644?1073741823:e>>>0>h>>>0?e:h;if(d>>>0>=1073741824){break a}e=d<<2;d=ka(e);F[a>>2]=d;F[a+8>>2]=d+e;if((b|0)!=(c|0)){c=b;b=(f-4&-4)+4|0;d=la(d,c,b)+b|0}F[a+4>>2]=d;return}na();v()}function Ea(a,b,c){var d=0,e=0,f=0;e=Z-16|0;Z=e;F[a+4>>2]=0;a:{b:{if(!b){break b}f=F[a+8>>2];d=f<<5;c:{if(d>>>0>=b>>>0){F[a+4>>2]=b;break c}F[e+8>>2]=0;F[e>>2]=0;F[e+4>>2]=0;if((b|0)<0){break a}if(d>>>0<=1073741822){f=f<<6;d=b+31&-32;d=d>>>0>>0?f:d}else{d=2147483647}$a(e,d);f=F[a>>2];F[a>>2]=F[e>>2];F[e>>2]=f;d=F[a+4>>2];F[a+4>>2]=b;F[e+4>>2]=d;d=F[a+8>>2];F[a+8>>2]=F[e+8>>2];F[e+8>>2]=d;if(!f){break c}ja(f)}d=b>>>5|0;a=F[a>>2];if(G[c|0]){if(b>>>0>=32){ma(a,255,d<<2)}if((b&-32)==(b|0)){break b}a=a+(d<<2)|0;F[a>>2]=F[a>>2]|-1>>>32-(b&31);break b}if(b>>>0>=32){ma(a,0,d<<2)}if((b&-32)==(b|0)){break b}a=a+(d<<2)|0;F[a>>2]=F[a>>2]&(-1>>>32-(b&31)^-1)}Z=e+16|0;return}na();v()}function If(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0;e=Z-32|0;Z=e;a:{b:{f=ya(c);if(f>>>0<2147483632){c:{d:{if(f>>>0>=11){a=(f|15)+1|0;g=ka(a);F[e+24>>2]=a|-2147483648;F[e+16>>2]=g;F[e+20>>2]=f;a=f+g|0;break d}D[e+27|0]=f;g=e+16|0;a=f+g|0;if(!f){break c}}la(g,c,f)}D[a|0]=0;c=ya(d);if(c>>>0>=2147483632){break b}e:{f:{if(c>>>0>=11){f=(c|15)+1|0;a=ka(f);F[e+8>>2]=f|-2147483648;F[e>>2]=a;F[e+4>>2]=c;g=a+c|0;break f}D[e+11|0]=c;g=c+e|0;a=e;if(!c){break e}}la(a,d,c)}D[g|0]=0;c=F[b+4>>2];a=-1;g:{if(!c){break g}c=Uc(c,e+16|0,e);a=-1;if(!c){break g}a=Pc(b,F[c+24>>2])}if(D[e+11|0]<0){ja(F[e>>2])}if(D[e+27|0]<0){ja(F[e+16>>2])}Z=e+32|0;break a}za();v()}za();v()}return a|0}function se(a,b){a=a|0;b=b|0;a=0;a:{switch(b|0){case 0:a=ka(20);F[a+12>>2]=-1;F[a+16>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a>>2]=1920;return a|0;case 1:a=ka(24);F[a+12>>2]=-1;F[a+16>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a>>2]=1920;F[a+20>>2]=0;F[a>>2]=2136;return a|0;case 2:a=ka(48);F[a+12>>2]=-1;F[a+16>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a>>2]=1920;F[a+20>>2]=0;F[a>>2]=2136;F[a+24>>2]=1624;F[a>>2]=7948;F[a+32>>2]=0;F[a+36>>2]=0;F[a+28>>2]=-1;F[a+40>>2]=0;F[a+44>>2]=0;return a|0;case 3:a=ka(32);F[a+12>>2]=-1;F[a+16>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a>>2]=1920;F[a+20>>2]=0;F[a>>2]=2136;F[a+24>>2]=1032;F[a>>2]=5812;F[a+28>>2]=-1;break;default:break a}}return a|0}function Be(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;f=F[b>>2];b=F[b+4>>2];d=F[F[a+8>>2]+40>>2];j=d;m=ka((d|0)<0?-1:d);i=b-f|0;e=1;a:{if((i|0)<4){break a}b=0;g=F[c+16>>2];k=d;f=g+d|0;d=0+F[c+20>>2]|0;d=f>>>0>>0?d+1|0:d;h=F[c+12>>2];e=0;if(I[c+8>>2]>>0&(d|0)>=(h|0)|(d|0)>(h|0)){break a}e=i>>2;i=(e|0)<=1?1:e;while(1){b:{g=la(m,F[c>>2]+g|0,j);F[c+16>>2]=f;F[c+20>>2]=d;la(F[F[F[a+8>>2]+64>>2]>>2]+b|0,g,j);l=l+1|0;if((i|0)==(l|0)){break b}b=b+j|0;d=n+F[c+20>>2]|0;g=F[c+16>>2];f=k+g|0;d=f>>>0>>0?d+1|0:d;h=F[c+12>>2];if((d|0)<=(h|0)&I[c+8>>2]>=f>>>0|(d|0)<(h|0)){continue}}break}e=(e|0)<=(l|0)}ja(m);return e|0}function mh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0;F[b>>2]=1;f=b+8|0;c=F[b+8>>2];d=F[b+12>>2]-c|0;if(d>>>0<=4294967291){Db(f,d+4|0);c=F[f>>2]}c=c+d|0;d=F[a+4>>2];D[c|0]=d;D[c+1|0]=d>>>8;D[c+2|0]=d>>>16;D[c+3|0]=d>>>24;c=F[a+8>>2];if((c|0)!=F[a+12>>2]){d=0;while(1){g=(d<<2)+c|0;c=F[b+8>>2];e=F[b+12>>2]-c|0;if(e>>>0<=4294967291){Db(f,e+4|0);c=F[f>>2]}c=c+e|0;e=F[g>>2];D[c|0]=e;D[c+1|0]=e>>>8;D[c+2|0]=e>>>16;D[c+3|0]=e>>>24;d=d+1|0;c=F[a+8>>2];if(d>>>0>2]-c>>2>>>0){continue}break}}c=F[b+12>>2];b=F[b+8>>2];c=c-b|0;if(c>>>0<=4294967291){Db(f,c+4|0);b=F[f>>2]}b=b+c|0;a=F[a+20>>2];D[b|0]=a;D[b+1|0]=a>>>8;D[b+2|0]=a>>>16;D[b+3|0]=a>>>24}function mb(a,b){var c=0,d=0,e=0,f=0,g=0,h=0;c=F[a+4>>2];if((c|0)!=F[a+8>>2]){e=F[b+4>>2];F[c>>2]=F[b>>2];F[c+4>>2]=e;F[c+8>>2]=F[b+8>>2];F[a+4>>2]=c+12;return}a:{g=F[a>>2];d=(c-g|0)/12|0;e=d+1|0;if(e>>>0<357913942){f=d<<1;f=d>>>0>=178956970?357913941:e>>>0>>0?f:e;if(f){if(f>>>0>=357913942){break a}e=ka(L(f,12))}else{e=0}d=e+L(d,12)|0;h=F[b+4>>2];F[d>>2]=F[b>>2];F[d+4>>2]=h;F[d+8>>2]=F[b+8>>2];b=d+12|0;if((c|0)!=(g|0)){while(1){c=c-12|0;h=F[c+4>>2];d=d-12|0;F[d>>2]=F[c>>2];F[d+4>>2]=h;F[d+8>>2]=F[c+8>>2];if((c|0)!=(g|0)){continue}break}c=F[a>>2]}F[a+8>>2]=e+L(f,12);F[a+4>>2]=b;F[a>>2]=d;if(c){ja(c)}return}na();v()}oa();v()}function ne(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0;h=F[c+12>>2];f=h;e=F[c+20>>2];i=F[c+8>>2];g=F[c+16>>2];a:{if((f|0)<=(e|0)&i>>>0<=g>>>0|(e|0)>(f|0)){break a}j=F[c>>2];k=D[j+g|0];d=e;f=g+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;b:{if((k|0)==-2){break b}if((d|0)>=(h|0)&f>>>0>=i>>>0|(d|0)>(h|0)){break a}d=D[f+j|0];g=g+2|0;e=g>>>0<2?e+1|0:e;F[c+16>>2]=g;F[c+20>>2]=e;if((d-4&255)>>>0<251){break a}e=$[F[F[a>>2]+40>>2]](a,k,d)|0;d=F[a+20>>2];F[a+20>>2]=e;if(!d){break b}$[F[F[d>>2]+4>>2]](d)}d=F[a+20>>2];if(d){if(!($[F[F[a>>2]+28>>2]](a,d)|0)){break a}}l=$[F[F[a>>2]+36>>2]](a,b,c)|0}return l|0}function Bf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0;a:{if(I[b+80>>2]>65535){break a}a=F[b+100>>2];b=F[b+96>>2];e=(a-b|0)/12|0;f=L(e,6);g=(f|0)==(c|0);if((a|0)==(b|0)|(c|0)!=(f|0)){break a}g=1;c=e>>>0<=1?1:e;i=c&1;a=0;if(e>>>0>=2){j=c&-2;c=0;while(1){f=L(a,6);h=f+d|0;e=b+L(a,12)|0;E[h>>1]=F[e>>2];E[(f|2)+d>>1]=F[e+4>>2];E[h+4>>1]=F[e+8>>2];f=a|1;e=L(f,6)+d|0;f=b+L(f,12)|0;E[e>>1]=F[f>>2];E[e+2>>1]=F[f+4>>2];E[e+4>>1]=F[f+8>>2];a=a+2|0;c=c+2|0;if((j|0)!=(c|0)){continue}break}}if(!i){break a}c=L(a,6)+d|0;a=b+L(a,12)|0;E[c>>1]=F[a>>2];E[c+2>>1]=F[a+4>>2];E[c+4>>1]=F[a+8>>2]}return g|0}function Gh(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;f=Z-32|0;Z=f;h=e>>>0>1073741823?-1:e<<2;h=ma(ka(h),0,h);g=F[b>>2];i=F[b+4>>2];k=F[h+4>>2];F[f+16>>2]=F[h>>2];F[f+20>>2]=k;F[f+8>>2]=g;F[f+12>>2]=i;i=a+8|0;Jb(f+24|0,i,f+16|0,f+8|0);F[c>>2]=F[f+24>>2];F[c+4>>2]=F[f+28>>2];if((d|0)>(e|0)){k=0-e<<2;a=e;while(1){g=a<<2;j=g+b|0;m=F[j>>2];j=F[j+4>>2];g=c+g|0;l=g+k|0;n=F[l+4>>2];F[f+16>>2]=F[l>>2];F[f+20>>2]=n;F[f+8>>2]=m;F[f+12>>2]=j;Jb(f+24|0,i,f+16|0,f+8|0);F[g>>2]=F[f+24>>2];F[g+4>>2]=F[f+28>>2];a=a+e|0;if((d|0)>(a|0)){continue}break}}ja(h);Z=f+32|0;return 1}function Sf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0;a=Z-32|0;Z=a;F[a+24>>2]=0;F[a+28>>2]=0;a:{d=ya(c);if(d>>>0<2147483632){b:{c:{if(d>>>0>=11){e=(d|15)+1|0;f=ka(e);F[a+16>>2]=e|-2147483648;F[a+8>>2]=f;F[a+12>>2]=d;e=d+f|0;break c}D[a+19|0]=d;f=a+8|0;e=f+d|0;if(!d){break b}}la(f,c,d)}D[e|0]=0;c=b+4|0;b=Ya(b,a+8|0);d:{if((c|0)==(b|0)){break d}c=F[b+32>>2];b=F[b+28>>2];if((c-b|0)!=8){break d}c=G[b+4|0]|G[b+5|0]<<8|(G[b+6|0]<<16|G[b+7|0]<<24);F[a+24>>2]=G[b|0]|G[b+1|0]<<8|(G[b+2|0]<<16|G[b+3|0]<<24);F[a+28>>2]=c}g=K[a+24>>3];if(D[a+19|0]<0){ja(F[a+8>>2])}Z=a+32|0;break a}za();v()}return+g}function Gc(a,b,c,d,e,f,g){var h=0,i=0,j=0;h=Z-16|0;Z=h;if((b^-1)+2147483631>>>0>=c>>>0){if(G[a+11|0]>>>7|0){i=F[a>>2]}else{i=a}if(b>>>0<1073741799){F[h+12>>2]=b<<1;F[h>>2]=b+c;c=Z-16|0;Z=c;Z=c+16|0;c=h+12|0;c=F[(I[h>>2]>2]?c:h)>>2];if(c>>>0>=11){j=c+16&-16;c=j-1|0;c=(c|0)==11?j:c}else{c=10}c=c+1|0}else{c=2147483631}sb(h,c);c=F[h>>2];if(f){db(c,g,f)}g=d-e|0;if((d|0)!=(e|0)){db(c+f|0,e+i|0,g)}if((b|0)!=10){ja(i)}F[a>>2]=c;F[a+8>>2]=F[a+8>>2]&-2147483648|F[h+4>>2]&2147483647;F[a+8>>2]=F[a+8>>2]|-2147483648;b=a;a=f+g|0;F[b+4>>2]=a;D[h+12|0]=0;D[a+c|0]=G[h+12|0];Z=h+16|0;return}za();v()}function _c(a,b,c){var d=0,e=0,f=0,g=0;a:{f=b>>>0<1431655766&(b|c)>=0;b:{if(!f){break b}b=L(b,3);Xb(a,b,10224);Xb(a+12|0,b,10228);d=F[a+24>>2];c:{if(F[a+32>>2]-d>>2>>>0>=c>>>0){break c}if(c>>>0>=1073741824){break a}b=F[a+28>>2];e=c<<2;c=ka(e);e=c+e|0;g=c+(b-d&-4)|0;c=g;if((b|0)!=(d|0)){while(1){c=c-4|0;b=b-4|0;F[c>>2]=F[b>>2];if((b|0)!=(d|0)){continue}break}}F[a+32>>2]=e;F[a+28>>2]=g;F[a+24>>2]=c;if(!d){break c}ja(d)}F[a+80>>2]=0;F[a+84>>2]=0;b=F[a+76>>2];F[a+76>>2]=0;if(b){ja(b)}F[a+68>>2]=0;F[a+72>>2]=0;b=a- -64|0;a=F[b>>2];F[b>>2]=0;if(!a){break b}ja(a)}return f}na();v()}function yd(a){var b=0,c=0,d=0,e=0,f=0;f=1;c=F[a+140>>2];a:{if((c|0)<=0){break a}b=c<<4;d=ka(c>>>0>268435455?-1:b|4);F[d>>2]=c;d=d+4|0;c=d+b|0;b=d;while(1){F[b>>2]=0;F[b+4>>2]=0;D[b+5|0]=0;D[b+6|0]=0;D[b+7|0]=0;D[b+8|0]=0;D[b+9|0]=0;D[b+10|0]=0;D[b+11|0]=0;D[b+12|0]=0;b=b+16|0;if((c|0)!=(b|0)){continue}break}e=F[a+136>>2];F[a+136>>2]=d;if(e){c=e-4|0;d=F[c>>2];if(d){b=(d<<4)+e|0;while(1){b=b-16|0;if((e|0)!=(b|0)){continue}break}}ja(c)}b=0;if(F[a+140>>2]<=0){break a}while(1){f=Aa(F[a+136>>2]+(b<<4)|0,a);if(!f){break a}b=b+1|0;if((b|0)>2]){continue}break}}return f} -function Sd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;d=F[b+8>>2];c=F[b+12>>2];g=c;c=F[b+20>>2];i=c;h=F[b+16>>2];f=h+4|0;c=f>>>0<4?c+1|0:c;a:{if(d>>>0>>0&(c|0)>=(g|0)|(c|0)>(g|0)){break a}e=h+F[b>>2]|0;e=G[e|0]|G[e+1|0]<<8|(G[e+2|0]<<16|G[e+3|0]<<24);F[b+16>>2]=f;F[b+20>>2]=c;f=d;d=i;c=h+8|0;d=c>>>0<8?d+1|0:d;if(c>>>0>f>>>0&(d|0)>=(g|0)|(d|0)>(g|0)){break a}F[b+16>>2]=c;F[b+20>>2]=d;if(!(e&1)){break a}d=O(e)^31;if(d-1>>>0>28){break a}F[a+8>>2]=d+1;d=-2<>2]=c;F[a+12>>2]=d^-1;F[a+24>>2]=c>>1;J[a+20>>2]=M(2)/M(c|0);j=Aa(a+96|0,b)}return j|0}function bc(a,b){var c=0;c=F[b+4>>2];F[a>>2]=F[b>>2];F[a+4>>2]=c;c=F[b+60>>2];F[a+56>>2]=F[b+56>>2];F[a+60>>2]=c;c=F[b+52>>2];F[a+48>>2]=F[b+48>>2];F[a+52>>2]=c;c=F[b+44>>2];F[a+40>>2]=F[b+40>>2];F[a+44>>2]=c;c=F[b+36>>2];F[a+32>>2]=F[b+32>>2];F[a+36>>2]=c;c=F[b+28>>2];F[a+24>>2]=F[b+24>>2];F[a+28>>2]=c;c=F[b+20>>2];F[a+16>>2]=F[b+16>>2];F[a+20>>2]=c;c=F[b+12>>2];F[a+8>>2]=F[b+8>>2];F[a+12>>2]=c;F[a+88>>2]=0;F[a+64>>2]=0;F[a+68>>2]=0;F[a+72>>2]=0;F[a+76>>2]=0;D[a+77|0]=0;D[a+78|0]=0;D[a+79|0]=0;D[a+80|0]=0;D[a+81|0]=0;D[a+82|0]=0;D[a+83|0]=0;D[a+84|0]=0;return a}function ac(a,b){var c=0,d=0,e=0,f=0,g=0;a:{if(F[a+64>>2]){break a}c=ka(32);F[c+16>>2]=0;F[c+20>>2]=0;F[c+8>>2]=0;F[c>>2]=0;F[c+4>>2]=0;F[c+24>>2]=0;F[c+28>>2]=0;d=F[a+64>>2];F[a+64>>2]=c;if(!d){break a}c=F[d>>2];if(c){F[d+4>>2]=c;ja(c)}ja(d)}d=F[a+64>>2];c=F[a+28>>2]-1|0;if(c>>>0<=10){c=F[(c<<2)+10148>>2]}else{c=-1}c=L(c,G[a+24|0]);f=c>>31;g=md(d,0,ki(c,f,b,0),_);if(g){d=F[a+64>>2];F[a>>2]=d;e=F[d+20>>2];F[a+8>>2]=F[d+16>>2];F[a+12>>2]=e;e=F[d+24>>2];d=F[d+28>>2];F[a+48>>2]=0;F[a+52>>2]=0;F[a+40>>2]=c;F[a+44>>2]=f;F[a+16>>2]=e;F[a+20>>2]=d;F[a+80>>2]=b}return g}function Af(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0,k=0;a=F[b+100>>2];b=F[b+96>>2];h=a-b|0;a:{if((h|0)!=(c|0)|(a|0)==(b|0)){break a}g=(c|0)/12|0;e=g>>>0<=1?1:g;j=e&1;a=0;if(g>>>0>=2){k=e&-2;g=0;while(1){e=L(a,12);i=e+d|0;f=b+e|0;F[i>>2]=F[f>>2];F[(e|4)+d>>2]=F[f+4>>2];F[i+8>>2]=F[f+8>>2];f=L(a|1,12);e=f+d|0;f=b+f|0;F[e>>2]=F[f>>2];F[e+4>>2]=F[f+4>>2];F[e+8>>2]=F[f+8>>2];a=a+2|0;g=g+2|0;if((k|0)!=(g|0)){continue}break}}if(!j){break a}e=d;d=L(a,12);a=e+d|0;b=b+d|0;F[a>>2]=F[b>>2];F[a+4>>2]=F[b+4>>2];F[a+8>>2]=F[b+8>>2]}return(c|0)==(h|0)|0}function Kh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;c=F[b+8>>2];d=F[b+12>>2];g=d;d=F[b+20>>2];i=d;h=F[b+16>>2];f=h+4|0;d=f>>>0<4?d+1|0:d;a:{if(c>>>0>>0&(d|0)>=(g|0)|(d|0)>(g|0)){break a}e=h+F[b>>2]|0;e=G[e|0]|G[e+1|0]<<8|(G[e+2|0]<<16|G[e+3|0]<<24);F[b+16>>2]=f;F[b+20>>2]=d;f=c;c=i;d=h+8|0;c=d>>>0<8?c+1|0:c;if(d>>>0>f>>>0&(c|0)>=(g|0)|(c|0)>(g|0)){break a}F[b+16>>2]=d;F[b+20>>2]=c;if(!(e&1)){break a}b=O(e)^31;if(b-1>>>0>28){break a}j=1;F[a+8>>2]=b+1;b=-2<>2]=c;F[a+12>>2]=b^-1;F[a+24>>2]=c>>1;J[a+20>>2]=M(2)/M(c|0)}return j|0}function Ya(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;f=a+4|0;a=F[a+4>>2];a:{b:{if(!a){break b}d=G[b+11|0];c=d<<24>>24<0;g=c?F[b>>2]:b;d=c?F[b+4>>2]:d;b=f;while(1){e=G[a+27|0];c=e<<24>>24<0;e=c?F[a+20>>2]:e;h=e>>>0>d>>>0;i=h?d:e;c:{if(i){c=sa(c?F[a+16>>2]:a+16|0,g,i);if(c){break c}}c=d>>>0>e>>>0?-1:h}c=(c|0)<0;b=c?b:a;a=F[(c?a+4|0:a)>>2];if(a){continue}break}if((b|0)==(f|0)){break b}c=G[b+27|0];a=c<<24>>24<0;d:{c=a?F[b+20>>2]:c;e=c>>>0>>0?c:d;if(e){a=sa(g,a?F[b+16>>2]:b+16|0,e);if(a){break d}}if(c>>>0>d>>>0){break b}break a}if((a|0)>=0){break a}}b=f}return b}function Oe(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;if(La(a,F[b+8>>2],e)){if(!(F[b+28>>2]==1|F[b+4>>2]!=(c|0))){F[b+28>>2]=d}return}a:{if(La(a,F[b>>2],e)){if(!(F[b+16>>2]!=(c|0)&F[b+20>>2]!=(c|0))){if((d|0)!=1){break a}F[b+32>>2]=1;return}F[b+32>>2]=d;b:{if(F[b+44>>2]==4){break b}E[b+52>>1]=0;a=F[a+8>>2];$[F[F[a>>2]+20>>2]](a,b,c,c,1,e);if(G[b+53|0]){F[b+44>>2]=3;if(!G[b+52|0]){break b}break a}F[b+44>>2]=4}F[b+20>>2]=c;F[b+40>>2]=F[b+40>>2]+1;if(F[b+36>>2]!=1|F[b+24>>2]!=2){break a}D[b+54|0]=1;return}a=F[a+8>>2];$[F[F[a>>2]+24>>2]](a,b,c,d,e)}}function Ig(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0;f=ka(64);c=ka(12);F[c+8>>2]=F[F[a+4>>2]+80>>2];F[c>>2]=9968;F[c+4>>2]=0;f=yc(f,c);a:{b:{if((b|0)<0){c=f;break b}h=a+8|0;c=F[a+12>>2];e=F[a+8>>2];g=c-e>>2;c:{if((g|0)>(b|0)){break c}d=b+1|0;if(b>>>0>=g>>>0){Pb(h,d-g|0);break c}if(d>>>0>=g>>>0){break c}e=e+(d<<2)|0;if((e|0)!=(c|0)){while(1){c=c-4|0;d=F[c>>2];F[c>>2]=0;if(d){$[F[F[d>>2]+4>>2]](d)}if((c|0)!=(e|0)){continue}break}}F[a+12>>2]=e}a=F[h>>2]+(b<<2)|0;c=F[a>>2];F[a>>2]=f;if(!c){break a}}$[F[F[c>>2]+4>>2]](c)}return(b^-1)>>>31|0}function we(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0;c=F[a+60>>2];a:{if(!c){break a}F[c+4>>2]=a+48;if(!($[F[F[c>>2]+12>>2]](c)|0)){break a}b:{c=$[F[F[a>>2]+24>>2]](a)|0;if((c|0)<=0){break b}while(1){c:{f=F[($[F[F[a>>2]+28>>2]](a)|0)+4>>2];g=$[F[F[a>>2]+20>>2]](a,d)|0;e=F[a+60>>2];if(!($[F[F[e>>2]+8>>2]](e,F[F[f+8>>2]+(g<<2)>>2])|0)){break c}d=d+1|0;if((c|0)!=(d|0)){continue}break b}break}return 0}d=0;if(!($[F[F[a>>2]+36>>2]](a,b)|0)){break a}if(!($[F[F[a>>2]+40>>2]](a,b)|0)){break a}d=$[F[F[a>>2]+44>>2]](a)|0}return d|0}function Id(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0;c=F[a+216>>2];if((c|0)!=F[a+220>>2]){while(1){a:{c=F[L(e,144)+c>>2];if((c|0)<0){break a}d=F[a+4>>2];f=F[d+8>>2];if((c|0)>=F[d+12>>2]-f>>2){break a}d=0;c=F[(c<<2)+f>>2];if(($[F[F[c>>2]+24>>2]](c)|0)<=0){break a}while(1){if(($[F[F[c>>2]+20>>2]](c,d)|0)!=(b|0)){d=d+1|0;if(($[F[F[c>>2]+24>>2]](c)|0)>(d|0)){continue}break a}break}a=F[a+216>>2]+L(e,144)|0;return(G[a+100|0]?a+4|0:0)|0}e=e+1|0;c=F[a+216>>2];if(e>>>0<(F[a+220>>2]-c|0)/144>>>0){continue}break}}return 0}function nd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;c=F[a+8>>2];d=F[a+4>>2];if(c-d>>2>>>0>=b>>>0){if(b){b=b<<2;d=ma(d,0,b)+b|0}F[a+4>>2]=d;return}a:{f=F[a>>2];g=d-f>>2;e=g+b|0;if(e>>>0<1073741824){c=c-f|0;h=c>>>1|0;e=c>>>0>=2147483644?1073741823:e>>>0>>0?h:e;if(e){if(e>>>0>=1073741824){break a}i=ka(e<<2)}c=(g<<2)+i|0;b=b<<2;b=ma(c,0,b)+b|0;if((d|0)!=(f|0)){while(1){c=c-4|0;d=d-4|0;F[c>>2]=F[d>>2];if((d|0)!=(f|0)){continue}break}}F[a+8>>2]=(e<<2)+i;F[a+4>>2]=b;F[a>>2]=c;if(f){ja(f)}return}na();v()}oa();v()}function bb(a){var b=0,c=0,d=0,e=0,f=0;d=F[a+8>>2];a:{if(G[d+84|0]){break a}b=F[a+16>>2];if(!b|!G[b+84|0]){break a}c=F[d+72>>2];e=F[d+68>>2];D[b+84|0]=0;c=c-e>>2;f=F[b+68>>2];e=F[b+72>>2]-f>>2;b:{if(c>>>0>e>>>0){ab(b+68|0,c-e|0,2004);d=F[a+8>>2];break b}if(c>>>0>=e>>>0){break b}F[b+72>>2]=f+(c<<2)}if(G[d+84|0]){break a}c=F[d+68>>2];if((c|0)==F[d+72>>2]){break a}e=F[F[a+16>>2]+68>>2];b=0;while(1){f=b<<2;F[f+e>>2]=F[c+f>>2];b=b+1|0;c=F[d+68>>2];if(b>>>0>2]-c>>2>>>0){continue}break}}return F[a+16>>2]}function Lf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0;e=Z+-64|0;Z=e;f=Ja(e+8|0);F[f+16>>2]=0;F[f+20>>2]=0;F[f>>2]=b;F[f+8>>2]=c;F[f+12>>2]=0;b=e+48|0;Pd(b,a,f,d);F[a+24>>2]=F[e+48>>2];f=a+24|0;a:{if((f|0)==(b|0)){break a}b=a+28|0;c=e+48|4;g=G[e+63|0];d=g<<24>>24;if(D[a+39|0]>=0){if((d|0)>=0){a=F[c+4>>2];F[b>>2]=F[c>>2];F[b+4>>2]=a;F[b+8>>2]=F[c+8>>2];break a}qb(b,F[e+52>>2],F[e+56>>2]);break a}a=(d|0)<0;rb(b,a?F[e+52>>2]:c,a?F[e+56>>2]:g)}if(D[e+63|0]<0){ja(F[e+52>>2])}Z=e- -64|0;return f|0}function Jf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0;a=Z-32|0;Z=a;a:{d=ya(c);if(d>>>0<2147483632){b:{c:{if(d>>>0>=11){e=(d|15)+1|0;f=ka(e);F[a+24>>2]=e|-2147483648;F[a+16>>2]=f;F[a+20>>2]=d;e=d+f|0;break c}D[a+27|0]=d;f=a+16|0;e=f+d|0;if(!d){break b}}la(f,c,d)}D[e|0]=0;D[a+4|0]=0;F[a>>2]=1701667182;D[a+11|0]=4;d=F[b+4>>2];c=-1;d:{if(!d){break d}d=Uc(d,a,a+16|0);c=-1;if(!d){break d}c=Pc(b,F[d+24>>2])}b=c;if(D[a+11|0]<0){ja(F[a>>2])}if(D[a+27|0]<0){ja(F[a+16>>2])}Z=a+32|0;break a}za();v()}return b|0}function Hd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0;c=F[a+216>>2];if((c|0)!=F[a+220>>2]){while(1){a:{c=F[L(e,144)+c>>2];if((c|0)<0){break a}d=F[a+4>>2];f=F[d+8>>2];if((c|0)>=F[d+12>>2]-f>>2){break a}d=0;c=F[(c<<2)+f>>2];if(($[F[F[c>>2]+24>>2]](c)|0)<=0){break a}while(1){if(($[F[F[c>>2]+20>>2]](c,d)|0)!=(b|0)){d=d+1|0;if(($[F[F[c>>2]+24>>2]](c)|0)>(d|0)){continue}break a}break}return(F[a+216>>2]+L(e,144)|0)+104|0}e=e+1|0;c=F[a+216>>2];if(e>>>0<(F[a+220>>2]-c|0)/144>>>0){continue}break}}return a+184|0}function Uf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0;d=Z-16|0;Z=d;F[d+12>>2]=0;a:{e=ya(c);if(e>>>0<2147483632){b:{c:{if(e>>>0>=11){f=(e|15)+1|0;a=ka(f);F[d+8>>2]=f|-2147483648;F[d>>2]=a;F[d+4>>2]=e;f=a+e|0;break c}D[d+11|0]=e;f=d+e|0;a=d;if(!e){break b}}la(a,c,e)}D[f|0]=0;a=Ya(b,d);d:{if((a|0)==(b+4|0)){break d}b=F[a+32>>2];a=F[a+28>>2];if((b-a|0)!=4){break d}F[d+12>>2]=G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24)}a=F[d+12>>2];if(D[d+11|0]<0){ja(F[d>>2])}Z=d+16|0;break a}za();v()}return a|0}function Mf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0;d=Z+-64|0;Z=d;e=Ja(d+8|0);F[e+16>>2]=0;F[e+20>>2]=0;F[e>>2]=b;F[e+8>>2]=c;F[e+12>>2]=0;b=d+48|0;Od(b);F[a+24>>2]=F[d+48>>2];f=a+24|0;a:{if((b|0)==(f|0)){break a}b=a+28|0;c=d+48|4;g=G[d+63|0];e=g<<24>>24;if(D[a+39|0]>=0){if((e|0)>=0){a=F[c+4>>2];F[b>>2]=F[c>>2];F[b+4>>2]=a;F[b+8>>2]=F[c+8>>2];break a}qb(b,F[d+52>>2],F[d+56>>2]);break a}a=(e|0)<0;rb(b,a?F[d+52>>2]:c,a?F[d+56>>2]:g)}if(D[d+63|0]<0){ja(F[d+52>>2])}Z=d- -64|0;return f|0}function Ce(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0,h=0;e=1;a:{if(($[F[F[b>>2]+20>>2]](b)|0)<=0){break a}while(1){e=0;d=Qc(F[F[a+4>>2]+4>>2],$[F[F[b>>2]+24>>2]](b,f)|0);if((d|0)==-1){break a}g=F[a+4>>2];c=0;b:{if((d|0)<0){break b}h=F[g+4>>2];if((d|0)>=F[h+12>>2]-F[h+8>>2]>>2){break b}c=F[F[g+8>>2]+(F[F[g+20>>2]+(d<<2)>>2]<<2)>>2];c=$[F[F[c>>2]+32>>2]](c,d)|0}if(!c){break a}if(!($[F[F[b>>2]+28>>2]](b,c)|0)){break a}e=1;f=f+1|0;if(($[F[F[b>>2]+20>>2]](b)|0)>(f|0)){continue}break}}return e|0}function Db(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;a:{c=F[a+4>>2];e=F[a>>2];d=c-e|0;b:{if(d>>>0>>0){g=b-d|0;f=F[a+8>>2];if(g>>>0<=f-c>>>0){h=a,i=ma(c,0,g)+g|0,F[h+4>>2]=i;break b}if((b|0)<0){break a}c=f-e|0;f=c<<1;c=c>>>0>=1073741823?2147483647:b>>>0>>0?f:b;f=ka(c);ma(f+d|0,0,g);d=pa(f,e,d);F[a+8>>2]=d+c;F[a+4>>2]=b+d;F[a>>2]=d;if(!e){break b}ja(e);break b}if(b>>>0>=d>>>0){break b}F[a+4>>2]=b+e}b=F[a+28>>2];c=b;d=b+1|0;b=F[a+24>>2]+1|0;e=b?c:d;F[a+24>>2]=b;F[a+28>>2]=e;return}na();v()}function Ma(a,b){var c=0,d=0,e=0,f=0,g=0,h=0;e=F[a+4>>2];if((e|0)!=F[a+8>>2]){F[e>>2]=F[b>>2];F[a+4>>2]=e+4;return}a:{g=F[a>>2];f=e-g|0;c=f>>2;d=c+1|0;if(d>>>0<1073741824){h=c<<2;c=f>>>1|0;c=f>>>0>=2147483644?1073741823:c>>>0>d>>>0?c:d;if(c){if(c>>>0>=1073741824){break a}f=ka(c<<2)}else{f=0}d=h+f|0;F[d>>2]=F[b>>2];b=d+4|0;if((e|0)!=(g|0)){while(1){d=d-4|0;e=e-4|0;F[d>>2]=F[e>>2];if((e|0)!=(g|0)){continue}break}}F[a+8>>2]=f+(c<<2);F[a+4>>2]=b;F[a>>2]=d;if(g){ja(g)}return}na();v()}oa();v()}function va(a){F[a>>2]=-1;F[a+4>>2]=0;F[a+8>>2]=0;F[a+32>>2]=0;F[a+36>>2]=0;D[a+28|0]=1;F[a+20>>2]=0;F[a+24>>2]=0;F[a+12>>2]=0;F[a+16>>2]=0;F[a+40>>2]=0;F[a+44>>2]=0;F[a+48>>2]=0;F[a+52>>2]=0;F[a+56>>2]=0;F[a+60>>2]=0;F[a+64>>2]=0;F[a+68>>2]=0;F[a+76>>2]=0;F[a+80>>2]=0;F[a+84>>2]=0;F[a+88>>2]=0;F[a+92>>2]=0;F[a+96>>2]=0;F[a+72>>2]=a+4;F[a+104>>2]=0;F[a+108>>2]=0;D[a+100|0]=1;F[a+112>>2]=0;F[a+116>>2]=0;F[a+120>>2]=0;F[a+124>>2]=0;F[a+128>>2]=0;F[a+132>>2]=0;F[a+136>>2]=0;F[a+140>>2]=0}function Hb(a,b){var c=0,d=0,e=0,f=0;d=F[a+12>>2];c=F[a+16>>2]-d>>2;a:{if(c>>>0>>0){qa(a+12|0,b-c|0);break a}if(b>>>0>=c>>>0){break a}F[a+16>>2]=d+(b<<2)}b:{c=F[a>>2];c:{if(F[a+8>>2]-c>>2>>>0>=b>>>0){break c}if(b>>>0>=1073741824){break b}d=F[a+4>>2];e=b<<2;b=ka(e);e=b+e|0;f=b+(d-c&-4)|0;b=f;if((c|0)!=(d|0)){while(1){b=b-4|0;d=d-4|0;F[b>>2]=F[d>>2];if((c|0)!=(d|0)){continue}break}}F[a+8>>2]=e;F[a+4>>2]=f;F[a>>2]=b;if(!c){break c}ja(c)}return}na();v()}function tb(a){a=a|0;var b=0,c=0,d=0;F[a>>2]=10300;b=F[a+68>>2];if(b){F[a+72>>2]=b;ja(b)}b=F[a+56>>2];if(b){F[a+60>>2]=b;ja(b)}b=F[a+44>>2];if(b){F[a+48>>2]=b;ja(b)}b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}b=F[a+20>>2];if(b){F[a+24>>2]=b;ja(b)}b=F[a+8>>2];if(b){d=b;c=F[a+12>>2];if((b|0)!=(c|0)){while(1){c=c-4|0;d=F[c>>2];F[c>>2]=0;if(d){xa(d)}if((b|0)!=(c|0)){continue}break}d=F[a+8>>2]}F[a+12>>2]=b;ja(d)}b=F[a+4>>2];F[a+4>>2]=0;if(b){ic(b)}return a|0}function qa(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;e=F[a+8>>2];c=F[a+4>>2];if(e-c>>2>>>0>=b>>>0){if(b){b=b<<2;c=ma(c,0,b)+b|0}F[a+4>>2]=c;return}a:{f=c;c=F[a>>2];g=f-c|0;h=g>>2;d=h+b|0;if(d>>>0<1073741824){e=e-c|0;f=e>>>1|0;d=e>>>0>=2147483644?1073741823:d>>>0>>0?f:d;if(d){if(d>>>0>=1073741824){break a}i=ka(d<<2)}b=b<<2;e=ma((h<<2)+i|0,0,b);f=d<<2;d=pa(i,c,g);F[a+8>>2]=f+d;F[a+4>>2]=b+e;F[a>>2]=d;if(c){ja(c)}return}na();v()}oa();v()}function gc(a,b){var c=0,d=0,e=0,f=0;c=a+4|0;a=Ya(a,b);a:{if((c|0)==(a|0)){break a}b=a+28|0;b=D[a+39|0]<0?F[b>>2]:b;while(1){a=b;b=a+1|0;c=D[a|0];if((c|0)==32|c-9>>>0<5){continue}break}b:{c:{d:{c=D[a|0];switch(c-43|0){case 0:break c;case 2:break d;default:break b}}e=1}c=D[b|0];a=b}if(c-48>>>0<10){while(1){d=(L(d,10)-D[a|0]|0)+48|0;b=D[a+1|0];a=a+1|0;if(b-48>>>0<10){continue}break}}a=e?d:0-d|0;if((a|0)==-1){break a}f=(a|0)!=0}return f}function Qa(a,b){var c=0,d=0,e=0,f=0,g=0,h=0;a=F[a>>2];c=F[a+4>>2];e=F[a+8>>2];if(c>>>0>>0){F[c>>2]=F[b>>2];F[a+4>>2]=c+4;return}a:{d=c;c=F[a>>2];g=d-c|0;d=g>>2;f=d+1|0;if(f>>>0<1073741824){h=d<<2;e=e-c|0;d=e>>>1|0;f=e>>>0>=2147483644?1073741823:f>>>0>>0?d:f;if(f){if(f>>>0>=1073741824){break a}e=ka(f<<2)}else{e=0}d=h+e|0;F[d>>2]=F[b>>2];b=pa(e,c,g);F[a+8>>2]=b+(f<<2);F[a+4>>2]=d+4;F[a>>2]=b;if(c){ja(c)}return}na();v()}oa();v()}function db(a,b,c){var d=0,e=0,f=0,g=0,h=0;f=Z-16|0;Z=f;d=Z-32|0;Z=d;e=Z-16|0;Z=e;F[e+12>>2]=b;F[e+8>>2]=b+c;F[d+24>>2]=F[e+12>>2];F[d+28>>2]=F[e+8>>2];Z=e+16|0;c=Z-16|0;Z=c;h=F[d+28>>2];e=F[d+24>>2];g=h-e|0;if((e|0)!=(h|0)){pa(a,e,g)}F[c+12>>2]=e+g;F[c+8>>2]=a+g;F[d+16>>2]=F[c+12>>2];F[d+20>>2]=F[c+8>>2];Z=c+16|0;F[d+12>>2]=(F[d+16>>2]-b|0)+b;F[d+8>>2]=(F[d+20>>2]-a|0)+a;F[f+8>>2]=F[d+12>>2];F[f+12>>2]=F[d+8>>2];Z=d+32|0;Z=f+16|0}function _a(a,b){var c=0,d=0,e=0,f=0,g=0,h=0,i=0;e=F[a+8>>2];c=F[a+4>>2];if(e-c>>3>>>0>=b>>>0){if(b){b=b<<3;c=ma(c,0,b)+b|0}F[a+4>>2]=c;return}a:{f=c;c=F[a>>2];g=f-c|0;h=g>>3;d=h+b|0;if(d>>>0<536870912){e=e-c|0;f=e>>>2|0;d=e>>>0>=2147483640?536870911:d>>>0>>0?f:d;if(d){if(d>>>0>=536870912){break a}i=ka(d<<3)}b=b<<3;e=ma((h<<3)+i|0,0,b);f=d<<3;d=pa(i,c,g);F[a+8>>2]=f+d;F[a+4>>2]=b+e;F[a>>2]=d;if(c){ja(c)}return}na();v()}oa();v()}function re(a){a=a|0;var b=0,c=0,d=0;F[a>>2]=2016;b=F[a+60>>2];F[a+60>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}d=F[a+36>>2];if(d){c=F[a+40>>2];b=d;if((c|0)!=(b|0)){while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}if((c|0)!=(d|0)){continue}break}b=F[a+36>>2]}F[a+40>>2]=d;ja(b)}F[a>>2]=1776;b=F[a+16>>2];if(b){F[a+20>>2]=b;ja(b)}b=F[a+4>>2];if(b){F[a+8>>2]=b;ja(b)}return a|0}function qe(a){a=a|0;var b=0,c=0,d=0;F[a>>2]=2016;b=F[a+60>>2];F[a+60>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}d=F[a+36>>2];if(d){c=F[a+40>>2];b=d;if((c|0)!=(b|0)){while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}if((c|0)!=(d|0)){continue}break}b=F[a+36>>2]}F[a+40>>2]=d;ja(b)}F[a>>2]=1776;b=F[a+16>>2];if(b){F[a+20>>2]=b;ja(b)}b=F[a+4>>2];if(b){F[a+8>>2]=b;ja(b)}ja(a)}function Eg(a){a=a|0;var b=0,c=0,d=0,e=0,f=0;a:{b=F[a+8>>2];b:{if((b|0)<0){break b}c=F[a+4>>2];e=F[c>>2];d=F[c+4>>2]-e>>2;c:{if(d>>>0>>0){nd(c,b-d|0);f=F[a+8>>2];break c}f=b;if(b>>>0>=d>>>0){break c}F[c+4>>2]=e+(b<<2);f=b}d=f;if((d|0)<=0){break b}a=F[a+4>>2];c=F[a>>2];e=F[a+4>>2]-c>>2;a=0;while(1){if((a|0)==(e|0)){break a}F[c+(a<<2)>>2]=a;a=a+1|0;if((d|0)!=(a|0)){continue}break}}return(b^-1)>>>31|0}ta();v()}function fh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0;d=Z-16|0;Z=d;e=F[a+4>>2];a:{if((e|0)==-1){break a}c=F[b+20>>2];if(!!F[b+16>>2]&(c|0)>=0|(c|0)>0){break a}pb(b,F[b+4>>2],F[a+8>>2],F[a+12>>2]);c=F[b+20>>2];if(!!F[b+16>>2]&(c|0)>=0|(c|0)>0){break a}pb(b,F[b+4>>2],a+20|0,a+24|0);c=F[b+20>>2];f=F[b+16>>2];D[d+15|0]=F[a+4>>2];if(!!f&(c|0)>=0|(c|0)>0){break a}pb(b,F[b+4>>2],d+15|0,d+16|0)}Z=d+16|0;return(e|0)!=-1|0}function kd(a,b){var c=0,d=0,e=0,f=0,g=0,h=0;e=F[a+8>>2];c=F[a+4>>2];if(e-c>>1>>>0>=b>>>0){if(b){b=b<<1;c=ma(c,0,b)+b|0}F[a+4>>2]=c;return}a:{f=c;c=F[a>>2];g=f-c|0;f=g>>1;d=f+b|0;if((d|0)>=0){e=e-c|0;d=e>>>0>=2147483646?2147483647:d>>>0>>0?e:d;if(d){if((d|0)<0){break a}h=ka(d<<1)}b=b<<1;e=ma((f<<1)+h|0,0,b);f=d<<1;d=pa(h,c,g);F[a+8>>2]=f+d;F[a+4>>2]=b+e;F[a>>2]=d;if(c){ja(c)}return}na();v()}oa();v()}function of(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0;d=Z-16|0;Z=d;Pd(d,a,b,c);F[a+24>>2]=F[d>>2];e=a+24|0;a:{if((e|0)==(d|0)){break a}b=a+28|0;c=d|4;f=G[d+15|0];g=f<<24>>24;if(D[a+39|0]>=0){if((g|0)>=0){a=F[c+4>>2];F[b>>2]=F[c>>2];F[b+4>>2]=a;F[b+8>>2]=F[c+8>>2];break a}qb(b,F[d+4>>2],F[d+8>>2]);break a}a=(g|0)<0;rb(b,a?F[d+4>>2]:c,a?F[d+8>>2]:f)}if(D[d+15|0]<0){ja(F[d+4>>2])}Z=d+16|0;return e|0}function ra(a,b,c){var d=0,e=0,f=0,g=0;e=Z-16|0;Z=e;a:{b:{if(c>>>0<11){d=a;D[a+11|0]=G[a+11|0]&128|c;D[a+11|0]=G[a+11|0]&127;break b}if(c>>>0>2147483631){break a}g=e+8|0;if(c>>>0>=11){f=c+16&-16;d=f-1|0;d=(d|0)==11?f:d}else{d=10}sb(g,d+1|0);d=F[e+8>>2];F[a>>2]=d;F[a+8>>2]=F[a+8>>2]&-2147483648|F[e+12>>2]&2147483647;F[a+8>>2]=F[a+8>>2]|-2147483648;F[a+4>>2]=c}db(d,b,c+1|0);Z=e+16|0;return}za();v()}function pf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0;b=Z-16|0;Z=b;Od(b);F[a+24>>2]=F[b>>2];e=a+24|0;a:{if((e|0)==(b|0)){break a}c=a+28|0;d=b|4;f=G[b+15|0];g=f<<24>>24;if(D[a+39|0]>=0){if((g|0)>=0){a=F[d+4>>2];F[c>>2]=F[d>>2];F[c+4>>2]=a;F[c+8>>2]=F[d+8>>2];break a}qb(c,F[b+4>>2],F[b+8>>2]);break a}a=(g|0)<0;rb(c,a?F[b+4>>2]:d,a?F[b+8>>2]:f)}if(D[b+15|0]<0){ja(F[b+4>>2])}Z=b+16|0;return e|0}function Rf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0;d=Z-16|0;Z=d;a:{e=ya(c);if(e>>>0<2147483632){b:{c:{if(e>>>0>=11){g=(e|15)+1|0;f=ka(g);F[d+8>>2]=g|-2147483648;F[d>>2]=f;F[d+4>>2]=e;g=e+f|0;break c}D[d+11|0]=e;g=d+e|0;f=d;if(!e){break b}}la(f,c,e)}D[g|0]=0;f=a+16|0;c=Sc(b,d,f);b=F[a+16>>2];a=D[a+27|0];if(D[d+11|0]<0){ja(F[d>>2])}Z=d+16|0;a=c?(a|0)<0?b:f:0;break a}za();v()}return a|0}function Yb(a,b){var c=0,d=0,e=0;c=F[a+4>>2];d=c+b|0;F[a+4>>2]=d;if(!((d-1^c-1)>>>0<32?c:0)){F[F[a>>2]+((d>>>0>=33?d-1>>>5|0:0)<<2)>>2]=0}a:{if(!b){break a}a=F[a>>2]+(c>>>3&536870908)|0;c=c&31;if(c){d=32-c|0;e=b>>>0>d>>>0?d:b;F[a>>2]=F[a>>2]&(-1<>>d-e^-1);b=b-e|0;a=a+4|0}c=b>>>5|0;if(b>>>0>=32){ma(a,0,c<<2)}if((b&-32)==(b|0)){break a}a=(c<<2)+a|0;F[a>>2]=F[a>>2]&(-1>>>32-(b&31)^-1)}}function ld(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>10){break a}d=F[c+20>>2];f=F[c+12>>2];e=F[c+16>>2];if((d|0)>=(f|0)&e>>>0>=I[c+8>>2]|(d|0)>(f|0)){break a}f=D[e+F[c>>2]|0];e=e+1|0;d=e?d:d+1|0;F[c+16>>2]=e;F[c+20>>2]=d;d=f;b:{if((d|0)<0){if(!ld(a+1|0,b,c)){break a}a=F[b>>2];d=d&127|a<<7;a=F[b+4>>2]<<7|a>>>25;break b}d=d&255;a=0}F[b>>2]=d;F[b+4>>2]=a;g=1}return g}function Sa(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>10){break a}d=F[c+20>>2];f=F[c+12>>2];e=F[c+16>>2];if((d|0)>=(f|0)&e>>>0>=I[c+8>>2]|(d|0)>(f|0)){break a}f=D[e+F[c>>2]|0];e=e+1|0;d=e?d:d+1|0;F[c+16>>2]=e;F[c+20>>2]=d;d=f;b:{if((d|0)<0){if(!Sa(a+1|0,b,c)){break a}a=F[b>>2];d=d&127|a<<7;a=F[b+4>>2]<<7|a>>>25;break b}d=d&255;a=0}F[b>>2]=d;F[b+4>>2]=a;g=1}return g}function Ne(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;if(La(a,F[b+8>>2],e)){if(!(F[b+28>>2]==1|F[b+4>>2]!=(c|0))){F[b+28>>2]=d}return}a:{if(!La(a,F[b>>2],e)){break a}if(!(F[b+16>>2]!=(c|0)&F[b+20>>2]!=(c|0))){if((d|0)!=1){break a}F[b+32>>2]=1;return}F[b+20>>2]=c;F[b+32>>2]=d;F[b+40>>2]=F[b+40>>2]+1;if(!(F[b+36>>2]!=1|F[b+24>>2]!=2)){D[b+54|0]=1}F[b+44>>2]=4}}function jg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0;e=Z+-64|0;Z=e;d=$[F[F[a>>2]+44>>2]](a,b)|0;a=$[F[F[a>>2]+40>>2]](a,b)|0;f=kb(e);g=F[b+56>>2];h=d&255;i=a;a=a-1|0;if(a>>>0<=10){a=F[(a<<2)+10148>>2]}else{a=-1}d=L(a,d);cc(f,g,h,i,0,d,d>>31);a=bc(ka(96),f);ac(a,c);D[a+84|0]=1;F[a+72>>2]=F[a+68>>2];F[a+60>>2]=F[b+60>>2];Z=e- -64|0;return a|0}function rh(a){a=a|0;var b=0,c=0,d=0;F[a>>2]=8176;b=F[a+48>>2];F[a+48>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}F[a>>2]=10032;b=F[a+20>>2];if(b){F[a+24>>2]=b;ja(b)}d=F[a+8>>2];if(d){c=F[a+12>>2];b=d;if((c|0)!=(b|0)){while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}if((c|0)!=(d|0)){continue}break}b=F[a+8>>2]}F[a+12>>2]=d;ja(b)}return a|0}function Dc(a,b,c,d){D[a+53|0]=1;a:{if(F[a+4>>2]!=(c|0)){break a}D[a+52|0]=1;c=F[a+16>>2];b:{if(!c){F[a+36>>2]=1;F[a+24>>2]=d;F[a+16>>2]=b;if((d|0)!=1){break a}if(F[a+48>>2]==1){break b}break a}if((b|0)==(c|0)){c=F[a+24>>2];if((c|0)==2){F[a+24>>2]=d;c=d}if(F[a+48>>2]!=1){break a}if((c|0)==1){break b}break a}F[a+36>>2]=F[a+36>>2]+1}D[a+54|0]=1}}function qh(a){a=a|0;var b=0,c=0,d=0;F[a>>2]=8176;b=F[a+48>>2];F[a+48>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}F[a>>2]=10032;b=F[a+20>>2];if(b){F[a+24>>2]=b;ja(b)}d=F[a+8>>2];if(d){c=F[a+12>>2];b=d;if((c|0)!=(b|0)){while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}if((c|0)!=(d|0)){continue}break}b=F[a+8>>2]}F[a+12>>2]=d;ja(b)}ja(a)}function Se(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;e=Z+-64|0;Z=e;d=1;a:{if(La(a,b,0)){break a}d=0;if(!b){break a}b=Fc(b,11068);d=0;if(!b){break a}d=e+8|0;ma(d|4,0,52);F[e+56>>2]=1;F[e+20>>2]=-1;F[e+16>>2]=a;F[e+8>>2]=b;$[F[F[b>>2]+28>>2]](b,d,F[c>>2],1);a=F[e+32>>2];if((a|0)==1){F[c>>2]=F[e+24>>2]}d=(a|0)==1}Z=e- -64|0;return d|0}function Fd(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=Z-16|0;Z=d;F[a+4>>2]=b;b=F[b+64>>2];e=F[b>>2];b=F[b+4>>2];D[d+15|0]=0;Ea(a+24|0,(b-e>>2>>>0)/3|0,d+15|0);b=F[a+4>>2];e=F[b+56>>2];b=F[b+52>>2];D[d+14|0]=0;Ea(a+36|0,e-b>>2,d+14|0);b=F[c+12>>2];F[a+16>>2]=F[c+8>>2];F[a+20>>2]=b;b=F[c+4>>2];F[a+8>>2]=F[c>>2];F[a+12>>2]=b;Z=d+16|0}function zf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0;a=Z-16|0;Z=a;f=D[b+24|0];e=F[2555];F[a+8>>2]=F[2554];F[a+12>>2]=e;e=F[2553];F[a>>2]=F[2552];F[a+4>>2]=e;e=lb(b,c,f,a);if(e){b=0;if(f){c=(f&255)<<2;b=ka(c);g=la(b,a,c)+c|0}c=F[d>>2];if(c){F[d+4>>2]=c;ja(c)}F[d+8>>2]=g;F[d+4>>2]=g;F[d>>2]=b}Z=a+16|0;return e|0}function wd(a,b){var c=0,d=0;a:{c=F[a+4>>2];d=F[a+8>>2];if((c|0)==d<<5){if((c+1|0)<0){break a}if(c>>>0<=1073741822){d=d<<6;c=(c&-32)+32|0;c=c>>>0>>0?d:c}else{c=2147483647}$a(a,c);c=F[a+4>>2]}F[a+4>>2]=c+1;d=1<>2]+(c>>>3&536870908)|0;if(G[b|0]){F[a>>2]=d|F[a>>2];return}F[a>>2]=F[a>>2]&(d^-1);return}na();v()}function Zb(a){var b=0;F[a>>2]=0;F[a+4>>2]=0;F[a+56>>2]=0;F[a+48>>2]=0;F[a+52>>2]=0;F[a+40>>2]=0;F[a+44>>2]=0;F[a+32>>2]=0;F[a+36>>2]=0;F[a+24>>2]=0;F[a+28>>2]=0;F[a+16>>2]=0;F[a+20>>2]=0;F[a+8>>2]=0;F[a+12>>2]=0;b=a- -64|0;F[b>>2]=0;F[b+4>>2]=0;F[a+72>>2]=0;F[a+76>>2]=0;F[a+80>>2]=0;F[a+84>>2]=0;F[a+60>>2]=a;return a}function ve(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0;f=$[F[F[a>>2]+24>>2]](a)|0;c=1;a:{if((f|0)<=0){break a}d=F[F[a+36>>2]>>2];g=a+48|0;c=0;if(!($[F[F[d>>2]+16>>2]](d,g,b)|0)){break a}while(1){e=e+1|0;if((f|0)!=(e|0)){d=F[F[a+36>>2]+(e<<2)>>2];if($[F[F[d>>2]+16>>2]](d,g,b)|0){continue}}break}c=(e|0)>=(f|0)}return c|0}function ue(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0,g=0;f=$[F[F[a>>2]+24>>2]](a)|0;c=1;a:{if((f|0)<=0){break a}d=F[F[a+36>>2]>>2];g=a+48|0;c=0;if(!($[F[F[d>>2]+20>>2]](d,g,b)|0)){break a}while(1){e=e+1|0;if((f|0)!=(e|0)){d=F[F[a+36>>2]+(e<<2)>>2];if($[F[F[d>>2]+20>>2]](d,g,b)|0){continue}}break}c=(e|0)>=(f|0)}return c|0}function bh(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=Z-16|0;Z=d;F[a+4>>2]=b;e=F[b>>2];b=F[b+4>>2];D[d+15|0]=0;Ea(a+24|0,(b-e>>2>>>0)/3|0,d+15|0);b=F[a+4>>2];e=F[b+28>>2];b=F[b+24>>2];D[d+14|0]=0;Ea(a+36|0,e-b>>2,d+14|0);b=F[c+12>>2];F[a+16>>2]=F[c+8>>2];F[a+20>>2]=b;b=F[c+4>>2];F[a+8>>2]=F[c>>2];F[a+12>>2]=b;Z=d+16|0}function hb(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>5){break a}d=F[c+20>>2];e=F[c+12>>2];f=F[c+16>>2];if((d|0)>=(e|0)&f>>>0>=I[c+8>>2]|(d|0)>(e|0)){break a}e=G[F[c>>2]+f|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;d=e<<24>>24;if((d|0)<0){if(!hb(a+1|0,b,c)){break a}e=d&127|F[b>>2]<<7}F[b>>2]=e;g=1}return g}function fb(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>5){break a}d=F[c+20>>2];e=F[c+12>>2];f=F[c+16>>2];if((d|0)>=(e|0)&f>>>0>=I[c+8>>2]|(d|0)>(e|0)){break a}e=G[F[c>>2]+f|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;d=e<<24>>24;if((d|0)<0){if(!fb(a+1|0,b,c)){break a}e=d&127|F[b>>2]<<7}F[b>>2]=e;g=1}return g}function Wb(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>5){break a}d=F[c+20>>2];e=F[c+12>>2];f=F[c+16>>2];if((d|0)>=(e|0)&f>>>0>=I[c+8>>2]|(d|0)>(e|0)){break a}e=G[F[c>>2]+f|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;d=e<<24>>24;if((d|0)<0){if(!Wb(a+1|0,b,c)){break a}e=d&127|F[b>>2]<<7}F[b>>2]=e;g=1}return g}function Ta(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>5){break a}d=F[c+20>>2];e=F[c+12>>2];f=F[c+16>>2];if((d|0)>=(e|0)&f>>>0>=I[c+8>>2]|(d|0)>(e|0)){break a}e=G[F[c>>2]+f|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;d=e<<24>>24;if((d|0)<0){if(!Ta(a+1|0,b,c)){break a}e=d&127|F[b>>2]<<7}F[b>>2]=e;g=1}return g}function Qd(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>5){break a}d=F[c+20>>2];e=F[c+12>>2];f=F[c+16>>2];if((d|0)>=(e|0)&f>>>0>=I[c+8>>2]|(d|0)>(e|0)){break a}e=G[F[c>>2]+f|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;d=e<<24>>24;if((d|0)<0){if(!Qd(a+1|0,b,c)){break a}e=d&127|F[b>>2]<<7}F[b>>2]=e;g=1}return g}function Oa(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>5){break a}d=F[c+20>>2];e=F[c+12>>2];f=F[c+16>>2];if((d|0)>=(e|0)&f>>>0>=I[c+8>>2]|(d|0)>(e|0)){break a}e=G[F[c>>2]+f|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;d=e<<24>>24;if((d|0)<0){if(!Oa(a+1|0,b,c)){break a}e=d&127|F[b>>2]<<7}F[b>>2]=e;g=1}return g}function Da(a,b,c){var d=0,e=0,f=0,g=0;a:{if(a>>>0>5){break a}d=F[c+20>>2];e=F[c+12>>2];f=F[c+16>>2];if((d|0)>=(e|0)&f>>>0>=I[c+8>>2]|(d|0)>(e|0)){break a}e=G[F[c>>2]+f|0];f=f+1|0;d=f?d:d+1|0;F[c+16>>2]=f;F[c+20>>2]=d;d=e<<24>>24;if((d|0)<0){if(!Da(a+1|0,b,c)){break a}e=d&127|F[b>>2]<<7}F[b>>2]=e;g=1}return g}function sa(a,b,c){var d=0,e=0;a:{b:{if(c>>>0>=4){if((a|b)&3){break b}while(1){if(F[a>>2]!=F[b>>2]){break b}b=b+4|0;a=a+4|0;c=c-4|0;if(c>>>0>3){continue}break}}if(!c){break a}}while(1){d=G[a|0];e=G[b|0];if((d|0)==(e|0)){b=b+1|0;a=a+1|0;c=c-1|0;if(c){continue}break a}break}return d-e|0}return 0}function td(a){var b=0,c=0,d=0,e=0;d=F[a>>2];if(d){e=d;c=F[a+4>>2];if((d|0)!=(c|0)){while(1){e=c-144|0;b=F[e+132>>2];if(b){F[c-8>>2]=b;ja(b)}b=F[c-28>>2];if(b){F[c-24>>2]=b;ja(b)}b=F[c-40>>2];if(b){F[c-36>>2]=b;ja(b)}Gb(c-140|0);c=e;if((d|0)!=(c|0)){continue}break}e=F[a>>2]}F[a+4>>2]=d;ja(e)}}function Ef(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=F[b+4>>2];a:{if(!d){break a}b=F[F[F[b+8>>2]+(c<<2)>>2]+60>>2];if((b|0)<0){break a}a=F[d+24>>2];c=F[d+28>>2];if((a|0)==(c|0)){break a}b:{while(1){e=F[a>>2];if((b|0)==F[e+24>>2]){break b}a=a+4|0;if((c|0)!=(a|0)){continue}break}e=0}}return e|0}function ic(a){var b=0,c=0,d=0;if(a){d=F[a+24>>2];if(d){b=d;c=F[a+28>>2];if((b|0)!=(c|0)){while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;if(b){Ca(b+12|0,F[b+16>>2]);Ba(b,F[b+4>>2]);ja(b)}if((c|0)!=(d|0)){continue}break}b=F[a+24>>2]}F[a+28>>2]=d;ja(b)}Ca(a+12|0,F[a+16>>2]);Ba(a,F[a+4>>2]);ja(a)}}function $g(a){a=a|0;var b=0;F[a+8>>2]=9136;F[a>>2]=8924;b=F[a+96>>2];if(b){F[a+100>>2]=b;ja(b)}b=F[a+80>>2];if(b){F[a+84>>2]=b;ja(b)}b=F[a+68>>2];if(b){F[a+72>>2]=b;ja(b)}b=F[a+56>>2];if(b){F[a+60>>2]=b;ja(b)}F[a+8>>2]=9372;b=F[a+44>>2];if(b){ja(b)}b=F[a+32>>2];if(b){ja(b)}return a|0}function _g(a){a=a|0;var b=0;F[a+8>>2]=9136;F[a>>2]=8924;b=F[a+96>>2];if(b){F[a+100>>2]=b;ja(b)}b=F[a+80>>2];if(b){F[a+84>>2]=b;ja(b)}b=F[a+68>>2];if(b){F[a+72>>2]=b;ja(b)}b=F[a+56>>2];if(b){F[a+60>>2]=b;ja(b)}F[a+8>>2]=9372;b=F[a+44>>2];if(b){ja(b)}b=F[a+32>>2];if(b){ja(b)}ja(a)}function wh(a){a=a|0;var b=0,c=0,d=0;F[a>>2]=10032;b=F[a+20>>2];if(b){F[a+24>>2]=b;ja(b)}d=F[a+8>>2];if(d){c=F[a+12>>2];b=d;if((c|0)!=(b|0)){while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}if((c|0)!=(d|0)){continue}break}b=F[a+8>>2]}F[a+12>>2]=d;ja(b)}return a|0}function uc(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,f=0,g=0,h=0,i=0;h=F[c+8>>2];e=F[c+16>>2];g=F[c+12>>2];f=g;d=F[c+20>>2];if(h>>>0>e>>>0&(f|0)>=(d|0)|(d|0)<(f|0)){b=G[F[c>>2]+e|0];i=e+1|0;f=i?d:d+1|0;F[c+16>>2]=i;F[c+20>>2]=f;F[a+4>>2]=b}return e>>>0>>0&(d|0)<=(g|0)|(d|0)<(g|0)}function La(a,b,c){var d=0;if(!c){return F[a+4>>2]==F[b+4>>2]}if((a|0)==(b|0)){return 1}d=F[a+4>>2];a=G[d|0];c=F[b+4>>2];b=G[c|0];a:{if(!a|(b|0)!=(a|0)){break a}while(1){b=G[c+1|0];a=G[d+1|0];if(!a){break a}c=c+1|0;d=d+1|0;if((a|0)==(b|0)){continue}break}}return(a|0)==(b|0)}function Gg(a){a=a|0;var b=0,c=0,d=0;F[a>>2]=10032;b=F[a+20>>2];if(b){F[a+24>>2]=b;ja(b)}d=F[a+8>>2];if(d){c=F[a+12>>2];b=d;if((c|0)!=(b|0)){while(1){c=c-4|0;b=F[c>>2];F[c>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}if((c|0)!=(d|0)){continue}break}b=F[a+8>>2]}F[a+12>>2]=d;ja(b)}ja(a)}function Gf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=F[b+12>>2];b=F[b+8>>2];a=0;a:{if((d|0)==(b|0)){break a}a=d-b>>2;d=a>>>0<=1?1:a;a=0;b:{while(1){e=F[b+(a<<2)>>2];if(F[e+60>>2]==(c|0)){break b}a=a+1|0;if((d|0)!=(a|0)){continue}break}a=0;break a}a=(a|0)!=-1?e:0}return a|0}function ah(a){a=a|0;var b=0;F[a>>2]=9136;b=F[a+88>>2];if(b){F[a+92>>2]=b;ja(b)}b=F[a+72>>2];if(b){F[a+76>>2]=b;ja(b)}b=F[a+60>>2];if(b){F[a- -64>>2]=b;ja(b)}b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}F[a>>2]=9372;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}return a|0}function Tc(a,b){var c=0,d=0,e=0;F[a+8>>2]=0;F[a>>2]=0;F[a+4>>2]=0;a:{c=F[b+4>>2];d=F[b>>2];b:{if((c|0)==(d|0)){a=c;break b}c=c-d|0;if((c|0)<0){break a}d=c;e=ka(c);c=ma(e,0,c);d=d+c|0;F[a+8>>2]=d;F[a+4>>2]=d;F[a>>2]=c;c=F[b>>2];a=F[b+4>>2]}la(e,c,a-c|0);return}na();v()}function Dd(a){var b=0,c=0,d=0,e=0;c=F[a+4>>2];d=F[a>>2];if((c|0)!=(d|0)){while(1){e=c-144|0;b=F[e+132>>2];if(b){F[c-8>>2]=b;ja(b)}b=F[c-28>>2];if(b){F[c-24>>2]=b;ja(b)}b=F[c-40>>2];if(b){F[c-36>>2]=b;ja(b)}Gb(c-140|0);c=e;if((d|0)!=(c|0)){continue}break}}F[a+4>>2]=d}function Xg(a){a=a|0;var b=0;F[a>>2]=9136;b=F[a+88>>2];if(b){F[a+92>>2]=b;ja(b)}b=F[a+72>>2];if(b){F[a+76>>2]=b;ja(b)}b=F[a+60>>2];if(b){F[a- -64>>2]=b;ja(b)}b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}F[a>>2]=9372;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}ja(a)}function Za(a){var b=0;if(a){b=F[a+76>>2];if(b){F[a+80>>2]=b;ja(b)}b=F[a- -64>>2];if(b){F[a+68>>2]=b;ja(b)}b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}b=F[a+24>>2];if(b){F[a+28>>2]=b;ja(b)}b=F[a+12>>2];if(b){F[a+16>>2]=b;ja(b)}b=F[a>>2];if(b){F[a+4>>2]=b;ja(b)}ja(a)}}function Gb(a){var b=0;b=F[a+84>>2];if(b){F[a+88>>2]=b;ja(b)}b=F[a+72>>2];if(b){F[a+76>>2]=b;ja(b)}b=F[a+52>>2];if(b){F[a+56>>2]=b;ja(b)}b=F[a+40>>2];if(b){F[a+44>>2]=b;ja(b)}b=F[a+28>>2];if(b){F[a+32>>2]=b;ja(b)}b=F[a+12>>2];if(b){ja(b)}a=F[a>>2];if(a){ja(a)}}function Lc(a,b,c){var d=0,e=0,f=0,g=0;f=Z-16|0;Z=f;d=Z-16|0;Z=d;b=b-a>>2;while(1){if(b){F[d+12>>2]=a;e=b>>>1|0;F[d+12>>2]=F[d+12>>2]+(e<<2);g=(e^-1)+b|0;b=e;e=I[F[d+12>>2]>>2]>2];b=e?g:b;a=e?F[d+12>>2]+4|0:a;continue}break}Z=d+16|0;Z=f+16|0;return a}function id(a,b){var c=0,d=0;d=ka(40);F[d>>2]=-1;c=d+8|0;F[c+16>>2]=0;F[c+20>>2]=0;F[c+8>>2]=0;F[c>>2]=0;F[c+4>>2]=0;F[c+24>>2]=0;F[c+28>>2]=0;$[F[F[a>>2]+16>>2]](a,d);a=F[b+88>>2];F[b+88>>2]=d;if(a){b=F[a+8>>2];if(b){F[a+12>>2]=b;ja(b)}ja(a)}return 1}function ya(a){var b=0,c=0,d=0;b=a;a:{if(b&3){while(1){if(!G[b|0]){break a}b=b+1|0;if(b&3){continue}break}}while(1){c=b;b=b+4|0;d=F[c>>2];if(!((d^-1)&d-16843009&-2139062144)){continue}break}while(1){b=c;c=b+1|0;if(G[b|0]){continue}break}}return b-a|0}function wa(a){var b=0,c=0,d=0,e=0,f=0;d=G[a+12|0];c=F[a+8>>2];a:{if(c>>>0>4095){break a}b=F[a+4>>2];if((b|0)<=0){break a}b=b-1|0;F[a+4>>2]=b;c=G[b+F[a>>2]|0]|c<<8}d=0-d&255;b=L(d,c>>>8|0);e=c&255;f=e>>>0>>0;F[a+8>>2]=f?b+e|0:c-(b+d|0)|0;return f}function yc(a,b){F[a+4>>2]=0;F[a+8>>2]=0;F[a>>2]=1776;F[a+12>>2]=0;F[a+16>>2]=0;F[a+20>>2]=0;F[a+24>>2]=0;F[a+28>>2]=0;F[a+32>>2]=0;F[a+36>>2]=0;F[a+40>>2]=0;F[a>>2]=2016;F[a+60>>2]=b;F[a+44>>2]=0;F[a+48>>2]=0;F[a+52>>2]=0;F[a+56>>2]=0;return a}function Eb(a,b){var c=0,d=0,e=0;c=ya(b);if(c>>>0<2147483632){a:{b:{if(c>>>0>=11){d=(c|15)+1|0;e=ka(d);F[a+8>>2]=d|-2147483648;F[a>>2]=e;F[a+4>>2]=c;d=c+e|0;break b}D[a+11|0]=c;d=a+c|0;e=a;if(!c){break a}}pa(e,b,c)}D[d|0]=0;return a}za();v()}function Of(a){a=a|0;var b=0,c=0,d=0;if(a){if(D[a+27|0]<0){ja(F[a+16>>2])}b=F[a>>2];if(b){c=b;d=F[a+4>>2];if((b|0)!=(d|0)){while(1){c=d-12|0;if(D[d-1|0]<0){ja(F[c>>2])}d=c;if((d|0)!=(b|0)){continue}break}c=F[a>>2]}F[a+4>>2]=b;ja(c)}ja(a)}}function xa(a){a=a|0;var b=0,c=0;if(a){b=F[a+88>>2];F[a+88>>2]=0;if(b){c=F[b+8>>2];if(c){F[b+12>>2]=c;ja(c)}ja(b)}b=F[a+68>>2];if(b){F[a+72>>2]=b;ja(b)}b=F[a+64>>2];F[a+64>>2]=0;if(b){c=F[b>>2];if(c){F[b+4>>2]=c;ja(c)}ja(b)}ja(a)}}function Ib(a,b){var c=0,d=0,e=0;a:{c=F[a>>2];b:{if(F[a+8>>2]-c>>2>>>0>=b>>>0){break b}if(b>>>0>=1073741824){break a}d=F[a+4>>2]-c|0;e=b<<2;b=pa(ka(e),c,d);F[a+8>>2]=b+e;F[a+4>>2]=b+d;F[a>>2]=b;if(!c){break b}ja(c)}return}na();v()}function Df(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;b=F[b+96>>2];a=ka(12);b=b+L(c,12)|0;c=F[b+4>>2];F[a>>2]=F[b>>2];F[a+4>>2]=c;F[a+8>>2]=F[b+8>>2];b=F[d>>2];if(b){F[d+4>>2]=b;ja(b)}F[d>>2]=a;a=a+12|0;F[d+8>>2]=a;F[d+4>>2]=a;return 1}function Ah(a){a=a|0;var b=0;F[a+24>>2]=1624;F[a>>2]=7948;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}F[a>>2]=2136;b=F[a+20>>2];F[a+20>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}F[a>>2]=1920;b=F[a+16>>2];F[a+16>>2]=0;if(b){xa(b)}return a|0}function li(a,b,c,d){var e=0,f=0,g=0,h=0;f=b^d;g=f>>31;e=b>>31;a=a^e;h=a-e|0;e=(b^e)-((a>>>0>>0)+e|0)|0;a=d>>31;b=c^a;f=f>>31;a=mi(h,e,b-a|0,(a^d)-((a>>>0>b>>>0)+a|0)|0)^f;b=a-f|0;_=(g^_)-((a>>>0>>0)+g|0)|0;return b}function zh(a){a=a|0;var b=0;F[a+24>>2]=1624;F[a>>2]=7948;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}F[a>>2]=2136;b=F[a+20>>2];F[a+20>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}F[a>>2]=1920;b=F[a+16>>2];F[a+16>>2]=0;if(b){xa(b)}ja(a)}function rb(a,b,c){var d=0,e=0,f=0;e=Z-16|0;Z=e;d=F[a+8>>2]&2147483647;a:{if(d>>>0>c>>>0){d=F[a>>2];F[a+4>>2]=c;db(d,b,c);D[e+15|0]=0;D[c+d|0]=G[e+15|0];break a}f=a;a=F[a+4>>2];Gc(f,d-1|0,(c-d|0)+1|0,a,a,c,b)}Z=e+16|0}function xe(a,b){a=a|0;b=b|0;var c=0,d=0;c=Z-16|0;Z=c;a=F[a+4>>2];a:{if((a|0)==-1){break a}D[c+15|0]=a;d=F[b+20>>2];if(!!F[b+16>>2]&(d|0)>=0|(d|0)>0){break a}pb(b,F[b+4>>2],c+15|0,c+16|0)}Z=c+16|0;return(a|0)!=-1|0}function ki(a,b,c,d){var e=0,f=0,g=0,h=0,i=0,j=0;e=c>>>16|0;f=a>>>16|0;j=L(e,f);g=c&65535;h=a&65535;i=L(g,h);f=(i>>>16|0)+L(f,g)|0;e=(f&65535)+L(e,h)|0;_=(L(b,c)+j|0)+L(a,d)+(f>>>16)+(e>>>16)|0;return i&65535|e<<16}function qb(a,b,c){var d=0,e=0;d=Z-16|0;Z=d;a:{if(c>>>0<=10){D[a+11|0]=G[a+11|0]&128|c;D[a+11|0]=G[a+11|0]&127;db(a,b,c);D[d+15|0]=0;D[a+c|0]=G[d+15|0];break a}e=a;a=G[a+11|0]&127;Gc(e,10,c-10|0,a,a,c,b)}Z=d+16|0}function Ec(a,b,c){var d=0;d=F[a+16>>2];if(!d){F[a+36>>2]=1;F[a+24>>2]=c;F[a+16>>2]=b;return}a:{if((b|0)==(d|0)){if(F[a+24>>2]!=2){break a}F[a+24>>2]=c;return}D[a+54|0]=1;F[a+24>>2]=2;F[a+36>>2]=F[a+36>>2]+1}}function vg(){var a=0;a=kb(ka(96));F[a+64>>2]=0;F[a+68>>2]=0;F[a+88>>2]=0;F[a+72>>2]=0;F[a+76>>2]=0;D[a+77|0]=0;D[a+78|0]=0;D[a+79|0]=0;D[a+80|0]=0;D[a+81|0]=0;D[a+82|0]=0;D[a+83|0]=0;D[a+84|0]=0;return a|0}function jh(a,b){a=a|0;b=b|0;var c=0,d=0;F[b>>2]=2;c=F[b+8>>2];d=F[b+12>>2]-c|0;if(d>>>0<=4294967291){Db(b+8|0,d+4|0);c=F[b+8>>2]}b=c+d|0;a=F[a+4>>2];D[b|0]=a;D[b+1|0]=a>>>8;D[b+2|0]=a>>>16;D[b+3|0]=a>>>24}function ge(a){a=a|0;var b=0;F[a>>2]=3016;b=F[a+96>>2];if(b){ja(b)}b=F[a+84>>2];if(b){ja(b)}b=F[a+72>>2];if(b){ja(b)}b=F[a+60>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}return a|0}function ci(a){a=a|0;var b=0;F[a>>2]=4580;b=F[a+96>>2];if(b){ja(b)}b=F[a+84>>2];if(b){ja(b)}b=F[a+72>>2];if(b){ja(b)}b=F[a+60>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}return a|0}function Cg(a){a=a|0;var b=0,c=0,d=0;b=F[a+8>>2];d=F[a+12>>2];if((b|0)==(d|0)){return 1}while(1){c=F[b>>2];c=$[F[F[c>>2]+16>>2]](c,F[a+32>>2])|0;if(c){b=b+4|0;if((d|0)!=(b|0)){continue}}break}return c|0}function Pc(a,b){var c=0,d=0;c=F[a+8>>2];a=F[a+12>>2];if((c|0)!=(a|0)){a=a-c>>2;d=a>>>0<=1?1:a;a=0;while(1){if(F[F[(a<<2)+c>>2]+60>>2]==(b|0)){return a}a=a+1|0;if((d|0)!=(a|0)){continue}break}}return-1}function fe(a){a=a|0;var b=0;F[a>>2]=3016;b=F[a+96>>2];if(b){ja(b)}b=F[a+84>>2];if(b){ja(b)}b=F[a+72>>2];if(b){ja(b)}b=F[a+60>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}ja(a)}function bi(a){a=a|0;var b=0;F[a>>2]=4580;b=F[a+96>>2];if(b){ja(b)}b=F[a+84>>2];if(b){ja(b)}b=F[a+72>>2];if(b){ja(b)}b=F[a+60>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}ja(a)}function Sc(a,b,c){var d=0,e=0;d=a+4|0;a=Ya(a,b);a:{if((d|0)==(a|0)){break a}b=F[a+32>>2];d=F[a+28>>2];if((b|0)==(d|0)){break a}Sb(c,b-d|0);c=Tb(c);b=F[a+28>>2];la(c,b,F[a+32>>2]-b|0);e=1}return e}function Kd(a){F[a+40>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;F[a>>2]=10032;F[a+12>>2]=0;F[a+16>>2]=0;F[a+20>>2]=0;F[a+24>>2]=0;F[a+28>>2]=0;F[a+32>>2]=0;E[a+36>>1]=0;F[a+44>>2]=0;F[a>>2]=8080;return a}function kb(a){F[a+8>>2]=0;F[a+12>>2]=0;F[a>>2]=0;F[a+40>>2]=0;F[a+44>>2]=0;F[a+28>>2]=9;D[a+24|0]=1;F[a+56>>2]=-1;F[a+60>>2]=0;F[a+16>>2]=0;F[a+20>>2]=0;F[a+48>>2]=0;F[a+52>>2]=0;return a}function pe(a,b){a=a|0;b=b|0;var c=0,d=0;d=F[a+16>>2];c=0;a:{if(F[a+20>>2]-d>>2<=(b|0)){break a}b=F[(b<<2)+d>>2];c=0;if((b|0)<0){break a}c=bb(F[F[a+36>>2]+(b<<2)>>2])}return c|0}function Nf(){var a=0,b=0;a=ka(40);F[a+4>>2]=0;F[a+8>>2]=0;F[a+24>>2]=0;F[a+28>>2]=0;b=a+16|0;F[b>>2]=0;F[b+4>>2]=0;F[a>>2]=a+4;F[a+12>>2]=b;F[a+32>>2]=0;F[a+36>>2]=0;return a|0}function Xe(a,b){a=a|0;b=b|0;var c=0,d=0;Nc(a,b);a:{if((b|0)<0){break a}d=F[a+88>>2];c=F[a+84>>2];if(d-c>>2<=(b|0)){break a}c=(b<<2)+c|0;b=c+4|0;pa(c,b,d-b|0);F[a+88>>2]=d-4}}function eb(a){var b=0,c=0;b=F[2909];c=a+7&-8;a=b+c|0;a:{if(a>>>0<=b>>>0?c:0){break a}if(a>>>0>aa()<<16>>>0){if(!(X(a|0)|0)){break a}}F[2909]=a;return b}F[2940]=48;return-1}function Th(a,b,c){a=a|0;b=b|0;c=c|0;var d=0;F[a+4>>2]=b;b=F[F[F[b+4>>2]+8>>2]+(c<<2)>>2];F[a+12>>2]=c;F[a+8>>2]=b;a=F[a+8>>2];if(G[a+24|0]==3){d=F[a+28>>2]==9}return d|0}function Tg(a){a=a|0;var b=0;F[a+8>>2]=9556;F[a>>2]=9392;b=F[a+56>>2];if(b){F[a+60>>2]=b;ja(b)}F[a+8>>2]=9372;b=F[a+44>>2];if(b){ja(b)}b=F[a+32>>2];if(b){ja(b)}return a|0}function Ng(a){a=a|0;var b=0;F[a+8>>2]=8624;F[a>>2]=9684;b=F[a+56>>2];if(b){F[a+60>>2]=b;ja(b)}F[a+8>>2]=8876;b=F[a+44>>2];if(b){ja(b)}b=F[a+32>>2];if(b){ja(b)}return a|0}function Ee(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=F[a+8>>2];a:{if(!G[d+24|0]){break a}if(!ac(d,F[b+4>>2]-F[b>>2]>>2)){break a}e=$[F[F[a>>2]+32>>2]](a,b,c)|0}return e|0}function Fh(a,b,c){a=a|0;b=b|0;c=c|0;var d=0;F[a+4>>2]=b;d=F[F[F[b+4>>2]+8>>2]+(c<<2)>>2];F[a+12>>2]=c;F[a+8>>2]=d;return F[F[F[F[b+4>>2]+8>>2]+(c<<2)>>2]+28>>2]==9|0}function Ca(a,b){if(b){Ca(a,F[b>>2]);Ca(a,F[b+4>>2]);a=F[b+28>>2];F[b+28>>2]=0;if(a){Ca(a+12|0,F[a+16>>2]);Ba(a,F[a+4>>2]);ja(a)}if(D[b+27|0]<0){ja(F[b+16>>2])}ja(b)}}function Sg(a){a=a|0;var b=0;F[a+8>>2]=9556;F[a>>2]=9392;b=F[a+56>>2];if(b){F[a+60>>2]=b;ja(b)}F[a+8>>2]=9372;b=F[a+44>>2];if(b){ja(b)}b=F[a+32>>2];if(b){ja(b)}ja(a)}function Mg(a){a=a|0;var b=0;F[a+8>>2]=8624;F[a>>2]=9684;b=F[a+56>>2];if(b){F[a+60>>2]=b;ja(b)}F[a+8>>2]=8876;b=F[a+44>>2];if(b){ja(b)}b=F[a+32>>2];if(b){ja(b)}ja(a)}function Hc(a,b){var c=0,d=0,e=0,f=0;F[a>>2]=11356;F[a>>2]=11468;c=ya(b);d=ka(c+13|0);F[d+8>>2]=0;F[d+4>>2]=c;F[d>>2]=c;e=a,f=la(d+12|0,b,c+1|0),F[e+4>>2]=f;return a}function hc(a,b,c){a:{if(b){b=0;if(!ld(1,c,a)){break a}}D[a+36|0]=1;F[a+32>>2]=0;b=F[a+16>>2];c=b+F[a>>2]|0;F[a+24>>2]=c;F[a+28>>2]=c+(F[a+8>>2]-b|0);b=1}return b}function Ue(a,b){a=a|0;b=b|0;var c=0;a:{if(!($[F[F[a>>2]+36>>2]](a,b)|0)){break a}if(!($[F[F[a>>2]+40>>2]](a,b)|0)){break a}c=$[F[F[a>>2]+44>>2]](a)|0}return c|0}function _d(a){a=a|0;var b=0;a:{if(!F[a- -64>>2]|!F[a+68>>2]|(!F[a+44>>2]|!F[a+48>>2])){break a}if(!F[a+52>>2]|!F[a+56>>2]){break a}b=F[a+92>>2]!=-1}return b|0}function ii(a,b){a=a|0;b=b|0;var c=0;b=F[b+88>>2];if(!(!b|F[b>>2]!=2)){c=a;a=F[b+8>>2];F[c+4>>2]=G[a|0]|G[a+1|0]<<8|(G[a+2|0]<<16|G[a+3|0]<<24);c=1}return c|0}function wc(a){a=a|0;var b=0;F[a>>2]=2136;b=F[a+20>>2];F[a+20>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}F[a>>2]=1920;b=F[a+16>>2];F[a+16>>2]=0;if(b){xa(b)}return a|0}function Ud(a){a=a|0;var b=0;a:{if(!F[a+48>>2]|!F[a+52>>2]|(!F[a+28>>2]|!F[a+32>>2])){break a}if(!F[a+36>>2]|!F[a+40>>2]){break a}b=F[a+76>>2]!=-1}return b|0}function Ug(a){a=a|0;var b=0;F[a>>2]=9556;b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}F[a>>2]=9372;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}return a|0}function Ed(a){a=a|0;var b=0;F[a>>2]=8624;b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}F[a>>2]=8876;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}return a|0}function vc(a){a=a|0;var b=0;F[a>>2]=2136;b=F[a+20>>2];F[a+20>>2]=0;if(b){$[F[F[b>>2]+4>>2]](b)}F[a>>2]=1920;b=F[a+16>>2];F[a+16>>2]=0;if(b){xa(b)}ja(a)}function yg(){var a=0,b=0;b=ka(40);F[b>>2]=-1;a=b+8|0;F[a+16>>2]=0;F[a+20>>2]=0;F[a+8>>2]=0;F[a>>2]=0;F[a+4>>2]=0;F[a+24>>2]=0;F[a+28>>2]=0;return b|0}function eh(a){a=a|0;var b=0;F[a>>2]=8624;b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}F[a>>2]=8876;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}ja(a)}function Og(a){a=a|0;var b=0;F[a>>2]=9556;b=F[a+48>>2];if(b){F[a+52>>2]=b;ja(b)}F[a>>2]=9372;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}ja(a)}function Ja(a){F[a+8>>2]=0;F[a+12>>2]=0;F[a>>2]=0;F[a+16>>2]=0;F[a+20>>2]=0;F[a+32>>2]=0;F[a+24>>2]=0;F[a+28>>2]=0;E[a+38>>1]=0;D[a+36|0]=0;return a}function Me(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;if(La(a,F[b+8>>2],f)){Dc(b,c,d,e);return}a=F[a+8>>2];$[F[F[a>>2]+20>>2]](a,b,c,d,e,f)}function Eh(a,b,c){a=a|0;b=b|0;c=c|0;a:{if(G[F[a+4>>2]+36|0]>=2){b=0;if(!($[F[F[a>>2]+52>>2]](a)|0)){break a}}b=id(a+24|0,F[a+16>>2])}return b|0}function hg(){var a=0;a=Rc(ka(108));F[a+84>>2]=0;F[a+88>>2]=0;F[a>>2]=10240;F[a+92>>2]=0;F[a+96>>2]=0;F[a+100>>2]=0;F[a+104>>2]=0;return a|0}function Qc(a,b){var c=0;c=-1;a:{if((b|0)==-1|(b|0)>4){break a}b=L(b,12)+a|0;a=F[b+20>>2];if((F[b+24>>2]-a|0)<=0){break a}c=F[a>>2]}return c}function cc(a,b,c,d,e,f,g){F[a>>2]=0;F[a+56>>2]=b;F[a+48>>2]=0;F[a+52>>2]=0;F[a+40>>2]=f;F[a+44>>2]=g;D[a+32|0]=e;F[a+28>>2]=d;D[a+24|0]=c}function Sh(a,b,c){a=a|0;b=b|0;c=c|0;a:{if(G[F[a+4>>2]+36|0]>=2){b=0;if(!uc(a+24|0,bb(a),c)){break a}}b=id(a+24|0,F[a+16>>2])}return b|0}function _e(a){a=a|0;var b=0;F[a>>2]=10240;b=F[a+96>>2];if(b){F[a+100>>2]=b;ja(b)}b=F[a+84>>2];if(b){F[a+88>>2]=b;ja(b)}return tb(a)|0}function Tb(a){var b=0;if(G[a+11|0]>>>7|0){b=F[a+4>>2]}else{b=G[a+11|0]&127}if(!b){sc(1222);v()}if(G[a+11|0]>>>7|0){a=F[a>>2]}return a}function Ze(a){a=a|0;var b=0;F[a>>2]=10240;b=F[a+96>>2];if(b){F[a+100>>2]=b;ja(b)}b=F[a+84>>2];if(b){F[a+88>>2]=b;ja(b)}ja(tb(a))}function ce(a){a=a|0;var b=0;F[a>>2]=3264;b=F[a+76>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}return a|0}function _h(a){a=a|0;var b=0;F[a>>2]=4816;b=F[a+76>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}return a|0}function Ba(a,b){if(b){Ba(a,F[b>>2]);Ba(a,F[b+4>>2]);a=F[b+28>>2];if(a){F[b+32>>2]=a;ja(a)}if(D[b+27|0]<0){ja(F[b+16>>2])}ja(b)}}function Wf(){var a=0;a=ka(28);F[a>>2]=0;F[a+4>>2]=0;F[a+24>>2]=0;F[a+16>>2]=0;F[a+20>>2]=0;F[a+8>>2]=0;F[a+12>>2]=0;return a|0}function We(a){a=a|0;var b=0;F[a>>2]=1776;b=F[a+16>>2];if(b){F[a+20>>2]=b;ja(b)}b=F[a+4>>2];if(b){F[a+8>>2]=b;ja(b)}return a|0}function fg(){var a=0,b=0;a=ka(24);F[a+4>>2]=0;F[a+8>>2]=0;b=a+16|0;F[b>>2]=0;F[b+4>>2]=0;F[a>>2]=a+4;F[a+12>>2]=b;return a|0}function Pe(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;if(La(a,F[b+8>>2],0)){Ec(b,c,d);return}a=F[a+8>>2];$[F[F[a>>2]+28>>2]](a,b,c,d)}function be(a){a=a|0;var b=0;F[a>>2]=3264;b=F[a+76>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}ja(a)}function Zh(a){a=a|0;var b=0;F[a>>2]=4816;b=F[a+76>>2];if(b){ja(b)}F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}ja(a)}function ka(a){var b=0;a=a?a:1;a:{while(1){b=Ub(a);if(b){break a}b=F[3065];if(b){$[b|0]();continue}break}V();v()}return b}function ib(a,b){if(b){ib(a,F[b>>2]);ib(a,F[b+4>>2]);if(D[b+39|0]<0){ja(F[b+28>>2])}if(D[b+27|0]<0){ja(F[b+16>>2])}ja(b)}}function Cc(a){a=a|0;var b=0,c=0;F[a>>2]=11468;b=F[a+4>>2]-12|0;c=F[b+8>>2]-1|0;F[b+8>>2]=c;if((c|0)<0){ja(b)}return a|0}function ng(){var a=0;a=ka(24);F[a+8>>2]=0;F[a+12>>2]=0;F[a+4>>2]=-1;F[a>>2]=1624;F[a+16>>2]=0;F[a+20>>2]=0;return a|0}function Ac(a,b,c){a=a|0;b=b|0;c=c|0;F[a+4>>2]=b;b=F[F[F[b+4>>2]+8>>2]+(c<<2)>>2];F[a+12>>2]=c;F[a+8>>2]=b;return 1}function pc(a){a=a|0;var b=0;if(!(!F[a+60>>2]|!F[a+44>>2]|(!F[a+48>>2]|!F[a+52>>2]))){b=F[a+56>>2]!=0}return b|0}function Ic(a,b){if(G[a+11|0]>>>7|0){F[a+4>>2]=b;return}D[a+11|0]=G[a+11|0]&128|b;D[a+11|0]=G[a+11|0]&127}function gi(a){a=a|0;var b=0;F[a>>2]=3500;F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}return a|0}function Xh(a){a=a|0;var b=0;F[a>>2]=5040;F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}return a|0}function nf(a){a=a|0;if(a){if(D[a+39|0]<0){ja(F[a+28>>2])}$b(a+12|0,F[a+16>>2]);ib(a,F[a+4>>2]);ja(a)}}function dh(a){a=a|0;var b=0;F[a>>2]=8876;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}return a|0}function Wg(a){a=a|0;var b=0;F[a>>2]=9372;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}return a|0}function ob(a){a=a|0;var b=0;if(!(!F[a+52>>2]|(!F[a+44>>2]|!F[a+48>>2]))){b=F[a+56>>2]!=0}return b|0}function oc(a,b){a=a|0;b=b|0;var c=0;if(!(F[b+56>>2]|!b|G[b+24|0]!=3)){F[a+60>>2]=b;c=1}return c|0}function fi(a){a=a|0;var b=0;F[a>>2]=3500;F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}ja(a)}function Wh(a){a=a|0;var b=0;F[a>>2]=5040;F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}ja(a)}function zg(a,b,c){a=a|0;b=b|0;c=c|0;F[a+16>>2]=0;F[a+20>>2]=0;F[a>>2]=b;F[a+8>>2]=c;F[a+12>>2]=0}function ch(a){a=a|0;var b=0;F[a>>2]=8876;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}ja(a)}function Zd(a,b){a=a|0;b=b|0;var c=0;if(!(F[b+56>>2]|G[b+24|0]!=3)){F[a- -64>>2]=b;c=1}return c|0}function Vg(a){a=a|0;var b=0;F[a>>2]=9372;b=F[a+36>>2];if(b){ja(b)}b=F[a+24>>2];if(b){ja(b)}ja(a)}function Td(a,b){a=a|0;b=b|0;var c=0;if(!(F[b+56>>2]|G[b+24|0]!=3)){F[a+48>>2]=b;c=1}return c|0}function Le(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;if(La(a,F[b+8>>2],f)){Dc(b,c,d,e)}}function oa(){var a=0;a=Rb(4);F[a>>2]=11356;F[a>>2]=11316;F[a>>2]=11336;W(a|0,11448,14);v()}function je(a){a=a|0;var b=0;F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}return a|0}function Ae(a){a=a|0;var b=0;F[a>>2]=1920;b=F[a+16>>2];F[a+16>>2]=0;if(b){xa(b)}return a|0}function Pg(a){a=a|0;var b=0;F[a>>2]=1624;b=F[a+8>>2];if(b){F[a+12>>2]=b;ja(b)}return a|0}function Ch(a){a=a|0;var b=0;b=bb(a);return qd(a+24|0,b?b:F[a+8>>2],F[F[a+4>>2]+32>>2])|0}function ze(a){a=a|0;var b=0;F[a>>2]=1920;b=F[a+16>>2];F[a+16>>2]=0;if(b){xa(b)}ja(a)}function Ob(a){a=a|0;var b=0;F[a>>2]=2960;b=F[a+32>>2];if(b){F[a+36>>2]=b;ja(b)}ja(a)}function Hg(a){a=a|0;var b=0;F[a>>2]=1624;b=F[a+8>>2];if(b){F[a+12>>2]=b;ja(b)}ja(a)}function oe(a,b){a=a|0;b=b|0;return $[F[F[a>>2]+48>>2]](a,F[b+4>>2]-F[b>>2]>>2)|0}function $b(a,b){if(b){$b(a,F[b>>2]);$b(a,F[b+4>>2]);ib(b+20|0,F[b+24>>2]);ja(b)}}function xg(a){a=a|0;var b=0;if(a){b=F[a+8>>2];if(b){F[a+12>>2]=b;ja(b)}ja(a)}}function xh(a){a=a|0;if(!F[a+44>>2]){return 0}return $[F[F[a>>2]+48>>2]](a)|0}function ni(a){var b=0;while(1){if(a){a=a-1&a;b=b+1|0;continue}break}return b}function Qe(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;if(La(a,F[b+8>>2],0)){Ec(b,c,d)}}function vh(a,b){a=a|0;b=b|0;a=F[a+48>>2];return $[F[F[a>>2]+20>>2]](a,b)|0}function oi(a){var b=0;b=a&31;a=0-a&31;return(-1>>>b&-2)<>>a} -function oh(a,b){a=a|0;b=b|0;a=F[a+48>>2];return $[F[F[a>>2]+12>>2]](a,b)|0}function nh(a,b){a=a|0;b=b|0;a=F[a+48>>2];return $[F[F[a>>2]+16>>2]](a,b)|0}function Xa(){var a=0;a=ka(12);F[a>>2]=0;F[a+4>>2]=0;F[a+8>>2]=0;return a|0}function Wa(a){a=a|0;var b=0;if(a){b=F[a>>2];if(b){F[a+4>>2]=b;ja(b)}ja(a)}}function mf(a,b,c){a=a|0;b=b|0;c=c|0;F[a+32>>2]=c;F[a+28>>2]=b;return 1}function eg(a){a=a|0;if(a){Ca(a+12|0,F[a+16>>2]);Ba(a,F[a+4>>2]);ja(a)}}function Lb(a,b){a=a|0;b=b|0;if(b>>>0<=1){F[a+28>>2]=b}return b>>>0<2|0}function Fg(a,b){a=a|0;b=b|0;D[b+84|0]=1;F[b+72>>2]=F[b+68>>2];return 1}function kg(){var a=0;a=ka(8);F[a+4>>2]=-1;F[a>>2]=1032;return a|0}function Hf(a,b,c){a=a|0;b=b|0;c=c|0;return F[F[b+8>>2]+(c<<2)>>2]}function th(a){a=a|0;a=F[a+48>>2];return $[F[F[a>>2]+24>>2]](a)|0}function sh(a){a=a|0;a=F[a+48>>2];return $[F[F[a>>2]+28>>2]](a)|0}function ph(a){a=a|0;a=F[a+48>>2];return $[F[F[a>>2]+36>>2]](a)|0}function Rh(a,b){a=a|0;b=b|0;return zc(a+24|0,bb(a),F[a+8>>2])|0}function Bh(a,b){a=a|0;b=b|0;return xd(a+24|0,bb(a),F[a+8>>2])|0}function bg(a){a=a|0;if(a){if(D[a+15|0]<0){ja(F[a+4>>2])}ja(a)}}function Ke(a){a=a|0;if(!a){return 0}return(Fc(a,11164)|0)!=0|0}function Fe(a,b){a=a|0;b=b|0;F[a+12>>2]=-1;F[a+8>>2]=b;return 1}function hd(a,b){a=a|0;b=b|0;return $[F[F[a>>2]+12>>2]](a,b)|0}function Dh(a,b){a=a|0;b=b|0;return $[F[F[a>>2]+56>>2]](a,b)|0}function sc(a){a=Hc(Rb(8),a);F[a>>2]=11568;W(a|0,11600,1);v()}function mg(a,b){a=a|0;b=b|0;return M(J[F[a+8>>2]+(b<<2)>>2])}function Rd(a){a=Hc(Rb(8),a);F[a>>2]=11516;W(a|0,11548,1);v()}function $f(a,b){a=a|0;b=b|0;return M(J[F[a>>2]+(b<<2)>>2])}function gg(a){a=a|0;return(F[a+100>>2]-F[a+96>>2]|0)/12|0}function cg(a){a=a|0;return(D[a+15|0]<0?F[a+4>>2]:a+4|0)|0}function Re(a,b){a=a|0;b=b|0;return F[F[a+4>>2]+(b<<2)>>2]}function dd(a,b){a=a|0;b=b|0;return F[F[a>>2]+(b<<2)>>2]}function Yf(a,b){a=a|0;b=b|0;return E[F[a>>2]+(b<<1)>>1]}function Xf(a,b){a=a|0;b=b|0;return H[F[a>>2]+(b<<1)>>1]}function Vd(a,b,c){a=a|0;b=b|0;c=c|0;return xc(a,b,c)|0}function sb(a,b){var c=0;c=ka(b);F[a+4>>2]=b;F[a>>2]=c}function Kf(a,b,c){a=a|0;b=b|0;c=c|0;return Qc(b,c)|0}function Rc(a){F[a>>2]=10300;ma(a+4|0,0,80);return a}function ji(a){if(a){return 31-O(a-1^a)|0}return 32}function gd(a){a=a|0;return F[a+12>>2]-F[a+8>>2]>>2}function _f(a,b){a=a|0;b=b|0;return D[F[a>>2]+b|0]}function Zf(a,b){a=a|0;b=b|0;return G[F[a>>2]+b|0]}function Ie(a){a=a|0;return F[a+8>>2]-F[a+4>>2]>>2}function wb(a){a=a|0;if(a){$[F[F[a>>2]+4>>2]](a)}}function Jd(a,b){a=a|0;b=b|0;F[a+4>>2]=b;return 1}function ed(a){a=a|0;return F[a+4>>2]-F[a>>2]>>1}function dc(a){a=a|0;return F[a+4>>2]-F[a>>2]>>2}function fd(a){a=a|0;return F[a+4>>2]-F[a>>2]|0}function ke(a){a=a|0;return G[F[a+8>>2]+24|0]}function Qf(a,b){a=a|0;b=b|0;return F[b+8>>2]}function Ff(a,b){a=a|0;b=b|0;return F[b+4>>2]}function De(a,b,c){a=a|0;b=b|0;c=c|0;return 1}function Bg(a,b){a=a|0;b=b|0;return G[b+24|0]}function Oh(a){a=a|0;F[a>>2]=5928;return a|0}function Jh(a){a=a|0;F[a>>2]=6932;return a|0}function lg(a){a=a|0;return M(J[a+20>>2])}function Nh(a){a=a|0;F[a>>2]=5928;ja(a)}function Ih(a){a=a|0;F[a>>2]=6932;ja(a)}function ug(a){a=a|0;return F[a+88>>2]}function tg(a){a=a|0;return F[a+56>>2]}function qg(a){a=a|0;return F[a+40>>2]}function pg(a){a=a|0;return F[a+48>>2]}function og(a){a=a|0;return F[a+60>>2]}function ec(a){a=a|0;return F[a+80>>2]}function cb(a){a=a|0;return F[a+28>>2]}function vd(a){a=a|0;return F[a+8>>2]}function tc(a,b){a=a|0;b=b|0;return-1}function sg(a){a=a|0;return D[a+24|0]}function rg(a){a=a|0;return G[a+32|0]}function dg(a){a=a|0;return!F[a>>2]|0}function Wd(a,b){a=a|0;b=b|0;return 6}function Va(a){a=a|0;return F[a+4>>2]}function Rb(a){return Ub(a+80|0)+80|0}function Qh(a,b){a=a|0;b=b|0;return 2}function Ia(a,b){a=a|0;b=b|0;return 0}function Bc(a,b){a=a|0;b=b|0;return 1}function jd(a){a=a|0;return F[a>>2]}function wg(){return kb(ka(64))|0}function ig(){return Rc(ka(84))|0}function fc(a){a=a|0;if(a){ja(a)}}function Ag(){return Ja(ka(40))|0}function Qb(a){a=a|0;Cc(a);ja(a)}function Je(a){a=a|0;return 1161}function He(a){a=a|0;return 1235}function Ge(a){a=a|0;return 1201}function Pa(a){a=a|0;return a|0}function hh(a){a=a|0;ja(ud(a))}function gh(a){a=a|0;ja(sd(a))}function Ve(a){a=a|0;ja(tb(a))}function ua(a){a=a|0;return 1}function rc(a){a=a|0;return 4}function qc(a){a=a|0;return 5}function Xd(a){a=a|0;return 2}function Ua(a){a=a|0;return 0}function Nb(a){a=a|0;return 6}function Mh(a){a=a|0;return 3}function za(){Rd(1222);v()}function ta(){sc(1154);v()}function na(){Rd(1154);v()}function Ha(a){a=a|0;ja(a)}function Ra(a){a=a|0;v()}function ff(){return 10}function ef(){return 11}function df(){return 12}function vb(){return-1}function ub(){return 1}function lf(){return 5}function kf(){return 6}function jf(){return 7}function jb(){return 0}function hf(){return 8}function gf(){return 9}function cf(){return-2}function bf(){return-3}function bd(){return 3}function af(){return-4}function ad(){return 4}function _b(){return 2}function $e(){return-5}function Te(){V();v()}function Jc(a){a=a|0}function ae(){} -// EMSCRIPTEN_END_FUNCS -e=G;p(q);var $=c([null,Cc,Pa,Ha,Xd,ii,jh,ag,zc,xe,uc,jg,Wd,Qh,Pa,Pg,Hg,ua,yh,mh,kh,xd,fh,qd,Wd,Bg,We,Ra,mf,$c,Ue,Re,Ie,cb,Ia,Te,Bc,ua,Ae,ze,Ac,Fe,Ee,De,Bc,Ce,Be,re,qe,ye,we,pe,ve,ue,te,se,wc,vc,Ac,oe,ne,xc,me,ke,le,je,Ob,ua,Va,ob,Ua,tc,Ia,Ua,ua,ie,he,Ra,Ra,ge,fe,rc,ob,ee,de,ce,be,qc,pc,ua,Ia,oc,$d,hi,gi,fi,Nb,_d,ua,Ia,Zd,Yd,ei,Pa,Ha,Lb,cb,Mb,Ra,Ob,ua,ob,di,Ra,ci,bi,rc,ob,ai,$h,_h,Zh,qc,pc,ua,Ia,oc,$d,Yh,Xh,Wh,Nb,_d,ua,Ia,Zd,Yd,Vh,Pa,Ha,Lb,cb,Kb,Ra,Ob,Ua,ua,Uh,wc,vc,Th,Sh,Vd,Ph,Xd,Rh,Oh,Nh,Nb,Va,Ud,ua,Ia,Td,ua,Mh,Sd,Lh,Pa,Ha,Lb,cb,Mb,Jh,Ih,Nb,Ud,ua,Ia,Td,Sd,Hh,Pa,Ha,Lb,cb,Kb,Pa,Ha,Ua,ua,Ua,tc,Ia,Kh,Gh,Ah,zh,Fh,Eh,Vd,Dh,Ch,Bh,wh,Ra,ua,ua,xh,Dg,Cg,ua,Ua,Ia,Ia,rh,qh,uh,vh,sh,ph,oh,nh,th,ud,hh,Jd,Id,Hd,Gd,lh,ua,Va,vd,sd,gh,Jd,Id,Hd,Gd,ih,ua,Va,vd,Ed,eh,Fd,dh,ch,$g,_g,Zg,Yg,ah,Xg,bh,Wg,Vg,Tg,Sg,Rg,Qg,Ug,Og,Ng,Mg,Lg,Kg,Gg,Ig,Jg,Pa,Ha,Fg,Eg,Ra,Ua,ua,_e,Ze,Ye,Xe,tb,Ve,Oc,Nc,Pa,Ha,Jc,Jc,Se,Le,Ne,Qe,Ha,Me,Oe,Pe,Ha,He,Ha,Ge,Ha,Je,Qb,Va,Qb,Qb]);function aa(){return C.byteLength/65536|0}function fa(ga){ga=ga|0;var ba=aa()|0;var ca=ba+ga|0;if(ba=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str="";while(idx>10,56320|ch&1023)}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&c<=57343){len+=4;++i}else{len+=3}}return len}var HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateMemoryViews(){var b=wasmMemory.buffer;Module["HEAP8"]=HEAP8=new Int8Array(b);Module["HEAP16"]=HEAP16=new Int16Array(b);Module["HEAP32"]=HEAP32=new Int32Array(b);Module["HEAPU8"]=HEAPU8=new Uint8Array(b);Module["HEAPU16"]=HEAPU16=new Uint16Array(b);Module["HEAPU32"]=HEAPU32=new Uint32Array(b);Module["HEAPF32"]=HEAPF32=new Float32Array(b);Module["HEAPF64"]=HEAPF64=new Float64Array(b)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;assert(INITIAL_MEMORY>=65536,"INITIAL_MEMORY should be larger than STACK_SIZE, was "+INITIAL_MEMORY+"! (STACK_SIZE="+65536+")");if(Module["wasmMemory"]){wasmMemory=Module["wasmMemory"]}else{wasmMemory=new WebAssembly.Memory({"initial":INITIAL_MEMORY/65536,"maximum":2147483648/65536})}updateMemoryViews();INITIAL_MEMORY=wasmMemory.buffer.byteLength;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;function keepRuntimeAlive(){return noExitRuntime}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){if(Module["onAbort"]){Module["onAbort"](what)}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;wasmBinaryFile="draco_decoder_gltf.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}var binary=tryParseAsDataURI(file);if(binary){return binary}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"a":wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmTable=Module["asm"]["g"];addOnInit(Module["asm"]["f"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&!ENVIRONMENT_IS_NODE&&typeof fetch=="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);readyPromiseReject(e)}}instantiateAsync().catch(readyPromiseReject);return{}}function ExitStatus(status){this.name="ExitStatus";this.message="Program terminated with exit("+status+")";this.status=status}function callRuntimeCallbacks(callbacks){while(callbacks.length>0){callbacks.shift()(Module)}}function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255}ret.push(String.fromCharCode(chr))}return ret.join("")}function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){HEAPU32[this.ptr+4>>2]=type};this.get_type=function(){return HEAPU32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAPU32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAPU32[this.ptr+8>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=prev-1;return prev===1};this.set_adjusted_ptr=function(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return HEAPU32[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}var exceptionLast=0;var uncaughtExceptionCount=0;function ___cxa_throw(ptr,type,destructor){var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw ptr}function _abort(){abort("")}function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function getHeapMax(){return 2147483648}function emscripten_realloc_buffer(size){var b=wasmMemory.buffer;try{wasmMemory.grow(size-b.byteLength+65535>>>16);updateMemoryViews();return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}let alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var decodeBase64=typeof atob=="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run();function WrapperObject(){}WrapperObject.prototype=Object.create(WrapperObject.prototype);WrapperObject.prototype.constructor=WrapperObject;WrapperObject.prototype.__class__=WrapperObject;WrapperObject.__cache__={};Module["WrapperObject"]=WrapperObject;function getCache(__class__){return(__class__||WrapperObject).__cache__}Module["getCache"]=getCache;function wrapPointer(ptr,__class__){var cache=getCache(__class__);var ret=cache[ptr];if(ret)return ret;ret=Object.create((__class__||WrapperObject).prototype);ret.ptr=ptr;return cache[ptr]=ret}Module["wrapPointer"]=wrapPointer;function castObject(obj,__class__){return wrapPointer(obj.ptr,__class__)}Module["castObject"]=castObject;Module["NULL"]=wrapPointer(0);function destroy(obj){if(!obj["__destroy__"])throw"Error: Cannot destroy object. (Did you create it yourself?)";obj["__destroy__"]();delete getCache(obj.__class__)[obj.ptr]}Module["destroy"]=destroy;function compare(obj1,obj2){return obj1.ptr===obj2.ptr}Module["compare"]=compare;function getPointer(obj){return obj.ptr}Module["getPointer"]=getPointer;function getClass(obj){return obj.__class__}Module["getClass"]=getClass;var ensureCache={buffer:0,size:0,pos:0,temps:[],needed:0,prepare:function(){if(ensureCache.needed){for(var i=0;i=ensureCache.size){assert(len>0);ensureCache.needed+=len;ret=Module["_malloc"](len);ensureCache.temps.push(ret)}else{ret=ensureCache.buffer+ensureCache.pos;ensureCache.pos+=len}return ret},copy:function(array,view,offset){offset>>>=0;var bytes=view.BYTES_PER_ELEMENT;switch(bytes){case 2:offset>>>=1;break;case 4:offset>>>=2;break;case 8:offset>>>=3;break}for(var i=0;i>>0,$jscomp.propertyToPolyfillSymbol[l]=$jscomp.IS_SYMBOL_NATIVE? -$jscomp.global.Symbol(l):$jscomp.POLYFILL_PREFIX+k+"$"+l),$jscomp.defineProperty(p,$jscomp.propertyToPolyfillSymbol[l],{configurable:!0,writable:!0,value:n})))}; -$jscomp.polyfill("Promise",function(h){function n(){this.batch_=null}function k(f){return f instanceof l?f:new l(function(q,u){q(f)})}if(h&&(!($jscomp.FORCE_POLYFILL_PROMISE||$jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION&&"undefined"===typeof $jscomp.global.PromiseRejectionEvent)||!$jscomp.global.Promise||-1===$jscomp.global.Promise.toString().indexOf("[native code]")))return h;n.prototype.asyncExecute=function(f){if(null==this.batch_){this.batch_=[];var q=this;this.asyncExecuteFunction(function(){q.executeBatch_()})}this.batch_.push(f)}; -var p=$jscomp.global.setTimeout;n.prototype.asyncExecuteFunction=function(f){p(f,0)};n.prototype.executeBatch_=function(){for(;this.batch_&&this.batch_.length;){var f=this.batch_;this.batch_=[];for(var q=0;q=y}},"es6","es3"); -$jscomp.polyfill("Array.prototype.copyWithin",function(h){function n(k){k=Number(k);return Infinity===k||-Infinity===k?k:k|0}return h?h:function(k,p,l){var y=this.length;k=n(k);p=n(p);l=void 0===l?y:n(l);k=0>k?Math.max(y+k,0):Math.min(k,y);p=0>p?Math.max(y+p,0):Math.min(p,y);l=0>l?Math.max(y+l,0):Math.min(l,y);if(kp;)--l in this?this[--k]=this[l]:delete this[--k];return this}},"es6","es3"); -$jscomp.typedArrayCopyWithin=function(h){return h?h:Array.prototype.copyWithin};$jscomp.polyfill("Int8Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5");$jscomp.polyfill("Uint8Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5");$jscomp.polyfill("Uint8ClampedArray.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5");$jscomp.polyfill("Int16Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5"); -$jscomp.polyfill("Uint16Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5");$jscomp.polyfill("Int32Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5");$jscomp.polyfill("Uint32Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5");$jscomp.polyfill("Float32Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5");$jscomp.polyfill("Float64Array.prototype.copyWithin",$jscomp.typedArrayCopyWithin,"es6","es5"); -var DracoDecoderModule=function(){var h="undefined"!==typeof document&&document.currentScript?document.currentScript.src:void 0;"undefined"!==typeof __filename&&(h=h||__filename);return function(n){function k(e){return a.locateFile?a.locateFile(e,U):U+e}function p(e,b){if(e){var c=ia;var d=e+b;for(b=e;c[b]&&!(b>=d);)++b;if(16g?d+=String.fromCharCode(g):(g-=65536,d+=String.fromCharCode(55296|g>>10,56320|g&1023))}}else d+=String.fromCharCode(g)}c=d}}else c="";return c}function l(){var e=ja.buffer;a.HEAP8=W=new Int8Array(e);a.HEAP16=new Int16Array(e);a.HEAP32=ca=new Int32Array(e);a.HEAPU8=ia=new Uint8Array(e);a.HEAPU16=new Uint16Array(e);a.HEAPU32=Y=new Uint32Array(e);a.HEAPF32=new Float32Array(e);a.HEAPF64=new Float64Array(e)}function y(e){if(a.onAbort)a.onAbort(e); -e="Aborted("+e+")";da(e);sa=!0;e=new WebAssembly.RuntimeError(e+". Build with -sASSERTIONS for more info.");ka(e);throw e;}function f(e){try{if(e==P&&ea)return new Uint8Array(ea);if(ma)return ma(e);throw"both async and sync fetching of the wasm failed";}catch(b){y(b)}}function q(){if(!ea&&(ta||fa)){if("function"==typeof fetch&&!P.startsWith("file://"))return fetch(P,{credentials:"same-origin"}).then(function(e){if(!e.ok)throw"failed to load wasm binary file at '"+P+"'";return e.arrayBuffer()}).catch(function(){return f(P)}); -if(na)return new Promise(function(e,b){na(P,function(c){e(new Uint8Array(c))},b)})}return Promise.resolve().then(function(){return f(P)})}function u(e){for(;0>2]=b};this.get_type=function(){return Y[this.ptr+4>>2]};this.set_destructor=function(b){Y[this.ptr+8>>2]=b};this.get_destructor=function(){return Y[this.ptr+8>>2]};this.set_refcount=function(b){ca[this.ptr>>2]=b};this.set_caught=function(b){W[this.ptr+ -12>>0]=b?1:0};this.get_caught=function(){return 0!=W[this.ptr+12>>0]};this.set_rethrown=function(b){W[this.ptr+13>>0]=b?1:0};this.get_rethrown=function(){return 0!=W[this.ptr+13>>0]};this.init=function(b,c){this.set_adjusted_ptr(0);this.set_type(b);this.set_destructor(c);this.set_refcount(0);this.set_caught(!1);this.set_rethrown(!1)};this.add_ref=function(){ca[this.ptr>>2]+=1};this.release_ref=function(){var b=ca[this.ptr>>2];ca[this.ptr>>2]=b-1;return 1===b};this.set_adjusted_ptr=function(b){Y[this.ptr+ -16>>2]=b};this.get_adjusted_ptr=function(){return Y[this.ptr+16>>2]};this.get_exception_ptr=function(){if(ua(this.get_type()))return Y[this.excPtr>>2];var b=this.get_adjusted_ptr();return 0!==b?b:this.excPtr}}function F(){function e(){if(!la&&(la=!0,a.calledRun=!0,!sa)){va=!0;u(oa);wa(a);if(a.onRuntimeInitialized)a.onRuntimeInitialized();if(a.postRun)for("function"==typeof a.postRun&&(a.postRun=[a.postRun]);a.postRun.length;)xa.unshift(a.postRun.shift());u(xa)}}if(!(0=d?b++:2047>=d?b+=2:55296<=d&&57343>= -d?(b+=4,++c):b+=3}b=Array(b+1);c=0;d=b.length;if(0=t){var aa=e.charCodeAt(++g);t=65536+((t&1023)<<10)|aa&1023}if(127>=t){if(c>=d)break;b[c++]=t}else{if(2047>=t){if(c+1>=d)break;b[c++]=192|t>>6}else{if(65535>=t){if(c+2>=d)break;b[c++]=224|t>>12}else{if(c+3>=d)break;b[c++]=240|t>>18;b[c++]=128|t>>12&63}b[c++]=128|t>>6&63}b[c++]=128|t&63}}b[c]=0}e=r.alloc(b,W);r.copy(b,W,e);return e}return e}function Z(e){if("object"=== -typeof e){var b=r.alloc(e,W);r.copy(e,W,b);return b}return e}function X(){throw"cannot construct a VoidPtr, no constructor in IDL";}function S(){this.ptr=za();w(S)[this.ptr]=this}function Q(){this.ptr=Aa();w(Q)[this.ptr]=this}function V(){this.ptr=Ba();w(V)[this.ptr]=this}function x(){this.ptr=Ca();w(x)[this.ptr]=this}function D(){this.ptr=Da();w(D)[this.ptr]=this}function G(){this.ptr=Ea();w(G)[this.ptr]=this}function H(){this.ptr=Fa();w(H)[this.ptr]=this}function E(){this.ptr=Ga();w(E)[this.ptr]= -this}function T(){this.ptr=Ha();w(T)[this.ptr]=this}function C(){throw"cannot construct a Status, no constructor in IDL";}function I(){this.ptr=Ia();w(I)[this.ptr]=this}function J(){this.ptr=Ja();w(J)[this.ptr]=this}function K(){this.ptr=Ka();w(K)[this.ptr]=this}function L(){this.ptr=La();w(L)[this.ptr]=this}function M(){this.ptr=Ma();w(M)[this.ptr]=this}function N(){this.ptr=Na();w(N)[this.ptr]=this}function O(){this.ptr=Oa();w(O)[this.ptr]=this}function z(){this.ptr=Pa();w(z)[this.ptr]=this}function m(){this.ptr= -Qa();w(m)[this.ptr]=this}n=void 0===n?{}:n;var a="undefined"!=typeof n?n:{},wa,ka;a.ready=new Promise(function(e,b){wa=e;ka=b});var Ra=!1,Sa=!1;a.onRuntimeInitialized=function(){Ra=!0;if(Sa&&"function"===typeof a.onModuleLoaded)a.onModuleLoaded(a)};a.onModuleParsed=function(){Sa=!0;if(Ra&&"function"===typeof a.onModuleLoaded)a.onModuleLoaded(a)};a.isVersionSupported=function(e){if("string"!==typeof e)return!1;e=e.split(".");return 2>e.length||3=e[1]?!0:0!=e[0]||10< -e[1]?!1:!0};var Ta=Object.assign({},a),ta="object"==typeof window,fa="function"==typeof importScripts,Ua="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,U="";if(Ua){var Va=require("fs"),pa=require("path");U=fa?pa.dirname(U)+"/":__dirname+"/";var Wa=function(e,b){e=e.startsWith("file://")?new URL(e):pa.normalize(e);return Va.readFileSync(e,b?void 0:"utf8")};var ma=function(e){e=Wa(e,!0);e.buffer||(e=new Uint8Array(e));return e};var na=function(e, -b,c){e=e.startsWith("file://")?new URL(e):pa.normalize(e);Va.readFile(e,function(d,g){d?c(d):b(g.buffer)})};1>>=0;if(2147483648=c;c*=2){var d=b*(1+.2/c);d=Math.min(d,e+100663296);var g=Math;d=Math.max(e,d);g=g.min.call(g,2147483648,d+(65536-d%65536)%65536);a:{d=ja.buffer;try{ja.grow(g-d.byteLength+65535>>>16);l();var t=1;break a}catch(aa){}t=void 0}if(t)return!0}return!1}};(function(){function e(g,t){a.asm=g.exports;ja=a.asm.e;l();oa.unshift(a.asm.f);ba--;a.monitorRunDependencies&&a.monitorRunDependencies(ba);0==ba&&(null!==qa&&(clearInterval(qa),qa=null),ha&&(g=ha,ha=null,g()))}function b(g){e(g.instance)} -function c(g){return q().then(function(t){return WebAssembly.instantiate(t,d)}).then(function(t){return t}).then(g,function(t){da("failed to asynchronously prepare wasm: "+t);y(t)})}var d={a:qd};ba++;a.monitorRunDependencies&&a.monitorRunDependencies(ba);if(a.instantiateWasm)try{return a.instantiateWasm(d,e)}catch(g){da("Module.instantiateWasm callback failed with error: "+g),ka(g)}(function(){return ea||"function"!=typeof WebAssembly.instantiateStreaming||P.startsWith("data:application/octet-stream;base64,")|| -P.startsWith("file://")||Ua||"function"!=typeof fetch?c(b):fetch(P,{credentials:"same-origin"}).then(function(g){return WebAssembly.instantiateStreaming(g,d).then(b,function(t){da("wasm streaming compile failed: "+t);da("falling back to ArrayBuffer instantiation");return c(b)})})})().catch(ka);return{}})();var Xa=a._emscripten_bind_VoidPtr___destroy___0=function(){return(Xa=a._emscripten_bind_VoidPtr___destroy___0=a.asm.h).apply(null,arguments)},za=a._emscripten_bind_DecoderBuffer_DecoderBuffer_0= -function(){return(za=a._emscripten_bind_DecoderBuffer_DecoderBuffer_0=a.asm.i).apply(null,arguments)},Ya=a._emscripten_bind_DecoderBuffer_Init_2=function(){return(Ya=a._emscripten_bind_DecoderBuffer_Init_2=a.asm.j).apply(null,arguments)},Za=a._emscripten_bind_DecoderBuffer___destroy___0=function(){return(Za=a._emscripten_bind_DecoderBuffer___destroy___0=a.asm.k).apply(null,arguments)},Aa=a._emscripten_bind_AttributeTransformData_AttributeTransformData_0=function(){return(Aa=a._emscripten_bind_AttributeTransformData_AttributeTransformData_0= -a.asm.l).apply(null,arguments)},$a=a._emscripten_bind_AttributeTransformData_transform_type_0=function(){return($a=a._emscripten_bind_AttributeTransformData_transform_type_0=a.asm.m).apply(null,arguments)},ab=a._emscripten_bind_AttributeTransformData___destroy___0=function(){return(ab=a._emscripten_bind_AttributeTransformData___destroy___0=a.asm.n).apply(null,arguments)},Ba=a._emscripten_bind_GeometryAttribute_GeometryAttribute_0=function(){return(Ba=a._emscripten_bind_GeometryAttribute_GeometryAttribute_0= -a.asm.o).apply(null,arguments)},bb=a._emscripten_bind_GeometryAttribute___destroy___0=function(){return(bb=a._emscripten_bind_GeometryAttribute___destroy___0=a.asm.p).apply(null,arguments)},Ca=a._emscripten_bind_PointAttribute_PointAttribute_0=function(){return(Ca=a._emscripten_bind_PointAttribute_PointAttribute_0=a.asm.q).apply(null,arguments)},cb=a._emscripten_bind_PointAttribute_size_0=function(){return(cb=a._emscripten_bind_PointAttribute_size_0=a.asm.r).apply(null,arguments)},db=a._emscripten_bind_PointAttribute_GetAttributeTransformData_0= -function(){return(db=a._emscripten_bind_PointAttribute_GetAttributeTransformData_0=a.asm.s).apply(null,arguments)},eb=a._emscripten_bind_PointAttribute_attribute_type_0=function(){return(eb=a._emscripten_bind_PointAttribute_attribute_type_0=a.asm.t).apply(null,arguments)},fb=a._emscripten_bind_PointAttribute_data_type_0=function(){return(fb=a._emscripten_bind_PointAttribute_data_type_0=a.asm.u).apply(null,arguments)},gb=a._emscripten_bind_PointAttribute_num_components_0=function(){return(gb=a._emscripten_bind_PointAttribute_num_components_0= -a.asm.v).apply(null,arguments)},hb=a._emscripten_bind_PointAttribute_normalized_0=function(){return(hb=a._emscripten_bind_PointAttribute_normalized_0=a.asm.w).apply(null,arguments)},ib=a._emscripten_bind_PointAttribute_byte_stride_0=function(){return(ib=a._emscripten_bind_PointAttribute_byte_stride_0=a.asm.x).apply(null,arguments)},jb=a._emscripten_bind_PointAttribute_byte_offset_0=function(){return(jb=a._emscripten_bind_PointAttribute_byte_offset_0=a.asm.y).apply(null,arguments)},kb=a._emscripten_bind_PointAttribute_unique_id_0= -function(){return(kb=a._emscripten_bind_PointAttribute_unique_id_0=a.asm.z).apply(null,arguments)},lb=a._emscripten_bind_PointAttribute___destroy___0=function(){return(lb=a._emscripten_bind_PointAttribute___destroy___0=a.asm.A).apply(null,arguments)},Da=a._emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0=function(){return(Da=a._emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0=a.asm.B).apply(null,arguments)},mb=a._emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1= -function(){return(mb=a._emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1=a.asm.C).apply(null,arguments)},nb=a._emscripten_bind_AttributeQuantizationTransform_quantization_bits_0=function(){return(nb=a._emscripten_bind_AttributeQuantizationTransform_quantization_bits_0=a.asm.D).apply(null,arguments)},ob=a._emscripten_bind_AttributeQuantizationTransform_min_value_1=function(){return(ob=a._emscripten_bind_AttributeQuantizationTransform_min_value_1=a.asm.E).apply(null,arguments)},pb= -a._emscripten_bind_AttributeQuantizationTransform_range_0=function(){return(pb=a._emscripten_bind_AttributeQuantizationTransform_range_0=a.asm.F).apply(null,arguments)},qb=a._emscripten_bind_AttributeQuantizationTransform___destroy___0=function(){return(qb=a._emscripten_bind_AttributeQuantizationTransform___destroy___0=a.asm.G).apply(null,arguments)},Ea=a._emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0=function(){return(Ea=a._emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0= -a.asm.H).apply(null,arguments)},rb=a._emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1=function(){return(rb=a._emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1=a.asm.I).apply(null,arguments)},sb=a._emscripten_bind_AttributeOctahedronTransform_quantization_bits_0=function(){return(sb=a._emscripten_bind_AttributeOctahedronTransform_quantization_bits_0=a.asm.J).apply(null,arguments)},tb=a._emscripten_bind_AttributeOctahedronTransform___destroy___0=function(){return(tb= -a._emscripten_bind_AttributeOctahedronTransform___destroy___0=a.asm.K).apply(null,arguments)},Fa=a._emscripten_bind_PointCloud_PointCloud_0=function(){return(Fa=a._emscripten_bind_PointCloud_PointCloud_0=a.asm.L).apply(null,arguments)},ub=a._emscripten_bind_PointCloud_num_attributes_0=function(){return(ub=a._emscripten_bind_PointCloud_num_attributes_0=a.asm.M).apply(null,arguments)},vb=a._emscripten_bind_PointCloud_num_points_0=function(){return(vb=a._emscripten_bind_PointCloud_num_points_0=a.asm.N).apply(null, -arguments)},wb=a._emscripten_bind_PointCloud___destroy___0=function(){return(wb=a._emscripten_bind_PointCloud___destroy___0=a.asm.O).apply(null,arguments)},Ga=a._emscripten_bind_Mesh_Mesh_0=function(){return(Ga=a._emscripten_bind_Mesh_Mesh_0=a.asm.P).apply(null,arguments)},xb=a._emscripten_bind_Mesh_num_faces_0=function(){return(xb=a._emscripten_bind_Mesh_num_faces_0=a.asm.Q).apply(null,arguments)},yb=a._emscripten_bind_Mesh_num_attributes_0=function(){return(yb=a._emscripten_bind_Mesh_num_attributes_0= -a.asm.R).apply(null,arguments)},zb=a._emscripten_bind_Mesh_num_points_0=function(){return(zb=a._emscripten_bind_Mesh_num_points_0=a.asm.S).apply(null,arguments)},Ab=a._emscripten_bind_Mesh___destroy___0=function(){return(Ab=a._emscripten_bind_Mesh___destroy___0=a.asm.T).apply(null,arguments)},Ha=a._emscripten_bind_Metadata_Metadata_0=function(){return(Ha=a._emscripten_bind_Metadata_Metadata_0=a.asm.U).apply(null,arguments)},Bb=a._emscripten_bind_Metadata___destroy___0=function(){return(Bb=a._emscripten_bind_Metadata___destroy___0= -a.asm.V).apply(null,arguments)},Cb=a._emscripten_bind_Status_code_0=function(){return(Cb=a._emscripten_bind_Status_code_0=a.asm.W).apply(null,arguments)},Db=a._emscripten_bind_Status_ok_0=function(){return(Db=a._emscripten_bind_Status_ok_0=a.asm.X).apply(null,arguments)},Eb=a._emscripten_bind_Status_error_msg_0=function(){return(Eb=a._emscripten_bind_Status_error_msg_0=a.asm.Y).apply(null,arguments)},Fb=a._emscripten_bind_Status___destroy___0=function(){return(Fb=a._emscripten_bind_Status___destroy___0= -a.asm.Z).apply(null,arguments)},Ia=a._emscripten_bind_DracoFloat32Array_DracoFloat32Array_0=function(){return(Ia=a._emscripten_bind_DracoFloat32Array_DracoFloat32Array_0=a.asm._).apply(null,arguments)},Gb=a._emscripten_bind_DracoFloat32Array_GetValue_1=function(){return(Gb=a._emscripten_bind_DracoFloat32Array_GetValue_1=a.asm.$).apply(null,arguments)},Hb=a._emscripten_bind_DracoFloat32Array_size_0=function(){return(Hb=a._emscripten_bind_DracoFloat32Array_size_0=a.asm.aa).apply(null,arguments)},Ib= -a._emscripten_bind_DracoFloat32Array___destroy___0=function(){return(Ib=a._emscripten_bind_DracoFloat32Array___destroy___0=a.asm.ba).apply(null,arguments)},Ja=a._emscripten_bind_DracoInt8Array_DracoInt8Array_0=function(){return(Ja=a._emscripten_bind_DracoInt8Array_DracoInt8Array_0=a.asm.ca).apply(null,arguments)},Jb=a._emscripten_bind_DracoInt8Array_GetValue_1=function(){return(Jb=a._emscripten_bind_DracoInt8Array_GetValue_1=a.asm.da).apply(null,arguments)},Kb=a._emscripten_bind_DracoInt8Array_size_0= -function(){return(Kb=a._emscripten_bind_DracoInt8Array_size_0=a.asm.ea).apply(null,arguments)},Lb=a._emscripten_bind_DracoInt8Array___destroy___0=function(){return(Lb=a._emscripten_bind_DracoInt8Array___destroy___0=a.asm.fa).apply(null,arguments)},Ka=a._emscripten_bind_DracoUInt8Array_DracoUInt8Array_0=function(){return(Ka=a._emscripten_bind_DracoUInt8Array_DracoUInt8Array_0=a.asm.ga).apply(null,arguments)},Mb=a._emscripten_bind_DracoUInt8Array_GetValue_1=function(){return(Mb=a._emscripten_bind_DracoUInt8Array_GetValue_1= -a.asm.ha).apply(null,arguments)},Nb=a._emscripten_bind_DracoUInt8Array_size_0=function(){return(Nb=a._emscripten_bind_DracoUInt8Array_size_0=a.asm.ia).apply(null,arguments)},Ob=a._emscripten_bind_DracoUInt8Array___destroy___0=function(){return(Ob=a._emscripten_bind_DracoUInt8Array___destroy___0=a.asm.ja).apply(null,arguments)},La=a._emscripten_bind_DracoInt16Array_DracoInt16Array_0=function(){return(La=a._emscripten_bind_DracoInt16Array_DracoInt16Array_0=a.asm.ka).apply(null,arguments)},Pb=a._emscripten_bind_DracoInt16Array_GetValue_1= -function(){return(Pb=a._emscripten_bind_DracoInt16Array_GetValue_1=a.asm.la).apply(null,arguments)},Qb=a._emscripten_bind_DracoInt16Array_size_0=function(){return(Qb=a._emscripten_bind_DracoInt16Array_size_0=a.asm.ma).apply(null,arguments)},Rb=a._emscripten_bind_DracoInt16Array___destroy___0=function(){return(Rb=a._emscripten_bind_DracoInt16Array___destroy___0=a.asm.na).apply(null,arguments)},Ma=a._emscripten_bind_DracoUInt16Array_DracoUInt16Array_0=function(){return(Ma=a._emscripten_bind_DracoUInt16Array_DracoUInt16Array_0= -a.asm.oa).apply(null,arguments)},Sb=a._emscripten_bind_DracoUInt16Array_GetValue_1=function(){return(Sb=a._emscripten_bind_DracoUInt16Array_GetValue_1=a.asm.pa).apply(null,arguments)},Tb=a._emscripten_bind_DracoUInt16Array_size_0=function(){return(Tb=a._emscripten_bind_DracoUInt16Array_size_0=a.asm.qa).apply(null,arguments)},Ub=a._emscripten_bind_DracoUInt16Array___destroy___0=function(){return(Ub=a._emscripten_bind_DracoUInt16Array___destroy___0=a.asm.ra).apply(null,arguments)},Na=a._emscripten_bind_DracoInt32Array_DracoInt32Array_0= -function(){return(Na=a._emscripten_bind_DracoInt32Array_DracoInt32Array_0=a.asm.sa).apply(null,arguments)},Vb=a._emscripten_bind_DracoInt32Array_GetValue_1=function(){return(Vb=a._emscripten_bind_DracoInt32Array_GetValue_1=a.asm.ta).apply(null,arguments)},Wb=a._emscripten_bind_DracoInt32Array_size_0=function(){return(Wb=a._emscripten_bind_DracoInt32Array_size_0=a.asm.ua).apply(null,arguments)},Xb=a._emscripten_bind_DracoInt32Array___destroy___0=function(){return(Xb=a._emscripten_bind_DracoInt32Array___destroy___0= -a.asm.va).apply(null,arguments)},Oa=a._emscripten_bind_DracoUInt32Array_DracoUInt32Array_0=function(){return(Oa=a._emscripten_bind_DracoUInt32Array_DracoUInt32Array_0=a.asm.wa).apply(null,arguments)},Yb=a._emscripten_bind_DracoUInt32Array_GetValue_1=function(){return(Yb=a._emscripten_bind_DracoUInt32Array_GetValue_1=a.asm.xa).apply(null,arguments)},Zb=a._emscripten_bind_DracoUInt32Array_size_0=function(){return(Zb=a._emscripten_bind_DracoUInt32Array_size_0=a.asm.ya).apply(null,arguments)},$b=a._emscripten_bind_DracoUInt32Array___destroy___0= -function(){return($b=a._emscripten_bind_DracoUInt32Array___destroy___0=a.asm.za).apply(null,arguments)},Pa=a._emscripten_bind_MetadataQuerier_MetadataQuerier_0=function(){return(Pa=a._emscripten_bind_MetadataQuerier_MetadataQuerier_0=a.asm.Aa).apply(null,arguments)},ac=a._emscripten_bind_MetadataQuerier_HasEntry_2=function(){return(ac=a._emscripten_bind_MetadataQuerier_HasEntry_2=a.asm.Ba).apply(null,arguments)},bc=a._emscripten_bind_MetadataQuerier_GetIntEntry_2=function(){return(bc=a._emscripten_bind_MetadataQuerier_GetIntEntry_2= -a.asm.Ca).apply(null,arguments)},cc=a._emscripten_bind_MetadataQuerier_GetIntEntryArray_3=function(){return(cc=a._emscripten_bind_MetadataQuerier_GetIntEntryArray_3=a.asm.Da).apply(null,arguments)},dc=a._emscripten_bind_MetadataQuerier_GetDoubleEntry_2=function(){return(dc=a._emscripten_bind_MetadataQuerier_GetDoubleEntry_2=a.asm.Ea).apply(null,arguments)},ec=a._emscripten_bind_MetadataQuerier_GetStringEntry_2=function(){return(ec=a._emscripten_bind_MetadataQuerier_GetStringEntry_2=a.asm.Fa).apply(null, -arguments)},fc=a._emscripten_bind_MetadataQuerier_NumEntries_1=function(){return(fc=a._emscripten_bind_MetadataQuerier_NumEntries_1=a.asm.Ga).apply(null,arguments)},gc=a._emscripten_bind_MetadataQuerier_GetEntryName_2=function(){return(gc=a._emscripten_bind_MetadataQuerier_GetEntryName_2=a.asm.Ha).apply(null,arguments)},hc=a._emscripten_bind_MetadataQuerier___destroy___0=function(){return(hc=a._emscripten_bind_MetadataQuerier___destroy___0=a.asm.Ia).apply(null,arguments)},Qa=a._emscripten_bind_Decoder_Decoder_0= -function(){return(Qa=a._emscripten_bind_Decoder_Decoder_0=a.asm.Ja).apply(null,arguments)},ic=a._emscripten_bind_Decoder_DecodeArrayToPointCloud_3=function(){return(ic=a._emscripten_bind_Decoder_DecodeArrayToPointCloud_3=a.asm.Ka).apply(null,arguments)},jc=a._emscripten_bind_Decoder_DecodeArrayToMesh_3=function(){return(jc=a._emscripten_bind_Decoder_DecodeArrayToMesh_3=a.asm.La).apply(null,arguments)},kc=a._emscripten_bind_Decoder_GetAttributeId_2=function(){return(kc=a._emscripten_bind_Decoder_GetAttributeId_2= -a.asm.Ma).apply(null,arguments)},lc=a._emscripten_bind_Decoder_GetAttributeIdByName_2=function(){return(lc=a._emscripten_bind_Decoder_GetAttributeIdByName_2=a.asm.Na).apply(null,arguments)},mc=a._emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3=function(){return(mc=a._emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3=a.asm.Oa).apply(null,arguments)},nc=a._emscripten_bind_Decoder_GetAttribute_2=function(){return(nc=a._emscripten_bind_Decoder_GetAttribute_2=a.asm.Pa).apply(null,arguments)}, -oc=a._emscripten_bind_Decoder_GetAttributeByUniqueId_2=function(){return(oc=a._emscripten_bind_Decoder_GetAttributeByUniqueId_2=a.asm.Qa).apply(null,arguments)},pc=a._emscripten_bind_Decoder_GetMetadata_1=function(){return(pc=a._emscripten_bind_Decoder_GetMetadata_1=a.asm.Ra).apply(null,arguments)},qc=a._emscripten_bind_Decoder_GetAttributeMetadata_2=function(){return(qc=a._emscripten_bind_Decoder_GetAttributeMetadata_2=a.asm.Sa).apply(null,arguments)},rc=a._emscripten_bind_Decoder_GetFaceFromMesh_3= -function(){return(rc=a._emscripten_bind_Decoder_GetFaceFromMesh_3=a.asm.Ta).apply(null,arguments)},sc=a._emscripten_bind_Decoder_GetTriangleStripsFromMesh_2=function(){return(sc=a._emscripten_bind_Decoder_GetTriangleStripsFromMesh_2=a.asm.Ua).apply(null,arguments)},tc=a._emscripten_bind_Decoder_GetTrianglesUInt16Array_3=function(){return(tc=a._emscripten_bind_Decoder_GetTrianglesUInt16Array_3=a.asm.Va).apply(null,arguments)},uc=a._emscripten_bind_Decoder_GetTrianglesUInt32Array_3=function(){return(uc= -a._emscripten_bind_Decoder_GetTrianglesUInt32Array_3=a.asm.Wa).apply(null,arguments)},vc=a._emscripten_bind_Decoder_GetAttributeFloat_3=function(){return(vc=a._emscripten_bind_Decoder_GetAttributeFloat_3=a.asm.Xa).apply(null,arguments)},wc=a._emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3=function(){return(wc=a._emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3=a.asm.Ya).apply(null,arguments)},xc=a._emscripten_bind_Decoder_GetAttributeIntForAllPoints_3=function(){return(xc=a._emscripten_bind_Decoder_GetAttributeIntForAllPoints_3= -a.asm.Za).apply(null,arguments)},yc=a._emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3=function(){return(yc=a._emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3=a.asm._a).apply(null,arguments)},zc=a._emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3=function(){return(zc=a._emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3=a.asm.$a).apply(null,arguments)},Ac=a._emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3=function(){return(Ac=a._emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3= -a.asm.ab).apply(null,arguments)},Bc=a._emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3=function(){return(Bc=a._emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3=a.asm.bb).apply(null,arguments)},Cc=a._emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3=function(){return(Cc=a._emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3=a.asm.cb).apply(null,arguments)},Dc=a._emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3=function(){return(Dc=a._emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3= -a.asm.db).apply(null,arguments)},Ec=a._emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5=function(){return(Ec=a._emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5=a.asm.eb).apply(null,arguments)},Fc=a._emscripten_bind_Decoder_SkipAttributeTransform_1=function(){return(Fc=a._emscripten_bind_Decoder_SkipAttributeTransform_1=a.asm.fb).apply(null,arguments)},Gc=a._emscripten_bind_Decoder_GetEncodedGeometryType_Deprecated_1=function(){return(Gc=a._emscripten_bind_Decoder_GetEncodedGeometryType_Deprecated_1= -a.asm.gb).apply(null,arguments)},Hc=a._emscripten_bind_Decoder_DecodeBufferToPointCloud_2=function(){return(Hc=a._emscripten_bind_Decoder_DecodeBufferToPointCloud_2=a.asm.hb).apply(null,arguments)},Ic=a._emscripten_bind_Decoder_DecodeBufferToMesh_2=function(){return(Ic=a._emscripten_bind_Decoder_DecodeBufferToMesh_2=a.asm.ib).apply(null,arguments)},Jc=a._emscripten_bind_Decoder___destroy___0=function(){return(Jc=a._emscripten_bind_Decoder___destroy___0=a.asm.jb).apply(null,arguments)},Kc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM= -function(){return(Kc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM=a.asm.kb).apply(null,arguments)},Lc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM=function(){return(Lc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM=a.asm.lb).apply(null,arguments)},Mc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM=function(){return(Mc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM= -a.asm.mb).apply(null,arguments)},Nc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM=function(){return(Nc=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM=a.asm.nb).apply(null,arguments)},Oc=a._emscripten_enum_draco_GeometryAttribute_Type_INVALID=function(){return(Oc=a._emscripten_enum_draco_GeometryAttribute_Type_INVALID=a.asm.ob).apply(null,arguments)},Pc=a._emscripten_enum_draco_GeometryAttribute_Type_POSITION=function(){return(Pc=a._emscripten_enum_draco_GeometryAttribute_Type_POSITION= -a.asm.pb).apply(null,arguments)},Qc=a._emscripten_enum_draco_GeometryAttribute_Type_NORMAL=function(){return(Qc=a._emscripten_enum_draco_GeometryAttribute_Type_NORMAL=a.asm.qb).apply(null,arguments)},Rc=a._emscripten_enum_draco_GeometryAttribute_Type_COLOR=function(){return(Rc=a._emscripten_enum_draco_GeometryAttribute_Type_COLOR=a.asm.rb).apply(null,arguments)},Sc=a._emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD=function(){return(Sc=a._emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD= -a.asm.sb).apply(null,arguments)},Tc=a._emscripten_enum_draco_GeometryAttribute_Type_GENERIC=function(){return(Tc=a._emscripten_enum_draco_GeometryAttribute_Type_GENERIC=a.asm.tb).apply(null,arguments)},Uc=a._emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE=function(){return(Uc=a._emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE=a.asm.ub).apply(null,arguments)},Vc=a._emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD=function(){return(Vc=a._emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD= -a.asm.vb).apply(null,arguments)},Wc=a._emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH=function(){return(Wc=a._emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH=a.asm.wb).apply(null,arguments)},Xc=a._emscripten_enum_draco_DataType_DT_INVALID=function(){return(Xc=a._emscripten_enum_draco_DataType_DT_INVALID=a.asm.xb).apply(null,arguments)},Yc=a._emscripten_enum_draco_DataType_DT_INT8=function(){return(Yc=a._emscripten_enum_draco_DataType_DT_INT8=a.asm.yb).apply(null,arguments)},Zc= -a._emscripten_enum_draco_DataType_DT_UINT8=function(){return(Zc=a._emscripten_enum_draco_DataType_DT_UINT8=a.asm.zb).apply(null,arguments)},$c=a._emscripten_enum_draco_DataType_DT_INT16=function(){return($c=a._emscripten_enum_draco_DataType_DT_INT16=a.asm.Ab).apply(null,arguments)},ad=a._emscripten_enum_draco_DataType_DT_UINT16=function(){return(ad=a._emscripten_enum_draco_DataType_DT_UINT16=a.asm.Bb).apply(null,arguments)},bd=a._emscripten_enum_draco_DataType_DT_INT32=function(){return(bd=a._emscripten_enum_draco_DataType_DT_INT32= -a.asm.Cb).apply(null,arguments)},cd=a._emscripten_enum_draco_DataType_DT_UINT32=function(){return(cd=a._emscripten_enum_draco_DataType_DT_UINT32=a.asm.Db).apply(null,arguments)},dd=a._emscripten_enum_draco_DataType_DT_INT64=function(){return(dd=a._emscripten_enum_draco_DataType_DT_INT64=a.asm.Eb).apply(null,arguments)},ed=a._emscripten_enum_draco_DataType_DT_UINT64=function(){return(ed=a._emscripten_enum_draco_DataType_DT_UINT64=a.asm.Fb).apply(null,arguments)},fd=a._emscripten_enum_draco_DataType_DT_FLOAT32= -function(){return(fd=a._emscripten_enum_draco_DataType_DT_FLOAT32=a.asm.Gb).apply(null,arguments)},gd=a._emscripten_enum_draco_DataType_DT_FLOAT64=function(){return(gd=a._emscripten_enum_draco_DataType_DT_FLOAT64=a.asm.Hb).apply(null,arguments)},hd=a._emscripten_enum_draco_DataType_DT_BOOL=function(){return(hd=a._emscripten_enum_draco_DataType_DT_BOOL=a.asm.Ib).apply(null,arguments)},id=a._emscripten_enum_draco_DataType_DT_TYPES_COUNT=function(){return(id=a._emscripten_enum_draco_DataType_DT_TYPES_COUNT= -a.asm.Jb).apply(null,arguments)},jd=a._emscripten_enum_draco_StatusCode_OK=function(){return(jd=a._emscripten_enum_draco_StatusCode_OK=a.asm.Kb).apply(null,arguments)},kd=a._emscripten_enum_draco_StatusCode_DRACO_ERROR=function(){return(kd=a._emscripten_enum_draco_StatusCode_DRACO_ERROR=a.asm.Lb).apply(null,arguments)},ld=a._emscripten_enum_draco_StatusCode_IO_ERROR=function(){return(ld=a._emscripten_enum_draco_StatusCode_IO_ERROR=a.asm.Mb).apply(null,arguments)},md=a._emscripten_enum_draco_StatusCode_INVALID_PARAMETER= -function(){return(md=a._emscripten_enum_draco_StatusCode_INVALID_PARAMETER=a.asm.Nb).apply(null,arguments)},nd=a._emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION=function(){return(nd=a._emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION=a.asm.Ob).apply(null,arguments)},od=a._emscripten_enum_draco_StatusCode_UNKNOWN_VERSION=function(){return(od=a._emscripten_enum_draco_StatusCode_UNKNOWN_VERSION=a.asm.Pb).apply(null,arguments)};a._malloc=function(){return(a._malloc=a.asm.Qb).apply(null,arguments)}; -a._free=function(){return(a._free=a.asm.Rb).apply(null,arguments)};var ua=function(){return(ua=a.asm.Sb).apply(null,arguments)};a.___start_em_js=11660;a.___stop_em_js=11758;var la;ha=function b(){la||F();la||(ha=b)};if(a.preInit)for("function"==typeof a.preInit&&(a.preInit=[a.preInit]);0=r.size?(0>>=0;switch(c.BYTES_PER_ELEMENT){case 2:d>>>=1;break;case 4:d>>>=2;break;case 8:d>>>=3}for(var g=0;gb.byteLength)return a.INVALID_GEOMETRY_TYPE;switch(b[7]){case 0:return a.POINT_CLOUD;case 1:return a.TRIANGULAR_MESH;default:return a.INVALID_GEOMETRY_TYPE}};return n.ready}}();"object"===typeof exports&&"object"===typeof module?module.exports=DracoDecoderModule:"function"===typeof define&&define.amd?define([],function(){return DracoDecoderModule}):"object"===typeof exports&&(exports.DracoDecoderModule=DracoDecoderModule); diff --git a/build/empowerment.html b/build/empowerment.html deleted file mode 100644 index 1e64dbc..0000000 --- a/build/empowerment.html +++ /dev/null @@ -1,2734 +0,0 @@ -Doormile Wings — Women Entrepreneurship Initiative
\ No newline at end of file diff --git a/build/empowerment/__next._index.txt b/build/empowerment/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/empowerment/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/empowerment/__next.empowerment.txt b/build/empowerment/__next.empowerment.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/empowerment/__next.empowerment.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/express.html b/build/express.html deleted file mode 100644 index 8509a17..0000000 --- a/build/express.html +++ /dev/null @@ -1,756 +0,0 @@ -Express – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Solutions / Express

Doormile Express is on its way

We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today.

\ No newline at end of file diff --git a/build/express.txt b/build/express.txt deleted file mode 100644 index b4ee347..0000000 --- a/build/express.txt +++ /dev/null @@ -1,113 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -11:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","express"],"q":"","i":false,"f":[[["",{"children":["express",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"express","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"express-coming-soon","children":["$","div",null,{"className":"express-coming-soon-inner","children":[["$","span",null,{"className":"express-coming-soon-eyebrow","children":"Solutions / Express"}],["$","h1",null,{"className":"express-coming-soon-heading","children":["Doormile Express is ",["$","span",null,{"className":"express-coming-soon-accent","children":"on its way"}]]}],["$","p",null,{"className":"express-coming-soon-text","children":"We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today."}],"$Lc"]}]}]}]}],"$Ld"]}],null,"$Le"]}],{},null,false,null]},null,false,"$@f"]},null,false,null],"$L10",false]],"m":"$undefined","G":["$11",["$L12"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -13:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -15:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -16:"$Sreact.suspense" -19:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1b:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","div",null,{"className":"express-coming-soon-actions","children":[["$","$L13",null,{"href":"/doormile-wings","prefetch":true,"className":"logico-alter-button","children":"Explore Doormile Wings"}],["$","$L13",null,{"href":"/contact","className":"express-coming-soon-link","children":"Get notified when we launch →"}]]}] -14:Tb69, - .express-coming-soon { - --logico-dark-text-color: #ffffff; - --logico-light-text-color: #bebebe; - --logico-accent-color: #C01227; - min-height: calc(100vh - 160px); - display: flex; - align-items: center; - justify-content: center; - padding: clamp(48px, 8vw, 120px) 24px; - background: radial-gradient(120% 120% at 50% 0%, rgba(192, 18, 39, 0.18) 0%, rgba(26, 26, 26, 0.98) 55%, #111111 100%); - } - .express-coming-soon-inner { - max-width: 720px; - text-align: center; - } - .express-coming-soon-eyebrow { - display: inline-block; - font-size: 13px; - font-weight: 700; - letter-spacing: 0.14em; - text-transform: uppercase; - color: var(--logico-accent-color); - margin-bottom: 20px; - } - .express-coming-soon-heading { - font-family: 'Manrope', sans-serif; - font-size: clamp(32px, 5vw, 56px); - line-height: 1.15em; - font-weight: 700; - color: var(--logico-dark-text-color); - margin: 0 0 20px; - } - .express-coming-soon-accent { - color: var(--logico-accent-color); - } - .express-coming-soon-text { - font-size: 16px; - line-height: 1.75em; - color: var(--logico-light-text-color); - margin: 0 auto 36px; - max-width: 520px; - } - .express-coming-soon-actions { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: center; - gap: 24px; - } - .express-coming-soon .logico-alter-button { - color: #ffffff !important; - border-color: rgba(255, 255, 255, 0.45) !important; - background: transparent !important; - } - .express-coming-soon .logico-alter-button:hover { - background: #ffffff !important; - color: #1a1a1a !important; - border-color: #ffffff !important; - } - .express-coming-soon-link { - font-size: 15px; - font-weight: 600; - color: var(--logico-light-text-color); - text-decoration: underline; - text-underline-offset: 4px; - } - .express-coming-soon-link:hover { - color: #ffffff; - } - @media (max-width: 480px) { - .express-coming-soon-actions { - flex-direction: column; - gap: 16px; - } - } - d:["$","style",null,{"suppressHydrationWarning":true,"dangerouslySetInnerHTML":{"__html":"$14"}}] -e:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}] -18:[] -f:"$W18" -10:["$","$1","h",{"children":[null,["$","$L19",null,{"children":"$L1a"}],["$","div",null,{"hidden":true,"children":["$","$L1b",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1c"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -12:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -1a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -1d:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -17:null -1c:[["$","title","0",{"children":"Express – Doormile"}],["$","meta","1",{"name":"description","content":"Doormile Express — a fast-lane logistics service for time-critical shipments. Coming soon."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/express"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1d","8",{}]] diff --git a/build/express/__next._full.txt b/build/express/__next._full.txt deleted file mode 100644 index b4ee347..0000000 --- a/build/express/__next._full.txt +++ /dev/null @@ -1,113 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -11:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","express"],"q":"","i":false,"f":[[["",{"children":["express",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"express","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":[["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","section",null,{"className":"express-coming-soon","children":["$","div",null,{"className":"express-coming-soon-inner","children":[["$","span",null,{"className":"express-coming-soon-eyebrow","children":"Solutions / Express"}],["$","h1",null,{"className":"express-coming-soon-heading","children":["Doormile Express is ",["$","span",null,{"className":"express-coming-soon-accent","children":"on its way"}]]}],["$","p",null,{"className":"express-coming-soon-text","children":"We're building a fast-lane logistics service for time-critical shipments. Check back soon, or explore what Doormile already delivers today."}],"$Lc"]}]}]}]}],"$Ld"]}],null,"$Le"]}],{},null,false,null]},null,false,"$@f"]},null,false,null],"$L10",false]],"m":"$undefined","G":["$11",["$L12"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -13:I[22016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],""] -15:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -16:"$Sreact.suspense" -19:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1b:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -c:["$","div",null,{"className":"express-coming-soon-actions","children":[["$","$L13",null,{"href":"/doormile-wings","prefetch":true,"className":"logico-alter-button","children":"Explore Doormile Wings"}],["$","$L13",null,{"href":"/contact","className":"express-coming-soon-link","children":"Get notified when we launch →"}]]}] -14:Tb69, - .express-coming-soon { - --logico-dark-text-color: #ffffff; - --logico-light-text-color: #bebebe; - --logico-accent-color: #C01227; - min-height: calc(100vh - 160px); - display: flex; - align-items: center; - justify-content: center; - padding: clamp(48px, 8vw, 120px) 24px; - background: radial-gradient(120% 120% at 50% 0%, rgba(192, 18, 39, 0.18) 0%, rgba(26, 26, 26, 0.98) 55%, #111111 100%); - } - .express-coming-soon-inner { - max-width: 720px; - text-align: center; - } - .express-coming-soon-eyebrow { - display: inline-block; - font-size: 13px; - font-weight: 700; - letter-spacing: 0.14em; - text-transform: uppercase; - color: var(--logico-accent-color); - margin-bottom: 20px; - } - .express-coming-soon-heading { - font-family: 'Manrope', sans-serif; - font-size: clamp(32px, 5vw, 56px); - line-height: 1.15em; - font-weight: 700; - color: var(--logico-dark-text-color); - margin: 0 0 20px; - } - .express-coming-soon-accent { - color: var(--logico-accent-color); - } - .express-coming-soon-text { - font-size: 16px; - line-height: 1.75em; - color: var(--logico-light-text-color); - margin: 0 auto 36px; - max-width: 520px; - } - .express-coming-soon-actions { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: center; - gap: 24px; - } - .express-coming-soon .logico-alter-button { - color: #ffffff !important; - border-color: rgba(255, 255, 255, 0.45) !important; - background: transparent !important; - } - .express-coming-soon .logico-alter-button:hover { - background: #ffffff !important; - color: #1a1a1a !important; - border-color: #ffffff !important; - } - .express-coming-soon-link { - font-size: 15px; - font-weight: 600; - color: var(--logico-light-text-color); - text-decoration: underline; - text-underline-offset: 4px; - } - .express-coming-soon-link:hover { - color: #ffffff; - } - @media (max-width: 480px) { - .express-coming-soon-actions { - flex-direction: column; - gap: 16px; - } - } - d:["$","style",null,{"suppressHydrationWarning":true,"dangerouslySetInnerHTML":{"__html":"$14"}}] -e:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}] -18:[] -f:"$W18" -10:["$","$1","h",{"children":[null,["$","$L19",null,{"children":"$L1a"}],["$","div",null,{"hidden":true,"children":["$","$L1b",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1c"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -12:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -1a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -1d:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -17:null -1c:[["$","title","0",{"children":"Express – Doormile"}],["$","meta","1",{"name":"description","content":"Doormile Express — a fast-lane logistics service for time-critical shipments. Coming soon."}],["$","meta","2",{"name":"robots","content":"noindex, follow"}],["$","link","3",{"rel":"canonical","href":"https://doormile.com/express"}],["$","link","4",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","5",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","6",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","7",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1d","8",{}]] diff --git a/build/express/__next._index.txt b/build/express/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/express/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/express/__next.express.txt b/build/express/__next.express.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/express/__next.express.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/fonts/Manrope-Bold.ttf b/build/fonts/Manrope-Bold.ttf deleted file mode 100644 index 2f84ae3..0000000 Binary files a/build/fonts/Manrope-Bold.ttf and /dev/null differ diff --git a/build/fonts/Manrope-SemiBold.ttf b/build/fonts/Manrope-SemiBold.ttf deleted file mode 100644 index 24585b9..0000000 --- a/build/fonts/Manrope-SemiBold.ttf +++ /dev/null @@ -1 +0,0 @@ -No Content: https://8ded8880.delivery.rocketcdn.me/themes/logico-rounded/wp-content/themes/logico/fonts/Manrope-SemiBold.ttf \ No newline at end of file diff --git a/build/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2 b/build/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2 deleted file mode 100644 index 9089e65..0000000 --- a/build/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2 +++ /dev/null @@ -1 +0,0 @@ -No Content: https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2 \ No newline at end of file diff --git a/build/fonts/fa-brands-400.woff2 b/build/fonts/fa-brands-400.woff2 deleted file mode 100644 index 36fbda7..0000000 Binary files a/build/fonts/fa-brands-400.woff2 and /dev/null differ diff --git a/build/fonts/fontello.woff2 b/build/fonts/fontello.woff2 deleted file mode 100644 index 779cfd4..0000000 Binary files a/build/fonts/fontello.woff2 and /dev/null differ diff --git a/build/fonts/xn7gYHE41ni1AdIRggexSg.woff2 b/build/fonts/xn7gYHE41ni1AdIRggexSg.woff2 deleted file mode 100644 index 4d14eb0..0000000 --- a/build/fonts/xn7gYHE41ni1AdIRggexSg.woff2 +++ /dev/null @@ -1 +0,0 @@ -No Content: https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2 \ No newline at end of file diff --git a/build/how-it-works.txt b/build/how-it-works.txt deleted file mode 100644 index 03a28ad..0000000 --- a/build/how-it-works.txt +++ /dev/null @@ -1,33 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[74528,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0-8o5q..xlrv7.js"],"default"] -d:I[16948,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0-8o5q..xlrv7.js"],"default"] -e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -f:"$Sreact.suspense" -12:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -16:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","how-it-works"],"q":"","i":false,"f":[[["",{"children":["how-it-works",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"how-it-works","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/0-8o5q..xlrv7.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null],["$","$1","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -17:[] -11:"$W17" -13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -18:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -10:null -15:[["$","title","0",{"children":"How It Works – Doormile"}],["$","meta","1",{"name":"description","content":"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L18","7",{}]] diff --git a/build/how-it-works/__next._full.txt b/build/how-it-works/__next._full.txt deleted file mode 100644 index 03a28ad..0000000 --- a/build/how-it-works/__next._full.txt +++ /dev/null @@ -1,33 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[74528,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0-8o5q..xlrv7.js"],"default"] -d:I[16948,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0-8o5q..xlrv7.js"],"default"] -e:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -f:"$Sreact.suspense" -12:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -16:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","how-it-works"],"q":"","i":false,"f":[[["",{"children":["how-it-works",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"how-it-works","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/0-8o5q..xlrv7.js","async":true,"nonce":"$undefined"}]],["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]]}],{},null,false,null]},null,false,"$@11"]},null,false,null],["$","$1","h",{"children":[null,["$","$L12",null,{"children":"$L13"}],["$","div",null,{"hidden":true,"children":["$","$L14",null,{"children":["$","$f",null,{"name":"Next.Metadata","children":"$L15"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$16",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -17:[] -11:"$W17" -13:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -18:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -10:null -15:[["$","title","0",{"children":"How It Works – Doormile"}],["$","meta","1",{"name":"description","content":"See how Doormile connects first, mid, and last mile into a seamless delivery experience powered by MileTruth™ AI."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L18","7",{}]] diff --git a/build/how-it-works/__next._index.txt b/build/how-it-works/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/how-it-works/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/how-it-works/__next.how-it-works.__PAGE__.txt b/build/how-it-works/__next.how-it-works.__PAGE__.txt deleted file mode 100644 index bbcc794..0000000 --- a/build/how-it-works/__next.how-it-works.__PAGE__.txt +++ /dev/null @@ -1,7 +0,0 @@ -1:"$Sreact.fragment" -2:I[74528,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0-8o5q..xlrv7.js"],"default"] -3:I[16948,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0-8o5q..xlrv7.js"],"default"] -4:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -5:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"how-it-works","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L2",null,{}],["$","$L3",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/0-8o5q..xlrv7.js","async":true}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} -6:null diff --git a/build/how-it-works/__next.how-it-works.txt b/build/how-it-works/__next.how-it-works.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/how-it-works/__next.how-it-works.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/images/.DS_Store b/build/images/.DS_Store deleted file mode 100644 index e82365f..0000000 Binary files a/build/images/.DS_Store and /dev/null differ diff --git a/build/images/Aravinth.png b/build/images/Aravinth.png deleted file mode 100644 index 2f8146c..0000000 Binary files a/build/images/Aravinth.png and /dev/null differ diff --git a/build/images/Aravinth.webp b/build/images/Aravinth.webp deleted file mode 100644 index c9e1713..0000000 Binary files a/build/images/Aravinth.webp and /dev/null differ diff --git a/build/images/Fazul.png b/build/images/Fazul.png deleted file mode 100644 index 0464aca..0000000 Binary files a/build/images/Fazul.png and /dev/null differ diff --git a/build/images/Fazul.webp b/build/images/Fazul.webp deleted file mode 100644 index 0a0783b..0000000 Binary files a/build/images/Fazul.webp and /dev/null differ diff --git a/build/images/Investor.png b/build/images/Investor.png deleted file mode 100644 index 3089f76..0000000 Binary files a/build/images/Investor.png and /dev/null differ diff --git a/build/images/Investor.webp b/build/images/Investor.webp deleted file mode 100644 index 0ad1fc8..0000000 Binary files a/build/images/Investor.webp and /dev/null differ diff --git a/build/images/Parthi.png b/build/images/Parthi.png deleted file mode 100644 index c958a53..0000000 Binary files a/build/images/Parthi.png and /dev/null differ diff --git a/build/images/Parthi.webp b/build/images/Parthi.webp deleted file mode 100644 index bd5d646..0000000 Binary files a/build/images/Parthi.webp and /dev/null differ diff --git a/build/images/Suriya.png b/build/images/Suriya.png deleted file mode 100644 index 3ffd5b0..0000000 Binary files a/build/images/Suriya.png and /dev/null differ diff --git a/build/images/Suriya.webp b/build/images/Suriya.webp deleted file mode 100644 index ad85b71..0000000 Binary files a/build/images/Suriya.webp and /dev/null differ diff --git a/build/images/Team/2.jpg b/build/images/Team/2.jpg deleted file mode 100644 index 21b88b8..0000000 Binary files a/build/images/Team/2.jpg and /dev/null differ diff --git a/build/images/about-bg.png b/build/images/about-bg.png deleted file mode 100644 index 626fe75..0000000 Binary files a/build/images/about-bg.png and /dev/null differ diff --git a/build/images/about-bg.webp b/build/images/about-bg.webp deleted file mode 100644 index 951ce06..0000000 Binary files a/build/images/about-bg.webp and /dev/null differ diff --git a/build/images/air-freight-pic-1.jpg b/build/images/air-freight-pic-1.jpg deleted file mode 100644 index 6f6b1bb..0000000 Binary files a/build/images/air-freight-pic-1.jpg and /dev/null differ diff --git a/build/images/air-freight-slide-1.jpg b/build/images/air-freight-slide-1.jpg deleted file mode 100644 index 56f7e62..0000000 Binary files a/build/images/air-freight-slide-1.jpg and /dev/null differ diff --git a/build/images/air-freight-slide-2.jpg b/build/images/air-freight-slide-2.jpg deleted file mode 100644 index af60603..0000000 Binary files a/build/images/air-freight-slide-2.jpg and /dev/null differ diff --git a/build/images/b5b560fe-aab0-4fe6-9f8c-4b187c2f0e99.png b/build/images/b5b560fe-aab0-4fe6-9f8c-4b187c2f0e99.png deleted file mode 100644 index b74d2e9..0000000 Binary files a/build/images/b5b560fe-aab0-4fe6-9f8c-4b187c2f0e99.png and /dev/null differ diff --git a/build/images/b5b560fe-aab0-4fe6-9f8c-4b187c2f0e99.webp b/build/images/b5b560fe-aab0-4fe6-9f8c-4b187c2f0e99.webp deleted file mode 100644 index 15a6a0d..0000000 Binary files a/build/images/b5b560fe-aab0-4fe6-9f8c-4b187c2f0e99.webp and /dev/null differ diff --git a/build/images/bg-404.png b/build/images/bg-404.png deleted file mode 100644 index 34bac05..0000000 Binary files a/build/images/bg-404.png and /dev/null differ diff --git a/build/images/bg-contacts.png b/build/images/bg-contacts.png deleted file mode 100644 index 3f131e1..0000000 Binary files a/build/images/bg-contacts.png and /dev/null differ diff --git a/build/images/bg-header-1.jpg b/build/images/bg-header-1.jpg deleted file mode 100644 index 20f4cd4..0000000 Binary files a/build/images/bg-header-1.jpg and /dev/null differ diff --git a/build/images/bg-header-3.jpeg b/build/images/bg-header-3.jpeg deleted file mode 100644 index 1f326e2..0000000 Binary files a/build/images/bg-header-3.jpeg and /dev/null differ diff --git a/build/images/bg-header-3.png b/build/images/bg-header-3.png deleted file mode 100644 index 9a14267..0000000 Binary files a/build/images/bg-header-3.png and /dev/null differ diff --git a/build/images/bg-header-5.png b/build/images/bg-header-5.png deleted file mode 100644 index d7ab42a..0000000 Binary files a/build/images/bg-header-5.png and /dev/null differ diff --git a/build/images/bg-header-5.webp b/build/images/bg-header-5.webp deleted file mode 100644 index f26f55d..0000000 Binary files a/build/images/bg-header-5.webp and /dev/null differ diff --git a/build/images/bg-header-women.png b/build/images/bg-header-women.png deleted file mode 100644 index c6db683..0000000 Binary files a/build/images/bg-header-women.png and /dev/null differ diff --git a/build/images/bg-header-women.webp b/build/images/bg-header-women.webp deleted file mode 100644 index d7cbd4f..0000000 Binary files a/build/images/bg-header-women.webp and /dev/null differ diff --git a/build/images/bg-map-about.png b/build/images/bg-map-about.png deleted file mode 100644 index b2f436a..0000000 Binary files a/build/images/bg-map-about.png and /dev/null differ diff --git a/build/images/bg-map-women.png b/build/images/bg-map-women.png deleted file mode 100644 index 8974f64..0000000 Binary files a/build/images/bg-map-women.png and /dev/null differ diff --git a/build/images/bg-map-women.webp b/build/images/bg-map-women.webp deleted file mode 100644 index e60434c..0000000 Binary files a/build/images/bg-map-women.webp and /dev/null differ diff --git a/build/images/bg-map.png b/build/images/bg-map.png deleted file mode 100644 index 7b9f88f..0000000 Binary files a/build/images/bg-map.png and /dev/null differ diff --git a/build/images/bg-slide-sidebar.jpg b/build/images/bg-slide-sidebar.jpg deleted file mode 100644 index c9c185d..0000000 Binary files a/build/images/bg-slide-sidebar.jpg and /dev/null differ diff --git a/build/images/bg-slide-sidebar.webp b/build/images/bg-slide-sidebar.webp deleted file mode 100644 index 8e4bb32..0000000 Binary files a/build/images/bg-slide-sidebar.webp and /dev/null differ diff --git a/build/images/blog-post-pic-14.jpeg b/build/images/blog-post-pic-14.jpeg deleted file mode 100644 index 4e04093..0000000 Binary files a/build/images/blog-post-pic-14.jpeg and /dev/null differ diff --git a/build/images/blog-post-pic-14.webp b/build/images/blog-post-pic-14.webp deleted file mode 100644 index 8e68a2e..0000000 Binary files a/build/images/blog-post-pic-14.webp and /dev/null differ diff --git a/build/images/blog-post-pic-15.png b/build/images/blog-post-pic-15.png deleted file mode 100644 index 1d9b4fa..0000000 Binary files a/build/images/blog-post-pic-15.png and /dev/null differ diff --git a/build/images/blog-post-pic-15.webp b/build/images/blog-post-pic-15.webp deleted file mode 100644 index cb9da29..0000000 Binary files a/build/images/blog-post-pic-15.webp and /dev/null differ diff --git a/build/images/blog-post-pic-17.png b/build/images/blog-post-pic-17.png deleted file mode 100644 index d613310..0000000 Binary files a/build/images/blog-post-pic-17.png and /dev/null differ diff --git a/build/images/blog-post-pic-17.webp b/build/images/blog-post-pic-17.webp deleted file mode 100644 index 6980458..0000000 Binary files a/build/images/blog-post-pic-17.webp and /dev/null differ diff --git a/build/images/blog-post-pic-18-840x840.jpg b/build/images/blog-post-pic-18-840x840.jpg deleted file mode 100644 index 8ff8360..0000000 Binary files a/build/images/blog-post-pic-18-840x840.jpg and /dev/null differ diff --git a/build/images/blog-post-pic-3.jpeg b/build/images/blog-post-pic-3.jpeg deleted file mode 100644 index fb974ba..0000000 Binary files a/build/images/blog-post-pic-3.jpeg and /dev/null differ diff --git a/build/images/blog-post-pic-3.webp b/build/images/blog-post-pic-3.webp deleted file mode 100644 index df5df4e..0000000 Binary files a/build/images/blog-post-pic-3.webp and /dev/null differ diff --git a/build/images/blog-post-pic-31.png b/build/images/blog-post-pic-31.png deleted file mode 100644 index 6ff58cc..0000000 Binary files a/build/images/blog-post-pic-31.png and /dev/null differ diff --git a/build/images/blog-post-pic-31.webp b/build/images/blog-post-pic-31.webp deleted file mode 100644 index d3416ff..0000000 Binary files a/build/images/blog-post-pic-31.webp and /dev/null differ diff --git a/build/images/blog-post-pic-4.jpeg b/build/images/blog-post-pic-4.jpeg deleted file mode 100644 index 52c1763..0000000 Binary files a/build/images/blog-post-pic-4.jpeg and /dev/null differ diff --git a/build/images/blog-post-pic-6.jpeg b/build/images/blog-post-pic-6.jpeg deleted file mode 100644 index 5c9251f..0000000 Binary files a/build/images/blog-post-pic-6.jpeg and /dev/null differ diff --git a/build/images/blog-post-pic-6.webp b/build/images/blog-post-pic-6.webp deleted file mode 100644 index 2fb1344..0000000 Binary files a/build/images/blog-post-pic-6.webp and /dev/null differ diff --git a/build/images/blog-post-pic-8.jpeg b/build/images/blog-post-pic-8.jpeg deleted file mode 100644 index 1376b0f..0000000 Binary files a/build/images/blog-post-pic-8.jpeg and /dev/null differ diff --git a/build/images/blog-post-pic-8.webp b/build/images/blog-post-pic-8.webp deleted file mode 100644 index d8fc17a..0000000 Binary files a/build/images/blog-post-pic-8.webp and /dev/null differ diff --git a/build/images/card 1.png b/build/images/card 1.png deleted file mode 100644 index 7e7c9cf..0000000 Binary files a/build/images/card 1.png and /dev/null differ diff --git a/build/images/card 2.png b/build/images/card 2.png deleted file mode 100644 index 864f4d3..0000000 Binary files a/build/images/card 2.png and /dev/null differ diff --git a/build/images/card 3.png b/build/images/card 3.png deleted file mode 100644 index ec145b8..0000000 Binary files a/build/images/card 3.png and /dev/null differ diff --git a/build/images/card4.png b/build/images/card4.png deleted file mode 100644 index 90e4dd2..0000000 Binary files a/build/images/card4.png and /dev/null differ diff --git a/build/images/card5.png b/build/images/card5.png deleted file mode 100644 index 39adac1..0000000 Binary files a/build/images/card5.png and /dev/null differ diff --git a/build/images/card6.png b/build/images/card6.png deleted file mode 100644 index 825ff3a..0000000 Binary files a/build/images/card6.png and /dev/null differ diff --git a/build/images/cropped-image-2.png b/build/images/cropped-image-2.png deleted file mode 100644 index 91c79c6..0000000 Binary files a/build/images/cropped-image-2.png and /dev/null differ diff --git a/build/images/doormile-black.png b/build/images/doormile-black.png deleted file mode 100644 index 796897e..0000000 Binary files a/build/images/doormile-black.png and /dev/null differ diff --git a/build/images/doormile-logo.png b/build/images/doormile-logo.png deleted file mode 100644 index 6f10926..0000000 Binary files a/build/images/doormile-logo.png and /dev/null differ diff --git a/build/images/doormile-white.png b/build/images/doormile-white.png deleted file mode 100644 index 72a7a16..0000000 Binary files a/build/images/doormile-white.png and /dev/null differ diff --git a/build/images/ev-paradox.png b/build/images/ev-paradox.png deleted file mode 100644 index 15707f2..0000000 Binary files a/build/images/ev-paradox.png and /dev/null differ diff --git a/build/images/ev-paradox.webp b/build/images/ev-paradox.webp deleted file mode 100644 index 29e23f7..0000000 Binary files a/build/images/ev-paradox.webp and /dev/null differ diff --git a/build/images/ev.jpeg b/build/images/ev.jpeg deleted file mode 100644 index 472a2a4..0000000 Binary files a/build/images/ev.jpeg and /dev/null differ diff --git a/build/images/ev.webp b/build/images/ev.webp deleted file mode 100644 index 28b39b4..0000000 Binary files a/build/images/ev.webp and /dev/null differ diff --git a/build/images/first-mile-approach.jpg b/build/images/first-mile-approach.jpg deleted file mode 100644 index bcc7a2a..0000000 Binary files a/build/images/first-mile-approach.jpg and /dev/null differ diff --git a/build/images/first-mile-approach.webp b/build/images/first-mile-approach.webp deleted file mode 100644 index 80ecd63..0000000 Binary files a/build/images/first-mile-approach.webp and /dev/null differ diff --git a/build/images/home-bg-1.png b/build/images/home-bg-1.png deleted file mode 100644 index 1e7768c..0000000 Binary files a/build/images/home-bg-1.png and /dev/null differ diff --git a/build/images/home-bg-1.webp b/build/images/home-bg-1.webp deleted file mode 100644 index e9c26d5..0000000 Binary files a/build/images/home-bg-1.webp and /dev/null differ diff --git a/build/images/home1-bg2.png b/build/images/home1-bg2.png deleted file mode 100644 index 75cbf6e..0000000 Binary files a/build/images/home1-bg2.png and /dev/null differ diff --git a/build/images/home1-slide-1.png b/build/images/home1-slide-1.png deleted file mode 100644 index 828c01f..0000000 Binary files a/build/images/home1-slide-1.png and /dev/null differ diff --git a/build/images/home1-slide-1.webp b/build/images/home1-slide-1.webp deleted file mode 100644 index 876c68b..0000000 Binary files a/build/images/home1-slide-1.webp and /dev/null differ diff --git a/build/images/home1-slide-2.png b/build/images/home1-slide-2.png deleted file mode 100644 index f85c31b..0000000 Binary files a/build/images/home1-slide-2.png and /dev/null differ diff --git a/build/images/home1-slide-2.webp b/build/images/home1-slide-2.webp deleted file mode 100644 index 4bf62c6..0000000 Binary files a/build/images/home1-slide-2.webp and /dev/null differ diff --git a/build/images/home1alt-bg-2.png b/build/images/home1alt-bg-2.png deleted file mode 100644 index ceb4d86..0000000 Binary files a/build/images/home1alt-bg-2.png and /dev/null differ diff --git a/build/images/home2-banner-1.jpg b/build/images/home2-banner-1.jpg deleted file mode 100644 index 298babc..0000000 Binary files a/build/images/home2-banner-1.jpg and /dev/null differ diff --git a/build/images/home2-banner-1.webp b/build/images/home2-banner-1.webp deleted file mode 100644 index 2550795..0000000 Binary files a/build/images/home2-banner-1.webp and /dev/null differ diff --git a/build/images/home2-banner-3.jpg b/build/images/home2-banner-3.jpg deleted file mode 100644 index 98d5f2c..0000000 Binary files a/build/images/home2-banner-3.jpg and /dev/null differ diff --git a/build/images/home2-banner-3.webp b/build/images/home2-banner-3.webp deleted file mode 100644 index b4cdb7e..0000000 Binary files a/build/images/home2-banner-3.webp and /dev/null differ diff --git a/build/images/home2-banner-4.png b/build/images/home2-banner-4.png deleted file mode 100644 index 78acc68..0000000 Binary files a/build/images/home2-banner-4.png and /dev/null differ diff --git a/build/images/home2-banner-5 b/build/images/home2-banner-5 deleted file mode 100644 index 9d83670..0000000 Binary files a/build/images/home2-banner-5 and /dev/null differ diff --git a/build/images/home2-pic-3.png b/build/images/home2-pic-3.png deleted file mode 100644 index 215148b..0000000 Binary files a/build/images/home2-pic-3.png and /dev/null differ diff --git a/build/images/home2-pic-3.webp b/build/images/home2-pic-3.webp deleted file mode 100644 index e5cf320..0000000 Binary files a/build/images/home2-pic-3.webp and /dev/null differ diff --git a/build/images/home2-slide-1.jpg b/build/images/home2-slide-1.jpg deleted file mode 100644 index fdeb71d..0000000 Binary files a/build/images/home2-slide-1.jpg and /dev/null differ diff --git a/build/images/home2-slide-1.webp b/build/images/home2-slide-1.webp deleted file mode 100644 index 9b36155..0000000 Binary files a/build/images/home2-slide-1.webp and /dev/null differ diff --git a/build/images/home2-slide-2.jpg b/build/images/home2-slide-2.jpg deleted file mode 100644 index 9cda61d..0000000 Binary files a/build/images/home2-slide-2.jpg and /dev/null differ diff --git a/build/images/home2-slide-2.webp b/build/images/home2-slide-2.webp deleted file mode 100644 index dc2114f..0000000 Binary files a/build/images/home2-slide-2.webp and /dev/null differ diff --git a/build/images/home2alt-bg-1.jpeg b/build/images/home2alt-bg-1.jpeg deleted file mode 100644 index 34c3fe8..0000000 Binary files a/build/images/home2alt-bg-1.jpeg and /dev/null differ diff --git a/build/images/home2alt-bg-1.jpg b/build/images/home2alt-bg-1.jpg deleted file mode 100644 index 191954d..0000000 Binary files a/build/images/home2alt-bg-1.jpg and /dev/null differ diff --git a/build/images/home3-slide-1.jpg b/build/images/home3-slide-1.jpg deleted file mode 100644 index d7e92c4..0000000 Binary files a/build/images/home3-slide-1.jpg and /dev/null differ diff --git a/build/images/home3-slide-2.jpg b/build/images/home3-slide-2.jpg deleted file mode 100644 index b2b34c6..0000000 Binary files a/build/images/home3-slide-2.jpg and /dev/null differ diff --git a/build/images/home6-banner.jpg b/build/images/home6-banner.jpg deleted file mode 100644 index 0ff26a7..0000000 Binary files a/build/images/home6-banner.jpg and /dev/null differ diff --git a/build/images/home6-slide-1.jpg b/build/images/home6-slide-1.jpg deleted file mode 100644 index 60d8cee..0000000 Binary files a/build/images/home6-slide-1.jpg and /dev/null differ diff --git a/build/images/home6-slide-2.jpg b/build/images/home6-slide-2.jpg deleted file mode 100644 index 927b864..0000000 Binary files a/build/images/home6-slide-2.jpg and /dev/null differ diff --git a/build/images/last-mile-approach.jpg b/build/images/last-mile-approach.jpg deleted file mode 100644 index dd2d904..0000000 Binary files a/build/images/last-mile-approach.jpg and /dev/null differ diff --git a/build/images/last-mile-approach.webp b/build/images/last-mile-approach.webp deleted file mode 100644 index c7b745d..0000000 Binary files a/build/images/last-mile-approach.webp and /dev/null differ diff --git a/build/images/logo-slogan.png b/build/images/logo-slogan.png deleted file mode 100644 index c4ea7fb..0000000 Binary files a/build/images/logo-slogan.png and /dev/null differ diff --git a/build/images/mid-mile-approach.jpg b/build/images/mid-mile-approach.jpg deleted file mode 100644 index 0bb2252..0000000 Binary files a/build/images/mid-mile-approach.jpg and /dev/null differ diff --git a/build/images/mid-mile-approach.webp b/build/images/mid-mile-approach.webp deleted file mode 100644 index 212783e..0000000 Binary files a/build/images/mid-mile-approach.webp and /dev/null differ diff --git a/build/images/mile-1.png b/build/images/mile-1.png deleted file mode 100644 index 0287905..0000000 Binary files a/build/images/mile-1.png and /dev/null differ diff --git a/build/images/mile-1.webp b/build/images/mile-1.webp deleted file mode 100644 index 29fe93c..0000000 Binary files a/build/images/mile-1.webp and /dev/null differ diff --git a/build/images/miletruth-bg.png b/build/images/miletruth-bg.png deleted file mode 100644 index 5124af5..0000000 Binary files a/build/images/miletruth-bg.png and /dev/null differ diff --git a/build/images/miletruth-bg.webp b/build/images/miletruth-bg.webp deleted file mode 100644 index fd3f7ce..0000000 Binary files a/build/images/miletruth-bg.webp and /dev/null differ diff --git a/build/images/pahse1.png b/build/images/pahse1.png deleted file mode 100644 index 8d3835e..0000000 Binary files a/build/images/pahse1.png and /dev/null differ diff --git a/build/images/preloader.png b/build/images/preloader.png deleted file mode 100644 index 92cb60e..0000000 Binary files a/build/images/preloader.png and /dev/null differ diff --git a/build/images/premium-ev-van.png b/build/images/premium-ev-van.png deleted file mode 100644 index b108f07..0000000 Binary files a/build/images/premium-ev-van.png and /dev/null differ diff --git a/build/images/premium-ev-van.webp b/build/images/premium-ev-van.webp deleted file mode 100644 index cf4ae79..0000000 Binary files a/build/images/premium-ev-van.webp and /dev/null differ diff --git a/build/images/tab-pic-1-solution.jpeg b/build/images/tab-pic-1-solution.jpeg deleted file mode 100644 index 3eabb7c..0000000 Binary files a/build/images/tab-pic-1-solution.jpeg and /dev/null differ diff --git a/build/images/tab-pic-1-solution.webp b/build/images/tab-pic-1-solution.webp deleted file mode 100644 index 28e54f5..0000000 Binary files a/build/images/tab-pic-1-solution.webp and /dev/null differ diff --git a/build/images/tab-pic-1.jpeg b/build/images/tab-pic-1.jpeg deleted file mode 100644 index 2ce3559..0000000 Binary files a/build/images/tab-pic-1.jpeg and /dev/null differ diff --git a/build/images/tab-pic-1.webp b/build/images/tab-pic-1.webp deleted file mode 100644 index cf44d3f..0000000 Binary files a/build/images/tab-pic-1.webp and /dev/null differ diff --git a/build/images/tab-pic-2-solution.jpeg b/build/images/tab-pic-2-solution.jpeg deleted file mode 100644 index 324efc7..0000000 Binary files a/build/images/tab-pic-2-solution.jpeg and /dev/null differ diff --git a/build/images/tab-pic-2-solution.webp b/build/images/tab-pic-2-solution.webp deleted file mode 100644 index 1de99f7..0000000 Binary files a/build/images/tab-pic-2-solution.webp and /dev/null differ diff --git a/build/images/tab-pic-2.jpeg b/build/images/tab-pic-2.jpeg deleted file mode 100644 index a9a898c..0000000 Binary files a/build/images/tab-pic-2.jpeg and /dev/null differ diff --git a/build/images/tab-pic-2.webp b/build/images/tab-pic-2.webp deleted file mode 100644 index d6d7c95..0000000 Binary files a/build/images/tab-pic-2.webp and /dev/null differ diff --git a/build/images/tab-pic-3-solution.jpeg b/build/images/tab-pic-3-solution.jpeg deleted file mode 100644 index b288ba8..0000000 Binary files a/build/images/tab-pic-3-solution.jpeg and /dev/null differ diff --git a/build/images/tab-pic-3-solution.webp b/build/images/tab-pic-3-solution.webp deleted file mode 100644 index e3a8898..0000000 Binary files a/build/images/tab-pic-3-solution.webp and /dev/null differ diff --git a/build/images/tab-pic-3.jpeg b/build/images/tab-pic-3.jpeg deleted file mode 100644 index c3f5c16..0000000 Binary files a/build/images/tab-pic-3.jpeg and /dev/null differ diff --git a/build/images/tab-pic-3.webp b/build/images/tab-pic-3.webp deleted file mode 100644 index 1da7457..0000000 Binary files a/build/images/tab-pic-3.webp and /dev/null differ diff --git a/build/images/truck.png b/build/images/truck.png deleted file mode 100644 index e887162..0000000 Binary files a/build/images/truck.png and /dev/null differ diff --git a/build/images/wings-heroslide2.png b/build/images/wings-heroslide2.png deleted file mode 100644 index 29188b6..0000000 Binary files a/build/images/wings-heroslide2.png and /dev/null differ diff --git a/build/images/wings-heroslider3.png b/build/images/wings-heroslider3.png deleted file mode 100644 index f730de8..0000000 Binary files a/build/images/wings-heroslider3.png and /dev/null differ diff --git a/build/images/wings-heroslider4.png b/build/images/wings-heroslider4.png deleted file mode 100644 index f10bbf4..0000000 Binary files a/build/images/wings-heroslider4.png and /dev/null differ diff --git a/build/images/women-hero-silder-1.png b/build/images/women-hero-silder-1.png deleted file mode 100644 index 771a639..0000000 Binary files a/build/images/women-hero-silder-1.png and /dev/null differ diff --git a/build/images/women-hero-slider-2.png b/build/images/women-hero-slider-2.png deleted file mode 100644 index 4172fca..0000000 Binary files a/build/images/women-hero-slider-2.png and /dev/null differ diff --git a/build/images/women-hero-slider-3.png b/build/images/women-hero-slider-3.png deleted file mode 100644 index fd87c85..0000000 Binary files a/build/images/women-hero-slider-3.png and /dev/null differ diff --git a/build/miletruth.txt b/build/miletruth.txt deleted file mode 100644 index bb4a712..0000000 --- a/build/miletruth.txt +++ /dev/null @@ -1,35 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[58829,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -d:I[76756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -e:I[38730,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -f:I[33016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -10:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -11:"$Sreact.suspense" -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -16:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -18:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","miletruth"],"q":"","i":false,"f":[[["",{"children":["miletruth",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"miletruth","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","$Lf",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/0~gr-u6_wl8~w.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true,"nonce":"$undefined"}]],["$","$L10",null,{"children":["$","$11",null,{"name":"Next.MetadataOutlet","children":"$@12"}]}]]}],{},null,false,null]},null,false,"$@13"]},null,false,null],["$","$1","h",{"children":[null,["$","$L14",null,{"children":"$L15"}],["$","div",null,{"hidden":true,"children":["$","$L16",null,{"children":["$","$11",null,{"name":"Next.Metadata","children":"$L17"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$18",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -19:[] -13:"$W19" -15:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -1a:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -12:null -17:[["$","title","0",{"children":"MileTruth – Doormile"}],["$","meta","1",{"name":"description","content":"Optimizes every stage of the delivery journey for maximum efficiency. Explore the only AI built exclusively for logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1a","7",{}]] diff --git a/build/miletruth/__next._full.txt b/build/miletruth/__next._full.txt deleted file mode 100644 index bb4a712..0000000 --- a/build/miletruth/__next._full.txt +++ /dev/null @@ -1,35 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -c:I[58829,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -d:I[76756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -e:I[38730,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -f:I[33016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -10:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -11:"$Sreact.suspense" -14:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -16:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -18:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"P":null,"c":["","miletruth"],"q":"","i":false,"f":[[["",{"children":["miletruth",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"id":"miletruth","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$Lc",null,{}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","$Lf",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/0~gr-u6_wl8~w.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true,"nonce":"$undefined"}]],["$","$L10",null,{"children":["$","$11",null,{"name":"Next.MetadataOutlet","children":"$@12"}]}]]}],{},null,false,null]},null,false,"$@13"]},null,false,null],["$","$1","h",{"children":[null,["$","$L14",null,{"children":"$L15"}],["$","div",null,{"hidden":true,"children":["$","$L16",null,{"children":["$","$11",null,{"name":"Next.Metadata","children":"$L17"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$18",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -19:[] -13:"$W19" -15:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -1a:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -12:null -17:[["$","title","0",{"children":"MileTruth – Doormile"}],["$","meta","1",{"name":"description","content":"Optimizes every stage of the delivery journey for maximum efficiency. Explore the only AI built exclusively for logistics."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1a","7",{}]] diff --git a/build/miletruth/__next._index.txt b/build/miletruth/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/miletruth/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/miletruth/__next.miletruth.__PAGE__.txt b/build/miletruth/__next.miletruth.__PAGE__.txt deleted file mode 100644 index 85dba76..0000000 --- a/build/miletruth/__next.miletruth.__PAGE__.txt +++ /dev/null @@ -1,9 +0,0 @@ -1:"$Sreact.fragment" -2:I[58829,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -3:I[76756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -4:I[38730,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -5:I[33016,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0~gr-u6_wl8~w.js","/_next/static/chunks/07eq5is00w7sy.js"],"default"] -6:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -7:"$Sreact.suspense" -0:{"rsc":["$","$1","c",{"children":[["$","div",null,{"id":"miletruth","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{}],["$","$L5",null,{}]]}]}]}]}],[["$","script","script-0",{"src":"/_next/static/chunks/0~gr-u6_wl8~w.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/07eq5is00w7sy.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} -8:null diff --git a/build/miletruth/__next.miletruth.txt b/build/miletruth/__next.miletruth.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/miletruth/__next.miletruth.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/models/3d_scene_final.glb b/build/models/3d_scene_final.glb deleted file mode 100644 index 67f0b46..0000000 Binary files a/build/models/3d_scene_final.glb and /dev/null differ diff --git a/build/models/auto_rickshaw.glb b/build/models/auto_rickshaw.glb deleted file mode 100644 index 3a9fc5e..0000000 Binary files a/build/models/auto_rickshaw.glb and /dev/null differ diff --git a/build/models/optimized/auto_rickshaw.glb b/build/models/optimized/auto_rickshaw.glb deleted file mode 100644 index ec6bf6a..0000000 Binary files a/build/models/optimized/auto_rickshaw.glb and /dev/null differ diff --git a/build/models/optimized/scooter.glb b/build/models/optimized/scooter.glb deleted file mode 100644 index 19f3fb4..0000000 Binary files a/build/models/optimized/scooter.glb and /dev/null differ diff --git a/build/models/optimized/truck.glb b/build/models/optimized/truck.glb deleted file mode 100644 index 5890358..0000000 Binary files a/build/models/optimized/truck.glb and /dev/null differ diff --git a/build/models/optimized/van.glb b/build/models/optimized/van.glb deleted file mode 100644 index 42b939c..0000000 Binary files a/build/models/optimized/van.glb and /dev/null differ diff --git a/build/models/scooter.glb b/build/models/scooter.glb deleted file mode 100644 index c977e1d..0000000 Binary files a/build/models/scooter.glb and /dev/null differ diff --git a/build/models/truck.glb b/build/models/truck.glb deleted file mode 100644 index 78c3d03..0000000 Binary files a/build/models/truck.glb and /dev/null differ diff --git a/build/models/van.glb b/build/models/van.glb deleted file mode 100644 index da09ec6..0000000 Binary files a/build/models/van.glb and /dev/null differ diff --git a/build/privacy-policy.html b/build/privacy-policy.html deleted file mode 100644 index bad6165..0000000 --- a/build/privacy-policy.html +++ /dev/null @@ -1,853 +0,0 @@ -Privacy Policy – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file diff --git a/build/privacy-policy/__next._index.txt b/build/privacy-policy/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/privacy-policy/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/privacy-policy/__next.privacy-policy.txt b/build/privacy-policy/__next.privacy-policy.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/privacy-policy/__next.privacy-policy.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/sitemap.xml b/build/sitemap.xml deleted file mode 100644 index 38a753a..0000000 --- a/build/sitemap.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - -https://doormile.com/ -2026-07-10T18:22:52.785Z -weekly -1 - - -https://doormile.com/how-it-works -2026-07-10T18:22:52.785Z -monthly -0.8 - - -https://doormile.com/miletruth -2026-07-10T18:22:52.785Z -monthly -0.8 - - -https://doormile.com/solutions -2026-07-10T18:22:52.785Z -monthly -0.8 - - -https://doormile.com/doormile-wings -2026-07-10T18:22:52.785Z -monthly -0.8 - - -https://doormile.com/about-us -2026-07-10T18:22:52.785Z -monthly -0.7 - - -https://doormile.com/blog -2026-07-10T18:22:52.785Z -weekly -0.7 - - -https://doormile.com/contact -2026-07-10T18:22:52.785Z -yearly -0.6 - - -https://doormile.com/privacy-policy -2026-07-10T18:22:52.785Z -yearly -0.3 - - -https://doormile.com/terms-of-service -2026-07-10T18:22:52.785Z -yearly -0.3 - - -https://doormile.com/cookie-policy -2026-07-10T18:22:52.785Z -yearly -0.3 - - diff --git a/build/solutions.txt b/build/solutions.txt deleted file mode 100644 index 7d968f1..0000000 --- a/build/solutions.txt +++ /dev/null @@ -1,76 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -12:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -c:T5ca, - /* Fix "Why Businesses Choose Doormile" section — anchor absolute image left, push content right */ - .elementor-element.elementor-element-ead59d3 { - position: relative; - overflow: hidden; - } - .elementor-element.elementor-element-f35119c { - position: absolute !important; - left: -2% !important; - top: 50% !important; - transform: translateY(-50%) !important; - width: 48% !important; - max-width: 520px !important; - opacity: 0.18 !important; - z-index: 0 !important; - pointer-events: none; - } - .elementor-element.elementor-element-56ecbb3 { - position: relative !important; - z-index: 1 !important; - width: 55% !important; - max-width: 55% !important; - margin-left: auto !important; - margin-right: 4% !important; - } - .elementor-element.elementor-element-56ecbb3 .e-con-inner { - max-width: 100% !important; - padding-left: 0 !important; - padding-right: 0 !important; - } - @media (max-width: 1020px) { - .elementor-element.elementor-element-f35119c { display: none !important; } - .elementor-element.elementor-element-56ecbb3 { - width: 100% !important; - max-width: 100% !important; - margin: 0 !important; - } - } - 0:{"P":null,"c":["","solutions"],"q":"","i":false,"f":[[["",{"children":["solutions",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],["$Le"],"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -14:I[89937,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yd8cyhuvvzan.js"],"default"] -15:I[40086,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yd8cyhuvvzan.js"],"default"] -16:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -17:"$Sreact.suspense" -1a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1c:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -d:["$","div",null,{"id":"solutions","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L14",null,{}],["$","$L15",null,{}]]}]}]}]}] -e:["$","script","script-0",{"src":"/_next/static/chunks/0yd8cyhuvvzan.js","async":true,"nonce":"$undefined"}] -f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}] -19:[] -10:"$W19" -11:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -1e:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -18:null -1d:[["$","title","0",{"children":"Solutions – Doormile"}],["$","meta","1",{"name":"description","content":"Discover how Doormile's connected logistics platform serves diverse industries (FMCG, Pharma, and Enterprise) with tailored solutions."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1e","7",{}]] diff --git a/build/solutions/__next._full.txt b/build/solutions/__next._full.txt deleted file mode 100644 index 7d968f1..0000000 --- a/build/solutions/__next._full.txt +++ /dev/null @@ -1,76 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -12:I[68027,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default",1] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["/_next/static/media/0c795a286deabae8-s.p.14tvuu96~wkr0.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/0c89a48fa5027cee-s.p.0rd3rjvnnhw7n.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["/_next/static/media/a343f882a40d2cc9-s.p.0kho-wj7-y-w1.woff2","font",{"crossOrigin":"","type":"font/woff2"}] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -c:T5ca, - /* Fix "Why Businesses Choose Doormile" section — anchor absolute image left, push content right */ - .elementor-element.elementor-element-ead59d3 { - position: relative; - overflow: hidden; - } - .elementor-element.elementor-element-f35119c { - position: absolute !important; - left: -2% !important; - top: 50% !important; - transform: translateY(-50%) !important; - width: 48% !important; - max-width: 520px !important; - opacity: 0.18 !important; - z-index: 0 !important; - pointer-events: none; - } - .elementor-element.elementor-element-56ecbb3 { - position: relative !important; - z-index: 1 !important; - width: 55% !important; - max-width: 55% !important; - margin-left: auto !important; - margin-right: 4% !important; - } - .elementor-element.elementor-element-56ecbb3 .e-con-inner { - max-width: 100% !important; - padding-left: 0 !important; - padding-right: 0 !important; - } - @media (max-width: 1020px) { - .elementor-element.elementor-element-f35119c { display: none !important; } - .elementor-element.elementor-element-56ecbb3 { - width: 100% !important; - max-width: 100% !important; - margin: 0 !important; - } - } - 0:{"P":null,"c":["","solutions"],"q":"","i":false,"f":[[["",{"children":["solutions",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"$c"}}],"$Ld"],["$Le"],"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"kmSVPuUqY3Rhw5xy4D2nn"} -14:I[89937,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yd8cyhuvvzan.js"],"default"] -15:I[40086,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js","/_next/static/chunks/0yd8cyhuvvzan.js"],"default"] -16:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"OutletBoundary"] -17:"$Sreact.suspense" -1a:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"ViewportBoundary"] -1c:I[97367,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"MetadataBoundary"] -d:["$","div",null,{"id":"solutions","className":"content-wrapper content-wrapper-may-contain-elementor-code content-wrapper-sidebar-position-none","children":["$","div",null,{"className":"content","children":["$","div",null,{"className":"content-inner","children":["$","div",null,{"data-elementor-type":"wp-page","data-elementor-id":"59","className":"elementor elementor-59","children":[["$","$L14",null,{}],["$","$L15",null,{}]]}]}]}]}] -e:["$","script","script-0",{"src":"/_next/static/chunks/0yd8cyhuvvzan.js","async":true,"nonce":"$undefined"}] -f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}] -19:[] -10:"$W19" -11:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}] -13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}] -1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] -1e:I[27201,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"IconMark"] -18:null -1d:[["$","title","0",{"children":"Solutions – Doormile"}],["$","meta","1",{"name":"description","content":"Discover how Doormile's connected logistics platform serves diverse industries (FMCG, Pharma, and Enterprise) with tailored solutions."}],["$","meta","2",{"name":"robots","content":"index, follow"}],["$","link","3",{"rel":"shortcut icon","href":"/images/cropped-image-2.png"}],["$","link","4",{"rel":"icon","href":"/favicon.ico?favicon.14w3bhkxgz946.ico","sizes":"40x40","type":"image/x-icon"}],["$","link","5",{"rel":"icon","href":"/images/cropped-image-2.png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/images/cropped-image-2.png"}],["$","$L1e","7",{}]] diff --git a/build/solutions/__next._index.txt b/build/solutions/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/solutions/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/solutions/__next.solutions.txt b/build/solutions/__next.solutions.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/solutions/__next.solutions.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/terms-of-service.html b/build/terms-of-service.html deleted file mode 100644 index 1a8a3a5..0000000 --- a/build/terms-of-service.html +++ /dev/null @@ -1,853 +0,0 @@ -Terms of Service – Doormile

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

\ No newline at end of file diff --git a/build/terms-of-service/__next._index.txt b/build/terms-of-service/__next._index.txt deleted file mode 100644 index d0b3355..0000000 --- a/build/terms-of-service/__next._index.txt +++ /dev/null @@ -1,15 +0,0 @@ -1:"$Sreact.fragment" -2:I[67989,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[8971,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:I[48064,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -5:I[26290,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -6:I[82637,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"HeaderUIProvider"] -7:I[92260,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -8:I[3374,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -9:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -a:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -b:I[58234,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -:HL["/_next/static/chunks/0w9rs8fz9m7so.css","style"] -:HL["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css","style"] -:HL["/css/site.css","style"] -0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0w9rs8fz9m7so.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/06n0m6ck5r8gy.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/08hj-sa49t6qk.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/074ch-b_0x~v-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/04xui0pxt.et1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0d3shmwh5_nmn.js","async":true}]],["$","html",null,{"lang":"en-US","data-scroll-behavior":"smooth","className":"manrope_67dc055e-module__BHrBnq__variable space_grotesk_2e42c3c6-module__3Wl9rq__variable syne_ef5854ac-module__2TJB3a__variable dm_sans_2770e922-module__TdA3fW__variable inter_5dbe1e89-module__i9oJOa__variable","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"stylesheet","href":"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"}],["$","link",null,{"rel":"stylesheet","href":"/css/site.css"}]]}],["$","body",null,{"className":"wp-singular page-template-default page wp-theme-logico wp-child-theme-logico-child theme-logico ehf-header ehf-footer ehf-template-logico ehf-stylesheet-logico-child logico-front-end logico-theme-style-rounded elementor-default elementor-kit-5 elementor-page","suppressHydrationWarning":true,"children":[["$","$L2",null,{}],["$","$L3",null,{}],["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{}],["$","div",null,{"className":"body-container","children":["$","div",null,{"id":"page","className":"hfeed site","children":[["$","$L8",null,{}],["$","$L9",null,{"parallelRouterKey":"children","template":["$","$La",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}],["$","$Lb",null,{}]]}]}]]}]]}]]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/terms-of-service/__next.terms-of-service.txt b/build/terms-of-service/__next.terms-of-service.txt deleted file mode 100644 index e0935ae..0000000 --- a/build/terms-of-service/__next.terms-of-service.txt +++ /dev/null @@ -1,5 +0,0 @@ -1:"$Sreact.fragment" -2:I[39756,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -3:I[37457,["/_next/static/chunks/06n0m6ck5r8gy.js","/_next/static/chunks/08hj-sa49t6qk.js","/_next/static/chunks/074ch-b_0x~v-.js","/_next/static/chunks/04xui0pxt.et1.js","/_next/static/chunks/0d3shmwh5_nmn.js"],"default"] -4:[] -0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"kmSVPuUqY3Rhw5xy4D2nn"} diff --git a/build/videos/fleet.mp4 b/build/videos/fleet.mp4 deleted file mode 100644 index dc8c334..0000000 Binary files a/build/videos/fleet.mp4 and /dev/null differ diff --git a/build/videos/workflow-2-routing.mp4 b/build/videos/workflow-2-routing.mp4 deleted file mode 100644 index 96939fa..0000000 Binary files a/build/videos/workflow-2-routing.mp4 and /dev/null differ

Doormile

Doormile logo
Address
Hyderabad

5th Floor, Vision Ultima,
Street No.3, Jayabheri Enclave,
Gachibowli, Hyderabad,
Telangana 500032.

Coimbatore

Mayflower Valencia,
Near Nava India Bus Stop,
Avinashi Road,
Udayampalayam,
Tamil Nadu 641037.

Bengaluru

C612, 6th Floor,
Trifecta Starlight,
ITPL Road,
Garudacharapalya,
Mahadevapura,
Bangalore 560048,
Karnataka, India.

Contact Us

Tel : +91 86886 97941

Email

care@doormile.com

Building Women
Entrepreneurs.

Empowering ambitious women with the network, strategic partnerships, and opportunities to build, grow, and lead successful enterprises that shape the future of logistics.

/ Our Vision /


Women Own The Future.

A logistics ecosystem where women don’t just participate — they own, build, and lead.

The vision

We are building an entrepreneurial ecosystem where women launch enterprises, scale operations, and shape the future of logistics from the inside.

Why it matters

Industries transform when founders emerge from every corner. Women-led enterprises bring fresh perspective, operational resilience, and long-term economic impact to logistics.

How Wings contributes

Wings provides the infrastructure — strategic partnerships, funding access, founder networks, and industry connections — that turns ambition into enterprise.

/ Our Approach /

Not a program on a brochure. An ecosystem women can build in.

Manifesto

A venture that starts with conviction. A network that turns it into momentum.

Wings is designed around the moments that define a founder: the first partnership signed, the first client won, the first team hired, the first enterprise scaled.

01

Women Entrepreneurship

An ecosystem where women build, own, and scale enterprises across logistics.

/ Doormile Wings /

Women Building The Next Mile

Women Map
0+
Women Founders
0+
Cities Active
0+
Enterprises Launched
Venture Building

End-to-end support for women launching logistics enterprises — from ideation to market entry.

Entrepreneurship

Women building, owning, and scaling sustainable businesses within the logistics ecosystem.

Founder Networks

Peer communities and strategic connections that accelerate growth and open new markets.

Enterprise Leadership

Strategic decision-making, operational excellence, and vision-driven leadership for women founders.

/ Entrepreneurship Pillars /

Every pillar is built around ownership.

02
Connect and grow

Strategic Partnerships

Direct access to supply chain networks, B2B relationships, industry alliances, and commercial agreements that accelerate growth.

03
Learn from builders

Founder Mentorship

One-on-one guidance from established entrepreneurs, operators, and investors who understand what it takes to scale.

04
Scale with confidence

Growth & Scale

Operational expansion frameworks, team building, funding readiness, and sustainable unit economics for ventures ready to grow.

05
See the opportunity

Industry Immersion

Real exposure to logistics operations, supply chain infrastructure, and distribution networks before founders commit to a vertical.

/ Our Impact /

Growth we can measure


0+Women-Led Enterprises In The Ecosystem

0+Enterprises Launched
0+Industry Partners
0+Cities Active
MillionsIn Economic Value Created

Every number on this page represents a woman who walked into a room with an idea and walked out with a business. An enterprise launched, a partnership secured, a market entered — each is a marker of real economic impact, not a statistic collected for its own sake.

/ The Founder Journey /

A clear path, from idea to enterprise

01

Apply

Submit your venture idea and tell us about your entrepreneurial vision.

02

Discovery

Identify the right market opportunity and validate your business model.

03

Build

Develop your enterprise with ecosystem support, mentorship, and partnerships.

04

Launch

Go to market with strategic backing, industry connections, and operational infrastructure.

05

Scale

Grow your team, expand operations, and lead your enterprise to sustainable impact.

/ Women in Motion /

Small steps. Lasting careers.

A Wings program participant on the operations floor at a Doormile logistics hub
Wings Participant building a career, one milestone at a time.

I came in looking for a way forward. I found the confidence to lead.

She started with limited exposure to logistics. Through structured training, mentorship, and hands-on experience, she built real operational skills — and now supports other women stepping into the industry.

/ Collaboration /

Partnership is how ecosystems grow.

The strongest ecosystems are built by many hands.

Wings partners bring industry access, strategic infrastructure, capital, and networks. Together, we build the foundation women-led enterprises need to thrive.

01

Industry Partners

Strategic alliances with logistics operators, supply chain leaders, and distribution networks that open doors for women-led enterprises.

02

Technology Partners

Platforms, tools, and infrastructure that give founders the operational edge to compete and scale efficiently.

03

Community Networks

Founder communities, women's business networks, and ecosystem builders who extend reach and amplify impact.

04

Investment Partners

Funding access, grant programs, angel networks, and capital partners aligned with women-led enterprise growth.

500+Women Founders
100+Enterprises Launched
25+Industry Partners
/ Build the next mile /

Build what’s next.

Join Doormile Wings in building the entrepreneurial ecosystem where women launch, grow, and lead enterprises that create lasting value across logistics.